StockFetcher Forums · Filter Exchange · This might be impossible<< 1 ... 18 19 20 21 22 ... 24 >>Post Follow-up
Cheese
1,374 posts
msg #153741
Ignore Cheese
8/25/2020 10:47:55 PM

Hi Robert,

While you are making improvements to your filter, you may want to develop
your own WAIT FOR GREEN safeguard to catch the move up and to manage risk.

Of course you have many choices. I've included a couple of suggestions below.

Thanks again for sharing.

Fetcher[
/* https://www.stockfetcher.com/forums/Filter-Exchange/This-might-be-impossible/151423/180 */
/* kossvet 8/25/2020 4:58:04 PM */
draw cema(low,2) 4 week low
draw cema(low,2) 3 week low
draw cema(low,2) 2 week low
draw cema(low,2) 1 week low
and price is between .50 and 10
and cema(low,2) 4 week low is equal to cema(low,2) 3 week low
and cema(low,2) 4 week low has been increasing for the last 1 week 1 week ago
and cema(low,2) 3 week low is equal to cema(low,2) 2 week low

DRAW MACD(12,26,9)
DRAW MACD(2,26,9) /* reverse engineered discovery by klynn55 */
]



sandjco
648 posts
msg #153743
Ignore sandjco
8/26/2020 12:15:18 AM

@nibor100..

what back testing software do you use?

Thanks in advance.

nibor100
1,010 posts
msg #153744
Ignore nibor100
8/26/2020 9:11:25 AM

@sandjco,

For SF filters I mostly backtest using SF filter code

and if I want additional capabilities I use either Amibroker, or Edgerater Pro, or VectorVest 7.

Ed S.

shillllihs
5,963 posts
msg #154118
Ignore shillllihs
9/23/2020 2:42:29 PM

How’s GNPX and the rest of the picks & retirement plans going? Haven’t heard from you in awhile.

shillllihs
5,963 posts
msg #155143
Ignore shillllihs
12/30/2020 3:04:07 PM

Hi Kos, hope all is well with your retirement fishing and all. You said this would be in the teens by Dec. and it’s at $4 now, do you think it will hit 13 by tomorrow because if so I’m going all in, thanx.

kossvet
147 posts
msg #155145
Ignore kossvet
12/30/2020 6:32:22 PM

Doing great
Up over 100% in GNPX.
Still holding a boat load.
Have not sold 1 share.
Patience is a virtue.
God willing I have the time, and I know I definitely have the patience.
Thanks for your curiosity.


xarlor
561 posts
msg #155157
Ignore xarlor
modified
12/31/2020 2:55:48 PM

I messed with my original filter back when kossvet was talking about getting in before a stock had broken out and moved so high already. The new filter does just that and decreases the amount of returns to a manageable amount. It returns some of the same filters as the previous one I posted, but gets you in sooner and at a lower price.

Although the filter returns some juicy home-runs, there was one hurdle I couldn't get around; when to stay in waiting for those poppers and when to cut losses and get out. It's the age-old conundrum for traders, but even more magnified here because we're dealing with low-priced bio stocks - some would call this gambling.

Since I didn't have the expertise kossvet did to separate the wheat from the chaff, I shelved the filter and moved on to other things. Necroing this thread reminded me about it and I figured I'd release it to the wild.

Some recent breakouts returned by my modified filter:

kossvet's favorite, GNPX, flashed a buy on 12/03/2020. Twenty days later, it closed up 64%.
BNGO dropped a signal 12/21/2020 and 10 days later it is trading 403% higher.
XBIO on 11/27/2020 closed 12 days later up 214%.
EARS busted out 447% in only 5 days after the filter told you to buy on 11/23/2020.

There's plenty more, too. Enjoy!

Fetcher[

average volume(5) > 100000
sector(medical)

set{diff1,ma(5) - ma(10)}
set{diff2,ma(10) - ma(20)}

set{vol2,average volume(5) 5 days ago * 2}

set{var1,count(volume > vol2,1)}
set{var2,count(ma(5) increasing for last 3 days,1)}
set{var3,count(ma(10) increasing for last 3 days,1)}
set{var4,count(ma(20) increasing for last 3 days,1)}

set{var5,count(diff1 increasing for the last 2 days,1)}
set{var6,count(diff2 increasing for the last 2 days,1)}

set{var7,count(atr(30) < .2,1)}
set{var8,count(reached a new high 3 month high,1)}
set{var9,count(close > open,1)}
set{var10,count(close > close 1 day ago,1)}


/* Comment out the 2 lines above and uncomment the 2 lines below to see all hits within the last year */
/* chart-time is 14 months */
/* count(buy > 0,251) > 0 */

draw ma(5)
draw ma(10)
draw ma(20)

/* TTM Squeeze draw */

set{momo,cema(momentum(16),5)}
add column momo
draw momo
plottype{momo,zerobar}

set{Pchange1,momentum(16)/momentum(16) 1 day ago}
set{Pchange,Pchange1 - 1}
add column pchange

set{sqz1,count(momo > .01,1)}
set{sqz2,count(momo < 0,1)}
set{sqz3,count(Upper Bollinger Band(20,2) < Upper Keltner Band(20,2),1)}
set{sqz4,count(Lower Bollinger Band(20,2) > Lower Keltner Band(20,2),1)}
set{sqz5,sqz3 * sqz4}
set{sqz6,sqz1 + sqz2}
set{TTM_Squeeze,sqz5 * sqz6}

set{buy1,var2 * var3}
set{buy2,buy1 * var4}
set{buy3,buy2 * var7}
set{buy4,buy3 * var9}
set{buy5,buy3 * var10}
set{buy6,buy5 * TTM_Squeeze}
set{buy,buy6 * count(momo crossed above 0 within the last 5 days,1)}
buy > 0
buy 1 day ago equals 0

draw TTM_Squeeze
]



kossvet
147 posts
msg #155158
Ignore kossvet
12/31/2020 3:24:45 PM

Xarlor

I am currently accumulating BBI.
Getting in very early
20k shares at .77
Let's see how this goes into the summer next year.
Patience is a virtue.
GNPX is still a buy, the real breakout has not happened yet.
When they release some info on their diabetes research.
This should propel quite nicely.
Happy New Year to everyone

Robert


shillllihs
5,963 posts
msg #155161
Ignore shillllihs
12/31/2020 6:31:52 PM

Added my indicators and these are likely to move, may not be the biggest but most consistent potential in my opinion.
NVCN,BLU,MOTS.MLND,CERC

Cheese
1,374 posts
msg #155579
Ignore Cheese
2/3/2021 3:07:38 PM

wow, Robert kossvet
GNPX !
Is that the name of your new luxury yatch, too?
Now you have the last laugh , not your narcissist detractor.

StockFetcher Forums · Filter Exchange · This might be impossible<< 1 ... 18 19 20 21 22 ... 24 >>Post Follow-up

*** Disclaimer *** StockFetcher.com does not endorse or suggest any of the securities which are returned in any of the searches or filters. They are provided purely for informational and research purposes. StockFetcher.com does not recommend particular securities. StockFetcher.com, Vestyl Software, L.L.C. and involved content providers shall not be liable for any errors or delays in the content, or for any actions taken based on the content.


Copyright 2022 - Vestyl Software L.L.C.Terms of Service | License | Questions or comments? Contact Us
EOD Data sources: DDFPlus & CSI Data Quotes delayed during active market hours. Delay times are at least 15 mins for NASDAQ, 20 mins for NYSE and Amex. Delayed intraday data provided by DDFPlus


This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.