PureBytes Links
Trading Reference Links
|
Hi,
This is what I am using, it will give you a weekly and daily
bar.
Plot(MACD(),"macd Daily",colorGreen,styleLine|styleThick);
Plot(EMA( MACD(), 9 ),"signal",colorRed,styleLine|styleThick);
Plot(10,"ribbon", IIf( MACD()<Signal(), colorRed, colorGreen
),styleOwnScale|styleArea|styleNoLabel, -0.5, 100 );
GraphXSpace = 10;
TimeFrameSet(inWeekly);
Plot(10,"ribbon", IIf( MACD()<Signal(), colorRed, colorPaleGreen
),styleOwnScale|styleArea|styleNoLabel, -0.5, 55 );
GraphXSpace = 10;
I hope this is what you are looking for,
Dennis
--- In amibroker@xxxxxxxxxxxxxxx, "Ed" <reach1136@xxxx> wrote:
> Thanks TJ for the great upgrade...you are a one-man show. Glad I
did
> not re-up for my MetaStock upgrade.
>
> Has anyone looked at how to implement a neat feature of
ClearStation -
> that of showing a Trending Up or Down color ribbon on top of
price,
> correleating to the MACD trend? It gives you a real quick picture
of
> the trend of the market you are following.
>
> It you are not familiar go to www.clearstation.com and take a look
at
> one of their graphs.
>
> I've tried to pattern one after the other examples from the
> tutorials, but I am having great difficulty here. Can anyone help?
>
> As always, thanks in advance.
>
> EdM
------------------------ 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/mOAaAA/3exGAA/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/
|