StockFetcher Forums · Stock Picks and Trading · BZUN WEEKLY buy signal<< 1 2 3 4 >>Post Follow-up
Mactheriverrat
3,131 posts
msg #138036
Ignore Mactheriverrat
9/7/2017 11:38:27 PM



johnpaulca
12,036 posts
msg #138055
Ignore johnpaulca
9/8/2017 1:23:45 PM

Symbol Last Chg(%) Vol Average Volume(10) Perf(%) MyRatings


BZUN - Baozun Inc Drc 31.12 7.61 4,036,800 3,146,030 3.25

BDX - Becton Dickinson and Co 199.57 0.17 968,300 818,180 2.05

MCK - MCKESSON HBOC INC 155.84 2.47 2,462,400 1,412,630 0.99

PCAR - PACCAR Inc 66.83 2.44 2,341,800 1,477,070 0.94

MMM - 3M, MINNESOTA MNG & MFG CO 204.46 1.19 1,701,500 1,456,440 0.73

VRSK - Verisk Analytics 82.00 1.16 893,300 811,180 0.72

GLPI - Gaming And Leisu 38.29 0.31 1,117,800 818,410 0.60

HON - HONEYWELL INTERNATIONAL 137.08 0.39 2,460,300 2,134,340 0.53

**************************************************************************************************************************

Good call John

BZUN made my Booya list yesterday

ron22
255 posts
msg #138063
Ignore ron22
9/8/2017 5:01:31 PM

John or Mac, what thread is this filter on? Thanks Ron

pthomas215
1,251 posts
msg #138064
Ignore pthomas215
9/8/2017 6:22:10 PM

Ron, I think Mac just noticed it was going to bust up after looking at technicals..i.e. no filter. However it did pop up in one of mine that probably originated from Graftonian.


Fetcher[

Average Day Range(10) above 4
market market is not OTCBB
close > 4
Average Volume(30) > 500000
draw RSI(10) line at 50
draw CCI(10) line at 0
draw cci(30) line at 0

/*TRADER GROUP*/
draw EMA(3)
draw EMA(5)
draw EMA(8)
draw EMA(10)
draw EMA(12)
draw EMA(15)

/*INVESTOR GROUP*/
draw EMA(60)
draw EMA(50)
draw EMA(45)
draw EMA(40)
draw EMA(35)
draw EMA(30)
add column separator

/* investor group width */
set{igw, ema(30) - ema(60)}
set{igw2, igw / ema(60)}
set{IGwidth, igw2 * 100}
add column IGwidth

/*trader grp/investor grp separation */
/*The white space between the trader and investor groups*/
set{tradgrpmin, min(ema(3), ema(15))}
set{invgrpmax, max(ema(30), ema(60))}
set{tisep, tradgrpmin - invgrpmax}
set{tisep2, tisep / invgrpmax}
set{TG_IGsep, tisep2 * 100}
add column TG_IGsep

/* trader group width */
set{tgw, ema(3) - ema(15)}
set{tgw2, tgw / ema(15)}
set{TGwidth, tgw2 * 100}
add column TGwidth

/*********display the rate of expansion/contraction for each group*********/
/*add column separator
add column 20 day slope of IGwidth
add column 10 day slope of TG_IGsep
add column 5 day slope of TGwidth*/
/************************************************/
/*20 day slope of IGwidth > 0
10 day slope of TG_IGsep > 20 day slope of IGwidth
5 day slope of TGwidth > 10 day slope of TG_IGsep*/
/******SUM OF SLOPES***********/

draw TGwidth
draw TGwidth line at 0
draw 5 day slope of TGwidth

draw TG_IGsep
draw TG_IGsep line at 0
draw 10 day slope of TG_IGsep

draw IGwidth
draw IGwidth line at 0
draw 20 day slope of IGwidth

add column separator

/*days since investor group reverted or crossed above 0 */
set{IGX, days(IGwidth < 0, 200)}
add column IGX
IGX > 0

/*days since white space appeared
set{spaceX, days(TG_IGsep < 0, 200)}
add column spaceX
spacex > 0*/

/*days since trader group reverted
set{TGX, days(TGwidth < 0, 200)}
add column TGX
TGX > 0*/

/*A couple of bells and whistles for back testing*/
set{entry, close}
set{target, entry * 1.10}
set{ stop, entry * 0.95}
draw price line at entry
draw price line at target
draw price line at stop

/*trader group expansion per day since flip
set{TGwidthPerDay, TGwidth / TGX}
add column TGwidthPerDay

set{LowBall1, IGX + spacex}
set{LowBall, lowball1 + TGX}
add column LowBall
SORT ON COLUMN 18 ASCENDING
/***************/
20 day slope of IGwidth < -0.1
2 day slope of IGwidth crossed above 0
add column 20 day slope of IGwidth
sort on column 11 ascending
chart-time is 100 days
do not draw TGX
do not draw IGX
do not draw spacex
do not draw lowball
]



