Code Amibroker Indicators

Intraday Stochastic Trading System for Amibroker (AFL)

Day trading can be tricky and unpredictable if you do not understand the basics behind it. You need to be armed with reliable indicators and patterns to be successfuly at intraday trading. Stochastic is one such indicator which has been…

January 4, 2019 by admin
Code Amibroker Indicators

Aroon Exploration for Amibroker (AFL)

Made Aroon exploration. Aroonp = ), means prices will or is rising. Members please add / modify and refine for better. Check out. Filter = Close > 0.1; Filter = Volume > 1; i=0; _SECTION_BEGIN(“Aroon”); L14 = LLV( Low, 14…

January 4, 2019 by admin
Code Amibroker Indicators

Volume Histogram Area with MA for Amibroker (AFL)

Plotting volume histogram in a more beautiful area histogram chart Overlay = ParamToggle(“MA Overlay Volume?”, ” No | Yes “, 1); GraphZOrder = Overlay; _SECTION_BEGIN( “Volume” ); SetBarFillColor( IIf( Close > Open, colorLime, colorRed ) ); Plot( Volume, _DEFAULT_NAME(), colorWhite,…

January 4, 2019 by admin
Code Amibroker Indicators

Sóng tâm lý elliott cho amibroker

Sóng Elliott là một lý thuyết phân tích được sử dụng rất nhiều trong thị trường chứng khoán, ngoại hối. Đây là mô hình phân tích kỹ thuật là những công cụ thích hợp để phân tích tâm lý của đám đông, xu…

January 3, 2019 by admin
Mở Tài Khoản - Nhận ngay bộ công cụ AI trị giá 56000 USD
Code Amibroker Indicators

Advanced Multi-level CCI for Amibroker (AFL)

Advanced Multi-level CCI for Amibroker (AFL) _SECTION_BEGIN(“Multilevel CCI”);SetChartOptions(0,0,chartGrid100|chartGridDiv100);Period = Param(“CCI Period”,14,1,100,1);CCILineColor = ParamColor(“CCI Line Color”,colorDarkGreen);CCIOverboughtColor = ParamColor(“CCI Overbought Color”, colordarkGreen);CCIOversoldColor = ParamColor(“CCI Oversold Color”, colorBrown);CCIAboveZeroColor = ParamColor(“CCI Above Zero Color”, colorBrightGreen);CCIBelowZeroColor = ParamColor(“CCI Below Zero Color”, colorRed); z = CCI(Period);Plot(z,”CCI”,IIf(z<-100,CCIOversoldColor,IIf(z>100,CCIOverboughtColor,CCILineColor)),styleNoLabel); Plot(200,”200″,CCILineColor,styleNoTitle|styleNoLabel);Plot(100,”100″,CCILineColor,styleNoTitle|styleNoLabel);Plot(0,”0″,CCILineColor,styleNoTitle|styleNoLabel);Plot(-100,”-100″,CCILineColor,styleNoTitle|styleNoLabel);Plot(-200,”-200″,CCILineColor,styleNoTitle|styleNoLabel); PlotOHLC(z,z,45,z,””,IIf(z>45,CCIOverboughtColor,CCIOversoldcolor),styleCloud|styleClipMinMax|styleNoLabel,-100,100);PlotOHLC(z,z,0,z,””,IIf(z>=0,CCIAboveZeroColor,CCIBelowZeroColor),styleCloud|styleNoLabel);_SECTION_END();

December 29, 2018 by admin
Code Amibroker Indicators

Money Flow Index (MFI) with Color & Clip Area for Amibroker

The money flow index (MFI) is an oscillator that ranges from 0 to 100. It is used to show the money flow (an approximation of the dollar value of a day’s trading) over several days. SetChartOptions(0,0,ChartGrid50,0,100); periods = Param(“Periods”, 14, 1,…

December 29, 2018 by admin
Code Amibroker Indicators

Force Index Trading System for Amibroker

The Force Index, developed by Alexander Elder, is an indicator that uses price and volume to assess the power behind a move or identify possible turning points. The Force Index was introduced in his classic book, Trading for a Living….

December 29, 2018 by admin
Code Amibroker Indicators

Volume Weighted MA ( VWMA ) for Amibroker

Volume Weighted MA ( VWMA ) for Amibroker SetChartBkGradientFill( 54, 54 ); function VWMA( price, pds ){aa = Sum( ( Volume * price ), pds );bb = Sum( Volume, pds );Cc = aa / Nz( bb );return Cc;} pr = ( 2…

December 29, 2018 by admin
Code Amibroker Indicators

External Relative Strength (RS) for Amibroker

ERS measures the stock’s price performance relative to all other listed equities. Basically, it measures how well or poorly a stock is performing relative to its’ peers. _SECTION_BEGIN(“IBD RS RANKING”);//IBD RS RANKINGRSW = 0.4*ROC(C,65)+ 0.3*ROC(C,130) +0.3*ROC(C,260);Plot(RSW,”RANKING IBD” ,colorBrightGreen,styleLine) ;Plot(EMA(RSW,10),”” ,colorRed,styleLine|styleDashed|styleNoLabel); BuyIBD=RSW>EMA(RSW,10);SellIBD= RSW<EMA(RSW,10); Filter…

December 29, 2018 by admin
Code Amibroker Indicators

TDI (Traders Dynamic Index) for Amibroker

Traders Dynamic Index (TDI) MetaTrader indicator — a comprehensive but helpful indicator that uses RSI (Relative Strength Index), its moving averages, and volatility bands (based on Bollinger Bands) to offer traders a full picture of the current Forex market situation. Input parametersRSI_Period…

December 29, 2018 by admin