LOW Indicator Lower Low

Forums ProRealTime Deutsch forum ProBuilder Support LOW Indicator Lower Low

Viewing 2 posts - 1 through 2 (of 2 total)
  • #211378

    Ich möchte gern einen Indicator haben der mir die Low, Lower Low und Higher Low im Chart anzeigt

    Bei meinem code ist der Pfeil nicht genau unter dem Signal?

    schaue Chart

    Hier die Regel für ein “Low”:   Low[0]<low[1] and low[0]<low[2] and low[0]<low[+1] and low[0]<low[+2]

    Regel für das “Lower Low”: die selben Regeln wie beim “LOW” nur das das Signal unter dem letzten “LOW” siehe Bid

    Regel für das “Higher LOW”: die selben Regeln wie beim “LOW” nur das das Signal über dem letzten “LOW”

    Ich weiß leider nicht wie ich das “lower low” und das “higher low” codieren soll?

    Hier mein falscher Code für das ” Low”

    DEFPARAM CalculateOnLastBars = 1000

    Tief=low[2]<low[3]and low[2]<low[4]and low[2]<low[1] and low[2]<low[0]

     

    IF Tief THEN
    DRAWARRowup(barindex,low – 0.5 ) COLOURED(255,123,0,250)
    ENDIF
    RETURN

    #211433

    Dies druckt die Pfeile nur, wenn es eine Umkehrkerze gibt (im Gegensatz zur vorherigen) und das Hoch oder Tief der letzten 30 Balken auftritt:

     

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

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