I have developed a strategy that works well most of the time. This is for backtesting only, using daily charts, but I also have a 1-minute granular series added to fine-tune my entries and exits. I use:
FirstEntry = EnterLongStop(0, true, DefaultQuantity, higherHighPrice, "FirstEntry");
to make my entries at the end of the day - so the order is created and waiting for the next day to be execution. It works fine most of the time, but occasionally the market gaps up especially on daily charts, above my stop price - and the order gets ignored. So, my question is - how would I handle that? I still want to get in on market open at any price above my stop - whether the market gaps up or not.
Any help is appreciated.
Thank you!
-roberto

. But, the market order won't work for me - the reason why I'm using a stop order is that I want to be in only if price is over a certain level - hence my stop order. I don't want to be long if price is under the stop..... Any other ideas?
Comment