PureBytes Links
Trading Reference Links
|
The graphs are preset to different styles from my observations. They are
actually old technology, much better to use the Plot function.
Cheers,
Graham
http://groups.msn.com/asxsharetrading
http://groups.msn.com/fmsaustralia
-----Original Message-----
From: bm [mailto:groups@xxxxxxxxxxxx]
Sent: Wednesday, 14 January 2004 7:53 AM
To: amibroker@xxxxxxxxxxxxxxx
Subject: [amibroker] zigzag problem
hello,
MaxGraph=10;
Graph0=Zig(C,Param("zC",10,2,100,1));
Graph0Color=colorYellow;
Graph1=Zig(H,Param("zH",10,2,100,1));
Graph1Color=colorRed;
Graph2=Zig(L,Param("zL",10,2,100,1));
Graph2Color=colorBlue;
why Graph2 plots differently (in style) than two previous? (I put this code
before "//Indicator End" line in Price @ build-in indicators set)
this changes after the exlplicit declaration of style, namely:
graph2style=styleline;
why G0 & G1 plot as style line and G2 as sth else as default?
cheers,
BM
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: http://docs.yahoo.com/info/terms/
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:
http://docs.yahoo.com/info/terms/
|