Summary
The event at which the market depth gets updated
Syntax
public event Action Updated
Example 1
MarketDepth _marketDepth; protected override void Initialize() { _marketDepth = MarketData.GetMarketDepth(Symbol); // subscribe to event Updated _marketDepth.Updated += MarketDepthUpdated; } // user defined function MarketDepthUpdated void MarketDepthUpdated() { // Do something }