StockFetcher Forums · Stock Picks and Trading · Tuesday, Apr 9<< >>Post Follow-up
graftonian
1,089 posts
msg #147255
Ignore graftonian
4/9/2019 9:14:08 AM

Keeping an eye on PEP, PG, and DIS this morning

four
5,087 posts
msg #147256
Ignore four
4/9/2019 9:27:04 AM

what is entry criteria
what is exit criteria

graftonian
1,089 posts
msg #147261
Ignore graftonian
modified
4/9/2019 12:25:08 PM

Four,
Nothing is cast in stone at this point. I am experimenting with crosses of the 50 period Hull MA and some form of momentum. I'll post 2 filters if promise not to laugh, they're not very pretty.
I am placing buying a ATM short term call using the Hull 50 MA on the 5 minute chart (opens above or crosses above), and closing on a cross below or just plain greed. yesterday I bought the VTL 1call @ .10
and sold @ .15. It promptly went to .25, and settled in at .20!!!!

Fetcher[
/*Rocket Power*/
chart-time is 1 year
optionable
Average Volume(30) > 5000000

/*HULL MA50 */
set{slow1, cwma(close, 25)}
set{slow2, 2 * slow1}
set{slow3, cwma(close, 50)}
set{valslow, slow2 - slow3}
set{H50, cwma(valslow, 7)}
draw H50 on plot price
/**howgozit pct close is abv/below hull50 **/
set{hgz1, close - h50}
set{hgz2, hgz1 / h50}
set{howgozit, hgz2 * 100}
set{x1, howgozit}
set{x2, howgozit 2 days ago}
/* quantify how fast price is moving */
set{pricemovement, x1 - x2}
set{momocheck, count(pricemovement above 3, 1)}
/***** Let the trend be your friend *********/
/* no triggers while slope of Hull50 is negative */
slope of H50 > 0
set{h50slope, count(slope of H50 > 0, 1)}
/* The trigger, when price crosses above Hull50 */
set{H50cross, count(close crossed above H50, 1)}
/* draw the occurance of the 3 criteria */
draw momocheck and draw H50slope and draw H50cross
/* multiply the 3 criteria together for a sort number */
set{sortnum1, H50cross * H50slope}
set{sortnum2, sortnum1 * momocheck}
set{sortnum, sortnum2 * pricemovement}
add column separator
add column H50cross and add column H50slope
add column sortnum > 0
sort on column 8 descending
do not draw 2 day slope of H50
]



Fetcher[
optionable
Average Volume(30) > 5000000

/*HULL MA50 */
set{slow1, cwma(close, 25)}
set{slow2, 2 * slow1}
set{slow3, cwma(close, 50)}
set{valslow, slow2 - slow3}
set{H50, cwma(valslow, 7)}
draw H50 on plot price
/**/
set{trigger1, count(close crossed above H50, 1)}
set{trigger2, count(slope of H50 > 0.1, 1)}
set{trigger3, count(StochRSI(5,5) > .8, 1)}
set{trigger4, trigger1 * trigger2}
set{trigger, trigger4 * trigger3}
trigger equals 1
draw trigger

draw StochRSI(5,5)
draw StochRSI(5,5) line at .8
add column 2 day slope of H50
sort on column 5 descending
]



Cheese
1,374 posts
msg #147263
Ignore Cheese
4/9/2019 2:11:03 PM

Fetcher[

/* original complete filter code by graftonian modified 4/9/2019 12:25:08 PM */
/* https://stockfetcher.com/forums/Stock-Picks/Tuesday-Apr-9/147255 */

/* partial display for my basic level subscription */

SYMLIST(PEP, PG, DIS)

/*Rocket Power*/
chart-time is 1 year
optionable
Average Volume(30) > 5,000,000

/*HULL MA50 */
set{slow1, cwma(close, 25)}
set{slow2, 2 * slow1}
set{slow3, cwma(close, 50)}
set{valslow, slow2 - slow3}
set{H50, cwma(valslow, 7)}
draw H50 on plot price
/**howgozit pct close is abv/below hull50 **/
set{hgz1, close - h50}
set{hgz2, hgz1 / h50}
set{howgozit, hgz2 * 100}
set{x1, howgozit}
set{x2, howgozit 2 days ago}
/* quantify how fast price is moving */
set{pricemovement, x1 - x2}
/* set{momocheck, count(pricemovement above 3, 1)} */
/***** Let the trend be your friend *********/
/* no triggers while slope of Hull50 is negative */
slope of H50 > 0
set{h50slope, count(slope of H50 > 0, 1)}
/* The trigger, when price crosses above Hull50 */
set{H50cross, count(close crossed above H50, 1)}
/* draw the occurance of the 3 criteria */
/*
draw momocheck
*/
and draw H50slope
and draw H50cross

/* multiply the 3 criteria together for a sort number */
set{sortnum1, H50cross * H50slope}
set{sortnum2, sortnum1 * momocheck}
set{sortnum, sortnum2 * pricemovement}
add column separator
add column H50cross
and add column H50slope
/* add column sortnum > 0 */
sort on column 8 descending
do not draw 2 day slope of H50
]



