Difference between revisions of "Dom askprice"

From MultiCharts
Jump to navigation Jump to search
(Created page with "Returns ask price for the certain depth level of a particular symbol. '''Usage''' <syntaxhighlight> dom_askprice(num) [data(N)] </syntaxhighlight> where: (num) is the number ...")
 
 
Line 14: Line 14:
 
</syntaxhighlight> will return the ask price for the 5th level of depth for the data1
 
</syntaxhighlight> will return the ask price for the 5th level of depth for the data1
 
<syntaxhighlight>dom_askprice(2) data2;</syntaxhighlight> will return the ask price for the 3rd level of depth for the data2
 
<syntaxhighlight>dom_askprice(2) data2;</syntaxhighlight> will return the ask price for the 3rd level of depth for the data2
 +
 +
[[Category:DOM]]

Latest revision as of 14:18, 19 March 2012

Returns ask price for the certain depth level of a particular symbol.

Usage

dom_askprice(num) [data(N)]

where: (num) is the number of depth level (N) - number of the data series

Example

dom_askprice(4);

will return the ask price for the 5th level of depth for the data1

dom_askprice(2) data2;

will return the ask price for the 3rd level of depth for the data2