That is the default view for AB - a very nice example of Tomasz'z
code. You can see the code in Charts >> BasicCharts >> Price (all in
one).
I prefer another view:
- insert volume as an indicator in it's own pane
- I use this from Tomasz's code and save it as Price Custom for my
default view.
SetChartOptions(0,chartShowArrows|chartShowDates);
_N(Title = StrFormat("{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %
g, Lo %g, Close %g (%.1f%%) Vol " +WriteVal( V, 1.0 ) +" {{VALUES}}",
O, H, L, C, SelectedValue( ROC( C, 1 )) ));
Plot( C, "Close", ParamColor("Color", colorBlack ), styleNoTitle |
ParamStyle("Style") | GetPriceStyle() );
if( ParamToggle("Tooltip shows", "All Values|Only Prices" ) )
{
ToolTip=StrFormat("Open: %g\nHigh: %g\nLow: %g\nClose: %g (%.1f%
%)\nVolume: "+NumToStr( V, 1 ), O, H, L, C, SelectedValue( ROC( C,
1 )));
}
--- In [email protected], "Ken Close" <[EMAIL PROTECTED]> wrote:
>
> Excuse the basic question, but I have generally never dealt with
volume as
> much as I am now that I am downloading data with a real volume
field.
>
> On some charts but not all, the volume bars, overlaid on a candle
price
> chart, extend too far up the height of the pane and overlap the
candles. I
> have tried in vain to adjust the Plot statement to make the bars
shorter. I
> have tried the maximum and minimum flags as explained in Help but
it does
> not seem to work. Tried to make the max and min parameters but
again
> nothing.
>
> Can someone offer some specific advice.
> Thanks.
>