Syntax
public T3(DataSeries ds, double period, double damp, string description)
public static T3 Series(DataSeries ds, double period, double damp)
Parameter Description
ds |
Data series to smooth |
period |
Number of bars to use in calculation |
damp |
Factor that determines how responsive should the moving average be to linear trends |
Description
The T3 MA is an adaptive moving average created by Tim Tillson and presented in his article "Smoothing techniques for more accurate signals."
Coded by Gary Fritz (
source).
Interpretation
Use this filter as you would use any traditional moving average.
Calculation
References:
Example
No example code currently available.