I have a single time frame strategy that I am working on.
Right now I have the following line of code that will not compile. I get an error that EnterShortStopLimit is not in context.
Any ideas?
entryOrderS = EnterShortStopLimt(0, true, iQuantity, (Close[0] - RANGE), (Close[0] + RANGE * 4), "E_Short");
RANGE is a variable.
iQuantity is an input.
Also, I read that when you set the liveuntilcanceled to true, the order is live unless you cancel it, or the time in force has expired. I am using Gtc. What impact does that have on me?
Thanks
Anthony

Comment