@Streak I’m trying to code a simple strategy such that if the last 2 hour’s % change is above certain threshold then take an entry.
Basically
((Last to previous hours close -current hours close) / current close) is higher than let’s say 1% then take an entry
Exit on the close of next to next hours candle’s close i.e after 2 hours of taking an entry.
I tried playing around but I can’t seem to make it work like I want it to.
Anyone here that can help?