Welcome Guest, please sign in to participate in a discussion. | Search | Active Topics | |
Registered User Joined: 12/27/2006 Posts: 36
|
AVGC10/AVGC30<1.02
AND AVGC10/AVGC50<1.02
AND AVGC20/AVGC10<1.02
AND AVGC30/AVGC50<1.02
AND AVGC50/AVGC10<1.02
AND AVGC50/AVGC30<1.02
Thanks
Ward1
|
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
'|*****************************************************************|
'|*** StockFinder RealCode Condition - Version 5.0 www.worden.com
'|*** Copy and paste this header and code into StockFinder *********
'|*** Condition:TeleChart PCF to RealCode Condition
'|******************************************************************
If Price.AVGC(10) / Price.AVGC(30) < 1.02 _
AndAlso Price.AVGC(10) / Price.AVGC(50) < 1.02 _
AndAlso Price.AVGC(20) / Price.AVGC(10) < 1.02 _
AndAlso Price.AVGC(30) / Price.AVGC(50) < 1.02 _
AndAlso Price.AVGC(50) / Price.AVGC(10) < 1.02 _
AndAlso Price.AVGC(50) / Price.AVGC(30) < 1.02 Then Pass
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
|
Registered User Joined: 12/27/2006 Posts: 36
|
Thank You Bruce.
|
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
You're welcome.
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
|
Registered User Joined: 12/31/2005 Posts: 2,499
|
QUOTE (ward1) AVGC10/AVGC30<1.02
AND AVGC10/AVGC50<1.02
AND AVGC20/AVGC10<1.02
AND AVGC30/AVGC50<1.02
AND AVGC50/AVGC10<1.02
AND AVGC50/AVGC30<1.02
Thanks
Ward1
The highlighted entries are the inverse of eachother, so the possible range for the ratios would be 1/1.02<X<1.02 or .0980321<X<1.02. This may be you goal, it just looks a bit strange.
|
|
Registered User Joined: 12/31/2005 Posts: 2,499
|
QUOTE (jas0501) QUOTE (ward1) AVGC10/AVGC30<1.02
AND AVGC10/AVGC50<1.02
AND AVGC20/AVGC10<1.02
AND AVGC30/AVGC50<1.02
AND AVGC50/AVGC10<1.02
AND AVGC50/AVGC30<1.02
Thanks
Ward1
The highlighted entries are the inverse of eachother, so the possible range for the ratios would be 1/1.02<X<1.02 or .980321<X<1.02. This may be you goal, it just looks a bit strange.
typo
|
|
Guest-1 |