Filter Exchange · Swing/Trend Trader
|
irishpitbull msg #158602 |
2/17/2022 12:49:31 PM
Really good filter. The only thing missing is column on how many days has the stock been in the buy zone. I'm assuming it is when on the boxes are lit up... correct?
|
Filter Exchange · Hat tip to KSK8
|
irishpitbull msg #156537 |
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)
|
Filter Exchange · Percent from
|
irishpitbull msg #152012 |
5/1/2020 1:22:02 PM
Thank you for your help in advance.
How would I code the high for the day is how my percent from upper bollinger band.
Thank you
|
Filter Exchange · Reversing issue
|
irishpitbull msg #151953 |
4/29/2020 9:03:17 AM
I'm having issues reversing this filter. Whould one of you coding experts have crack at it?
price is greater than 10
Average Volume(30) is greater than 500000
volume is 20 percent greater than Average Volume(30)
volume is 20 percent greater than Average Volume(50)
ema(26) is above ema(13)
ema(13) is above ema(9)
close is above ema(26)
low is below high 1 day ago
close is above open
open is below ema(13)
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
Draw ma(200)
Day Change is above 2 percent
|
Filter Exchange · Hat tip to KSK8
|
irishpitbull msg #147660 |
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
|
Filter Exchange · EMA Crossover
|
irishpitbull msg #145541 |
12/11/2018 2:17:30 PM
ema(5) crossed above ema(50)
price is greater than 20
Average Volume(30) is greater than 500000
MACD Fast Line(12,26,9) is above MACD Slow Line(12,26,9)
volume is above Average Volume(30)
volume is above Average Volume(50)
add column rsi(14)
draw rsi(14)
rsi(14) is below 60
add column rsi(14)
open is below close
close is above high 1 day ago
draw ema(9)
draw Upper Bollinger Band(15,2)
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
close is above ema(65)
day change is greater than 1
ema(9) is above ma(20)
ema(26) is above ma(200)
ema(65) IS ABOVE MA(200)
|
General Discussion · StockFetcher > ThinkorSwim
|
irishpitbull msg #145035 |
10/24/2018 10:25:11 AM
SF is pretty great compared to alot of scanners out there. The ease of use keeps me here. I really miss the backtesting we use to have tho. I don't want to have to learn a programming to trade.
|
Filter Exchange · Percent From
|
irishpitbull msg #144957 |
10/15/2018 2:37:54 PM
How would I do High is x percent from ema(9) ?
Thanks in advance.
|
Filter Exchange · Filter Help
|
irishpitbull msg #134240 |
2/11/2017 9:36:29 PM
Yes thank you!
|
Filter Exchange · Filter Help
|
irishpitbull msg #134236 |
2/11/2017 9:06:37 PM
I'm trying to get condition with yes or no column. maybe a red or green?
Something like
ma(10) is above ma(30) and price is above ma(30)
add column Yes
thanks in advance
|