Stock Portfolio Organizer

The ultimate porfolio management solution.

Shares, Margin, CFD's, Futures and Forex
EOD and Realtime
Dividends and Trust Distributions
And Much More ....
For Portfolio Manager Click Here

WiseTrader Toolbox

#1 Selling Amibroker Plugin featuring:

Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
Find Out More Here

Trend Score for Amibroker (AFL)
haifx
over 11 years ago
Amibroker (AFL)

Rating:
4 / 5 (Votes 3)
Tags:
trading system, amibroker

The strength of the trend. Code created by vole_00 srsc.

Similar Indicators / Formulas

EMA crossover
Submitted by Ketan-0 about 13 years ago
Kase Peak Osc. V2 batu
Submitted by batu1453 almost 10 years ago
Kase CD V2batu
Submitted by batu1453 almost 10 years ago
Ichimoku
Submitted by prashantrdx almost 10 years ago
buy and sell two EMAS
Submitted by mundo0007 about 12 years ago
Adaptive Price Zone (APZ)
Submitted by AndrewThomas about 13 years ago

Indicator / Formula

Copy & Paste Friendly
CTS=IIf(C>=Ref(C,-5),1,-1)+
 IIf(C>=Ref(C,-6),1,-1)+
 IIf(C>=Ref(C,-7),1,-1)+
 IIf(C>=Ref(C,-8),1,-1)+
 IIf(C>=Ref(C,-9),1,-1)+
 IIf(C>=Ref(C,-10),1,-1)+
 IIf(C>=Ref(C,-11),1,-1)+
 IIf(C>=Ref(C,-12),1,-1)+
 IIf(C>=Ref(C,-13),1,-1)+
 IIf(C>=Ref(C,-14),1,-1);



 Plot(CTS, "CTS", colorBlack, styleLine ); 

 Plot(12,"",colorRed,styleLine);
 Plot(0,"",colorBlue,styleLine);
 Plot(-12,"",colorRed,styleLine);

 EntryLong = CTS>=5 AND Ref(CTS,-1)<5;
 ExitLong = CTS<0;

 Buy = EntryLong;
 Sell = ExitLong;

 PlotShapes(IIf(Buy ==1, shapeUpArrow , shapeNone), colorGreen, 0,CTS, Offset=-15);
 PlotShapes(IIf(Sell ==1, shapeDownArrow, shapeNone), colorRed, 0,CTS, Offset=-15);

6 comments

1. anandnst

Good for trending market. Not good for rangebound situations.

2. shariful

thanks lot for nice contribution..

3. sjagadish4u

THANKS A LOT

4. hotaro3

Nice indicator especially in weekly time frame

5. Divyesh

@haifx,
Can we make some modification like this….?

‘ExitLong=CTS<=5 AND Ref(CTS,-1)>5;
Buy = EntryLong;
Sell = ExitLong;
Buy=ExRem(EntryLong,ExitLong);
Sell=ExRem(ExitLong,EntryLong);’

this is queat batter for Daily TF…..

anandst,Vishwanath sir,
Sir what is your opinion for Daily TF…?

6. sanjeev raj

how to use this

Leave Comment

Please login here to leave a comment.

Back