Syntax
Public Function LPNewLimitOrder(ByVal LPDescreption As String, ByVal LOType As VertexFXBridgeAPI.LimitOrderType, ByVal Amount As Double, ByVal LPSymbolName As String, ByVal Price As Double, ByVal LPAccount As Long, ByVal BOOrderID As String) As TransResult
Description
This function creates a new limit order on a certain symbol on the liquidity provider side.
Parameters
Key | Description |
LPDescreption | ID of the liquidity provider |
LOType | Type of order of typeLimitOrderType |
Amount | Amount of the order |
LPSymbolName | Symbol name |
Price | Order open price |
LPAccount | ID of liquidity provider account |
BOOrderID | Backoffice order ID |
Return value
Returns TransResult value.
Sample
Public Sub main() Msgbox (LP. LPNewLimitOrder("LP",1,1,"GOLD",1500,4454,4545).Succeeded)End Sub
See Also