DRAWRECTANGLE manuell zeichnen
Forums › ProRealTime Deutsch forum › ProBuilder Support › DRAWRECTANGLE manuell zeichnen
- This topic has 4 replies, 2 voices, and was last updated 2 years ago by Lirios.
-
-
11/11/2022 at 10:21 PM #203993
Guten Tag, ich brauche Hilfe bei einem Indikator, der zwei Rechtecke zeichnet, die eine Long-Trade-Position für den Tag signalisieren.
Dieses Signal sollte auf dem Chart sichtbar sein, bevor oder nachdem der Kurs das Einstiegsniveau erreicht.Dies wäre der Code zur Verbesserung:
—————————————-
defparam drawonlastbaronly=true // Zeichung nur am letzten Bar
ratio=3.4
stoploss=269
Long=1
entrada=16920SLL=entrada-stoploss
TPl=entrada+(ratio*stoploss)
pipsTP= abs(ratio*stoploss)
pips= abs(salida-entrada)
salida= tplif islastbarupdate and LONG=1 then
short=0
DRAWTEXT(” #Entrada# “, barindex+8, entrada+2)coloured(“gray”)
DRAWTEXT(” #tpl#”, barindex+8, tpl+2) coloured(“green”)
DRAWRECTANGLE(barindex-125, tpl, barindex+2, entrada) coloured(“green”,45) bordercolor(“green”,15)
DRAWRECTANGLE(barindex-125, sll, barindex+2, entrada) coloured(“red”,45) bordercolor(“red”,15)
DRAWTEXT(” #SLL#”, barindex+8, sll-2)coloured(“red”)endif
return
11/15/2022 at 11:09 AM #204198Vorher oder nachher bedeutet IMMER. Tut es das jetzt nicht?
Von den Fotos verstehe ich nicht, was Sie bekommen wollen.
11/15/2022 at 3:44 PM #204223vielen Dank für Ihr Muhe, lassen Sie mich besser erklären, zum Beispiel heute in der eur/usd, es geht um das Zeichnen von zwei Rectangle zwischen 14:00 bis 15:30 Uhr am, aber sollten um 11:00 Uhr gezeichnet werden, das heißt, der Preis hat noch nicht berührt die Entry-Level wie in der Grafik 1.
11/16/2022 at 1:00 PM #204250Dies ab 11:00 druckt das verschobene Rechteck um 14:30 (für 1 1/2 Stunden):
1234567891011121314151617181920212223defparam drawonlastbaronly=true // Zeichung nur am letzten Barratio=3.4stoploss=269Long=1entrada=14300 //16920SLL=entrada-stoplossTPl=entrada+(ratio*stoploss)pipsTP= abs(ratio*stoploss)pips= abs(salida-entrada)salida= tplif OpenTime >= 110000 AND OpenTime <= 153000 thenIF OpenTime = 110000 THENStartBar = Barindex + 18EndBar = StartBar + 6ENDIFshort=0endifDRAWTEXT(" #Entrada# ", StartBar+8, entrada+2)coloured("gray")DRAWTEXT(" #tpl#", StartBar+8, tpl+2) coloured("green")DRAWRECTANGLE(StartBar, tpl, EndBar, entrada) coloured("green",45) bordercolor("green",15)DRAWRECTANGLE(StartBar, sll, EndBar, entrada) coloured("red",45) bordercolor("red",15)DRAWTEXT(" #SLL#", barindex+8, sll-2)coloured("red")return11/16/2022 at 3:13 PM #204266 -
AuthorPosts