Skip to content

Watchlists

Summary

Represents the Watchlists interface - allows getting all the watchlists and symbols in them, and receiving the relevant events.

Signature

1
public abstract interface Watchlists

Namespace

cAlgo.API

See Also

Properties

Item

Signature

1
public abstract Watchlist Item {get;}

Return Value

Watchlist

Events

Added

Summary

Occurs when a new watchlist is added.

Signature

1
public abstract event Action<WatchlistAddedEventArgs> Added;

Removed

Summary

Occurs when a watchlist is removed.

Signature

1
public abstract event Action<WatchlistRemovedEventArgs> Removed;

WatchlistSymbolAdded

Summary

Occurs when a new symbol is added to the watchlist.

Signature

1
public abstract event Action<WatchlistSymbolAddedEventArgs> WatchlistSymbolAdded;

WatchlistSymbolRemoved

Summary

Occurs when a symbol is removed from the watchlist.

Signature

1
public abstract event Action<WatchlistSymbolRemovedEventArgs> WatchlistSymbolRemoved;

WatchlistRenamed

Summary

Occurs when the name of the watchlist is changed.

Signature

1
public abstract event Action<WatchlistRenamedEventArgs> WatchlistRenamed;