PureBytes Links
Trading Reference Links
|
<FONT face=Arial color=#0000ff
size=2>Darren,
<FONT face=Arial color=#0000ff
size=2>
You
could always create a custom indicator. Since vol and its average use the same
scale we will plot those using the common scale...
<FONT
face=Arial color=#0000ff size=2>
<FONT face=Arial color=#0000ff
size=2>
<FONT face=Arial color=#0000ff
size=2>Plot(v,"Volume",colorlightgrey,2);
<FONT face=Arial color=#0000ff
size=2>plot(ma(v,50),"50 bar MA",coloryellow,1);
<FONT face=Arial color=#0000ff
size=2>
then
we will add the price plot which will require a different
scale....
<FONT face=Arial color=#0000ff
size=2>
<FONT face=Arial color=#0000ff
size=2>plot(c,"Price",4,64|styleownscale);
<FONT face=Arial color=#0000ff
size=2>
to
place the price plot on top of the volume bars we will change the order
to......
<FONT face=Arial color=#0000ff
size=2>
Plot<FONT color=#282828
size=2>(C<FONT
color=#282828 size=2>,"Price"<FONT
color=#282828 size=2>,4<FONT
color=#282828 size=2>,64<FONT
color=#282828 size=2>|<FONT
size=2>styleOwnScale<FONT
face=Arial>);
Plot(<FONT
face=Arial size=2>V<FONT face=Arial color=#282828
size=2>,"Volume"<FONT
face=Arial color=#282828 size=2>,<FONT face=Arial
size=2>colorLightGrey<FONT face=Arial color=#282828
size=2>,2<FONT face=Arial
color=#282828 size=2>);
Plot(<FONT face=Arial
color=#0000ff size=2>MA<FONT face=Arial color=#282828
size=2>(V<FONT face=Arial
color=#282828 size=2>,<FONT face=Arial color=#ff00ff
size=2>50),<FONT face=Arial
color=#ff00ff size=2>"50 bar MA"<FONT face=Arial color=#282828
size=2>,colorYellow<FONT face=Arial
color=#282828 size=2>,1<FONT
face=Arial color=#282828 size=2>);
<FONT face=Arial
color=#0000ff size=2>Now just add a title bar to retrieve the data you want
(There were several excellent examples posted last night for titling) and you
are all set.
Regards,
Jayson
<FONT face=Tahoma
size=2>-----Original Message-----From: barkand
[mailto:damienb4l@xxxxxxxxxxx]Sent: Tuesday, January 13, 2004 5:40
PMTo: amibroker@xxxxxxxxxxxxxxxSubject: [amibroker]
Scaling Average Volume in Price ChartI'm trying to plot
a moving average of the volume in the price chart that would use the same
scale as the volume bars.However, the plot of the average volume appears
'way above the volume bars. I'd like to have it move through the bars, as
apparently happens with the built-in Volume indicator.How can I do
this?Thanks,DamienSend BUG REPORTS to
bugs@xxxxxxxxxxxxxSend SUGGESTIONS to
suggest@xxxxxxxxxxxxx-----------------------------------------Post
AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx (Web page: <A
href="">http://groups.yahoo.com/group/amiquote/messages/)--------------------------------------------Check
group FAQ at: <A
href="">http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Yahoo! Groups Links
To visit your group on the web, go to:<A
href="">http://groups.yahoo.com/group/amibroker/
To unsubscribe from this group, send an email to:<A
href="">amibroker-unsubscribe@xxxxxxxxxxxxxxx
Your use of Yahoo! Groups is subject to the <A
href="">Yahoo! Terms of Service.
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
Yahoo! Groups Links
To visit your group on the web, go to:http://groups.yahoo.com/group/amibroker/
To unsubscribe from this group, send an email to:amibroker-unsubscribe@xxxxxxxxxxxxxxx
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
|