Here is a small code snippet to demonstrate the wall I have encountered.
protected override void Initialize()
{
Print("*");
CalculateOnBarClose = false;
TimeInForce = Cbi.TimeInForce.Gtc;
SeekType = null;
Indication = null;
OrderPending = null;
EntriesPerDirection = 2;
EntryHandling = EntryHandling.AllEntries;
TraceOrders = true;
EntryPriceLong = 0;
EntryPriceShort = 0;
}
protected override void OnBarUpdate()
{
Print("0");
//if (Historical)return;
if (CurrentBar < 1)return;
//if (FirstTickOfBar)return;
if (Bars.FirstBarOfSession)
Help please?

Comment