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

Chaloke Reaction Trend System for Amibroker (AFL)
Ayuraveda
almost 14 years ago
Amibroker (AFL)

Rating:
4 / 5 (Votes 7)
Tags:
amibroker, chaloke
/// Chaloke Reaction Trend System ///

A Simple Trend following trading system

“Buy on 1st Green color”
“Sell on 1st Red color”

Screenshots

Similar Indicators / Formulas

Peak-Through System (Sens=2.5)
Submitted by sunfun almost 14 years ago
Chaloke System 2 (1st edition)
Submitted by vishyvishy almost 14 years ago
Chaloke System 3
Submitted by vishyvishy almost 14 years ago
Modified ichimoku indicator
Submitted by chatpurpose almost 11 years ago
Williams Alligator System
Submitted by durgesh1712 over 12 years ago
*Level Breakout system*
Submitted by Tinych over 12 years ago

Indicator / Formula

Copy & Paste Friendly
 /// Chaloke Reaction Trend System /// 

XX=(H+L+C)/3; 
BB=2*XX-H; 
SS=2*XX-L; 
HBOP=2*XX-2*L+H; 
LBOP=2*XX-2*H+L; 
color=IIf(BarsSince(Cross(H,Ref(HBOP,-1)))> 
BarsSince(Cross(Ref(LBOP,-1),L)),colorRed , colorBrightGreen); 
Plot(C,"",Color,64); 
Plot(XX,"",colorYellow); 
Plot(BB,"",colorLime); 
Plot(SS,"",colorPink); 
Plot(HBOP,"",colorGreen); 
Plot(LBOP,"",colorDarkRed); 

Title=Name()+" "+Date()+" "+EncodeColor(colorSkyblue)+" Chaloke RTS System "+EncodeColor(colorYellow)+" Vol="+NumToStr(Volume,1.0)+" "+" O="+Open+" H="+HHV(H,1)+" L="+LLV(L,1)+" 
Close="+ Close+""+"("+numtostr((Close-ref(C,-1))/ref(c,-1)*100,1.2)+" %)";

3 comments

1. godisbogus

Thanks for sharing the indicator. When used for intraday 15 min charts you can simply mint.

2. Bonkers

I think this afl has already been posted. Haven’t searched but I already had it in my wisestocktrader folder.

Regards

3. administrator

Thanks Bonkers, I think i will leave it for now if you find it I will remove it.

Leave Comment

Please login here to leave a comment.

Back