screeners 3 doji

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

    Buonasera,

    sarebbe possibile creare uno screener che indichi 3 o più candele doji che siano sopra una media mobile esponenziale a 10 periodi?

    allego esempio

     

    grazie a tutti

    1.png 1.png
    #180864 quote
    robertogozzi
    Moderator
    Master

    Eccolo:

    Body      = abs(close - open)
    UpperWick = high - max(close,open)
    LowerWick = min(close,open) - low
    c1        = Body <= (range * 0.15)            //Corpo <= 15% del range
    c2        = (UpperWick >= (Range * 0.70)) OR (LowerWick >= (Range * 0.70))//ombre (superiori o inferiori) >= 70% del range
    DojiBar   = (c1 AND c2) AND (Body <> 0)
    Ema10     = average[10,1](close)
    Cond      = (summation[3](DojiBar AND (min(close,open) > Ema10)) = 3)
    SCREENER[Cond]
    lowbat thanked this post
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.

screeners 3 doji


ProScreener: Scansione Mercati & Screener

New Reply
Author
author-avatar
lowbat @lowbat Participant
Summary

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

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