Welcome Guest, please sign in to participate in a discussion. | Search | Active Topics | |
Platinum Customer
Joined: 2/25/2005 Posts: 3
|
I have been trying to create a PCF for a scan to duplicate indicator I am currently using.
I have Exponential 100 bar TSV plotted and a Exponential 35 bar Moving Average of the TSV.
I am looking to scan for the day that the Exponential 100 bar TSV crosses the Exponential 35 bar TSV MA.
I can make it work and match the visual using a Simple 100 bar TSV plot, but cannot get it to match when I use an Exponential 100 bar TSV in the PCF. Can't figure out why this won't work.
Have looked through the Forums and found several instances of Exponential TSV, but using them still does not pull only the ones doing a crossover on that day. Must be doing something wrong in the PCF.
Got any ideas?
|
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
Welcome to the forums. A very good foundation for learning how to use TeleChart can be gained by reviewing the following:
If you are new to TeleChart READ THIS FIRST!
Please try one of the following:
Exponential TSV100 xUp its own EMA35:
XAVG(TSV,100) < XAVG(TSV,35) AND XAVG(TSV1.1,100) >= XAVG(TSV1.1,35)
Exponential TSV100 xDn its own EMA35:
XAVG(TSV,100) > XAVG(TSV,35) AND XAVG(TSV1.1,100) <= XAVG(TSV1.1,35)
Exponential TSV100 crossing its own EMA35 (either direction):
SGN(XAVG(TSV,100) - XAVG(TSV,35)) <> SGN(XAVG(TSV1.1,100) - XAVG(TSV1.1,35))
You may wish to review the following:
How to create a Personal Criteria Forumula (PCF)
PCF Formula Descriptions
Cascades of Moving Averages
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
|
Guest-1 |