| Trading Indicators Post your custom trading indicators. If you download, remember to click INSTALL. |
![]() | | Tweet | |
Ergodic Details »» | |||||||||||||||||||||||||||
Indicator Ergodic is under construction on the basis of indicator TSI and is calculated as follows: Ergodic (close, r) =TSI (Close, r, 5); TSI (the index true of force) is under construction on the basis of the indicator momentum. Here its formula: TSI(close,r,s)=(100*(EMA( EMA(mtm,r),s))) / (EMA(EMA(|mtm|,r),s)) mtm = close[today]-close[yesterday] EMA - exponential moving average This indicator shows a true trend. For this indicator is following corrected: 1. If the indicator is more than zero also grows the trend ascending means. 2. If the indicator is more than zero also that correction of an ascending trend falls goes. 3. If the indicator is less than zero also that falls a trend descending. 4. If the indicator is less than zero also that correction descending тредна grows goes. Download Now
Screenshots Show Your Support
| |||||||||||||||||||||||||||
| ∧ Similar Indicator | ||||
| Mod | Developer | Type | Replies | Last Post |
| Ergodic (Double Weighted) | Tams | Trading Indicators | 17 | 11:57 AM 04-26-2010 |
| Comments |
| | #2 | ||
| Re: Ergodic
__________________ | |||
| |
|
| | #3 | ||
![]() | Re: Ergodic | ||
| |
|
| | #4 | ||
![]() | Quote:
The basis for this indicator is to find divergence and trade that. But you can trade it in various ways. Look for articles by William Blau where he explains in more depth about the indicator and how he trades it. There is a lot more to it than meets the eye. I have been studying this kind of indicator for about 3 years now and I learn something new every month. GL & GT Lava | ||
| |
|
| | #5 | ||
![]() | Re: Ergodic i found this code 4 ergodic Code: {Ergodic Indicator:}
{from William Blau's book --- "Momentum, Direction and Divergence"
FORMAT: Ergodic_TSI(Price, r, s, u,, SmthLen)
where r = length of first EMA smoothing of 1 day momentum,
s = length of second EMA smoothing of 1 day smooting,
u = length of third EMA smooting of 1 daymomentum,
SmthLen = length of ema signal line.
This is plotting the Average only (value2)}
Inputs: Price(c), r(7), s(27), u(1), Zeroline(0), SmthLen(7),
upcolor_1(green), downcolor_1(red), dotsize(2);
Value1= TSI(Price, r, s, u);
Value2= XAverage(TSI(Price, r, s, u), SmthLen);
If value2 > value2[1] then
Plot3(Value2, "SigLin", upcolor_1, default, dotsize);
If value2 < value2[1] then
Plot3(Value2, "SigLin", downcolor_1, default, dotsize); | ||
| |
|
| | #6 | ||
![]() | Re: Ergodic Here is a snapshot | ||
| |
|
| The Following User Says Thank You to aaa For This Useful Post: | ||
Tams (12-12-2009) | ||
![]() |
| Tags |
| ergodic, moving average |
| Thread Tools | |
| Help Others By Rating This Thread | |
| |