When creating a csv with several hundred tickets for batch processing, I want the file to contain all necessary information to minimize the # of manual modifications required after uploading the csv file into REDI or PT for batch release.
Certain order types require additional parameters:
(e.g. VWAP, TWAP, EDGX <inside limit bid allowance = 0.30>, smart route 'xyz' <urgency: passive/aggressive/normal>, etc..)
The code snippets don't include fields for these additional arguments to passed in:
ptOrder.Symbol = "IBM";
ptOrder.Side = "Sell";
ptOrder.Quantity = 7;
ptOrder.Exchange = "*ticket"; //PT is a bunch of tickets
ptOrder.Price = 143.71
ptOrder.Account = "YourREDIAccount";
ptOrder.SetTFUser("YourREDIUserId");
ptOrder.SetTFList("TestList1");
ptOrder.Warning = false; //Disable the pop-up warning for invalid limit price
success = ptOrder.Submit(ref err);