In technical analysis Beta indicator is used to measure volatility or risk of a target (ETF) relative to the overall risk (volatility) of the reference (market indexes). The Beta indicators compares target's price movement to the movements of the indexes over the same period of time.
More...
|
| Beta (string name, Symbol targetSymbol, Symbol referenceSymbol, int period) |
| Creates a new Beta indicator with the specified name, target, reference,
and period values More...
|
|
| Beta (Symbol targetSymbol, Symbol referenceSymbol, int period) |
| Creates a new Beta indicator with the specified target, reference,
and period values More...
|
|
| Beta (string name, int period, Symbol targetSymbol, Symbol referenceSymbol) |
| Creates a new Beta indicator with the specified name, period, target and reference values More...
|
|
override void | Reset () |
| Resets this indicator to its initial state More...
|
|
override void | Reset () |
| Resets this indicator to its initial state More...
|
|
|
override void | AddDataPoint (IBaseDataBar input) |
| Adds the closing price to the corresponding symbol's data set (target or reference). Computes returns when there are enough data points for each symbol. More...
|
|
override void | ComputeIndicator () |
| Computes the beta value of the target in relation with the reference using the target and reference returns More...
|
|
| DualSymbolIndicator (string name, Symbol targetSymbol, Symbol referenceSymbol, int period) |
| Initializes the dual symbol indicator. More...
|
|
override decimal | ComputeNextValue (IBaseDataBar input) |
| Checks and computes the indicator if the input data matches. This method ensures the input data points are from matching time periods and different symbols. More...
|
|
abstract void | AddDataPoint (IBaseDataBar input) |
| Adds the closing price to the corresponding symbol's data set (target or reference). This method stores the data points for each symbol and performs specific calculations based on the symbol. For instance, it computes returns in the case of the Beta indicator. More...
|
|
In technical analysis Beta indicator is used to measure volatility or risk of a target (ETF) relative to the overall risk (volatility) of the reference (market indexes). The Beta indicators compares target's price movement to the movements of the indexes over the same period of time.
It is common practice to use the SPX index as a benchmark of the overall reference market when it comes to Beta calculations.
The indicator only updates when both assets have a price for a time step. When a bar is missing for one of the assets, the indicator value fills forward to improve the accuracy of the indicator.
Definition at line 33 of file Beta.cs.