|
Josh McCormick
2020-07-07 16:36:10
|
|
I've got a pane that combines a candlestick chart with a volume chart (and a couple of info boxes).
I'm having problems controlling the scale of the volume chart. It wants to fill 100% of the pane.
How can I position the volume chart to be at the bottom of the pane and still consume no more than 20% of the vertical space?
FORMULA ===============================================
PrintChart(Name()." STOCK CHART", "", BottomCenter, colorBlack, colorBlack, colorWhite, 200);
p = SymbolInformation();
PlotCandleStick("Quotes", colorBrown|255|colorViolet|255|0, StyleSymbolVdash);
plot(volume, "Volume", colorLightGreen|100, ChartBar, StyleOwnScale|StyleHideValues|StyleHideYAxisValue);
UpdateSettings("Top-Bottom Chart Margin", 0);
SCREENSHOT =============================================
https://i.imgur.com/a09Wmff.png
|
|