Bonjour et merci pour votre aide précieuse.
PRT m’affiche 2 erreurs à la fin de mon code, concernant les lignes sur l’affichage de la variation de la bougie
pourriez-vous me les corriger svp ?
merci.
DEFPARAM drawonlastbaronly = true
StartHour = 9
StartMinute = 0
EndHour = 9
EndMinute = 15
if openhour <> openhour[1] and openhour = startHour then
OPRHigh = high
OPRLow = low
endif
if openhour = StartHour and openminute < endMinute then
if high > OPRHigh then
OPRHigh = high
endif
if low < OPRLow then
OPRLow = low
endif
endif
DrawHLine(OPRHigh) coloured(0,255,0) style(line,2)
DrawHLine(OPRLow) coloured(255,0,0) style(line,2)
// Calcul de la variation de la bougie
BougieVariation = Close – Open
// Affichage de la variation sur le graphique
if BougieVariation >= 0 then
DrawText(“+” + NumToStr(BougieVariation, 2), barindex, Low – (ATR(14) * 0.5)) coloured(0,255,0)
else
DrawText(NumToStr(BougieVariation, 2), barindex, Low – (ATR(14) * 0.5)) coloured(255,0,0)
endif
return Close