Bollinger e ADX

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #184756 quote
    sivispacem
    Participant
    Junior

    Buongiorno  a tutti,

    necessiterei uno SCREENER che abbia queste caratteristiche:

    • ADX (14) < 20
    • Bande di Bollinger (10, 2) 
    • Stocastico (8,3,3) in iper(comprato/venduto; >80 x lo Short e <20 x il Long)
    • Segnale che si manifesta alla candela di rientro nelle bande di Bollinger dopo che la candela precedente le ha rotte.                                                                                                                                                                                                                                                                                               Grazie in anticipo
    #184817 quote
    robertogozzi
    Moderator
    Master

    Eccolo:

    MyADX    = ADX[14]
    TopBB    = BollingerUp[20](close)
    BottomBB = BollingerDown[20](close)
    MyStoch  = Stochastic[8,3](close)
    L1       = MyADX < 20
    S1       = L1
    L2       = MyStoch < 20
    S2       = MyStoch > 80
    L3       = close CROSSES OVER  BottomBB
    S3       = close CROSSES UNDER TopBB
    CondL    = L1 AND L2 AND L3
    CondS    = S1 AND S2 AND S3
    Cond     = 0
    IF CondL THEN
       Cond = 1
    ELSIF CondS THEN
       Cond = 2
    ENDIF
    SCREENER[Cond](Cond AS "1=↑, 2=↓")
    Il-Mio-ProScreener12.itf
    #184835 quote
    sivispacem
    Participant
    Junior

    Grazie mille sempre Roberto.

    Funziona perfettamente, anche su tf bassi.

    Grazie ancora, a presto.

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

Bollinger e ADX


ProScreener: Scansione Mercati & Screener

New Reply
Author
author-avatar
sivispacem @sivispacem Participant
Summary

This topic contains 2 replies,
has 2 voices, and was last updated by sivispacem
4 years, 2 months ago.

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