[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

RE: [amibroker] Re: AB ver 4.54 real Time with eSignal



PureBytes Links

Trading Reference Links









Dave,  What kind of funds or fund family do
you use these 2 methods on?  

 



Larry M. Powell
LM Powell Development Co.



<span
>P.O. Box 27878
Anaheim, CA 92809





<span
>lmpdevco@xxxxxxxxxxxx





<span
>
714-299-7002
702-768-6090 





<span
>FAX 714-970-2140





<span
> 





<span
> 





<span
>This e-mail may contain
or attach material that is confidential or privileged.  It is for the sole use
of the intended recipient(s).  Any review, reliance or distribution by others,
or any forwarding or copying by any means, without express permission is
strictly prohibited.  If you are not the intended recipient, please contact the
sender and delete all copies.





<span
> 



<font size=3 color=navy
face="Times New Roman"> 

<span
>---------------------------------------------------------------------
Eliminate annoying spam!

My mailbox is protected by iHateSpam, the #1-rated spam buster.
http://www.ihatespam.net



<span
>-----Original Message-----
From: davelansing2004
[mailto:d.ankrapp@xxxxxxxxxxx] 
Sent: Friday, May 07, 2004 5:12 AM
To: amibroker@xxxxxxxxxxxxxxx
Subject: [amibroker] Risk ratio

<span
> 

<span
>Hello,<font size=2
face="Courier New">

I just wanted to share a simple filter I use to
address a "good" time 
to purchase mutual funds... I call it my
"Risk ratio". Basically, 
when the Risk ratio is above 2 and rising, it's a
signal for me to 
consider buying the mutual fund. The strongest
signal is when both 
the long-term and short-term Risk ratios are above
2 and rising. I 
use this as a filter for weekly data. It's a
simple ratio, but has 
worked very well for me, especially in combination
with my Trend 
Index.

//Risk ratio//

ROR=ROC(Close,1);
period1= Param("long-term",30,30,100,5);
y1 = IIf(ROR>0,ROR,0);
y2 = IIf(ROR<0,ROR,0);
y3 = Sum(y1,period1); 
y4 = Sum(y2,period1);
y5 = Sum(y1,13);
y6 = Sum(y2,13);
ratio1 = abs(y3/y4); //long-term Risk ratio//
ratio2 = abs(y5/y6); //short-term Risk ratio//
Plot(ratio1,"long-term",colorBlue);
Plot(ratio2,"short-term",colorRed);

Title = "Risk Ratio"
+"    "
+EncodeColor(colorBlue)+"long-term
{"+WriteVal(period1,1.0)+" bars} 
= " +WriteVal(ratio1,1.1)
+"    "
+EncodeColor(colorRed)+"short-term {13 bars}
= "+WriteVal(ratio2,1.1);




Send BUG
REPORTS to bugs@xxxxxxxxxxxxx<span
>
Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
-----------------------------------------
Post AmiQuote-related messages ONLY to:
amiquote@xxxxxxxxxxxxxxx 
(Web page: <a
href="">http://groups.yahoo.com/group/amiquote/messages/)
--------------------------------------------
Check group FAQ at: <a
href="">http://groups.yahoo.com/group/amibroker/files/groupfaq.html










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 Sponsor


  ADVERTISEMENT 












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 the Yahoo! Terms of Service.