OrderLoader Overview

OrderLoader is a utility for bulk-loading multiple of orders from a CSV file. The format of the file itself is data-driven, which means that the header row determines the fields that need to be present in the subsequent rows and which will be added to the message that is later sent to the ORS.
Here's a sample file:

Symbol,Side,OrderQty,Price,TimeInForce,Account
SUNW,B,3000,4.23,DAY,ACCT-347
SUNW,SS,4000,4.26,DAY,ACCT-347
GOOG,B,2000,408.1,DAY,ACCT-347
GOOG,SS,4000,408.18,DAY,ACCT-347

Here, we specify that all orders will contain the Symbol, Side, OrderQty, Price, TimeInForce and Account fields.

The OrderLoader creates an order corresponding to each line in the data file and sends it directly to the ORS.
After all orders are sent, a summary report is printed.

For additional information on how to configure OrderLoader and what else can be specified in the data file, please see the detailed OrderLoader Guide.