StockFetcher Forums · Stock Picks and Trading · A Newbie's Journey<< 1 ... 37 38 39 40 41 ... 48 >>Post Follow-up
sandjco
648 posts
msg #147659
Ignore sandjco
5/2/2019 11:57:49 AM

Closed all positions. Dipped into QQQ Jun 176P $1.25

sandjco
648 posts
msg #147676
Ignore sandjco
5/3/2019 12:29:58 PM



Too early to the sell in May go away party(if there is one)! Useless to sell the Puts; may just let it expire worthless.

Reminding myself...trend is your friend....



sandjco
648 posts
msg #147707
Ignore sandjco
5/7/2019 4:04:29 PM

Got stop out 75% of position at $2.05 for 64%



The market seems to be rolling over (with Trumps' help). Signs of more to come?

Cheese
1,374 posts
msg #147709
Ignore Cheese
5/7/2019 5:25:11 PM

Congrats, sandjco !
It seems like the shorter-term trend is your friend, and you did follow it to profits,
I don't know options at all, so I'm guessing that "hvrank" is about historical volatility ?
and "rank" is some sort of a count?

sandjco
648 posts
msg #147712
Ignore sandjco
modified
5/8/2019 12:04:33 AM

Thanks Cheese! I think the blind squirrel found a nut there! Still trying to figure who is my friend...

Yes, HV is the volatility (haven't really completely figured out is effective usage)

set{HVHi, Historical Volatility(34,1) 233 day high}
set{HVLo, Historical Volatility(34,1) 233 day low}
set{HVrange, HVHi - HVLo}
set{HVdiff, Historical Volatility(34,1) - HVLo}
set{HVRank1, HVdiff / HVrange}
set{HVRank, HVRank1 * 100}
add column HVRank
draw HVRank line at 55

and yes, rank is just my trying to count the dips...which as you can see there isn't a strong correlation so it is a work in progress.

Thank you (and the other "regulars" by the way for all your ideas that you guys share.

I've been here for more than a year and it is amazing that I still have so much to learn (and still a crappy coder!).

Cheese
1,374 posts
msg #147716
Ignore Cheese
modified
5/8/2019 9:54:31 AM

sandjco, thanks for the explanations.
You may want to take a look at this Guppy Oscillator by chetron
https://www.stockfetcher.com/forums/Filter-Exchange/MMA-Indicator/34384/10
Happy trading.

Fetcher[
/* https://www.stockfetcher.com/forums/Filter-Exchange/MMA-Indicator/34384/10 */
/* Guppy Oscillator by chetron basd on ideas by Daryl Guppy and Leon Wilson */
/* TACHIKAWA */
/* guppy oscillator */
/* adulterated by chetron, on the cheap */
set{var1,count(ema(15) above ema(30),1)}
set{var2,count(ema(30) above ema(60),1)}
set{vbuy,var1 * var2}


set{var11,count(ema(15) below ema(30),1)}
set{var12,count(ema(30) below ema(60),1)}
set{vshort,var11 * var12}


set{vplays,vshort + vbuy}


add column vbuy
add column vshort

draw ema(3)
draw ema(15)
draw ema(30)
draw ema(60)

draw vshort on plot vbuy


vplays above .5
do not draw vplays




set{var20,ema(3) + ema(5)}
set{var21,var20 + ema(8)}
set{var22,var21 + ema(10)}
set{var23,var22 + ema(12)}
set{vdt,var23 + ema(15)}
set{var30,ema(30) + ema(35)}
set{var31,var30 + ema(40)}
set{var32,var31 + ema(45)}
set{var33,var32 + ema(50)}
set{vinv,var33 + ema(60)}
set{gmmo,vdt - vinv}
set{mmo,gmmo * 10}
set{mmo13,cema(mmo,13)}

draw mmo line at 0
draw mmo13 on plot mmo
draw ppo(9,45) line at 0

mmo crossed above mmo13
price above .1
volume above 1000000

chart-time 6 month
]



Cheese
1,374 posts
msg #147718
Ignore Cheese
5/8/2019 10:21:33 AM

sandjco, signals from this version of chetron's guppy oscillator may be more aligned with shorter-term decision support. Happy trading.

Fetcher[
/* https://www.stockfetcher.com/forums/Filter-Exchange/MMA-Indicator/34384/10 */
/* Guppy Oscillator by chetron basd on ideas by Daryl Guppy and Leon Wilson */
/* TACHIKAWA */
/* guppy oscillator */
/* adulterated by chetron, EVEN cheapER */

DRAW RSI(2)

set{var20,ema(3) + ema(5)}
set{var21,var20 + ema(8)}
set{var22,var21 + ema(10)}
set{var23,var22 + ema(12)}
set{vdt,var23 + ema(15)}
set{var30,ema(30) + ema(35)}
set{var31,var30 + ema(40)}
set{var32,var31 + ema(45)}
set{var33,var32 + ema(50)}
set{vinv,var33 + ema(60)}
set{gmmo,vdt - vinv}
set{mmo,gmmo * 10}
set{mmo13,cema(mmo,13)}

draw mmo line at 0
draw mmo13 on plot mmo

price above .1
volume above 1000000

chart-time 6 month

]





sandjco
648 posts
msg #147722
Ignore sandjco
5/8/2019 12:50:53 PM

Thanks Cheese!
Here is my iteration; as im visually challenged (jk), I am constantly trying to find ways to make the info I have shown in simple terms to reduce the stress on my limbic brain! Still trying to simplify to find what works and what does not work for my own style and reduce "gut" type decision making when entering or exiting trades. I exited the last of my QQQ puts arbirarily instead of letting a signal (maybe EMA cross) based on "feel".

The same "feel" told me to go long in Dec but waited for the indicators to support and missed good entry points.

But I am doing my best to think that it was a bet (my choice) that I preferred not to take and the next bet(s) should be independent of the previous bet. From the book "Thinking in Bets" (I think shared by four).

I've been trying to sort which indicators (kinda like trying to date multiple babes) that works for ME (guess that is where the "art" of trading comes in - same indicator but seen different ways by different traders) and then simplifying the progressions I go thru in taking a trade.

Ultimately, I would love to be able to just use price and volume action to enter/exit.

Again, thank you and eveyone who has been so kind to help me with my journey.

Fetcher[SP500
set{var1,count(ema(15) above ema(30),1)}
set{var2,count(ema(30) above ema(60),1)}
set{vbuy,var1 * var2}

set{var11,count(ema(15) below ema(30),1)}
set{var12,count(ema(30) below ema(60),1)}
set{vshort,var11 * var12}

set{vplays,vshort + vbuy}

add column vbuy
add column vshort

draw ema(3)
draw ema(15)
draw low new 21 day low

/*draw vshort on plot vbuy*/

vplays above .5
do not draw vplays

set{var20,ema(3) + ema(5)}
set{var21,var20 + ema(8)}
set{var22,var21 + ema(10)}
set{var23,var22 + ema(12)}
set{vdt,var23 + ema(15)}
set{var30,ema(30) + ema(35)}
set{var31,var30 + ema(40)}
set{var32,var31 + ema(45)}
set{var33,var32 + ema(50)}
set{vinv,var33 + ema(60)}
set{gmmo,vdt - vinv}
set{mmo,gmmo * 10}
set{mmo13,cema(mmo,13)}

draw mmo line at 0
draw mmo13 on plot mmo
/*draw ppo(9,45) line at 0*/

mmo crossed above mmo13

set{PBuy, count(PPO(9,45)above 0,1)}
set{PSell, count(PPO(9,45)below 0,1)}
draw PBuy
draw PSell
]



Cheese
1,374 posts
msg #147724
Ignore Cheese
5/8/2019 1:40:25 PM

Thanks, sandjco. Nice filter.
I am not new to sF but I am still a newbie at trading so your thread resonates with me.
I've got good info like the 2/3/5 progression from your thread, and I can relate to
the challenge of finding profitable trends.
Good trading to you and everyone.


sandjco
648 posts
msg #147743
Ignore sandjco
5/9/2019 8:40:44 AM

where to next?







or is it letting expectations lead to belief?

StockFetcher Forums · Stock Picks and Trading · A Newbie's Journey<< 1 ... 37 38 39 40 41 ... 48 >>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.