InstrumentsCollection CLASS

GetSortedInstruments () METHOD (Return: Instrument[])
Gets the array with all active Instrument items sorted by name. SYNTAX public Instrument[] GetSortedInstruments () RETURN Instrument[] array...
Sun, May 13, 2018 at 12:24 PM
Subscribe (Instrument instrument, QuoteTypes types) METHOD (Return: bool)
The Subscribe method is used to create a subscription to a resource. This method is used to specify the details about the event to be monitored: what instru...
Sun, May 13, 2018 at 12:26 PM
Unsubscribe (Instrument instrument, QuoteTypes types) METHOD (Return: bool)
The Unsubscribe operation is used to end a pull subscription. The Unsubscribe element contains the parameters used to unsubscribe from a subscription. S...
Sun, May 13, 2018 at 12:42 PM
InstrumentAdded EVENT
Occurs when the new instrument is coming. SYNTAX public event Action<Instrument> InstrumentAdded EXAMPLE using System; using System....
Sun, May 13, 2018 at 12:45 PM
NewLevel2 EVENT
Occurs when the new level2 quote by subscribed instrument is coming. SYNTAX public event Action<Instrument, Level2> NewLevel2 EXAMPLE ...
Sun, May 13, 2018 at 12:47 PM
NewQuote EVENT
Occurs when the new Level1 quote by subscribed instrument is coming. SYNTAX public event Action<Instrument, Quote> NewQuote EXAMPLE u...
Sun, May 13, 2018 at 12:49 PM
NewTrade EVENT
Occurs when the new trade quote by subscribed instrument is coming. SYNTAX public event Action<Instrument, Trade> NewTrade EXAMPLE us...
Sun, May 13, 2018 at 12:51 PM