how to get coloured areas in amibroker?

#1
hello there, can anybody help me get coloured areas in overbought and oversold ares for slow stoch and rsi. i dont know to add the cloud line for my afl. thanks
 

kkseal

Well-Known Member
#2
Search using keyword 'Style' in Ami User Manual

Smple code for the RSI:-

SetChartOptions(0,0,ChartGrid30 | ChartGrid70 );
r = RSI(14);
Plot( r, "RSI", colorBlack );
PlotOHLC( r,r,50,r, "", IIf( r > 50, colorRed, colorGreen ), styleCloud | styleClipMinMax, 30, 70 );
 

Similar threads