Work on increasing your income

—most people don’t get rich through their investment decisions, they get rich through their income. They get rich through their work. Even those who do get rich from their investments, typically, had to work to get the money they used to invest in the first place.
Billionaires are no exception to this rule either. When starting Microsoft, Bill Gates said that he never took a day off in his twenties and Elon Musk is known for sleeping in his factories/offices

Source: https://ofdollarsanddata.com/its-time-to-work/

Notes from Calibrating Memo of Howard Marks

“What I would to is figure out how much you’ll want to have invested by the time the bottom is reached”
 
“All great investments begin in discomfort. One thing we know is that there’s great discomfort today”
 
“Oaktree explicitly rejects the notion of waiting for the bottom; we buy when we can access value cheap.”
 
“The investor’s goal should be to make a large number of good buys, not just a few perfect ones.”
 

Yahoo finance stock data in Google Spreadsheet

Made my first script in Google Spreadsheet


function YahooFinance(ticker) {
var ticker = ticker || "GOOG";
ticker = encodeURI(ticker);
var response = UrlFetchApp.fetch("https://query2.finance.yahoo.com/v7/finance/options/" + ticker);
var chain = JSON.parse(response.getContentText());
return parseFloat(chain.optionChain.result[0].quote.regularMarketPrice);
}

view raw

YahooFinance.js

hosted with ❤ by GitHub

 

In Spreadshhet just click Tools > Script editor to add the script

After saving the script you can call it in the spreadsheet cell

=IF(A2 <> "", YahooFinance(A2), 0)