MarketDepth.symbol() Depth Functions
Returns the symbol for the specified EFS depth ID.
Syntax
MarketDepth.symbol( DepthId )
Parameters
Parameter: | Description: | Default: |
DepthId | Required. Number representing the specified ID for the depth. | n/a |
Notes
Only available in versions 11.7 or later.
Code Examples
var depthID = null; function main(){ var SourceList = MarketDepth.getSources(); if (SourceList != null) { depthID = MarketDepth.subscribe(SourceList[0]); debugPrintln("DepthSymbol: " + MarketDepth.symbol(depthID)); }... }