Welcome Guest, please sign in to participate in a discussion. Search | Active Topics |

Real Code Indicator Rate this Topic:
Previous Topic · Next Topic Watch this topic · Print this topic ·
cdrapeau
Posted : Monday, March 8, 2010 8:47:03 AM
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
StockGuy
Posted : Monday, March 8, 2010 9:56:25 AM

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
cdrapeau
Posted : Monday, March 8, 2010 10:38:26 AM
Registered User
Joined: 8/3/2009
Posts: 8
It works perfectly .... many thanks

Have a nice day .
bigmike1
Posted : Monday, March 8, 2010 5:45:19 PM
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
MauiTrader
Posted : Monday, March 8, 2010 8:00:02 PM
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

StockGuy
Posted : Monday, March 8, 2010 9:58:02 PM

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
Bruce_L
Posted : Tuesday, March 9, 2010 9:22:46 AM


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
bigmike1
Posted : Wednesday, March 10, 2010 9:46:25 PM
Registered User
Joined: 2/1/2005
Posts: 2
Thanks, BruceL for the help
Bruce_L
Posted : Thursday, March 11, 2010 9:00:26 AM


Worden Trainer

Joined: 10/7/2004
Posts: 65,138
bigmike1,
You're welcome. Our pleasure.

-Bruce
Personal Criteria Formulas
TC2000 Support Articles
Users browsing this topic
Guest-1

Forum Jump
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.