Registered User Joined: 4/21/2008 Posts: 81
|
I want to plot at least two different lines on the price history pane (or any other pane). Example, the high and low (to illustrate a range). Somehow I forgot how to do something so simple. Please help. :-)
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
RealCode Indicators can currently only output one Line or Bar. The ability to output a Bar gives you the option of outputting up to four individual values however. For example, the following RealCode would duplicate a standard Price Bar:
OpenValue = Price.Open
HighValue = Price.High
LowValue = Price.Low
Plot = Price.Last
While you could display all of the Values using a single RealCode Indicator by using the OHLC Bar Plot Style, this will not produce multiple Line Plots on its own. You would need to extract these Values by using another Indicator (such as a RealCode Indicator with this Indicator Dragged and Dropped into it or a Block Diagram based Indicator with a Bar Open, Bar High or Bar Low Block).
-Bruce Personal Criteria Formulas TC2000 Support Articles
|