Sir,
Plaese help to get ATR Value on screen at the same time at the same screen for
Daily ATR
Weekly ATR
Monthly ATR
Thanks in advance
Sir,
Plaese help to get ATR Value on screen at the same time at the same screen for
Daily ATR
Weekly ATR
Monthly ATR
Thanks in advance
for the above given condition check this below code for ATR
periods = Param( "Periods", 15, 1, 200, 1 ); Plot( ATR(periods), _DEFAULT_NAME(), ParamColor( "Color", colorCycle ), ParamStyle("Style") );
and you can use WriteIf( ) function to write or display any values on chart in amibroker AFL
Hi Sir,
Thx
Can i write as below
periods = Param( “Periods”, 15, 1, 200, 1 );
Plot( ATR(daily), _DEFAULT_NAME(), ParamColor( “Color”, colorCycle ), ParamStyle(“Style”) );
Plot( ATR(weekly), _DEFAULT_NAME(), ParamColor( “Color”, colorCycle ), ParamStyle(“Style”) );
Plot( ATR(monthly), _DEFAULT_NAME(), ParamColor( “Color”, colorCycle ), ParamStyle(“Style”) );
please advice i hav no coding background
thx again