Welcome Guest, please sign in to participate in a discussion. | Search | Active Topics | |
Registered User Joined: 3/27/2014 Posts: 33
|
Hello Bruce,
How would one write a formula that states todays volume is 25% greater at the close than yesterday's closing volume? Would it be V>1.25*V1
Thank you in advance for your consideration Bruce.
|
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
Your formula is correct if the volume of the current bar must be more than 25% greater than the previous bar. If it must be at least 25% greater than the volume of the previous bar you would need to check for equality as well.
V >= 1.25 * V1
Although if you want this to not return true in cases of zero volume you would need to also check to see if either the volume of the current bar is greater than 0.
V >= 1.25 * V1 AND V > 0
Or you would need to check if the volume af the previous bar is greater than 0.
V >= 1.25 * V1 AND V1 > 0
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
|
Registered User Joined: 4/21/2015 Posts: 10
|
I've been trying to learn a lot still things confuses me a lot. Could you please guide me to a place where I can get easy learning lessons.
|
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
I would start with the getting started section of the TC2000 Video Tutorials if you are just beginning to learn about TC2000.
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
|
Registered User Joined: 4/21/2015 Posts: 10
|
Thanks Bruce. I'll check them all one by one. How much time idealy I should spend learning all these lessons?
|
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
I'm not sure there really is any sort of ideal time to spend. The process is self paced in that you can put a lot of time into at once or do things in small chunks. What you need to know depends on what you want or need to do with the software.
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
|
Guest-1 |