Syntax
Public Function LimitRelation (ByVal TransType As OperationTypeEnum) As String.
Parameters
This function is used to determine if the prices should be greater than or less than the current price with offset by the given operation type.
Parameter | Description |
TransType |
Operation type which can be one of OperationTypeEnum. |
Return value
Returns <, > as the value of type String.
Sample
Public Sub main() Dim limitRelation as String= ClientCode.LimitRelation(VTLGeneral.OperationTypeEnum.BuyType) GUI.MsgDialog(limitRelation) End Sub
See Also