I need help from knowledgeable members of the forum to answer my following question.

I use the following exploration to plot SAR for price acceleration.

accel = Param("Acceleration", 0.02, 0, 1, 0.001);
mx = Param("Max. acceleration", 0.2, 0, 1, 0.001);
f_sar = SAR(accel,mx);
colordots = IIf(f_sar < L,colorBrightGreen,IIf(f_sar > H,colorRed,colorWhite));
SetBarsRequired(-2,-2);
SetChartOptions(0, chartShowDates);
Plot(f_sar,"\nf_sar", colordots,styleDots|styleNoLine);

How can I plot price SAR?
How can I plot RSI SAR?
How can I plot MFI SAR?
How can I plot other technicals/ fundamentals in a similar manner of stop-and-reverse?

Thank you.

vgakkhra




Reply via email to