PureBytes Links
Trading Reference Links
|
I am interested in seeing colored volume bars . I wrote the following
afl code. Is there anyway to increase the width of the bars even
more? Using th candlestick option (Graph2style = 64). Thanks for any
comments and help.
upbar = C > Ref(C,-1);
downbar = C< Ref(C,-1);
barcolor=IIf(downbar, 4, IIf(upbar, 5,19) );
Graph2=Volume;
Graph2Style=2+4; /* histogram + Thick */
Graph2BarColor=barcolor;
Graph1=MA(Volume,16); /* Matches with default volume indicator in AMI
*/
Graph1Color = 19;
mohan
|