t3
Tillson T3 moving average.
Reference/Moving averages/Function
t3(source, length, vFactor)
Six nested EMAs with a volume factor. Default length 14, vFactor 0.7. Short form t3(9) uses close.
Parameters
| Name | Type | Description |
|---|---|---|
sourceoptional | series default close | Series to use. Omit it when the first argument is a number — ema(9) means ema(close, 9). |
length | int default 14 | Lookback in bars. Default 14. |
vFactoroptional | float default 0.7 | 0–1. Higher is smoother. |
Return value
series
Short form: if the first argument is a number, Dovee uses close as the source.
Example
line = t3(close, 8) plot line as "T3"