Return value
Return property for the specific symbol. This function overloads 2 variants as the following:
Public Function SymbolsInfoInteger(ByVal name As String, ByVal prop_id As ENUM_SYMBOL_INFO_INTEGER) As Long
- Returns bool value according to function is successfully performed:
Public Function SymbolsInfoInteger(ByVal name As String, ByVal prop_id As ENUM_SYMBOL_INFO_INTEGER, ByRef Long_var As Long) As Boolean
Parameters
Parameter |
Description |
Name |
Symbols name to get it information, value of type String. |
prop_id |
property that want to get it value , can be one of ENUM_SYMBOL_INFO_INTEGER |
integer_var |
The requested property value, value of type Long. |
Sample
Public Sub main()
Dim rst As Double
GUI.MsgDialog (ClientCode.SymbolInfoInteger("EUR/USD",
VTLGeneral.ENUM_SYMBOL_INFO_INTEGER.SYMBOL_PIP_LOCATION))
If ClientCode.SymbolInfoInteger("EUR/USD",
VTLGeneral.ENUM_SYMBOL_INFO_INTEGER.SYMBOL_PIP_LOCATION,rst) then
GUI.MsgDialog (rst)
Else
GUI.MsgDialog ("Failed")
End if
End Sub
See Also
Back to VTL Server Script Index
|