PureBytes Links
Trading Reference Links
|
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 amibroker@xxxxxxxxxxxxxxx, "bistrader" <bistrader@xxx> 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 amibroker@xxxxxxxxxxxxxxx, "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();
> >
>
------------------------------------
**** IMPORTANT PLEASE READ ****
This group is for the discussion between users only.
This is *NOT* technical support channel.
TO GET TECHNICAL SUPPORT send an e-mail directly to
SUPPORT {at} amibroker.com
TO SUBMIT SUGGESTIONS please use FEEDBACK CENTER at
http://www.amibroker.com/feedback/
(submissions sent via other channels won't be considered)
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
amibroker-digest@xxxxxxxxxxxxxxx
amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|