Screener taglio due medie con big candle

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #182008 quote
    emanuele.intoppa
    Participant
    New

    Buonasera, avrei bisogni di uno screener buy con queste caratteristiche:

    1. Prezzo che taglia e chiude al rialzo due ema (40 e 9) e che il taglio della media piu’ alta non debba essere meno del 50% della candela

    2. Ampiezza della candela tra min e max deve essere maggiore della media delle ultime 5 candele

    3. Ogni shadows della candela non deve superare il 20% del range dell’ampiezza della candela (max 20% per shadows)

    4. Le medie 40 e 9 devono essere  inclinate verso l’alto

    Al contrario uno screener short:

    1. Prezzo che taglia e chiude al ribasso le due medie 40 e 9

    4. Le medie 40 e 9 devono essere inclinate veeso io basso

    Grazie mille in anticipo!!

    #182142 quote
    robertogozzi
    Moderator
    Master

    Versione LONG:

    // 1 - LONG
    //
    Ema40 = average[40,1](close)
    Ema9  = average[9,1](close)
    TopSH = high - max(open,close)
    BotSH = min(open,close) - low
    c1    = close CROSSES OVER Ema9
    c2    = Ema9 > Ema40
    c3    = abs(high - Ema9) >= (range / 2)
    c4    = range > average[5,0](range[1])
    c5    = TopSH <= (range * 0.20)
    c6    = BotSH <= (range * 0.20)
    c7    = Ema9  > Ema9[1]
    c8    = Ema40 > Ema40[1]
    Cond  = c1 AND c2 AND c3 AND c4 AND c5 AND c6 AND c7 AND c8
    SCREENER[Cond]

    Versione SHORT:

    // 2 - SHORT
    //
    Ema40 = average[40,1](close)
    Ema9  = average[9,1](close)
    TopSH = high - max(open,close)
    BotSH = min(open,close) - low
    c1    = close CROSSES UNDER Ema9
    c2    = Ema9 < Ema40
    c3    = abs(high - Ema9) >= (range / 2)
    c4    = range > average[5,0](range[1])
    c5    = TopSH <= (range * 0.20)
    c6    = BotSH <= (range * 0.20)
    c7    = Ema9  < Ema9[1]
    c8    = Ema40 < Ema40[1]
    Cond  = c1 AND c2 AND c3 AND c4 AND c5 AND c6 AND c7 AND c8
    SCREENER[Cond]
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.

Screener taglio due medie con big candle


ProScreener: Scansione Mercati & Screener

New Reply
Author
Summary

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

Topic Details
Forum: ProScreener: Scansione Mercati & Screener
Language: Italian
Started: 11/21/2021
Status: Active
Attachments: No files
Logo Logo
Loading...