PureBytes Links
Trading Reference Links
|
Replace it with this line
Plot(DR,"deltaUpDnDays",colorBlack,styleNoLine+styleownscale);
Cheers,
Graham
http://groups.msn.com/ASXShareTrading
http://groups.msn.com/FMSAustralia
-----Original Message-----
From: DIMITRIS TSOKAKIS [mailto:TSOKAKIS@xxxxxxxxx]
Sent: Sunday, 7 September 2003 3:56 PM
To: amibroker@xxxxxxxxxxxxxxx
Subject: [amibroker] Re: Plot different than Graph0
Ron,
In the first group, you have one more plot,
Plot(DR,"deltaUpDnDays",colorBlack,styleNoLine);
which is missing from the second group.
Comment this line, ie replace it with
//Plot(DR,"deltaUpDnDays",colorBlack,styleNoLine);
and both groups should give the same picture.
[Alternatively, add one more DR graph to the second group] Dimitris Tsokakis
--- In amibroker@xxxxxxxxxxxxxxx, "mrdavis9" <mrdavis9@xxxx> wrote:
> Graham, thanks a lot for helping me learn to use the Plot (xxx
system instead of the Graph0 way that I am used to.
>
> To all Amibroker users, I Am getting some interesting differences
in the appearance of the graphs produced by the Plot(xxx method when
compared to the Graph0 way to do it. I have attached a chart that
shows the difference in appearance. The values in the popup menus
are different as well. I have included both of the coding methods
that I am using.
>
> I took it as a personal challenge to try and solve this mystery
myself, but I have to give up. Try as I may, I can find no
differences in these two codes other than the use of Plot(xx in
lieu of the old Graph0 way to define how the graphs should appear.
As usual, the problem will probably be obvious to others.
>
> I am Looking foreward to learning why these differences are
appearing. Ron D
>
> This is the newer Plot method.
>
> upday=IIf(O<C,C-O,0);
>
> downday=IIf(C<O,O-C,0);
>
> DR = IIf(O<C,C-O,0)-IIf(C<O,O-C,0);
>
> Plot(DR,"deltaUpDnDays",colorBlack,styleNoLine);
>
> Plot(DEMA(upday,28),"UpDema28",colorGreen,styleThick);
>
> Plot(DEMA(downday,19),"DnDema19",colorRed,styleThick);
>
> Title="Up28 Dn19 DemaPlotTest "+Date()+", "+ SelectedValue(DR)
+"\n" + SelectedValue(DR);
>
> ====================================================================
>
>
> This is the old Graph0 method
>
>
>
>
> Title="Up28 Dn19 DemaGraph0Test ";
>
> upoc=IIf(O<C,C-O,0);
>
> dnoc=IIf(C<O,O-C,0);
>
> /*Now Plot these formulas*/
>
> Graph1=colorRed;
>
> Graph1=DEMA(upoc,28);
>
> Graph0=colorGreen;
>
> Graph0=DEMA(dnoc,19);
------------------------ Yahoo! Groups Sponsor ---------------------~--> Buy
Ink Cartridges or Refill Kits for Your HP, Epson, Canon or Lexmark Printer
at Myinks.com. Free s/h on orders $50 or more to the US & Canada.
http://www.c1tracking.com/l.asp?cid=5511
http://us.click.yahoo.com/l.m7sD/LIdGAA/qnsNAA/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/
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Buy Ink Cartridges or Refill Kits for Your HP, Epson, Canon or Lexmark
Printer at Myinks.com. Free s/h on orders $50 or more to the US & Canada. http://www.c1tracking.com/l.asp?cid=5511
http://us.click.yahoo.com/l.m7sD/LIdGAA/qnsNAA/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/
|