saad 3 posts msg #30669 - Ignore saad |
1/15/2004 5:56:21 PM
Based upon strategies from "Hit and Run Trading" by Jeff Cooper im looking for help to to make it in stockfetcher filters .
iwill write the formula in meta stock languge and any body give me help to change it to stockfetcher .
1- (180s Buy)
! On Day 1 , the stock must close in the bottom 25% of its daily range.
! OnDay 2, the stock must close in the top 25% of its range.
! The stocks price must close greater than both its 10 and 50 day MA on Day 2 only.
! Buy 1/8 point above the day 2 high, on day 3.
A:Close
B:{MA}Ref(C,-1)<Mov(C,10,S) AND Ref(C,-1)<Mov(C,50,S)
AND C>Mov(c,10,S) AND C>Mov(C,50,S)
C:{Breakout}Ref(C,-1)<=((Ref(H,-1)-Ref(L,-1))*.25)+Ref(L,-1)
AND C>=H-(H-L)*.25
D:{Entry}HHV(H,2)+.125
E:{Stop}HHV(H,2)+.125-1
|
txtrapper 548 posts msg #30671 - Ignore txtrapper |
1/15/2004 7:00:10 PM
saad,
It will probably work here at SF, but I think it will have to be two filters.
1)Show stocks that closed down 25% from it average trading ranges today, then put that list in SF Watch List.
You would then look for stocks that appear in both Watch Lists, Simple.
2)Show stocks that closed within 25% of it daily trading range, put that list in SF watchlist.
The price and other stuff is easy, I would suggest you post this to Tomb, in SF
in Comment, Bugs, and Requests, be sure to let me know when you post it.
TxTrapper
|
keithray 13 posts msg #30674 - Ignore keithray |
1/15/2004 11:02:25 PM
saad,
I believe I have written a filter to produce the results you want. The coding is not pretty...but, it seems to work.
|
aferguson3 9 posts msg #113872 - Ignore aferguson3 |
6/3/2013 3:01:46 PM
I'm a new trader, so I chose this simple strategy to start with. I've experienced some success using this filter.
The only exit criteria entered are 3 days max, ma(10) crosses below ema(20) and rsi(2) is above 65
It would be great if anybody had any other exit strategies to use with this filter to create a higher ROI.
Thanks
|
SAFeTRADE 644 posts msg #113882 - Ignore SAFeTRADE |
6/3/2013 10:46:11 PM
Here is my effort.
|