Page 1 of 1

Trend Range oscillator

PostPosted: Wed Apr 03, 2013 2:40 pm
by Alexander.Gettinger
This indicator is a ported MQL5 indicators from http://www.mql5.com/en/code/1573

Formulas:
TrendRange[i] = res*Volume[i], where
res = High[i] - Low[i].
Level1 = Max/2,
Level2 = Max, where
Max = MA(TrendRange) + StdDev(TrendRange)*Deviation.

TrendRange.PNG


Download:
Trend_Range.lua
(4.59 KiB) Downloaded 639 times


Averages indicator is available here viewtopic.php?f=17&t=2430
StdDev indicator is available here viewtopic.php?f=17&t=870&hilit=STDDEV

The indicator was revised and updated

Re: Trend Range oscillator

PostPosted: Wed Apr 10, 2013 4:13 pm
by Alexander.Gettinger
MQL4 version of this indicator: viewtopic.php?f=38&t=34362

Re: Trend Range oscillator

PostPosted: Tue May 09, 2017 6:19 am
by Apprentice
Indicator was revised and updated.