Platinum Customer
Joined: 2/14/2005 Posts: 169
|
Hi,
Could you please provide the real code programming for an indicator that replicates the TC2000 pcf:
100 * 100 * (XAVG(XAVG(XAVGC12, 12), 12) / XAVG(XAVG(XAVGC12.1, 12), 12) - 1)
Thx,
Steve
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
Please try the following RealCode Indicator.
Plot = 10000 * (Price.ExponentialAverage(12).ExponentialAverage(12).XAVGC(12) / Price.ExponentialAverage(12).ExponentialAverage(12).XAVGC(12, 1) - 1)
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
Platinum Customer
Joined: 2/14/2005 Posts: 169
|
That worked!
Thx,
Steve
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
You're welcome.
-Bruce Personal Criteria Formulas TC2000 Support Articles
|