Registered User Joined: 7/7/2005 Posts: 5
|
Hello,
I am a new user and in the midst of trying to create a PCF using the Balance of Power technical.
Here's what I'm going after.
1. BOP value three days ago between -35 and -10
2. BOP value two days ago greater than 10
3. BOP value yesterday greater than BOP value two days ago by 50%
This is the code I have attempted to write:
BOP1.3 > ( - 1) * 35 AND BOP1.3 < ( - 1) * 10 AND BOP1.2 > 10 AND BOP1.1 > (BOP 1.2 * 1.5)
Once filtered, the first two conditions are working but the last condition is not.
Thanks for your help
|

 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!
It's probably just the space between BOP and 1.2:
(-35) <= BOP1.3 AND BOP1.3 <= (-10) AND BOP1.2 > 10 AND BOP1.1 >= 1.5 * BOP1.2
You may wish to review the following:
How to create a Personal Criteria Forumula (PCF)
PCF Formula Descriptions
-Bruce Personal Criteria Formulas TC2000 Support Articles
|