| push5280 201 posts
 msg #87526
 - Ignore push5280
 | 1/31/2010 6:12:33 PM 
 I'm trying to write a filter using  WEEKLY IFT(5,9) APPROACHING 0 FROM BELOW.  This line returns 0 matches. Am I doing something wrong?  Any suggestions?
 
 
 | 
| chetron 2,817 posts
 msg #87528
 - Ignore chetron
 | 1/31/2010 7:15:10 PM 
 i can't get it to either, maybe...
 
 
 
 
 
 
 | 
| trendscanner 265 posts
 msg #87533
 - Ignore trendscanner
 | 1/31/2010 8:50:40 PM 
 a few more tweaks and qualifiers
 
 
 
 some of these hits look interesting
 
 This one gets close to it - you can change the -0.1 to something lower for more hits
 
 
 
 
 
 
 
 | 
| mystiq 650 posts
 msg #87548
 - Ignore mystiq
 modified
 | 2/1/2010 1:14:10 AM 
 try it with 2 day slope or use IND(indisposition, weekly......
 
 
 | 
| push5280 201 posts
 msg #87738
 - Ignore push5280
 | 2/3/2010 8:59:29 AM 
 thanks for your help everyone!
 
 
 | 
| push5280 201 posts
 msg #87903
 - Ignore push5280
 | 2/6/2010 4:11:46 PM 
 anyone up to the challenge of converting this to SF code but substituting CCI(20) for RSI(5)?
 
 
 | 
| push5280 201 posts
 msg #87906
 - Ignore push5280
 | 2/6/2010 5:06:24 PM 
 I got the copy part down pretty well but I'm still working on the paste part..lol
 
 anyone up to the challenge of converting this to SF code but substituting CCI(20) for RSI(5)?
 
 Value1=0.1*(RSI(5)-50);
 Value2=WMA(Value1,9);
 ifish=(exp(2*Value2)-1)/(exp(2*Value2)+1);
 Plot(ifish,"Inverse Fisher Transform",colorBlue,1);
 Plot(0.5,"",colorBrightGreen,1);
 Plot(-0.5,"",colorRed,1);
 
 
 
 
 
 |