Syntax
Public Overrides Function AcceptRequotedOrder(ByVal OrderID As String,ByVal NewPrice As Double)As TransResult
Description
This function should accept re-quoted order with the LP, this will return an object of type TransResult that represent a fail or success result.
Remark
If the result of accepting is succeeded you must to change the order sate as following
MyBase.OrderState.MarketOrderAccepted
If the result of accepting is failed
MyBase.OrderState.MarketOrderFailed
Parameters
Key | Description |
OrderID | Order number to be accepted the reqouted, value of type String. |
Price | The price value that requoted in it, value of type Double |
See Also