|
MV,
First comment, if you just want lines you can simply do this: Plot(89,"89HIGH",colorRose ); Or this: PlotGrid(89,colorRose );
Second, I have many StyleLeftAxisScale plots and I have never seen a left side scale shown. Might be me.
Third, StyleLeftAxisScale is to show a plot that fills the full screen, but has drastically different values than the plots that do not use StyleLeftAxisScale or StyleOwnScale. The actual scale is determined by the min/max values of whatever you put on that screen. With StyleOwnScale you can force a range like this: Plot(89,"89HIGH",colorRose, StyleOwnScale, 0, 100 ); This means the scale is FIXED from 0 to 100. If you plot values larger or smaller than those, they simply go "off chart".
There is no such adjustment for StyleLeftAxisScale. You could use the above, but then the whole point is moot if there is no "left scale" anyway, right?
I have seen some exotic code from Fred in Fred's Equity Line where he computes his own min/max values. I believe this code is posted in the Library. -- Terry -----Original Message-----
Terry,
Thanks for the reply, let me rephrase... Using ... GraphXSpace = 20; Plot(Close,"Close",1,1); Plot(LastValue(H,89),"89HIGH",colorRose,1 ); Plot(LastValue(L,89),"89LOW",colorPaleGreen,1 ); Plot(LastValue(H,89),"89HIGH",4,1 | styleLeftAxisScale ); Plot(LastValue(L,89),"89LOW",5,1| styleLeftAxisScale ); 1.)How do I plot the values on the left side of the screen "at the line level" so when the line moves up and down, so does the test as well? Since both of these values plotted are identical, the "lines" themselves should be on top of one another, so I figure the scaling is independent. I didn't want to plot the Values in the Title line, I just wanted to plot the Values on the line on the left side of the screen. 2.)Why don't both lines overlap if the default scaling is the same and the values are the same? 3.)Is there a way to link the scaling of the Right and Left Axis? Thanks, MV
Please note that this group is for discussion between users only. To get support from AmiBroker please send an e-mail directly to SUPPORT {at} amibroker.com For other support material please check also: http://www.amibroker.com/support.html
SPONSORED LINKS
YAHOO! GROUPS LINKS
__,_._,___ |
- RE: [amibroker] Locking Right Axis and styleLeftAxisScale for T... Terry
