Registered User Joined: 10/7/2004 Posts: 16
|
I am looking if an indicator that I use in Telechart to measure congestion be created for use in StockCharts:
((MAXH16.1/MINL16.1)-1)*100
Thanks!
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
I can't help you with StockCharts, but if you mean StockFinder, then the following RealCode Indicator should do what you want.
RealCode for Real People: Indicators (6:05)
'|******************************************************************
'|*** StockFinder RealCode Indicator - Version 5.0 www.worden.com
'|*** Copy and paste this header and code into StockFinder *********
'|*** Indicator:Congestion
'|******************************************************************
Plot = (Price.MaxHigh(16, 1) / Price.MinLow(16, 1) - 1) * 100
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
Registered User Joined: 10/7/2004 Posts: 16
|
LOL, yes StockFinder. Good intuition :) Thanks Bruce, and thanks for the tutorial.
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
You're welcome.
-Bruce Personal Criteria Formulas TC2000 Support Articles
|