Help with wick rejection and price continuation

Forums ProRealTime English forum ProScreener support Help with wick rejection and price continuation

Viewing 9 posts - 1 through 9 (of 9 total)
  • #191936

    Hi there,

    Looking for some help with creating and indicator and a screener for the following :-

    1. If the price gets rejected within the last 5 candles by wicks to go in a certain direction but eventually gets filled by the wick on 6th candle then an arrow (up or down) and alert to be raised in the indicator.

    2. Same as above in the screener just the appearance of conditions being met.

    On any timeframe please.

    Anyone kind enough to help please?

    Ta

    #191971

    so that’s a breakout of a 5 periods donchian channel?

    #191973

    Hi Nicolas, just a simple breakout of the wicks, no indicator here. Thanks for your response!

    #191989
    JS

    Hi @amitoverseas40

    Something like this?

     

    1 user thanked author for this post.
    #191996

    Hi @JS, thanks for the response.

    Nicolas posted a simply indcator a while back that displays the pinbar (Below).

    I want this to be extended and include the reversal as displayed in the picture.

    So if the price is rejected via pinbar to move UP but still moved UP and candle closed HIGHER or equal to the pinbar than , arrow DOWN, alert and screener display.

    Similarly,  if the price is rejected via pinbar to DOWN but still moved down and candle closed LOWER or equal to the pinbar than , arrow DOWN, alert and screener display.

    We can look at last 5 candles maximum for this strategy to work. Effectively a pin bar break.

    —-CODE BY NICOLAS——

    shooting = (min(open,close)-low)/range<=.3 and (open-low)/range<=.5 and (close-low)/range<=.5 and pointsize <> 20
    hammer = (high-max(open,close))/range<=.3 and (high-open)/range<=.5 and (high-close)/range<=.5 and pointsize <> 20

    return -shooting,hammer

    ————————–

    #191997

    so that’s a breakout of a 5 periods donchian channel?

    Hi Nicolas, just looked at your previous posts, some fantastic work done by you!

    You posted an indicator as help to someone a while back. I want this to be extended and include the reversal as displayed in the picture.

    So if the price is rejected via pinbar to move UP but still moved UP and candle closed HIGHER or equal to the pinbar than , arrow DOWN, alert and screener display.

    Similarly, if the price is rejected via pinbar to DOWN but still moved down and candle closed LOWER or equal to the pinbar than , arrow DOWN, alert and screener display.

    We can look at last 5 candles maximum for this strategy to work. Effectively a pin bar break.

    —-YOUR CODE——

    shooting = (min(open,close)-low)/range<=.3 and (open-low)/range<=.5 and (close-low)/range<=.5 and pointsize <> 20
    hammer = (high-max(open,close))/range<=.3 and (high-open)/range<=.5 and (high-close)/range<=.5 and pointsize <> 20

    return -shooting,hammer

    ————————–

    #192042

    Can anyone help please??

    #192051

    So now that you included pinbars in your description, the code should be like this:

    Use the code in the screener assisted creation and the first variable “signal” in order to generate the screener.

    1 user thanked author for this post.
    #192062

    shooting = (min(open,close)-low)/range<=.3 and (open-low)/range<=.5 and (close-low)/range<=.5 and pointsize <> 20 hammer = (high-max(open,close))/range<=.3 and (high-open)/range<=.5 and (high-close)/range<=.5 and pointsize <> 20 if shooting then hi = high elsif hammer then lo = low endif signal = 0 if close crosses over hi or close=hi then drawarrowup(barindex,high) signal = 1 elsif close crosses under lo or close=lo then drawarrowdown(barindex,low) signal = -1 endif return signal, hi coloured(“green”),lo coloured(“red”)

    Hi Nicolas, thank you very much, much appreciated!

    This in conjunction with tested levels from Vonasi is a good combination. Albeit tested levels I requested for alert raised when closed above certain levels i.e. when price close above green and close below red, to Vonasi.

Viewing 9 posts - 1 through 9 (of 9 total)

Create your free account now and post your request to benefit from the help of the community
Register or Login