Home/Dovee/Function reference

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

NameTypeDescription
sourceoptionalseries
default close
Series to use. Omit it when the first argument is a number — ema(9) means ema(close, 9).
lengthint
default 14
Lookback in bars. Default 14.
vFactoroptionalfloat
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"

See also