I am trying to submit a test order via C#. I am always getting success = false and err = null
FWIW. I can place orders via the REDIPlus > Montage Monitor. Also, I can read Positions via my C#. So I know my code is ok.
ORDER ptOrder = new ORDER(); Object err = null; bool success; ptOrder.Symbol = "IBM"; ptOrder.Side = "Buy"; ptOrder.Quantity = 7; ptOrder.Exchange = "DEMO DMA"; ptOrder.Ticket = "Bypass"; ptOrder.TIF = "Day"; ptOrder.Account = "PQK******"; ptOrder.PriceType = "Market"; success = ptOrder.Submit(ref err);
p.s. I also tried REDIPortfolioTrader. I
---
Still cannot place an order, but I can open the Montage Dialog with the above information pre-populate
ptOrder.DisplayMontage(50, 50);