I also want the orders to be filled or kill. (FOK)
I do not want partial fill.
I want BOTH orders to be accepted, not one, and nothing less.
Basically, I want BOTH EURUSD and GBPUSD to be filled at the quantity specified,
or not to place the orders at all.
if (
// conditions are true...
)
{
EnterShort(0,Quantity,"EURUSD");
EnterLong(1,Quantity,"GBPUSD");
}

Comment