The Idea is that the desired EMA crossover entry was not setup and it is now too late to enter using that strategy. This is to be an alternate entry related to Market price.
Is the following correct for a LONG MARKET entry? I do not think I can back test it.
Step one: "IF" EntryPrice>=GetCurrentAsk()
"DO" EnterLong(DefaultQuantity." ")
Step two: CrossBelow(EMA(5),EMA(6),1)
ExitShort(" ". " ")
If I enter at MARKET would this get me in going long and then out when the crossover occurs? I need a stop for this entry if it were to reverse immediately, but I honestly don't know how. If it gets me in I can monitor it until the profit is high enough to allow the crossover to exit normally

Comment