I wrote some codes to sum up daily realized profit.
foreach (Trade i in Signals)
{
if (ToDay(i.Entry.Time)==BarDate)
{
DailyPnL = DailyPnL + i.ProfitPoints;
PrintWithTimeStamp(Convert.ToString(i.ProfitPoints));
PrintWithTimeStamp(Convert.ToString(i.Entry.Price));
}
5/21/2012 09:59:56 1296.10453342885
Is there a work around of this, so that I get more realistic entry price in back testing?

Comment