Click or drag to resize

TechnicalAnalysisRoutinesCalculateTripleMovingAverage Method

LightningChart .NET Help
Calculates Triple Exponential Average (TRIX) values using given number of time periods (n).

Namespace:  Arction.CustomControls.Trader.WinForms.Routines
Assembly:  Arction.WinForms.TradingCharts (in Arction.WinForms.TradingCharts.dll) Version: 10.3.1
Syntax
public static void CalculateTripleMovingAverage(
	double[] closeValues,
	int n,
	out double[] trixValues,
	out double[] signalValues
)

Parameters

closeValues
Type: SystemDouble
OHLC data close values.
n
Type: SystemInt32
Period count.
trixValues
Type: SystemDouble
TRIX values.
signalValues
Type: SystemDouble
9-day EMA values based on TRIX.
See Also