Colour filled charts

#1
Hi,

Is there a way to get colour fills in Amibroker -- for example, think of Bolinger Bads filled with colour at the back of price chart, preferably two different colours for the upper and the lower bands? I think this is called cloudfill or cloud colour. Help/direction is highly appreciated.

Thanks again.
 
#2
Hi,

Is there a way to get colour fills in Amibroker -- for example, think of Bolinger Bads filled with colour at the back of price chart, preferably two different colours for the upper and the lower bands? I think this is called cloudfill or cloud colour. Help/direction is highly appreciated.

Thanks again.
Use PlotOHLC :

SYNTAX PlotOHLC( open, high, low, close, name, color/barcolor, style = styleCandle | styleOwnScale, minvalue = {empty}, maxvalue = {empty}, XShift = 0)

Example for BB :

ShadowColor = ParamColor("ShadowColor", colorCycle );
PlotOHLC( btop, btop, bbot, bbot, "", ShadowColor,styleCloud );

btop : Bollinger Band Top
bbot : Bollinger Band Bottom

Hope this help.

For explaination please refer to AMIBROKER ! HELP
 

Similar threads