Give value of the volume of the N bar.
Syntax:
1 |
Volume[N] |
Volume represent the quantity of shares traded during the chosen timescale.
Give value of the volume of the N bar.
Syntax:
1 |
Volume[N] |
Volume represent the quantity of shares traded during the chosen timescale.
Returns value of the Volume Adjusted Moving Average applied to the selected data serie.
Syntax:
1 |
VolumeAdjustedAverage[period](price) |
Where:
Return value of the Volume Oscillator calculate by the volume of two different periods.
Syntax:
1 |
VolumeOscillator[S,L] |
Variation % = 100 * [(short average – long average) / long average]
Return value of the Volume of the Price Rate of Change over the last N periods.
Syntax:
1 |
VolumeROC[N] |
The calculation is the same as for a ROC but calculated on the volume.
Return value of the Weighted Moving Average over the last N periods for the selected price.
Syntax:
1 |
WeightedAverage[N](price) |
Give value of the weighted close “N” candle before the current one.
Syntax:
1 |
WeightedClose[N] |
Calculation :
Average of (2 * Close)+(1 * High)+(1 * Low)
Wend if the ending instruction of the “WHILE” loop.
Syntax:
1 |
WEND |
Example:
1 2 3 4 5 6 7 8 9 10 |
i = 0 Count = 0 WHILE i <> 11 DO i = i + 1 Count = Count +1 WEND RETURN Count |
Launch a “WHILE” loop.
Syntax:
1 |
WHILE |
Example:
1 2 3 4 5 6 7 8 9 |
i = 0 Count = 0 WHILE i <> 11 DO i = i + 1 Count = Count +1 WEND RETURN Count |
Return value of a Wilder Moving Average over the last N periods for selected price.
Syntax:
1 |
WilderAverage[N](price) |
Example:
1 2 3 4 5 6 |
long = WilderAverage[26](close) short = WilderAverage[12](close) WilderMACD = long - short RETURN WilderMACD |