Im getting Crazy here. Simple if(CLose[0]<Close[1]) Dont Work. ist getting enter 1 Bar later.
And yes its Calculated on Tick and its working right on Playback Mode, means on Replay it enters on the Right bar Live only on Normal Chart Showing Enter one Bar to the Right.
Im using NQ Chart 30 Seconds.
Its Frustrating that this simple Thinks not work. As i seer now Exits are One Bar to the Right too. Also wrong too.
Please Help me out.
Add<<<
here are the Simple Block. Than should Show Enter on Bar (0) at Chart but it does not means its enter at bar -1 ;o)
if(Close[1]>SMA1[1] && Low[1]<SMA1[1] && Open[1]>SMA1[1]){
EnterLong(1,0, "myEntryLong");
StopPrice=Low[1]-TickSize;
EntryPrice=Close[0];
TargetPrice=Close[0]+((EntryPrice-StopPrice)*2);
}
EDIt: I have now found out if i aktivate the Tick Replay in the Chart Window, than it shows right, but is that the Solution? its need i lot Computing power. why does this not work with the High resolution config?

( The Strategy works perfect in history but today i have tested realtime and the strategy close the Position immediately after open it at the same price.
Comment