Registered User Joined: 10/7/2004 Posts: 131
|
I am using the following PCF in telechart version 6. I am trying to use this real time in Stockfinder. I have no idea how to convert this to Stockfinder. Could you please supply me with the code to convert this PCF for Stockfinder., This PCF combines the 78 day change and the 252 day range to give me a numerical value for both of the values combined.
100 * ((C - C78) / C78 + (C - MINL252) / (MAXH252 - MINL252)) / 2
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
Please try the following RealCode Indicator:
RealCode for Real People: Indicators
'|******************************************************************
'|*** StockFinder RealCode Indicator - Version 5.0 www.worden.com
'|*** Copy and paste this header and code into StockFinder *********
'|*** Indicator:Price Change and Range
'|******************************************************************
Plot = (Price.PercentChange(78) + Price.STOC(252, 1)) / 2
-Bruce Personal Criteria Formulas TC2000 Support Articles
|