Screener di candela inside con un indicatore

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #72129 quote
    Tradesun
    Participant
    Senior

    Salve, vorrei chiedere se è possibile creare uno screener o un sistema di allarme push tramite applicazione, quando si verifica una determinata condizione, come segue:

    Vorrei creare una versione ribassisata l’ADX che deve partire da un valore basso sotto i 20 punti per poi avere un trend ribassista l’adx deve essere maggiore di 21 punti e che la direzionalità ribassista -DMI sia maggiore di quella rialzista +DMI.

    Inoltre insieme alla condizione descritta vorrei aggiungere un pattern INSIDE riporto codice:

    c1=(High-Low) = lowest[4](high-low)
    c2=high< high[1]
    c3=low > low[1]
    

    Saluti e grazie.

    INSIDE.png INSIDE.png
    #72212 quote
    robertogozzi
    Moderator
    Master

    ProScreener non può intereagire col sistema di allarmi di PRT, devi verificare tu, sul TF che ti interessa, se ci sono novità (ad esempio ogni ora se hai uno screener su h1).

    Prova questo codice, io l’ho testato solo brevemente su 1 minuto e su settimanale e sembra funzionare:

    c1 = (High - Low) = lowest[4](high - low)
    c2 = high < high[1]
    c3 = low > low[1]
    InsideBar = c1 AND c2 AND c3
    MyAdx     = ADX[14]
    MyDIplus  = DIplus[14](close)
    MyDIminus = DIminus[14](close)
    MyCond    = MyDIplus < MyDIminus AND MyAdx > 21 AND MyAdx > MyAdx[1]
    SCREENER[InsideBar AND MyCond]
    #72264 quote
    Tradesun
    Participant
    Senior

    Ho provato e funziona, grazie mille.

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.

Screener di candela inside con un indicatore


ProScreener: Scansione Mercati & Screener

New Reply
Author
author-avatar
Tradesun @tradesun Participant
Summary

This topic contains 2 replies,
has 2 voices, and was last updated by Tradesun
7 years, 9 months ago.

Topic Details
Forum: ProScreener: Scansione Mercati & Screener
Language: Italian
Started: 06/03/2018
Status: Active
Attachments: 1 files
Logo Logo
Loading...