Welcome Guest, please sign in to participate in a discussion. | Search | Active Topics | |
Registered User Joined: 8/21/2007 Posts: 181
|
I'm trying to plot the following
Price * Volume
and
(8 EMA of Price * Volume) / 1.8
Any help appreciated.
|
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
The first RealCode Indicator is:
Plot = Price.Last * Volume.Value
The second RealCode Indicator is:
Plot = (Price.XAVGC(8) * Volume.Value) / 1.8
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
|
Registered User Joined: 8/21/2007 Posts: 181
|
Thanks Bruce... unfortunately, the second line doesn't plot.... any suggestions?
|
|
Registered User Joined: 8/21/2007 Posts: 181
|
Actually, it does plot, but is identical to the first...
|
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
The plots are not identical. When you drag and drop one of the indicators onto the other indicator to put them into the same pane, make sure you overlay with the existing indicator to force them into the same scale as well. That said, even when they aren't in the same scale, the plots are not identical.
Working with Indicators
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
|
Registered User Joined: 8/21/2007 Posts: 181
|
Thank you Bruce. I had incorrectly stated the initial formula but have been able to resolve with what you shared. Many thanks as always!
|
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
You're welcome.
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
|
Guest-1 |