PureBytes Links
Trading Reference Links
|
Jaguar
> I would like someone to get me going on writing an Explorer to find
> Stocks with a Stochastic (34,4) above 90 and the 20MA crosing down
> through the 50 MA.
This is what you asked, but I suspect you are going to get very few hits. This code could be placed
either in a column or in the filter. If you change the moving averages to exponential make sure that
the exploration is set to 250 or more periods.
Stoch(34,4)>90 AND Cross(Mov(C,50,S),Mov(C,20,S));
You might be better to use the following indicator on a few charts to see why you get so few hits.
Then you could possibly try changing the MA values or the stoch threshold to get a more useful hit
rate.
{Stoch Test Indicator}
(Stoch(34,4)>90) +1.1;
Cross(Mov(C,50,S),Mov(C,20,S));
This shows the window when the stochastic is above 90 with the upper plot, and the 20 SMA crossing
below the 50 SMA with the lower plot. Both plots must be true to meet your conditions.
Roy
------------------------ Yahoo! Groups Sponsor --------------------~-->
Make a clean sweep of pop-up ads. Yahoo! Companion Toolbar.
Now with Pop-Up Blocker. Get it for free!
http://us.click.yahoo.com/L5YrjA/eSIIAA/yQLSAA/BefplB/TM
--------------------------------------------------------------------~->
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/equismetastock/
<*> 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/
|