Syntax
Public Function SymbolName(ByVal index As Integer) As String
Description
This function is used to return the symbol name by symbol index at the market watch.
Parameters
Parameter | Description |
index | symbol position at |
Return value
Return symbol name as
Sample
Public Sub main() Dim i as Integer for i = 0 to ClientCode.SymbolsTotal Dim Symbolname as String = ClientCode. SymbolName (i) if Symbolname <> "Null" then Gui.MsgDialog (Symbolname) end if next End Sub
See Also