Order originalOrder = e.Order; Order order = _receiverAccount.CreateOrder( originalOrder.Instrument, orderAction, orderType, originalOrder.TimeInForce, originalOrder.Quantity, originalOrder.LimitPrice, originalOrder.StopPrice, OcoId, "Entry", originalOrder.CustomOrder);
I'm creating an indicator that copies orders from another account to replicate, but to do this I need to send a copy order of the original. The original uses an ATM Strategy order and I wanted to replicate the same entry.

Comment