Download software Tutorial videos
Subscription & data-feed pricing Class schedule


New account application Trading resources
Margin rates Stock & option commissions

Attention: Discussion forums are read-only for extended maintenance until further notice.
Welcome Guest, please sign in to participate in a discussion. Search | Active Topics |

MAXH Calculation Rate this Topic:
Previous Topic · Next Topic Watch this topic · Print this topic ·
jimmecom
Posted : Saturday, June 18, 2005 2:09:47 PM
Registered User
Joined: 2/26/2005
Posts: 15
I am trying to scan for a high that is just below the high of the previous 20 trading days.


H >= ((MAXH20)*.96) AND

H <= (MAXH20)

I have tried it with and without the parenthesis.

It appears to be identical to the formula examples given in the help section but evidently is not.

Any assistance would be greatly appreciated.

Thanks.

Bruce_L
Posted : Saturday, June 18, 2005 2:27:06 PM


Worden Trainer

Joined: 10/7/2004
Posts: 65,138
The formula seems to catch the symbols meeting its conditions on my system. If the problem is that it is catching current highs as well, you can modify the formula as follows:

H>=MAXH20*.96 AND H<MAXH20

If the problem is that it is catching too many symbols, you may want to compare it to the recent trading range instead of overall price:

H–MINL20>=(MAXH20-MINL20)*.96 AND H<MAXH20

-Bruce
Personal Criteria Formulas
TC2000 Support Articles
Craig_S
Posted : Saturday, June 18, 2005 2:32:33 PM


Worden Trainer

Joined: 10/1/2004
Posts: 18,819
I would do it this way:

High as a percent of MaxH20

H/MAXH20*100

You can then sort by it in descending order OR put it in an EasyScan and set the values as close to 100 as you like.

It should prove to be more flexible and reusable than a true/false condition.

Try it for me.

- Craig
Here to Help!
Users browsing this topic
Guest-1

Forum Jump
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.