Hello,
A request for help for a simple screener.
On the 30-minute timeframe, find the stocks whose candle is greater than the previous candle by more than 10%.
Close> close [1] + 10%.
I do not know how to code a percentage.
Thank you for your help.
I tried this but it did not work.
((Close-close [1]) / close [1]) * 100> 10
There is a specific keyword to get the percentage variation from the last X candlestick, so in your case:
condition = variation>10
Variation keyword returns variation percent % between the close of the last bar and close of the current bar.
Thank you nicolas, I had not seen your answer.