[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Color volume bars - how ?



PureBytes Links

Trading Reference Links

> I trying to find the AFL code to color volume bars based on whether 
> the stock moved up or down in that day.

One line solution

Plot( V, "Volume", IIf(Close >= Open, colorGreen, colorRed), 6);

Regards,

Jim