+91-0000000000

}

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

Intraday Heikin Ashi Bobby

Intraday Heikin Ashi Bobby AFL might be dedicated to employing Heikin Ashi candlestick charts in intraday trading strategies. Heikin Ashi charts offer a smoothed representation of price movements. This AFL, relying on an Amibroker data feed, would utilize historical intraday price data to plot Heikin Ashi charts and aid traders in making informed decisions based on these smoothed price representations.

/
//
//  INTRADAY HEIKIN ASHI new
//
//------------------------------------------------------------------------------

/*======================================================
		FOREX INTRADAY HEIKIN ASHI + PIVOT POINTS
  ======================================================*/

//---- heikin ashi
HaClose = (O+H+L+C)/4; 
HaOpen = AMA( Ref( HaClose, -1 ), 0.3 ); 
HaHigh = Max( H, Max( HaClose, HaOpen ) ); 
HaLow = Min( L, Min( HaClose, HaOpen ) ); 
xDiff = (HaHigh - Halow) * IIf(StrFind(Name(),"JPY"),100,10000);
barcolor = IIf(HaClose >= HaOpen,colorBrightGreen,colorRed);
PlotOHLC( HaOpen, HaHigh, HaLow, HaClose, "", barcolor, styleThick|styleDots ); 
// Plot(EMA(HaClose,9),"",colorWhite, styleLine);
// Plot(EMA(HaClose,18),"",colorBlack, styleLine);

_SECTION_BEGIN("Bollinger Bands");
P = ParamField("Price field",-1);
Periods = Param("Periods", 15, 2, 100, 1 );
Width = Param("Width", 2, 0, 10, 0.05 );
Color = ParamColor("Color", colorCycle );
Style = ParamStyle("Style");
Plot( BBandTop( P, Periods, Width ), "BBTop" + _PARAM_VALUES(), colorWhite, style); 
Plot( BBandBot( P, Periods, Width ), "BBBot" + _PARAM_VALUES(), colorWhite, style); 
_SECTION_END();

Open chat
1
Hi, how can I help you?