My orders are managed with the second bar series Tick data.
Here is my order :
if(_entryBOrder1 == null && LowestRangePriceLevel != 0)
{ {
_entryBOrder1 = EnterLongLimit( 1, true, (DefaultQuantity*qty), LowestRangePriceLevel, "B1");
}
Entered Internal PlaceOrder() method at 10/3/2011 2:15:00 PM: BarsInProgress=1 Action=BuyOrder Type=Limit Quantity=1 LimitPrice=1104.00 StopPrice=0 SignalName='B1' FromEntrySignal="
It seems like the order has been placed. But I have no fill when the price hits that price.
I see no order filled ...
What in the hell is going on !

Comment