Looking thou the logs I can see that it is submitting orders at 8.30 when It should be submitting the orders at the open, 8.00.
Here is the log entry,
A BuyToCover stop order placed at '14/02/2013 08:30:00' has been ignored since the stop price is less than or equal to the close price of the current bar. This is an invalid order and subsequent orders may also be ignored. Please fix your strategy.
Here is some of my OnBarUpdate,
protected override void OnBarUpdate()
{
if(CurrentBars[1] <= 1)
return;
if(CurrentBars[1] == null)
return;
if(BarsInProgress != 0)
return;
// If there is a new session add one to session count.
if(Bars.SessionBreak)
sessionCount++;
and my order submition is :-
if(Bars.FirstBarOfSession)
{
if(EMA(fEMA)[0]>EMA(sEMA)[0]) // LONG ENTRYS
{
if(Open[0] > pp && Open[0] < r1)
{
longEntryPP = EnterLongLimit(0,true, 1,pp + entryAllowance * TickSize , "Long Entry PP");
}
Also when I enable the strategy I see nothing on the chart it is enabled on?

Comment