Registered User Joined: 11/9/2009 Posts: 36
|
Hi,
How can i scan for price action touching lets say a 33 or a 76 exponential moving average on multiple time frams
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
A condition formula for the current price bar touching either the 33 or 76 period exponential moving average can be written as follows.
(L <= XAVGC33 AND XAVGC33 <= H) OR (L <= XAVGC76 AND XAVGC76 <= H)
You can't mix time frames in a single Personal Criteria Formula, but you can add the same condition to an EasyScan multiple times with a different time frame set for each of the EasyScan Conditions.
-Bruce Personal Criteria Formulas TC2000 Support Articles
|