li

Archive for the ‘amibroker afl’ Category

Analystcalls.org – Stock Market and Finance Community

www.analystcalls.org is an online community for Traders and Investors interested in Indian Stock Market – Stocks, Futures and Options, Commodities and Forex. Analystcalls.org is launched on 16th October 2012. We already running Stock Market blog www.analystcalls.in and why this www.analystcalls.org ? Yes, there is a great need for discussions on topics of Technical Analysis Study, [...]

Buy Sell Signal Amibroker AFL on RSI MFI CCI

Buy Sell Signal Amibroker AFL on RSI, MFI, CCI This AFL is the combination of these 3 indicators. You can also customize the parameters for all these indicators according to your requirements. Buy = CCI( 14 ) < -98 AND RSI(14)<30 AND MFI(14)<20; Sell = CCI( 14 ) == 0; Short = CCI( 14 ) [...]

Open High Open Low Indicator Amibroker AFL To scan Stocks

Open High Open Low Indicator Amibroker AFL. This is one of the techniques followed by the intraday players to take short position when the open and High of a stock or Index or equal and take Long position when both Open and Low are equal. Buy = Open == Low; Sell = Open == High; [...]

MACD Divergence Detector Amibroker AFL

MACD Divergence Detector for Amibroker (AFL). To detect the divergence you need to move the starting point and the ending point. /// PROGRAMME CREATED BY PRASAD RAO FOR MASTER PLOTTER MACD DIVERGENGE DETECTOR/// _SECTION_BEGIN(“BACK COLR”); _SECTION_BEGIN(“PRASAD SYSTEMS”); ParamStr(“DEDICATED TO MY FATHER”, “BALKRISHNA RAO”); _SECTION_END(); SetChartBkColor( ParamColor(“Chart Color”, colorBlack)); _SECTION_BEGIN(“BACKGROUD LTRS”); SetChartOptions(0,chartShowArrows|chartShowDates); GfxSetOverlayMode(1); GfxSetTextAlign( 6 );// [...]

Rainbow Indicator Amibroker AFL

Rainbow Indicator Amibroker AFL. AFL Code for Rainbow Indicator works in all the versions of Amibroker even in 5.5 SetChartBkColor(ParamColor(“Background Color”,colorDarkGrey)); SetChartOptions(0,chartShowArrows | chartShowDates); _SECTION_BEGIN(“BBands”); Top= BBandTop(Close, 10, 1 ); Bot= BBandBot( Close, 10, 1 ); Plot (Top,”Top”,colorGreen,styleThick+styleNoLabel); Plot (Bot,”Bot”,colorGreen,styleThick+styleNoLabel); _SECTION_END(); _SECTION_BEGIN(“KeltnerBands”); Mov_Avg = MA(C, 10); KUP = Mov_Avg + 1 * ATR(10); KDOWN = [...]

Amibroker AFL Guppy With KBreain Trending with Buy Sell Exploration

Amibroker AFL Guppy With KBreain Trending with Buy Sell Exploration. // ================AFL========================= _SECTION_BEGIN(“Brain Trend System”); SetChartBkColor(ParamColor(“Panel color “,colorBlack)); //========================Initiation======================== bts=ParamToggle(“BrainTrend1 signal”,”Yes|No” ,1); btst=ParamToggle(“BrainTrend1 stop”,”Yes|No” ,1); btsl=ParamToggle(“BrainTrend1 stop line”,”Yes|No” ,1); period=Param(“Period”,13,2,21,1); x1=53; x2=47; d=2.3; f=7; s=1.5; range=ATR(f); Range1 = ATR(f)/d; Range2 = (ATR(f)*s)/4; range3=ATR(10); R = ((HHV(H,period) – C) /(HHV (H,period) -LLV (L,period))) *-100; EMA1= EMA(R,Period); EMA2= [...]