I have troubles with placeing market orders with my strategies.
I have test on my PC and on my Notebook.
I can't find even orders from my strategy.
I have try sell and buy market orders. And got nothing.
I have wrote simple strategy
protected override void OnBarUpdate()
{
EnterLong(1,"buy");
EnterLong();
Print("EnterLong");
}

Comment