ChartFormulas Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies the formula applied to one or more chart series.
public enum class ChartFormulas
public enum ChartFormulas
type ChartFormulas =
Public Enum ChartFormulas
- Inheritance
-
ChartFormulas
Fields
Name | Value | Description |
---|---|---|
BollingerBands | 0 | Calculates the standard deviation above and below a simple moving average of the data. |
MovingAverage | 1 | Describes the moving average formulas. |
ExponentialMovingAverage | 2 | An average of data calculated over a period of time where the most recent days have more weight. |
TriangularMovingAverage | 3 | An average of data calculated over a period of time where the middle portion of data has more weight. |
WeightedMovingAverage | 4 | An average of data that is calculated over a period of time, where greater weight is attached to the most recent data. |
MACD | 5 | Compares a short period moving average and a long period moving average of prices. |
DetrendedPriceOscillator | 6 | Attempts to remove trends from prices. |
Envelopes | 7 | Calculates bounding envelopes above and below a moving average using a specified percentage as the shift. |
Performance | 8 | Calculates the rate of price change compared with historical data. |
RateOfChange | 9 | Calculates the rate of price change compared with historical data. |
RelativeStrengthIndex | 10 | A momentum oscillator formula that compares upward movements of the close price with downward movements, and outputs values from 0 to 100. |
StandardDeviation | 11 | Used to indicate volatility. |
TRIX | 12 | The Triple Exponential Moving Average is based on a triple moving average of the closing price. |
Mean | 13 | Mean formula. |
Median | 14 | Median formula. |