Public Sub MarketOrderClosed(ByVal LPOrderID As String, ByVal BuySell As OperationType, ByVal Amount As Double, ByVal LPSymbolName As String, ByVal Price As Double, ByVal LPAccountID As String, ByVal BOOrderID As String, ByVal BOAccountID As String)
This function should be called after CloseMarketOrder function if it returns the success result.
Parameter
Part | Description |
LPOrderID | Closed order number received from the LP. Value of type is String |
BuySell | Market order type received by CloseMarketOrder function. Value of type isOperationType |
Amount | Closed amount of lots, received by CloseMarketOrder function. Value of type is Double |
LPSymbolName | Closed order symbol name, received by CloseMarketOrder function. Value of type is String |
Price | Closed price value, value of type is Double |
LPAccountID | LP account number whichclosed the order on, received by CloseMarketOrder function. Value of type is String |
BOOrderID | The BackOffice order number received by CloseMarketOrder function. Value of type is String |
BOAccountID | The BackOffice account number, received by CloseMarketOrder function. Value of type is String |
See Also