Screener for enguler candles

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #168569 quote
    nealhart
    Participant
    Junior

    Hi, is it possible to help with a screener I need for a certain “engulfer” candle setup? Thanks very much

     

    ENGLUFER CANDLE CRITERIA =

    A LARGER CANDLE THAT TURNS IN OPPOSITE DIRECTION FROM PREVIOUS CANDLE

    THE HIGH/LOW ( WICK) MUST BE EQUAL OR GREATER THAN PREVIOUS CANDLE

    THE OPEN/CLOSE (BODY) MUST BE GREATER THAN PREVIOUS CANDLE

    #168597 quote
    robertogozzi
    Moderator
    Master

    To recap:

    • the upper wick must be >= than previous (larger or higher? I assume larger)
    • the lower wick must be >= than previous (larger or lower?  I assume larger)
    • the body must be > than previous

    There you go:

    Body      = abs(close - open)
    UpperWick = high - max(open,close)
    LowerWick = min(open,close) - low
    c1        = UpperWick >= UpperWick[1]
    c2        = LowerWick >= LowerWick[1]
    c3        = Body      >  Body[1]
    Cond      = c1 AND c2 AND c3
    SCREENER[Cond]
    #168620 quote
    nealhart
    Participant
    Junior

    Hi, I have attached a screenshot for more clarity.

    Can there be an adjustment?

    Thanks very much for the help.

    ENGULFER-CANDLE-EXAMPLES.jpg ENGULFER-CANDLE-EXAMPLES.jpg
    #168665 quote
    robertogozzi
    Moderator
    Master

    Sorry, I forgot to add the second candle to go the opposite direction:

    Bullish   = close > open
    Bearish   = close < open
    Body      = abs(close - open)
    UpperWick = high - max(open,close)
    LowerWick = min(open,close) - low
    c1        = UpperWick >= UpperWick[1]
    c2        = LowerWick >= LowerWick[1]
    c3        = Body      >  Body[1]
    c4        = (Bullish AND Bearish[1]) OR (Bearish AND Bullish[1])
    Cond      = c1 AND c2 AND c3 AND c4
    SCREENER[Cond]
    #168840 quote
    nealhart
    Participant
    Junior

    Hi, thanks so much for the formula. Much appreciated 🙂

    Kind regards

    Neal.

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

Screener for enguler candles


ProScreener: Market Scanners & Detection

New Reply
Author
author-avatar
nealhart @nealhart Participant
Summary

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

Topic Details
Forum: ProScreener: Market Scanners & Detection
Language: English
Started: 05/02/2021
Status: Active
Attachments: 1 files
Logo Logo
Loading...