Fiilled Gap Screener

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #87245 quote
    andy1987
    Participant
    New

    Hi everybody!

    Could someone help me create a screener that shows:

     

    gap with big volume, formed during the last 3 months?

    and if possible  gaps that are are going to be filled completely?

     

    Thanks

    #87247 quote
    andy1987
    Participant
    New

    or better, i need this…

    gap with big volume, that are are almost filled ?

    Thanks

    #87353 quote
    robertogozzi
    Moderator
    Master

    Two questions:

    1. are you using it on a Daily or Weekly TF?
    2. the big volume must be detected on the candle forming the gap?
    #87414 quote
    andy1987
    Participant
    New

    Hi, daily timeframe, and yes bigger than average volume on the candle forming the gap.

    Forgot to say that i operate short, but maybe is useful also the long version,  if someone is interested.

     

    I attach down here the code for find out down candles on big volume, but is it possible to extend the search to all the down candles on big volume formed during the last month or week? (daily timeframe)

    DOWN ON BIG VOLUME

    avgv = average[30](volume)
    
    condition = variation(close)<-10 AND volume>avgv*2
    
    SCREENER [condition](variation(close))
    
    
    

     

    Thank you!

    #87416 quote
    Vonasi
    Moderator
    Master

    andy1987 – please use the ‘Insert PRT Code’ button when putting code in your posts to make it more readable. I have tidied up your post for you. 🙂

    #87431 quote
    robertogozzi
    Moderator
    Master

    A screener can only return conditions based on current data, while a candle is forming.

    The condition, to be applied to the current candle, can be any previous combination (with a 254-bar lookback limit) of conditions, but can return just one numeric criterion, so if you want to know whether there have been big volume candles within the last 254 bars it can be done, but if you want to know WHICH previous candle was a big one…. well just one can be returned!

    To recap, please specify what you exactly want.

    #87501 quote
    andy1987
    Participant
    New

    hi! sorry, i don’t need to know which one, i can easily see it, i need only the screener returns me, if, within the selected period, there have been candles with volume.

     

    Not sure if i’m clear but i need 2 separate screener, the one that i explained up here, and another identical for find  gap with volume.

    With the additional condiztion: at least 50% filled, if possible.

     

    thanks

    #87509 quote
    robertogozzi
    Moderator
    Master

    This is the screener to detect whether within the last 3 months (65 daily bars approx., but you can easily change this number) there have been BIG VOLUME CANDLES. I also made it as an indicator so that you can put on your charts, beyond scanning markets live:

    TIMEFRAME(Daily)
    avgvD      = average[30](volume)
    conditionD = variation(close) <= 10 AND volume > avgvD * 2
    SCREENER[summation[65](conditionD)]
    avgvD      = average[30](volume)
    conditionD = variation(close) <= 10 AND volume > avgvD * 2
    RETURN conditionD

    As to the second screener do you want to see when a GAP is almost filled AND there is a BIG VOLUME CANDLE, what do you exactly mean by “and another identical to (edit: not for) find gap with volume“?

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

Fiilled Gap Screener


ProScreener: Market Scanners & Detection

New Reply
Author
author-avatar
andy1987 @andy1987 Participant
Summary

This topic contains 7 replies,
has 3 voices, and was last updated by robertogozzi
7 years, 3 months ago.

Topic Details
Forum: ProScreener: Market Scanners & Detection
Language: English
Started: 12/17/2018
Status: Active
Attachments: No files
Logo Logo
Loading...