Investing
- Interested in investing in AKREX - No longer available in my Platform.
Hi all,
Apologies in advance if this is not the best community for posting questions about personal investing. If you know a better community for it, please let me know!
I have an account with ETRADE and made a small investment in AKREX some time ago. For reasons unknown to me, it is no longer possible to buy AKREX through ETRADE, and I want to continue investing in it.
I appreciate their management team and would like to stick with them. What options do you suggest I explore? Should I find another platform that offers buy/sell options for AKREX, or should I consider switching to a different mutual fund?
Thanks!
- What is your prediction for the S and P 500 in 2024
Feels like I hear so much doom and gloom but also some positives sprinkled in. Wanted to see what the community thought.
- NYSE suspends trading of WeWork warrants, to start delisting themwww.reuters.com NYSE suspends trading of WeWork warrants, to start delisting them
The New York Stock Exchange (NYSE) has suspended trading in WeWork's warrants due to "abnormally low" trading price levels and will initiate proceedings to delist them, the flexible workspace provider said on Tuesday.
- UK microchip giant Arm files to sell shares in USwww.bbc.com UK microchip giant Arm files to sell shares in US
Arm files papers to list in New York after opting against London, in a blow to the UK.
- Nvidia earnings will be major test for AI demand, market rallywww.reuters.com Nvidia earnings will be major test for AI demand, market rally
Nvidia investors expect the chip designer to forecast quarterly revenue above estimates when it reports results on Wednesday. Their only question is, by how much?
- Chocolate makers' prospects sour as cocoa prices spikewww.reuters.com Chocolate makers' prospects sour as cocoa prices spike
Chocolate makers like Hershey and Mondelez face tougher trading conditions over the next year as they attempt to pass on soaring cocoa costs to cash-strapped consumers who are cutting back.
- Wall St Week Ahead Less cash, fewer bears could leave U.S. stocks vulnerablewww.reuters.com Wall St Week Ahead Less cash, fewer bears could leave U.S. stocks vulnerable
Several indicators that pointed to upside for U.S. stocks this year have shifted to a more neutral outlook, potentially leaving equities vulnerable to turbulence from a recent surge in bond yields and worries over China’s economy, investors said.
- 'Bidenomics' delivered a once-in-generation investment. It shows the pros and cons of policymakingapnews.com 'Bidenomics' delivered a once-in-generation investment. It shows the pros and cons of policymaking
There are so many dots on the maps they blur into blobs – each one reflecting trillions of public and private dollars flowing in the U.S. in a nationwide investment.
- Amazon reports blowout profit, beats on sales and issues optimistic guidancewww.cnbc.com Amazon reports blowout profit, beats on sales and issues optimistic guidance
Amazon posted its strongest earnings beat since the end of 2020, and gave upbeat guidance for the third quarter.
- Stocks sink after historic US credit rating downgradewww.cnn.com Stocks sink after historic US credit rating downgrade
Fitch Ratings downgraded its US debt rating on Tuesday from the highest AAA rating to AA+, citing "a steady deterioration in standards of governance."
- The extreme bubble in stocks 'will end in tears' with the S&P 500 plunging 64%, a long-time bear who called the 2000, 2008 crashes has warned.finance.yahoo.com The extreme bubble in stocks 'will end in tears' with the S&P 500 plunging 64%, a long-time bear who called the 2000, 2008 crashes has warned. Here are his 6 best quotes.
The asset-bubble expert and president of Hussman Investment Trust forecasts a frightening collapse in stocks, saying the current rally will "end in tears."
Do you think that the AI bubble will pop? Is entering the stock market dangerous right now?
- I don't know how popular dividend investing is here but progress is real.
As someone who had to deal with income uncertainty in the past, upto and including homelessness, the peace of mind of watching month expenses slowly get enveloped is incredibly real. This is all apart of our FIRE plan to be able to leave a basic income to our family long after we pass. Yes, I'm aware straight growth investing would be higher returns but it's the price of not having as much anxiety of what ifs.
- Google Sheet with live option tracking
cross-posted from: https://lemmy.world/post/704147
> cross-posted from: https://lemmy.world/post/704145 > > > Yes, live. > > > > ​ > > > > I've looked for this for a while and didn't find much. Being a stubborn ass (The Boondocks voice) I kept looking until I got it down. There are trackers for the options you've sold, call and put screeners, calculators to avoid CSP risk, holdings, and a singular location for cost basis so you don't do something dumb like Idk sell SPCE CCs at $20 when your cost basis is $22 but you thought it was $18. I definitely didn't do that. > > > > ​ > > > > Google Sheet > > > > You'll need to add a custom script: > > > > 1. Tools > > 2. Script Editor > > 3. Add file > > 4. Name it SAMPLE > > 5. Paste this into it: > > > > The code is thanks to tanaike > > > > Code source: https://stackoverflow.com/questions/64437503/importxml-not-producing-correct-values > > > > function SAMPLE(url) { > > const res = UrlFetchApp.fetch(url, {muteHttpExceptions: true}); > > const tables = [...res.getContentText().matchAll(/(<table[\w\s\S]+?<\/table>)/g)]; > > if (tables.length < 2) return "No tables. Please confirm URL again."; > > const values = tables.reduce((ar, [,table]) => { > > if (table) { > > const root = XmlService.parse(table).getRootElement(); > > const temp = root.getChild("tbody", root.getNamespace()).getChildren().map(e => e.getChildren().map(f => isNaN(f.getValue()) ? f.getValue() : Number(f.getValue()))); > > ar = ar.concat(temp); > > } > > return ar; > > }, []); > > return values[0].map((_, i) => values.map(r => r[i])); > > } > > > > The result: It returns a table, so you need to use INDEX with it in order to point to a specific row/column. The method itself is SAMPLE, which takes a URL and returns a table. So you'll need to use Concatenate in order to make up the URL for a Yahoo link. > > > > Google Sheet function: > > > > =INDEX(SAMPLE(CONCATENATE("https://finance.yahoo.com/quote/", $A7, RIGHT(YEAR($E7), 2), TEXT(MONTH($E7), "00"), TEXT(DAY($E7),"00"), IF(B7 = "PUT", "P", "C"), SUBSTITUTE(TEXT($M7,"00000.000"), ".", ""), "?p=", $A7, RIGHT(YEAR($E7), 2), TEXT(MONTH($E7), "00"), TEXT(DAY($E7),"00"), "C", SUBSTITUTE(TEXT($M7,"00000.000"), ".", ""))), 2, 3) > > > > ​ > > > > Known issues: > > > > 1. Loading from mobile is not reliable. You may have to erase the cell and undo, or reload, or get on a laptop/desktop. > > 2. Sorting recalculates the numbers and sometimes it stops working. I just don't sort anymore, but it'll eventually fix itself. > > 3. It doesn't calculate if you change values. Just erase the cell and undo, it'll do it correctly. > > 4. Not all options are available on Yahoo, especially if you're looking 30+ days. > > > > ​ > > > > Full page, two words:
Fuck yougood luck! > > > > ​ > > > > P.S. Yahoo dev: If you're seeing this, please let me be. This was already hard enough to put together. Plz. - FOMC Press Conference June 14, 2023www.youtube.com FOMC Press Conference June 14, 2023
Captions: https://www.streamtext.net/player?event=CFI-FRB&chat=falseThe Federal Reserve System is the central bank of the United States. It performs five gen...
Transcript: https://www.federalreserve.gov/mediacenter/files/FOMCpresconf20230614.pdf
Link goes to the start of Powell's statement. A few minutes later, the press Q-and-A session begins, and goes for about 50 minutes.
TL;DR: Pause on Federal Funds Rate, but Powell expects additional hikes this year.
- Fed holds FFR at 5.00% June 14th
The Federal Reserve holds the target Federal Funds Rate at 5.00% or so, the first rate-pause in nearly a year.
For those unaware, the Fed is the central bank of the USA. Their goal is to minimize inflation and maximize employment, largely through their control of the FFR.
Money market funds, such as Vanguards VMFXX or Schwab's SWVXX, closely track the FFR minus a few fractions-of-a-percent that they take for fees. So all investors have the ability to access this incredibly low-risk investment.
As this "low risk" investment makes more yield, the general theory is that everyone else in the economy takes slightly less-and-less risk. After all, if you can make money off of low-risk, why bother chasing the high-risk portions of the economy?
That leads to either riskier-portions being more expensive (ie: if a risky-company wants to borrow money, they have to borrow it at higher %). Or lose value (if a risky company wasn't planning to make a profit for another 10 years, those 10-years of no-profits just got far more costly, and therefore the company loses theoretical value).
- Welcome to Investing
Hello! Welcome!
This community is new. I added it because that's what I read mainly on Reddit. I figured I'd start this and hope it gets populated over time. :)