Source: https://fxcodebase.com/code/viewtopic.php?f=17&t=2359
Forum: 17 · Topic 2359 · 2 post(s)
Alexander.Gettinger · Thu Oct 07, 2010 3:50 pm
Formulas:
high_diff = Max(0, high[now] - high[now-Shift]); low_diff = Max(0, low[now-Shift] - low[now]); high_avg = Average(high_diff) from now to now-Period low_avg = Average(low_diff) from now to now-Period TD_Ihigh_avg / (high_avg + low_avg) * 100;

The indicator was revised and updated
MT4 / MQ4 version. viewtopic.php?f=38&t=64092
Apprentice · Fri Jan 27, 2017 4:14 am
Indicator was revised and updated.