Drawellipse
- This topic has 2 replies, 2 voices, and was last updated 8 years ago by .
Viewing 3 posts - 1 through 3 (of 3 total)
Viewing 3 posts - 1 through 3 (of 3 total)
Forums › ProRealTime forum Français › Support ProBuilder › Drawellipse
C’est plutôt simple en fait, de tracer une ellipse.
Dans la documentation de code prorealtime en ligne du site, DRAWELLIPSE indique qu’il faut utiliser 2 sets de coordonnées x et y.
Tu trouveras ci-dessous un exemple de code que j’avais initié pour tracer une ellipse fibo de 38.2 de retracement depuis les informations de la journée qui précède. Pas encore terminé toutefois, je pense que c’est un bon exemple.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
defparam drawonlastbaronly = true minheight = 10*pipsize hh = Dhigh(1)//highest[period](high) ll = Dlow(1)//lowest[period](low) for i = 0 to intradaybarindex if open[0]=Dopen(0) then dayopen = barindex[i] break endif next if hh-ll >= minheight then ratio=(hh-ll)/100 DRAWELLIPSE(barindex-intradaybarindex,ll,barindex,ll+(ratio*38.2))coloured(255,10,10) DRAWVLINE(dayopen) DRAWHLINE(Dlow(1)) endif RETURN |