Syntax
Public Function SymbolsTotal(Selected As Boolean) As Integer
Description
This function is used to return the number of symbols on market watch or on the general list.
Parameters
Key | Description |
Selected | To determine which symbols list need to get the total number for it, value of type Boolean. |
Return value
Returns the total number of symbols based on selected value.
Selected Value | Result |
If selected = true | Return the total number of symbols in the market watch. |
If selected= false | Return the total number of symbolsin the general list. |
Sample
Public Sub main()AlertMessage SymbolsTotal(true) 'Returns the total number of symbols in the market watch.End Sub
See Also