Summary
The Trix indicator shows the slope of a triple-smoothed exponential moving average.
Syntax
public Trix Trix(DataSeries source, int periods)
Parameters
Name | Description |
---|
Example 1
private Trix trixSeries; protected override void OnStart() { trixSeries = Indicators.Trix(MarketSeries.Close, 14); } protected override void OnTick() { double trixValue = trixSeries.Result[index]; }