C++ Bollinger Bands class
C++ class documentation
n |
indicator period |
k |
number of standard deviations |
R function bbands.
BBands( int n, double k )
| Name | Return Type | Description |
Add( InputType value ) |
void |
update indicator |
Reset() |
void |
reset to initial state |
IsFormed() |
bool |
is indicator value valid? |
GetValue() |
BBandsValue |
has members double upper, lower, sma |
GetUpperHistory() |
std::vector< double >
|
return upper band history |
GetLowerHistory() |
std::vector< double >
|
return lower history |
GetSmaHistory() |
std::vector< double >
|
return sma history |
GetHistory() |
List |
return values history data.table with columns upper, lower, sma
|
Other C++ indicators: Crossover,
Ema, Indicator,
RollLinReg, RollPercentRank,
RollRange, RollSd,
RollVolumeProfile, Rsi,
Sma, Stochastic
Other C++ classes: Candle,
Cost, Crossover,
Ema, Indicator,
Order, Processor,
RollLinReg, RollPercentRank,
RollRange, RollSd,
RollVolumeProfile, Rsi,
Sma, Stochastic,
Tick
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.