nel foglio 'appunti' c'è scritto tutto
lo posto anche qui
by Robom1
Var: avola(0), avg(0), up(0), dn(0), aa(3), trend(0), super(0);
avola= atr(C, 10);
avg= (H + L) / 2;
up= avg + (aa*avola);
dn= avg - (aa*avola);
if C > up[1] then trend= 1; endif;
if C < dn[1] then trend=-1; endif;
if trend<0 and up>up[1] then up=up[1]; endif;
if trend>0 and dn<dn[1] then dn=dn[1]; endif;
if trend=1 then super=dn; else super=up; endif;
PlotChart(super, 0, red, solid, 3);