DRAWRECTANGLE manuell zeichnen

Forums ProRealTime Deutsch forum ProBuilder Support DRAWRECTANGLE manuell zeichnen

Viewing 5 posts - 1 through 5 (of 5 total)
  • #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=16920

    SLL=entrada-stoploss
    TPl=entrada+(ratio*stoploss)
    pipsTP= abs(ratio*stoploss)
    pips= abs(salida-entrada)
    salida= tpl

    if 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

    #204198

    Vorher oder nachher bedeutet IMMER. Tut es das jetzt nicht?

    Von den Fotos verstehe ich nicht, was Sie bekommen wollen.

    #204223

    vielen 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.

    #204250

    Dies ab 11:00 druckt das verschobene Rechteck um 14:30 (für 1 1/2 Stunden):

     

    #204266

    Vielen Dank!

Viewing 5 posts - 1 through 5 (of 5 total)

Create your free account now and post your request to benefit from the help of the community
Register or Login