Was wondering how to get Price%change bars to become more visually significant...their comparitive %change to volume is such that it's difficult to see their bars.
Could a constant were multiplied, or have the 2 studies seperated into individual studies, then merged on chart...would either of those work?
Splitting the formula into two and overlaying them would probably work better visually but would create a more complicated set of code. One of the formulas would need to pass some data to the other via setGlobalValue()/getGlobalValue(). I would try changing some of the preMain() settings first. Try different combinations of plot type, color and thickness for example.
Or if you want to apply a constant to the price %chg, modify the return statement to do something similar to the following:
PHP Code:
return new Array(vVolChg, (1+vPriceChg) );
Jason K.
Project Manager eSignal - an Interactive Data company
Comment