Ok question that I saw answered on another forum but is not possible in my scenario.
I am submitting stop orders and I keep getting these errors "An order has been ignored since the stop price X blah blah"
I read up on the error and it seems that it is assuming the error would be rejected I think?
Regardless I have found a scenario where I am placing the order 1 point away from where price would of been and it is still assuming it would of gotten rejected so want to know if there is a solution.
Notes of what I am doing:
- Submitting order on Primary Bar Series (BarsInProgress 0) with the granularity of a 1 tick data series (I have a 1 tick data series loaded in the background). So the submission looks like this
"EnterLongStopMarket(1, true, Quantity, entryPrice, entryText);" This order ends up being 1 Point above the open of the next bar so may be rejected in a crazy market but maybe not. Let me know if I am thinking of this wrong
Things I have tried:
1. Submitting to Primary Data Series "EnterLongStopMarket(0, true, Quantity, entryPrice, entryText);" Doesn't work either as expected
2. I am using a 1 Tick Data series in the background so I cannot change the Historical Order Fill Processing to High (The solution I saw on another forum post)
3. I even tried submitting it on the opening tick of the next bar on the 1 tick data series and it still ignored it.
Let me know if you need anything else from me, I can send test script if needed.
Thanks!

Comment