Documentation / Constants

The MedianPrice constants give the value of the last average of the high and the low.

Syntax:

 

Example:

Smoothing the price information with less noises with the MedianPrice value :

 

Opening price constant of the current bar or of the Nth last bar.

Syntax:

 

Example:

 

Return the range value between high and low of the selected bar.

Syntax:

 

Example:

 

Return value of average of the “N” OHLC candlestick information, as : (Close+Open+High+Low) / 4

Syntax:

 

Return value of “Typical Price” as an average of the “N” HLC candlesticks informations, as : (High+Low+Close) / 3

Syntax:

 

Sets a variable value to undefined.

Example:

 

Give value of  the volume of the N bar.

Syntax:

Volume represent the quantity of shares traded during the chosen timescale.

(more…)

Give value of the weighted close “N” candle before the current one.

Syntax:

Calculation :

Average of (2 * Close)+(1 * High)+(1 * Low)

 


Top