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
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!
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. 🙂
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.
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
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“?