Hej,
ja blev lite fel tyvärr.
Använd denna kod:
TotalCount = TotalCount + 1;
if (Close[0] > MA5(p1)[0])
AboveMA = AboveMA + 1;
else
BelowMA = BelowMA + 1;
plot1[0] = (BelowMA /TotalCount) * 100.0;
, sen ett problem med heltal/decimaltal, därför blev 0 eller -100
Ändra under Inställningar:
TotalCount = 0.0
AboveMA = 0.0
BelowMA = 0.0
Scriptet/koden körs 1 ggr per stapel. Medan ex TotalCount = 0.0 sätts innan scriptet startar