LOW Indicator Lower Low

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #211378 quote
    axmichi
    Participant
    Senior

    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

    Lower-LOW.jpg Lower-LOW.jpg
    #211433 quote
    robertogozzi
    Moderator
    Master

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

    DEFPARAM CalculateOnLastBars = 1000
    //Tief=low[2]<low[3]and low[2]<low[4]and low[2]<low[1] and low[2]<low[0]
    Bull=close > open
    Bear=close < open
    Tief=(low[1]=lowest[30](low))
    Hoch=(high[1]=highest[30](high))
    IF Tief AND Bull AND Bear[1] THEN
       DRAWARROWup(barindex,low - 2.5 ) COLOURED(255,123,0,250)
    ENDIF
    IF Hoch AND Bull[1] AND Bear THEN
       DRAWARROWdown(barindex,high + 2.5 ) COLOURED("Green",255)
    ENDIF
    RETURN
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.

LOW Indicator Lower Low


ProBuilder: Indikatoren & Custom Tools

New Reply
Author
author-avatar
axmichi @axmichi Participant
Summary

This topic contains 1 reply,
has 2 voices, and was last updated by robertogozzi
3 years ago.

Topic Details
Forum: ProBuilder: Indikatoren & Custom Tools
Language: German
Started: 03/11/2023
Status: Active
Attachments: 1 files
Logo Logo
Loading...