PureBytes Links
Trading Reference Links
|
Vivek
Play around with this and see if it suits your needs:
Just paste into AA window and run as Scan or
Exploration.
*********
r = RSI(14);
e = EMA(RSI(14),9);
Buy = Cross(r,e);
Sell = Cross(e,r);
Filter = Buy;
//Filter = Sell;
Plot(r,"RSI(14)",colorRed,styleThick);
Plot(e,"emaRSI(14)", colorGreen,1);
Plot(70,"70",colorGrey40,1);
Plot(30,"30",colorGrey40,1);
GraphXSpace=3;
AddColumn(C,"C",1.3);
*******
ChrisB
--- vivek.kumar-bhat@xxxxxxxxxxxxxxxxxxxxxxxx wrote:
>
> HI
>
> need the code for RSI ( 14 ) on its 9 day moving
> average. Also a scan and
> exploration code where
>
> Buy - rsi ( 14 ) crosses above its 9 day moving
> average and
> Sell - rsi ( 14 ) crosses below its 9 day moving
> average
>
> many thanks
> vivek
>
> This email is confidential. If you are not the
> addressee tell the sender immediately and destroy
> this email without using, sending or storing it.
> Emails are not secure and may suffer errors,
> viruses, delay, interception and amendment. Standard
> Chartered PLC and subsidiaries ("SCGroup") do not
> accept liability for damage caused by this email and
> may monitor email traffic.
>
>
__________________________________
Do you Yahoo!?
Take Yahoo! Mail with you! Get it on your mobile phone.
http://mobile.yahoo.com/maildemo
------------------------ Yahoo! Groups Sponsor --------------------~-->
Has someone you know been affected by illness or disease?
Network for Good is THE place to support health awareness efforts!
http://us.click.yahoo.com/Rcy2bD/UOnJAA/cosFAA/GHeqlB/TM
--------------------------------------------------------------------~->
Please note that this group is for discussion between users only.
To get support from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com
For other support material please check also:
http://www.amibroker.com/support.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/
|