PureBytes Links
Trading Reference Links
|
Amazing thanks Graham.
Is there any danger with over-riding these built-in OHLC arrays ? Or
since it's an indicator it doesn't make a difference ?
I actually modified your code to color code the bars. Here's
the "enhanced" version for those of you who are interested.
// Color-coded thick volume bars
upbar = C > O;
downbar = C < O;
barcolor=IIf(downbar, colorRed, IIf(upbar,
colorBrightGreen,colorPaleBlue) );
Open=IIf(upbar, 0, V);
Close=IIf(upbar, V, 0);
High=Low=Open;
PlotOHLC(O,H,L,C,"volume",barcolor,styleCandle);
--- In amibroker@xxxxxxxxxxxxxxx, "Graham" <gkavanag@xxxx> wrote:
> Another romp of emails on a code from me today. Seems if an idea
gets
> into my head I cannot shake it till I get an answer.
> Try this one it seems to work
> O=0;
> H=V;
> L=0;
> C=V;
> PlotOHLC(O,H,L,C,"volume",colorBlue,styleCandle);
>
> Cheers,
> Graham
>
>
> -----Original Message-----
> From: Graham [mailto:gkavanag@x...]
> Sent: Thursday, 6 February 2003 5:41 AM
> To: amibroker@xxxxxxxxxxxxxxx
> Subject: RE: [amibroker] Thicker volume bars
>
> Try this
> Plot(-V,"volume",colorBlue,styleCandle);
>
> Cheers,
> Graham
>
>
> -----Original Message-----
> From: hmab1 <hossamb@xxxx> [mailto:hossamb@x...]
> Sent: Thursday, 6 February 2003 4:47 AM
> To: amibroker@xxxxxxxxxxxxxxx
> Subject: [amibroker] Thicker volume bars
>
>
> Hello,
>
> Is there any way to create thicker volume bars, where the volume
bars
> are the same width as the candles ? Or am I stuck with thick
> histograms ?
>
> HB
>
>
> 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/
>
>
>
> 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/
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/
|