Get Mystery Box with random crypto!

US Stock Trading Ideas

Logo of telegram channel stockideas_us — US Stock Trading Ideas U
Logo of telegram channel stockideas_us — US Stock Trading Ideas
Channel address: @stockideas_us
Categories: Economics
Language: English
Subscribers: 187
Description from channel

We try to find the next big things in the stock market. Feel free to share and discuss companies with over 1b market cap. Good luck.

Ratings & Reviews

2.67

3 reviews

Reviews can be left only by registered users. All reviews are moderated by admins.

5 stars

0

4 stars

0

3 stars

2

2 stars

1

1 stars

0


The latest Messages

2021-09-05 07:40:26 Fantastic earnings call by MongoDB https://www.earningsfly.com/posts/SDfE0gH6/mongodb-second-quarter-earnings-call-summary
283 views:) Lee, 04:40
Open / Comment
2021-09-05 03:21:44 A small writeup for Asana. https://www.earningsfly.com/posts/RHBaORW3/asana-q2-earnings-call
98 views:) Lee, 00:21
Open / Comment
2021-09-03 06:19:41 https://www.earningsfly.com/posts/7y16zWQN/crowdstrike-q2-earnings-call
278 views:) Lee, 03:19
Open / Comment
2021-08-26 07:36:04
This is how companies grow. this company is in a niche market that puts a balloon in your body and treats some disease. Can you see the signs that would make them continue to outperform in the future?
https://www.earningsfly.com/stocks/swav
462 views:) Lee, 04:36
Open / Comment
2021-08-21 21:18:52 Cloudflare thwarts 17.2M rps DDoS attack — the largest ever reported
https://blog.cloudflare.com/cloudflare-thwarts-17-2m-rps-ddos-attack-the-largest-ever-reported/
398 views:) Lee, edited  18:18
Open / Comment
2021-08-19 03:55:59
forward p/e around 1-2. maybe this is for real but also could be a value trap. do your own dd. $zim
477 views:) Lee, edited  00:55
Open / Comment
2021-08-18 06:06:52 https://www.barrons.com/articles/metaverse-stocks-51628882189
211 views:) Lee, 03:06
Open / Comment
2021-08-16 05:20:27 For those of you wondering if buy and hold is a better long term strategy or is selling at the top and buying back at lower price better. The answer is in this code.
params:
stock_move_up_times1 {integer} how many times stock went up in period 1.
stock_move_up_times2 {integer} how many times stock went up in period 2.
effective_tax_rate_percent {integer} how much tax you would be paying for the sale
position_bigger_percent {integer} if say you sell somewhere and is able to buy back at a x% lower price so you can increase your position by x%.

tl;dr: you should always buy and hold because your initial position gets much bigger over time.


const initial_value = 100
const stock_move_up_times1 = 2
const stock_move_up_times2 = 3
const effective_tax_rate_percent = 22
const position_bigger_percent = 11

// buy and hold
const value1 = initial_value * (stock_move_up_times1 * stock_move_up_times2 - (stock_move_up_times1 * stock_move_up_times2 - 1) * effective_tax_rate_percent / 100)
const value2 = initial_value * stock_move_up_times1 * stock_move_up_times2
const tax2 = initial_value * (stock_move_up_times1 * stock_move_up_times2 - 1) * effective_tax_rate_percent / 100

// sell once in the middle
const value3 = initial_value * (stock_move_up_times1 - (stock_move_up_times1 - 1) * effective_tax_rate_percent / 100) * (1 + position_bigger_percent / 100) * (stock_move_up_times2 - (stock_move_up_times2 - 1) * effective_tax_rate_percent / 100)
const value4 = initial_value * (stock_move_up_times1 - (stock_move_up_times1 - 1) * effective_tax_rate_percent / 100) * (1 + position_bigger_percent / 100) * stock_move_up_times2
const tax4 = initial_value * (1 + position_bigger_percent / 100) * (stock_move_up_times1 - (stock_move_up_times1 - 1) * effective_tax_rate_percent / 100) * ((stock_move_up_times2 - 1) * effective_tax_rate_percent / 100)

console.log({value2, tax2, net: value2 - tax2})
console.log({value4, tax4, net: value4 - tax4})
console.log(value1 > value3 ? 'buy and hold is better' : 'trade is better')
355 views:) Lee, edited  02:20
Open / Comment