Syntax
Public Overrides Function UpdateLimitOrder(ByVal OrderID As Long, ByVal Lots As Double, ByVal NewPrice As Double, Optional ByVal SL As Object = "", Optional ByVal TP As Object = "") As TransResult
This function is used to update updating a limit/stop order.
Parameters
Key | Description |
OrderID | Value of typelong |
Lots | Value of type double |
NewPrice | Value of type double |
SL | Optional. object |
TP | Optional. object |
Sample
Public Sub BOChatOrderReceived (ByVal BOOrder As VertexFXBridgeAPI.Order) Dim Result As VertexFXBridgeAPI.TransResult Result=BO.GetBO.UpdateLimitOrder (523146,1, 2000, , ) End Sub
See Also