Registered User Joined: 8/15/2011 Posts: 11
|
hello
I want to at this condition to my volume. I want a condition that show the volume change in percentage comapre to 50 day volume moving average.
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
An Indicator Formula which shows the percent difference between the volume of the current bar and the 50-period simple moving average of volume can be written as follows.
100 * (V / AVGV50 - 1)
PCF Formula Descriptions
Handy PCF example formulas to help you learn the syntax of PCFs!
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
Registered User Joined: 8/15/2011 Posts: 11
|
thank you
|
Registered User Joined: 10/19/2004 Posts: 21
|
Your formula gives the volume percentage difference of the current bar and the 50 SMA of volume. What formula would give the same result for a range of days? For example, I want to select a specific period of a pull back and see if the average volume during the pullback was greater or less than the 50 SMA of volume.
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
Well it would depend on the number days involved in the pullback. If it is 5 days, you would use AVGV5.
100 * (AVGV5 / AVGV50 - 1)
-Bruce Personal Criteria Formulas TC2000 Support Articles
|