Boomer pattern

Boomer pattern

The boomer pattern is a special graphic configuration formed by three bars in sequence, of which the last two are inside the previous one. In practice the first bar encloses the two successive which have minimum and maximum respectively upper and lower than the previous.

Ultimately, after the first bar, the pattern contain two “inside days”, days when the minimum and the maximum grow without exceeding the values of the previous range.

That graphic situation indicates a progressive compression of volatility which normally gives rise to an explosion of significant quantities prices.

This pattern identify a price squeeze consisting of three bars in the sequence having the characteristics described above which is a prelude to a subsequent volatility of explosion. However this pattern of course not allow in any way to predict the direction of the breakout, if not relying on continuation pattern or reversal of technical analysis, such as the triangles that are formed on a maximum or a minimum period of rather than in the middle of a trend in place.

The pattern, results in a triangular shape which can be of a reversal or continuation of the main trend.

In this ProScreener code, an ADX filter is added to know if the instrument is trending (ADX value must be above 25 at least). 

I also add a DI+ and DI- comparison (above / below), to find what is the actual trend and give an information of what would be the direction of the triangle breakout : bullish or bearish. This is the sorted column criteria: 1 = potential bullish explosion to come, -1=bearish one).

 

 

Share this

Risk disclosure:

No information on this site is investment advice or a solicitation to buy or sell any financial instrument. Past performance is not indicative of future results. Trading may expose you to risk of loss greater than your deposits and is only suitable for experienced investors who have sufficient financial means to bear such risk.

ProRealTime ITF files and other attachments : How to import ITF files into ProRealTime platform?

PRC is also on YouTube, subscribe to our channel for exclusive content and tutorials

  1. gianlox • 01/12/2017 #

    I created the indicator
    //Boomer pattern indicator

    c = summation[2](high<high[1] and low>low[1])=2
    v = summation[2](volume<volume[1])=2
    a = adx[14]>=25
    d = DIplus[14]>DIminus[14]
    e = DIplus[14]<DIminus[14]
    boomerlong = c and v and a and d
    boomershort = c and v and a and e

    //bullish trend
    if boomerlong then
    DRAWARROWUP(barindex, low- low*0.003) coloured(0,255,0)
    DRAWcandle(open, high, low, close) coloured(0,255,2)
    DRAWTEXT(\"Boomer Long\", barindex, high+high*0.03) coloured(255,255,2)
    endif

    //bearish trend
    if boomershort then
    DRAWARROWdown(barindex, high+ high*0.003) coloured(255,0,0)
    DRAWcandle(open, high, low, close) coloured(255,0,0)
    DRAWTEXT(\"Boomer Short\", barindex, low-low*0.03) coloured(255,255,2)
    endif

    return boomerlong or boomershort

     

    • Nicolas • 01/12/2017 #

      Thanks for sharing it here! 😉

  2. johan_s • 01/12/2017 #

    Hi
    Can’t get the indicator to work. “Syntax error line 13 character 12”
    Can somebody help me?

    • Nicolas • 01/12/2017 #

      Not an indicator but a screener.

    • johan_s • 01/12/2017 #

      Nicolas! You screener works perfekt, thank you. But theI meant the indicator and the code gianlox posted. 

    • Nicolas • 01/12/2017 #

      Oh sorry! I think you are still using the 10.2 version of the platform that don’t allow these new graphical instructions, that’s the reason why you get this syntax error.

  3. Chamberskob • 01/12/2017 #

    Hi Nicolas, your screeners are great thanks heaps! I am just getting used to PRT. Any chance you have some for: Cup and Handle Pattern, High tight flag and (VCP) volatility contraction patterns…..??

    • Nicolas • 01/12/2017 #

      Why not, please add a query as a new topic in the screeners forum.

avatar
Register or

Likes

avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar
Related users ' posts
lolo
10 years ago
Reversal MACD
Reversal MACD
0
Screeners
lolo
10 years ago
Bearish engulfing
Bearish engulfing
2
Screeners
dmigliav Thanks a lot. Here the same code only for Bullish Engulfing: REM Compute the power of the ...
javier.puig.rovira@gmail.com Hi! I was trying to import the code but it doesn t let me do it. Do you mind to do a ITF fil...
lolo
10 years ago
lolo
10 years ago
falbamonte Hi lolo I have imported your screener but it's giving me results that appear far from any cr...
Nicolas Do you have real time data for these stocks?
lolo
10 years ago
BULLISH BREAKOUT
BULLISH BREAKOUT
0
Screeners
lolo
10 years ago
lolo
10 years ago
lolo
10 years ago
CANDLE BEARS SCREENER
CANDLE BEARS SCREENER
1
Screeners
fiboman3000 thanks alot! the code is actually a very handy candlestick tool kit for creating any possibl...
lolo
10 years ago
swing tracker upswing
swing tracker upswing
3
Screeners
BennieHofer Cant get this screener to work in prorealtime screener,2 errors
Nicolas Wrong copy/paste? Try to download the .itf file and import it into your platform instead.
BennieHofer Thanks Nicolas, the downloading worked. I'm new to trading and this site.
lolo
10 years ago
Bearish start
Bearish start
2
Screeners
BZH22 bonjour, tu peux me faire un screener avec ces conditions : - Le cours a beaucoup chuté,...
Nicolas et la marmotte ? :)
lolo
10 years ago
Bullish start
Bullish start
0
Screeners

Top