protected override void OnBarUpdate()
{
if (BarsInProgress != 0)
return;
Print("Tom");
if(!traded){
PlaceTrade("long",1);
traded=true;
}
//double limitPrice = Low[0] - TickSize * 5;
}
But it is not printing when i load the strategy to chart. My Calculate = Calculate.OnPriceChange;
I'm a pro algorithmic developer but new to ninja trader

Wow, it works now, Pardon me as a newbie who knowns nothing about Ninja trader
Comment