Gold Customer
Joined: 10/7/2004 Posts: 5
|
Hello,
I am trying to create a scan for the 3 MA crossing the 10 MA of TSV that happened today or yesterday or some days ago. I tried this formula for today (AVG(TSV16,3)>AVG(TSV16,10)) AND (AVG(TSV16.1,3)<AVG(TSV16.1,10)) but it doesn't seem to give me a crossover today.
Thanks,
Rick
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
It looks like your TSV is exponential instead of simple. Please try the following instead.
XAVG(TSV3, 16) > XAVG(TSV10, 16) AND XAVG(TSV3.1, 16) <= XAVG(TSV10.1, 16)
-Bruce Personal Criteria Formulas TC2000 Support Articles
|