PureBytes Links
Trading Reference Links
|
Hello,
Or use simpler PLOT function
graphxspace = 3;
Plot( Close, "Price", colorGreen, styleCandle );
Plot( Sum<FONT
face=Arial>((volume *
close), <FONT
color=#ff00ff>10) / Sum<FONT
face=Arial>(volume,
10), "Weighted Volume", colorRed, <FONT
color=#ff6820>styleLine + <FONT
color=#ff6820>styleThick );
... of course VOLUME figures from your data source mustbe
provided . Check if your data source provides volume.
Best regards,Tomasz Janeczkoamibroker.com
<BLOCKQUOTE
>
----- Original Message -----
<DIV
>From:
<A title=Udo.Harke@xxxx
href="">Udo.Harke@xxxx
To: <A title=amibroker@xxxxxxxxxx
href="">amibroker@xxxxxxxxxxxxxxx
Sent: Wednesday, October 30, 2002 10:08
AM
Subject: Re: [amibroker] Volume Weighted
Moving Average
Hi Larry,
try this:
// Click in the Indicator Builder on Automatic, Level 0, Show dates, and on
Middle:
maxGraph = <FONT
color=#ff00ff>1; // Number of graphs you desire to
display!
graphxspace = <FONT
color=#ff00ff>3; // Added size in % (here: 3%)
at the top and bottom of the chart window.<FONT
color=#ff6820>
graph0 = <FONT
color=#800080>Sum((<FONT
color=#ff6820>volume * <FONT
color=#ff6820>close), <FONT
color=#ff00ff>10) / Sum<FONT
face=Arial>(volume,
10);
graph0Name =<FONT
color=#0000ff>"Weighted Volume";
graph0Color = <FONT
color=#ff6820>colorRed; <FONT
color=#009300>// Color must be specified!<FONT
color=#ff6820>
graph0Style = <FONT
color=#ff6820>styleLine + <FONT
color=#ff6820>styleThick; <FONT
color=#009300>// Type of line must also be set!<FONT
face="Courier New">
Best Regards,
Udo
<BLOCKQUOTE dir=ltr
>
-----Ursprüngliche Nachricht-----
<DIV
>Von:
Larry
M. Powell
An: <A title=amibroker@xxxxxxxxxxxx
href="">amibroker@xxxxxxxxxxxxxxx
Gesendet: Mittwoch, den 30. Oktober
2002 05:39 Uhr
Betreff: [amibroker] Volume Weighted
Moving Average
I would like to be able
to plot the following on the price chart, I have tried sever method of
"plot" but does not seem to work. Thanks,<FONT
face="Courier New, Courier" color=#008000 size=2>/* The Volume Weighted
Moving Average calculates the sum of the volume times the data field for
each day in the average, then divides this value by the sum of the volumes
in that period. */<FONT face="Courier New, Courier"
size=2>Graph0 = <FONT face="Courier New, Courier"
color=#0000ff size=2>Sum<FONT face="Courier New, Courier"
size=2>((Volume*Close),<FONT
face="Courier New, Courier" color=#ff00ff size=2>10<FONT
face="Courier New, Courier" size=2>)/<FONT
face="Courier New, Courier" color=#0000ff size=2>Sum<FONT
face="Courier New, Courier" size=2> (Volume,<FONT
face="Courier New, Courier" color=#ff00ff size=2>10<FONT
face="Courier New, Courier" size=2>);
Larry M. PowellLM Powell Development
Co714-299-7002702-768-6090 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
Your use of Yahoo! Groups is subject to the <A
href="">Yahoo! Terms of Service.
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
Your use of Yahoo! Groups is subject to the <A
href="">Yahoo! Terms of Service.
|