Registered User Joined: 3/13/2005 Posts: 4
|
I am looking for the StockFinder Real Code for Intraday Intensity.
The formula is ((2*close-high-low)/(high-low)*Volume)
I can see that this topic has come up before. I want to set it as a permanent inicator that I can select to add to a chart whenever I need it. Im looking for the code in a format that I can cut and paste. Thank you in advance.
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
If you Save the RealCode Indicator after creating it in StockFinder, you will be able to load it like any other Indicator.
'|******************************************************************
'|*** StockFinder RealCode Indicator - Version 5.0 www.worden.com
'|*** Copy and paste this header and code into StockFinder *********
'|*** Indicator:Intraday Intensity
'|******************************************************************
Plot = Volume.Value * (2 * Price.Close - Price.High - Price.Low) / (Price.High - Price.Low)
-Bruce Personal Criteria Formulas TC2000 Support Articles
|