Registered User Joined: 1/13/2012 Posts: 72
|
I am looking for Stockfinder code to paint the following:
In any 5-week period, the difference between MAXH and MAXL is no more than 15% in price.
Can you please help? Thank you!
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
Please try the following daily RealCode Condition.
If Price.MaxHigh(25) <= 1.15 * Price.MinLow(25) Then Pass
Or the following weeklyi RealCode Condition.
If Price.MaxHigh(5) <= 1.15 * Price.MinLow(5) Then Pass
-Bruce Personal Criteria Formulas TC2000 Support Articles
|