Ciao,
Ecco l’indicatore con i diversi valori…
C’è un’impostazione da qualche parte per visualizzare anche i valori nella scala verticale, ma al momento non riesco a trovarla (forse cambierà nella versione 12)…
//TimeFrame 5 minutes
If IntraDayBarIndex=186 then
DrawText(Open+90,BarIndex+87,Open+90,SansSerif,Bold,15)Coloured(0,255,0)
DrawSegment(BarIndex,Open+90,BarIndex+78,Open+90)Coloured(0,255,0)Style(Line,4)
DrawText(Open+60,BarIndex+87,Open+60,SansSerif,Bold,15)Coloured(0,170,0)
DrawSegment(BarIndex,Open+60,BarIndex+78,Open+60)Coloured(0,170,0)Style(Line,3)
DrawText(Open+30,BarIndex+87,Open+30,SansSerif,Bold,15)Coloured(0,85,0)
DrawSegment(BarIndex,Open+30,BarIndex+78,Open+30)Coloured(0,85,0)Style(Line,2)
DrawSegment(BarIndex,Open,BarIndex+78,Open)Style(Line,5)
DrawText(Open,BarIndex+87,Open,SansSerif,Bold,15)
DrawSegment(BarIndex,Open-30,BarIndex+78,Open-30)Coloured(85,0,0)Style(Line,2)
DrawText(Open-30,BarIndex+87,Open-30,SansSerif,Bold,15)Coloured(85,0,0)
DrawSegment(BarIndex,Open-60,BarIndex+78,Open-60)Coloured(170,0,0)Style(Line,3)
DrawText(Open-60,BarIndex+87,Open-60,SansSerif,Bold,15)Coloured(170,0,0)
DrawSegment(BarIndex,Open-90,BarIndex+78,Open-90)Coloured(255,0,0)Style(Line,4)
DrawText(Open-90,BarIndex+87,Open-90,SansSerif,Bold,15)Coloured(255,0,0)
EndIf
Return