Registered User Joined: 7/17/2014 Posts: 3
|
Hi, I am new to TC2000. I watched a few videos on the easyscan, but I didn't quite get a clear picture if i could combine intra day parameters with daily.
For instance, can i create scan for a condition like this:
1. current price within ten cents of low today
2. current price within 15 cents of low of yesterday?
Thanks
G
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
It is possible to combine time frames in an EasyScan as you can click on each EasyScan Condition to adjust its time frame individually.
Building a Scan with Multiple Conditions (7:29)
That said, you should not need to do so in this particular case as the following daily Condition Formula should check for both.
C <= L + .1 AND ABS(C - L1) <= .15
PCF Formula Descriptions
Handy PCF example formulas to help you learn the syntax of PCFs!
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
Registered User Joined: 7/17/2014 Posts: 3
|
Great thanks Bruce! A few more questions:
1. If i want the price to be greater than 20 bucks then : C>20 ?
2. I tried to filter out average daily volume over last 120 days greater than 300,000 using : AVGV120>300,000 (is that right or should i leave the comma out?
G
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
Yes, price being greater than 20 dollars is:
C > 20
You need to leave the comma out of the formula.
AVGV120 > 300000
-Bruce Personal Criteria Formulas TC2000 Support Articles
|