+91-0000000000

}

Monday – Friday : 9:00 AM – 6:30 PM

Chaloke RTS System

The Chaloke RTS System is a comprehensive trading strategy implemented using Amibroker AFL. Traders utilize this system to make buy and sell decisions based on specific criteria and indicators. With the assistance of Amibroker Data Feeder, traders can access real-time market data to execute the Chaloke RTS System efficiently, adapting their trading approach to market dynamics.

_SECTION_BEGIN("Chaloke RTS System");
 /// 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)+" %)";
_SECTION_END();

Open chat
1
Hi, how can I help you?