Mactheriverrat
3,131 posts
msg #138065
Ignore Mactheriverrat
modified
9/8/2017 7:24:51 PM

It popped up on a symlist I have of past runners.
I liked the price action from Thursday of up 7.60% then I switched to a weekly chart on which the weekly ema(5) made a cross to the up side. Should see more upside next week. Friday is always a give and take day as a lot of traders just don't want to be holding over the weekend.

It showed up on a Run Forest, Run , a Deadly Combo filter , a Show stocks where ema(13) is above ema(13) one day ago filter, a /* TRO MTC CHECKER */ filter - all with ADR(30) above 4.00

Then I watch the weekly filters and below code for a weekly eMA(5) cross.

/* DxD is number of consecutive days ema(13) above (+)/below(-) previous EMA(13) */
set{DDb,days( weekly ema(13) is above weekly EMA(13) 1 day ago,250)}
set{DDa,days( weekly ema(13) is below weekly EMA(13) 1 day ago,250)}
set{DxD, DDa - DDb} and add column DxD {D_x_D}
do not Draw DxD



Set{cnt5,count( weekly eMA(5) > weekly eMA(5) 1day ago,1)}
draw cnt5

Set{cnt5b,count( weekly eMA(5)< weekly EMA(5) 1day ago,1)}

draw cnt5b

Set{cnt1313,count( weekly eMA(13) > weekly eMA(13) 1day ago,1)}
draw cnt1313

Set{cnt1313b,count( weekly eMA(13)< weekly EMA(13) 1day ago,1)}

draw cnt1313b


pthomas215
1,251 posts
msg #138066
Ignore pthomas215
9/8/2017 7:33:03 PM

especially this weekend! ...9/11 anniversary, hurricane, north korea threat.

nice call on that one John...it was a great choice for a crap day overall.

Mactheriverrat
3,131 posts
msg #138068
Ignore Mactheriverrat
modified
9/8/2017 7:39:28 PM

Next week will be another start of a new candle on the weekly baring World War 3 we should see more upside- Will post another weekly chart early next week

zgnx made a weekly EMA(5) cross on Tuesday and it took off on the daily-


pthomas215
1,251 posts
msg #138069
Ignore pthomas215
9/8/2017 8:03:32 PM

oh no doubt. when you look at these charts it is clear...with a rounded belly, not even crossed yet on 2 day chart...BZUN hasnt even started yet really. but like JCP today, may require patience....

ron22
255 posts
msg #138070
Ignore ron22
9/8/2017 9:22:35 PM

Mac, thank you for the detail and logic in your 9/8 post. It helps me see where you are coming from and how to paper trade this filter.
PT, thank you for taking the time to locate this filter.
I have a lot of studying and paper trading to do; however, you both pointed me in the right direction. Thanks again.

mahkoh
1,065 posts
msg #138077
Ignore mahkoh
modified
9/9/2017 5:03:37 PM

If you like the BZUN chart you may also appreciate JKS.

Fetcher[
symlist(BZUN,JKS)
]



StockFetcher Forums · Stock Picks and Trading · BZUN WEEKLY buy signal<< 1 2 3 4 >>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.