Comme Baechler a fait le plus dur en faisant la vidéo d'installation
, grand merci à lui
Dans la même idée je vous propose le mien, avec quelques options de plus :
Code : #
//
// FlechesPrixV2
//
// Thierry 29
//
// 2020
DEFPARAM DRAWONLASTBARONLY = true
//DEFPARAM CALCULATEONLASTBARS = 40
//DRAWHLINE(close + DecalageRouge)COLOURED(255,0,0)
//Fleches
If AfficherFlechePrix Then
DRAWARROW(barindex, close + DecalagePrix) COLOURED(0,0,0)
EndIf
If AfficherFlechesVertes Then
If AfficheSegment Then
DRAWSEGMENT(barindex,close - DecalageVert,barindex - LongSegment,close - DecalageVert) COLOURED(0,255,0)STYLE(LINE,2)
DRAWSEGMENT(barindex,close + DecalageVert,barindex - LongSegment,close + DecalageVert) COLOURED(0,255,0)STYLE(LINE,2)
Else
DRAWARROW(barindex, close - DecalageVert ) COLOURED(0,255,0)
DRAWARROW(barindex, close + DecalageVert ) COLOURED(0,255,0)
EndIf
EndIf
If AfficherFlechesRouges Then
If AfficheSegment Then
DRAWSEGMENT(barindex,close + DecalageRouge,barindex - LongSegment,close + DecalageRouge) COLOURED(255,0,0)STYLE(LINE,2)
DRAWSEGMENT(barindex,close - DecalageRouge,barindex - LongSegment,close - DecalageRouge) COLOURED(255,0,0)STYLE(LINE,2)
Else
DRAWARROW(barindex, close + DecalageRouge ) COLOURED(255,0,0)
DRAWARROW(barindex, close - DecalageRouge ) COLOURED(255,0,0)
//
EndIf
EndIf
Return
-
- Variables.JPG (77.46 Kio) Vu 587 fois