Public Overrides Function Symbol (ByVal Index As Integer) As Symbol
This function should return an object of type Symbol for the symbol of this Index.
Sample
Public Overrides Function Symbol(ByVal Index As Integer) As Symbol Dim Sym As VertexFXClientAPI.COSymbol Sym = m_oClient.SymbolByIndex(Index + 1) ' Because our API starts from 1! If Sym Is Nothing Then Return Nothing Else Return New Symbol(Sym.Name, Sym.Bid, Sym.Ask) End If End Function
See Also