PureBytes Links
Trading Reference Links
|
This is about all I could do to improve the volume color and price
candle!
Does anyone know a better way???
//Price Volume
Plot(V,"Volume",IIf(C>Ref(C,-
1),colorBrightGreen,colorRed),2|styleThick);
COLOR=IIf(V==C,colorBrightGreen,IIf(V==C,colorRed,colorBlack));
Plot( V, "", IIf( C > Ref( C,-1 ), colorBlack, colorBlack ),
styleArea);
--- In amibroker@xxxxxxxxxxxxxxx, "run_for_your_life2003"
<run_for_your_life2003@xxxx> wrote:
> --- In amibroker@xxxxxxxxxxxxxxx, "run_for_your_life2003"
> <run_for_your_life2003@xxxx> wrote:
> > 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/
------------------------ 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/
|