PureBytes Links
Trading Reference Links
|
1/ sorry previous message i hit the enter button
by accident
2/ i'm not sure i do understand what i'm being ask to
do :
the following will give you 1 if :
-the (exp.) moving average of the rsi
is below 30 now
-the (exp.) moving average of the rsi was
above 30 5 periods ago
i've made the formula so you can easly change all of
the parameters
the default parameters will return for your original
query (again as per my understanding of it...)
q2:=input("what lenght for ma of rsi",1,200,3);
q1:=input("what time for lookback period",1,200,5);
q3:=input("what time lenght for rsi",1,200,3);
q4:=input("what treeshold for rsi",1,100,30);
k:=rsi(c,q3);
m:=mov(k,q2,e);
if((m<q4) and (ref(m,-q1)>q4),1,0);
let me know
> >
> > I want to see the moving average, close, 4
> periods, E, crossing
> the line 30 from above within the last 5 periods
> >
> > and the
> >
> > moving average, close, 3 periods, E should be
> less than 30 on the
> exploration day
> >
__________________________________
Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software
http://sitebuilder.yahoo.com
------------------------ 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/l.m7sD/LIdGAA/qnsNAA/BefplB/TM
---------------------------------------------------------------------~->
To unsubscribe from this group, send an email to:
equismetastock-unsubscribe@xxxxxxxxxxxxxxx
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|