Syntax
Public Function SymbolSelect(SymbolName As String, Selected As Boolean) As Boolean
Description
This function used to show/hide the given symbol in market watch.
Parameters
Key | Description |
SymbolName | Symbol name that want to show/hide, value of type of string. |
Selected | If True the symbolappeared on the marketwatch ,false to hide the symbol,value of type Boolean. |
Return value
Returns true if successful.In order to get an error, call GetLastError() function.
Sample
Public Sub main()AlertMessage SymbolSelect("EUR/USD",True) 'Returns true if the symbol is selected. End Sub
See Also