Cheese
1,374 posts
msg #147264
Ignore Cheese
4/9/2019 2:14:17 PM

Fetcher[
/* original complete filter code by graftonian modified 4/9/2019 12:25:08 PM */
/* https://stockfetcher.com/forums/Stock-Picks/Tuesday-Apr-9/147255 */

/* partial display so I can follow the thoughts behind the picks */

SYMLIST(PEP, PG, DIS)

optionable
Average Volume(30) > 5,000,000

/*HULL MA50 */
set{slow1, cwma(close, 25)}
set{slow2, 2 * slow1}
set{slow3, cwma(close, 50)}
set{valslow, slow2 - slow3}
set{H50, cwma(valslow, 7)}
draw H50 on plot price
/**/
set{trigger1, count(close crossed above H50, 1)}
set{trigger2, count(slope of H50 > 0.1, 1)}
set{trigger3, count(StochRSI(5,5) > .8, 1)}
set{trigger4, trigger1 * trigger2}
set{trigger, trigger4 * trigger3}
/* trigger equals 1 */
draw trigger

draw StochRSI(5,5)
draw StochRSI(5,5) line at .8
add column 2 day slope of H50
sort on column 5 descending
]



graftonian
1,089 posts
msg #147267
Ignore graftonian
4/9/2019 3:56:11 PM

Cheese,
I am looking for the perfect momentum indicator. The stoch was Snappyfrogs idea. The code I tried in rocketpower got so convoluted I had to back away for a while.


graftonian
1,089 posts
msg #147268
Ignore graftonian
4/9/2019 3:59:45 PM

Today, took a hit on the short term long calls. Opened a diagonal call spread in SBUX and an IC in LYFT

Cheese
1,374 posts
msg #147269
Ignore Cheese
4/9/2019 5:36:23 PM

Graf,

You and snappyfrog have been generous with sharing your great ideas,
Thank you, both.

snappy's Stochastic %K(40,40,4) also works well with your ideas.

Fetcher[
/* original complete filter code by graftonian modified 4/9/2019 12:25:08 PM */
/* https://stockfetcher.com/forums/Stock-Picks/Tuesday-Apr-9/147255 */

/* partial display so I can follow the thoughts behind the picks */

SYMLIST(PEP, PG, DIS)

optionable
Average Volume(30) > 5,000,000

/*HULL MA50 */
set{slow1, cwma(close, 25)}
set{slow2, 2 * slow1}
set{slow3, cwma(close, 50)}
set{valslow, slow2 - slow3}
set{H50, cwma(valslow, 7)}
draw H50 on plot price
/**/
set{trigger1, count(close crossed above H50, 1)}
set{trigger2, count(slope of H50 > 0.1, 1)}
set{trigger3, count(StochRSI(5,5) > .8, 1)}
set{trigger4, trigger1 * trigger2}
set{trigger, trigger4 * trigger3}
/* trigger equals 1 */
draw trigger


/* ************************* snappyfrog's Stoch idea, per graftonian */
draw StochRSI(5,5)
draw StochRSI(5,5) line at .8
/* ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ */

add column 2 day slope of H50
sort on column 5 descending


/* ************************* another snappyfrog's Stoch idea */
draw Stochastic %K(40,40,4)
draw ema(8)
draw ema(13)
/* ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ */
]



StockFetcher Forums · Stock Picks and Trading · Tuesday, Apr 9<< >>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.