Se qualcuno lo può trovare utile .... ho creato una sorta di Performance Index modificato imitando il Playoptions High Low.
Gli istogrammi danno il valore del cambiamento in % della barra .... VERDE se la variazione è positiva e ROSSA se è negativa. Ho inserito anche le relative medie a 10/20/30 periodi.
Gli istogrammi danno il valore del cambiamento in % della barra .... VERDE se la variazione è positiva e ROSSA se è negativa. Ho inserito anche le relative medie a 10/20/30 periodi.
Codice:
SET PERC = (LAST - REF(CLOSE,1)())* 100 / YESTERDAYCLOSE() SET PLOT1 = IF (PERC < 0, PERC - PERC - PERC, PERC) SET PLOTCOLOR1 = IF (PERC > 0,COLOR_DARK_GREEN,COLOR_DARK_RED) SET PLOT2 = SMA(PERC, 10) SET PLOT3 = SMA(PERC, 20) SET PLOT4 = SMA(PERC, 30)


Comment