irishpitbull 54 posts msg #147660 - Ignore irishpitbull |
5/2/2019 7:57:17 PM
Giving credit where it is due.
I cleaned your scan up a bit( for my parameters) and ran it though our back test software. Pretty great results on selling the 1st day high does not cross above tema. Buy is .005% above high.
I added it my toolbox of screens.
close > 20
Average Volume(30) > 200000
set{v1,CEMA(EMA(8),8)}
set{v2,CEMA(v1,8)}
set{v3, 3 * EMA(8)}
set{v4, 3 * v1}
set{v5, v3 - v4}
set{TEMA, v5 + v2}
draw TEMA on plot price
draw CEMA(low,9) on plot price
set{signal, count(TEMA crossed above CEMA(low,9),1)}
draw signal
set{sell, count(TEMA crossed below CEMA(high,9),1)}
draw sell
close > ma(200)
signal > 0
ma(200) is below low
close is greater than open
close is greater than high 1 day ago
Stochastic %K(12,5,3) is above Stochastic %D(12,3,3)
Stochastic %d(12,5,3) is below 79
Stochastic %K(12,5,3) is below 79
volume is greater than Average Volume(30)
volume is greater than Average Volume(50)
volume is greater than volume 1 day ago
set{ iTargetPrice , ATR(14) * 1 }
set{ Target , itargetprice +high}
add column Target
set{ iStopPrice , high * -.05 }
set{ 5%Stop , istopprice +high}
add column 5%Stop
close is above ema(26)
Do not draw ema(26)
close is greater than high 1 day ago
close is greater than high 2 days ago
close is greater than high 3 days ago
close is greater than high 4 days ago
close is greater than high 5 days ago
low is below high 1 day ago
|
KSK8 561 posts msg #147663 - Ignore KSK8 modified |
5/2/2019 9:03:09 PM
If Stockfetcher implements more functions then I could add a John F. Ehlers cycle filter to the original system which would dramatically improve its win rate yielding good clean entries. A cycle filter, in general, would be good to add regardless. But all the good ones require functions SF has yet to supply.
|
irishpitbull 54 posts msg #156537 - Ignore irishpitbull |
4/9/2021 9:22:23 PM
Can you turn this into a short filter?
beta above 1
close is greater than 50
Average Volume(30) is greater than 1000000
volume is greater than Average Volume(30)
set{v1,CEMA(EMA(8),8)}
set{v2,CEMA(v1,8)}
set{v3, 3 * EMA(8)}
set{v4, 3 * v1}
set{v5, v3 - v4}
set{TEMA, v5 + v2}
draw TEMA on plot price
draw CEMA(low,9) on plot price
set{signal, count(TEMA crossed above CEMA(low,9),1)}
draw signal
low is below CEMA(low,9)
set{sell, count(TEMA crossed below CEMA(high,9),1)}
draw sell
signal > 0
add column ATR(14)
|
snappyfrog 721 posts msg #156539 - Ignore snappyfrog |
4/10/2021 6:42:37 AM
Making it clickable.
|