PureBytes Links
Trading Reference Links
|
/*Guppe Moving Average*/
MaxGraph = 10;
/* blue lines */
Graph0= MA( Close, 3 );
Graph1= MA( Close, 5 );
Graph2= MA( Close, 8 );
Graph3 = MA( Close, 12 );
Graph4 = MA( Close, 15 );
Graph0Style = Graph1Style = Graph2Style = Graph3Style =Graph4Style = 1;
Graph0Color = Graph1Color = Graph2Color = Graph3Color =Graph4Color = 29;
/* red lines */
Graph5= MA( Close, 30 );
Graph6= MA( Close, 35 );
Graph7= MA( Close, 40 );
Graph8 = MA( Close, 45 );
Graph9 = MA( Close, 50 );
Graph5Style = Graph6Style = Graph7Style = Graph8Style =Graph9Style = 1;
Graph5Color = Graph6Color = Graph7Color = Graph8Color =Graph9Color = 32;
Is this what you are looking for?
Regards
Don McKay
----- Original Message -----
From: "liguoyi" <liguoyi@xxxxxxxxxxxxxx>
To: <amibroker@xxxxxxxxxxxxxxx>
Sent: Saturday, September 06, 2003 12:26 PM
Subject: [amibroker] How to write MA ribbon indicatior?
> Anyone have the MA ribbon indicatior? Thanks a lot in advance.
>
>
>
>
> 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/
|