You can try the better volume indicator. I created a pastie for you here http://www.wisestocktrader.com/indicatorpasties/6-better-volume-indicator. That's what i'm experimenting with atm. It was posted on these forums ages ago based on the tradestation code posted on this site http://emini-watch.com/free-stuff/volume-indicator/
--- In [email protected], "bistrader" <bistra...@...> wrote: > > _SECTION_BEGIN("Volume"); > Plot( Volume, _DEFAULT_NAME(), IIf( V > Ref(V,-1), ParamColor("Up Color", > colorGreen ), > ParamColor("Down Color", colorRed ) ), ParamStyle( "Style", styleHistogram | > styleThick, maskHistogram ) ); > _SECTION_END(); > > --- In [email protected], "Richard" <areehoi@> wrote: > > > > Help needed for "Volume" indicator. Below is what I've been using I'm > > not sure where it came from. It shows negative volume, which is obviously > > wrong. I've tried to correct but to no avail. Could someone help me by > > programming formula to show "Green" to indicate current (today's volume) is > > greater than yesterday and "Red" when opposite occurs. Thanks for any help > > you can offer. > > > > Dick H > > > > > > _SECTION_BEGIN("Volume"); > > Plot( Volume, _DEFAULT_NAME(), IIf( V > O, ParamColor("Up Color", > > colorGreen ), ParamColor("Down Color", colorRed ) ), ParamStyle( "Style", > > styleHistogram | styleThick, maskHistogram ) ); > > _SECTION_END(); > > >
