public method IO2GClosedTradesTable.getRow
Brief
Gets a row from the IO2GClosedTradesTable
by its index.
Declaration | ||||
|
Parameters | |
index |
The index of the row. The index must be between |
Details
If the row is not found, the method returns null
.
Example
Get closed positions from the Closed Trades table [hide]
O2G2Ptr<IO2GClosedTradesTable> closedTradesTable = (IO2GClosedTradesTable *)tableManager->getTable(ClosedTrades); for (int i = 0; i < closedTradesTable->size(); ++i) { O2G2Ptr<IO2GClosedTradeTableRow> closedTrade = closedTradesTable->getRow(i); std::cout << "TradeID: " << closedTrade->getTradeID() << " CloseRate = " << closedTrade->getCloseRate() << " GrossPL= " << closedTrade->getGrossPL() << std::endl; }
Note: The returned row contains the current values of fields. The values are not automatically updated. To monitor
changes, use IO2GTableListener.onChanged
.
The row interface is thread-safe. One can use the returned row in different threads without synchronization.
Declared in IO2GClosedTradesTable