+91-0000000000

}

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

Candle Stick Indicator

Elevate your technical analysis with the Candle Stick Indicator AFL for Amibroker. This tool, available for free download, empowers traders with enhanced insights into price movements. Amibroker’s data integration ensures accurate and reliable candlestick patterns. Whether you’re a novice or seasoned trader, leverage this indicator to refine your entry and exit points, making your trading strategy more robust and informed.

/
_SECTION_BEGIN("CSI");
r = Param( "TSI period 'Length':", 25, 1, 100, 1 );
s = Param( "TSI period 'Smoothing':", 13, 1, 100, 1 );
//sig = Param( "Signal period:", 7, 1, 100, 1 );

x = C-O;
x1 = H-L; 

a = EMA(EMA(x,r),s);
b = EMA(EMA(x1,r),s);

Csi = 100 * Nz ( a / b );
Plot( Csi, "CSI("+r+","+s+")", ParamColor( "Color", colorRed ), ParamStyle("Style") );
//Plot(EMA(TSI,Len_sig), "", colorLightBlue);
PlotGrid(0, colorLightGrey);
_SECTION_END();

Open chat
1
Hi, how can I help you?