Registered User Joined: 10/7/2004 Posts: 35
|
How would I create this slightly different take on OBV ? tia
Cumulative total of (volume * ((high-open) / (high-low))) -
Cumulative total of (volume * ((open-low) / (high-low)))
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
Please try the following:
Select Chart Template | Add Indicator | Cumulative.
- Visible: Checked
- Smoothing Average: 1
- Average Type: Doesn't matter (because the Smoothing Average is 1).
- Up Condition: C < C + 1
- Down Condition: C > C + 1
- Value To Add/Subtract: V * ((H + L - 2 * O) / (H - L + .00001))
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: 10/7/2004 Posts: 35
|
Thanks Bruce . Much appreciated !
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
You're welcome.
-Bruce Personal Criteria Formulas TC2000 Support Articles
|