New(ByVal LPTypeDesc As String, SupportsMultiAccount As Boolean)
Description
You have to call VertexFXLP base class constructor in your LP class constructor, in order to define your LP’s description, and if it supports multiple accounts trading at the same session or not.
Parameter
Part | Description |
LPTypeDesc | Descriptionfor your LP Type |
SupportsMultiAccount |
|
Sample
' This is your LP class constructor Public Sub New() ..MyBase.New("VertexFX", False).. End Sub
See Also