PureBytes Links
Trading Reference Links
|
Thanks for your help!
That looks a lot better, but I don't know how to vary the width?
/* Volume Bars (Green (up) & red (down) */
mycolor=IIf(C>O, colorBrightGreen, IIf(C<O,colorRed,colorBlack));
Title = EncodeColor(LastValue(mycolor)) + Name()+" "+Date()+"
Volume: "+V;
Plot(V,"", mycolor, styleHistogram+styleThick+styleNoLabel);
__________________________________________________________________
--- In amibroker@xxxxxxxxxxxxxxx, "Graham" <gkavanagh@xxxx> wrote:
> Here is code for volume that I use, but I don't think the bar
width can be
> changed. The previous code at least varied with the price bars
when zooming.
>
> mycolor=IIf(C>O, colorBlue, IIf(C<O,colorRed,colorBlack));
> Title = EncodeColor(LastValue(mycolor)) + Name()+" "+Date()+"
Volume: "+V;
> Plot(V,"", mycolor, styleHistogram+styleThick+styleNoLabel);
>
> Cheers,
> Graham
> http://groups.msn.com/ASXShareTrading
> http://groups.msn.com/FMSAustralia
>
> -----Original Message-----
> From: run_for_your_life2003 [mailto:run_for_your_life2003@x...]
> Sent: Monday, 22 September 2003 9:10 AM
> To: amibroker@xxxxxxxxxxxxxxx
> Subject: [amibroker] Re: Volume Bar Widths and Colors!
>
>
> Not exactly what I'm looking for....
> The color of the volume does not match the price color on an close
> up day.
> When its volume is green the price color should be green!
> When its volume is red the price should match the same color.
>
> How do I adjust those bars wider like double the width??
> The red shows up in the green volume bar on the code below??
>
> --- In amibroker@xxxxxxxxxxxxxxx, "Graham" <gkavanagh@xxxx> wrote:
> > You could always try this in a custom indicator
> > You could try this in a custom indicator
> >
> > PlotOHLC(0,V,0,V,"",colorblack,styleCandle);
> > Cheers,
> > Graham
> > http://groups.msn.com/ASXShareTrading
> > http://groups.msn.com/FMSAustralia
> >
> >
> > -----Original Message-----
> > From: run_for_your_life2003 [mailto:run_for_your_life2003@x...]
> > Sent: Monday, 22 September 2003 2:27 AM
> > To: amibroker@xxxxxxxxxxxxxxx
> > Subject: [amibroker] Volume Bar Widths and Colors!
> >
> >
> > Is it possible to make the Volume bars wider or adjustable from
> the
> > base or adjust the scale and when the stock close up (green bars)
> > and closes down (red bars)? With the price bar width the same as
> the
> > volume bar width. How do I do this???
> >
> > In the program the price bars are adjusted as you look for the
> most
> > recent days but the volume width is not changed in width.
>
> > Send BUG REPORTS to bugs@xxxx
> > Send SUGGESTIONS to suggest@xxxx
> > -----------------------------------------
> > Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
> > (Web page: http://groups.yahoo.com/group/amiquote/messages/)
> > --------------------------------------------
> > Check group FAQ at:
> > http://groups.yahoo.com/group/amibroker/files/groupfaq.html
> >
> > Your use of Yahoo! Groups is subject to
> http://docs.yahoo.com/info/terms/
>
>
>
> Send BUG REPORTS to bugs@xxxx
> Send SUGGESTIONS to suggest@xxxx
> -----------------------------------------
> Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
> (Web page: http://groups.yahoo.com/group/amiquote/messages/)
> --------------------------------------------
> Check group FAQ at:
> http://groups.yahoo.com/group/amibroker/files/groupfaq.html
>
> Your use of Yahoo! Groups is subject to
http://docs.yahoo.com/info/terms/
------------------------ Yahoo! Groups Sponsor ---------------------~-->
ReplayTV: Control live television
Special Sale: 50% off ReplayTV
CNet Ranked #1 over Tivo!
http://us.click.yahoo.com/aUMW7B/A6qGAA/ySSFAA/GHeqlB/TM
---------------------------------------------------------------------~->
Send BUG REPORTS to bugs@xxxxxxxxxxxxx
Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
-----------------------------------------
Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
(Web page: http://groups.yahoo.com/group/amiquote/messages/)
--------------------------------------------
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|