Hi!
I need help with a screener with only one condition, current candle closing bottom 10%
If anyone could help that would be great! Thanks!
There you go:
x = low + (range * 0.1)
Screener[close <= x]
Thank you for taking the time!
unfortunately i seem to get all types of closes both highs and lows, any ideas?
It closes in the bottom 10% of the candle, what do you mean by “both highs and lows”?
I need it screen out stocks closing bottom 10% of candle. This one for me, seems to pick out stocks att random. Almost all of the stocks in my list is shown in this screener even tho they closed day high.
Ok, you mean the DAILY candle, I did not pay much attention:
x = Dlow(0) + ((Dhigh(0) - Dlow(0)) * 0.1)
Screener[close <= x]
The fault is on my part. However this screener does not help me either. Same results. Does it work for you?
Yes, to find those stocks or currency pairs whose price is within the bottom 10% of the current daily range.