Welcome Guest, please sign in to participate in a discussion. | Search | Active Topics | |
Registered User Joined: 8/3/2009 Posts: 8
|
Hi
I am a Platinum subscriber .... very happy with your service .... Thanks
I am using this Indicator in Telechart: (ABS(C-AVGC5))/AVGC5*100 and I plot it using the price scale ....
How can I duplicate this indicator in StockFinder 5?
Many thanks
Christian
|
|
Administration
Joined: 9/30/2004 Posts: 9,187
|
Click the Add Indicator button and select New RealCode Indicator, name it, and enter the following code:
plot = ((system.Math.Abs(price.close - price.AVGC(5)) / price.avgc(5))) * 100
|
|
Registered User Joined: 8/3/2009 Posts: 8
|
It works perfectly .... many thanks
Have a nice day .
|
|
Registered User Joined: 2/1/2005 Posts: 2
|
Hi
I am using this Indicator in Telechart: MinL17 + 0.50 * (MaxH17 - MinL17)and I plot it using the price scale ....
Big Mike
|
|
Registered User Joined: 10/7/2004 Posts: 37
|
When I copy and paste I get the following errors:
plot = ((system.Math.Abs(price.close - price.AVGC(5)) / price.avgc(5))) * 100
plot = ((system.Math.Abs(price.close - price.AVGC(5)) / price.avgc(5))) * 100
Do I need a version upgrade? Running 4 build 83
Thanks
Mauitrader
|
|
Administration
Joined: 9/30/2004 Posts: 9,187
|
Yes, MauiTrader, the code I posted was for the version 5 beta which is 4.9.181 right now.
You can download the beta at http://www.StockFinder.com/beta5/setup.exe
|
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
bigmike1,
As with StockGuy's RealCode, the following RealCode Indicator will only work in StockFinder 5:
Plot = Price.MinLow(17) + .5 * (Price.MaxHigh(17) - Price.MinLow(17))
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
|
Registered User Joined: 2/1/2005 Posts: 2
|
Thanks, BruceL for the help
|
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
bigmike1,
You're welcome. Our pleasure.
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
|
Guest-1 |