Hello Michael,
I see. All you need to do is modify the return statement in BidAskVolume.efs on line 61 to include a "-" sign in front of nBidVol. It should look like this:
You might want to adjust the thickness of the histograms also, which are on lines 13-15 in preMain(). The first number (i.e. 8) in setDefaultBarThickness(8, 0) is the number that sets the thickness.
I see. All you need to do is modify the return statement in BidAskVolume.efs on line 61 to include a "-" sign in front of nBidVol. It should look like this:
PHP Code:
return new Array(nAskVol, nInsideVol, -nBidVol);
Comment