Calling The Built In Volumes Indicator?

 
How do I call this indicator to return the color (red/green) of the volume of the current bar?
 

You don't need to call the indicator, just use Volume[] or iVolume()

if(Volume[i]>Volume[i+1])
   //Volume indicator is green
Reason: