PureBytes Links
Trading Reference Links
|
Steve,
Try this in Indicator builder:
Note: *** My backgroud color is light grey *****
/*******Start ***************/
MA1=MA(C,5);
MA2=MA(C,15);
Plot(MA1,"ma1",colorGreen,styleLine);
Plot(MA2,"ma2",colorRed,styleLine);
x=IIf(MA1 > MA2,MA2,MA1);
Plot(x,"",colorLightGrey,styleHistogram);
Plot(MA2,"ma2",colorRed,styleHistogram);
Plot(MA1,"",colorGreen,styleHistogram);
/********End************************/
Anthony
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.502 / Virus Database: 300 - Release Date: 7/19/2003
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Free shipping on all inkjet cartridge & refill kit orders to US & Canada. Low prices up to 80% off. We have your brand: HP, Epson, Lexmark & more.
http://www.c1tracking.com/l.asp?cid=5510
http://us.click.yahoo.com/GHXcIA/n.WGAA/ySSFAA/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/
|