diff --git "a/news_exp.ipynb" "b/news_exp.ipynb"
--- "a/news_exp.ipynb"
+++ "b/news_exp.ipynb"
@@ -0,0 +1,15489 @@
+{
+ "cells": [
+ {
+ "cell_type": "code",
+ "execution_count": 14,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "from dotenv import load_dotenv\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 17,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Fetched 50 articles from 2022-04-01 to 2022-05-21\n",
+ "Fetched 50 articles from 2022-05-22 to 2022-07-11\n",
+ "Fetched 50 articles from 2022-07-12 to 2022-08-31\n",
+ "Fetched 50 articles from 2022-09-01 to 2022-10-21\n",
+ "Fetched 50 articles from 2022-10-22 to 2022-12-11\n",
+ "Rate limit reached. Waiting to retry...\n",
+ "Fetched 50 articles from 2022-12-12 to 2023-01-31\n",
+ "Fetched 50 articles from 2023-02-01 to 2023-03-23\n",
+ "Fetched 50 articles from 2023-03-24 to 2023-05-13\n",
+ "Fetched 50 articles from 2023-05-14 to 2023-07-03\n",
+ "Fetched 50 articles from 2023-07-04 to 2023-08-23\n",
+ "Rate limit reached. Waiting to retry...\n",
+ "Fetched 50 articles from 2023-08-24 to 2023-10-13\n",
+ "Fetched 50 articles from 2023-10-14 to 2023-12-03\n",
+ "Fetched 50 articles from 2023-12-04 to 2024-01-23\n",
+ "Fetched 50 articles from 2024-01-24 to 2024-03-14\n",
+ "Fetched 50 articles from 2024-03-15 to 2024-04-01\n",
+ "Total articles fetched: 750\n"
+ ]
+ }
+ ],
+ "source": [
+ "from datetime import datetime, timedelta\n",
+ "import requests\n",
+ "import os\n",
+ "import time\n",
+ "\n",
+ "def fetch_news(api_key, ticker, start_date, end_date):\n",
+ " base_url = os.environ.get(\"endpointnewsp\")\n",
+ " headers = {\"Authorization\": f\"Bearer {api_key}\"}\n",
+ " all_news = []\n",
+ " \n",
+ " current_date = start_date\n",
+ "\n",
+ " while current_date <= end_date:\n",
+ " batch_end_date = current_date + timedelta(days=50)\n",
+ " if batch_end_date > end_date:\n",
+ " batch_end_date = end_date\n",
+ "\n",
+ " params = {\n",
+ " \"ticker\": ticker,\n",
+ " \"published_utc.gte\": current_date.strftime('%Y-%m-%d'),\n",
+ " \"published_utc.lte\": batch_end_date.strftime('%Y-%m-%d'),\n",
+ " \"limit\": 50,\n",
+ " \"sort\": \"published_utc\"\n",
+ " }\n",
+ "\n",
+ " try:\n",
+ " response = requests.get(base_url, headers=headers, params=params)\n",
+ " if response.status_code == 200:\n",
+ " data = response.json()\n",
+ " articles = data.get('results', [])\n",
+ " all_news.extend(articles)\n",
+ " print(f\"Fetched {len(articles)} articles from {current_date.strftime('%Y-%m-%d')} to {batch_end_date.strftime('%Y-%m-%d')}\")\n",
+ " current_date = batch_end_date + timedelta(days=1)\n",
+ " elif response.status_code == 429:\n",
+ " print(\"Rate limit reached. Waiting to retry...\")\n",
+ " time.sleep(60) # Wait for 60 seconds or as recommended by the API\n",
+ " continue # Retry the current request\n",
+ " else:\n",
+ " print(f\"Failed to fetch data: {response.status_code}, {response.text}\")\n",
+ " break\n",
+ " except Exception as e:\n",
+ " print(f\"An error occurred: {e}\")\n",
+ " break\n",
+ "\n",
+ " return all_news\n",
+ "\n",
+ "# Example usage\n",
+ "api_key = os.environ.get('newsp_api')\n",
+ "ticker = 'TSLA'\n",
+ "start_date = datetime(2022, 4, 1) # Adjust this to your last known good start date\n",
+ "end_date = datetime(2024, 4, 1)\n",
+ "news_articles = fetch_news(api_key, ticker, start_date, end_date)\n",
+ "print(f\"Total articles fetched: {len(news_articles)}\")\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 24,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "[{'id': 'rHYPs-UNybcfTGof0g3bkqHkaA4KA5z1UbSPJ7gmaaQ',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Elon Musk Says Twitter Refusing To Cough Up Spam Numbers: They're Being 'Very Suspicious'\",\n",
+ " 'author': 'Bibhu Pattnaik',\n",
+ " 'published_utc': '2022-05-21T19:39:28Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/22/05/27337474/elon-musk-and-his-tryst-with-the-twitter-spam-the-saga-goes-on',\n",
+ " 'tickers': ['TSLA', 'TWTR'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/27337474',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/05/21/musk_twitter_bots.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Tesla Inc (NASDAQ: TSLA) CEO Elon Musk seems to be tacitly delaying the process of moving forward\\xa0with\\xa0his $44 billion offer for Twitter Inc (NYSE: TWTR).\\xa0\\nHe is now focusing his attention on\\xa0digging out how the social media giant handles so-called automated bots.\\xa0\\nDuring a recent interview, Musk said that fake users make up at least 20% of all Twitter accounts, possibly as high as 90%. \\xa0\\xa0\\nHowever, Twitter CEO Parag Agrawal responded that spam accounts make up fewer than 5% of total users.\\xa0\\nOne of Musk’s followers said that Twitter has made it much more difficult\\xa0to report spam in a recent Twitter interaction.\\nTwitter has made it way harder to report spam. It ...',\n",
+ " 'keywords': ['News', 'Top Stories', 'Tech']},\n",
+ " {'id': 'eYUSHsraFoKd8y4OiDtesI8pSbne2M4XDzjq7vmVRfw',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Why Twitter Stock Fell This Week',\n",
+ " 'author': 'newsfeedback@fool.com (Daniel Sparks)',\n",
+ " 'published_utc': '2022-05-21T12:16:04Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2022/05/21/why-twitter-stock-fell-this-week/',\n",
+ " 'tickers': ['TWTR', 'TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/681359/twitter-stock-down-this-week.jpg',\n",
+ " 'description': \"Is the company's $44 billion deal at risk of not closing?\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'LMfdls7oU_GPgoSbFgq2xvW2bj0QwgWWD8SwHVAMEL4',\n",
+ " 'publisher': {'name': 'Seeking Alpha',\n",
+ " 'homepage_url': 'https://seekingalpha.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/seekingalpha.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/seekingalpha.ico'},\n",
+ " 'title': 'S&P 500 Earnings Update: Earnings Yield Above 6% For First Time Since March, 2020',\n",
+ " 'author': 'Brian Gilmartin, CFA',\n",
+ " 'published_utc': '2022-05-21T04:00:00Z',\n",
+ " 'article_url': 'https://seekingalpha.com/article/4513558-sp500-earnings-update-earnings-yield-above-6-percent-first-time-since-march-2020',\n",
+ " 'tickers': ['WMT',\n",
+ " 'TSLA',\n",
+ " 'TGT',\n",
+ " 'BAPR',\n",
+ " 'BAUG',\n",
+ " 'BJUL',\n",
+ " 'BJUN',\n",
+ " 'BMAR',\n",
+ " 'BMAY',\n",
+ " 'BOCT',\n",
+ " 'BUFF',\n",
+ " 'CATH',\n",
+ " 'EFIV',\n",
+ " 'EPS',\n",
+ " 'FTA',\n",
+ " 'HIBL',\n",
+ " 'HIBS',\n",
+ " 'IVE',\n",
+ " 'IVV',\n",
+ " 'IVW',\n",
+ " 'KNG',\n",
+ " 'NOBL',\n",
+ " 'NVQ',\n",
+ " 'PAPR',\n",
+ " 'PAUG',\n",
+ " 'PBP',\n",
+ " 'PJAN',\n",
+ " 'PJUN',\n",
+ " 'PUTW',\n",
+ " 'QDIV',\n",
+ " 'QVML',\n",
+ " 'RPG',\n",
+ " 'RPV',\n",
+ " 'RSP',\n",
+ " 'RWL',\n",
+ " 'RYT',\n",
+ " 'SDS',\n",
+ " 'SH',\n",
+ " 'SNPE',\n",
+ " 'SPDN',\n",
+ " 'SPDV',\n",
+ " 'SPGP',\n",
+ " 'SPHB',\n",
+ " 'SPHD',\n",
+ " 'SPHQ',\n",
+ " 'SPLG',\n",
+ " 'SPLV',\n",
+ " 'SPMO',\n",
+ " 'SPMV',\n",
+ " 'SPUS',\n",
+ " 'SPUU',\n",
+ " 'SPVM',\n",
+ " 'SPVU',\n",
+ " 'SPXE',\n",
+ " 'SPXL',\n",
+ " 'SPXN',\n",
+ " 'SPXS',\n",
+ " 'SPXT',\n",
+ " 'SPXU',\n",
+ " 'SPXV',\n",
+ " 'SPY',\n",
+ " 'SPYD',\n",
+ " 'SPYG',\n",
+ " 'SPYV',\n",
+ " 'SPYX',\n",
+ " 'SSO',\n",
+ " 'SSPY',\n",
+ " 'UAUG',\n",
+ " 'UJAN',\n",
+ " 'UMAR',\n",
+ " 'UMAY',\n",
+ " 'UOCT',\n",
+ " 'UPRO',\n",
+ " 'USMC',\n",
+ " 'VOO',\n",
+ " 'VOOG',\n",
+ " 'VOOV',\n",
+ " 'VXX',\n",
+ " 'VXZ',\n",
+ " 'XLG',\n",
+ " 'XRLV',\n",
+ " 'XVV',\n",
+ " 'XYLD',\n",
+ " 'XYLG'],\n",
+ " 'amp_url': 'https://seekingalpha.com/amp/article/4513558-sp500-earnings-update-earnings-yield-above-6-percent-first-time-since-march-2020',\n",
+ " 'image_url': 'https://static.seekingalpha.com/cdn/s3/uploads/getty_images/1323094570/image_1323094570.jpg?io=getty-c-w750',\n",
+ " 'description': 'The S&P 500 earnings yield is 6.03% vs last week’s 5.85% and the start of the 2022’s 4.5% – 4.8%; Walmart’s earnings weight is likely a lot larger than its market cap weight.'},\n",
+ " {'id': 'PsNkJVaCAXki25-hZcJk2irqOky8s5cNOypZqHqgrz4',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Why Tesla Stock Was Slammed on Friday',\n",
+ " 'author': 'newsfeedback@fool.com (Daniel Sparks)',\n",
+ " 'published_utc': '2022-05-20T22:56:26Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2022/05/20/why-tesla-stock-was-slammed-on-friday/',\n",
+ " 'tickers': ['TSLA', 'TWTR'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/681336/why-tsla-stock-is-down.jpg',\n",
+ " 'description': \"The electric-car maker's stock has been getting hammered along with many other growth stocks.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'nMdkN0UNxwOrP0VLjCpYzR6xq-rzxS-5uM3qKEQsftE',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'S&P 500 Falls For 7th Consecutive Week Amid Ongoing Inflation, Federal Reserve Rate Hike Fears',\n",
+ " 'author': 'Henry Khederian',\n",
+ " 'published_utc': '2022-05-20T20:17:20Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/22/05/27332539/s-p-500-falls-for-7th-consecutive-week-amid-ongoing-inflation-federal-reserve-rate-hike-fears',\n",
+ " 'tickers': ['DIA', 'SPY', 'ROST', 'AMT', 'DE', 'LLY', 'VFC', 'TSLA', 'QQQ'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/27332539',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/05/20/stock-1863880_1_0.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'U.S. indices rebounded off session lows\\xa0Friday\\xa0to finish\\xa0mixed.\\xa0Markets at large traded\\xa0lower this week amid a continued sell off in stocks following recent earnings from retail companies. Concerns over recent inflation data and further Federal Reserve policy tightening also continue to weigh on stocks.\\nThe Nasdaq composite, S&P 500 and Dow Jones are now lower by 28.28%, 18.66% and 14.52%, respectively,\\xa0on a year-to-date basis amid the ongoing market selloff.\\n\\nThe Nasdaq composite finished lower\\xa0by 0.3% to 11,354; The Invesco QQQ Trust Series 1 (NASDAQ: QQQ) lost 0.31% to $288.68.\\nThe S&P 500 traded higher by 0.02% to 3,901; ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['News',\n",
+ " 'After-Hours Center',\n",
+ " 'Markets',\n",
+ " 'Movers',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': 'SJx0D6UFiHCERvCbRBlIhzhFZSQNmu1gyj-7HquAyPM',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'Why Is Tesla (TSLA) Down 29.7% Since Last Earnings Report?',\n",
+ " 'author': 'Zacks Equity Research',\n",
+ " 'published_utc': '2022-05-20T17:01:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/1927321/why-is-tesla-tsla-down-297-since-last-earnings-report',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/1927321/why-is-tesla-tsla-down-297-since-last-earnings-report',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/default_article_images/default235.jpg',\n",
+ " 'description': \"Tesla (TSLA) reported earnings 30 days ago. What's next for the stock? We take a look at earnings estimates for some clues.\"},\n",
+ " {'id': 'EmwVEpvvJT9fe3Uea3aWvPAz03KJBduc4KbaDy95_Xk',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Weekend reads: Retail troubles and how to handle this scary stock market',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2022-05-20T15:01:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/weekend-reads-retail-troubles-and-how-to-handle-this-scary-stock-market-11653058912',\n",
+ " 'tickers': ['TGT', 'HD', 'LOW', 'COMP', 'TSLA', 'TWTR', 'CFG'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/weekend-reads-retail-troubles-and-how-to-handle-this-scary-stock-market-11653058912',\n",
+ " 'image_url': 'https://images.mktw.net/im-548471/social',\n",
+ " 'description': 'Also, retirement locations and planning and how a regional bank went national using the iPhone.'},\n",
+ " {'id': 'FSZNsvbD4TdylD9nHD8Pp2q4_Jmc_cm6dLUWJW970IE',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Shanghai Starts Lifting Lockdown: What Is Tesla Going To Do With Its Employees?',\n",
+ " 'author': 'Shanthi Rexaline',\n",
+ " 'published_utc': '2022-05-20T14:27:42Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/22/05/27318027/shanghai-starts-lifting-lockdown-but-tesla-wants-employees-to-stay-in-factory-bubble-until-mid-june',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/27318027',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/05/20/hyunwon-jang-njubfl1oc3y-unsplash.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Shanghai is emerging out of a six-week lockdown, although the easing of restrictions is being implemented gradually. Tesla\\xa0Inc\\xa0(NASDAQ: TSLA)\\xa0has planned to take a measured approach with respect to Giga Shanghai reopening, according to a report.\\nWhat Happened: Tesla is planning to maintain its factory operations in China under a closed-loop system\\xa0at least until mid-June, Bloomberg reported, citing people familiar with the matter.\\nThe company has been keeping its Giga Shanghai employees in a factory bubble ever since the unit reopened on April 18 following a nearly three-week-long shutdown necessitated by local authorities amid the COVID-19 resurgence.\\nUnder the closed-loop system, workers were ferried to the manufacturing plant and made to live and work within the premises, with regular COVID checks.\\nThe company continues to run a one-shift production schedule since the restart, rendering the daily production rate at 1,200 units.\\nA Reuters report from earlier this week suggested that ...',\n",
+ " 'keywords': ['News', 'Global', 'Tech', 'Media']},\n",
+ " {'id': '_ZLRxh_RnebD8wciXEK0TdtSbS6jEMYVI63J1NlJdMQ',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Is Now the Time to Buy Electric Vehicle Stocks?',\n",
+ " 'author': 'newsfeedback@fool.com (Travis Hoium)',\n",
+ " 'published_utc': '2022-05-20T14:02:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2022/05/20/is-now-the-time-to-buy-electric-vehicle-stocks/',\n",
+ " 'tickers': ['RIVN', 'GM', 'TSLA', 'PTRA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/680036/car-being-charged-outside.jpg',\n",
+ " 'description': 'EV stocks have been crushed along with growth stocks, and that could be an opportunity for investors.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'e4tdJl2xfNW5Eb9L_stRVQ7baXUky2Hb0wsDTw8w22k',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': \"Looking for the Next Tesla? There Won't Be One\",\n",
+ " 'author': 'newsfeedback@fool.com (Jeremy Bowman)',\n",
+ " 'published_utc': '2022-05-20T13:21:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2022/05/20/looking-for-the-next-tesla-there-wont-be-one/',\n",
+ " 'tickers': ['TSLA',\n",
+ " 'NFLX',\n",
+ " 'AAPL',\n",
+ " 'F',\n",
+ " 'AMZN',\n",
+ " 'GM',\n",
+ " 'NIO',\n",
+ " 'NKLA',\n",
+ " 'LCID',\n",
+ " 'RIVN',\n",
+ " 'GGPI'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/677484/tesla-model-s.jpeg',\n",
+ " 'description': 'At least not in electric vehicles.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'qSWaUk6duXNe-F5oNDVH-hFWSZ3hqFR_dwRH-3IYleE',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': \"It's Down Almost 40% Year to Date -- Should Investors Buy Tesla Stock?\",\n",
+ " 'author': 'newsfeedback@fool.com (Luke Meindl)',\n",
+ " 'published_utc': '2022-05-20T13:05:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2022/05/20/its-down-almost-40-year-to-date-should-investors-b/',\n",
+ " 'tickers': ['TSLA', 'F', 'TM', 'GM', 'TWTR'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/680292/group-of-ev-charging-stations.jpg',\n",
+ " 'description': \"As the broader market continues to fall, some investors may view the EV leader's stock slump as a buying opportunity. Are they right?\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': '0UT3aOT9gIBNEY9gSDCDdzZcfDpYK-7QYP7_3PCKx8A',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Elon Musk denies report SpaceX paid $250,000 to settle sexual misconduct claim him',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2022-05-20T12:03:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/spacex-paid-250-000-to-settle-sexual-misconduct-claim-against-elon-musk-report-11653007663',\n",
+ " 'tickers': ['TSLA', 'TWTR'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/spacex-paid-250-000-to-settle-sexual-misconduct-claim-against-elon-musk-report-11653007663',\n",
+ " 'image_url': 'https://images.mktw.net/im-527703/social',\n",
+ " 'description': 'Billionaire claims “politically motivated hit piece.”'},\n",
+ " {'id': 'Hu1yaGIRQL-smcU5MSUPyI7MEfY6Wgchm-0U0yOw3-4',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Prediction: 1 Stock-Split Stock That Will Lead the Market Recovery',\n",
+ " 'author': 'newsfeedback@fool.com (Anthony Di Pizio)',\n",
+ " 'published_utc': '2022-05-20T11:15:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2022/05/20/prediction-stock-split-stock-lead-market-recovery/',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/680306/a-black-tesla-car-driving-on-an-open-road-in-the-snow.jpg',\n",
+ " 'description': 'The start of a new bull market in the technology sector is a matter of when, not if.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': '1x2xqKgUdemlqKF0cgB3P8Rt579ALfCkB0m4etcA5As',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': '2 Top Cryptocurrencies to Buy and Hold After the Terra (Luna) Crash',\n",
+ " 'author': 'newsfeedback@fool.com (Trevor Jennewine)',\n",
+ " 'published_utc': '2022-05-20T11:15:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2022/05/20/2-cryptocurrencies-to-buy-after-terra-luna-crash/',\n",
+ " 'tickers': ['TSLA', 'JPM', 'MSTR', 'LUNA', 'UST', 'COMP'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/680737/investor-60.jpg',\n",
+ " 'description': 'These crypto assets are backed by a compelling investment thesis.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'tarkZILPvEGVmHN0CIpM-XrxQX7cpEEGFs1bJPAKjPc',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': \"The technician who called the 2020 market bottom says a 'shocking rally' is in store\",\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2022-05-20T11:08:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/the-technician-who-called-the-2020-market-bottom-says-a-shocking-rally-is-in-store-11653043583',\n",
+ " 'tickers': ['WMT',\n",
+ " 'TGT',\n",
+ " 'ROST',\n",
+ " 'AMAT',\n",
+ " 'PANW',\n",
+ " 'TSLA',\n",
+ " 'TWTR',\n",
+ " 'LRCX',\n",
+ " 'KLAC',\n",
+ " 'GME',\n",
+ " 'AMC',\n",
+ " 'NIO',\n",
+ " 'AAPL',\n",
+ " 'AMZN',\n",
+ " 'NVDA',\n",
+ " 'BBIG',\n",
+ " 'AMD'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/the-technician-who-called-the-2020-market-bottom-says-a-shocking-rally-is-in-store-11653043583',\n",
+ " 'image_url': 'https://images.mktw.net/im-548430/social',\n",
+ " 'description': 'A widely followed technical analyst is forecasting a big stock-market rebound.'},\n",
+ " {'id': 'Son4lSO2j4-DpA3LLP6jsOW9omPKLAE0RzhbVOaQHxA',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'Bear Of The Day: Plains All American (PAA)',\n",
+ " 'author': 'Daniel Laboe',\n",
+ " 'published_utc': '2022-05-20T11:00:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/commentary/1926863/bear-of-the-day-plains-all-american-paa',\n",
+ " 'tickers': ['PAA', 'TSLA', 'CCJ', 'ENPH', 'TAN', 'UUUU', 'SEDG'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/commentary/1926863/bear-of-the-day-plains-all-american-paa',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/articles/main/17/21237.jpg',\n",
+ " 'description': \"PAA's inability to capitalize on the oil boom like its midstream competitors suggests it's an archaic player in a fleeting space\"},\n",
+ " {'id': 'jGl9xjYM49uLw248D3QJ0yPW_Xij3ur6FTn5eTevWQs',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Elon Musk To Meet Brazilian President Jair Bolsonaro Today: What's In It For Tesla, SpaceX?\",\n",
+ " 'author': 'Rachit Vats',\n",
+ " 'published_utc': '2022-05-20T10:07:34Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/22/05/27317601/tesl-spacex-ceo-elon-musk-to-meet-brazil-president-jair-bolsonaro-in-s-o-paulo-on-friday',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/27317601',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/05/20/musk_and_bolsonaro.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Tesla Inc (NASDAQ: TSLA) CEO Elon Musk is scheduled to meet Brazil’s President Jair Bolsonaro in Sao Paulo on Friday, Reuters reported, citing Brazilian daily O Globo.\\nWhat Happened: Musk and Bolsonaro are expected to discuss a potential partnership on rural connectivity and deforestation monitoring.\\nThe billionaire entrepreneur had in November met Brazil’s Communications Minister Fabio Faria in Texas where they had reportedly discussed using SpaceX’s technology to bring ...',\n",
+ " 'keywords': ['News',\n",
+ " 'SPACE',\n",
+ " 'Latin America',\n",
+ " 'Markets',\n",
+ " 'Tech',\n",
+ " 'Media',\n",
+ " 'General']},\n",
+ " {'id': 'iXiutb3FizvqfOnKfQ0r7ttKPFOhTMOm4SsZ3hU-Wns',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"After Jeff Bezos, Elon Musk Calls Dogecoin Creator 'Wise'\",\n",
+ " 'author': 'Shivdeep Dhaliwal',\n",
+ " 'published_utc': '2022-05-20T09:57:09Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/22/05/27317684/much-wow-such-praise-after-bezos-now-musk-calls-dogecoin-co-creator-billy-markus-wise',\n",
+ " 'tickers': ['AMZN', 'TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/27317684',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/05/20/shutterstock_2144122593.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'A day after Amazon.com, Inc (NASDAQ: AMZN) Chair Jeff Bezos heaped praise on Dogecoin (CRYPTO: DOGE) co-creator Billy Markus, he has received another round of praise — this time from Tesla Inc (NASDAQ: TSLA) CEO Elon Musk.\\nWhat Happened: Musk reacted to a tweet from Markus which touched on fitting in and tribalism. The Dogecoin co-creator said if the tribe that people join becomes bullies, they will as well but still maintain an air of moral superiority to outsiders.\\xa0 Musk said these were “wise words.”\\nWise words https://t.co/NTGIukXPgM\\n— Elon Musk (@elonmusk) May 19, 2022\\nIn the same thread, Markus asked people to recognize their “tribes” and ...',\n",
+ " 'keywords': ['News',\n",
+ " 'Cryptocurrency',\n",
+ " 'Social Media',\n",
+ " 'Politics',\n",
+ " 'Markets',\n",
+ " 'General']},\n",
+ " {'id': '3d9JS-se34O-4mshNTtY081sggJ7D_SPOlIfi_UIWwg',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Bullish Tesla Analyst Cuts Delivery Estimates, PT On This 'Epic Disaster' Headwind\",\n",
+ " 'author': 'Shanthi Rexaline',\n",
+ " 'published_utc': '2022-05-20T08:00:46Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/22/05/27317431/tesla-analyst-calls-this-headwind-as-epic-disaster-takes-down-estimates-price-targe',\n",
+ " 'tickers': ['TSLA', 'TWTR'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/27317431',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/05/20/shutterstock_2022214595.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Tesla, Inc.\\xa0(NASDAQ: TSLA) shares are languishing at their lowest level since August 2021 and it may not be yet time to call the bottom, given the looming risks. A longtime Tesla bull on Thursday slashed his price target for the EV maker\\'s shares, with concerns in China at the center of his tempered expectation.\\nThe Tesla Analyst:\\xa0\\xa0Wedbush\\xa0analyst\\xa0Daniel Ives\\xa0maintained his \\'outperform\\' rating and reduced Tesla\\'s price target to $1,000 from $1,400.\\nThe Tesla Thesis:\\xa0\\xa0Strict\\xa0Shanghai lockdowns\\xa0have been an \"epic disaster\" thus far in the second quarter, Ives said in a note.\\xa0\\nThe analyst sees modest delivery softness in the current quarter and a slower growth trajectory for Tesla in China in the second half.\\nSee Also:\\xa0How To Buy Tesla (TSLA) Stock\\nThe ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['News',\n",
+ " 'Analyst Color',\n",
+ " 'Price Target',\n",
+ " 'Reiteration',\n",
+ " 'Analyst Ratings']},\n",
+ " {'id': 'a8zMbdIwa58QpHGJGrQy21PZb5KA0ceooVld3O_jtqk',\n",
+ " 'publisher': {'name': 'Seeking Alpha',\n",
+ " 'homepage_url': 'https://seekingalpha.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/seekingalpha.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/seekingalpha.ico'},\n",
+ " 'title': 'GMO 1Q 2022 Quarterly Letter',\n",
+ " 'author': 'Fund Letters',\n",
+ " 'published_utc': '2022-05-20T06:54:00Z',\n",
+ " 'article_url': 'https://seekingalpha.com/article/4513328-gmo-1q-2022-quarterly-letter',\n",
+ " 'tickers': ['BP', 'MOS', 'RIO', 'SHEL', 'TSLA', 'VALE'],\n",
+ " 'amp_url': 'https://seekingalpha.com/amp/article/4513328-gmo-1q-2022-quarterly-letter',\n",
+ " 'image_url': 'https://static.seekingalpha.com/cdn/s3/uploads/getty_images/1395277908/image_1395277908.jpg?io=getty-c-w750',\n",
+ " 'description': 'Soaring commodity prices have helped drive inflation to 8.5%. Is it too late for investors to capitalize on high commodity prices? Click here to find out.'},\n",
+ " {'id': 'dH_Tjg8A5BBehzjABtMwe2OQsoYxJhtEBbLyPqwdbP4',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Elon Musk Says Twitter Deal Takes Up Under 5% Of His Time, Tesla '24/7' On His Mind\",\n",
+ " 'author': 'Rachit Vats',\n",
+ " 'published_utc': '2022-05-20T05:39:26Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/22/05/27316752/elon-musk-says-spending-less-than-5-of-his-time-on-twitter-takeover-tesla-is-247-on-his-mind',\n",
+ " 'tickers': ['TSLA', 'TWTR'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/27316752',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/05/19/elon_musk_sunglasses.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': \"Tesla Inc (NASDAQ: TSLA) and SpaceX CEO Elon Musk said on Thursday he is spending very little of his time on the $44 billion Twitter Inc (NYSE: TWTR) buyout, amid growing calls that the billionaire entrepreneur should focus on his core companies instead.\\xa0\\nWhat Happened: The world’s richest man said he is spending less than 5% of his time on the Twitter acquisition, adding how can multitask between Tesla and SpaceX.\\nTo be clear, I'm spending <5% (but actually) of my time on the Twitter ...\",\n",
+ " 'keywords': ['News', 'SPACE', 'Social Media', 'Tech', 'General']},\n",
+ " {'id': 's6WmxSAqLXr_5pAZUC5O8NF1z2hoWI3a5XphUO5U7qE',\n",
+ " 'publisher': {'name': 'Seeking Alpha',\n",
+ " 'homepage_url': 'https://seekingalpha.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/seekingalpha.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/seekingalpha.ico'},\n",
+ " 'title': 'VCR: Consumer Discretionary Dashboard For May',\n",
+ " 'author': 'Fred Piard',\n",
+ " 'published_utc': '2022-05-20T04:38:15Z',\n",
+ " 'article_url': 'https://seekingalpha.com/article/4513317-vcr-consumer-discretionary-dashboard-for-may',\n",
+ " 'tickers': ['AMZN',\n",
+ " 'AN',\n",
+ " 'BKNG',\n",
+ " 'BLMN',\n",
+ " 'GDEN',\n",
+ " 'GPI',\n",
+ " 'HD',\n",
+ " 'HIBB',\n",
+ " 'LOW',\n",
+ " 'M',\n",
+ " 'MCD',\n",
+ " 'NKE',\n",
+ " 'PLAY',\n",
+ " 'PLCE',\n",
+ " 'RCD',\n",
+ " 'SBH',\n",
+ " 'SBUX',\n",
+ " 'TGT',\n",
+ " 'TJX',\n",
+ " 'TSLA',\n",
+ " 'WSM',\n",
+ " 'XLY',\n",
+ " 'VCR'],\n",
+ " 'amp_url': 'https://seekingalpha.com/amp/article/4513317-vcr-consumer-discretionary-dashboard-for-may',\n",
+ " 'image_url': 'https://static.seekingalpha.com/cdn/s3/uploads/getty_images/1252468735/image_1252468735.jpg?io=getty-c-w750',\n",
+ " 'description': 'Durables and apparel are cheap relative to 11-year averages. Auto and components are the most overvalued subsector. VCR: an alternative to XLY.'},\n",
+ " {'id': 'KHutZr34g_an5WJquEs72-4XdX2uWFwgc3K-hQBss98',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Nio Shares Jump 20% In Singapore Debut: What You Should Know',\n",
+ " 'author': 'Rachit Vats',\n",
+ " 'published_utc': '2022-05-20T04:36:14Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/22/05/27317087/chinese-ev-maker-nio-makes-debut-in-singapore-stock-market-plans-to-launch-ai-ad-r-d-center-there',\n",
+ " 'tickers': ['TSLA', 'NIO'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/27317087',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/05/19/shutterstock_1500051986.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'U.S.-listed Chinese electric carmaker\\xa0Nio Inc\\xa0(NYSE:\\xa0NIO) on Friday made its debut on the Singapore stock exchange, with shares jumping 20% in early trading, as it laid out plans to open a local research center focused on artificial intelligence and self-driving cars.\\nWhat Happened:\\xa0Shanghai-based Nio said it has successfully listed its Class A shares on the Main Board of the Singapore Exchange Securities Trading Limited (SGX-ST).\\n\"Nio has further strengthened its footing in the global capital markets with Singapore\\'s strategic significance,” founder and CEO\\xa0William Li\\xa0said.\\nNio’s primary ...',\n",
+ " 'keywords': ['News',\n",
+ " 'Asia',\n",
+ " 'Events',\n",
+ " 'Markets',\n",
+ " 'Movers',\n",
+ " 'Tech',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': 'g6KPl9mhvcMZ04zOIV0Dy0_u1obAQQCuAvVhAtqcGeA',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"'Wild Allegations:' Elon Musk Points To 'Political Lens' Amid Reports Of Sexual Misconduct\",\n",
+ " 'author': 'Rachit Vats',\n",
+ " 'published_utc': '2022-05-20T04:14:23Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/22/05/27317113/elon-musk-says-attacks-against-him-politically-motivated-after-reports-of-sexual-misconduct-vows-to',\n",
+ " 'tickers': ['TSLA', 'TWTR'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/27317113',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/05/20/50152648476_d98a10bacc_o.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Tesla Inc (NASDAQ: TSLA) CEO Elon Musk said on Friday attacks against him should be viewed through a “political lens” after being blamed for a sexual misconduct incident that took place in 2016.\\nWhat Happened: The world’s richest man said on Twitter he will continue “fighting for a good future and your right to free speech.”\\nThe billionaire entrepreneur has been accused of exposing his erect penis to a SpaceX flight attendant, rubbing her leg without consent, and offering to buy her a horse in exchange for an erotic massage.\\xa0\\nSee Also: Elon Musk Engaged In Sexual Misconduct With SpaceX Flight Attendant, Company Paid ...',\n",
+ " 'keywords': ['News', 'SPACE', 'Politics', 'General']},\n",
+ " {'id': '_MY0lps5UeIDZyK01lOdoy5TQesqrxY4RnciOAA6jos',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Elon Musk Engaged In Sexual Misconduct With SpaceX Flight Attendant, Company Paid $250,000 In Settlement: Report',\n",
+ " 'author': 'Rachit Vats',\n",
+ " 'published_utc': '2022-05-20T02:13:28Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/22/05/27316554/spacex-elon-musk-said-to-have-paid-250-000-to-a-flight-attendant-to-settle-a-sexual-misconduct-incid',\n",
+ " 'tickers': ['TSLA', 'TWTR'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/27316554',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/05/19/elon_musk_07.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': \"Tesla Inc\\xa0(NASDAQ: TSLA) CEO\\xa0Elon Musk's\\xa0SpaceX\\xa0paid a flight attendant $250,000 to settle a sexual misconduct claim against the billionaire entrepreneur in 2018,\\xa0\\xa0Business Insider\\xa0reported\\xa0on Thursday, citing interviews and documents.\\xa0\\nWhat Happened:\\xa0The world’s richest man has been accused of exposing his erect penis to a SpaceX flight attendant, rubbing her leg without consent, and offering to buy her a horse in exchange for an erotic massage, the report said.\\nSpaceX did not immediately respond to Benzinga’s request for comment.\\nThe attendant was ...\",\n",
+ " 'keywords': ['News', 'SPACE', 'Legal', 'Tech', 'Media', 'General']},\n",
+ " {'id': 'yRByypZGw0C6-VVTZSXZ0XizFKF7CF0OImdFdgZDzuw',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Dow, S&P 500 and Nasdaq end with back-to back losses following worst day in about 2 years',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2022-05-19T20:34:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/u-s-stock-futures-point-to-further-pressure-after-worst-day-for-equities-in-nearly-two-years-11652951683',\n",
+ " 'tickers': ['DJIA',\n",
+ " 'COMP',\n",
+ " 'TGT',\n",
+ " 'WMT',\n",
+ " 'HOG',\n",
+ " 'TSLA',\n",
+ " 'CSCO',\n",
+ " 'BJ',\n",
+ " 'SAVE',\n",
+ " 'JBLU',\n",
+ " 'ULCC'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/u-s-stock-futures-point-to-further-pressure-after-worst-day-for-equities-in-nearly-two-years-11652951683',\n",
+ " 'image_url': 'https://images.mktw.net/im-547972/social',\n",
+ " 'description': 'U.S. stocks finish Thursday lower, putting the S&P 500 closer to a bear-market, following its worst slide in about two years.'},\n",
+ " {'id': 'y1-48VK7iUGlEUqS_6gmde952LJfkANINNXAiDzNk0I',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Bitcoin records 7 consecutive weeks of losses. Could it turn around?',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2022-05-19T19:53:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/bitcoin-records-7-consecutive-weeks-of-losses-could-it-turn-around-11652990005',\n",
+ " 'tickers': ['COIN',\n",
+ " 'MSTR',\n",
+ " 'RIOT',\n",
+ " 'MARA',\n",
+ " 'EBON',\n",
+ " 'OSTK',\n",
+ " 'SQ',\n",
+ " 'TSLA',\n",
+ " 'PYPL',\n",
+ " 'NVDA',\n",
+ " 'AMD',\n",
+ " 'BITO',\n",
+ " 'BTF',\n",
+ " 'XBTF'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/bitcoin-records-7-consecutive-weeks-of-losses-could-it-turn-around-11652990005',\n",
+ " 'image_url': 'https://images.mktw.net/im-429485/social',\n",
+ " 'description': \"A weekly look at the most important moves and news in crypto and what's on the horizon in digital assets.\"},\n",
+ " {'id': 'yuT70f9mgvzM5NHBP_q7yILIqW-_7SrbDvEeQGXLdTM',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': '300M DOGE Transferred In One Transaction As Dogecoin Whales React To Market Turmoil',\n",
+ " 'author': 'Adrian Zmudzinski',\n",
+ " 'published_utc': '2022-05-19T17:28:25Z',\n",
+ " 'article_url': 'https://www.benzinga.com/markets/cryptocurrency/22/05/27298156/300m-doge-transferred-in-one-transaction-as-dogecoin-whales-react-to-market-turmoil',\n",
+ " 'tickers': ['TSLA', 'TWTR'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/27298156',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/05/19/shutterstock_2118178424.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Exactly 300 million\\xa0Dogecoin\\xa0(CRYPTO:\\xa0DOGE) were moved from multiple\\xa0addresses to an unknown wallet in a single transaction earlier on Thursday.\\xa0\\nWhat Happened:\\xa0The transaction processed on Thursday moved exactly 300 million Dogecoin\\xa0from an unknown address to an unknown wallet for a total transfer value of over $27.25 million as of press time, according to transaction tracking service\\xa0Clank.\\nSee Also:\\xa0How To Earn Free ...',\n",
+ " 'keywords': ['News', 'Cryptocurrency', 'Markets']},\n",
+ " {'id': 'pl0esuv1cUabcpfflcY7nPUPf9_2wdrfLO5ux_U-L1U',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Should Tesla Initiate A Buyback Amid Stock Slump? Here's What One Of Its Biggest Shareholders Thinks\",\n",
+ " 'author': 'Shanthi Rexaline',\n",
+ " 'published_utc': '2022-05-19T17:10:07Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/22/05/27295348/should-tesla-initiate-a-buyback-amid-stock-slump-heres-what-one-of-its-biggest-shareholders-thinks',\n",
+ " 'tickers': ['TSLA', 'TWTR'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/27295348',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/05/19/tesla.austin-ramsey-9x3dmoem64k-unsplash.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Tesla\\xa0Inc\\xa0(NASDAQ: TSLA) shares have been on a downward trajectory ever since CEO\\xa0Elon Musk\\xa0disclosed a passive stake in social media platform Twitter\\xa0Inc\\xa0(NYSE: TWTR).\\nWhat Happened: From the $1,084.59 at which Tesla stock closed on April 1, the session ahead of the disclosure, the stock has lost about 35%.\\nThe sell-off has started chatter on what the EV maker should be doing to lift its sagging stock.\\nIndonesian-born, Chinese-American\\xa0businessman Leo Koguan,\\xa0the third-largest shareholder of Tesla, suggested\\xa0the company commence a buyback.\\nTagging Martin Viecha, Tesla\\'s senior director, Investor Relations, KoGuan said Tesla \"must\" immediately announce a $5 billion buyback from its free cash flow this year and follow it up with a $10 billion purchase in 2023. He also stated the buyback should in no ...',\n",
+ " 'keywords': ['News', 'Buybacks', 'Top Stories', 'Tech', 'Media']},\n",
+ " {'id': '5y-udbb1QRcNSUmhsyMzvpbMSxMPsTjbSNcNnEDlhZg',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Tesla Pushes Back Model X Orders Leaving Some Customers Waiting 2 Years For Delivery',\n",
+ " 'author': 'Benzinga EV Insights',\n",
+ " 'published_utc': '2022-05-19T16:13:15Z',\n",
+ " 'article_url': 'https://www.benzinga.com/tech/22/05/27302460/tesla-pushes-back-model-x-orders-leaving-some-customers-waiting-2-years-for-delivery',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/27302460',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/imagecache/og_image_social_share_1200x630/images/story/2022/05/19/capture.png',\n",
+ " 'description': 'The supply chain issues plaguing the globe have been particularly harsh on auto manufacturers. And while Tesla Inc\\xa0(NASDAQ: TSLA) has still been increasing sales, even this company is not immune from the effects.\\nCustomers who pre-ordered their Model X electric vehicles\\xa0as early as April 2021 were seeing estimated delivery dates as late as July 2022. But Tesla has updated these estimates for many customers, as seen on the Tesla Motors Club\\xa0forums, and\\xa0are now saying December 2022 to April ...',\n",
+ " 'keywords': ['News', 'Top Stories', 'Tech']},\n",
+ " {'id': 'djWLdHBNY2pBz9g-p-LXV9Dmjlp08fSJ3-ExEfqCcGo',\n",
+ " 'publisher': {'name': 'Investing.com',\n",
+ " 'homepage_url': 'https://www.investing.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/investing.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/investing.ico'},\n",
+ " 'title': 'Sentiment Is Turning Against Elon Musk',\n",
+ " 'author': 'Tim Knight',\n",
+ " 'published_utc': '2022-05-19T15:54:00Z',\n",
+ " 'article_url': 'https://www.investing.com/analysis/sentiment-is-turning-against-elon-musk-200624581',\n",
+ " 'tickers': ['TWTR', 'TSLA'],\n",
+ " 'amp_url': 'https://m.investing.com/analysis/sentiment-is-turning-against-elon-musk-200624581?ampMode=1',\n",
+ " 'image_url': 'https://i-invdn-com.investing.com/redesign/images/seo/investingcom_analysis_og.jpg'},\n",
+ " {'id': '5Hb6P-ghuVdFIEzFm45H0TwcVq7RNQq19gl48y_lbgE',\n",
+ " 'publisher': {'name': 'Invezz',\n",
+ " 'homepage_url': 'https://invezz.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/invezz.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/invezz.png'},\n",
+ " 'title': 'Major Tesla shareholder demands $15 billion stock buyback',\n",
+ " 'author': 'Wajeeh Khan',\n",
+ " 'published_utc': '2022-05-19T15:29:52Z',\n",
+ " 'article_url': 'https://invezz.com/news/2022/05/19/major-tesla-shareholder-demands-15-billion-stock-buyback/',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://invezz.com/news/2022/05/19/major-tesla-shareholder-demands-15-billion-stock-buyback/?amp',\n",
+ " 'image_url': 'https://invezz.com/wp-content/uploads/2022/03/159832336-m.jpg',\n",
+ " 'description': 'Shares of Tesla Inc (NASDAQ: TSLA) slid another 2.0% on Thursday after one of its largest shareholders demanded that the EV maker announces $15 billion in share repurchase. Tesla should use FCF for the stock buyback Leo Koguan wants Tesla to buy back $5.0 billion worth of its stock this year and another $10 billion […]\\nThe post Major Tesla shareholder demands $15 billion stock buyback appeared first on Invezz.',\n",
+ " 'keywords': ['Industries',\n",
+ " 'Manufacturing',\n",
+ " 'North America',\n",
+ " 'Stocks & Shares',\n",
+ " 'USA',\n",
+ " 'World']},\n",
+ " {'id': 'cRlVfO0lFdSUMj3A6emmovKLkGD_VhioKvYfnE_znL4',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Are Nasdaq Stocks Now Reasonably Priced?',\n",
+ " 'author': \"Mark O'Donnell\",\n",
+ " 'published_utc': '2022-05-19T15:17:41Z',\n",
+ " 'article_url': 'https://www.benzinga.com/22/05/27304996/are-nasdaq-stocks-now-reasonably-priced',\n",
+ " 'tickers': ['AAPL', 'AMZN', 'MSFT', 'NFLX', 'GM', 'TSLA', 'GOOGL', 'ZM'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/27304996',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/imagecache/og_image_social_share_1200x630/zoom.png',\n",
+ " 'description': 'Over the past two years, technology companies have enjoyed explosive growth as investors were upbeat about the prospects for the sector at a time when people relied on technology to stay connected while cooped up in their homes.\\nInternet firms like Zoom Video Communications (NASDAQ: ZM) were among those to reap substantial gains from the tech boom during the pandemic. Zoom’s stock surged to a record $559 in October 2020 around the time that its platform’s usage became ubiquitous for people working at home and regular users that wanted to connect with friends and families.\\nThe confidence in Zoom and other internet stocks like Alphabet (NASDAQ: GOOGL) and Microsoft (NASDAQ: MSFT) fueled a herd mentality that propelled the tech-heavy Nasdaq Composite index to an all-time high in November 2020.\\nBut with concerns about high valuations and interest rate hikes that could lower companies’ future earnings, the Nasdaq has been on a freefall for about half a year now, retreating from its November peak of over 16,000 points to an over 18-month low of just under 12,000 points on Wednesday.\\n\\nNasdaq Composite 1W\\nPandemic favorites lose shine\\nZoom, the poster child for 2020, is now trading at less than $90 ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['Economics', 'Markets', 'Trading Ideas']},\n",
+ " {'id': 'iEue4S4CmOU9pfWCgYKEGI0qu2QGAjdUhqivm4PLeUY',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Cathie Wood has a simple response to Tesla getting booted out of an S&P 500 ESG index: ‘Ridiculous’',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2022-05-19T14:41:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/cathie-wood-has-a-simple-response-to-tesla-getting-booted-out-of-an-s-p-500-esg-index-ridiculous-11652932058',\n",
+ " 'tickers': ['TSLA', 'F', 'GM', 'ARKK', 'DJIA', 'COMP'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/cathie-wood-has-a-simple-response-to-tesla-getting-booted-out-of-an-s-p-500-esg-index-ridiculous-11652932058',\n",
+ " 'image_url': 'https://images.mktw.net/im-547449/social',\n",
+ " 'description': 'Ark Investment founder Cathie Wood isn’t pleased about EV-maker Tesla Inc. being excluded from the S&P 500 ESG Index.'},\n",
+ " {'id': '4Ck8ioulQfWKJP5GSScODMhMpwE31PyzARd0DH9i9y4',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Benzinga's Daily Brief On Trending Tickers For May 19, 2022: Cisco, Kohl's And More\",\n",
+ " 'author': 'AJ Fabino',\n",
+ " 'published_utc': '2022-05-19T14:22:40Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/earnings/22/05/27300959/benzingas-daily-brief-on-trending-tickers-for-may-19-2022-tesla-cisco-kohls-and-more',\n",
+ " 'tickers': ['CSCO', 'NURO', 'BJ', 'KSS', 'TSLA', 'TWTR'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/27300959',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/05/19/stock-market-6287711_1920.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Benzinga’s “Daily Brief On Trending Tickers” highlights top-searched tickers from around the web and uses the Benzinga Pro platform to highlight recent news items possibly impacting those stocks.\\nThe data on the trending tickers is compiled from a list of most-discussed tickers on the popular Reddit forum WallStreetBets.\\nTesla Inc (NASDAQ: TSLA) shares fell about 1% earlier this morning after the S&P 500 ESG Index removed Tesla from the index, citing issues related to various claims. CEO Elon Musk called the ESG a scam\\xa0causing further drama.\\nWedbush analyst Dan Inves reiterated an Outperform rating on Tesla but lowered the price target from $1,400.00 to $1,000.\\nCisco Systems Inc (NASDAQ: CSCO) shares fell over 10% during ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['News',\n",
+ " 'Earnings',\n",
+ " 'Penny Stocks',\n",
+ " 'Crowdsourcing',\n",
+ " 'Analyst Ratings',\n",
+ " 'Trading Ideas',\n",
+ " 'General']},\n",
+ " {'id': 'fFqnI9PlALfIU0woaGbwxuPxehSrmYA8ApE_OyvZs_U',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'The billionaires are bleeding. Elon Musk, Jeff Bezos and other top earners have lost nearly $200 billion in 2022',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2022-05-19T14:18:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/the-billionaires-are-bleeding-elon-musk-jeff-bezos-and-other-top-earners-have-lost-nearly-200-billion-in-2022-11652969938',\n",
+ " 'tickers': ['TSLA', 'DJIA', 'TWTR', 'AMZN', 'MSFT', 'BRK.A', 'BRK.B'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/the-billionaires-are-bleeding-elon-musk-jeff-bezos-and-other-top-earners-have-lost-nearly-200-billion-in-2022-11652969938',\n",
+ " 'image_url': 'https://images.mktw.net/im-547592/social',\n",
+ " 'description': \"The latest market rout knocked more than $40 billion off the wealth of top earners including Tesla's Elon Musk and Amazon's Jeff Bezos.\"},\n",
+ " {'id': 'qw3BeyWfQpddD9_7O4ZfKBmiS7mAYEDr5qC33K65qk4',\n",
+ " 'publisher': {'name': 'Quartz',\n",
+ " 'homepage_url': 'https://qz.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/quartz.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/quartz.ico'},\n",
+ " 'title': 'What Elon Musk gets right and wrong about ESG',\n",
+ " 'author': 'Tim McDonnell',\n",
+ " 'published_utc': '2022-05-19T13:40:31Z',\n",
+ " 'article_url': 'https://qz.com/2167543/what-elon-musk-gets-right-and-wrong-about-esg/',\n",
+ " 'tickers': ['CVX', 'MSCI', 'TSLA', 'TWTR', 'XOM'],\n",
+ " 'amp_url': 'https://qz.com/2167543/what-elon-musk-gets-right-and-wrong-about-esg/amp/',\n",
+ " 'image_url': 'https://cms.qz.com/wp-content/uploads/2022/05/2022-05-05T132637Z_1317338657_RC201U92RX3T_RTRMADP_3_TWITTER-MUSK-CEO-1-e1652965196469.jpg?quality=75&strip=all&w=1200&h=630&crop=1',\n",
+ " 'description': \"While Tesla was dropped from S&P's ESG index, Exxon stayed in—and five other oil-sector companies joined.\",\n",
+ " 'keywords': ['The climate economy',\n",
+ " 'Business',\n",
+ " 'Climate change',\n",
+ " 'Elon Musk',\n",
+ " 'esg',\n",
+ " 'Finance',\n",
+ " 'investing',\n",
+ " 'Tesla']},\n",
+ " {'id': '8DhlPCR21ixloZy2Ms5DCH5c9a1gkmH3RXb9kiWij-0',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': \"Will the stock market drop 20% or 48% from the peak? Here's the key factor, says this strategist.\",\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2022-05-19T13:38:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/will-the-stock-market-drop-20-or-48-from-the-peak-heres-the-key-factor-says-this-strategist-11652958716',\n",
+ " 'tickers': ['CSCO',\n",
+ " 'WMT',\n",
+ " 'TGT',\n",
+ " 'KSS',\n",
+ " 'BBBY',\n",
+ " 'DJIA',\n",
+ " 'COMP',\n",
+ " 'TSLA',\n",
+ " 'GME',\n",
+ " 'AMC',\n",
+ " 'AAPL',\n",
+ " 'NIO',\n",
+ " 'AMZN',\n",
+ " 'TWTR',\n",
+ " 'BBIG',\n",
+ " 'AMD'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/will-the-stock-market-drop-20-or-48-from-the-peak-heres-the-key-factor-says-this-strategist-11652958716',\n",
+ " 'image_url': 'https://images.mktw.net/im-547520/social',\n",
+ " 'description': \"The volatility for stocks is heating up, but how likely is it that we'll actually get a 40% plus drop as some think? It all depends on this, says Evercore.\"},\n",
+ " {'id': 'HSF0-ASKhE5eKLXa2qlKo9ZMDYmKxdW5_ucs3rLGIQM',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': \"Do Options Traders Know Something About Tesla (TSLA) Stock We Don't?\",\n",
+ " 'author': 'Zacks Equity Research',\n",
+ " 'published_utc': '2022-05-19T12:52:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/1926438/do-options-traders-know-something-about-tesla-tsla-stock-we-dont',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/1926438/do-options-traders-know-something-about-tesla-tsla-stock-we-dont',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/articles/main/3e/106.jpg',\n",
+ " 'description': 'Investors need to pay close attention to Tesla (TSLA) stock based on the movements in the options market lately.'},\n",
+ " {'id': 'tqR9nV6dfbDf1fQcOvOTuWctV64QKODxRCHE2qpu8IM',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': '4 Dividend Paying Mutual Funds to Counter Market Volatility',\n",
+ " 'author': 'Zacks Equity Research',\n",
+ " 'published_utc': '2022-05-19T12:27:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/1926480/4-dividend-paying-mutual-funds-to-counter-market-volatility',\n",
+ " 'tickers': ['AAPL', 'TSLA'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/1926480/4-dividend-paying-mutual-funds-to-counter-market-volatility',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/articles/main/d9/554.jpg',\n",
+ " 'description': 'In the current volatile market, funds like EQTIX, CABIX, NCBIX and RAPZX, which pay dividends, look lucrative.'},\n",
+ " {'id': 'c9HV6PXqlvbPA0vb9hO4LkmmrYT0JHBHw20lQKOeNXs',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': '10 Biggest Price Target Changes For Thursday',\n",
+ " 'author': 'Lisa Levin',\n",
+ " 'published_utc': '2022-05-19T12:26:44Z',\n",
+ " 'article_url': 'https://www.benzinga.com/markets/penny-stocks/22/05/27298600/10-biggest-price-target-changes-for-thursday',\n",
+ " 'tickers': ['AAPL',\n",
+ " 'CSCO',\n",
+ " 'CMC',\n",
+ " 'DT',\n",
+ " 'TGT',\n",
+ " 'TJX',\n",
+ " 'TSLA',\n",
+ " 'BPTH',\n",
+ " 'UWMC',\n",
+ " 'BBWI'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/27298600',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/05/19/price_targets.png?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Telsey Advisory Group cut the price target for Bath & Body Works, Inc. (NYSE: BBWI) from $70 to $60. Bath & Body Works shares fell 6.9% to $40.00 in pre-market trading.\\nPiper Sandler cut the price target on UWM Holdings Corporation (NYSE: UWMC) from $5 to $3. UWM Holdings shares fell 5.2% to $3.80 in pre-market trading.\\nStifel cut Target Corporation (NYSE: TGT) price target from $270 to $185. Target shares fell 1.8% to $158.74 in pre-market trading.\\nHC Wainwright & Co. lowered the ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['Penny Stocks',\n",
+ " 'Price Target',\n",
+ " 'Small Cap',\n",
+ " 'Pre-Market Outlook',\n",
+ " 'Analyst Ratings']},\n",
+ " {'id': 'ekMxL-s50Df3I0WL8IymeXeDCUmCfbMZGQlhEWtRuh0',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': '1 Stock-Split Stock Warren Buffett Regrets Missing Out On',\n",
+ " 'author': 'newsfeedback@fool.com (Anthony Di Pizio)',\n",
+ " 'published_utc': '2022-05-19T12:07:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2022/05/19/1-stock-split-stock-warren-buffett-regrets-missing/',\n",
+ " 'tickers': ['AMZN',\n",
+ " 'BRK.A',\n",
+ " 'AAPL',\n",
+ " 'GOOGL',\n",
+ " 'TSLA',\n",
+ " 'GOOG',\n",
+ " 'SHOP',\n",
+ " 'RIVN'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/680050/gettyimages-1146545471.jpg',\n",
+ " 'description': \"The company's founder is wealthier than Buffett himself.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'S8WB0zn8zKOCrpWLpp-WZ-zTWJOtXKot8NIK8X4qJI4',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"'Ridiculous,' 'Wacktivism:' Cathie Wood, Elon Musk React To Tesla's Removal From S&P 500 ESG Index\",\n",
+ " 'author': 'Rachit Vats',\n",
+ " 'published_utc': '2022-05-19T11:59:34Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/22/05/27294169/ridiculous-wacktivism-cathie-wood-elon-musk-react-to-teslas-removal-from-esg-index',\n",
+ " 'tickers': ['SPY', 'XOM', 'TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/27294169',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/05/19/wood_musk.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Popular money manager and Tesla Inc (NASDAQ: TSLA) bull Cathie Wood on Wednesday slammed the move to boot the EV maker\\xa0from the S&P 500\\'s ESG Index\\xa0after\\xa0its billionaire CEO\\xa0Elon Musk\\xa0called environment, social & governance (ESG) ratings a \"scam.\"\\nWhat Happened: The world’s richest man wrote the move is “a clear case of wacktivism\"\\xa0after Tesla lost its spot on the ESG Index, as the EV maker\\'s rank slipped against its global peers.\\xa0\\nWackitivism is likely a portmanteau of wacky and activist, and can be described as something or someone related to “insane protest campaigns.”\\nA ...',\n",
+ " 'keywords': ['News', 'ESG', 'Markets', 'Tech']},\n",
+ " {'id': 'VFjF-TTwBkDXQi5C55OIQJkuwfBEaM_FX7HCCgLa-lk',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': \"Will Elon Musk's Twitter Deal Collapse? What Investors Should Know\",\n",
+ " 'author': 'newsfeedback@fool.com (Luke Meindl)',\n",
+ " 'published_utc': '2022-05-19T11:51:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2022/05/19/will-elon-musks-twitter-deal-collapse/',\n",
+ " 'tickers': ['TWTR', 'TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/680264/woman-using-social-media-microblogging-app-on-her-phone.jpg',\n",
+ " 'description': 'Is Elon Musk regretting his initial offer to buy Twitter?',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': '4F0kUGMZ999-F7NFPCvgU7CM9FEazVIdPnWd6fvo5Rw',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Tesla dumped by S&P ESG index and Musk cries label is a ‘scam’',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2022-05-19T11:23:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/tesla-dumped-by-s-p-esg-index-and-musk-cries-label-is-a-scam-11652893098',\n",
+ " 'tickers': ['TSLA', 'TWTR', 'XOM', 'JPM'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/tesla-dumped-by-s-p-esg-index-and-musk-cries-label-is-a-scam-11652893098',\n",
+ " 'image_url': 'https://images.mktw.net/im-532152/social',\n",
+ " 'description': 'The S&P 500 ESG Index drops Elon Musk’s Tesla from its lineup, which was revealed this week in its annual rebalancing.'},\n",
+ " {'id': 'WjnR42v3Z_TCdPcb_wDBiY2DsjtVVRKZAaZrFeyjSw0',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Tesla Bull Cathie Wood Scoops Up $11.5M In Bill Gates-Backed Biotech's Stock\",\n",
+ " 'author': 'Rachit Vats',\n",
+ " 'published_utc': '2022-05-19T11:12:55Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/22/05/27293786/cathie-wood-scooped-up-11-5m-worth-shares-on-the-dip-in-this-biotech-company-on-wednesday',\n",
+ " 'tickers': ['MSFT', 'DNA', 'TSLA', 'ARKK'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/27293786',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/05/19/ginkgo.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Ark Investment Management, led by\\xa0Tesla Inc. (NASDAQ: TSLA) bull\\xa0Cathie Wood,\\xa0on Wednesday scooped up 4.75 million shares estimated to be worth $11.5 million in Ginkgo Bioworks Holdings Inc (NYSE: DNA) on the day the synthetic biology company slumped lower.\\nGinkgo Bioworks closed 11.3% lower at $2.43 on Wednesday and is down 72% year-to-date.\\nArk Invest has been piling up shares in the Boston, Massachusetts-based ...',\n",
+ " 'keywords': ['Long Ideas',\n",
+ " 'News',\n",
+ " 'Biotech',\n",
+ " 'Penny Stocks',\n",
+ " 'Broad U.S. Equity ETFs',\n",
+ " 'Trading Ideas',\n",
+ " 'ETFs',\n",
+ " 'General']},\n",
+ " {'id': 'IKlN7OUXzHU4LOrxbjj6sU0Y39mkjoxW2S3dcV5VT50',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"How The Tables Have Turned: Could Elon Musk Be 'Forced' To Buy Twitter?\",\n",
+ " 'author': 'Shanthi Rexaline',\n",
+ " 'published_utc': '2022-05-19T10:24:01Z',\n",
+ " 'article_url': 'https://www.benzinga.com/m-a/22/05/27294767/how-the-tables-have-turned-lawyers-say-elon-musk-could-be-forced-to-buy-twitter',\n",
+ " 'tickers': ['TSLA', 'TWTR'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/27294767',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/05/19/shutterstock_2149752819.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'The uncertainty around the Twitter, Inc. (NYSE: TWTR) deal has intensified ever since Elon Musk\\xa0announced on the company\\'s namesake platform that the deal had been put on hold.\\nA Wall Street Journal report, quoting lawyers, suggests it might be difficult for the Tesla, Inc. (NASDAQ: TSLA) CEO to backtrack at this juncture.\\nWhat Happened: Musk negotiated the agreement with several seller-friendly features and the most notable is one legally called\\xa0\"special performance,\" the Journal noted. This vests Twitter with the right to ask a court to \"force\" Musk into honoring his commitment to buy the company.\\nThe report noted precedence with French fashion retailer LVMH (OTC: LVMUY). After LVMH tried to wiggle out of a previously-agreed ...',\n",
+ " 'keywords': ['News', 'M&A', 'Social Media', 'Tech', 'Media', 'General']},\n",
+ " {'id': 'Nn3Qo7y-90XzHAdtxUq_vfW22x1SDEI-WuscBvxPO5s',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'Is Nuveen ESG LargeCap Growth ETF (NULG) a Strong ETF Right Now?',\n",
+ " 'author': 'Zacks Equity Research',\n",
+ " 'published_utc': '2022-05-19T10:20:06Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/1926345/is-nuveen-esg-largecap-growth-etf-nulg-a-strong-etf-right-now',\n",
+ " 'tickers': ['NULG', 'MSFT', 'NVDA', 'TSLA', 'ESGD', 'ESGU'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/1926345/is-nuveen-esg-largecap-growth-etf-nulg-a-strong-etf-right-now',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/default_article_images/default3.jpg',\n",
+ " 'description': 'Smart Beta ETF report for NULG'},\n",
+ " {'id': 'UK-KBfZAQSs8gjLU8X9q1JyzQKdKvN_Xfzfn8RDm2To',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'Should You Invest in the Vanguard Consumer Discretionary ETF (VCR)?',\n",
+ " 'author': 'Zacks Equity Research',\n",
+ " 'published_utc': '2022-05-19T10:20:05Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/1926341/should-you-invest-in-the-vanguard-consumer-discretionary-etf-vcr',\n",
+ " 'tickers': ['VCR', 'AMZN', 'HD', 'TSLA', 'XLY', 'FDIS'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/1926341/should-you-invest-in-the-vanguard-consumer-discretionary-etf-vcr',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/default_article_images/default45.jpg',\n",
+ " 'description': 'Sector ETF report for VCR'},\n",
+ " {'id': '2vs8Qk0i2tkVNCcxuVZGNb3d1Mz2sYiptPhVtwHBxtU',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Jack Dorsey: Block's Entire Business Will Move Faster Thanks To Bitcoin\",\n",
+ " 'author': 'Samyuktha Sriram',\n",
+ " 'published_utc': '2022-05-19T09:57:07Z',\n",
+ " 'article_url': 'https://www.benzinga.com/markets/cryptocurrency/22/05/27294697/jack-dorsey-blocks-entire-business-will-move-faster-thanks-to-bitcoin',\n",
+ " 'tickers': ['TSLA', 'SQ'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/27294697',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/05/19/shutterstock_1425729506.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Jack Dorsey, CEO of Block Inc (NASDAQ: SQ), expects Bitcoin (CRYPTO: BTC) to be the driving force of the company’s business expansion across the globe,\\xa0CNBC\\xa0reported on Wednesday.\\nWhat Happened: Speaking at Block’s first investor day since 2017, Dorsey expanded on how Bitcoin plays an important role in the firm’s shift in focus.\\n“Bitcoin is the open standard for global money transmission,” stated Dorsey, adding that the leading asset will allow Block’s “entire business to move faster globally.”\\nSee Also: HOW TO ...',\n",
+ " 'keywords': ['News', 'Cryptocurrency', 'Fintech', 'Markets', 'Media']},\n",
+ " {'id': '6zbM1zgVGr_odq1DWQl2tMlHvAftnp2RXz4JW9Y9ack',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Exclusive: Elon Musk-Signed $1 Bill — How You Can Own A Piece Of This Asset For $2 A Share',\n",
+ " 'author': 'Chris Katje',\n",
+ " 'published_utc': '2022-07-11T22:13:36Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/22/07/28025804/exclusive-elon-musk-signed-1-bill-how-you-can-own-a-piece-of-this-asset-for-2-a-share',\n",
+ " 'tickers': ['AAPL', 'TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/28025804',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/07/11/elonmuskdollar.rally_.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Elon Musk is the richest person in the world with a net worth of $227 billion. A $1 bill is comparable to less than a penny to Musk, but one particular $1 bill involving Musk is worth $7,500 and could be a collectible for fans of Musk, SpaceX and Tesla Inc (NASDAQ: TSLA).\\nElon Musk Asset: Alternative investment company Rally, which offers shares in assets on its platform, is debuting on Tuesday, July 12 the first piece in what could become a category of Musk-related assets.\\nA $1 bill\\xa0signed by Musk will go live with an initial offering on Rally at 12 p.m. ET. The asset is valued at $7,500 and will be sold as 3,750 shares at a price of $2 each.\\n“We purchased this asset privately through our network of collectors,” Rally co-founder and Chief Product Officer Rob Petrozzo told Benzinga. “We’re always looking for unique items from important names in pop culture and technology.”\\nPetrozzo said the population of autographs from Musk is small and items typically sell at auction in ranges of $5,000 to $10,000 when they become available.\\n“We felt like pricing ...',\n",
+ " 'keywords': ['News',\n",
+ " 'Top Stories',\n",
+ " 'Exclusives',\n",
+ " 'Trading Ideas',\n",
+ " 'Interview']},\n",
+ " {'id': 'JIXbn69gIFgPF_m0wrBNrlOUV-05Go1LHLQ4_bMZrko',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Why Twitter Stock Got Crushed Today',\n",
+ " 'author': 'newsfeedback@fool.com (Eric Volkman)',\n",
+ " 'published_utc': '2022-07-11T21:34:20Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2022/07/11/why-twitter-stock-got-crushed-today/',\n",
+ " 'tickers': ['TWTR', 'TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/689563/person-staring-at-downward-trending-graph-on-a-laptop.jpg',\n",
+ " 'description': \"The company's war with Elon Musk has only just begun.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'TvJ3EmM6eqy2LXoByUdCf8fvWaQAuqCzsqv_qjCeJOs',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Updated Tesla Semis Seen Testing In The Wild',\n",
+ " 'author': 'Benzinga EV Insights',\n",
+ " 'published_utc': '2022-07-11T21:01:41Z',\n",
+ " 'article_url': 'https://www.benzinga.com/tech/22/07/28024286/updated-tesla-semis-seen-testing-in-the-wild',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/28024286',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/imagecache/og_image_social_share_1200x630/images/story/2022/07/11/semi.png',\n",
+ " 'description': 'Tesla Inc\\xa0(NASDAQ: TSLA) CEO Elon Musk first revealed the Tesla Semi back in November 2017.\\xa0After multiple delays, the company has been hard at work getting the all-electric semi to market. While many preorders have been placed, the rumor is the first customer to receive their\\xa0trucks will be Frito-Lay.\\xa0\\nFor\\xa0now, as ...',\n",
+ " 'keywords': ['News', 'Tech']},\n",
+ " {'id': 'wixxQknzWB8C5XY19_G0qsO5x5HIEyZ6h2tbAPGj3uw',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Will Elon Musk Reneging On Twitter Deal Boost Tesla Stock? Here's The Pattern To Watch\",\n",
+ " 'author': 'Melanie Schaffer',\n",
+ " 'published_utc': '2022-07-11T20:48:46Z',\n",
+ " 'article_url': 'https://www.benzinga.com/trading-ideas/movers/22/07/28022592/will-elon-musks-renege-on-twitter-deal-boost-tesla-stock-heres-the-pattern-to-watch',\n",
+ " 'tickers': ['TSLA', 'TWTR'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/28022592',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/07/11/tesla.bram-van-oost-_k8d5vzeqio-unsplash.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Tesla\\xa0Inc (NASDAQ: TSLA) plunged almost 7% lower at one point on Monday but bounced up sightly off a support level to trade about 6% lower as of press time.\\nThe stock may be reacting to new information regarding Elon Musk’s takeover bid of Twitter, Inc (NYSE: TWTR), which on Friday looked to be officially on the rocks\\xa0after Musk filed to terminate the merger agreement.\\nAfter the takeover bid was formally announced on April 25, Tesla plunged more than 37% between that date and May 24 as a negative reaction to the news. Despite some investors hoping the termination of Musk’s Twitter deal could boost Tesla, the opposite appears to be holding true, at least for the near-term.\\nTesla’s decline on Monday could also be attributed to Wells Fargo weighing in on the stock. One of the firm’s analysts, Colin Langan, maintained an Equal-Weight rating on Monday but lowered the ...',\n",
+ " 'keywords': ['Technicals', 'Trading Ideas']},\n",
+ " {'id': '8fZDxKox7q6vCuTrrooFdbBk9fM0OQm6K_3uc6kczxA',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': \"2 Reasons Elon Musk's Twitter Break-up Is Destined to Lose In Court\",\n",
+ " 'author': 'newsfeedback@fool.com (Brett Schafer)',\n",
+ " 'published_utc': '2022-07-11T18:54:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2022/07/11/2-reasons-elon-musks-twitter-break-up-is-ill-fated/',\n",
+ " 'tickers': ['TWTR', 'TSLA', 'TSN'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/689398/judge-hitting-gavel.jpg',\n",
+ " 'description': 'Historically, it has been tough for someone to abandon a deal after they signed it just because they get cold feet.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'EeGhFpd0m8yscil_I8EY8-SM-03NNueDJE_QtgFXJHo',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Elon Musk Feeds Twitter To The Bears On Attempt To Nix Merger Deal: What Does The Chart Say?',\n",
+ " 'author': 'Melanie Schaffer',\n",
+ " 'published_utc': '2022-07-11T17:43:40Z',\n",
+ " 'article_url': 'https://www.benzinga.com/trading-ideas/movers/22/07/28021524/elon-musk-feeds-twitter-to-the-bears-on-attempt-to-nix-merger-deal-what-does-the-chart-say',\n",
+ " 'tickers': ['TSLA', 'TWTR'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/28021524',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/07/11/technical_analysis_bear_rasmus_svinding_by_pexels.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Twitter\\xa0Inc (NYSE: TWTR) was plunging almost 10% lower on Monday after Tesla\\xa0Inc (NASDAQ: TSLA) CEO Elon Musk filed to terminate his merger agreement to purchase the micro-blogging app.\\nAn ongoing discrepancy between what each party believes to be the accurate number of bot accounts active on the social media site has been the sticking point since Musk formally announced his takeover bid on April 25.\\nAlthough combating the existence of bots originally appeared to motivate Musk to purchase the company, his belief that the number is far above the 5% claimed by Twitter executives has motivated Musk to back out of the deal.\\nFrom a technical standpoint, Twitter looked set to fall further on Monday because on Friday, Twitter broke down bearishly from the symmetrical triangle pattern, which the stock had been trading in since June 8.\\nA symmetrical triangle pattern is created when a stock forms a series of lower highs and higher lows between a descending and an ascending trendline, which meet on the right side of the chart to form an apex. The pattern indicates that the bulls and bears are equally in control.\\nA symmetrical triangle is often formed on ...',\n",
+ " 'keywords': ['Social Media',\n",
+ " 'Technicals',\n",
+ " 'Top Stories',\n",
+ " 'Movers',\n",
+ " 'Trading Ideas',\n",
+ " 'General']},\n",
+ " {'id': '7o8MfEi6HNSZs0Y23b73Mf6UBMwIxpYqFsRtLTo1o9o',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': \"Twitter will seek to get as much of Elon Musk's money as a court will allow \",\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2022-07-11T17:29:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/it-is-time-for-twitter-to-get-as-much-of-elon-musks-money-as-a-court-will-allow-11657332913',\n",
+ " 'tickers': ['TWTR', 'TSLA'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/it-is-time-for-twitter-to-get-as-much-of-elon-musks-money-as-a-court-will-allow-11657332913',\n",
+ " 'image_url': 'https://images.mktw.net/im-561827/social',\n",
+ " 'description': 'As Musk tells Twitter he will not continue deal, the social-media company should get its termination fee and run away fast from the irresponsible Tesla CEO.'},\n",
+ " {'id': 'tQFVUGrX73LiQh_wAK8c0V7kVCYdqt9dO0eEeAXtMYk',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Why Tesla, Rivian, and Lucid Stocks All Tanked Today',\n",
+ " 'author': 'newsfeedback@fool.com (Howard Smith)',\n",
+ " 'published_utc': '2022-07-11T17:17:34Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2022/07/11/why-tesla-rivian-and-lucid-stocks-all-tanked-today/',\n",
+ " 'tickers': ['TSLA', 'TWTR', 'LCID', 'RIVN'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/689451/0x0-charging_01.jpg',\n",
+ " 'description': 'Growth and tech stocks are leading the market downward, but Tesla has its own issues.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 's-t9nt95ScfdTKwUvw1FX9EO8o74QF-H7wEA9KyxYM4',\n",
+ " 'publisher': {'name': 'Investing.com',\n",
+ " 'homepage_url': 'https://www.investing.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/investing.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/investing.ico'},\n",
+ " 'title': 'Twitter: Stock Could Be In For Deep Slump After Musk’s Exit',\n",
+ " 'author': 'Haris Anwar/Investing.com',\n",
+ " 'published_utc': '2022-07-11T16:47:00Z',\n",
+ " 'article_url': 'https://www.investing.com/analysis/twitter-stock-could-be-in-for-deep-slump-after-musks-exit-200626951',\n",
+ " 'tickers': ['TWTR', 'TSLA'],\n",
+ " 'amp_url': 'https://m.investing.com/analysis/twitter-stock-could-be-in-for-deep-slump-after-musks-exit-200626951?ampMode=1',\n",
+ " 'image_url': 'https://i-invdn-com.investing.com/redesign/images/seo/investingcom_analysis_og.jpg'},\n",
+ " {'id': 'w7FHYYW8nodER9D8eXiuPMkJYOUW9znhNULFxvBUO4U',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'PCAR vs. TSLA: Which Stock Should Value Investors Buy Now?',\n",
+ " 'author': 'Zacks Equity Research',\n",
+ " 'published_utc': '2022-07-11T15:40:13Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/1950547/pcar-vs-tsla-which-stock-should-value-investors-buy-now',\n",
+ " 'tickers': ['PCAR', 'TSLA'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/1950547/pcar-vs-tsla-which-stock-should-value-investors-buy-now',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/default_article_images/default9.jpg',\n",
+ " 'description': 'PCAR vs. TSLA: Which Stock Is the Better Value Option?'},\n",
+ " {'id': 'DAdacV8uLKcY2nqnwSI4nNZKnfMX-UWYBkWingJQA9Y',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'Tesla (TSLA) Halts Giga Berlin & Shanghai to Increase Capacity',\n",
+ " 'author': 'Zacks Equity Research',\n",
+ " 'published_utc': '2022-07-11T15:18:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/1950527/tesla-tsla-halts-giga-berlin-shanghai-to-increase-capacity',\n",
+ " 'tickers': ['BWA', 'SMP', 'TSLA', 'LKQ'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/1950527/tesla-tsla-halts-giga-berlin-shanghai-to-increase-capacity',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/articles/main/3e/106.jpg',\n",
+ " 'description': 'Tesla (TSLA) announces temporary suspension of its Gigafactories in Berlin and Shanghai to carry out production upgrades to increase capacity.'},\n",
+ " {'id': 'pZj63bH4ZMAO6cH9WtGcqnZlOuTWrL4nT1n92tffzFA',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': \"Don't Overlook These EV Stocks\",\n",
+ " 'author': 'newsfeedback@fool.com (Travis Hoium)',\n",
+ " 'published_utc': '2022-07-11T14:48:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2022/07/11/dont-overlook-these-ev-stocks/',\n",
+ " 'tickers': ['RIVN', 'GM', 'TSLA', 'AMZN', 'PTRA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/675956/2022-rivian-r1s-driveway.jpg',\n",
+ " 'description': 'Tesla may get all the headlines, but these stocks could be big winners long-term.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'lIqVVfI70dvxIvQo-7i8HX2aeUzsF9OBVN-V9tdwIB0',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'More Likely to 5X First: General Motors Vs Ford',\n",
+ " 'author': 'newsfeedback@fool.com (Justin Pope)',\n",
+ " 'published_utc': '2022-07-11T14:45:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2022/07/11/more-likely-to-5x-first-general-motors-vs-ford/',\n",
+ " 'tickers': ['GM', 'F', 'TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/688303/ev-electric-truck-f-150-lightning-lariat-source-ford-_-image-source_-getty.jpg',\n",
+ " 'description': 'Two automotive old-timers are racing toward an electric future.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'PMGP6V_X--scQVzjcMxdabq_F4oxnz8Q43pTQ2PfgOQ',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': \"If this stock market is shaping up like 2008, here's where we could be headed next, says strategist\",\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2022-07-11T14:42:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/if-this-stock-market-is-shaping-up-like-2008-heres-where-we-could-be-headed-next-says-strategist-11657537698',\n",
+ " 'tickers': ['XBI',\n",
+ " 'TWTR',\n",
+ " 'TSLA',\n",
+ " 'WYNN',\n",
+ " 'MGM',\n",
+ " 'JPM',\n",
+ " 'C',\n",
+ " 'DJIA',\n",
+ " 'COMP',\n",
+ " 'GME',\n",
+ " 'AMC',\n",
+ " 'NIO',\n",
+ " 'AAPL',\n",
+ " 'AMZN',\n",
+ " 'PHUN',\n",
+ " 'BABA',\n",
+ " 'MULN'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/if-this-stock-market-is-shaping-up-like-2008-heres-where-we-could-be-headed-next-says-strategist-11657537698',\n",
+ " 'image_url': 'https://images.mktw.net/im-580804/social',\n",
+ " 'description': \"Comparisons between 2022 and 2008 are making the rounds. Here's one look at what that might mean in the months ahead.\"},\n",
+ " {'id': 'LUKgd7U5uHRuCfxYsFqgZ18nVYJYt1ZHk993ljrprOw',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Epic Musk legal battle a ‘code red’ and ‘nightmare scenario’ for Twitter, say analysts',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2022-07-11T14:26:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/epic-musk-legal-battle-a-code-red-and-nightmare-scenario-for-twitter-say-analysts-11657546202',\n",
+ " 'tickers': ['TWTR', 'TSLA'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/epic-musk-legal-battle-a-code-red-and-nightmare-scenario-for-twitter-say-analysts-11657546202',\n",
+ " 'image_url': 'https://images.mktw.net/im-580933/social',\n",
+ " 'description': 'Twitter Inc. and Elon Musk are digging in for what could be an epic legal battle over Musk’s decision to terminate his agreement to purchase the social media platform.'},\n",
+ " {'id': 'Rx9diB86z0fqtErEcXHpMJXSojoHTwUSOjmHYl56KEg',\n",
+ " 'publisher': {'name': 'Investing.com',\n",
+ " 'homepage_url': 'https://www.investing.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/investing.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/investing.ico'},\n",
+ " 'title': 'U.S. Stocks Tumble Over Heightened Inflation Fears',\n",
+ " 'author': 'NAGA',\n",
+ " 'published_utc': '2022-07-11T13:52:00Z',\n",
+ " 'article_url': 'https://www.investing.com/analysis/us-stocks-tumble-over-heightened-inflation-fears-200626942',\n",
+ " 'tickers': ['TWTR',\n",
+ " 'NTES',\n",
+ " 'TSLA',\n",
+ " 'REGN',\n",
+ " 'MRNA',\n",
+ " 'PDD',\n",
+ " 'PYPL',\n",
+ " 'MELI',\n",
+ " 'JD',\n",
+ " 'PEP',\n",
+ " 'MS',\n",
+ " 'MS',\n",
+ " 'JPM'],\n",
+ " 'amp_url': 'https://m.investing.com/analysis/us-stocks-tumble-over-heightened-inflation-fears-200626942?ampMode=1',\n",
+ " 'image_url': 'https://i-invdn-com.investing.com/redesign/images/seo/investingcom_analysis_og.jpg'},\n",
+ " {'id': 'bG41EOaiZ8Aoi6EHA_tDH0LEL16MXf-Gfr2e3LYBV64',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Could Investing in Redfin Help Make You a Millionaire?',\n",
+ " 'author': 'newsfeedback@fool.com (Liz Brumer-Smith)',\n",
+ " 'published_utc': '2022-07-11T13:43:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2022/07/11/could-investing-in-redfin-help-make-you-a-milliona/',\n",
+ " 'tickers': ['RDFN', 'AAPL', 'TSLA', 'ZG', 'Z'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/689221/getty-stubborn-arms-folded-resistant-to-change.jpg',\n",
+ " 'description': \"This real estate tech company has the potential to make a lot of money over the next two decades, but it's certainly no guarantee.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': '-41C2iNd8ViJvTqkoeGtweO5p7O7ZHg66Bq7KpMouzQ',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Tips for Contractor Workforce Success',\n",
+ " 'author': 'newsfeedback@fool.com (Motley Fool Staff)',\n",
+ " 'published_utc': '2022-07-11T13:39:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2022/07/11/tips-for-contractor-workforce-success/',\n",
+ " 'tickers': ['GOOGL', 'TSLA', 'CRM', 'TWTR', 'GOOG', 'UPWK'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/687976/image.jpg',\n",
+ " 'description': 'It\\'s time for another \"Rule Breaker Investing\" mailbag.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'q84w-7ltKhodJx7lRTd4jbmBcn-b9dDSqLTqlpTGt-A',\n",
+ " 'publisher': {'name': 'Investing.com',\n",
+ " 'homepage_url': 'https://www.investing.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/investing.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/investing.ico'},\n",
+ " 'title': \"Chart Of The Day: Twitter Stock Heading Towards $20 On Musk's Deal Breakup\",\n",
+ " 'author': 'Investing.com',\n",
+ " 'published_utc': '2022-07-11T12:20:00Z',\n",
+ " 'article_url': 'https://www.investing.com/analysis/chart-of-the-day-twitter-stock-heading-towards-20-on-musks-deal-breakup-200626938',\n",
+ " 'tickers': ['TWTR', 'TSLA'],\n",
+ " 'amp_url': 'https://m.investing.com/analysis/chart-of-the-day-twitter-stock-heading-towards-20-on-musks-deal-breakup-200626938?ampMode=1',\n",
+ " 'image_url': 'https://i-invdn-com.investing.com/redesign/images/seo/investingcom_analysis_og.jpg'},\n",
+ " {'id': '59BFj8318b31RyQwchScHKPIxSU-yIiGkYFdV6ji6Ds',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Fed Williams Speech And Other Major Macro Issues For Monday',\n",
+ " 'author': 'Lisa Levin',\n",
+ " 'published_utc': '2022-07-11T11:34:33Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/22/07/28015012/fed-williams-speech-and-other-major-macro-issues-for-monday',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/28015012',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/07/11/image10.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'The Nasdaq 100 settled higher on Friday, following the release of jobs report for the month of June. Tesla Inc (NASDAQ: TSLA) shares gained 2.5% on Friday after the China Passenger Car Association reported that the company sold ...',\n",
+ " 'keywords': ['News', 'Economics', 'Pre-Market Outlook', 'Markets']},\n",
+ " {'id': '2MRI3RQljqwKGj07B_QwZBGyYoQF6mjunpmwjAwPwIc',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Tesla, Twitter And 76 Biggest Movers From Friday',\n",
+ " 'author': 'Lisa Levin',\n",
+ " 'published_utc': '2022-07-11T11:30:29Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/22/07/28014980/tesla-twitter-and-76-biggest-movers-from-friday',\n",
+ " 'tickers': ['EVK',\n",
+ " 'PHAS',\n",
+ " 'TH',\n",
+ " 'APPH',\n",
+ " 'OGCP',\n",
+ " 'COCO',\n",
+ " 'WTRH',\n",
+ " 'SCU',\n",
+ " 'LHDX',\n",
+ " 'IRTC',\n",
+ " 'COIN',\n",
+ " 'YCBD',\n",
+ " 'CLVS',\n",
+ " 'PHVS',\n",
+ " 'SRAX',\n",
+ " 'ISIG',\n",
+ " 'RCRT',\n",
+ " 'MRC',\n",
+ " 'MYMD',\n",
+ " 'INPX',\n",
+ " 'SIGA',\n",
+ " 'GMVD',\n",
+ " 'ONVO',\n",
+ " 'IMRX',\n",
+ " 'TYME',\n",
+ " 'WDFC',\n",
+ " 'BCEL',\n",
+ " 'ORMP',\n",
+ " 'DRMA',\n",
+ " 'HGEN',\n",
+ " 'CCL',\n",
+ " 'KRUS',\n",
+ " 'UPST',\n",
+ " 'ENJY',\n",
+ " 'LYL',\n",
+ " 'CCO',\n",
+ " 'FREQ',\n",
+ " 'APRE',\n",
+ " 'CINT',\n",
+ " 'ACER',\n",
+ " 'DB',\n",
+ " 'MFH',\n",
+ " 'MARA',\n",
+ " 'MULN',\n",
+ " 'ALNA',\n",
+ " 'DBD',\n",
+ " 'UCL',\n",
+ " 'VJET',\n",
+ " 'EVTV',\n",
+ " 'AREB',\n",
+ " 'GME',\n",
+ " 'ADTX',\n",
+ " 'TWTR',\n",
+ " 'FSRD',\n",
+ " 'CDLX',\n",
+ " 'ELOX',\n",
+ " 'MF',\n",
+ " 'AKUS',\n",
+ " 'CFRX',\n",
+ " 'LGMK',\n",
+ " 'SRRK',\n",
+ " 'AUD',\n",
+ " 'ANNX',\n",
+ " 'FWP',\n",
+ " 'ALVO',\n",
+ " 'MGTA',\n",
+ " 'TSLA',\n",
+ " 'NRIX',\n",
+ " 'ABEO',\n",
+ " 'GSUN',\n",
+ " 'UXIN',\n",
+ " 'TTNP',\n",
+ " 'KSPN',\n",
+ " 'SRG',\n",
+ " 'SOLO',\n",
+ " 'ACRX',\n",
+ " 'PRAX',\n",
+ " 'AMPG'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/28014980',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/07/11/image_1.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': \"Gainers\\n\\nSeritage Growth Properties (NYSE: SRG) shares surged 80.3% to settle at $10.96 after the company appointed Adam Metz as Chairman. Preliminary proxy materials also indicated the board recommended shareholders to approve a proposed plan sale.\\nAditxt, Inc. (NASDAQ: ADTX) shares climbed 50% to close at $0.24 on Friday after the company's Adimune therapeutic program completed a toxicology study indicating a favorable safety profile of ADI-100.\\nWaitr Holdings Inc. (NASDAQ: WTRH) gained 48.5% to settle at $0.35 after the company announced a new partnership with Burq to allow deliveries from several new retail industries.\\nOramed Pharmaceuticals Inc. (NASDAQ: ORMP) surged 44.4% to close at $8.20.\\nMyMD Pharmaceuticals, Inc. (NASDAQ: MYMD) jumped 42.1% to close at $4.25 after gaining 9% on Thursday.\\nKura Sushi USA, Inc. (NASDAQ: KRUS) climbed 33.6% to close at $72.29 after the company reported better-than-expected Q3 EPS and sales results. The company also issued FY22 sales guidance above analyst estimates.\\nPhaseBio Pharmaceuticals, Inc. (NASDAQ: PHAS) surged 32.2% to settle at $1.19.\\nOrganovo Holdings, Inc. (NASDAQ: ONVO) surged 29.2% to close at $3.10.\\nImmuneering Corporation (NASDAQ: IMRX) gained 28.9% to close at $7.28 after Chardan Capital initiated coverage on the stock with a Buy rating and announced a price target of $18.\\nHumanigen, Inc. (NASDAQ: HGEN) surged 28.3% to settle at $2.99.\\nClovis Oncology, Inc. (NASDAQ: CLVS) gained 27.7% to close at $2.77. Clovis Oncology said on July 1, it had a Type A meeting with the FDA.\\nMissfresh Limited (NASDAQ: MF) gained 27.6% to settle at $0.4135.\\nTarget Hospitality Corp. (NASDAQ: TH) jumped 25.8% to close at $7.61 after the company raised its FY22 sales guidance above analyst estimates.\\nDiebold Nixdorf, Incorporated (NYSE: DBD) jumped 25.7% to close at $3.13. Wedbush upgraded Diebold Nixdorf from Neutral to Outperform and announced a $5 price target.\\niRhythm Technologies, Inc. (NASDAQ: IRTC) shares surged 23.2% to close at $141.72 after the company provided comment on the recently released Centers for Medicare and Medicaid Services Medicare Physician Fee Schedule Proposed Rule for Calendar Year 2023.\\nInpixon (NASDAQ: INPX) gained 22.5% to settle at $0.1832.\\nMagenta Therapeutics, Inc. (NASDAQ: MGTA) gained 22.4% to close at $2.08.\\nUxin Limited (NASDAQ: UXIN) jumped 21.9% to close at $0.9750.\\nG Medical Innovations Holdings Ltd (NASDAQ: GMVD) gained 21.9% to settle at $0.84.\\nAbeona Therapeutics Inc. (NASDAQ: ABEO) surged 21.5% to settle at $5.49.\\nMarathon Digital Holdings, Inc. (NASDAQ: MARA) rose 21.4% to close at $8.51 as the stock rebounded after dropping after hours following a bitcoin production and mining update.\\nCI&T Inc (NYSE: CINT) gained 21.2% to close at $12.98.\\nTitan Pharmaceuticals, Inc. (NASDAQ: TTNP) jumped 20.9% to close at ...\",\n",
+ " 'keywords': ['News',\n",
+ " 'Penny Stocks',\n",
+ " 'Small Cap',\n",
+ " 'Pre-Market Outlook',\n",
+ " 'Markets',\n",
+ " 'Movers',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': '0MfUJCtPstmnqPLymH5rX6EwnLnobsE6W_wSU1LsKLI',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': \"2 Growth Stocks That a Pair of the World's Smartest Investors Are Buying\",\n",
+ " 'author': 'newsfeedback@fool.com (Trevor Jennewine)',\n",
+ " 'published_utc': '2022-07-11T10:47:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2022/07/11/2-growth-stocks-the-smartest-investors-are-buying/',\n",
+ " 'tickers': ['GOOGL', 'TSLA', 'GOOG'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/688887/investor-59.jpg',\n",
+ " 'description': 'These two hedge fund managers have a track record of outperformance.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'YouYFxKR4FjSreERvaUErv8WosE82X3-zLSpeDHYT74',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'These 10 Dividend Aristocrat stocks have made investors a lot of money -- which might soar from here?',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2022-07-11T10:46:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/heres-the-best-way-to-play-the-s-p-dividend-aristocrat-stocks-11657106983',\n",
+ " 'tickers': ['NOBL',\n",
+ " 'SPY',\n",
+ " 'AAPL',\n",
+ " 'MSFT',\n",
+ " 'AMZN',\n",
+ " 'GOOGL',\n",
+ " 'GOOG',\n",
+ " 'TSLA',\n",
+ " 'MID',\n",
+ " 'REGL',\n",
+ " 'SDY',\n",
+ " 'MCY',\n",
+ " 'LEG',\n",
+ " 'WBA',\n",
+ " 'BEN',\n",
+ " 'NNN',\n",
+ " 'IBM',\n",
+ " 'MMM',\n",
+ " 'VFC',\n",
+ " 'TDS',\n",
+ " 'LOW',\n",
+ " 'ABBV',\n",
+ " 'TROW',\n",
+ " 'WSM',\n",
+ " 'FAST',\n",
+ " 'AFL',\n",
+ " 'ADP',\n",
+ " 'ABT',\n",
+ " 'TGT',\n",
+ " 'NEE',\n",
+ " 'PRGO',\n",
+ " 'SWK',\n",
+ " 'WTRG',\n",
+ " 'GD',\n",
+ " 'ATO',\n",
+ " 'OZK',\n",
+ " 'APD',\n",
+ " 'SWX'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/heres-the-best-way-to-play-the-s-p-dividend-aristocrat-stocks-11657106983',\n",
+ " 'image_url': 'https://images.mktw.net/im-577259/social',\n",
+ " 'description': 'Companies that are in the habit of raising their regular dividends every year often are good choices for long-term growth.'},\n",
+ " {'id': 'kkmZ72zLbza0c1Is0XDQY0b9hAWmEnQUlxSBoYcheaU',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Stock Split Watch: Could Regeneron Be Next?',\n",
+ " 'author': 'newsfeedback@fool.com (Adria Cimino)',\n",
+ " 'published_utc': '2022-07-11T10:30:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2022/07/11/stock-split-watch-could-regeneron-be-next/',\n",
+ " 'tickers': ['REGN', 'AMZN', 'SNY', 'AMGN', 'TSLA', 'BIIB'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/689363/gettyimages-903626078.jpg',\n",
+ " 'description': \"It's the highest-priced biotech stock.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'upULTcCtFs3NyRASTnW7cCedWri8JGXNp3Ct3HV9vKE',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': \"Elon Musk terminates deal to buy Twitter, and Twitter's chairman promises a legal fight\",\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2022-07-11T10:05:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/elon-musk-terminates-deal-to-buy-twitter-11657315801',\n",
+ " 'tickers': ['TWTR', 'TSLA', 'DWAC'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/elon-musk-terminates-deal-to-buy-twitter-11657315801',\n",
+ " 'image_url': 'https://images.mktw.net/im-580323/social',\n",
+ " 'description': \"Elon Musk terminated his agreement to buy Twitter Inc. on Friday, and Twitter's chairman promised a legal fight.\"},\n",
+ " {'id': 'g1x0g4W26jZHQj4geQuv86bJxAld-_urS6u09nNIFJs',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'These are the safest new cars of the year',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2022-07-11T09:02:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/these-are-the-safest-new-cars-of-the-year-11657212169',\n",
+ " 'tickers': ['HMC', 'TM', 'TSLA'],\n",
+ " 'image_url': 'https://images.mktw.net/im-578869/social',\n",
+ " 'description': 'All new cars are pretty safe these days, but some are safer than others. These go above and beyond government-mandated safety features and manufacturer norms'},\n",
+ " {'id': 'S8oP2Mumfu9kMum7sj5pyL8spIENp-ZX3at3c-OOOyw',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': '4 valuable tips for taking a road trip in an electric car',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2022-07-11T09:00:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/4-valuable-tips-for-taking-a-road-trip-in-an-electric-car-11657220786',\n",
+ " 'tickers': ['WMT', 'CHPT', 'SHEL', 'TSLA', 'F'],\n",
+ " 'image_url': 'https://images.mktw.net/im-579084/horizontal',\n",
+ " 'description': \"We took one of the market’s least expensive\\xa0electric cars\\xa0on a 1,100-mile road trip to get our range anxiety in check. Here's how it went.\"},\n",
+ " {'id': 'B-CyKEuQTCx5xb1gmRubKJttrkInH3S4qu4PPdN-m98',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Alibaba Falls 5%, Nio Sheds 3%: What's Weighing On Hong Kong Stocks Today\",\n",
+ " 'author': 'Navdeep Yadav',\n",
+ " 'published_utc': '2022-07-11T04:05:23Z',\n",
+ " 'article_url': 'https://www.benzinga.com/markets/asia/22/07/28012370/alibaba-falls-5-nio-sheds-3-whats-weighing-on-hong-kong-stocks-today',\n",
+ " 'tickers': ['TSLA', 'BABA', 'NIO'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/28012370',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/07/11/shutterstock_521222206.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Shares of U.S.-listed Chinese companies were trading lower in Hong Kong on Monday, with major tech stocks like Alibaba Group Holdings (NYSE: BABA), Tencent Holdings (OTC: TCEHY), Baidu Inc (NASDAQ: BIDU), and JD.com Inc (NASDAQ: JD) slipping between 2% and 5%.\\nIn the electric vehicle segment, Xpeng Inc (NYSE: XPEV), Li Auto Inc (NASDAQ: LI), and Nio Inc (NYSE: NIO) cracked nearly 4% during the early trading hours.\\n\\nHere’s How Nio, Xpeng, Li Auto Are Faring In Hong Kong\\n\\n\\nStocks\\nMovement (+/-)\\n\\n\\n\\n\\nAlibaba\\n-4.96%\\n\\n\\nTencent\\n-2.61%\\n\\n\\nBaidu\\n-2.93%\\n\\n\\nJD.com\\n-3.91%\\n\\n\\nNio\\n-3.18%\\n\\n\\nLi Auto\\n-3.37%\\n\\n\\nXpeng\\n-4.56%\\n\\n\\n\\nShares of these Chinese companies ended mixed on U.S. bourses on Friday.\\nGlobal Markets Recap: At press time, the ...',\n",
+ " 'keywords': ['News',\n",
+ " 'Asia',\n",
+ " 'Global',\n",
+ " 'Markets',\n",
+ " 'Movers',\n",
+ " 'Tech',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': 'DlKu-faRNJGtMxi4-Wmes8NQK3XBsqbY3BwJ0LRkRlw',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Elon Musk's Sister Believed He Would Go Through With Twitter Deal: 'If He Says He's Going To Do It...'\",\n",
+ " 'author': 'Shivdeep Dhaliwal',\n",
+ " 'published_utc': '2022-07-11T02:29:26Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/22/07/28012266/elon-musks-sister-believed-brother-would-go-through-with-the-twitter-deal',\n",
+ " 'tickers': ['TSLA', 'TWTR'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/28012266',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/07/10/screen_shot_2022-07-11_at_9.28.16_am.png?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Tesla Inc (NASDAQ: TSLA) CEO Elon Musk’s sister Tosca Musk believed that the entrepreneur would go ahead with the purchase of Twitter Inc (NYSE: TWTR).\\nWhat Happened: Musk’s younger sister made the revelation in an interview\\xa0with the Sunday Times, published Saturday.\\xa0\\n“If he says he’s going to do it, I would believe that he’s going to do it,” Tosca told the Times, reported The New York Post.\\nTosca said her family is not risk-averse. “A lot of people will say things ...',\n",
+ " 'keywords': ['News', 'Social Media', 'General']},\n",
+ " {'id': 'Vg8_FKd_Rq-0TGMkMN_hthvVCo9Do4PjMNULPAuPvK8',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Twitter, Elon Musk hire legal heavyweights for upcoming court battle: report',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2022-07-10T21:45:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/twitter-elon-musk-hire-legal-heavyweights-for-upcoming-court-battle-report-11657489551',\n",
+ " 'tickers': ['TWTR', 'TSLA', 'AAPL'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/twitter-elon-musk-hire-legal-heavyweights-for-upcoming-court-battle-report-11657489551',\n",
+ " 'image_url': 'https://images.mktw.net/im-561827/social',\n",
+ " 'description': 'Bloomberg News reported Sunday that Twitter has hired merger-law experts Wachtell, Lipton, Rosen & Katz to represent the company as it sues Musk, who announced Friday he was backing out of a $44 billion takeover deal.'},\n",
+ " {'id': '1Jq8xpqzF0NbTjMHf1eX636MkxSXUTnD6IGhTR4Z8i8',\n",
+ " 'publisher': {'name': 'Seeking Alpha',\n",
+ " 'homepage_url': 'https://seekingalpha.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/seekingalpha.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/seekingalpha.ico'},\n",
+ " 'title': 'Checklist To Finding A Market Bottom',\n",
+ " 'author': 'Thomas Lott',\n",
+ " 'published_utc': '2022-07-10T12:00:00Z',\n",
+ " 'article_url': 'https://seekingalpha.com/article/4522568-checklist-to-finding-a-market-bottom',\n",
+ " 'tickers': ['AAPL',\n",
+ " 'HELE',\n",
+ " 'SBNY',\n",
+ " 'SBNYP',\n",
+ " 'SNX',\n",
+ " 'TSLA',\n",
+ " 'UL',\n",
+ " 'ACTV',\n",
+ " 'AFMC',\n",
+ " 'AFSM',\n",
+ " 'AMER',\n",
+ " 'ARKK',\n",
+ " 'AVUV',\n",
+ " 'BAPR',\n",
+ " 'BAUG',\n",
+ " 'BBMC',\n",
+ " 'BBSC',\n",
+ " 'BFOR',\n",
+ " 'BFTR',\n",
+ " 'BJUL',\n",
+ " 'BJUN',\n",
+ " 'BKMC',\n",
+ " 'BKSE',\n",
+ " 'BMAR',\n",
+ " 'BMAY',\n",
+ " 'BOCT',\n",
+ " 'BOSS',\n",
+ " 'BOUT',\n",
+ " 'BUFF',\n",
+ " 'BUL',\n",
+ " 'CALF',\n",
+ " 'CATH',\n",
+ " 'CBSE',\n",
+ " 'CSA',\n",
+ " 'CSB',\n",
+ " 'CSD',\n",
+ " 'CSF',\n",
+ " 'CSML',\n",
+ " 'CWS',\n",
+ " 'CZA',\n",
+ " 'DDIV',\n",
+ " 'DEEP',\n",
+ " 'DES',\n",
+ " 'DEUS',\n",
+ " 'DFAS',\n",
+ " 'DFAT',\n",
+ " 'DGRS',\n",
+ " 'DIA',\n",
+ " 'DIV',\n",
+ " 'DJD',\n",
+ " 'DON',\n",
+ " 'DSPC',\n",
+ " 'DVLU',\n",
+ " 'DWAS',\n",
+ " 'DWMC',\n",
+ " 'EES',\n",
+ " 'EFIV',\n",
+ " 'EPS',\n",
+ " 'EQAL',\n",
+ " 'ESML',\n",
+ " 'ETHO',\n",
+ " 'EWMC',\n",
+ " 'EWSC',\n",
+ " 'EZM',\n",
+ " 'FAB',\n",
+ " 'FAD',\n",
+ " 'FDM',\n",
+ " 'FFTY',\n",
+ " 'FLQM',\n",
+ " 'FLQS',\n",
+ " 'FNDA',\n",
+ " 'FNK',\n",
+ " 'FNX',\n",
+ " 'FNY',\n",
+ " 'FOVL',\n",
+ " 'FRTY',\n",
+ " 'FSMD',\n",
+ " 'FTA',\n",
+ " 'FTDS',\n",
+ " 'FYC',\n",
+ " 'FYT',\n",
+ " 'FYX',\n",
+ " 'GBGR',\n",
+ " 'GLRY',\n",
+ " 'GSSC',\n",
+ " 'HAIL',\n",
+ " 'HIBL',\n",
+ " 'HIBS',\n",
+ " 'HLGE',\n",
+ " 'HOMZ',\n",
+ " 'HSMV',\n",
+ " 'IJH',\n",
+ " 'IJJ',\n",
+ " 'IJK',\n",
+ " 'IJR',\n",
+ " 'IJS',\n",
+ " 'IJT',\n",
+ " 'IMCB',\n",
+ " 'IMCG',\n",
+ " 'IMCV',\n",
+ " 'IPO',\n",
+ " 'ISCB',\n",
+ " 'ISCG',\n",
+ " 'ISCV',\n",
+ " 'ISMD',\n",
+ " 'IUSS',\n",
+ " 'IVDG',\n",
+ " 'IVE',\n",
+ " 'IVOG',\n",
+ " 'IVOO',\n",
+ " 'IVOV',\n",
+ " 'IVV',\n",
+ " 'IVW',\n",
+ " 'IWC',\n",
+ " 'IWM',\n",
+ " 'IWN',\n",
+ " 'IWO',\n",
+ " 'IWP',\n",
+ " 'IWR',\n",
+ " 'IWS',\n",
+ " 'IYY',\n",
+ " 'JDIV',\n",
+ " 'JHMM',\n",
+ " 'JHSC',\n",
+ " 'JPME',\n",
+ " 'JPSE',\n",
+ " 'JSMD',\n",
+ " 'JSML',\n",
+ " 'KAPR',\n",
+ " 'KJAN',\n",
+ " 'KJUL',\n",
+ " 'KNG',\n",
+ " 'KOMP',\n",
+ " 'KSCD',\n",
+ " 'LSAT',\n",
+ " 'MDY',\n",
+ " 'MDYG',\n",
+ " 'MDYV',\n",
+ " 'MGMT',\n",
+ " 'MID',\n",
+ " 'MIDE',\n",
+ " 'MIDF',\n",
+ " 'NAPR',\n",
+ " 'NIFE',\n",
+ " 'NJAN',\n",
+ " 'NOBL',\n",
+ " 'NUMG',\n",
+ " 'NUMV',\n",
+ " 'NUSC',\n",
+ " 'NVQ',\n",
+ " 'OMFS',\n",
+ " 'ONEO',\n",
+ " 'ONEQ',\n",
+ " 'ONEV',\n",
+ " 'ONEY',\n",
+ " 'OSCV',\n",
+ " 'OUSM',\n",
+ " 'OVS',\n",
+ " 'PAMC',\n",
+ " 'PAPR',\n",
+ " 'PAUG',\n",
+ " 'PBP',\n",
+ " 'PBSM',\n",
+ " 'PEXL',\n",
+ " 'PEY',\n",
+ " 'PJAN',\n",
+ " 'PJUN',\n",
+ " 'PLTL',\n",
+ " 'PRFZ',\n",
+ " 'PSC',\n",
+ " 'PTMC',\n",
+ " 'PUTW',\n",
+ " 'PWC',\n",
+ " 'PY',\n",
+ " 'QDIV',\n",
+ " 'QMOM',\n",
+ " 'QQC',\n",
+ " 'QQD',\n",
+ " 'QQEW',\n",
+ " 'QQQ',\n",
+ " 'QQQA',\n",
+ " 'QQQE',\n",
+ " 'QQQJ',\n",
+ " 'QQQM',\n",
+ " 'QQQN',\n",
+ " 'QQXT',\n",
+ " 'QTEC',\n",
+ " 'QVAL',\n",
+ " 'QVML',\n",
+ " 'QVMM',\n",
+ " 'QVMS',\n",
+ " 'QYLD',\n",
+ " 'QYLG',\n",
+ " 'REGL',\n",
+ " 'RFG',\n",
+ " 'RFV',\n",
+ " 'RNMC',\n",
+ " 'RNSC',\n",
+ " 'ROSC',\n",
+ " 'RPG',\n",
+ " 'RPV',\n",
+ " 'RSP',\n",
+ " 'RWJ',\n",
+ " 'RWK',\n",
+ " 'RWL',\n",
+ " 'RYJ',\n",
+ " 'RYT',\n",
+ " 'RZG',\n",
+ " 'RZV',\n",
+ " 'SCHA',\n",
+ " 'SCHM',\n",
+ " 'SDS',\n",
+ " 'SDVY',\n",
+ " 'SFYX',\n",
+ " 'SH',\n",
+ " 'SIXL',\n",
+ " 'SIXS',\n",
+ " 'SLY',\n",
+ " 'SLYG',\n",
+ " 'SLYV',\n",
+ " 'SMCP',\n",
+ " 'SMDV',\n",
+ " 'SMDY',\n",
+ " 'SMLE',\n",
+ " 'SMLF',\n",
+ " 'SMLV',\n",
+ " 'SMMD',\n",
+ " 'SMMV',\n",
+ " 'SNPE',\n",
+ " 'SPAK',\n",
+ " 'SPAX',\n",
+ " 'SPDN',\n",
+ " 'SPDV',\n",
+ " 'SPGP',\n",
+ " 'SPHB',\n",
+ " 'SPHD',\n",
+ " 'SPHQ',\n",
+ " 'SPLG',\n",
+ " 'SPLV',\n",
+ " 'SPMD',\n",
+ " 'SPMO',\n",
+ " 'SPMV',\n",
+ " 'SPSM',\n",
+ " 'SPUS',\n",
+ " 'SPUU',\n",
+ " 'SPVM',\n",
+ " 'SPVU',\n",
+ " 'SPXE',\n",
+ " 'SPXL',\n",
+ " 'SPXN',\n",
+ " 'SPXS',\n",
+ " 'SPXT',\n",
+ " 'SPXU',\n",
+ " 'SPXV',\n",
+ " 'SPXZ',\n",
+ " 'SPY',\n",
+ " 'SPYD',\n",
+ " 'SPYG',\n",
+ " 'SPYV',\n",
+ " 'SPYX',\n",
+ " 'SQEW',\n",
+ " 'SQLV',\n",
+ " 'SSLY',\n",
+ " 'SSO',\n",
+ " 'SSPY',\n",
+ " 'STLV',\n",
+ " 'SVAL',\n",
+ " 'SYLD',\n",
+ " 'TMDV',\n",
+ " 'TPHD',\n",
+ " 'TPLC',\n",
+ " 'TPSC',\n",
+ " 'UAUG',\n",
+ " 'UJAN',\n",
+ " 'UMAR',\n",
+ " 'UMAY',\n",
+ " 'UOCT',\n",
+ " 'UPRO',\n",
+ " 'USEQ',\n",
+ " 'USLB',\n",
+ " 'USMC',\n",
+ " 'USMF',\n",
+ " 'USVM',\n",
+ " 'VB',\n",
+ " 'VBK',\n",
+ " 'VBR',\n",
+ " 'VFLQ',\n",
+ " 'VFMF',\n",
+ " 'VFMO',\n",
+ " 'VFMV',\n",
+ " 'VFQY',\n",
+ " 'VFVA',\n",
+ " 'VIOG',\n",
+ " 'VIOO',\n",
+ " 'VIOV',\n",
+ " 'VO',\n",
+ " 'VOE',\n",
+ " 'VOO',\n",
+ " 'VOOG',\n",
+ " 'VOOV',\n",
+ " 'VOT',\n",
+ " 'VRAI',\n",
+ " 'VTWG',\n",
+ " 'VTWO',\n",
+ " 'VTWV',\n",
+ " 'VUSE',\n",
+ " 'VXF',\n",
+ " 'VXX',\n",
+ " 'VXZ',\n",
+ " 'WBIY',\n",
+ " 'WEBL',\n",
+ " 'WEBS',\n",
+ " 'WWOW',\n",
+ " 'XJH',\n",
+ " 'XJR',\n",
+ " 'XLG',\n",
+ " 'XMHQ',\n",
+ " 'XMLV',\n",
+ " 'XMMO',\n",
+ " 'XMVM',\n",
+ " 'XRLV',\n",
+ " 'XSHD',\n",
+ " 'XSHQ',\n",
+ " 'XSLV',\n",
+ " 'XSMO',\n",
+ " 'XSVM',\n",
+ " 'XVV',\n",
+ " 'XYLD',\n",
+ " 'XYLG',\n",
+ " 'YPS',\n",
+ " 'FSMO'],\n",
+ " 'image_url': 'https://static.seekingalpha.com/cdn/s3/uploads/getty_images/1212035447/image_1212035447.jpg?io=getty-c-w750',\n",
+ " 'description': \"Don't invest in stocks with a timeframe of only 6 months, or even a year. Check here to know where are we today on a forward 5-year basis.\"},\n",
+ " {'id': 'M5C9qtcVWeeqvWSzDL8Kz_wi5WunYLUTqCG291NmjrU',\n",
+ " 'publisher': {'name': 'Investing.com',\n",
+ " 'homepage_url': 'https://www.investing.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/investing.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/investing.ico'},\n",
+ " 'title': '1 Stock To Buy, 1 Stock To Dump This Week: Amazon, Twitter',\n",
+ " 'author': 'Jesse Cohen/Investing.com',\n",
+ " 'published_utc': '2022-07-10T11:50:00Z',\n",
+ " 'article_url': 'https://www.investing.com/analysis/1-stock-to-buy-1-stock-to-dump-this-week-amazon-twitter-200626899',\n",
+ " 'tickers': ['JPM',\n",
+ " 'C',\n",
+ " 'WFC',\n",
+ " 'MS',\n",
+ " 'DAL',\n",
+ " 'UNH',\n",
+ " 'AMZN',\n",
+ " 'ADBE',\n",
+ " 'AAPL',\n",
+ " 'MSFT',\n",
+ " 'GOOGL',\n",
+ " 'TWTR',\n",
+ " 'TSLA'],\n",
+ " 'amp_url': 'https://m.investing.com/analysis/1-stock-to-buy-1-stock-to-dump-this-week-amazon-twitter-200626899?ampMode=1',\n",
+ " 'image_url': 'https://i-invdn-com.investing.com/redesign/images/seo/investingcom_analysis_og.jpg'},\n",
+ " {'id': 'PUA6CBNXU6cJrwE7Mg19TKVQeyuh5wQe4vJFMXY1P1A',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': \"GameStop Finally Announced Its Stock Split. The MOASS Still Isn't Coming\",\n",
+ " 'author': 'newsfeedback@fool.com (Rich Duprey)',\n",
+ " 'published_utc': '2022-07-10T10:37:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2022/07/10/gamestop-finally-announced-its-stock-split/',\n",
+ " 'tickers': ['GME', 'GOOGL', 'TSLA', 'GOOG'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/688865/rocket-stock-chart-digital-meme-getty.jpeg',\n",
+ " 'description': \"The upcoming stock split isn't the catalyst meme stock traders are looking for.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'eOmQay9tOOQGAA1Z6xLuJdHE14FMH_ijCnqg2az1qDc',\n",
+ " 'publisher': {'name': 'Investing.com',\n",
+ " 'homepage_url': 'https://www.investing.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/investing.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/investing.ico'},\n",
+ " 'title': '3 Stocks To Watch This Week: Delta Air Lines, JPMorgan Chase, Tesla',\n",
+ " 'author': 'Haris Anwar/Investing.com',\n",
+ " 'published_utc': '2022-07-10T09:27:00Z',\n",
+ " 'article_url': 'https://www.investing.com/analysis/3-stocks-to-watch-this-week-delta-air-lines-jpmorgan-chase-tesla-200626896',\n",
+ " 'tickers': ['DAL', 'JPM', 'TSLA', 'TWTR'],\n",
+ " 'amp_url': 'https://m.investing.com/analysis/3-stocks-to-watch-this-week-delta-air-lines-jpmorgan-chase-tesla-200626896?ampMode=1',\n",
+ " 'image_url': 'https://i-invdn-com.investing.com/redesign/images/seo/investingcom_analysis_og.jpg'},\n",
+ " {'id': 'BwvNWCZBRz2pKJM01GruyW1S8TnqjiGEbhq7-PQjqts',\n",
+ " 'publisher': {'name': 'Seeking Alpha',\n",
+ " 'homepage_url': 'https://seekingalpha.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/seekingalpha.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/seekingalpha.ico'},\n",
+ " 'title': 'Our Pair Trade: Buy Ford, Sell Tesla',\n",
+ " 'author': 'Pearl Gray Equity and Research',\n",
+ " 'published_utc': '2022-07-10T05:01:57Z',\n",
+ " 'article_url': 'https://seekingalpha.com/article/4522540-our-pair-trade-buy-ford-sell-tesla-stock',\n",
+ " 'tickers': ['TSLA', 'F'],\n",
+ " 'image_url': 'https://static.seekingalpha.com/cdn/s3/uploads/getty_images/1338457868/image_1338457868.jpg?io=getty-c-w750',\n",
+ " 'description': \"We've been bearish on Ford for quite some time now, and we were bullish on Tesla earlier this year. But see why we're now bullish on Ford and bearish on TSLA.\"},\n",
+ " {'id': 'hu00wN_JA4mOFLoV2XboPEB3Xxesrp_8hpLEQKpSWiM',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': '5 lessons from the bear market',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2022-07-09T19:04:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/5-lessons-from-the-bear-market-11657071793',\n",
+ " 'tickers': ['ARKK',\n",
+ " 'TSLA',\n",
+ " 'NFLX',\n",
+ " 'ETSY',\n",
+ " 'ALGN',\n",
+ " 'PYPL',\n",
+ " 'AVUS',\n",
+ " 'RPV',\n",
+ " 'IJR',\n",
+ " 'AVUV',\n",
+ " 'SPTI',\n",
+ " 'VGSH',\n",
+ " 'VTIP',\n",
+ " 'VGLT'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/5-lessons-from-the-bear-market-11657071793',\n",
+ " 'image_url': 'https://images.mktw.net/im-577668/social',\n",
+ " 'description': 'Is all hell breaking loose? Probably not.'},\n",
+ " {'id': 'UIxXZZkgvJh2394ZIWZWiVZbIr83Qd3Ny6kqbHy196c',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Why Tesla Is Down Nearly 30% This Year',\n",
+ " 'author': 'newsfeedback@fool.com (Howard Smith)',\n",
+ " 'published_utc': '2022-07-09T16:26:55Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2022/07/09/why-tesla-is-down-nearly-30-this-year/',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/689226/0x0-roadster_11_XS95I7n.jpg',\n",
+ " 'description': 'Priced for perfection, Tesla stock corrected when it encountered problems in the second quarter.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'hoLaQbWVIv9yZvDvCYDY7VjpnfUZDCfcM6UNfhRcz3c',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Is your crypto on Celsius or Voyager? Factors that determine whether you may get your money back',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2022-07-09T14:00:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/having-crypto-on-celsius-or-voyager-this-determines-whether-you-could-get-your-money-back-11657222639',\n",
+ " 'tickers': ['COIN',\n",
+ " 'MSTR',\n",
+ " 'RIOT',\n",
+ " 'MARA',\n",
+ " 'EBON',\n",
+ " 'OSTK',\n",
+ " 'SQ',\n",
+ " 'TSLA',\n",
+ " 'PYPL',\n",
+ " 'NVDA',\n",
+ " 'AMD',\n",
+ " 'BITI',\n",
+ " 'BTF',\n",
+ " 'XBTF'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/having-crypto-on-celsius-or-voyager-this-determines-whether-you-could-get-your-money-back-11657222639',\n",
+ " 'image_url': 'https://images.mktw.net/im-429485/social',\n",
+ " 'description': \"A weekly look at the most important moves and news in crypto and what's on the horizon in digital assets.\"},\n",
+ " {'id': 'JPvKPSltVbnU6PIdBpvO1XZln3GVt9wa0xja8XvDhHc',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': \"Here's how far house prices are set to fall as rates go up, according to this forecasting firm\",\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2022-07-09T12:29:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/heres-how-far-house-prices-are-set-to-fall-as-rates-go-up-says-capital-economics-11657019932',\n",
+ " 'tickers': ['TSLA',\n",
+ " 'NFE',\n",
+ " 'APO',\n",
+ " 'AMZN',\n",
+ " 'DIS',\n",
+ " 'DJIA',\n",
+ " 'COMP',\n",
+ " 'GME',\n",
+ " 'AMC',\n",
+ " 'NIO',\n",
+ " 'ENDP',\n",
+ " 'AAPL',\n",
+ " 'NVDA',\n",
+ " 'EVFM',\n",
+ " 'BABA'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/heres-how-far-house-prices-are-set-to-fall-as-rates-go-up-says-capital-economics-11657019932',\n",
+ " 'image_url': 'https://images.mktw.net/im-576998/social',\n",
+ " 'description': \"This is not a 2008 reboot, says Capital Economcs' Neil Shearing.\"},\n",
+ " {'id': 'ZWPtB9pxVI4T-7VQoiFOlpj1dBged7dhFZdicEW7OxY',\n",
+ " 'publisher': {'name': 'Seeking Alpha',\n",
+ " 'homepage_url': 'https://seekingalpha.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/seekingalpha.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/seekingalpha.ico'},\n",
+ " 'title': 'Wall Street Breakfast: What Moved Markets',\n",
+ " 'author': 'Wall Street Breakfast',\n",
+ " 'published_utc': '2022-07-09T12:02:27Z',\n",
+ " 'article_url': 'https://seekingalpha.com/article/4522525-wall-street-breakfast-what-moved-markets',\n",
+ " 'tickers': ['TSLA',\n",
+ " 'HAL',\n",
+ " 'APA',\n",
+ " 'COP',\n",
+ " 'MRNA',\n",
+ " 'ETSY',\n",
+ " 'PAYC',\n",
+ " 'PHM',\n",
+ " 'ADM',\n",
+ " 'HES',\n",
+ " 'PM',\n",
+ " 'LIN'],\n",
+ " 'image_url': 'https://static.seekingalpha.com/assets/og_image_1200-29b2bfe1a595477db6826bd2126c63ac2091efb7ec76347a8e7f81ba17e3de6c.png',\n",
+ " 'description': 'Listen on the go! A daily podcast of Wall Street Breakfast will be available every morning on Seeking Alpha, iTunes, Stitcher and Spotify.'},\n",
+ " {'id': 'EqSFqlE-MwBPx5TLnYC_LvaQJxZSqJ7lXQhQQ1MOUXA',\n",
+ " 'publisher': {'name': 'Seeking Alpha',\n",
+ " 'homepage_url': 'https://seekingalpha.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/seekingalpha.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/seekingalpha.ico'},\n",
+ " 'title': 'Tesla: The Last Bubble Standing',\n",
+ " 'author': 'Jordan Sauer',\n",
+ " 'published_utc': '2022-07-09T11:00:00Z',\n",
+ " 'article_url': 'https://seekingalpha.com/article/4522405-tesla-stock-the-last-bubble-standing',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'image_url': 'https://static.seekingalpha.com/cdn/s3/uploads/getty_images/461496224/image_461496224.jpg?io=getty-c-w750',\n",
+ " 'description': 'As the market crumbles around it, the enthusiasm for Tesla is unwavering. With a 1% earnings yield, Tesla is the last bubble standing.'},\n",
+ " {'id': '6enB5g0E9gFzFTYXOIaISDw9tZFP_KToAR40Mf7LExA',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Trending On Twitter: Elon Musk Generates Heaps Of Ridicule And Sympathy For Nixing His Twitter Purchase',\n",
+ " 'author': 'Phil Hall',\n",
+ " 'published_utc': '2022-07-08T22:57:34Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/22/07/28007329/trending-on-twitter-elon-musk-generates-heaps-of-ridicule-and-sympathy-for-nixing-his-twitter-purcha',\n",
+ " 'tickers': ['NYT', 'TSLA', 'TWTR'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/28007329',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/07/08/elonmusk.nationalararchives.png?width=1200&height=800&fit=crop',\n",
+ " 'description': 'To the surprise of absolutely no one, the news Elon Musk was canceling his purchase of Twitter Inc (NYSE: TWTR) set off a firestorm among the platform’s denizens, with most of the reaction skewing heavily against the Tesla Inc (NASDAQ: TSLA) chieftain.\\nMusk Bashing: New York Times (NYSE: NYT) columnist and Nobel Prize-winning economist Paul Krugman combined Musk’s actions with the downfall of the U.K.’s brash prime minister, tweeting, “Someone has to say it: given his evidently poor impulse control, Elon Musk is looking like the Boris Johnson of tech.”\\nCelebrity gossip columnist Perez Hilton offered a rare foray into tech industry happenings by recalling news of Musk’s carnal activities, tweeting, ...',\n",
+ " 'keywords': ['News', 'Exclusives', 'Media']},\n",
+ " {'id': 'n_smbQ7-6z5vtIhwS0FZ4MsoBJNaJ9fBt9W8kwLpWWI',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Why Trump-Linked SPAC DWAC Just Spiked After Hours',\n",
+ " 'author': 'Chris Katje',\n",
+ " 'published_utc': '2022-07-08T22:19:52Z',\n",
+ " 'article_url': 'https://www.benzinga.com/m-a/22/07/28007124/why-trump-linked-spac-dwac-just-spiked-after-hours',\n",
+ " 'tickers': ['TSLA', 'TWTR', 'CFVI', 'DWAC'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/28007124',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/07/08/trump.evan_el-aminshutterstock_1157861293.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'A SPAC taking Donald Trump’s media company public spiked after hours Friday. Here’s why.\\nWhat Happened: Shares of Digital World Acquisition Corp (NASDAQ: DWAC) were trading higher Friday after market close.\\nThe move comes after it was reported that Tesla Inc (NASDAQ: TSLA) CEO Elon Musk was walking away from a planned acquisition of social media platform Twitter Inc (NYSE: TWTR).\\nRelated\\xa0Link:\\xa0Elon Musk Wants Out Of Twitter Deal Due To Lack Of Information: $44B Buyout Off The Table\\nMusk has said previously that he would welcome back President Donald Trump to Twitter if he acquired the company.\\n“Permanent bans should be extremely rare and really reserved ...',\n",
+ " 'keywords': ['M&A', 'Small Cap', 'Top Stories', 'Movers', 'Trading Ideas']},\n",
+ " {'id': 'KgX-0pZ-UcvpWfAbLq-D4DBtZ7rI_lCn73EhwLEMYzU',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Apple CEO Tim Cook Rides In A Rivian Electric Pickup Truck: Here's What We Know\",\n",
+ " 'author': 'Chris Katje',\n",
+ " 'published_utc': '2022-07-08T21:14:45Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/22/07/28006341/apple-ceo-tim-cook-rides-in-a-rivian-electic-pickup-truck-heres-what-we-know',\n",
+ " 'tickers': ['AAPL', 'TSLA', 'RIVN'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/28006341',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/07/08/timcook.rivian.png?width=1200&height=800&fit=crop',\n",
+ " 'description': \"The CEO of one of the largest companies in the world was spotted riding in an electric pickup truck in Idaho Thursday. While this wouldn’t typically be a big news story, it comes as the company has been linked with a potential acquisition or partnership of an electric vehicle company previously.\\nWhat Happened: Apple Inc (NASDAQ: AAPL) CEO Tim Cook was spotted taking a ride in an R1T electric pickup truck from Rivian Automotive (NASDAQ: RIVN) Thursday, as reported by Bloomberg.\\nCook was said to have borrowed the metallic green pickup truck while in Idaho for the Sun Valley Conference. Cook took the truck from the Sun Valley Resort to a restaurant for dinner.\\nRivian CEO and co-founder R.J. Scaringe is in attendance for the Sun Valley Conference. Scaringe brought the\\xa0R1T and R1S, the EV maker's ...\",\n",
+ " 'keywords': ['News', 'Top Stories']},\n",
+ " {'id': 'FmaoGqCNaJAfOvyJKqyWz5D9jM9kWUp3JCz5bpOdWeU',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Nasdaq books longest win streak since November as U.S. stocks end mixed after stronger-than-expected jobs report',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2022-07-08T20:47:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/u-s-stock-futures-dip-as-traders-await-jobs-data-after-best-winning-run-since-march-11657269847',\n",
+ " 'tickers': ['DJIA', 'COMP', 'TWTR', 'PYPL', 'ENPH', 'TSLA', 'GME'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/u-s-stock-futures-dip-as-traders-await-jobs-data-after-best-winning-run-since-march-11657269847',\n",
+ " 'image_url': 'https://images.mktw.net/im-573532/social',\n",
+ " 'description': 'U.S. stocks end mixed late Friday, with the Nasdaq Composite booking its best run since November, as all three major benchmarks score weekly gains.'},\n",
+ " {'id': 'X8Iq6Q23VnM3Oxx7-Mz22xON_4oRqlqjWxbMS29OYWs',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Why Tesla Stock Popped on Friday',\n",
+ " 'author': 'newsfeedback@fool.com (Rich Smith)',\n",
+ " 'published_utc': '2022-07-08T17:28:12Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2022/07/08/why-tesla-stock-popped-on-friday/',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/689138/red-map-of-china-with-a-rising-green-stock-arrow-superimposed.jpg',\n",
+ " 'description': 'Tesla just scored its best sales month ever in China.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'fb3cVyjTlNrnXjQxfBqtfLrBwSrNUoZFd3NXOLNKwmk',\n",
+ " 'publisher': {'name': 'Investing.com',\n",
+ " 'homepage_url': 'https://www.investing.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/investing.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/investing.ico'},\n",
+ " 'title': \"Tesla: Should You Buy Or Sell The Stock After This Year's $350 Billion Wipeout?\",\n",
+ " 'author': 'Haris Anwar/Investing.com',\n",
+ " 'published_utc': '2022-07-08T16:40:00Z',\n",
+ " 'article_url': 'https://www.investing.com/analysis/tesla-should-you-buy-or-sell-the-stock-after-this-years-350-billion-wipeout-200626872',\n",
+ " 'tickers': ['TSLA', 'TWTR'],\n",
+ " 'amp_url': 'https://m.investing.com/analysis/tesla-should-you-buy-or-sell-the-stock-after-this-years-350-billion-wipeout-200626872?ampMode=1',\n",
+ " 'image_url': 'https://i-invdn-com.investing.com/redesign/images/seo/investingcom_analysis_og.jpg'},\n",
+ " {'id': 'gpyRbWAigXuS285SSyMofkscxL0ZHkfgZaqXXcqjTfY',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Tesla, WD-40 Company And 40 Stocks Moving In Friday's Mid-Day Session\",\n",
+ " 'author': 'Lisa Levin',\n",
+ " 'published_utc': '2022-07-08T16:20:40Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/22/07/28002745/tesla-wd-40-company-and-40-stocks-moving-in-fridays-mid-day-session',\n",
+ " 'tickers': ['COCO',\n",
+ " 'TWTR',\n",
+ " 'ADTX',\n",
+ " 'ISIG',\n",
+ " 'FWP',\n",
+ " 'ANNX',\n",
+ " 'SIGA',\n",
+ " 'IHRT',\n",
+ " 'APPH',\n",
+ " 'WDFC',\n",
+ " 'SRG',\n",
+ " 'AUGX',\n",
+ " 'DBD',\n",
+ " 'OGCP',\n",
+ " 'MYMD',\n",
+ " 'GME',\n",
+ " 'IRTC',\n",
+ " 'ENJY',\n",
+ " 'AUD',\n",
+ " 'SRAX',\n",
+ " 'MULN',\n",
+ " 'TSLA',\n",
+ " 'TYME',\n",
+ " 'EVTV',\n",
+ " 'SSU',\n",
+ " 'TTNP',\n",
+ " 'ACER',\n",
+ " 'ALVO',\n",
+ " 'ACRX',\n",
+ " 'ALNA',\n",
+ " 'SAVE',\n",
+ " 'AREB',\n",
+ " 'TH',\n",
+ " 'UXIN',\n",
+ " 'CLVS',\n",
+ " 'RCRT',\n",
+ " 'MRC',\n",
+ " 'BCEL',\n",
+ " 'UPST',\n",
+ " 'KRUS',\n",
+ " 'APRE',\n",
+ " 'FREQ'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/28002745',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/07/08/image40.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': \"Gainers\\n\\nAditxt, Inc. (NASDAQ: ADTX) shares surged 75.7% to $0.2812 after the company's Adimune therapeutic program completed a toxicology study indicating a favorable safety profile of ADI-100.\\nSeritage Growth Properties (NYSE: SRG) shares jumped 55.4% to $9.46 after the company appointed Adam Metz as Chairman. Preliminary proxy materials also indicated the board recommended shareholders to approve a proposed plan sale.\\nClovis Oncology, Inc. (NASDAQ: CLVS) climbed 37.4% to $2.98. Clovis Oncology said on July 1, it had a Type A meeting with the FDA.\\niRhythm Technologies, Inc. (NASDAQ: IRTC) shares jumped 22.3% to $140.89 after the company provided comment on the recently released Centers for Medicare and Medicaid Services Medicare Physician Fee Schedule Proposed Rule for Calendar Year 2023.\\nMyMD Pharmaceuticals, Inc. (NASDAQ: MYMD) rose 21.6% to $3.64 after gaining 9% on Thursday.\\nThe Vita Coco Company, Inc. (NASDAQ: COCO) gained 21.8% to $12.06 after B of A Securities upgraded the stock from Neutral to Buy and announced a $12 price target.\\nKura Sushi USA, Inc. (NASDAQ: KRUS) jumped 21.2% to $65.57 after the company reported better-than-expected Q3 EPS and sales results. The company also issued FY22 sales guidance above analyst estimates.\\nTarget Hospitality Corp. (NASDAQ: TH) gained 17.7% to $7.12 after the company raised its FY22 sales guidance above analyst estimates.\\nAprea Therapeutics, Inc. (NASDAQ: APRE) rose 16.9% to $0.9350. Wedbush initiated coverage on Aprea Therapeutics with an Outperform rating and announced a price target of $3.\\nRecruiter.com Group, Inc. (NASDAQ: RCRT) gained 16.4% to $1.0950.\\nAnnexon, Inc. (NASDAQ: ANNX) jumped 16.6% to $4.63 after the company announced a $130 million private placement.\\nUxin Limited ...\",\n",
+ " 'keywords': ['News',\n",
+ " 'Penny Stocks',\n",
+ " 'Small Cap',\n",
+ " 'Intraday Update',\n",
+ " 'Markets',\n",
+ " 'Movers',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': 'xEe31aSGplj7yNX1Qr-r8EUPtwdee49n6EchRzdq4EY',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Tesla In Talks To Source Camera Modules From Samsung Subsidiary',\n",
+ " 'author': 'Shanthi Rexaline',\n",
+ " 'published_utc': '2022-07-08T16:18:08Z',\n",
+ " 'article_url': 'https://www.benzinga.com/markets/asia/22/07/27996366/tesla-in-talks-to-source-camera-modules-from-samsungs-subsidiary',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/27996366',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/07/08/shutterstock_398082997.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': \"Tesla, Inc. (NASDAQ: TSLA), which uses\\xa0camera vision for its self-driving technology, is in talks to buy camera modules from Samsung Electro-Mechanics, a subsidiary of South Korea's Samsung Electronics.\\nResponding to media reports of Samsung Electro-Mechanics supplying five trillion camera modules, the Korean company\\xa0said it is currently negotiating the relevant details with Tesla. It also clarified that details such as ...\",\n",
+ " 'keywords': ['News', 'Asia', 'Tech', 'Media']},\n",
+ " {'id': 'R2_68AEJaFf1psFvzHpUz7Swz0ITlQeOtvUXygqPG8w',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Did Warren Buffett-Backed BYD Pass Tesla As The World's Largest EV Maker? Not Quite And Here's Why\",\n",
+ " 'author': 'Chris Katje',\n",
+ " 'published_utc': '2022-07-08T16:04:33Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/22/07/27994168/did-warren-buffett-backed-byd-pass-tesla-as-the-worlds-largest-ev-maker-not-quite-and-heres-why',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/27994168',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/07/08/byd.tsla_.png?width=1200&height=800&fit=crop',\n",
+ " 'description': 'The crown as the world’s top electric vehicle producing company has been held by Tesla Inc (NASDAQ: TSLA) for years. While many are taking on Tesla with the goal of displacing the company as the EV leader, the title hasn’t been lost quite yet.\\nWhat Happened: Headlines of Tesla losing the title of the world’s largest electric vehicle producer filled the internet this week. This\\xa0came after Tesla’s quarterly production report and the report from rival BYD Company ADR\\xa0(OTC: BYDDY), a Chinese automaker.\\n“Tesla is still the world’s largest electric car producer despite what you are hearing,” electric vehicle website Electrek shared.\\nTesla reported 254,695 deliveries in the second quarter, up 26.5% year-over-year. The total was down 18% from the 310,048 vehicles delivered in ...',\n",
+ " 'keywords': ['News', 'Global']},\n",
+ " {'id': 'IEnrsuxwyJXe6SjsdCdjcBQIWizC3hAV3mhse1uyWZU',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Prince Harry Called Gas-Guzzler And Hypocrite — Was The Report Incorrect?',\n",
+ " 'author': 'Chris Katje',\n",
+ " 'published_utc': '2022-08-31T23:13:54Z',\n",
+ " 'article_url': 'https://www.benzinga.com/general/entertainment/22/08/28709110/prince-harry-called-gas-guzzler-and-hypocrite-was-the-report-incorrect',\n",
+ " 'tickers': ['TSLA', 'FOX'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/28709110',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/08/31/shutterstock_769140469.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Prince Harry was attacked by Fox News recently for being in a “gas-guzzling SUV.”\\nWas the attack correct or unfounded?\\nWhat Happened: Fox News, a unit of Fox Corporation (NASDAQ: FOX) recently attacked Prince Harry for sitting in an “idling gas-guzzling SUV” while waiting to board a jet.\\nOn the Fox News segment, the hosts point to Harry sitting in the gas-guzzling SUV despite his frequent takes on climate change, alleging the British royal family member was a hypocrite.\\nAs pointed out by InsideEVs, Prince Harry was not inside a gas-guzzling SUV, but rather inside of an Audi e-tron SUV, a full-electric ...',\n",
+ " 'keywords': ['News', 'Entertainment', 'General']},\n",
+ " {'id': 'T04ReqIpBTwTSGjcesQ8tkcX013YLSJz_w34JAKM2TE',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Why Tesla Shares Dropped Today',\n",
+ " 'author': 'newsfeedback@fool.com (Howard Smith)',\n",
+ " 'published_utc': '2022-08-31T18:31:12Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2022/08/31/why-tesla-shares-dropped-today/',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/698853/0x0-nevada_dji_0596-1.jpg',\n",
+ " 'description': \"Competitors are taking concrete steps to dig into Tesla's market share.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': '-w0ZdN2v0nYkpZIbQKHFd8oZdr3va84ePPIctDPfUNA',\n",
+ " 'publisher': {'name': 'Seeking Alpha',\n",
+ " 'homepage_url': 'https://seekingalpha.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/seekingalpha.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/seekingalpha.ico'},\n",
+ " 'title': \"Microsoft Is A Cash Cow Blue Chip: Here's When To Snap Up Shares\",\n",
+ " 'author': 'Logan Kane',\n",
+ " 'published_utc': '2022-08-31T17:38:24Z',\n",
+ " 'article_url': 'https://seekingalpha.com/article/4538205-microsoft-a-cash-cow-blue-chip-time-to-snap-up-shares',\n",
+ " 'tickers': ['AAPL',\n",
+ " 'AMZN',\n",
+ " 'ATVI',\n",
+ " 'BOX',\n",
+ " 'BRK.B',\n",
+ " 'CSCO',\n",
+ " 'GOOG',\n",
+ " 'GOOGL',\n",
+ " 'JNJ',\n",
+ " 'NVDA',\n",
+ " 'TSLA',\n",
+ " 'UNH',\n",
+ " 'ZM',\n",
+ " 'MSFT'],\n",
+ " 'image_url': 'https://static.seekingalpha.com/cdn/s3/uploads/getty_images/1093342572/image_1093342572.jpg?io=getty-c-w750',\n",
+ " 'description': \"Microsoft's business is a juggernaut. Read more on when investors should snap up MSFT stock in light of a tighter Fed and falling market valuations.\"},\n",
+ " {'id': '9Ju7RJCoxPFTROinF_DnLiiJ1F3gGud2YXh-3YGVj-A',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Did General Motors CEO Mary Barra Tap The Brakes On Plan To Pass Tesla In EVs By 2025?',\n",
+ " 'author': 'Adam Eckert',\n",
+ " 'published_utc': '2022-08-31T17:28:32Z',\n",
+ " 'article_url': 'https://www.benzinga.com/trading-ideas/long-ideas/22/08/28705601/did-general-motors-ceo-mary-barra-hit-the-brakes-on-plan-to-pass-tesla-in-evs-by-2025',\n",
+ " 'tickers': ['GM', 'TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/28705601',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/08/31/tslagm.png?width=1200&height=800&fit=crop',\n",
+ " 'description': 'General Motors Company (NYSE: GM) CEO Mary Barra recently discussed the current standing of the automotive industry and touched on the company\\'s transition to electric vehicles;\\xa0but what may be even\\xa0more important is what she didn\\'t say.\\xa0\\nWhat Happened: Barra\\xa0reiterated her confidence\\xa0in\\xa0GM\\'s future electric vehicle\\xa0plans while discussing some challenges the automotive industry is facing last week on Fox Business\\'\\xa0\"The Claman Countdown.\"\\xa0\\nWhen Barra was asked about the company\\'s\\xa0previous EV targets, including the goal to pass\\xa0Tesla Inc (NASDAQ: TSLA) in EVs by 2025, she seemed to dance around the question.\\xa0\\n\"We believe, absolutely, with the portfolio of electric vehicles that we have coming out with different, you know, forms,\\xa0whether it’s a truck, whether it’s a small crossover, a large crossover, [in]\\xa0the strengths of our brands and our ability from a manufacturing perspective. ...',\n",
+ " 'keywords': ['Long Ideas', 'News', 'Global', 'Trading Ideas']},\n",
+ " {'id': 'apCNHnkpkoNjTRc54fQv_D1KJR97iSK1KJQcXkw0v7o',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'Nikola (NKLA) Seeks to Raise Capital, Romeo Buyout on Track',\n",
+ " 'author': 'Zacks Equity Research',\n",
+ " 'published_utc': '2022-08-31T14:50:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/1974639/nikola-nkla-seeks-to-raise-capital-romeo-buyout-on-track',\n",
+ " 'tickers': ['TSLA', 'PII', 'BLBD', 'NKLA'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/1974639/nikola-nkla-seeks-to-raise-capital-romeo-buyout-on-track',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/articles/main/b6/9617.jpg',\n",
+ " 'description': 'Nikola (NKLA) plans to issue up to $400 million new stock in an \"at-the-market\" offering as it aims to boost production amid rising costs.'},\n",
+ " {'id': '8lJL3JnyRHlQtzBVNWk4vgRrnCq9cmqXdx0hJN8nESQ',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'Tesla (TSLA) Fully Self-Driven Cars to Hit US, Europe by 2022-End',\n",
+ " 'author': 'Zacks Equity Research',\n",
+ " 'published_utc': '2022-08-31T13:57:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/1974598/tesla-tsla-fully-self-driven-cars-to-hit-us-europe-by-2022-end',\n",
+ " 'tickers': ['BWA', 'TSLA', 'LCII'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/1974598/tesla-tsla-fully-self-driven-cars-to-hit-us-europe-by-2022-end',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/articles/main/3e/106.jpg',\n",
+ " 'description': 'Tesla (TSLA) plans to launch complete self-driven cars in the US and Europe by 2022-end. The cars can be used as a ride-hailing service when not used by owners to fetch extra income for them.'},\n",
+ " {'id': 'uEclRXykPRvh4ThYKt5clOlVTWmFgdALhOJLjcmxY5U',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'Ulta Beauty and Meta Platforms have been highlighted as Zacks Bull and Bear of the Day',\n",
+ " 'author': 'Zacks Equity Research',\n",
+ " 'published_utc': '2022-08-31T13:12:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/1974617/ulta-beauty-and-meta-platforms-have-been-highlighted-as-zacks-bull-and-bear-of-the-day',\n",
+ " 'tickers': ['AMZN', 'ULTA', 'TSLA', 'GOOGL', 'META'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/1974617/ulta-beauty-and-meta-platforms-have-been-highlighted-as-zacks-bull-and-bear-of-the-day',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/articles/main/cc/12495.jpg',\n",
+ " 'description': 'Ulta Beauty and Meta Platforms are part of Zacks Bull and Bear of the Day article.'},\n",
+ " {'id': 'GlwS40YIDhdQDo5ACD2v_c3nLsLzSOuHfxGaz3yq5ko',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'Is Trending Stock Tesla, Inc. (TSLA) a Buy Now?',\n",
+ " 'author': 'Zacks Equity Research',\n",
+ " 'published_utc': '2022-08-31T13:00:12Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/1974432/is-trending-stock-tesla-inc-tsla-a-buy-now',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/1974432/is-trending-stock-tesla-inc-tsla-a-buy-now',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/default_article_images/default20.jpg',\n",
+ " 'description': \"Zacks.com users have recently been watching Tesla (TSLA) quite a bit. Thus, it is worth knowing the facts that could determine the stock's prospects.\"},\n",
+ " {'id': 'RN6oh_OXGSGippKnh0vrvyKskt5YTgA8mSSNjlkP5Yw',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'EV Maker Polestar and Candela Team Up to Produce Electric Boats',\n",
+ " 'author': 'newsfeedback@fool.com (Beth McKenna)',\n",
+ " 'published_utc': '2022-08-31T12:30:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2022/08/31/electric-boat-stocks-candela-polestar/',\n",
+ " 'tickers': ['PSNY', 'TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/698485/electric-boat-candela-c-8-polestar-stock-partnership.jpg',\n",
+ " 'description': 'The electric boat revolution is underway, with Candela already producing premium electric leisure watercraft and planning to enter the commercial market.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': '5iAjwbiKRXY_szfR4jhGXvrFeyIslV-LiH40H-bVTT4',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': \"Tech Sell-Off: 1 Stock-Split Stock You'll Regret Not Buying on the Dip\",\n",
+ " 'author': 'newsfeedback@fool.com (Anthony Di Pizio)',\n",
+ " 'published_utc': '2022-08-31T12:28:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2022/08/31/tech-sell-off-1-stock-split-stock-not-buying-dip/',\n",
+ " 'tickers': ['PANW', 'GOOGL', 'TSLA', 'AMZN', 'MS', 'GOOG', 'SHOP'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/698508/a-picture-of-a-dollar-coin-being-split-in-half-on-top-of-a-blue-share-certificate.jpg',\n",
+ " 'description': \"There have been a string of high-profile stock splits in 2022, and there's another one around the corner.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'V7M4ennxALR2QqWkrfxhrG3PVxTPLKvxjzUP72hGcOw',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Warren Buffett Is Selling His Favorite Electric Vehicle Stock. Should You?',\n",
+ " 'author': 'newsfeedback@fool.com (Neha Chamaria)',\n",
+ " 'published_utc': '2022-08-31T11:07:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2022/08/31/warren-buffett-selling-ev-stock-should-you/',\n",
+ " 'tickers': ['BRK.A', 'BRK.B', 'TSLA', 'GM'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/698720/ev-electric-vehicle-charging-station-waiting.jpg',\n",
+ " 'description': \"Buffett just sold some shares of the world's largest manufacturer of electric and plug-in hybrid vehicles.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'vOlfChjxj7I5c_M19kmc3rykPDE5ILLVys3eCFcoKpI',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Elon Musk's Starlink To Beam 'Kickass' Internet On Royal Caribbean Cruise Ships: What You Need To Know\",\n",
+ " 'author': 'Shanthi Rexaline',\n",
+ " 'published_utc': '2022-08-31T11:01:22Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/22/08/28696019/elon-musks-starlink-to-beam-kickass-internet-connection-to-royal-caribbean-cruise-ships-what-you-nee',\n",
+ " 'tickers': ['RCL', 'TSLA', 'TMUS'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/28696019',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/08/31/shutterstock_1113726092.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': \"Cruise ship operator Royal Caribbean Cruises Ltd. (NYSE: RCL) announced Tuesday it plans to use\\xa0SpaceX unit Starlink’s high-speed, low latency satellite internet connection.\\nWhat Happened: Royal Caribbean said it envisages installation of the service on all Royal Caribbean international, celebrity cruises and silver cruises ships, along with all new vessels for each of the brands.\\nSpaceX is led by\\xa0Elon Musk —\\xa0the world's richest person who also serves as the CEO of\\xa0Tesla Inc. (NASDAQ: TSLA), Neuralink and the Boring Company.\\nThe deployment is set to begin immediately following the trial onboard “Freedom of the Seas.” ...\",\n",
+ " 'keywords': ['News', 'Tech']},\n",
+ " {'id': '9ZyRfGOAvoohy3PMZprh0mpA0BPEFabiWdCW1S2paNE',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Elon Musk Praises Tesla Team After Spending A Day 'Walking Entire Giga Berlin Production Line'\",\n",
+ " 'author': 'Shanthi Rexaline',\n",
+ " 'published_utc': '2022-08-31T10:47:06Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/22/08/28696179/elon-musk-lauds-this-tesla-team-for-its-excellent-work',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/28696179',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/08/31/shutterstock_2056578278.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'One of Tesla, Inc.’s (NASDAQ: TSLA) newest Gigafactories is ramping up nicely, according to the company\\'s chief executive.\\nWhat Happened: Elon Musk said he spent a day walking the \"entire Giga Berlin production line,\" praising the team there for \"doing excellent work.\"\\nSpent the day walking entire Giga Berlin production line – team is doing excellent work!\\n— Elon Musk (@elonmusk) August 30, 2022\\nThe Giga Berlin is Tesla’s first factory in Europe; the company has\\xa0so far been relying on the ...',\n",
+ " 'keywords': ['News', 'Tech']},\n",
+ " {'id': 'QFV4QnVQ5o0Gt2Ukel8SMrlvrjrjT9s_oJ6S3-A2Ex0',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Snap Reportedly Plans To Lay Off 20% Of Workforce Just Weeks After CEO Closed Deal For $120M Mansion',\n",
+ " 'author': 'Aaron Bry',\n",
+ " 'published_utc': '2022-08-31T10:29:09Z',\n",
+ " 'article_url': 'https://www.benzinga.com/general/22/08/28695364/snap-ceo-buys-this-120-million-mansion-as-company-lays-off-hundreds-of-employees',\n",
+ " 'tickers': ['NFLX', 'TSLA', 'SHOP', 'SNAP'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/28695364',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/08/31/1599px-evan_spiegel_at_techcrunch.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Snap Inc (NYSE: SNAP), the parent company of the social media app Snapchat, plans to lay off around 20% of its workforce,\\xa0The Verge reported on Tuesday.\\xa0\\nThis report comes just weeks after Snap\\xa0founder and CEO\\xa0Evan Spiegel\\xa0closed the deal — which was said to be in the works for nearly two years —\\xa0on a $120 million mansion with his wife Miranda Kerr in Los Angeles.\\nThe real-estate purchase is one of the most expensive houses ever bought in ...',\n",
+ " 'keywords': ['Social Media', 'Media', 'General']},\n",
+ " {'id': '8mc5ZUQlO8FNpgvb37qjgMgZRAOgQxhIarPYmZ-CMQg',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'US Stock Futures Mostly Lower Ahead Of Fed Speakers; Crude Oil Drops Over 2%',\n",
+ " 'author': 'Lisa Levin',\n",
+ " 'published_utc': '2022-08-31T09:52:06Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/earnings/22/08/28696893/us-stock-futures-mostly-lower-ahead-of-fed-speakers-crude-oil-drops-over-2',\n",
+ " 'tickers': ['AAPL', 'DCI', 'HPQ', 'PVH', 'TSLA', 'AMBA', 'DBI'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/28696893',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/08/31/image28.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Pre-open movers\\nU.S. stock futures traded mostly lower in early pre-market trade after recording losses for a third straight session on Tuesday. The Dow Jones tumbled more than 300 points, while the Nasdaq Composite dropped over 1.1% in the previous session.\\nInvestors are awaiting earnings results from Donaldson Company, Inc. (NYSE: DCI), Brown-Forman Corporation (NYSE: BF-B) and Designer Brands Inc. (NYSE: DBI).\\nCleveland Federal Reserve Bank President Loretta Mester is set to speak at 8:00 a.m. ET, while Federal Reserve Bank of Dallas President Lorie Logan will speak at 6:00 p.m. ET. Federal Reserve Bank of Atlanta President Raphael Bostic is set to speak at 6:30 p.m. ET. The ADP national employment report for August will be released at 8:15 a.m. ET, while the Chicago PMI for August is scheduled for release at 9:45 a.m.\\nCheck out this: US Stocks Drop Again Amid Low Volatility\\nFutures for the Dow Jones Industrial Average dropped 70 points to 31,705.00 while the Standard & Poor’s 500 index futures fell 6.50 points to 3,981.00. Futures for the Nasdaq index rose 6 points to 12,364.75.\\nOil prices traded lower as Brent crude futures fell 2.5% to trade at $95.41 per barrel, while US WTI crude futures fell 2.6% to trade at $89.29 ...',\n",
+ " 'keywords': ['News',\n",
+ " 'Earnings',\n",
+ " 'Eurozone',\n",
+ " 'Futures',\n",
+ " 'Small Cap',\n",
+ " 'Global',\n",
+ " 'Pre-Market Outlook',\n",
+ " 'Markets']},\n",
+ " {'id': 'wTNJ_3Ug-AoqhUXRjCnTDRbZSMMB1R-eKjV06nHCrlI',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Tesla vs. the S&P 500: Which Is the Better First Investment?',\n",
+ " 'author': 'newsfeedback@fool.com (Catherine Brock)',\n",
+ " 'published_utc': '2022-08-31T09:52:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2022/08/31/tesla-vs-the-sp-500-better-first-investment/',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/698525/3-adult-smartphone-smiling.jpg',\n",
+ " 'description': 'Choose your first investment with the goal of protecting your money and your investing confidence.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'vdJUStxOsEfWdRl6wXU4UmoLm_QmotSYF6q8b0IUbo8',\n",
+ " 'publisher': {'name': 'Investing.com',\n",
+ " 'homepage_url': 'https://www.investing.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/investing.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/investing.ico'},\n",
+ " 'title': '3 WallStreetBets Stocks Wall Street Is Mostly Bullish On',\n",
+ " 'author': 'MarketBeat.com',\n",
+ " 'published_utc': '2022-08-31T09:03:00Z',\n",
+ " 'article_url': 'https://www.investing.com/analysis/3-wallstreetbets-stocks-wall-street-is-mostly-bullish-on-200629214',\n",
+ " 'tickers': ['TSLA', 'AMD', 'DELL', 'HPQ', 'INTC', 'SOFI'],\n",
+ " 'amp_url': 'https://m.investing.com/analysis/3-wallstreetbets-stocks-wall-street-is-mostly-bullish-on-200629214?ampMode=1',\n",
+ " 'image_url': 'https://i-invdn-com.investing.com/redesign/images/seo/investingcom_analysis_og.jpg'},\n",
+ " {'id': 'coZrJYxLxkQEHkHVhUO1SN6WNl6WhNml2CE764WvV6E',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'South Korea To Give Million Won Each To Families Of Newborns Amid Concerns Of Of Population Halving',\n",
+ " 'author': 'Navdeep Yadav',\n",
+ " 'published_utc': '2022-08-31T08:47:56Z',\n",
+ " 'article_url': 'https://www.benzinga.com/government/22/08/28696434/south-korea-plans-to-give-700-000-won-each-to-families-of-newborns-after-smashing-own-record-for-wor',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/28696434',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/08/31/shutterstock_2078480329_1.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Amid fears of a severe population crisis in South Korea, the government has unveiled a monthly allowance of one\\xa0million won ($740) for every family with a newborn child.\\nWhat Happened: Last week, South Korea\\'s fertility rate dropped further, shattering its own world record — and to address the issue, the government, in its budget proposal, introduced \"parent pay,\" Bloomberg reported.\\nBeginning next year, the administration will hand out 700,000 won ($522) monthly for the newborns and then rise to the full amount in 2024.\\nSee ...',\n",
+ " 'keywords': ['News', 'Government', 'Regulations', 'Global']},\n",
+ " {'id': '8T_W09C43EpD9p2ih2mMPmj3gEYF678CTHufoaL8XjA',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Some Tesla Model Ys To Get Delivered Quicker In China: Here's The New Wait Time\",\n",
+ " 'author': 'Bhavik Nair',\n",
+ " 'published_utc': '2022-08-31T08:23:44Z',\n",
+ " 'article_url': 'https://www.benzinga.com/markets/asia/22/08/28695731/tesla-shortens-wait-time-for-certain-model-ys-in-china',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/28695731',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/08/31/shutterstock_2144790221.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': \"Tesla Inc\\xa0(NASDAQ:\\xa0TSLA) has reduced the wait time for its rear-wheel drive\\xa0Model Ys\\xa0in China to one to four months, reported\\xa0Reuters, citing the automaker's China website.\\xa0\\nThis is the second such change in less than a month, as per the report.\\nSee Also:\\xa0Elon Musk Wants More Oil And Gas For Civilization To Function, ...\",\n",
+ " 'keywords': ['News', 'Asia', 'Media']},\n",
+ " {'id': 'ZFGOQ3clNTVtsbKP5-YnY6itwHGZey2wKxrgUC5H2e0',\n",
+ " 'publisher': {'name': 'Investing.com',\n",
+ " 'homepage_url': 'https://www.investing.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/investing.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/investing.ico'},\n",
+ " 'title': 'Stocks Move Near A Massive Inflection Point',\n",
+ " 'author': 'Michael Kramer',\n",
+ " 'published_utc': '2022-08-31T08:05:00Z',\n",
+ " 'article_url': 'https://www.investing.com/analysis/stocks-move-near-a-massive-inflection-point-200629208',\n",
+ " 'tickers': ['AMD', 'NVDA', 'TSLA'],\n",
+ " 'amp_url': 'https://m.investing.com/analysis/stocks-move-near-a-massive-inflection-point-200629208?ampMode=1',\n",
+ " 'image_url': 'https://i-invdn-com.investing.com/redesign/images/seo/investingcom_analysis_og.jpg'},\n",
+ " {'id': '3lrf97IFawvQdXQd0OSgKljq4xAs_KjK1QRIQ6uLqI8',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Warren Buffett-Backed Automaker's Shares Plunge 12% As Berkshire Cuts $47M Stake: Analyst Sees Signs Of 'Big Correction'\",\n",
+ " 'author': 'Bhavik Nair',\n",
+ " 'published_utc': '2022-08-31T06:14:17Z',\n",
+ " 'article_url': 'https://www.benzinga.com/markets/asia/22/08/28695797/warren-buffetts-berkshire-hathaway-offloads-byd-shares-worth-about-47-million-shares-plunge-12-intra',\n",
+ " 'tickers': ['TSLA', 'NIO'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/28695797',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/08/31/shutterstock_488519512.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Shares of\\xa0BYD Co. Ltd.\\xa0(OTC:\\xa0BYDDF) (OTC: BYDDY) fell more than 12% on Wednesday morning Hong Kong session after\\xa0Warren Buffett’s firm\\xa0Berkshire Hathaway\\xa0(NYSE: BRK-A) (NYSE: BRK-B)\\xa0trimmed its stake in the company.\\nWhat Happened:\\xa0Berkshire sold 1.33 million shares of BYD at an average price of HK$277.1 (about $47 million), with the group now owning 218.719 million shares, cutting its stake to 19.92% from 20.04%, as per an exchange filing.\\xa0\\nAlso Read:\\xa0Tech Giant Baidu Falls 7% On Revenue Drop: Chinese PMI ...',\n",
+ " 'keywords': ['News',\n",
+ " 'Asia',\n",
+ " 'Events',\n",
+ " 'Top Stories',\n",
+ " 'Markets',\n",
+ " 'Movers',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': 'oMD2bG453sCQbHXUUMITo6pe_Mofc6DakIOY7wB2Rrg',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Tesla Model 3 Totaled By School Bus (Video)',\n",
+ " 'author': 'Chris Katje',\n",
+ " 'published_utc': '2022-08-31T04:16:35Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/22/08/28694236/tesla-model-3-totaled-by-school-bus-video',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/28694236',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/08/31/shutterstock_1183829566.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'One of the goals of Tesla Inc (NASDAQ: TSLA) and its CEO Elon Musk is a transition to full-self driving. Musk believes FSD leads to fewer accidents and could see fewer vehicles, like a Tesla Model 3, totaled.\\xa0\\nWhat Happened: A Tesla Model 3 was backed over and crushed by a school bus in a video that was widely viewed online.\\nThe video was shared by Wham Baam Teslacam on YouTube, an account that has over 450,000 subscribers. The video shows the bus climbing over the front end of a Model 3 that couldn’t move out of the way.\\nThe ...',\n",
+ " 'keywords': ['News', 'Tech']},\n",
+ " {'id': 'xhBXzVgexWZpySKdeTYtjCTIvyhwZUp-qlQfk3cut7w',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Elon Musk Wants More Oil And Gas For Civilization To Function, But There's A Catch ...\",\n",
+ " 'author': 'Chris Katje',\n",
+ " 'published_utc': '2022-08-31T01:45:29Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/22/08/28692924/elon-musk-wants-more-oil-and-gas-for-civilization-to-function-but-theres-a-catch',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/28692924',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/08/30/elon_musk_03.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': \"Tesla Inc\\xa0(NASDAQ) CEO\\xa0Elon Musk, the leader of the world's largest electric-vehicle company and the richest man globally, is calling for more oil and gas production. Some are finding this puzzling and contradictory, but here's the meaning behind his comments.\\xa0\\nWhat Happened:\\xa0Speaking at the 2022 Offshore Northern Shore Conference in Norway, Musk\\xa0discussed\\xa0the importance of oil and gas.\\n“I want to thank the leaders and the people of Norway for their long-standing support. I do think we actually need more oil and gas for civilization to function,” he said. “But simultaneously moving ...\",\n",
+ " 'keywords': ['News', 'Commodities', 'Top Stories', 'Markets', 'Tech']},\n",
+ " {'id': 'x_l-hE-_aAQk9_hY4jJiQoDQycS4-Fxnwc92D6HIMLI',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Elon Musk Calls On European Energy Leaders For More Oil And Gas — And This Company Stands To Benefit',\n",
+ " 'author': 'AJ Fabino',\n",
+ " 'published_utc': '2022-08-30T22:53:12Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/22/08/28690214/elon-musk-calls-on-european-energy-leaders-for-more-gas-and-oil-and-this-company-st',\n",
+ " 'tickers': ['C', 'MFG', 'MS', 'SWN', 'TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/28690214',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/08/30/oilgas.anton_watmanshutterstock_289902737.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Tesla Inc (NASDAQ: TSLA) CEO\\xa0Elon Musk told shareholders on Monday at the 2022 Offshore Northern Shore Conference\\xa0in Stavanger, Norway, that the world needs more oil and natural gas, and should invest heavily in renewable energy sources.\\n\"I think we actually need more oil and gas, not less, but simultaneously moving as fast as we can to a sustainable energy economy,”\\xa0Musk said.\\nEnter\\xa0Southwestern Energy Company (NYSE: SWN), an independent energy company focused on responsibly developing America’s abundant supply of natural gas, oil and natural gas liquids to fuel economic growth.\\nSouthwestern Energy\\xa0saw annual revenue soar to $6.67 billion in 2021, a major uptick from the $2.31 billion it generated in 2020.\\n“SWN’s losses also shrunk in 2021, as it lost $25 million compared to the $3.11 billion it did in ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['News',\n",
+ " 'Analyst Color',\n",
+ " 'Penny Stocks',\n",
+ " 'Mid Cap',\n",
+ " 'Price Target',\n",
+ " 'Commodities',\n",
+ " 'Global',\n",
+ " 'Top Stories',\n",
+ " 'After-Hours Center',\n",
+ " 'Markets',\n",
+ " 'Analyst Ratings',\n",
+ " 'Trading Ideas',\n",
+ " 'General']},\n",
+ " {'id': 'K1XCK47SKzXA_SEJpRcb0C7pp-WjV1KZ_Xw8EVFftEc',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Think Bitcoin Will Go Down? New ETF Bets Against Bitcoin Bull Michael Saylor And MicroStrategy',\n",
+ " 'author': 'Chris Katje',\n",
+ " 'published_utc': '2022-08-30T22:23:48Z',\n",
+ " 'article_url': 'https://www.benzinga.com/markets/cryptocurrency/22/08/28691433/think-bitcoin-will-go-down-new-etf-bets-against-bitcoin-bull-michael-saylor-and-microstrat',\n",
+ " 'tickers': ['AAPL',\n",
+ " 'NKLA',\n",
+ " 'COIN',\n",
+ " 'HOOD',\n",
+ " 'MSTR',\n",
+ " 'SARK',\n",
+ " 'NVDA',\n",
+ " 'PENN',\n",
+ " 'GME',\n",
+ " 'NKE',\n",
+ " 'PFE',\n",
+ " 'TSLA',\n",
+ " 'AMC',\n",
+ " 'PYPL',\n",
+ " 'BITI',\n",
+ " 'TLRY',\n",
+ " 'BYND',\n",
+ " 'PTON'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/28691433',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/08/30/shutterstock_1038671149.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': \"MicroStrategy Incorporated (NASDAQ: MSTR) Executive Chairman Michael Saylor has been one of the most outspoken bulls for Bitcoin (CRYPTO: BTC) in recent years, a thesis that has played out at the software company he founded, which invests heavily in the leading cryptocurrency.\\nWhat Happened: A new ETF from Rex Shares called the Rex Short MSTR ETF will allow investors the opportunity to easily short the performance of MicroStrategy and in effect short the price of Bitcoin as well.\\nThe inverse ETF bets against the performance of the stock and offers an investment opportunity for those who believe the stock will fall in value. Single-stock ETFs and inverse ETFs are typically meant for short-term trades and for experienced investors.\\n“If you hate Bitcoin, you can short our stock,” Saylor told Benzinga in an interview this year.\\nRelated Link: Exclusive: Michael Saylor's MicroStrategy Is Married To Bitcoin\\xa0\\nThe new ETF will short the stock and provide an opportunity for investors to profit along the way if the prices of MicroStrategy and Bitcoin fall.\\nAs of June 30, 2022, MicroStrategy holds 129,699 Bitcoin, making it one of the largest holders of the leading ...Full story available on Benzinga.com\",\n",
+ " 'keywords': ['News',\n",
+ " 'Penny Stocks',\n",
+ " 'Cryptocurrency',\n",
+ " 'Specialty ETFs',\n",
+ " 'New ETFs',\n",
+ " 'Small Cap',\n",
+ " 'After-Hours Center',\n",
+ " 'Markets',\n",
+ " 'Trading Ideas',\n",
+ " 'ETFs']},\n",
+ " {'id': '2BGS9t3c_noXujBMt6FV0JiAeREGCODuiDTfGZupEjo',\n",
+ " 'publisher': {'name': 'Investing.com',\n",
+ " 'homepage_url': 'https://www.investing.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/investing.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/investing.ico'},\n",
+ " 'title': \"Twitter's Stock Under Pressure As Court Saga Takes Its Toll\",\n",
+ " 'author': 'BlackBull Markets',\n",
+ " 'published_utc': '2022-08-30T21:54:00Z',\n",
+ " 'article_url': 'https://www.investing.com/analysis/twitters-stock-under-pressure-as-court-saga-takes-its-toll-200629204',\n",
+ " 'tickers': ['TWTR', 'TSLA', 'MKC'],\n",
+ " 'amp_url': 'https://m.investing.com/analysis/twitters-stock-under-pressure-as-court-saga-takes-its-toll-200629204?ampMode=1',\n",
+ " 'image_url': 'https://i-invdn-com.investing.com/redesign/images/seo/investingcom_analysis_og.jpg'},\n",
+ " {'id': 'Mey-KpY7KF8-nGeSDb1Fw1Jd75OMvrhHta8EeKnQMTg',\n",
+ " 'publisher': {'name': 'Invezz',\n",
+ " 'homepage_url': 'https://invezz.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/invezz.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/invezz.png'},\n",
+ " 'title': 'Expert on Musk’s Twitter deal: there’s a 35% chance now',\n",
+ " 'author': 'Benson Toti',\n",
+ " 'published_utc': '2022-08-30T18:00:43Z',\n",
+ " 'article_url': 'https://invezz.com/news/2022/08/30/expert-on-musks-twitter-deal-theres-a-35-chance-now/',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://invezz.com/news/2022/08/30/expert-on-musks-twitter-deal-theres-a-35-chance-now/?amp',\n",
+ " 'image_url': 'https://invezz.com/wp-content/uploads/2022/08/twitter-logo-scaled.jpg',\n",
+ " 'description': 'Tesla (NASDAQ: TSLA) CEO Elon Musk’s chances of closing a deal for Twitter (NYSE: TWTR) are now below 50%, says Gene Munster, the managing partner at research-driven fund manager Loup. His comments come on the day Musk filed another letter terminating his Twitter bid, put in at $44 billion in April but which he put […]\\nThe post Expert on Musk’s Twitter deal: there’s a 35% chance now appeared first on Invezz.',\n",
+ " 'keywords': ['Finance & Banking', 'Stocks & Shares', 'Technology', 'USA']},\n",
+ " {'id': 'aIJmtchccDXOgDaZ9y9QH1CRk0DW9aRKIK9--lI9wtU',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Tesla's Stockpile Of New 4680 Battery Packs Is Increasing\",\n",
+ " 'author': 'Benzinga EV Insights',\n",
+ " 'published_utc': '2022-08-30T17:20:44Z',\n",
+ " 'article_url': 'https://www.benzinga.com/tech/22/08/28688662/teslas-stockpile-of-new-4680-battery-packs-is-increasing',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/28688662',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/08/30/0x0-cyber_rodeo_08.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'At Gigafactory Texas,\\xa0Tesla Inc\\xa0(NASDAQ: TSLA) is working hard to ramp up production of the Model Y and new 4680 battery pack. The company is also expected to produce the Tesla Semi and Cybertruck at this location in the near future.\\xa0\\nWhat Happened:\\xa0Tesla appeared\\xa0to be\\xa0getting ready for all of these new vehicles by stocking up 4680 battery packs. ...',\n",
+ " 'keywords': ['Tech']},\n",
+ " {'id': '0VcZCncsMNdjk5uRrd8jd_knA051TKYtBcL7uC5q73g',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"If You Invested $1,000 In The ARK Innovation ETF At Its COVID-19 Pandemic Low, Here's How Much You'd Have Now\",\n",
+ " 'author': 'Wayne Duggan',\n",
+ " 'published_utc': '2022-08-30T16:49:31Z',\n",
+ " 'article_url': 'https://www.benzinga.com/general/education/22/08/28672276/if-you-invested-1-000-in-the-ark-innovation-arkk-etf-at-its-covid-19-pandemic-low-heres-how-muc',\n",
+ " 'tickers': ['SPY', 'TSLA', 'ARKK', 'ROKU', 'ZM'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/28672276',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/08/30/arkinvest.shutterstock_2093085442.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': \"Investors who bought stocks during the COVID-19 market crash in 2020 have generally experienced some big gains in the past two years. However, some big-name stocks performed much better than others since the pandemic bottom.\\nARKK's Bumpy Road: Even investors who took a conservative, diversified approach to the market in the last two years have generally made nice returns on their investment at this point.\\nIn 2019, the SPDR S&P 500 ETF Trust (NYSE: SPY) generated an extremely strong 31.2% total return, but the ARK Innovation ETF (NYSE: ARKK) topped it with a 35.5% total return.\\nDuring the 2020 pandemic, many high-growth stay-at-home stocks soared, and ARK CEO and Chief Investment Officer Cathie Wood became extremely popular among the new wave of young retail traders.\\nRelated Link: If You Invested $1,000 In Genius Brands At Its Covid-19 Pandemic Low, You'd Have This Much Now \\nPandemic Sell-Off: The ARKK fund started 2020 on a high note, rising from around $50.64 to start the year ...\",\n",
+ " 'keywords': ['Education', 'General']},\n",
+ " {'id': 'Hk8qMKWEIQh1Erf9Hm5YBwwMzr7fvuZgmVuqFKgv-E0',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Why This Twitter Analyst Says Whistleblower A 'Huge Potential Win' For Elon Musk\",\n",
+ " 'author': 'Chris Katje',\n",
+ " 'published_utc': '2022-08-30T16:24:17Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/22/08/28688103/why-this-twitter-analyst-says-whistleblower-a-huge-potential-win-for-elon-musk',\n",
+ " 'tickers': ['TSLA', 'TWTR'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/28688103',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/08/30/elon-musk-g8fad3714d_1280.png?width=1200&height=800&fit=crop',\n",
+ " 'description': 'A former Twitter Inc (NYSE: TWTR) security chief has turned whistleblower,\\xa0alleging the company knew of security and bot issues.\\nThe information could support Tesla Inc (NASDAQ: TSLA) CEO Elon Musk’s accusations the social media platform has downplayed bot issues. Here’s what one analyst has to say about the newest piece of information in the highly publicized acquisition of the social media platform.\\nThe Twitter Analyst: Wedbush analyst Daniel Ives has a Neutral rating on Twitter and $50\\xa0price target.\\nRelated Link: Hot Take: Twitter Investors Should Buy THe Tip Amid Whistleblower Allegations\\nThe Twitter Takeaways: Ives says the whistleblower situation at Twitter “adds complexity” to the merger court case in a new note published Tuesday.\\n“A potentially major development in this case has been whistleblower case from former security chief and Twitter executive Peiter ‘Mudge’ Zatko which could give Musk a much needed small victory,”the analyst said.\\xa0\\nZatko is\\xa0being subpoenaed by Musk’s legal team to appear in court ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['News',\n",
+ " 'M&A',\n",
+ " 'Analyst Color',\n",
+ " 'Social Media',\n",
+ " 'Price Target',\n",
+ " 'Reiteration',\n",
+ " 'Legal',\n",
+ " 'Top Stories',\n",
+ " 'Analyst Ratings',\n",
+ " 'Trading Ideas',\n",
+ " 'General']},\n",
+ " {'id': 'g8kdayBQ3bNLviGcahu57n0Essi4yrKrjxvM_Ho1Uk4',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'Tesla (TSLA) is a Screaming Buy Post 3:1 Stock Spilt',\n",
+ " 'author': 'Rimmi Singhi',\n",
+ " 'published_utc': '2022-08-30T14:59:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/1974102/tesla-tsla-is-a-screaming-buy-post-31-stock-spilt',\n",
+ " 'tickers': ['AMZN', 'TSLA', 'GOOGL'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/1974102/tesla-tsla-is-a-screaming-buy-post-31-stock-spilt',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/articles/main/67/2662.jpg',\n",
+ " 'description': 'For investors who can swallow elevated valuation levels and are looking for companies with robust growth prospects, Tesla (TSLA) should be on the top of their list.'},\n",
+ " {'id': 'OxpQqvUqRWuo_m3wzj87NFzzf6d8k_VAOUIpldPA1Sc',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Indian Industrialist Now Next Only To Elon Musk And Jeff Bezos In Wealth At $137B Net Worth',\n",
+ " 'author': 'Navdeep Yadav',\n",
+ " 'published_utc': '2022-08-30T12:16:21Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/22/08/28681078/indias-adani-now-worlds-3rd-richest-surpassing-louis-vuitton-boss-only-behind-elon-musk-and-jeff-bez',\n",
+ " 'tickers': ['AMZN', 'TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/28681078',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/08/30/gautam_adani_net_worth.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': \"Indian billionaire Gautam Adani surpassed Louis Vuitton’s\\xa0(OTC: LVMUY) CEO Bernard Arnault to become the world's third richest person after gaining $1.12 billion in a day on Monday.\\xa0\\nWhat Happened: With Tesla Inc\\xa0(NASDAQ: TSLA) CEO Elon Musk and Amazon Inc's\\xa0(NASDAQ: AMZN)\\xa0Jeff Bezos' occupying the top two seats in the Bloomberg's list of the world's 500 wealthiest people — Adani stood third after his fortune swelled as much as $61 billion this year.\\xa0\\nAdani — who is also the biggest wealth gainer in 2022 — became the first Asian billionaire business magnate to achieve ...\",\n",
+ " 'keywords': ['News', 'Entrepreneurship', 'Global', 'General']},\n",
+ " {'id': 'yRTDM7Hjw1hR6U9J_hZJmySEa7PhWtL6OMH8WzaGh4A',\n",
+ " 'publisher': {'name': 'Seeking Alpha',\n",
+ " 'homepage_url': 'https://seekingalpha.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/seekingalpha.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/seekingalpha.ico'},\n",
+ " 'title': \"'The Big Short' Michael Burry Buys Farmland Hand Over Fist\",\n",
+ " 'author': 'Jussi Askola',\n",
+ " 'published_utc': '2022-08-30T12:05:00Z',\n",
+ " 'article_url': 'https://seekingalpha.com/article/4537751-the-big-short-michael-burry-buys-farmland-hand-over-fist',\n",
+ " 'tickers': ['ARKK',\n",
+ " 'TSLA',\n",
+ " 'GME',\n",
+ " 'VNQ',\n",
+ " 'GLD',\n",
+ " 'IEF',\n",
+ " 'SPY',\n",
+ " 'FPI',\n",
+ " 'LAND'],\n",
+ " 'image_url': 'https://static.seekingalpha.com/cdn/s3/uploads/getty_images/498541178/image_498541178.jpg?io=getty-c-w750',\n",
+ " 'description': \"Michael Burry's personal wealth is heavily invested in farmland. See why it may make sense to own some farmland and how you can invest.\"},\n",
+ " {'id': 'j-emaUUXr5mYNYVoBPMjPsTMISjiBcv3OD7oWStSbzU',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'The Zacks Analyst Blog Highlights Tesla, Exxon Mobil, Marriott International, Humana and Visa',\n",
+ " 'author': 'Zacks Equity Research',\n",
+ " 'published_utc': '2022-08-30T11:59:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/1973945/the-zacks-analyst-blog-highlights-tesla-exxon-mobil-marriott-international-humana-and-visa',\n",
+ " 'tickers': ['V', 'XOM', 'MAR', 'HUM', 'TSLA'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/1973945/the-zacks-analyst-blog-highlights-tesla-exxon-mobil-marriott-international-humana-and-visa',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/articles/main/75/107.jpg',\n",
+ " 'description': 'Tesla, Exxon Mobil, Marriott International, Humana and Visa are part of The Zacks top Analyst Blog.'},\n",
+ " {'id': 'fpd8fozg1WSRcgsInLt5YdyFp_VHm6_L0L5Oa2coFG4',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': \"1 Reason Why Investors Shouldn't Ignore Rivian's Long-Term Prospects\",\n",
+ " 'author': 'newsfeedback@fool.com (RJ Fulton)',\n",
+ " 'published_utc': '2022-08-30T11:17:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2022/08/30/1-reason-why-investors-shouldnt-ignore-rivians-lon/',\n",
+ " 'tickers': ['RIVN', 'TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/697510/a-driver-charges-an-electric-vehicle.jpg',\n",
+ " 'description': 'Rivian is hanging on, but the company has much more to prove.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'Jg0QOt7GrTydehkhOsi3lYhP3wlreF6yupIy-rKV-Qg',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'The Best Kinds of Investments During Times of Uncertainty',\n",
+ " 'author': 'newsfeedback@fool.com (Stefon Walters)',\n",
+ " 'published_utc': '2022-08-30T11:00:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2022/08/30/the-best-kinds-of-investments-during-times-of-unce/',\n",
+ " 'tickers': ['MCD', 'MSFT', 'SBUX', 'AAPL', 'TSLA', 'VOO'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/697448/young-businessman-at-work.jpg',\n",
+ " 'description': \"Go with those who've stood the test of time.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': '1xXxqlUBbOzJwK8FwZbphJRa5LwsRiD72U9fgS4BP80',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Elon Musk Serves 2nd Termination Letter To Twitter On Undisclosed Basis: What You Need To Know',\n",
+ " 'author': 'Shanthi Rexaline',\n",
+ " 'published_utc': '2022-08-30T10:59:27Z',\n",
+ " 'article_url': 'https://www.benzinga.com/m-a/22/08/28681534/elon-musk-serves-out-2nd-termination-letter-to-twitter-on-undisclosed-bases-what-you-need-to-know',\n",
+ " 'tickers': ['TSLA', 'TWTR'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/28681534',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/08/30/shutterstock_2149752817_4.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Tesla Inc. (NASDAQ: TSLA) CEO Elon Musk sent a second termination letter to\\xa0Twitter, Inc. (NYSE: TWTR) on Monday — this time\\xa0adding additional bases separate and distinct from the ones mentioned in the July 8 termination letter — according to an amendment to the Schedule 13D filed with the SEC on Tuesday.\\n“Allegations regarding certain facts, known to Twitter prior to and as of ...',\n",
+ " 'keywords': ['News', 'M&A', 'Social Media', 'Legal', 'General']},\n",
+ " {'id': 'QbZr_55e6EzBGa26Qm_8W3aGBd2-fQlsdraPz5ed6DQ',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Elon Musk Says Full Self-Driving Teslas Could Be A Reality In US By Year-End',\n",
+ " 'author': 'Shivdeep Dhaliwal',\n",
+ " 'published_utc': '2022-08-30T10:27:11Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/22/08/28679718/elon-musk-says-full-self-driving-teslas-could-be-a-reality-in-u-s-by-year-end',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/28679718',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/08/30/shutterstock_1541787623.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Tesla Inc\\xa0(NASDAQ:\\xa0TSLA) CEO\\xa0Elon Musk\\xa0has said the company’s self-driving vehicles could hit the roads in the United States as early as the year-end.\\nWhat Happened:\\xa0Musk’s comments were made at an energy conference in Norway on Monday. He said one of the two technologies that he is focused on includes Tesla cars attaining full-self driving before 2022 ends.\\nThe entrepreneur said, “Have self-driving in wide release at least in the U.S., and ... potentially in Europe, depending on regulatory approval,\\xa0reported\\xa0Reuters.\\nThe other technology Musk is focused on ...',\n",
+ " 'keywords': ['News', 'Tech', 'Media']},\n",
+ " {'id': 'W8L_q3YedAZpfHcPI-4huVhpuBg5IkbPQKlV5VWPXYU',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'Should You Invest in the Consumer Discretionary Select Sector SPDR ETF (XLY)?',\n",
+ " 'author': 'Zacks Equity Research',\n",
+ " 'published_utc': '2022-08-30T10:20:08Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/1973872/should-you-invest-in-the-consumer-discretionary-select-sector-spdr-etf-xly',\n",
+ " 'tickers': ['XLY', 'AMZN', 'HD', 'TSLA', 'VCR', 'FDIS'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/1973872/should-you-invest-in-the-consumer-discretionary-select-sector-spdr-etf-xly',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/default_article_images/default12.jpg',\n",
+ " 'description': 'Sector ETF report for XLY'},\n",
+ " {'id': 'BWULMyBYHs9nL90yAPtQD9xNr0efNROHvq_G4DM1dVg',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': \"Why Tesla's Stock Split Was a Dud Like Amazon's\",\n",
+ " 'author': 'newsfeedback@fool.com (Keith Speights)',\n",
+ " 'published_utc': '2022-08-30T09:52:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2022/08/30/why-teslas-stock-split-was-a-dud-like-amazons/',\n",
+ " 'tickers': ['TSLA', 'AMZN'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/698375/yawning-man-laptop.jpg',\n",
+ " 'description': \"Amazon's and Tesla's stocks fell after their respective stock splits. But the story isn't over yet.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'wGrMC7iRYU2M3c2Eo1eq0wskY257VgB5xp-y7sIyMHs',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Tesla Challenges Louisiana Law To Directly Sell Cars To Customers',\n",
+ " 'author': 'Shivdeep Dhaliwal',\n",
+ " 'published_utc': '2022-08-30T09:46:12Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/22/08/28679510/teslas-direct-sales-push-continues-as-it-files-lawsuit-in-louisiana',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/28679510',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/08/30/shutterstock_1041615547.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Tesla Inc\\xa0(NASDAQ:\\xa0TSLA) is reportedly challenging a Louisiana law as it seeks to sell directly to customers.\\nWhat Happened:\\xa0The\\xa0Elon Musk-led automaker filed a lawsuit in the U.S. District Court for the Eastern District of Louisiana last week,\\xa0reported\\xa0the Wall Street Journal.\\nTesla is reportedly suing the\\xa0Louisiana Automobile Dealers Association, officials on the\\xa0Louisiana Motor Vehicle Commission, and some dealerships.\\n“Louisiana consumers’ freedom is being unduly restricted by protectionist, anti-competitive, and inefficient state regulation and laws,” said Tesla in its lawsuit, according to ...',\n",
+ " 'keywords': ['News', 'Tech', 'Media']},\n",
+ " {'id': 'T0kgefB1_uNIJU6BitKZ4tWoQUNrsX47riwy9BK0lDw',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Tesla Stock Split: 3 Stock-Split Stocks That Are Far Better Buys Than Tesla',\n",
+ " 'author': 'newsfeedback@fool.com (Sean Williams)',\n",
+ " 'published_utc': '2022-08-30T09:21:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2022/08/30/tesla-stock-split-3-stock-split-stocks-better-buys/',\n",
+ " 'tickers': ['TSLA', 'GOOGL', 'AMZN', 'DXCM', 'GOOG'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/698449/paper-certificate-shares-invest-stock-split-market-reverse-getty.jpg',\n",
+ " 'description': 'With the Tesla stock split now complete, three other recent stock-split stocks look considerably more attractive from an investment standpoint.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'kFz0VnJLxtCY8yNJKLJklFQ76cgcI_CH8vEe3uBgtmc',\n",
+ " 'publisher': {'name': 'Investing.com',\n",
+ " 'homepage_url': 'https://www.investing.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/investing.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/investing.ico'},\n",
+ " 'title': 'Maybe It’s Time For The Market To Stop Fighting The Fed?',\n",
+ " 'author': 'Michael Kramer',\n",
+ " 'published_utc': '2022-08-30T07:37:00Z',\n",
+ " 'article_url': 'https://www.investing.com/analysis/maybe-its-time-for-the-market-to-stop-fighting-the-fed-200629155',\n",
+ " 'tickers': ['MSFT', 'AMZN', 'TSLA'],\n",
+ " 'amp_url': 'https://m.investing.com/analysis/maybe-its-time-for-the-market-to-stop-fighting-the-fed-200629155?ampMode=1',\n",
+ " 'image_url': 'https://i-invdn-com.investing.com/redesign/images/seo/investingcom_analysis_og.jpg'},\n",
+ " {'id': '1lImCMk34_ErILSVptrb-vV6LcXGw9P8qpt-uBNKtyg',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'Tesla (TSLA) Dips More Than Broader Markets: What You Should Know',\n",
+ " 'author': 'Zacks Equity Research',\n",
+ " 'published_utc': '2022-08-29T21:45:20Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/1973774/tesla-tsla-dips-more-than-broader-markets-what-you-should-know',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/1973774/tesla-tsla-dips-more-than-broader-markets-what-you-should-know',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/default_article_images/default6.jpg',\n",
+ " 'description': 'In the latest trading session, Tesla (TSLA) closed at $284.82, marking a -1.14% move from the previous day.'},\n",
+ " {'id': 'G252A848jkP5L5HjHReXYM2DW1SIqrpWpq2Kz-naV-M',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Tesla sues to sell its vehicles directly to consumers in Louisiana',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2022-08-29T21:34:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/tesla-sues-to-sell-its-vehicles-directly-to-consumers-in-louisiana-11661808842',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'image_url': 'https://images.mktw.net/im-612910/social',\n",
+ " 'description': 'Tesla\\xa0Inc.\\xa0has filed suit to challenge a Louisiana law it says restricts its ability to sell electric vehicles directly to customers and violates its constitutional rights.'},\n",
+ " {'id': 'q4jgDNFJDr_fJtI9WEKYf7uW46578ztfBDpTnVfeQgs',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Why Nio Stock Was Stuck in the Slow Lane Today',\n",
+ " 'author': 'newsfeedback@fool.com (Eric Volkman)',\n",
+ " 'published_utc': '2022-08-29T21:11:05Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2022/08/29/why-nio-stock-was-stuck-in-the-slow-lane-today/',\n",
+ " 'tickers': ['NIO', 'TSLA', 'XPEV'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/698585/cityscape-as-seen-from-passenger-seat-in-car-at-night.jpg',\n",
+ " 'description': 'Investors might be getting skittish on the company as it gears up to report its latest set of earnings.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'B0I8KdLmE5O_tAQxIl64Gc_Njw6i7O49OQA4Y9nZNq4',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': \"Stocks finish with back-to-back losses as investors digest Fed's vows not to waver in inflation fight\",\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2022-08-29T20:34:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/dow-futures-drop-nearly-300-points-as-stocks-selloff-looks-set-to-continue-11661770060',\n",
+ " 'tickers': ['DJIA', 'COMP', 'TSLA', 'BBBY', 'BA', 'UPS'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/dow-futures-drop-nearly-300-points-as-stocks-selloff-looks-set-to-continue-11661770060',\n",
+ " 'image_url': 'https://images.mktw.net/im-612255/social',\n",
+ " 'description': 'Major U.S. stock indexes finish lower after booking their worst market rout in months on Friday.'},\n",
+ " {'id': 'hxRaqxeHsk5J78JoaNbJgFh7MuJJGWYtP-HerpMfypU',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Why Tesla Stock Dropped Monday Morning',\n",
+ " 'author': 'newsfeedback@fool.com (Howard Smith)',\n",
+ " 'published_utc': '2022-08-29T16:56:47Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2022/08/29/why-tesla-stock-dropped-monday-morning/',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/698509/0x0-supercharger_16.jpg',\n",
+ " 'description': 'Another big investment in U.S. battery production highlights the growing competition.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'FpeGDFFKa5fRYD1mIGu-x_0XUxrEnypGmWtUdVjilT8',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Tesla Reveals A New Virtual Power Plant In Japan',\n",
+ " 'author': 'Benzinga EV Insights',\n",
+ " 'published_utc': '2022-08-29T16:54:38Z',\n",
+ " 'article_url': 'https://www.benzinga.com/tech/22/08/28671047/tesla-reveals-a-new-virtual-power-plant-in-japan',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/28671047',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/08/29/0x0-powerwall_plus_03.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': \"Tesla Inc\\xa0(NASDAQ: TSLA) had a successful virtual power plant event this month in California. Hundreds of Tesla Powerwall home batteries installed in customers' homes\\xa0banded together to create a virtual power plant. Owners opted in, and during the event, Tesla and the local power company controlled these batteries to give some relief to a power grid ...\",\n",
+ " 'keywords': ['News', 'Global', 'Tech']},\n",
+ " {'id': '0IOR2jhzfSus0NyRCdgWvcOg3k0Afxou4xazvBzYuDw',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Why Chimerix Is Trading Higher By Over 19%, Here Are 53 Stocks Moving In Monday's Mid-Day Session\",\n",
+ " 'author': 'Lisa Levin',\n",
+ " 'published_utc': '2022-08-29T16:49:59Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/22/08/28672403/why-chimerix-is-trading-higher-by-over-19-here-are-53-stocks-moving-in-mondays-mid-day-session',\n",
+ " 'tickers': ['CMRX',\n",
+ " 'PXMD',\n",
+ " 'NXE',\n",
+ " 'STBX',\n",
+ " 'CTLT',\n",
+ " 'LXEH',\n",
+ " 'PDD',\n",
+ " 'JZ',\n",
+ " 'NERV',\n",
+ " 'MNSO',\n",
+ " 'AAPL',\n",
+ " 'JFBR',\n",
+ " 'VBIV',\n",
+ " 'IKT',\n",
+ " 'AVCT',\n",
+ " 'AHI',\n",
+ " 'BBIG',\n",
+ " 'CAAS',\n",
+ " 'AZRE',\n",
+ " 'NCPL',\n",
+ " 'HDSN',\n",
+ " 'AYTU',\n",
+ " 'TUEM',\n",
+ " 'CCJ',\n",
+ " 'HKD',\n",
+ " 'GBNH',\n",
+ " 'HIL',\n",
+ " 'TELL',\n",
+ " 'VACC',\n",
+ " 'SAI',\n",
+ " 'HGEN',\n",
+ " 'AIMD',\n",
+ " 'TAL',\n",
+ " 'NMTC',\n",
+ " 'SNTG',\n",
+ " 'JKS',\n",
+ " 'GRIN',\n",
+ " 'NRDY',\n",
+ " 'TSLA',\n",
+ " 'OLB',\n",
+ " 'CRXT',\n",
+ " 'DRUG',\n",
+ " 'BXRX',\n",
+ " 'GETY',\n",
+ " 'MOB',\n",
+ " 'SLQT',\n",
+ " 'PGY',\n",
+ " 'RPID',\n",
+ " 'HOFV',\n",
+ " 'ZFOX',\n",
+ " 'FTCH'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/28672403',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/08/29/image42.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Gainers\\n\\nAdvanced Human Imaging Limited (NASDAQ: AHI) shares jumped 53% to $1.04. Advanced Human Imaging announced Sunday it signed a Master Services Agreement with Estonia-based Activate Health OÜ.\\nAmerican Virtual Cloud Technologies, Inc. (NASDAQ: AVCT) rose 41.4% to $0.2068. American Virtual Cloud Technologies shares gained around 8% on Friday after the company announced changes to its board of directors and management team, along with the launch of a review to explore the sale of the entire business or selected assets.\\nMinerva Neurosciences, Inc. (NASDAQ: NERV) jumped 25% to $12.96. Point72 Asset Management recently reported an 8.8% passive stake in the company.\\nPinduoduo Inc. (NASDAQ: PDD) shares gained 23.5% to $71.11 after the company reported better-than-expected Q2 revenue results.\\nStarbox Group Holdings Ltd. (NASDAQ: STBX) rose 23.1% to $6.55 after dropping 25% on Friday.\\nThe OLB Group, Inc. (NASDAQ: OLB) rose 20.1% to $2.03 after jumping 43% on Friday. OLB Group recently posted 1H sales of $17.16 million.\\nHill International, Inc. (NYSE: HIL) jumped 20% to $3.36 following an updated merger agreement with Global Infrastructure Solutions which offers Hill shareholders $3.40 per share in cash versus $2.85 per share offered previously.\\nChimerix, Inc. (NASDAQ: CMRX) gained 19.4% to $2.58 after the company won a Department of Health and Human Services contract worth $126.9 million.\\nSentage Holdings Inc. (NASDAQ: SNTG) shares climbed 17.8% to $3.24. Sentage Holdings, last month, reported FY21 operating revenue of $2.26 million.\\nNeuroOne Medical Technologies Corporation (NASDAQ: NMTC) climbed 15.5% to $2.07. NeuroOne Medical Tech recently posted a quarterly loss of $0.17 per share.\\nBright Minds Biosciences Inc. (NASDAQ: DRUG) shares rose 14.9% to $2.93 after declining around 12% on Friday.\\nGrindrod Shipping Holdings Ltd. (NASDAQ: GRIN) gained 14.9% to $23.55 after Taylor Maritime delivered a non-binding proposal to acquire the company for $26 per share.\\nChina Automotive Systems, Inc. (NASDAQ: CAAS) jumped 14.4% to $3.97.\\nNetcapital Inc. (NASDAQ: NCPL) gained 12.2% to $3.5680.\\nReviva Pharmaceuticals Holdings, Inc. (NASDAQ: RVPH) gained 11.7% to $1.7087.\\nNexGen Energy Ltd. (NYSE: NXE) gained 9.9% to $4.4950.\\nTAL Education Group (NYSE: TAL) jumped 9.7% to $6.57.\\nCameco Corporation (NYSE: CCJ) gained 8% ...',\n",
+ " 'keywords': ['News',\n",
+ " 'Penny Stocks',\n",
+ " 'Small Cap',\n",
+ " 'Intraday Update',\n",
+ " 'Markets',\n",
+ " 'Movers',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': 'wwi_NQfJALqh3HGcL63jpSFjlLmO-QrytnkHl1I8HEU',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Investing in Blue Chip ETFs',\n",
+ " 'author': 'newsfeedback@fool.com (Nicholas Rossolillo)',\n",
+ " 'published_utc': '2022-10-21T22:51:47Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/stock-market/types-of-stocks/blue-chip-stocks/blue-chip-etfs/',\n",
+ " 'tickers': ['AAPL',\n",
+ " 'ASML',\n",
+ " 'MSFT',\n",
+ " 'HDV',\n",
+ " 'IOO',\n",
+ " 'XOM',\n",
+ " 'CVX',\n",
+ " 'GOOG',\n",
+ " 'JNJ',\n",
+ " 'AMZN',\n",
+ " 'QQQ',\n",
+ " 'SPY',\n",
+ " 'VUG',\n",
+ " 'TSLA',\n",
+ " 'VZ',\n",
+ " 'VIG',\n",
+ " 'EFA',\n",
+ " 'GOOGL',\n",
+ " 'ABBV'],\n",
+ " 'image_url': 'https://m.foolcdn.com/media/dubs/images/19_10_03_Blue_poker_chips_with_investment_rela.width-600.jpg'},\n",
+ " {'id': 'c-iUwWJmjvYurLEKu1BneVg4w--e5n4ln6MHCXqNU3M',\n",
+ " 'publisher': {'name': 'Investing.com',\n",
+ " 'homepage_url': 'https://www.investing.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/investing.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/investing.ico'},\n",
+ " 'title': 'What Happened This Week: Poor Earnings Reports And Buybacks',\n",
+ " 'author': \"Brenda O'Farrell/Investing.com\",\n",
+ " 'published_utc': '2022-10-21T20:23:00Z',\n",
+ " 'article_url': 'https://www.investing.com/analysis/what-happened-this-week-poor-earnings-reports-and-buybacks-200631388',\n",
+ " 'tickers': ['TSLA',\n",
+ " 'SNAP',\n",
+ " 'AAPL',\n",
+ " 'GOOGL',\n",
+ " 'MSFT',\n",
+ " 'META',\n",
+ " 'LMT',\n",
+ " 'NFLX',\n",
+ " 'SLB',\n",
+ " 'ISRG',\n",
+ " 'LRCX',\n",
+ " 'LMT',\n",
+ " 'MULN',\n",
+ " 'ACOR',\n",
+ " 'AVEO',\n",
+ " 'AEHR',\n",
+ " 'CLNE',\n",
+ " 'SIVB',\n",
+ " 'GNRC',\n",
+ " 'MTB',\n",
+ " 'RHI',\n",
+ " 'CMA',\n",
+ " 'NCMI',\n",
+ " 'SIVB',\n",
+ " 'ALPN',\n",
+ " 'SLNG',\n",
+ " 'NEPT'],\n",
+ " 'amp_url': 'https://m.investing.com/analysis/what-happened-this-week-poor-earnings-reports-and-buybacks-200631388?ampMode=1',\n",
+ " 'image_url': 'https://i-invdn-com.investing.com/redesign/images/seo/investingcom_analysis_og.jpg'},\n",
+ " {'id': 'V0OvymM5LFarBcNMKg1nFQui8o8-z-RJaoZBStzDkyY',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'Tesla Revenues Miss in Q3 Earnings Put These ETFs in Focus',\n",
+ " 'author': 'Sweta Killa',\n",
+ " 'published_utc': '2022-10-21T15:10:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/1995747/tesla-revenues-miss-in-q3-earnings-put-these-etfs-in-focus',\n",
+ " 'tickers': ['TSLA', 'XLY', 'VCR', 'FDIS', 'FNGS', 'VCAR'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/1995747/tesla-revenues-miss-in-q3-earnings-put-these-etfs-in-focus',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/articles/main/7c/572.jpg',\n",
+ " 'description': 'Shares of Tesla dropped 6.6% to a 52-week low on the Oct 20 trading session following revenue miss.'},\n",
+ " {'id': 'd38B7K58xJj80nXv35eRjp4SQXY1OID5IHCV6lbzyrg',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Elon Musk Says This Is The 'Closest We Have Been To' World War 3 Since 1962 As He Warns Of A Global Recession Lasting Until Spring 2024\",\n",
+ " 'author': 'Shanthi Rexaline',\n",
+ " 'published_utc': '2022-10-21T15:05:41Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/22/10/29355216/elon-musk-says-this-is-the-closest-we-have-been-to-world-war-3-since-1962-as-he-warns-of-a-global-re',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/29355216',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/10/21/musk_and_tesla_photo_by_rokas_tenys_on_shutterstock.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Dogecoin (CRYPTO: DOGE) co-founder Bill Markus observed on Twitter on Friday\\xa0that incidences of COVID-19 have come down and were are actually “pretty low.” The impending global recession and the nuclear apocalypse are the latest worries, Markus suggested.\\nIn reply, Tesla Inc. (NASDAQ: TSLA) CEO Elon Musk tweeted that\\xa0he hoped it would be a hassle-free year.\\nIt sure would be nice to have one year without a horrible global event\\n— Elon Musk (@elonmusk) October 21, 2022\\nSee Also:\\xa0Elon Musk Warns ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['News', 'Social Media', 'Economics', 'Media', 'General']},\n",
+ " {'id': 'GKGELnUaiA1Vdx1eOZiPYvleg3wH2e9jgGXqr1CDVj0',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': \"Here's Why I'm Buying Tesla Stock as It Crashes\",\n",
+ " 'author': 'newsfeedback@fool.com (Neil Rozenbaum)',\n",
+ " 'published_utc': '2022-10-21T14:30:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2022/10/21/heres-why-im-buying-tesla-stock/',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/705697/tsla.png',\n",
+ " 'description': 'The growth story is still intact and far from over.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': '5iYjfg4fDzOmuzA6VAbzYLFKn5ncYCEc-oef-VqBFB8',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'Company News for Oct 21, 2022',\n",
+ " 'author': 'Zacks Equity Research',\n",
+ " 'published_utc': '2022-10-21T13:35:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/1995621/company-news-for-oct-21-2022',\n",
+ " 'tickers': ['T', 'ABB', 'MRNA', 'NVAX', 'TSLA'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/1995621/company-news-for-oct-21-2022',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/articles/main/b9/441.jpg',\n",
+ " 'description': 'Companies in The News Are: TSLA, T, ABB, MRNA, NVAX'},\n",
+ " {'id': 'w33LQuGKdesJD2h_SYZxC4Mnj34rfjuUGBbGvFy6Yis',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Tesla And Other EV Makers From Benzinga's Most Accurate Analysts\",\n",
+ " 'author': 'Lisa Levin',\n",
+ " 'published_utc': '2022-10-21T13:22:10Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/earnings/22/10/29358990/tesla-and-other-ev-makers-from-benzingas-most-accurate-analysts',\n",
+ " 'tickers': ['GM', 'TSLA', 'TWTR', 'NIO', 'XPEV'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/29358990',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/10/21/image40.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': \"The U.S. is reportedly in discussions to subject Elon Musk’s companies to national security reviews . Tesla Inc’s (NASDAQ: TSLA) CEO has also been locked in a battle over buying Twitter Inc. (NYSE: TWTR). The U.S. government is reportedly unhappy with the billionaire mobilizing financing from foreign high-net-worth individuals to consummate the deal.\\nBenzinga readers can access the latest analyst ratings on the Analyst Stock Ratings page. Readers can sort by stock ticker, company name, analyst firm, rating change or other variables.\\nHere's a look at some of the top electric-vehicle makers from several analysts, according to Benzinga Analyst Stock Ratings.\\n\\xa0\\nTesla, Inc. (NASDAQ: TSLA)\\n\\xa0\\nRecent Analyst Ratings\\nMizuho’s analyst Vijay Rakesh maintained a Buy rating on the company on October 20, 2022, ...Full story available on Benzinga.com\",\n",
+ " 'keywords': ['News',\n",
+ " 'Earnings',\n",
+ " 'Price Target',\n",
+ " 'Reiteration',\n",
+ " 'Markets',\n",
+ " 'Analyst Ratings',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': 'hE-QnoUOruUWWeJRPSBmZgHynNWCFsNZR7KJOWNSNZU',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'ExxonMobil and Hasbro have been highlighted as Zacks Bull and Bear of the Day',\n",
+ " 'author': 'Zacks Equity Research',\n",
+ " 'published_utc': '2022-10-21T13:07:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/1995535/exxonmobil-and-hasbro-have-been-highlighted-as-zacks-bull-and-bear-of-the-day',\n",
+ " 'tickers': ['F', 'XOM', 'HAS', 'TSLA'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/1995535/exxonmobil-and-hasbro-have-been-highlighted-as-zacks-bull-and-bear-of-the-day',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/articles/main/9a/68.jpg',\n",
+ " 'description': 'ExxonMobil and Hasbro have been highlighted as Zacks Bull and Bear of the Day.\\n\\n.'},\n",
+ " {'id': 'cu6BzB2-u_ffmd1ja00YgaUPmxwniNZW0urz4ca9yg8',\n",
+ " 'publisher': {'name': 'Investing.com',\n",
+ " 'homepage_url': 'https://www.investing.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/investing.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/investing.ico'},\n",
+ " 'title': 'Rising Yields Push Positive Reporting Season Into The Background',\n",
+ " 'author': 'Jürgen Molnar',\n",
+ " 'published_utc': '2022-10-21T12:25:00Z',\n",
+ " 'article_url': 'https://www.investing.com/analysis/rising-yields-push-positive-reporting-season-into-the-background-200631374',\n",
+ " 'tickers': ['NFLX', 'TSLA', 'IBM', 'AAPL', 'AMZN', 'SAP'],\n",
+ " 'amp_url': 'https://m.investing.com/analysis/rising-yields-push-positive-reporting-season-into-the-background-200631374?ampMode=1',\n",
+ " 'image_url': 'https://i-invdn-com.investing.com/redesign/images/seo/investingcom_analysis_og.jpg'},\n",
+ " {'id': 'RmnNi5rjznpnZrfqgcm1TjRXPc1DxW5DkOfOHSe2rts',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Elon Musk Could Sell $5B Tesla Shares To Fund Twitter Deal Next Week — But Analyst Predicts Rally Once 'Overhang Lifts'\",\n",
+ " 'author': 'Shanthi Rexaline',\n",
+ " 'published_utc': '2022-10-21T12:08:22Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/22/10/29354368/elon-musk-could-sell-5b-tesla-shares-to-fund-twitter-deal-next-week-but-analyst-pre',\n",
+ " 'tickers': ['TSLA', 'TWTR'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/29354368',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/10/21/shutterstock_1915176100.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'With Elon Musk reviving the abandoned Twitter Inc. (NYSE: TWTR) deal and giving a deadline of Oct. 28 for the closure, the chatter regarding financing is back.\\nWhat Happened: Musk could sell about $5 billion of his Tesla Inc. (NASDAQ: TSLA) shares to close the Twitter deal by Oct. 28, Gary Black, managing partner at Future Fund,\\xa0said.\\nThe Tesla trading window for insiders reopens on Friday following the company’s earnings release, he noted.\\nSee Also:\\xa0Selling Tesla Shares To Buy Twitter Is \\'Giving Away Caviar To Buy A $2 Slice Of Pizza,\" Analyst Says\\nOnce the Twitter overhang lifts, the fund manager expects Tesla’s shares to rally by 5-10%.\\n“But once the TWTR overhang lifts Friday, ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['News', 'Analyst Color', 'Analyst Ratings', 'Tech']},\n",
+ " {'id': 'b3IqPGTx7uqLVrKwbq883cqYvXrPBPV2mP7Uo4THfVA',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': \"'Mass layoffs' of Meta bus drivers lead to pleas for Facebook to bring workers back to the office\",\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2022-10-21T12:08:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/mass-layoffs-of-meta-bus-drivers-lead-to-pleas-for-facebook-to-bring-workers-back-to-the-office-11666303574',\n",
+ " 'tickers': ['META', 'GOOGL', 'GOOG', 'INTU', 'MSFT', 'PLTR', 'CRM', 'TSLA'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/mass-layoffs-of-meta-bus-drivers-lead-to-pleas-for-facebook-to-bring-workers-back-to-the-office-11666303574',\n",
+ " 'image_url': 'https://images.mktw.net/im-648559/social',\n",
+ " 'description': 'More than 160 people are losing their jobs as Meta cuts back on its once-ubiquitous tech bus shuttles.'},\n",
+ " {'id': 'E3hQ5yHazx_V9QRWKhCq-nMwvISmd95Qqg-Ox1VS8e4',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': \"Tesla Stock Just Made a New 52-Week Low. Here's Why It's a Buy Right Now.\",\n",
+ " 'author': 'newsfeedback@fool.com (Anthony Di Pizio)',\n",
+ " 'published_utc': '2022-10-21T11:30:55Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2022/10/21/tesla-stock-made-new-52-week-low-why-buy-right-now/',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/705493/a-black-tesla-car-driving-on-an-open-road-in-the-snow.jpg',\n",
+ " 'description': 'This might be a great chance to pick up shares in the electric vehicle powerhouse.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'V2HLUDD-YqzGbGVxGcngxGR7st7JOWBMR5kxo0h3X7U',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'US Stocks Headed For Another Tough Day Amid Mixed Earnings, Rate Worries — Tesla Extends Losses, Snap Drags Social Media Stocks Lower',\n",
+ " 'author': 'Shanthi Rexaline',\n",
+ " 'published_utc': '2022-10-21T11:17:59Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/earnings/22/10/29356266/us-stocks-headed-for-another-tough-day-amid-mixed-earnings-rate-worries-tesla-extends-losses-snap-d',\n",
+ " 'tickers': ['SPY', 'TSLA', 'QQQ', 'SNAP'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/29356266',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/10/21/shutterstock_1704466996_1.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': \"U.S. stocks could languish for a third straight session on Friday, early trading in index futures show. Earnings news continues to be mixed and the uncertainty around the economic outlook could also weigh down on sentiment.\\nOn Thursday, stocks opened lower but recovered in early trading and moved into the green, as traders digested mixed earnings and economic data on jobs, manufacturing and the housing market. Hawkish Fed speeches and the continued rise in bond yields generated selling pressure, dragging the indices back into negative terrain by mid-session.\\nThe averages traded at depressed levels for the rest of the session before ending moderately lower.\\n\\nU.S. Indices' Performance On Thursday\\n\\n\\nIndex\\nPerformance (+/-)\\n\\xa0\\nValue\\n\\n\\n\\n\\nNasdaq Composite\\n-0.61%\\n\\xa0\\n10,614.84\\n\\n\\nS&P 500 Index\\n-0.80%\\n\\xa0\\n3,665.78\\n\\n\\nDow Industrials\\n-0.30%\\n\\xa0\\n30,333.59\\n\\n\\n\\nHere’s a peek into index futures trading:\\n\\nU.S. Futures' Performance On Friday During Premarket Session\\n\\n\\nIndex\\nFull story available on Benzinga.com\",\n",
+ " 'keywords': ['News',\n",
+ " 'Earnings',\n",
+ " 'Futures',\n",
+ " 'Previews',\n",
+ " 'Top Stories',\n",
+ " 'Economics',\n",
+ " 'Federal Reserve',\n",
+ " 'Pre-Market Outlook',\n",
+ " 'Markets',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': 'uxua-E_d-4tF3Ni0xSMsk3lpLQe4ZXTrTvv0MOjrbW8',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': \"What's needed for stocks to rally is capitulation, but that could come from unexpected sources, strategist says\",\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2022-10-21T10:44:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/whats-needed-for-stocks-to-rally-is-capitulation-but-that-could-come-from-unexpected-sources-strategist-says-11666349085',\n",
+ " 'tickers': ['SNAP',\n",
+ " 'TWTR',\n",
+ " 'VZ',\n",
+ " 'AXP',\n",
+ " 'STX',\n",
+ " 'SLB',\n",
+ " 'TSLA',\n",
+ " 'GME',\n",
+ " 'AMC',\n",
+ " 'MULN',\n",
+ " 'APE',\n",
+ " 'NIO',\n",
+ " 'AAPL',\n",
+ " 'META'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/whats-needed-for-stocks-to-rally-is-capitulation-but-that-could-come-from-unexpected-sources-strategist-says-11666349085',\n",
+ " 'image_url': 'https://images.mktw.net/im-257028/social',\n",
+ " 'description': 'A rally can begin without a surge in the Vix or a financial blowup somewhere.'},\n",
+ " {'id': '3ZPFEwmefyC76sv7t1ABHzwzbX3xlbSC_hcUPRBkOac',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Union Pacific, WD-40, Tesla And Other Big Losers From Thursday',\n",
+ " 'author': 'Lisa Levin',\n",
+ " 'published_utc': '2022-10-21T09:29:35Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/22/10/29355287/union-pacific-wd-40-tesla-and-other-big-losers-from-thursday',\n",
+ " 'tickers': ['ERIC',\n",
+ " 'HRI',\n",
+ " 'EWBC',\n",
+ " 'PGTI',\n",
+ " 'TCBI',\n",
+ " 'WDFC',\n",
+ " 'ALL',\n",
+ " 'AWR',\n",
+ " 'GPI',\n",
+ " 'NOK',\n",
+ " 'SNV',\n",
+ " 'SSL',\n",
+ " 'UNP',\n",
+ " 'WU',\n",
+ " 'TSLA',\n",
+ " 'AMRC',\n",
+ " 'TBK'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/29355287',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/10/21/image27.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': \"U.S. stocks closed lower on Thursday, with the Dow Jones dropping around 90 points. Here is the list of some big stocks recording gains in the previous session.\\n\\nTelefonaktiebolaget LM Ericsson (NASDAQ: ERIC) shares dipped 15.3% to close at $5.43 after the company reported mixed Q3 earnings results.\\nThe Allstate Corporation (NYSE: ALL) tumbled 12.9% to close at $117.71 after the company announced estimated results for Q3'22 of a net loss between $675 million and $725 million.\\nTexas Capital Bancshares, Inc. (NASDAQ: TCBI) fell 11.6% to close at $56.04 following weak quarterly earnings.\\nWD-40 Company (NASDAQ: WDFC) dropped 11.5% to close at $151.11 after the company reported worse-than-expected Q4 EPS and sales results. The company also issued FY23 ...\",\n",
+ " 'keywords': ['News',\n",
+ " 'Penny Stocks',\n",
+ " 'Small Cap',\n",
+ " 'Pre-Market Outlook',\n",
+ " 'Markets',\n",
+ " 'Movers',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': 'Br9p40Hwbq-rNhmhhMyvYZProff1_r-b6o30udLAJbc',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Fear Among US Investors Is Decreasing, Here's Why\",\n",
+ " 'author': 'Lisa Levin',\n",
+ " 'published_utc': '2022-10-21T09:07:31Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/earnings/22/10/29355161/fear-among-us-investors-is-decreasing-heres-why',\n",
+ " 'tickers': ['MSFT', 'AXP', 'IBM', 'SLB', 'T', 'VZ', 'TSLA', 'HCA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/29355161',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/10/21/image17.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'The CNN Money Fear and Greed index showed further easing in the fear level among US investors.\\nUS stocks moved lower in choppy trading on Thursday as investors monitored several major earnings reports. Although stocks have dropped for two sessions in a row, but the major indices are still up over 2% for the week.\\nShares of AT&T (NYSE: T) and IBM (NYSE: IBM) gained on Thursday after topping expectations on the top and bottom ...',\n",
+ " 'keywords': ['News',\n",
+ " 'Earnings',\n",
+ " 'Pre-Market Outlook',\n",
+ " 'Markets',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': 'AT2lnSGWEhLRpxxIHBjalecOigPoTaVfSgpXYhPU-vo',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': \"Twitter shares slump after report that the U.S. mulls national-security reviews for some of Elon Musk's ventures\",\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2022-10-21T09:03:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/u-s-mulls-national-security-reviews-for-some-of-elon-musks-ventures-including-twitter-deal-report-11666324246',\n",
+ " 'tickers': ['TWTR', 'TSLA'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/u-s-mulls-national-security-reviews-for-some-of-elon-musks-ventures-including-twitter-deal-report-11666324246',\n",
+ " 'image_url': 'https://images.mktw.net/im-637764/social',\n",
+ " 'description': \"Biden administration officials are considering subjecting some of Elon Musk's ventures, including his planned acquisition of Twitter Inc., to national security reviews, according to a new report.\"},\n",
+ " {'id': '3EB8QuIGl5asMq7SrfD69oQCanHyuS7kvXDAEXrHfKw',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Fed's John Williams Among Biggest Macro Catalysts Today\",\n",
+ " 'author': 'Lisa Levin',\n",
+ " 'published_utc': '2022-10-21T08:48:53Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/22/10/29355074/feds-john-williams-among-biggest-macro-catalysts-today',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/29355074',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/10/21/image-federal-reserve.png?width=1200&height=800&fit=crop',\n",
+ " 'description': 'U.S. stocks closed lower on Thursday with the Nasdaq Composite dropping around 0.6% amid a decline in Tesla, Inc. (NASDAQ: TSLA) shares.\\nLet’s have a look at the ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['News', 'Economics', 'Pre-Market Outlook', 'Markets']},\n",
+ " {'id': 'zlLp8eAMY7_s__5gY59fK7Il13BFTbJNaE_UFl6793E',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Why Super Micro Computer Shares Jumped Over 10%; Here Are 73 Biggest Movers From Yesterday',\n",
+ " 'author': 'Lisa Levin',\n",
+ " 'published_utc': '2022-10-21T08:36:55Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/22/10/29355028/why-super-micro-computer-shares-jumped-over-10-here-are-73-biggest-movers-from-yesterday',\n",
+ " 'tickers': ['ID',\n",
+ " 'MAAQ',\n",
+ " 'CRBP',\n",
+ " 'ACOR',\n",
+ " 'SOBR',\n",
+ " 'NOK',\n",
+ " 'QNGY',\n",
+ " 'TLS',\n",
+ " 'ALVR',\n",
+ " 'KTRA',\n",
+ " 'POL',\n",
+ " 'STRY',\n",
+ " 'APE',\n",
+ " 'ASTI',\n",
+ " 'PXMD',\n",
+ " 'SKLZ',\n",
+ " 'SNV',\n",
+ " 'PEGY',\n",
+ " 'SYRS',\n",
+ " 'COMS',\n",
+ " 'OLMA',\n",
+ " 'WU',\n",
+ " 'RBT',\n",
+ " 'VINO',\n",
+ " 'ERIC',\n",
+ " 'SCPS',\n",
+ " 'TSLA',\n",
+ " 'UPXI',\n",
+ " 'SNES',\n",
+ " 'HCCI',\n",
+ " 'LABP',\n",
+ " 'CCM',\n",
+ " 'IVVD',\n",
+ " 'KALA',\n",
+ " 'KALU',\n",
+ " 'LMAO',\n",
+ " 'AMPS',\n",
+ " 'AMPX',\n",
+ " 'FNGR',\n",
+ " 'MCRI',\n",
+ " 'NVEC',\n",
+ " 'HLBZ',\n",
+ " 'VNRX',\n",
+ " 'RUM',\n",
+ " 'AREB',\n",
+ " 'PGTI',\n",
+ " 'NXTP',\n",
+ " 'APCX',\n",
+ " 'VRT',\n",
+ " 'SMCI',\n",
+ " 'TALS',\n",
+ " 'RDHL',\n",
+ " 'SLNG',\n",
+ " 'TCBI',\n",
+ " 'SVFD',\n",
+ " 'INBK',\n",
+ " 'PDSB',\n",
+ " 'WDFC',\n",
+ " 'KPLT',\n",
+ " 'TRUP',\n",
+ " 'ZVO',\n",
+ " 'ALF',\n",
+ " 'BHG',\n",
+ " 'ENSV',\n",
+ " 'FULC',\n",
+ " 'ALL',\n",
+ " 'RKLY',\n",
+ " 'TBK',\n",
+ " 'CABA',\n",
+ " 'IBM',\n",
+ " 'KPRX',\n",
+ " 'NGM',\n",
+ " 'CALT'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/29355028',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/10/21/image41.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': \"Gainers\\n\\nNextPlay Technologies, Inc. (NASDAQ: NXTP) shares climbed 107.3% to close at $0.4138 on Thursday after the company announced its NextFintech division received commitment for a $15 million strategic investment.\\nAscent Solar Technologies, Inc. (NASDAQ: ASTI) surged 57.5% to close at $5.12. Ascent Solar recently named Jeffrey Max as CEO.\\nQuanergy Systems, Inc. (NYSE: QNGY) gained 51.2% to settle at $1.89.\\nCabaletta Bio, Inc. (NASDAQ: CABA) jumped 50.8% to close at $1.96. Cabaletta Bio President and CEO Steven Nichtberger acquired a total of 8,127 shares at an average price of $1.25.\\nSave Foods, Inc. (NASDAQ: SVFD) gained 31.3% to close at $1.97.\\nFingerMotion, Inc. (NASDAQ: FNGR) rose 31% to close at $7.57. FingerMotion announced a cooperation agreement between Suning.com and FingerMotion's subsidiary, Shanghai JiuGe Information Technology Co., Ltd.\\nPineapple Energy Inc. (NASDAQ: PEGY) climbed 29.7% to close at $4.93 after dipping over 20% on Wednesday.\\nKatapult Holdings, Inc. (NASDAQ: KPLT) surged 24.3% to close at $1.10.\\nVolitionRx Limited (NASDAQ: VNRX) gained 22.8% to close at $1.78. Volition signed global supply agreement for Nu.Q Vet Cancer Test.\\nNGM Biopharmaceuticals, Inc. (NASDAQ: NGM) rose 21.7% to close at $4.49. NGM Biopharmaceuticals Director David Goeddel V bought a total of 130,000 shares at an average price of $3.56.\\nSkillz Inc. (NYSE: SKLZ) gained 21.5% to close at $1.07. Skillz is expected to release its Q3 results after the close of the market on Wednesday, November 2, 2022.\\nAppTech Payments Corp. (NASDAQ: APCX) rose 20.9% to close at $0.7312.\\nCorbus Pharmaceuticals Holdings, Inc. (NASDAQ: CRBP) gained 20.1% to close at $0.1345.\\nNVE Corporation (NASDAQ: NVEC) rose 18.3% to close at $57.03. NVE posted Q2 EPS of $1.26.\\nAMC Entertainment Holdings, Inc. (NYSE: APE) gained 18% to close at $2.43.\\nTelos Corporation (NASDAQ: TLS) shares surged 17.5% to close at $9.82. Needham maintained Telos with a Buy and raised the price target from $10 to $13.\\nOlema Pharmaceuticals, Inc. (NASDAQ: OLMA) gained 17.2% to close at $3.40.\\nPaxMedica, Inc. (NASDAQ: PXMD) climbed 16% to settle at $3.15.\\nMonarch Casino & Resort, Inc. (NASDAQ: MCRI) gained 15.6% to close at $71.17. Stifel upgraded Monarch Casino & Resort from Hold to Buy and raised the price target from $70 to $77.\\nSOBR Safe, Inc. (NASDAQ: SOBR) gained 14.8% to close at $3.48. SOBR Safe secured a large industrial customer and validation of its sales strategy.\\nRubicon Technologies, Inc. (NYSE: RBT) jumped 14.7% to close at $2.27.\\nCOMSovereign Holding Corp. (NASDAQ: COMS) gained 14.2% to close at $0.1004 after dipping 26% on Wednesday. COMSovereign recently announced receipt of Nasdaq listing determination.\\nPDS Biotechnology Corporation (NASDAQ: PDSB) surged 14.1% to close at $4.61. PDS ...\",\n",
+ " 'keywords': ['News',\n",
+ " 'Penny Stocks',\n",
+ " 'Small Cap',\n",
+ " 'Pre-Market Outlook',\n",
+ " 'Markets',\n",
+ " 'Movers',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': '-cZQJzoe30GeRWERTSbZ7-d2N5Hq4LHMcrm5FGa_Fes',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Volatility In Markets Decreases, Dow Drops Around 90 Points',\n",
+ " 'author': 'Lisa Levin',\n",
+ " 'published_utc': '2022-10-21T07:20:46Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/earnings/22/10/29354815/volatility-in-markets-decreases-dow-drops-around-90-points',\n",
+ " 'tickers': ['AAPL', 'MSFT', 'IBM', 'T', 'TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/29354815',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/10/21/image_4.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'U.S. stocks closed lower on Thursday, as the recent\\xa0labor market data reinforced prospects of aggressive rate hikes from the Federal Reserve.\\nUS initial jobless claims declined by 12,000 to 214,000 in the week ending October 15th, compared to market estimates of 230,000.\\nOn the earnings front, IBM (NYSE: IBM) reported upbeat quarterly earnings, while AT&T Inc (NYSE: T) boosted its annual profit forecast.\\nShares of Tesla, Inc. (NASDAQ:',\n",
+ " 'keywords': ['News',\n",
+ " 'Earnings',\n",
+ " 'Pre-Market Outlook',\n",
+ " 'Markets',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': 'aKgaTM3F5O2Z4Lnp4Gdgyejrms7UV04UDwecvkL2cUI',\n",
+ " 'publisher': {'name': 'Seeking Alpha',\n",
+ " 'homepage_url': 'https://seekingalpha.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/seekingalpha.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/seekingalpha.ico'},\n",
+ " 'title': 'Tesla: The $4 Trillion Target Is A Red Flag',\n",
+ " 'author': 'Growth at a Good Price',\n",
+ " 'published_utc': '2022-10-21T06:19:12Z',\n",
+ " 'article_url': 'https://seekingalpha.com/article/4548006-tesla-stock-4-trillion-target-red-flag',\n",
+ " 'tickers': ['TWTR', 'TSLA'],\n",
+ " 'image_url': 'https://static.seekingalpha.com/cdn/s3/uploads/getty_images/1242720271/image_1242720271.jpg?io=getty-c-w750',\n",
+ " 'description': \"Tesla's Q3 earnings results beat on EPS but missed on revenue. Read why I consider yesterday's release a negative catalyst but rate TSLA stock a Hold overall.\"},\n",
+ " {'id': 'rxvYb4iR-HNcmbU5PlnwWZ2n80iwbeElzAriGxhbgsU',\n",
+ " 'publisher': {'name': 'Seeking Alpha',\n",
+ " 'homepage_url': 'https://seekingalpha.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/seekingalpha.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/seekingalpha.ico'},\n",
+ " 'title': 'Tesla: Q3 Earnings Showed Immense Strength In An Impossible Environment',\n",
+ " 'author': 'Stocks and Savings',\n",
+ " 'published_utc': '2022-10-21T04:22:38Z',\n",
+ " 'article_url': 'https://seekingalpha.com/article/4547991-tesla-stock-q3-earnings-immense-strength-impossible-environment',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'image_url': 'https://static.seekingalpha.com/cdn/s3/uploads/getty_images/497215523/image_497215523.jpg?io=getty-c-w750',\n",
+ " 'description': \"Tesla's Q3 earnings appeared disappointing, with revenue coming in below expectations. But here are the reasons I see for TSLA investors to be optimistic.\"},\n",
+ " {'id': 'zV6f12igmRKluGIdwimEbk5_mhqP2z-k36oV9ri0nhQ',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Citadel's Ken Griffin Among Elon Musk's Financial Backers In $44B Twitter Buyout: Report\",\n",
+ " 'author': 'Ramakrishnan M',\n",
+ " 'published_utc': '2022-10-21T03:33:16Z',\n",
+ " 'article_url': 'https://www.benzinga.com/m-a/22/10/29354151/citadels-ken-griffin-among-elon-musks-financial-backers-in-44b-twitter-buyout-report',\n",
+ " 'tickers': ['TSLA', 'TWTR'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/29354151',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/10/20/griffin.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': \"Ken Griffin,\\xa0the billionaire founder of\\xa0Citadel Securities,\\xa0reportedly\\xa0committed millions to\\xa0Tesla Inc\\xa0(NASDAQ: TSLA) CEO\\xa0Elon Musk's buyout of\\xa0Twitter Inc\\xa0(NYSE: TWTR), but it remained undisclosed.\\nWhat Happened: Griffin pledged approximately\\xa0$20 million for Musk's take-private deal, Bloomberg\\xa0reported\\xa0on Thursday, citing a person familiar with the matter.\\nAlthough Musk has not publicly disclosed Griffin's involvement, the hedge fund manager was reportedly\\xa0among a handful of significant people subpoenaed by Twitter\\xa0in August as it wrangled courts to get the Tesla ...\",\n",
+ " 'keywords': ['M&A',\n",
+ " 'Social Media',\n",
+ " 'Top Stories',\n",
+ " 'Tech',\n",
+ " 'Media',\n",
+ " 'General']},\n",
+ " {'id': 'foKH1ccgx1ZlGCGPUz88oRB-TxK34Q2K9IR2BbOmBPY',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Tesla, AT&T, AMD, Nvidia, Candel Therapeutics: Why These 5 Stocks Are Seeing High Attention Today',\n",
+ " 'author': 'Bhavik Nair',\n",
+ " 'published_utc': '2022-10-21T02:26:10Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/earnings/22/10/29354025/tesla-at-t-amd-nvidia-candel-therapuetics-whats-happening-with-these-top-5-trending-stocks',\n",
+ " 'tickers': ['NVDA', 'AMD', 'T', 'TSLA', 'CADL'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/29354025',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/10/20/shutterstock_306271739.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Major U.S. indices closed in the red on Thursday as investors continued to digest higher Treasury yields as well as key earnings. The yield in the benchmark U.S. 10-year Treasuries topped 4.239%, a level unseen since 2008. As the U.S. stock market declined\\xa0for the second straight day, Benzinga\\xa0dives into five stocks that are seeing high interest among retail investors today.\\n1. AT&T Inc. (NYSE: T): Shares of the telecommunications company surged over 7% after it reported revenue\\xa0of $29.64 billion, beating a consensus estimate of $29.56-billion. AT&T ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['News',\n",
+ " 'Earnings',\n",
+ " 'Penny Stocks',\n",
+ " 'Top Stories',\n",
+ " 'Hot',\n",
+ " 'After-Hours Center',\n",
+ " 'Markets',\n",
+ " 'Movers',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': 'WtaEYpifR9i6IKU3T8RYqHQ0cth-ZeGdOxEA1Xt7Ymw',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Cathie Wood Picks Up $13M In Tesla Shares As Investors React Negatively To Q3 Earnings',\n",
+ " 'author': 'Bhavik Nair',\n",
+ " 'published_utc': '2022-10-21T01:25:46Z',\n",
+ " 'article_url': 'https://www.benzinga.com/trading-ideas/long-ideas/22/10/29353811/cathie-wood-picks-up-13m-in-tesla-shares-as-investors-react-negatively-to-q3-earnings',\n",
+ " 'tickers': ['NVDA', 'TSLA', 'ARKW', 'ARKK', 'ZM'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/29353811',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/10/20/shutterstock_2168697155.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Cathie Wood-led ARK Investment Management has bought over 66,000 shares of Tesla Inc (NASDAQ: TSLA) at a valuation of over $13 million, based on Thursday’s closing price, via the company’s flagship ARK Innovation ETF (NYSE: ARKK).\\nShares of Tesla and Zoom Video Communications Inc (NASDAQ: ZM) appear to be in a tight race for the top spot in the fund’s holdings. Currently, Tesla is the top holding in the ARKK fund, with a weight of 9.42% in the portfolio, according to the latest data on the company’s website.\\nAlso Read: Best Online Stock ...',\n",
+ " 'keywords': ['Long Ideas',\n",
+ " 'News',\n",
+ " 'Short Ideas',\n",
+ " 'Broad U.S. Equity ETFs',\n",
+ " 'Specialty ETFs',\n",
+ " 'Top Stories',\n",
+ " 'Trading Ideas',\n",
+ " 'ETFs']},\n",
+ " {'id': 'nXz89RLotbMuhj1uavP3d4Id11Ml_GmFdF9yQ94neEU',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Why Tesla Stock Fell Today',\n",
+ " 'author': 'newsfeedback@fool.com (Joe Tenebruso)',\n",
+ " 'published_utc': '2022-10-20T21:15:20Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2022/10/20/why-tesla-stock-fell-today/',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/705636/investor-gettyimages-1272168490.jpg',\n",
+ " 'description': \"The EV leader couldn't meet the market's sky-high expectations.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'iQxTo51P8PLiXyx2yrpudd0sgrLTsWkoK_21vtNUSLg',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': \"Government bonds are eroding crypto's appeal for investors seeking rich yields. But some are staying.\",\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2022-10-20T21:01:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/should-you-stake-ether-when-u-s-treasuries-are-yielding-more-11666295319',\n",
+ " 'tickers': ['COIN',\n",
+ " 'MSTR',\n",
+ " 'RIOT',\n",
+ " 'MARA',\n",
+ " 'EBON',\n",
+ " 'OSTK',\n",
+ " 'SQ',\n",
+ " 'TSLA',\n",
+ " 'PYPL',\n",
+ " 'NVDA',\n",
+ " 'AMD',\n",
+ " 'BITO',\n",
+ " 'BITI',\n",
+ " 'BTF',\n",
+ " 'XBTF'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/should-you-stake-ether-when-u-s-treasuries-are-yielding-more-11666295319',\n",
+ " 'image_url': 'https://images.mktw.net/im-429485/social',\n",
+ " 'description': \"A weekly look at the most important moves and news in crypto and what's on the horizon in digital assets.\"},\n",
+ " {'id': 'waowoe3NYpv9Zmg5DdciCg5P2GRar881Ry7QaNFmVRc',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Why ChargePoint Shares Tanked Today',\n",
+ " 'author': 'newsfeedback@fool.com (Howard Smith)',\n",
+ " 'published_utc': '2022-10-20T20:12:10Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2022/10/20/why-chargepoint-shares-tanked-today/',\n",
+ " 'tickers': ['TSLA', 'BLNK', 'CHPT'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/705615/ev_charging.jpg',\n",
+ " 'description': \"The demand for EVs doesn't seem to be waning -- and that's what ChargePoint is counting on.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'SYxQYVnQ1k7BEdrsBtknOt8cXP7-bBREmDdzFT53YPw',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Dow down over 100 points in final hour of trade despite strong earnings as Treasury yields grind higher',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2022-10-20T19:36:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/u-s-stock-futures-dip-as-treasury-yields-hit-fresh-14-year-highs-tesla-stock-tumbles-post-results-11666257033',\n",
+ " 'tickers': ['DJIA',\n",
+ " 'COMP',\n",
+ " 'T',\n",
+ " 'IBM',\n",
+ " 'DOW',\n",
+ " 'UAL',\n",
+ " 'TSLA',\n",
+ " 'FDX',\n",
+ " 'AAPL',\n",
+ " 'GOOG',\n",
+ " 'AMZN',\n",
+ " 'AAL',\n",
+ " 'NKE',\n",
+ " 'LRCX',\n",
+ " 'NVDA'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/u-s-stock-futures-dip-as-treasury-yields-hit-fresh-14-year-highs-tesla-stock-tumbles-post-results-11666257033',\n",
+ " 'image_url': 'https://images.mktw.net/im-594593/social',\n",
+ " 'description': 'U.S. stocks trade lower in the final hour of trade on Thursday, reversing some of their gains for the week, despite a strong start to the third-quarter earnings season, as Treasury yields rise to fresh multiyear highs'},\n",
+ " {'id': 'qXA2Hap9B5Cge4ENdQsBcoDcP2K4VfpyB9Qw6u_ShBA',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': \"Apple, Spotify should 'stop working' with Kanye West, says super-agent Ari Emanuel \",\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2022-10-20T18:32:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/apple-adidas-and-spotify-should-stop-working-with-kanye-west-says-super-agent-ari-emanuel-11666283914',\n",
+ " 'tickers': ['AAPL', 'SPOT', 'TSLA'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/apple-adidas-and-spotify-should-stop-working-with-kanye-west-says-super-agent-ari-emanuel-11666283914',\n",
+ " 'image_url': 'https://images.mktw.net/im-648092/social',\n",
+ " 'description': \"'There should be no tolerance anywhere for West’s anti-Semitism,' wrote the Endeavor CEO\"},\n",
+ " {'id': 'DRsP5g_ztWAUSQLBQBQjtEcL7l7hZ_dcIjGvzWd1S_E',\n",
+ " 'publisher': {'name': 'Invezz',\n",
+ " 'homepage_url': 'https://invezz.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/invezz.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/invezz.png'},\n",
+ " 'title': 'Analyst blasts Elon Musk for his attitude on the earnings call',\n",
+ " 'author': 'Wajeeh Khan',\n",
+ " 'published_utc': '2022-10-20T17:55:07Z',\n",
+ " 'article_url': 'https://invezz.com/news/2022/10/20/analyst-blasts-elon-musk-earnings-call-attitude/',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'image_url': 'https://invezz.com/wp-content/uploads/2022/08/184526226-m-1024x683.jpg',\n",
+ " 'description': 'Tesla Inc (NASDAQ: TSLA) is trading down this morning after the electric vehicles manufacturer said it will fail to deliver on its promise of a 50% growth in deliveries this year. Bernstein analyst reacts to Tesla’s earnings call What’s also hurting sentiment is that the multinational reported weaker-than-expected sales for its fiscal third quarter last […]\\nThe post Analyst blasts Elon Musk for his attitude on the earnings call appeared first on Invezz.',\n",
+ " 'keywords': ['Industries',\n",
+ " 'Manufacturing',\n",
+ " 'North America',\n",
+ " 'Stocks & Shares',\n",
+ " 'USA',\n",
+ " 'World']},\n",
+ " {'id': 'SaFaC1XolDy4jbutilvqU68tBKP74HbjfTZ_SQiey8s',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'Tesla (TSLA) Pulls Off 7th Consecutive Beat in Q3 Earnings',\n",
+ " 'author': 'Zacks Equity Research',\n",
+ " 'published_utc': '2022-10-20T17:35:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/1995252/tesla-tsla-pulls-off-7th-consecutive-beat-in-q3-earnings',\n",
+ " 'tickers': ['F', 'GM', 'TSLA'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/1995252/tesla-tsla-pulls-off-7th-consecutive-beat-in-q3-earnings',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/articles/main/84/1974.jpg',\n",
+ " 'description': 'While Tesla (TSLA) manages to maintain its beat streak in Q3 despite industry challenges, its revenues fall short of the consensus mark.'},\n",
+ " {'id': 'JVvFHhEpUe52JZn8sQmhWrECtzGOLFDdyPGt9-6XeOY',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Why Ericsson Shares Are Trading Lower? Here Are 56 Stocks Moving In Thursday's Mid-Day Session\",\n",
+ " 'author': 'Lisa Levin',\n",
+ " 'published_utc': '2022-10-20T17:17:04Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/22/10/29347446/why-ericsson-shares-are-trading-lower-here-are-56-stocks-moving-in-thursdays-mid-day-session',\n",
+ " 'tickers': ['MULN',\n",
+ " 'SNV',\n",
+ " 'VRT',\n",
+ " 'ACOR',\n",
+ " 'MAAQ',\n",
+ " 'WU',\n",
+ " 'SLNG',\n",
+ " 'ASTI',\n",
+ " 'PEGY',\n",
+ " 'TSLA',\n",
+ " 'PDSB',\n",
+ " 'COMS',\n",
+ " 'ERIC',\n",
+ " 'RBT',\n",
+ " 'CCM',\n",
+ " 'ZVO',\n",
+ " 'HCCI',\n",
+ " 'IVVD',\n",
+ " 'VNRX',\n",
+ " 'FULC',\n",
+ " 'KALU',\n",
+ " 'AMPX',\n",
+ " 'APCX',\n",
+ " 'CABA',\n",
+ " 'MCRI',\n",
+ " 'RUM',\n",
+ " 'RDHL',\n",
+ " 'CALT',\n",
+ " 'NVEC',\n",
+ " 'HOLO',\n",
+ " 'INBK',\n",
+ " 'KTRA',\n",
+ " 'SMCI',\n",
+ " 'TRUP',\n",
+ " 'PXMD',\n",
+ " 'WDFC',\n",
+ " 'ENSV',\n",
+ " 'SKLZ',\n",
+ " 'ALF',\n",
+ " 'TBK',\n",
+ " 'SCPS',\n",
+ " 'ALL',\n",
+ " 'NGM',\n",
+ " 'LMAO',\n",
+ " 'IBM',\n",
+ " 'TLS',\n",
+ " 'HLBZ',\n",
+ " 'NXTP',\n",
+ " 'ID',\n",
+ " 'SNES',\n",
+ " 'TALS',\n",
+ " 'NOK',\n",
+ " 'KALA',\n",
+ " 'BHG',\n",
+ " 'POL',\n",
+ " 'AREB'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/29347446',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/10/20/image-ericsson.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Gainers\\n\\nNextPlay Technologies, Inc. (NASDAQ: NXTP) shares jumped 126% to $0.4525 after the company announced its NextFintech division received commitment for a $15 million strategic investment.\\nAscent Solar Technologies, Inc. (NASDAQ: ASTI) gained 44.1% to $4.6852. Ascent Solar recently named Jeffrey Max as CEO.\\nAmerican Rebel Holdings, Inc. (NASDAQ: AREB) rose 32.4% to $0.3640 after the company announced it sees $5 million in pro forma Q3 gross revenue.\\nAlfi, Inc. (NASDAQ: ALF) jumped 30.8% to $0.3390.\\nRubicon Technologies, Inc. (NYSE: RBT) gained 30.3% to $2.5790.\\nNGM Biopharmaceuticals, Inc. (NASDAQ: NGM) rose 26% to $4.65. NGM Biopharmaceuticals Director David Goeddel V bought a total of 130,000 shares at an average price of $3.56.\\nCabaletta Bio, Inc. (NASDAQ: CABA) jumped 24% to $1.62. Cabaletta Bio President and CEO Steven Nichtberger acquired a total of 8,127 shares at an average price of $1.25.\\nAppTech Payments Corp. (NASDAQ: APCX) rose 23.3% to $0.7459.\\nSkillz Inc. (NYSE: SKLZ) gained 22.6% to $1.08. Skillz is expected to release its Q3 results after the close of the market on Wednesday, November 2, 2022.\\nPolished.com Inc. (NYSE: POL) rose 21.1% to $0.63.\\nInvivyd, Inc. (NASDAQ: IVVD) jumped 19.9% to $3.91. Invivyd recently appointed Fred Driscoll as interim Chief Financial Officer.\\nMicroCloud Hologram Inc. (NASDAQ: HOLO) gained 19.5% to $2.93.\\nVolitionRx Limited (NASDAQ: VNRX) gained 19.3% to $1.73. Volition signed global supply agreement for Nu.Q Vet Cancer Test.\\nPaxMedica, Inc. (NASDAQ: PXMD) jumped 18.8% to $3.2108.\\nTelos Corporation (NASDAQ: TLS) shares climbed 18.8% to $9.94. Needham maintained Telos with a Buy and raised the price target from $10 to $13.\\nPDS Biotechnology Corporation (NASDAQ: PDSB) surged 18% to $4.77. PDS Biotech recently announced expanded interim data in the Phase 2 clinical trial investigating the PDS0101-based triple combination therapy.\\nNVE Corporation (NASDAQ: NVEC) rose 17.9% to $56.86. NVE posted Q2 EPS of $1.26.\\nCOMSovereign Holding Corp. (NASDAQ: COMS) gained 17.9% to $0.1035 after dipping 26% on Wednesday. COMSovereign recently announced receipt of Nasdaq ...',\n",
+ " 'keywords': ['News',\n",
+ " 'Penny Stocks',\n",
+ " 'Small Cap',\n",
+ " 'Intraday Update',\n",
+ " 'Markets',\n",
+ " 'Movers',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': 'x-7NchjbPUp6XD1iBE5BsoIxw5-zgRWQbEK6ooWPyjE',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Why Rivian, Nio, and Other EV Maker Stocks Rose Today',\n",
+ " 'author': 'newsfeedback@fool.com (Howard Smith)',\n",
+ " 'published_utc': '2022-10-20T17:13:51Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2022/10/20/why-rivian-nio-and-other-ev-maker-stocks-rose-toda/',\n",
+ " 'tickers': ['RIVN', 'TSLA', 'NIO', 'RIDE', 'LCID'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/705536/rivian_2022-r1t-17.jpeg',\n",
+ " 'description': \"Investors in early stage EV companies keyed on one important factor from Tesla's earnings report.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'VWbJpkogwB15CgpHHadWx9Hq48ZFxIq4A0vfc8KgvtQ',\n",
+ " 'publisher': {'name': 'Investing.com',\n",
+ " 'homepage_url': 'https://www.investing.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/investing.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/investing.ico'},\n",
+ " 'title': \"What’s The Outlook For Tesla After Yesterday's Disappointing Q3 Earnings Report?\",\n",
+ " 'author': 'Haris Anwar/Investing.com',\n",
+ " 'published_utc': '2022-10-20T16:44:00Z',\n",
+ " 'article_url': 'https://www.investing.com/analysis/whats-the-outlook-for-tesla-after-yesterdays-disappointing-q3-earnings-report-200631334',\n",
+ " 'tickers': ['TSLA', 'TWTR'],\n",
+ " 'amp_url': 'https://m.investing.com/analysis/whats-the-outlook-for-tesla-after-yesterdays-disappointing-q3-earnings-report-200631334?ampMode=1',\n",
+ " 'image_url': 'https://i-invdn-com.investing.com/redesign/images/seo/investingcom_analysis_og.jpg'},\n",
+ " {'id': 'M3dKPtmVbDd_Fl2n8NKQyQVeWPObCGc0Z6AftXYJpQI',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Why These 5 Tesla Analysts Have Mixed Views On Q3: 'We Were Prepared For An Earnings Miss'\",\n",
+ " 'author': 'Chris Katje',\n",
+ " 'published_utc': '2022-10-20T15:50:13Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/22/10/29344999/why-these-5-tesla-analysts-have-mixed-views-on-q3-we-were-prepared-for-an-earnings-',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/29344999',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/10/20/0x0-dji_0035.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': \"Tesla Inc (NASDAQ: TSLA) reported record revenue, operating margins and free cash flow in the third quarter. The company missed analyst revenue estimates. On Thursday, The Street is reacting to the quarterly results — and\\xa0adjusting price targets down.\\nThe Tesla Analysts: Morgan Stanley analyst Adam Jonas has an Overweight rating on Tesla and $350 price target.\\xa0\\nRBC Capital analyst Joseph Spak has an Outperform rating and lowered\\xa0the price target from $340 to $325.\\nMizuho Securities analyst Vijay Rakesh has a Buy rating and lowered\\xa0the price target from $370 to $330.\\nWedbush analyst Daniel Ives has an Outperform rating and lowered\\xa0the price target from $360 to $300.\\nNeedham analyst Vikram Bagri has a Hold rating and no price target.\\nRelated Link:\\xa0With Tesla's Q3 Topline Miss In Rear View, Next 2 Quarters Will Reassure Investors On EV Maker's Long-Term: Analyst\\nThe Tesla Takeaways: Jonas called Tesla’s third-quarter financial report “a clean 3Q earnings beat.” The analyst noted the beat came with several headwinds in the quarter.\\n“We wish FY23 consensus would allow more room for macro uncertainty,” Jonas said. “We were prepared for an earnings ...Full story available on Benzinga.com\",\n",
+ " 'keywords': ['News',\n",
+ " 'Analyst Color',\n",
+ " 'Earnings',\n",
+ " 'Price Target',\n",
+ " 'Reiteration',\n",
+ " 'Top Stories',\n",
+ " 'Analyst Ratings',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': 'cLvCnZTKtbsrfgdIWobRcLz7-ZvuzrX6mD45aCQ4h_A',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': \"A surge in coal and oil emissions was expected with Russia's war and a COVID recovery --- here's what actually happened\",\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2022-10-20T15:48:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/a-jump-in-coal-and-oil-emissions-was-expected-with-russias-invasion-and-a-post-covid-recovery-actual-results-defied-that-prediction-11666204217',\n",
+ " 'tickers': ['ICLN', 'TSLA', 'GM', 'WTRG', 'JETS', 'RAYS'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/a-jump-in-coal-and-oil-emissions-was-expected-with-russias-invasion-and-a-post-covid-recovery-actual-results-defied-that-prediction-11666204217',\n",
+ " 'image_url': 'https://images.mktw.net/im-647159/social',\n",
+ " 'description': 'Energy watchdog says greatly reduced emissions in 2022 can be chalked up to stronger expansion of wind, solar and nuclear, and more electric vehicles.'},\n",
+ " {'id': 'KoAYxqo8vPlKdfcz2CH4RVVPZ8sq9jP-QE_6cHJG0EM',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'U.S.’ first interstate EV charging network for semi-trucks to connect California port with Texas',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2022-10-20T14:48:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/u-s-first-interstate-ev-charging-network-for-semi-trucks-to-connect-california-port-with-texas-11666277314',\n",
+ " 'tickers': ['ICLN', 'DTG', 'TSLA', 'PEP'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/u-s-first-interstate-ev-charging-network-for-semi-trucks-to-connect-california-port-with-texas-11666277314',\n",
+ " 'image_url': 'https://images.mktw.net/im-648087/social',\n",
+ " 'description': 'Busy I-10 corridor for semi-trucks will feature high-powered electric chargers built especially for vehicles of this size, TeraWatt Infrastructure says.'},\n",
+ " {'id': 'cYA_Fjha2VETZwHWq4C3wu19ayBJpFgDLB83GsqFEoY',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Tesla Stock Drops on Earnings Release: 7 Key Metrics You Should See',\n",
+ " 'author': 'newsfeedback@fool.com (Beth McKenna)',\n",
+ " 'published_utc': '2022-10-20T14:40:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2022/10/20/tsla-stock-earnings/',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/705504/tsla-stock-earnings-model-y.png',\n",
+ " 'description': \"In early trading on Thursday, investors seemed to be overly focused on the EV giant's third-quarter revenue falling a little short of Wall Street's expectation.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'fucTa8qIornL3M6iIGkb8_ngWdE6wg_sX_tLCpBuWjY',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Elon Musk Says US In 'Pretty Good Health' But China, Europe Experiencing Recession 'Of Sorts'\",\n",
+ " 'author': 'Navdeep Yadav',\n",
+ " 'published_utc': '2022-10-20T14:39:42Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/22/10/29344014/elon-musk-says-us-in-pretty-good-health-but-china-europe-experiencing-recession-of-sorts',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/29344014',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/10/20/46339127625_054ddd1a61_c.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Tesla Inc\\xa0(NASDAQ:TSLA) CEO\\xa0Elon Musk\\xa0said China is experiencing a slowdown similar to a recession driven by the\\xa0slump in the property market\\xa0that lasted for over a year.\\nWhat Happened:\\xa0The world\\'s richest person, while replying to a question about recent order intake trends during his company\\'s third-quarter earnings call on Wednesday, said, \"China is experiencing a recession of sorts,\" mainly in the real estate market.\\nSee Also: China\\'s Semiconductor Industry \\'Decapitated Overnight\\': What \\'Annihilation Looks Like\\'',\n",
+ " 'keywords': ['News', 'Global', 'Economics']},\n",
+ " {'id': 'm5ps9yeVaPeLhP73ITytumff5bP0EIvOuhvOhvvtn3E',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Did Elon Musk's Tesla Alter Its Bitcoin Holdings In Q3?\",\n",
+ " 'author': 'Mehab Qureshi',\n",
+ " 'published_utc': '2022-10-20T13:36:00Z',\n",
+ " 'article_url': 'https://www.benzinga.com/markets/cryptocurrency/22/10/29336520/did-elon-musks-tesla-alter-its-bitcoin-holdings-in-q3',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/29336520',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/10/20/shutterstock_1913763295.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': \"Tesla Inc.\\xa0(NASDAQ: TSLA) did not sell any of its Bitcoin (CRYPTO: BTC) holdings this quarter, the company said in its latest earnings report. The EV maker holds about 10,500 BTC.\\nWhat Happened: According to Tesla's third-quarter earnings report, $218 million worth of “digital assets” remain on the company's balance sheet. The company didn't discuss cryptocurrencies at the conference call following the\\xa0earnings report.\\nSee More: BEST CRYPTOCURRENCY SCANNERS\\nAt the end of the second quarter in July, Tesla had sold $936 million worth ...\",\n",
+ " 'keywords': ['News', 'Cryptocurrency', 'Markets']},\n",
+ " {'id': 'qlfiCtm3Aeqf-p2QR0qcT_ww5lxTIxpXG0WF_Z0R6pY',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'Should You Sell the Tesla Sales Miss?',\n",
+ " 'author': 'Sejuti Banerjea',\n",
+ " 'published_utc': '2022-10-20T13:21:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/1994787/should-you-sell-the-tesla-sales-miss',\n",
+ " 'tickers': ['F', 'TSLA'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/1994787/should-you-sell-the-tesla-sales-miss',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/articles/main/b3/2062.jpg',\n",
+ " 'description': 'Would selling the shares on this news really be recommended, or not?'},\n",
+ " {'id': 'lndPQs44mF7a979ol1IrjOptMM6waqgR-Wksl-VRaaA',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': \"Tesla's Growth Is Back on Track. Is It Time to Buy?\",\n",
+ " 'author': 'newsfeedback@fool.com (Howard Smith)',\n",
+ " 'published_utc': '2022-10-20T13:18:18Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2022/10/20/teslas-growth-is-back-on-track-is-it-time-to-buy/',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/705448/0x0-models_01.jpg',\n",
+ " 'description': 'Tesla still expects to hit its 50% annual growth production target this year.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'jLIYESKDpKVkQQcMQ9LNz-bPc_6QQF5HmqL2GpQOaD8',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'UBS has released its annual house price bubble report. Here are the most overvalued markets.',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2022-10-20T12:43:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/ubs-has-released-its-annual-house-price-bubble-report-here-are-the-most-overvalued-markets-11666262185',\n",
+ " 'tickers': ['TSLA',\n",
+ " 'TWTR',\n",
+ " 'T',\n",
+ " 'ALL',\n",
+ " 'IBM',\n",
+ " 'ERIC',\n",
+ " 'NOK',\n",
+ " 'PM',\n",
+ " 'MO',\n",
+ " 'GME',\n",
+ " 'MULN',\n",
+ " 'AMC',\n",
+ " 'NIO',\n",
+ " 'AAPL',\n",
+ " 'BBBY',\n",
+ " 'APE',\n",
+ " 'NFLX',\n",
+ " 'CFMS'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/ubs-has-released-its-annual-house-price-bubble-report-here-are-the-most-overvalued-markets-11666262185',\n",
+ " 'image_url': 'https://images.mktw.net/im-647891/social',\n",
+ " 'description': 'The arrival of the seventh annual UBS global real estate bubble report rings different, coming at the start of a period of retreat rather than during a wave of excess.'},\n",
+ " {'id': 'uAUgoItVh894P64yDmp7VaD4GHTxngzepFVE4Belh00',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"With Tesla's Q3 Topline Miss In Rear View, Next 2 Quarters Will Reassure Investors On EV Maker's Long-Term: Analyst\",\n",
+ " 'author': 'Shanthi Rexaline',\n",
+ " 'published_utc': '2022-10-20T12:02:37Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/22/10/29336151/with-teslas-q3-topline-miss-in-rear-view-next-2-quarters-will-reassure-investors-on',\n",
+ " 'tickers': ['TSLA', 'RIVN'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/29336151',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/10/20/shutterstock_2178822385.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': \"Tesla Inc.'s\\xa0(NASDAQ: TSLA) third-quarter earnings report could not give its sagging stock a lift but its forward outlook evinces confidence, according to Loup Funds’ Gene Munster. \\nWhat Happened:\\xa0As opposed to expectations of a small increase in average selling price, Tesla reported a 4% sequential drop, Munster said, attributing the decline to stronger-than-expected cheaper China sales.\\nAutomotive gross margin came in at 26.8% compared to the consensus of 27.5% but exceeded the third quarter’s 26.2%, he noted. This, according to the Tesla bull, was due to a higher mix of lower ASP China sales and higher input costs.\\nSee Also:\\xa0How To Trade Tesla Stock Before And After Q3 Earnings\\n“I view the misses on revenue, deliveries and gross margin as fractional, and understandable, given the broader supply environment,” Munster said,\\nNone of Tesla’s rivals has ...Full story available on Benzinga.com\",\n",
+ " 'keywords': ['Long Ideas',\n",
+ " 'News',\n",
+ " 'Analyst Color',\n",
+ " 'Earnings',\n",
+ " 'Analyst Ratings',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': 'zqda-5o1RHzRjBBn83P7tU7aR_kSELxK4zLiSEMtpK8',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Elon Musk teases massive Tesla stock buyback as CFO trims forecast for annual deliveries and stock falls',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2022-10-20T12:00:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/tesla-beats-on-earnings-but-comes-up-short-on-revenue-stock-falls-in-late-trading-11666210484',\n",
+ " 'tickers': ['TSLA', 'TWTR', 'AAPL'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/tesla-beats-on-earnings-but-comes-up-short-on-revenue-stock-falls-in-late-trading-11666210484',\n",
+ " 'image_url': 'https://images.mktw.net/im-647403/social',\n",
+ " 'description': \"Tesla Inc. produced less revenue than expected despite record deliveries in the third quarter, but earnings beat analysts' estimates.\"},\n",
+ " {'id': '_s5voeWcAJbX3zOSUoP-CP4vNwgDIVMfu3UL2jKIDwk',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': \"Stocks are attempting a bounce as earnings season begins. Here's what it will take for the gains to stick.\",\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2022-10-20T11:39:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/u-s-companies-are-off-to-a-strong-start-this-earnings-season-heres-what-it-will-take-for-stocks-to-rally-11666202376',\n",
+ " 'tickers': ['NFLX', 'PG', 'TSLA'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/u-s-companies-are-off-to-a-strong-start-this-earnings-season-heres-what-it-will-take-for-stocks-to-rally-11666202376',\n",
+ " 'image_url': 'https://images.mktw.net/im-643626/social',\n",
+ " 'description': \"U.S. stocks have advanced since the start of the week as the third quarter earnings reporting season has gotten off to a strong start, with the big banks and other large firms surpassing analysts' expectations.\"},\n",
+ " {'id': 'ALgQN67vV3ERqiUFetJHE7KPIhGBs1rTRn_HnmbXOKY',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Tesla To $325? Here Are 5 Other Price Target Changes For Thursday',\n",
+ " 'author': 'Lisa Levin',\n",
+ " 'published_utc': '2022-10-20T10:59:00Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/22/10/29337839/tesla-to-325-here-are-5-other-price-target-changes-for-thursday',\n",
+ " 'tickers': ['WDFC', 'OKE', 'TSLA', 'NEE', 'COUP', 'WING'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/29337839',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/10/20/image-tesla.png?width=1200&height=800&fit=crop',\n",
+ " 'description': 'RBC Capital cut Tesla, Inc. (NASDAQ: TSLA) price target from $340 to $325. RBC Capital analyst Joseph Spak maintained the stock with an Outperform rating. Tesla shares fell 5% to $210.96 in pre-market trading.\\nKeybanc cut the price target on NextEra Energy, Inc. (NYSE: NEE) from $93 to $89. Keybanc analyst Sophie Karp maintained an Overweight rating on the stock. NextEra Energy shares fell 0.2% to $73.53 in pre-market trading.\\nRaymond James ...',\n",
+ " 'keywords': ['News',\n",
+ " 'Price Target',\n",
+ " 'Pre-Market Outlook',\n",
+ " 'Markets',\n",
+ " 'Analyst Ratings',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': 'PQxNfB7dQRZ1OA87LGo10Xw3cNjOwgekquA3Cq8RKiQ',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Cathie Wood's Funds Deliver Mixed Q3 Results: Ark Founder's Shares Take On Zoom, Roku, Teladoc And Blockchain\",\n",
+ " 'author': 'Bhavik Nair',\n",
+ " 'published_utc': '2022-10-20T10:58:56Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/22/10/29335103/cathie-woods-funds-deliver-mixed-q3-results-ark-foundersshares-take-on-zoom-roku-te',\n",
+ " 'tickers': ['COIN', 'EXAS', 'TSLA', 'PATH', 'ARKQ', 'ARKK', 'ROKU'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/29335103',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/10/19/shutterstock_1940536246.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': \"Cathie Wood-led\\xa0ARK Investment Management’s flagship fund\\xa0ARK Innovation ETF’s (NYSE:\\xa0ARKK) performance during the third quarter was mixed relative to broad-based indexes, as it outperformed the\\xa0MSCI World Index\\xa0but underperformed the\\xa0S&P 500 Index.\\xa0\\nAmong the top drags were\\xa0Zoom Video Communications Inc\\xa0(NASDAQ:\\xa0ZM) and\\xa0Roku\\xa0(NASDAQ:\\xa0ROKU), the company’s third-quarter\\xa0report pointed out.\\n“We maintain high conviction in Zoom’s potential to share with\\xa0Microsoft Corporation\\xa0(NASDAQ:\\xa0MSFT) a majority of the enterprise communications platform space,” Wood said in her commentary.\\nAlso Read:\\xa0Best Investment Apps\\nWood said despite Roku's disappointing quarter and weak guidance, Ark research indicates its long-term growth story remains intact as consumers appear to be adopting connected TV and abandoning linear TV. ARKK has lost over 5% in the three months to ...Full story available on Benzinga.com\",\n",
+ " 'keywords': ['News',\n",
+ " 'Analyst Color',\n",
+ " 'Penny Stocks',\n",
+ " 'Broad U.S. Equity ETFs',\n",
+ " 'Small Cap',\n",
+ " 'Top Stories',\n",
+ " 'Analyst Ratings',\n",
+ " 'ETFs']},\n",
+ " {'id': 'J052-U1HYuUUTjcfFmQ8UecngGKxmnAYqN7PFEngIuc',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Nasdaq, S&P 500 Futures Slip As Mixed Earnings Report, Economic Worries Keep Sentiment Subdued — Tesla, Nokia Plunge Premarket',\n",
+ " 'author': 'Shanthi Rexaline',\n",
+ " 'published_utc': '2022-10-20T10:57:01Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/earnings/22/10/29337652/nasdaq-s-p-500-futures-slip-as-mixed-earnings-report-economic-worries-keep-sentiment-subdued-tesla-',\n",
+ " 'tickers': ['SPY', 'IBM', 'NOK', 'TSLA', 'QQQ'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/29337652',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/10/20/shutterstock_1720647151_2.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': \"The major U.S. index futures are pointing to a mixed open on Thursday, as traders pause following a two-session rally early in the week. Mixed earnings could temper the market mood even as recession fears intensify\\nStocks snapped a two-session rally on Wednesday as rising bond yields stirred anxiety among traders. The yield on the 10-year Treasury note rose to 4.136%, marking the highest level since July 2008, underlining the recession fears among investors.\\n“A steady 3-month/10-year inversion would reinforce the Treasury market's signal that a recession is in the offing, since it has the reputation of predicting a serious economic downturn,” Quincy Krosby, chief global strategist at LPL Financial said in a note.\\n\\nU.S. Indices' Performance On Wednesday\\n\\n\\nIndex\\nPerformance (+/-)\\n\\xa0\\nValue\\n\\n\\n\\n\\nNasdaq Composite\\n-0.85%\\n\\xa0\\n10,680.51\\n\\n\\nS&P 500 Index\\n-0.67%\\n\\xa0\\n3,695.16\\n\\n\\nDow Industrials\\n-0.33%\\n\\xa0\\n30,423.81\\n\\n\\n\\nHere’s a peek into index futures trading:\\n\\nU.S. Futures' Performance On Thursday During Premarket Session\\n\\n\\nIndex\\nPerformance (+/-)\\n\\xa0\\n\\n\\n\\n\\nNasdaq 100 Futures\\n-0.38%\\n\\xa0\\n\\n\\nS&P 500 Futures\\n-0.11%\\n\\xa0\\n\\n\\nDow Futures\\n+0.13%\\n\\xa0\\n\\n\\nR2K Futures\\n+0.42%\\n\\xa0\\n\\n\\n\\nIn premarket trading on Thursday, the SPDR S&P 500 ETF Trust(NYSE: SPY) fell 0.18% to $367.85 and Invesco QQQ Trust(NASDAQ:\",\n",
+ " 'keywords': ['News',\n",
+ " 'Earnings',\n",
+ " 'Penny Stocks',\n",
+ " 'Futures',\n",
+ " 'Previews',\n",
+ " 'Top Stories',\n",
+ " 'Economics',\n",
+ " 'Federal Reserve',\n",
+ " 'Pre-Market Outlook',\n",
+ " 'Markets',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': 'MPMt36z4xg2kY7smddLbQrZUicTcaYIhD0-A5i1DZJw',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Nio Stock: Buy, Sell, or Hold in 2023?',\n",
+ " 'author': 'newsfeedback@fool.com (Rekha Khandelwal)',\n",
+ " 'published_utc': '2022-12-11T15:07:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2022/12/11/nio-stock-buy-sell-or-hold-in-2023/',\n",
+ " 'tickers': ['NIO', 'TSLA', 'XPEV', 'LI'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/712440/woman-near-the-electric-refueling-station.jpg',\n",
+ " 'description': \"Expansion in the European market hinges on Nio's ability to provide technologically advanced EVs at competitive prices.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'yzzlMokTAOXUHBcQAYwj8PN34UH-Rozc9zhIZpacnfE',\n",
+ " 'publisher': {'name': 'Seeking Alpha',\n",
+ " 'homepage_url': 'https://seekingalpha.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/seekingalpha.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/seekingalpha.ico'},\n",
+ " 'title': 'Take A Closer Look At Berkshire If You Want To Be Long Apple',\n",
+ " 'author': 'BeanKounter Capital',\n",
+ " 'published_utc': '2022-12-11T14:00:00Z',\n",
+ " 'article_url': 'https://seekingalpha.com/article/4563756-look-at-berkshire-stock-if-you-want-to-be-long-apple',\n",
+ " 'tickers': ['BLK',\n",
+ " 'GOOG',\n",
+ " 'GOOGL',\n",
+ " 'IVV',\n",
+ " 'MSFT',\n",
+ " 'SPY',\n",
+ " 'STT',\n",
+ " 'TSLA',\n",
+ " 'VOO',\n",
+ " 'AXP',\n",
+ " 'BAC',\n",
+ " 'CVX',\n",
+ " 'JEF',\n",
+ " 'LPX',\n",
+ " 'OXY',\n",
+ " 'TSM',\n",
+ " 'AAPL',\n",
+ " 'BRK.A',\n",
+ " 'BRK.B'],\n",
+ " 'image_url': 'https://static.seekingalpha.com/cdn/s3/uploads/getty_images/1363326235/image_1363326235.jpg?io=getty-c-w750',\n",
+ " 'description': \"Apple's shares are expensive today at 23.1x earnings. See how Berkshire is a better alternative to having a long position in AAPL stock.\"},\n",
+ " {'id': 'ynm6X0CDMjL_Xg6lq14lJNWTW9JRfGi8lmoc9pYe6FI',\n",
+ " 'publisher': {'name': 'Seeking Alpha',\n",
+ " 'homepage_url': 'https://seekingalpha.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/seekingalpha.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/seekingalpha.ico'},\n",
+ " 'title': 'How To Position Your Portfolio For 2023 If The Soft Landing Narrative Is Right',\n",
+ " 'author': 'Dale Roberts',\n",
+ " 'published_utc': '2022-12-11T05:28:00Z',\n",
+ " 'article_url': 'https://seekingalpha.com/article/4563721-position-your-portfolio-for-2023-if-soft-landing-narrative-is-right',\n",
+ " 'tickers': ['AAPL',\n",
+ " 'BATT',\n",
+ " 'BLK',\n",
+ " 'BRK.A',\n",
+ " 'BRK.B',\n",
+ " 'CL',\n",
+ " 'CVS',\n",
+ " 'GMET',\n",
+ " 'GOOG',\n",
+ " 'GOOGL',\n",
+ " 'IVV',\n",
+ " 'KO',\n",
+ " 'KR',\n",
+ " 'LOW',\n",
+ " 'PEP',\n",
+ " 'RTX',\n",
+ " 'SCHD',\n",
+ " 'TSLA',\n",
+ " 'VIG',\n",
+ " 'VYM',\n",
+ " 'WMT',\n",
+ " 'XLP',\n",
+ " 'XLU',\n",
+ " 'XLV'],\n",
+ " 'image_url': 'https://static.seekingalpha.com/cdn/s3/uploads/getty_images/1405730723/image_1405730723.jpg?io=getty-c-w750',\n",
+ " 'description': 'Stock markets and bond markets have been recovering. Read more to see why I still like the idea of avoiding any outrageous overvaluation.'},\n",
+ " {'id': 'N2Z4lqRT_eCdnBMt00V1JNJit8Y9sbaKNcj33_S2jmM',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': \"BlackRock says the market is misjudging these key risks. Here's its advice on stocks and bonds.\",\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2022-12-10T19:25:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/blackrock-says-the-market-is-misjudging-these-key-risks-heres-its-advice-on-stocks-and-bonds-11670499374',\n",
+ " 'tickers': ['BLK',\n",
+ " 'WYNN',\n",
+ " 'LVS',\n",
+ " 'GME',\n",
+ " 'CRM',\n",
+ " 'TSLA',\n",
+ " 'AMC',\n",
+ " 'NIO',\n",
+ " 'BBBY',\n",
+ " 'AAPL',\n",
+ " 'APE',\n",
+ " 'MULN',\n",
+ " 'AMZN',\n",
+ " 'MMAT'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/blackrock-says-the-market-is-misjudging-these-key-risks-heres-its-advice-on-stocks-and-bonds-11670499374',\n",
+ " 'image_url': 'https://images.mktw.net/im-681594/social',\n",
+ " 'description': \"Expect volatility as supply constraints mean central banks won't be able to pivot as soon as investors would like.\"},\n",
+ " {'id': 'sj3C-C4a7DktwGswDhh0KRx3lxlT90soEMf1B3FzJBg',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': \"This fund beats the S&P 500 by using just 75 of its components. Here's how it works.\",\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2022-12-10T17:39:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/this-fund-beats-the-s-p-500-by-using-just-75-of-its-components-heres-how-it-works-11670511856',\n",
+ " 'tickers': ['SPGP',\n",
+ " 'SPY',\n",
+ " 'AMZN',\n",
+ " 'TSLA',\n",
+ " 'AAPL',\n",
+ " 'MSFT',\n",
+ " 'GOOGL',\n",
+ " 'GOOG',\n",
+ " 'BRK.B',\n",
+ " 'REGN',\n",
+ " 'CI',\n",
+ " 'RE',\n",
+ " 'VRTX',\n",
+ " 'DHI',\n",
+ " 'EXPD',\n",
+ " 'INCY',\n",
+ " 'GS',\n",
+ " 'EBAY',\n",
+ " 'PFE'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/this-fund-beats-the-s-p-500-by-using-just-75-of-its-components-heres-how-it-works-11670511856',\n",
+ " 'image_url': 'https://images.mktw.net/im-537282/social',\n",
+ " 'description': 'A combination of quality and lower prices has worked well through bull and bear markets — it may be just the ticket for investors worried about a recession.'},\n",
+ " {'id': 'goikEKusF9LGZ87dnaSkxQG6F0tuMcCrxVTBbvWmLH4',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Short selling giant Jim Chanos is still short on Coinbase, Tesla and the FOMO-investment market',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2022-12-10T17:23:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/short-selling-giant-jim-chanos-is-still-short-on-coinbase-tesla-and-the-fomo-investment-market-11670599210',\n",
+ " 'tickers': ['COIN', 'MSTR', 'TSLA'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/short-selling-giant-jim-chanos-is-still-short-on-coinbase-tesla-and-the-fomo-investment-market-11670599210',\n",
+ " 'image_url': 'https://images.mktw.net/im-662583/social',\n",
+ " 'description': 'It’s hard to change legendary short seller Jim Chanos’ mind on some things. Tesla to be exact.'},\n",
+ " {'id': '0uDAsXcLQJolZ2hEQhCSvxEQD_pjX5bdOmWf2tYhIAE',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': \"Here's what resolves the big mystery on why older Americans have left the workforce\",\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2022-12-10T16:42:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/heres-what-resolves-the-big-mystery-on-why-older-americans-have-left-the-workforce-11670586325',\n",
+ " 'tickers': ['LULU',\n",
+ " 'NFLX',\n",
+ " 'AAPL',\n",
+ " 'AVGO',\n",
+ " 'COST',\n",
+ " 'DOCU',\n",
+ " 'TSLA',\n",
+ " 'GME',\n",
+ " 'NIO',\n",
+ " 'AMC',\n",
+ " 'BBBY',\n",
+ " 'AMZN',\n",
+ " 'BABA',\n",
+ " 'MULN',\n",
+ " 'DWAC'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/heres-what-resolves-the-big-mystery-on-why-older-americans-have-left-the-workforce-11670586325',\n",
+ " 'image_url': 'https://images.mktw.net/im-682542/social',\n",
+ " 'description': \"An explanation of what's holding back older American labor participation, and its investment implications.\"},\n",
+ " {'id': '27zE8wfC2EOnNAlirEk3mEvAj9-ULWAEfA_Mj2HbE7c',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': '2 Stocks Down 19% to 51% to Buy Right Now',\n",
+ " 'author': 'newsfeedback@fool.com (Daniel Foelber and Howard Smith)',\n",
+ " 'published_utc': '2022-12-10T16:28:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2022/12/10/2-stocks-down-19-to-51-to-buy-right-now/',\n",
+ " 'tickers': ['TSLA', 'UPS'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/712247/0x0-model3_02.jpg',\n",
+ " 'description': 'Tesla and UPS shares could fall further, but they are compelling long-term buys.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'aDdIwpb77FNQAUxbrA4gQexqCRDfpSjenBbvzWAhcdM',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Learning From Successful Investors',\n",
+ " 'author': 'newsfeedback@fool.com (Chris Hill)',\n",
+ " 'published_utc': '2022-12-10T14:00:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2022/12/10/learning-from-successful-investors/',\n",
+ " 'tickers': ['TSLA', 'EBAY', 'BLK', 'HLT', 'CG'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/711739/mfm_20221203.jpg',\n",
+ " 'description': 'David Rubenstein, author of \"How to Invest: Masters on the Craft,\" joins the podcast for a chat.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'h74OivGUVr4NBoLkBXaAD24NQIqIeAWdlG1MslNI4dE',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Elon Musk Succession Rumors, Lucid Goes Aggressive With Promotions, Rivian Joins Blue-Chip Tech Index And More: Week's Biggest EV Stories\",\n",
+ " 'author': 'Shanthi Rexaline',\n",
+ " 'published_utc': '2022-12-10T13:39:46Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/22/12/30031367/elon-musk-succession-rumors-lucid-goes-aggressive-with-promotions-rivian-joins-blue',\n",
+ " 'tickers': ['F', 'TSLA', 'NIO', 'LCID', 'RIVN'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/30031367',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/12/10/electric_vehicle_shutter2.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Electric vehicle stocks went down along with the broader market in the week ended Dec. 10, as recession fears and interest rate uncertainty weighed down on sentiment. Market leader Tesla, Inc. (NASDAQ: TSLA) declined for all but the final session of the week, besieged by worries concerning multiple headwinds.\\nNow, here are the key events that happened in the EV space during the week:\\nTesla China Takes Spotlight: Rumors of Tesla China President Tom Zhu replacing CEO Elon Musk to head the EV maker began doing the rounds this week. Analysts quickly discounted the possibility, and there was no confirmation from the company. A Bloomberg report later suggested that Zhu was brought to Tesla’s Giga Texas plant, along with an engineering team, to help oversee the ramp-up.\\nTesla China announced a discount of 6,000 yuan or $860 for inventory cars, marking a third straight price adjustment in the country since late October. Analysts see the actions as a function of the economic softness witnessed domestically.\\nMusk lauded his Tesla team for doing “incredibly well” despite extremely difficult times following the release of China sales numbers, which remained fairly strong. “Could not be more proud of them,” he added.\\nEven as Tesla denied the earlier reports of ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['News',\n",
+ " 'Analyst Color',\n",
+ " 'Management',\n",
+ " 'Top Stories',\n",
+ " 'Analyst Ratings',\n",
+ " 'Tech',\n",
+ " 'Media']},\n",
+ " {'id': 'Qm79Ruq2h-kI0dUJBLTqlgdVwmvuY6jUKq1SXYOpVys',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': \"An Investor's Look at the Energy Picture\",\n",
+ " 'author': 'newsfeedback@fool.com (Deidre Woollard)',\n",
+ " 'published_utc': '2022-12-10T11:45:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2022/12/10/an-investors-look-at-the-energy-picture/',\n",
+ " 'tickers': ['MCD',\n",
+ " 'EA',\n",
+ " 'NFLX',\n",
+ " 'AAPL',\n",
+ " 'TSLA',\n",
+ " 'CMG',\n",
+ " 'AZO',\n",
+ " 'ORLY',\n",
+ " 'SIG'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/712092/mfm_20221208.jpg',\n",
+ " 'description': 'Plus, we chat about how to get kids into the stock market.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'I5uU0cDk0Nne12BURDEfLn0CRy8Ev5P9M5D1jjaVWgg',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': '5 Investment Opportunities With Over 700% Upside, According to Cathie Wood',\n",
+ " 'author': 'newsfeedback@fool.com (Jon Quast)',\n",
+ " 'published_utc': '2022-12-10T11:15:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2022/12/10/5-investment-opportunities-with-over-700-upside-ac/',\n",
+ " 'tickers': ['ZM', 'TSLA', 'SQ', 'ROKU'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/711093/affluent-young-person-smiles-reads-computer.jpg',\n",
+ " 'description': \"For investors, it's more important to understand the argument for why a stock will go up rather than fixate on what the price target is.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'uGAbdU8FBuBXzvSx2LlX2YDasQwi1PiJd_GfnvEJT_0',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Why Elon Musk Called Scott Galloway An 'Insufferable Numbskull'\",\n",
+ " 'author': 'Shivdeep Dhaliwal',\n",
+ " 'published_utc': '2022-12-10T01:47:30Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/21/11/23945801/elon-musk-calls-scott-galloway-an-insufferable-numbskull-after-criticism-of-twitter-poll1',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/23945801',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2012/33486317444_675767e767_o_10.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': \"Tesla Inc (NASDAQ: TSLA) CEO Elon Musk has called Scott Galloway, a public speaker and professor of marketing, an “insufferable numbskull” for suggesting that Musk has lost faith in Tesla’s valuation.\\nWhat Happened: Musk made his comments after a Twitter user brought to his attention comments Galloway made.\\nDoing the opposite of whatever that insufferable numbskull says would be a great way to invest!\\n— Lorde Edge (@elonmusk) November 7, 2021\\nGalloway, who took note of the exchange, reacted in response saying “Numbskull...better than pedo.”\\nNumbskull … better than pedo.\\nSo, we own a Tesla (Falcon Model X) and love it. Great car, great company & hard to overestimate the impact you, and your team, have had on the world. I've called you a genius before.\\n1/x\\n— Scott Galloway (@profgalloway) November 8, 2021\\nGalloway was referring to a July 2018 tweet in which Musk referred to a British diver involved in the rescue of a Thai soccer team from a cave as a “pedo guy.”\\nThe professor drew up a list of companies and said he doesn’t believe and neither does he think Musk believes that Tesla was worth more than ...\",\n",
+ " 'keywords': ['News', 'Tech', 'Media']},\n",
+ " {'id': 'HshlBaTYMcvYQtgvrmsgJx5OAmmcv-aDAM5zgAomFFk',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Why Tesla Stock Revved Higher on Friday',\n",
+ " 'author': 'newsfeedback@fool.com (Rich Smith)',\n",
+ " 'published_utc': '2022-12-09T17:08:21Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2022/12/09/why-tesla-stock-revved-higher-on-friday/',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/712481/model-y-suv-is-tesla.jpg',\n",
+ " 'description': 'Could Tesla stock actually be a value stock?',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'B65HEzDXyc_wyaRR-le-JI-YRZqDnD7wfSLVTcIzuKQ',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Why Tesla Stock Was Falling This Week',\n",
+ " 'author': 'newsfeedback@fool.com (John Ballard)',\n",
+ " 'published_utc': '2022-12-09T16:28:36Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2022/12/09/why-tesla-stock-was-falling-this-week/',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/712471/tesla-store.png',\n",
+ " 'description': 'Despite industry headwinds, the electric vehicle maker is poised for more growth.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'CiirDdLSfNJvb6a6uVNvC0ji0sTCu0f6I9lJ-D-RayY',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Why Tesla Stock Taking Such A Hammering? Analyst Points To Rumors Of Elon Musk Stepping Down, Twitter Burden And More',\n",
+ " 'author': 'Shanthi Rexaline',\n",
+ " 'published_utc': '2022-12-09T15:47:46Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/22/12/30018983/why-tesla-stock-taking-such-a-hammering-analyst-points-to-rumors-of-elon-musk-stepp',\n",
+ " 'tickers': ['AMZN', 'NVDA', 'TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/30018983',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/12/09/tesla_photo_by_nadezda_murmakova_on_shutterstock.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': \"Tesla Inc. (NASDAQ: TSLA) stock's weakness is due to a confluence of factors, New Street Research analyst Pierre Ferragu said on Thursday.\\nThe Pushbacks: Tesla shares have lost over 50% in the year-to-date period, underperforming the broader market and the tech sector.\\nAbout two-thirds of the weakness has to do with the broader correction of long-duration growth names, Ferragu said. To prove his point, he shared the screenshot of the year-to-date performances of Tesla, Amazon\\xa0Inc. (NASDAQ: AMZN) and Nvidia Corporation (NASDAQ: NVDA) shares.\\nSee Also: Best Electric Vehicle Stocks\\nFerragu also underlined Twitter-related concerns, including the necessity for CEO Elon Musk\\xa0to sell more shares, happenings at Twitter affecting the Tesla brand, and a distracted Musk.\\nFerragu also noted demand concerns, as reflected by the rumored production cuts at the Giga Shanghai plant, a tough near term in the U.S. as buyers wait for the 2023 subsidy and the impact of the company’s successive ...Full story available on Benzinga.com\",\n",
+ " 'keywords': ['News',\n",
+ " 'Analyst Color',\n",
+ " 'Top Stories',\n",
+ " 'Analyst Ratings',\n",
+ " 'Tech',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': '266Me6mQCNWhHwntePWSX8rj3FvwaDpNjeWbKdZxjSo',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Twitter Dust Yet To Settle, Elon Musk Already Open To 'Idea' Of Buying Another Media Tech Company\",\n",
+ " 'author': 'Shanthi Rexaline',\n",
+ " 'published_utc': '2022-12-09T15:08:26Z',\n",
+ " 'article_url': 'https://www.benzinga.com/m-a/22/12/30021474/twitter-dust-yet-to-settle-but-elon-musk-is-already-open-to-buying-another-media-tech-company',\n",
+ " 'tickers': ['GOOG', 'TSLA', 'GOOGL'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/30021474',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/12/09/elon_musk_3017880307.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': \"Even as\\xa0Tesla Inc. (NASDAQ: TSLA)\\xa0Elon Musk grapples with setting the Twitter house in order, he has signaled interest in buying another online platform.\\nIt all started when a Twitter user pointed out that Alphabet, Inc. (NASDAQ: GOOGL) (NASDAQ: GOOG)-owned YouTube’s manipulation for political purposes is far worse than Twitter's. Musk replied to the tweet with a thinking emoji.\\n\\xa0\\n— Elon Musk (@elonmusk) ...\",\n",
+ " 'keywords': ['News', 'M&A', 'Tech', 'Media']},\n",
+ " {'id': 'tuL5QtXkXn6V36aw7hNUSSCWiEDYnyxCeD9OP7Sr61Y',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': \"Do Options Traders Know Something About Tesla (TSLA) Stock We Don't?\",\n",
+ " 'author': 'Zacks Equity Research',\n",
+ " 'published_utc': '2022-12-09T14:33:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/2027258/do-options-traders-know-something-about-tesla-tsla-stock-we-dont',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/2027258/do-options-traders-know-something-about-tesla-tsla-stock-we-dont',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/articles/main/3e/106.jpg',\n",
+ " 'description': 'Investors need to pay close attention to Tesla (TSLA) stock based on the movements in the options market lately.'},\n",
+ " {'id': 'rPBaiFHioHnVF3WPmgehETMl7wFXhxq116J2aWVzokM',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Elon Musk, In A Rare Move, Says This Tesla Rival Is 'Not Long For This World'\",\n",
+ " 'author': 'Shanthi Rexaline',\n",
+ " 'published_utc': '2022-12-09T14:19:35Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/22/12/30020477/elon-musk-in-a-rare-move-says-this-tesla-rival-is-not-long-for-this-world',\n",
+ " 'tickers': ['TSLA', 'LCID', 'RIVN'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/30020477',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/12/09/shutterstock_2156748739.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Electric vehicle upstart Lucid Group Inc. (NASDAQ: LCID), which reported a dip in reservations in the third quarter, is going all out to prevent further cancellations, multiple reports said.\\nWhat Happened: Rival Tesla\\xa0Inc.\\xa0(NASDAQ: TSLA) CEO Elon Musk on Friday weighed in on the development.\\nLucid has changed its procedure to cancel vehicle orders, a Drive Tesla report said, citing Business Insider. New emails send to employees reportedly suggested they should proceed with the objective of saving an order when a cancellation request ...',\n",
+ " 'keywords': ['News', 'Tech', 'Media']},\n",
+ " {'id': 'iYO4tsA9yldL-k1_l6QLI-urlAFb3lAH6DarUDV9iZg',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Why Nio Stock Jumped 32% in November',\n",
+ " 'author': 'newsfeedback@fool.com (Neha Chamaria)',\n",
+ " 'published_utc': '2022-12-09T11:07:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2022/12/09/why-nio-stock-jumped-32-in-november/',\n",
+ " 'tickers': ['NIO', 'TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/712344/nio-et5-sedan.jpg',\n",
+ " 'description': 'Investors are buying Nio stock before 2022 ends as they believe the worst is over for the electric vehicle maker.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'g9YXCf88FlAZ84Db368_0P-AW4_36MtoF2nJyy7-wr8',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"'Crazy Fed Rates' And More: Elon Musk Chimes In On Why Tesla Stock Has Lost Half Its Market-Cap In 2022\",\n",
+ " 'author': 'Shanthi Rexaline',\n",
+ " 'published_utc': '2022-12-09T06:02:11Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/22/12/30018182/elon-musk-blames-crazy-fed-rates-2-more-factors-as-tesla-stock-loses-half-its-market-cap-this-year',\n",
+ " 'tickers': ['AMZN', 'TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/30018182',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/12/09/elon_musk_wikimedia_commons.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Tesla Inc. (NASDAQ: TSLA) stock has lost a little over 50% year-to-date and it is now on a four-day losing streak. CEO Elon Musk,\\xa0on Thursday, listed probable reasons for the predicament, blaming it mostly on extraneous factors.\\nWhat Happened: A Tesla influencer shared screenshots of Tesla Vs. Amazon Inc. (NASDAQ: AMZN) stock chart for the past year, showing\\xa0both materially underperforming.\\nTagging the influencer, Musk chimed in with thoughts on probable reasons.\\xa0\\nMacro conditions are difficult: energy in Europe, real estate in China & crazy Fed ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['News', 'Economics', 'Tech']},\n",
+ " {'id': 'J2RqmERLEUKTk70pwi0t7T6qFm03rwa1QgYZDtPhR2I',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Tesla, Amazon, Costco, Pharvaris, Lululemon: Why These 5 Stocks Are Drawing Investors' Attention Today\",\n",
+ " 'author': 'Bhavik Nair',\n",
+ " 'published_utc': '2022-12-09T00:46:24Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/earnings/22/12/30016760/tesla-amazon-costco-pharvaris-lululemon-why-these-5-stocks-are-drawing-investors-attention-today',\n",
+ " 'tickers': ['AMZN', 'COST', 'LULU', 'TSLA', 'PHVS'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/30016760',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/12/08/shutterstock_1209068188.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Major Wall Street indices closed in the green on Thursday after investors and traders questioned the possibility of continued aggression by the Federal Reserve following the release of\\xa0jobless claims data. The number of Americans submitting new claims for unemployment benefits grew marginally last week, marking the eighth straight week of flat or higher continuing jobless claims, the longest trend since the 2009 financial crisis. Meanwhile, here are five stocks that are drawing retail investors’ attention:\\n1. Tesla Inc (NASDAQ: TSLA): Shares of the EV-maker closed 0.34% lower on Thursday. Tesla is likely to shorten production shifts at its Shanghai factory as early as Monday and has delayed the onboarding of some new hires, reported Bloomberg, citing people familiar with the situation. Meanwhile, Elon Musk will likely announce ...',\n",
+ " 'keywords': ['News', 'Earnings', 'Small Cap', 'Top Stories', 'Markets']},\n",
+ " {'id': 'DTNKSQnyjE1_maPIra-DO97F41j7avZC6vqNQy1bA7E',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'Tesla (TSLA) Stock Sinks As Market Gains: What You Should Know',\n",
+ " 'author': 'Zacks Equity Research',\n",
+ " 'published_utc': '2022-12-08T22:45:19Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/2027002/tesla-tsla-stock-sinks-as-market-gains-what-you-should-know',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/2027002/tesla-tsla-stock-sinks-as-market-gains-what-you-should-know',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/default_article_images/default12.jpg',\n",
+ " 'description': 'Tesla (TSLA) closed at $173.44 in the latest trading session, marking a -0.34% move from the prior day.'},\n",
+ " {'id': 'kWAy_n0r-E1J0V6Czf2-NpKF3-hVw2otVqc4f142rL4',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': \"Crypto was a 'bubble of a generation,' and 'doomed to burst,' says ECB official\",\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2022-12-08T20:18:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/crypto-was-a-bubble-of-a-generation-and-doomed-to-burst-says-ecb-official-11670530732',\n",
+ " 'tickers': ['SQ',\n",
+ " 'COIN',\n",
+ " 'MSTR',\n",
+ " 'RIOT',\n",
+ " 'MARA',\n",
+ " 'EBON',\n",
+ " 'OSTK',\n",
+ " 'TSLA',\n",
+ " 'PYPL',\n",
+ " 'NVDA',\n",
+ " 'AMD',\n",
+ " 'BITO',\n",
+ " 'BITI',\n",
+ " 'BTF',\n",
+ " 'XBTF'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/crypto-was-a-bubble-of-a-generation-and-doomed-to-burst-says-ecb-official-11670530732',\n",
+ " 'image_url': 'https://images.mktw.net/im-429485/social',\n",
+ " 'description': 'The latest Distributed Ledger columns from MarketWatch. A weekly look at the most important moves and news in crypto.'},\n",
+ " {'id': 'UqThqbw2mc7_Ff0EYv1CKUWY87B9_fcAPNQu34IWB3I',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Nasdaq Suffers Worst Start To December Since 1975: Will Santa Visit The Market Or Will The Grinch Hold Strong?',\n",
+ " 'author': 'Melanie Schaffer',\n",
+ " 'published_utc': '2022-12-08T19:11:24Z',\n",
+ " 'article_url': 'https://www.benzinga.com/trading-ideas/long-ideas/22/12/30012256/nasdaq-suffers-worst-start-to-december-since-1975-will-santa-visit-the-market-or-will-th',\n",
+ " 'tickers': ['AMZN', 'TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/30012256',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/12/08/shutterstock_1820239949.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'The Nasdaq Composite Index was bouncing up almost 1% higher on Thursday, in relief, after suffering its worst first week of December since 1975, plunging 4.4% between the Nov. 30 closing price and the session finish on Wednesday.\\nWith the stock market entering a bear cycle this year, most retail traders and investors have been hoping for an end-of-year rally to finish 2023 off on a higher note.\\nWhile the Nasdaq and the S&P 500 have been trading in very consistent monthly downtrends since November 2021 and January 2022,\\xa0the S&P 500 temporarily crossed above the 200-day simple moving average on Nov. 30, bringing hope the bear market could end.\\nThe S&P 500’s short three-day breach of the 200-day proved to be a bull trap, however, and the ETF has since declined back under the area, indicating the bears have not yet headed into hibernation.\\nThe Nasdaq has shown weakness in comparison to the S&P 500 due to tech stocks taking the brunt of the selling pressure this year. For technical traders, the Nasdaq’s comparative weakness, led lower by Amazon.com, ...',\n",
+ " 'keywords': ['Long Ideas',\n",
+ " 'Short Ideas',\n",
+ " 'Technicals',\n",
+ " 'Top Stories',\n",
+ " 'Trading Ideas',\n",
+ " 'ETFs']},\n",
+ " {'id': 'u9Xn7PUikoYlKhcdmYIl3NE5ZyNtu72tEPBHVbU1B8o',\n",
+ " 'publisher': {'name': 'Seeking Alpha',\n",
+ " 'homepage_url': 'https://seekingalpha.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/seekingalpha.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/seekingalpha.ico'},\n",
+ " 'title': 'Will The Bombshell OpenAI Chatbot Be The End Of Google?',\n",
+ " 'author': 'Logan Kane',\n",
+ " 'published_utc': '2022-12-08T17:15:01Z',\n",
+ " 'article_url': 'https://seekingalpha.com/article/4563248-bombshell-openai-chatbot-chatgbt-google-threat-benefit',\n",
+ " 'tickers': ['AAPL',\n",
+ " 'ABNB',\n",
+ " 'AMZN',\n",
+ " 'BB',\n",
+ " 'BRK.B',\n",
+ " 'META',\n",
+ " 'MSFT',\n",
+ " 'TSLA',\n",
+ " 'GOOG',\n",
+ " 'GOOGL'],\n",
+ " 'image_url': 'https://static.seekingalpha.com/cdn/s3/uploads/getty_images/1385299427/image_1385299427.jpg?io=getty-c-w750',\n",
+ " 'description': 'The bombshell AI chatbot ChatGBT was released last week, taking the Internet by storm. Read why this may be an opportunity, instead of threat, for Google.'},\n",
+ " {'id': 'zHaxktGta5YJ2wM267VCFNi0Sj_D81SQgQXYKfvBUaE',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': '2 Top Index Funds Growth Stock Investors Can Buy With Confidence Before 2023',\n",
+ " 'author': 'newsfeedback@fool.com (Trevor Jennewine)',\n",
+ " 'published_utc': '2022-12-08T13:33:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2022/12/08/2-index-funds-growth-stock-investors-can-buy-2023/',\n",
+ " 'tickers': ['VOOG',\n",
+ " 'META',\n",
+ " 'COST',\n",
+ " 'MSFT',\n",
+ " 'GOOGL',\n",
+ " 'AAPL',\n",
+ " 'TSLA',\n",
+ " 'AMZN',\n",
+ " 'LLY',\n",
+ " 'PEP',\n",
+ " 'NVDA',\n",
+ " 'UNH',\n",
+ " 'HD',\n",
+ " 'ONEQ',\n",
+ " 'GOOG'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/712226/investor-54.jpg',\n",
+ " 'description': 'Growth stocks have been hammered this year, but these index funds have a track record of outperformance.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'GbbLFrZkmaMvy7DnZ7G9HanQv2MjSAHOcueElIsmals',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Elon Musk's Promise Of 'Very High-Resolution' Radar Reportedly Coming To Tesla EVs Next Year\",\n",
+ " 'author': 'Shivdeep Dhaliwal',\n",
+ " 'published_utc': '2022-12-08T11:35:08Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/22/12/30001659/elon-musks-promise-of-very-high-resolution-radar-reportedly-coming-to-tesla-evs-next-year',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/30001659',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/12/08/shutterstock_1051537154.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Tesla Inc (NASDAQ: TSLA) reportedly plans to add radar to its vehicles next month after abandoning the technology earlier.\\nWhat Happened: In a request made to the U.S. Federal Communications Commission, first noted on Electrek, the Elon Musk-led automaker said the device “will not be marketed until Mid-January 2023.”\\n@greentheonly Tesla is requesting short term confidentiality extension in HD radar documents, as it will be marketed Mid January. Any hints about this seen in code? pic.twitter.com/XzAStuPgZh\\n— ...',\n",
+ " 'keywords': ['News', 'Tech', 'Media']},\n",
+ " {'id': 'kF7NpQ7GEj8UcojPXvIX1oOJ7LW_KHoINFCtON1ys8o',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Elon Musk Has Picked Tesla China Exec To Be His Successor? What Top Analysts Have To Say',\n",
+ " 'author': 'Shanthi Rexaline',\n",
+ " 'published_utc': '2022-12-08T11:07:40Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/22/12/30002046/elon-musk-has-picked-tesla-china-exec-to-be-his-successor-what-top-analysts-have-to',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/30002046',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/12/08/tesla_photo_by_ink_drop_on_shutterstock.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': \"Tech-focused Chinese news outlet PingWest reported that Elon Musk will likely announce Tesla Inc.'s\\xa0(NASDAQ: TSLA) China President Tom Zhu Xiaotong as the global CEO of the electric vehicle maker.\\nWhat Happened: Weighing in on the report, Loup Funds’ Gene Munster said the odds of the appointment of Xiaotong as CEO ARE at 10%. The venture capitalist noted Tesla has been working toward diversifying away from China, with the last two of its Giga factories located in the U.S. and Western Europe.\\nXiaotong could be getting some kind of promotion, although not an elevation to the global CEO role, Munster said.\\n“If he does get the CEO job, Tesla investors ...Full story available on Benzinga.com\",\n",
+ " 'keywords': ['News', 'Analyst Color', 'Analyst Ratings', 'Tech', 'Media']},\n",
+ " {'id': 'CQDW7a5P4wbts71qB0d1AmpGTD87DxRDk9u7_bGbfWM',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'US Stocks Priming For Fidgety Start Amid Persisting Recession Fears; China & Casino Stocks, GameStop, Costco In Focus',\n",
+ " 'author': 'Shanthi Rexaline',\n",
+ " 'published_utc': '2022-12-08T11:01:49Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/earnings/22/12/30003242/us-stocks-priming-for-fidgety-start-amid-persisting-recession-fears-china-casino-stocks-gamestop-co',\n",
+ " 'tickers': ['BILI',\n",
+ " 'DOCU',\n",
+ " 'SPY',\n",
+ " 'CHWY',\n",
+ " 'CIEN',\n",
+ " 'NIO',\n",
+ " 'COST',\n",
+ " 'XPEV',\n",
+ " 'WYNN',\n",
+ " 'GME',\n",
+ " 'HOV',\n",
+ " 'LVS',\n",
+ " 'AVGO',\n",
+ " 'TSLA',\n",
+ " 'QQQ',\n",
+ " 'BABA',\n",
+ " 'JD',\n",
+ " 'LI',\n",
+ " 'PK'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/30003242',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/12/08/shutterstock_573121573.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': \"The index futures were pointing to a modestly higher opening on Thursday, as a lack of visibility worries the market to no end. In the run-up to a series of key economic catalysts kickstarting on Friday, traders may prefer to stay on the sidelines.\\nU.S. stocks closed mostly lower on Wednesday as recession worries continue to haunt traders. The negativity came despite the yields falling slightly.\\nThe S&P 500 Index declined for a fifth straight session and the Nasdaq Composite has been lower for a fourth session running.\\nA majority of sectors moved to the downside, while consumer staples, healthcare and real estate stocks showed a modicum of strength.\\n\\nU.S. Indices' Performance On Wednesday\\n\\n\\nIndex\\nPerformance (+/-)\\n\\xa0\\nValue\\n\\n\\n\\n\\nNasdaq Composite\\n-0.51%\\n\\xa0\\n10.958.55\\n\\n\\nS&P 500 Index\\n-0.19%\\n\\xa0\\n3,933.92\\n\\n\\nDow Industrials\\n+0.00%\\n\\xa0\\n33,597.92\\n\\n\\n\\nHere’s a peek into index futures trading:\\n\\nU.S. Futures' Performance On Thursday During Premarket Session\\n\\n\\nIndex\\nPerformance (+/-)\\n\\xa0\\n\\n\\n\\n\\nNasdaq 100 Futures\\n+0.18%\\n\\xa0\\n\\n\\nS&P 500 Futures\\n+0.07%\\n\\xa0\\n\\n\\nDow Futures\\n-0.05%\\n\\xa0\\n\\n\\nR2K Futures\\n-0.25%\\n\\xa0\\n\\n\\n\\nIn premarket trading on Thursday, the SPDR S&P 500 ETF Trust\\xa0(NYSE: Full story available on Benzinga.com\",\n",
+ " 'keywords': ['News',\n",
+ " 'Earnings',\n",
+ " 'Futures',\n",
+ " 'Previews',\n",
+ " 'Small Cap',\n",
+ " 'Top Stories',\n",
+ " 'Economics',\n",
+ " 'Federal Reserve',\n",
+ " 'Pre-Market Outlook',\n",
+ " 'Markets',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': '2dYrfAMJIFJQkOdJlQRAksXPfCWpURJwc22Fnco1Y08',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'CBOE Volatility Index Settles At Highest Level Since November 18',\n",
+ " 'author': 'Lisa Levin',\n",
+ " 'published_utc': '2022-12-08T10:19:38Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/earnings/22/12/30003058/cboe-volatility-index-settles-at-highest-level-since-november-18',\n",
+ " 'tickers': ['AAPL', 'CCL', 'DAL', 'TSLA', 'NCLH', 'AAL'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/30003058',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/12/08/image12.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': \"US stocks closed mostly lower on Wednesday, with the S&P 500 and Nasdaq recording losses following a choppy trading session.\\nThe benchmark S&P 500 fell for the fifth straight session, while the Nasdaq settled lower for the fourth consecutive time. The Dow, however, snapped a two-day losing streak.\\nMoney markets now see a 91% chance that the US Federal Reserve will raise interest rates by 50 basis points at its upcoming meeting.\\nMarkets now await economic data on jobless claims, producer price index and the University of Michigan's consumer sentiment ...\",\n",
+ " 'keywords': ['News',\n",
+ " 'Earnings',\n",
+ " 'Pre-Market Outlook',\n",
+ " 'Markets',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': '-jjNb_BLvax164D7B7GqzeOoq5XfFk9RhWzIhZgCQXQ',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Cathie Wood says the better historical parallel for the current high inflation environment is World War I, not the 1970s',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2022-12-08T08:18:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/cathie-wood-says-the-better-historical-parallel-for-the-current-high-inflation-environment-is-world-war-i-not-the-1970s-11670423106',\n",
+ " 'tickers': ['ARKK', 'TSLA', 'NVDA'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/cathie-wood-says-the-better-historical-parallel-for-the-current-high-inflation-environment-is-world-war-i-not-the-1970s-11670423106',\n",
+ " 'image_url': 'https://images.mktw.net/im-572842/social',\n",
+ " 'description': 'ARK Invest CEO Cathie Wood says investors are looking at the wrong historical period in making comparisons to the current high inflation environment.'},\n",
+ " {'id': 'zZ4i4k94Rwq6Vy1PrORu7P4yC5yibfwLYPRhmvlluaU',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Tesla Bear Michael Burry Deletes Twitter Account Yet Again After Professing Trust In Elon Musk',\n",
+ " 'author': 'Shivdeep Dhaliwal',\n",
+ " 'published_utc': '2022-12-08T04:11:09Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/22/12/30001486/tesla-bear-michael-burry-deletes-twitter-account-yet-again-after-professing-trust-in-elon-musk',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/30001486',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/12/07/shutterstock_1105928591.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': '\"The Big Short\"\\xa0investor Michael Burry has once again deleted his Twitter account, but this time after expressing his trust in its CEO Elon Musk.\\nWhat Happened: Burry who uses the handle @michaeljburry on Twitter and goes by the nickname “Cassandra” couldn’t be located on the social media platform at the time of writing.\\nTwitter displayed a “This account doesn’t exist” message in place of Burry’s usual account.\\nScreenshot ...',\n",
+ " 'keywords': ['News', 'Social Media', 'Tech', 'General']},\n",
+ " {'id': 'zVT7DscNoLvgJYbmjnhxai3RKC6kdqPxdiYFfYef85E',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Does Elon Musk Think He's Noah? Why He's Comparing SpaceX Rocket To The Ark\",\n",
+ " 'author': 'Melanie Schaffer',\n",
+ " 'published_utc': '2022-12-08T01:48:56Z',\n",
+ " 'article_url': 'https://www.benzinga.com/general/social-media/22/07/28232638/Does-Elon-Musk-Think-Hes-Noah',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/28232638',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/07/27/elon.space_.moon_.cometa_geoshutterstock_2086349374.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': \"Tesla\\xa0Inc (NASDAQ: TSLA) and\\xa0Twitter\\xa0CEO Elon Musk\\xa0took to his newly acquired social media platform\\xa0on Monday to\\xa0reference religion, this time posting an image by\\xa0Japanese artist Shigeru Komatsuzaki\\xa0from 1968 entitled\\xa0'Space Ark.'\\nStarship takes beings of Earth to Mars pic.twitter.com/6qaIc3p4yA\\n— Elon Musk (@elonmusk) December 5, 2022\\nPresumably, Musk posted the image, which depicts a futuristic multi-planetary version of Noah's Arc, to liken it to SpaceX's Mars-bound rocket named Starship. Musk's posting of the artwork\\xa0implies that if life ever became inhabitable on Mars, his space exploration company could save Earth's creatures by transporting them to a more hospitable destination. It's not the first time Musk has melted religion and science together.\\nLooking Back At Musk's Tweets On Religion\\nAfter a 10-day hiatus from Twitter this summer, Musk returned in early July, and in a July 27 tweet,\\xa0he added religion to his list of motivations for ...\",\n",
+ " 'keywords': ['SPACE', 'Social Media', 'General']},\n",
+ " {'id': 'r9L0fJWhlZMezvT0aJ2WpJHQrrDo-FlAWA3TkWd1JwI',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Tesla, Apple, GameStop, Prometheus Biosciences, Cassava Sciences: Why These 5 Stocks Are Drawing Investors' Attention Today\",\n",
+ " 'author': 'Bhavik Nair',\n",
+ " 'published_utc': '2022-12-08T00:45:11Z',\n",
+ " 'article_url': 'https://www.benzinga.com/general/biotech/22/12/30000951/tesla-apple-gamestop-prometheus-biosciences-cassava-sciences-why-these-5-stocks-are-drawing-inves',\n",
+ " 'tickers': ['AAPL', 'GME', 'TSLA', 'RXDX', 'SAVA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/30000951',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/12/07/shutterstock_758302231.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': \"U.S. markets continued their weak trend on Wednesday, with next week’s Federal Open Market Committee meeting beginning to weigh on investors’ minds. The Nasdaq and the S&P 500 closed marginally in the red,\\xa0while the Dow ended the session flat.\\xa0Here are five stocks that are drawing retail investors’ attention:\\n1.\\xa0Tesla Inc\\xa0(NASDAQ:\\xa0TSLA): Shares of the EV-maker closed 3.21% lower on Wednesday. The company has initiated bookings for its cars in Thailand, Southeast Asia's largest market for passenger electric cars, ruled by its Chinese rivals. Tesla will reportedly start delivering its Model 3 and Model Y cars in the first quarter next year, according to\\xa0Yvonne ...\",\n",
+ " 'keywords': ['News',\n",
+ " 'Earnings',\n",
+ " 'Biotech',\n",
+ " 'Gaming',\n",
+ " 'Large Cap',\n",
+ " 'Small Cap',\n",
+ " 'Top Stories',\n",
+ " 'Markets',\n",
+ " 'General']},\n",
+ " {'id': 'F90E-CKtSGRyqwLjqcq1YCobPG9ZKi5PVFgLWl0DHG4',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'Most Interesting New ETFs of 2H22',\n",
+ " 'author': 'Neena Mishra',\n",
+ " 'published_utc': '2022-12-07T23:25:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/2026537/most-interesting-new-etfs-of-2h22',\n",
+ " 'tickers': ['AAPL',\n",
+ " 'MSFT',\n",
+ " 'NVDA',\n",
+ " 'AEM',\n",
+ " 'TSLA',\n",
+ " 'FNV',\n",
+ " 'YALL',\n",
+ " 'HAPI',\n",
+ " 'TGN'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/2026537/most-interesting-new-etfs-of-2h22',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/default_article_images/default66.jpg',\n",
+ " 'description': 'We highlight 4 new ETFs that follow very interesting strategies'},\n",
+ " {'id': 'd08n-rYOdyhMV-3nEJRzDswiNqeyDZ7CIQUXpl6TTp0',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'These 5 Stocks Are Falling Fast to End 2022',\n",
+ " 'author': 'newsfeedback@fool.com (Travis Hoium)',\n",
+ " 'published_utc': '2022-12-07T17:15:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2022/12/07/these-5-stocks-are-falling-fast-to-end-2022/',\n",
+ " 'tickers': ['TSLA', 'LNC', 'LUMN', 'D', 'AAP'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/712002/market-crashing-through-floor.jpg',\n",
+ " 'description': 'These were the five worst-performing S&P 500 stocks in November 2022.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'kITzE5ug0Q32z998UWvHGM6OgOT5M4OZdQUoMM75HH4',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Volodymyr Zelensky and ‘the spirit of Ukraine’ named Time’s Person of the Year',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2022-12-07T16:44:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/volodymyr-zelensky-and-the-spirit-of-ukraine-named-times-person-of-the-year-11670431441',\n",
+ " 'tickers': ['TSLA', 'MCD', 'SBUX', 'AMZN'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/volodymyr-zelensky-and-the-spirit-of-ukraine-named-times-person-of-the-year-11670431441',\n",
+ " 'image_url': 'https://images.mktw.net/im-680908/social',\n",
+ " 'description': 'Runners up included Elon Musk, Janet Yellen, Ron DeSantis and Liz Cheney among the people who most influenced global events over the past 12 months, Time says.'},\n",
+ " {'id': 'FNeyqi69e0rmliqGaxQ2KuM8FHzGZwnPvv6LuXSOPq8',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'My Top 3 Stocks to Buy for 2023',\n",
+ " 'author': 'newsfeedback@fool.com (Neil Rozenbaum)',\n",
+ " 'published_utc': '2022-12-07T15:15:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2022/12/07/my-top-3-stocks-to-buy-for-2023/',\n",
+ " 'tickers': ['AMZN', 'TSLA', 'MELI'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/712100/top-picks-for-2023.png',\n",
+ " 'description': 'Hard times make strong companies.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'RoKvdMBJrimTxec8-2lBpGysdFgqsOvH3UZIS06vCUA',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Elon Musk Conceived Twitter HQ Bedrooms Draw Regulatory Scrutiny',\n",
+ " 'author': 'Anusuya Lahiri',\n",
+ " 'published_utc': '2022-12-07T13:10:56Z',\n",
+ " 'article_url': 'https://www.benzinga.com/government/22/12/29987383/elon-musk-conceived-twitter-hq-bedrooms-draw-regulatory-scrutiny',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/29987383',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/12/07/elon_musk_should_run_from_the_twitter_deal_ljupco_smokovski_by_shutterstock_and_wikimedia_commons.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Elon Musk blasted San Francisco Mayor London Breed for investigating\\xa0Twitter Inc\\xa0for setting\\xa0up bedrooms at its headquarters.\\nMusk called the attack unfair as it was \"providing beds for tired employees,\" Bloomberg\\xa0reports.\\nTwitter recently turned several conference rooms at the office into makeshift bedrooms, complete with furniture like bedside tables and armchairs.\\xa0\\nAlso Read:',\n",
+ " 'keywords': ['News', 'Government', 'Regulations', 'Tech', 'Media']},\n",
+ " {'id': 'iNNXTP-rbSNP7gclALHK32FvdTZryDg_9zSoYg6FIR0',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Why This Tesla Bull Says He Would Be 'Buying' Big Tech-Focused QQQ ETF Despite Market's Losing Streak\",\n",
+ " 'author': 'Shanthi Rexaline',\n",
+ " 'published_utc': '2022-12-07T11:49:20Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/22/12/29987150/why-this-tesla-bull-says-he-would-be-buying-big-tech-focused-qqq-etf-despite-market',\n",
+ " 'tickers': ['AAPL', 'TSLA', 'QQQ', 'META'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/29987150',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/12/07/stock_photo_1_by_ground_picture_shutterstock.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'The Invesco QQQ Trust (NASDAQ: TSLA), an exchange-traded fund tracking the performance of the Nasdaq 100 Index, has pulled back about 29% year-to-date. Notwithstanding the market’s current losing streak, Tesla bull Gary Black said he would be a buyer of the ETF.\\nWhat Happened: The market has given back all of the gains since Fed Chair Jerome Powell’s Brookings’ speech on Nov. 29, in which he hinted at a potential pivot, the Future Fund co-founder said. The November producer price inflation report due on Friday, the November consumer price inflation report slated for Tuesday, and the Federal ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['News',\n",
+ " 'Analyst Color',\n",
+ " 'Federal Reserve',\n",
+ " 'Analyst Ratings',\n",
+ " 'Tech',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': 'efK2-BRizYM48Buk1sGCNv_qo6088Rs8Zl1OXWKDarc',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'US Stocks Head For Another Rough Day As Recession, Rate Worries Dampen Sentiments; Apple, Tesla, Pinterest In Focus Today',\n",
+ " 'author': 'Shanthi Rexaline',\n",
+ " 'published_utc': '2022-12-07T11:07:22Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/earnings/22/12/29987625/us-stocks-head-for-another-rough-day-as-recession-rate-worries-dampen-sentiments-apple-tesla-pinter',\n",
+ " 'tickers': ['SPY', 'AAPL', 'TSLA', 'QQQ', 'PINS'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/29987625',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/12/07/shutterstock_2151794065_3.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'The index futures point to another down day on Wall Street on Wednesday ahead of key catalysts coming on Friday and early next week.\\nStocks pulled back yet again on Tuesday as worries concerning the economy\\'s health and a rising rate environment triggered a sell-off.\\nThe S&P 500 Index and the Nasdaq Composite Index settled at a one-month low, while the Dow Industrials closed at its lowest since Nov. 17. Most sectors moved to the downside, led by technology, communications and energy stocks. Meanwhile, utility stocks gained ground in the session.\\n\\nU.S. Indices\\' Performance On Tuesday\\n\\n\\nIndex\\nPerformance (+/-)\\n\\xa0\\nValue\\n\\n\\n\\n\\nNasdaq Composite\\n-2.00%\\n\\xa0\\n11,014.89\\n\\n\\nS&P 500 Index\\n-1.44%\\n\\xa0\\n3,941.26\\n\\n\\nDow Industrials\\n-1.03%\\n\\xa0\\n33,596.34\\n\\n\\n\\nIf the Fed raises the fed funds rate by 50 basis points next week, the central bank will be near parity or neutral, Fund manager Louis Navellier\\xa0said. A 50-basis-point hike will take Fed rates to 4.25%-4.50% and the 10-year Treasury note yield is currently around 3.5%, he noted.\\n\"If the FOMC statement mentions dovish words like parity or neutral, the stock market could stage a massive relief rally. But the FOMC never fights market rates, so I ...',\n",
+ " 'keywords': ['Earnings',\n",
+ " 'Futures',\n",
+ " 'Previews',\n",
+ " 'Top Stories',\n",
+ " 'Economics',\n",
+ " 'Federal Reserve',\n",
+ " 'Pre-Market Outlook',\n",
+ " 'Markets',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': 'u3HjqTXO20uC3aknUd-5qKF-4jdumFpcmZxD7S1a7ns',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Get Ready for the Next Bull Market: 3 No-Brainer Stocks to Buy Before the End of 2022',\n",
+ " 'author': 'newsfeedback@fool.com (Adria Cimino)',\n",
+ " 'published_utc': '2022-12-07T11:00:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2022/12/07/get-ready-for-bull-market-3-stocks-to-buy/',\n",
+ " 'tickers': ['ETSY', 'TSLA', 'LULU'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/711937/gettyimages-906798262.jpg',\n",
+ " 'description': 'Growth could truly take off at these solid companies during a bull market.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'ZTuGFO8Fl0EIZv3KSvAgZm-iRvOhGKbjy_bFbspx1SQ',\n",
+ " 'publisher': {'name': 'Investing.com',\n",
+ " 'homepage_url': 'https://www.investing.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/investing.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/investing.ico'},\n",
+ " 'title': 'Stocks Down on Recession Worries; Apple Car Delayed, Bitcoin Trades Flat',\n",
+ " 'author': 'MarketPulse',\n",
+ " 'published_utc': '2022-12-07T05:07:00Z',\n",
+ " 'article_url': 'https://www.investing.com/analysis/stocks-down-on-recession-worries-apple-car-delayed-bitcoin-trades-flat-200633208',\n",
+ " 'tickers': ['MS', 'GS', 'JPM', 'AAPL', 'TSLA'],\n",
+ " 'amp_url': 'https://m.investing.com/analysis/stocks-down-on-recession-worries-apple-car-delayed-bitcoin-trades-flat-200633208?ampMode=1',\n",
+ " 'image_url': 'https://i-invdn-com.investing.com/redesign/images/seo/investingcom_analysis_og.jpg'},\n",
+ " {'id': 'TM-rBYyVC1Gvzpwle1gHQXLyqeVPygKxhhW04nYfE-Y',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Tesla, Apple, MongoDB, GameStop, SentinelOne: Why These 5 Stocks Are Drawing Retail Investors' Attention Today\",\n",
+ " 'author': 'Bhavik Nair',\n",
+ " 'published_utc': '2022-12-07T00:46:54Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/22/12/29985378/tesla-apple-mongodb-gamestop-sentinelone-why-these-5-stocks-are-drawing-retail-investors-attention-t',\n",
+ " 'tickers': ['AAPL', 'GME', 'S', 'TSLA', 'MDB'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/29985378',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/12/06/shutterstock_2062445381.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Major Wall Street indices closed over 1% lower on Tuesday as\\xa0recession worries\\xa0weighed on investors’ minds. The Nasdaq closed 2% lower, while the Dow Jones ended 1.03% down and the\\xa0S&P 500 declined 1.44%. Meanwhile, the following\\xa0five stocks are drawing retail investors’ attention:\\n1. Tesla Inc (NASDAQ: TSLA): Shares of Tesla closed 1.44% lower on Tuesday. Electric car deliveries from the EV maker’s Shanghai factory rose to a record in November with Tesla shipping 100,291 cars last month compared to 71,704 in October, reported Bloomberg. This\\xa0follows aggressive marketing tactics and ...',\n",
+ " 'keywords': ['News', 'Top Stories', 'Markets', 'Tech']},\n",
+ " {'id': 'AzBSoxvJvAB8OimCi_kxNXWVg1qcXlX5-RdPoziaZRg',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'Which of These 3 Splits Has Been the Best Buy?',\n",
+ " 'author': 'Derek Lewis',\n",
+ " 'published_utc': '2022-12-07T00:18:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/2026016/which-of-these-3-splits-has-been-the-best-buy',\n",
+ " 'tickers': ['TSLA', 'PANW'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/2026016/which-of-these-3-splits-has-been-the-best-buy',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/articles/main/03/23269.jpg',\n",
+ " 'description': 'Stock splits have gained a lot of traction in recent years. Fortunately, it is one of the more encouraging announcements for shareholders.'},\n",
+ " {'id': 'q7uKl1iAlsdIB-EWkCZP2LlkrrArHgZbm1086Fp1noI',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': \"Dow falls over 450 points, Nasdaq tumbles 2.4%, extending Monday's losses as recession fears mount\",\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2022-12-06T20:21:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/u-s-stock-futures-inch-higher-after-rough-start-to-the-week-11670319291',\n",
+ " 'tickers': ['DJIA',\n",
+ " 'COMP',\n",
+ " 'META',\n",
+ " 'TSLA',\n",
+ " 'BAC',\n",
+ " 'GS',\n",
+ " 'TXT',\n",
+ " 'AZO',\n",
+ " 'SIG'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/u-s-stock-futures-inch-higher-after-rough-start-to-the-week-11670319291',\n",
+ " 'image_url': 'https://images.mktw.net/im-671559/social',\n",
+ " 'description': 'U.S. stocks losses deepen in Tuesday afternoon trading following a rough start to the week.'},\n",
+ " {'id': 'miG-fo90PHlqiClYTktfD2YzCi-0mteeZMyOS0OirZ8',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'A Shocking Change at Tesla Is a Warning for Investors',\n",
+ " 'author': 'newsfeedback@fool.com (Travis Hoium)',\n",
+ " 'published_utc': '2022-12-06T20:16:17Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2022/12/06/a-shocking-change-at-tesla-is-a-warning-sign/',\n",
+ " 'tickers': ['TSLA', 'F', 'GM'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/711995/0x0-model3_16.jpg',\n",
+ " 'description': 'Discounts could be an early warning sign at Tesla.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'EvXwsL-wh6rgQ6_8ZApl8uxkHbwetSMLoktM3XOmDl4',\n",
+ " 'publisher': {'name': 'Investing.com',\n",
+ " 'homepage_url': 'https://www.investing.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/investing.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/investing.ico'},\n",
+ " 'title': 'Despite Falling Stock, Ford’s Ambitious EV Transition Continues to Make Progress',\n",
+ " 'author': 'Shane Neagle',\n",
+ " 'published_utc': '2022-12-06T19:23:00Z',\n",
+ " 'article_url': 'https://www.investing.com/analysis/despite-falling-stock-fords-ambitious-ev-transition-continues-to-make-progress-200633199',\n",
+ " 'tickers': ['F', 'TSLA'],\n",
+ " 'amp_url': 'https://m.investing.com/analysis/despite-falling-stock-fords-ambitious-ev-transition-continues-to-make-progress-200633199?ampMode=1',\n",
+ " 'image_url': 'https://i-invdn-com.investing.com/redesign/images/seo/investingcom_analysis_og.jpg'},\n",
+ " {'id': 'Cj2O3mKkdYbOEULE7REepdmfv47dVQCUMd5tfANg9ck',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Musk-owned Neuralink faces investigation over animal-testing violations: report',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2022-12-06T18:18:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/elon-musks-neuralink-under-federal-investigation-for-animal-welfare-violations-report-11670344216',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/elon-musks-neuralink-under-federal-investigation-for-animal-welfare-violations-report-11670344216',\n",
+ " 'image_url': 'https://images.mktw.net/im-679879/social',\n",
+ " 'description': \"Musk's brain chip company Neuralink is facing a probe and employee backlash over animal testing.\"},\n",
+ " {'id': 'xoTsAL1WwEswBIbLwRAwaai1X5SLzWwN6CjU_1S4muM',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Why General Motors Stock Jumped Today',\n",
+ " 'author': 'newsfeedback@fool.com (Joe Tenebruso)',\n",
+ " 'published_utc': '2023-01-31T23:17:01Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/01/31/why-general-motors-stock-jumped-today/',\n",
+ " 'tickers': ['GM', 'F', 'TSLA', 'LAC'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/718817/gm-2025-gmc-sierra-ev-elevation.png',\n",
+ " 'description': 'Strong truck and electric vehicle sales helped the automaker post sharply higher profits in 2022.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'oy5LlzCsKhKZQAqqNDYXDKZB42srtqd7yPCO4j1NZSU',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Why Tesla Stock Trounced the Market on Tuesday',\n",
+ " 'author': 'newsfeedback@fool.com (Eric Volkman)',\n",
+ " 'published_utc': '2023-01-31T23:14:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/01/31/why-tesla-stock-trounced-the-market-on-tuesday/',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/718825/happy-person-leaning-out-of-a-car-window-while-riding-at-night.jpg',\n",
+ " 'description': \"It won't be skimping on capital expenditures over the next few years.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'FFFE4raz0MO4qYy70uydjTK7LitAu-Ka2hkp1-aUh5Y',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'A New Tesla Factory Could Be Coming To Mexico City',\n",
+ " 'author': 'Benzinga EV Insights',\n",
+ " 'published_utc': '2023-01-31T22:28:22Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/23/01/30653027/a-new-tesla-factory-could-be-coming-to-mexico-city',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/30653027',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/01/31/898e581b-6700-41b3-a86e-eb3c2d11f672.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Tesla Inc\\xa0(NASDAQ: TSLA) has\\xa0been on a roll the past few years opening new factories in China, Germany,\\xa0Texas\\xa0and if the deal is reached, in Mexico.\\nAlthough Tesla and Mexico have not yet reached an agreement, new information is pointing to a possible new factory in Mexico City.\\xa0\\nAs reported ...',\n",
+ " 'keywords': ['News', 'Global', 'Tech']},\n",
+ " {'id': 'iNjSeI7oduzWEZrpXTOw1GUKWYyd-H6zfbZDRDiH2sw',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': \"Tesla and Ford are cutting auto prices, but GM says it won't\",\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-01-31T21:48:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/gm-says-no-to-price-cuts-diverging-from-rivals-tesla-and-ford-11675193602',\n",
+ " 'tickers': ['GM', 'TSLA', 'F'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/gm-says-no-to-price-cuts-diverging-from-rivals-tesla-and-ford-11675193602',\n",
+ " 'image_url': 'https://images.mktw.net/im-406800/social',\n",
+ " 'description': 'General Motors says its prices are right where they need to be, raising questions on Wall Street about whether that might be a too-aggressive strategy.'},\n",
+ " {'id': '6C__nYV8IszoqpDEYlcejRBO1vL3sPZcn7UQS26fzsw',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Why Electric-Vehicle Stocks Jumped Today',\n",
+ " 'author': 'newsfeedback@fool.com (Travis Hoium)',\n",
+ " 'published_utc': '2023-01-31T19:53:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/01/31/why-electric-vehicle-stocks-jumped-today/',\n",
+ " 'tickers': ['RIVN', 'TSLA', 'F', 'NKLA', 'RIDE', 'QS', 'CHPT'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/718750/2022-rivian-r1t.jpg',\n",
+ " 'description': 'Will lower rates really help EV companies?',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'Y2ygfjrI5HiD10HnWIjGiL1q9d0QYTQIXAF060L-F4o',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'Tesla & Supercharged Electric Vehicle ETFs in Focus',\n",
+ " 'author': 'Neena Mishra',\n",
+ " 'published_utc': '2023-01-31T18:45:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/2047222/tesla-supercharged-electric-vehicle-etfs-in-focus',\n",
+ " 'tickers': ['F',\n",
+ " 'AAPL',\n",
+ " 'MSFT',\n",
+ " 'NVDA',\n",
+ " 'DRIV',\n",
+ " 'TSLA',\n",
+ " 'KARS',\n",
+ " 'IDRV',\n",
+ " 'LCID',\n",
+ " 'RIVN'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/2047222/tesla-supercharged-electric-vehicle-etfs-in-focus',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/default_article_images/default179.jpg',\n",
+ " 'description': \"We highlight 3 EV ETFs that are gaining from Tesla's sizzling rally\"},\n",
+ " {'id': 'VhnxT4tJikyQuIyZeDk1QLHhgYny-vdiyVAq_T7XZpo',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'Top-Performing ETFs of Last Week',\n",
+ " 'author': 'Sanghamitra Saha',\n",
+ " 'published_utc': '2023-01-31T18:00:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/2047211/top-performing-etfs-of-last-week',\n",
+ " 'tickers': ['TSLA', 'JO', 'ARKW', 'ARKF', 'SFYF', 'VCAR', 'LCID', 'WGMI'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/2047211/top-performing-etfs-of-last-week',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/default_article_images/default90.jpg',\n",
+ " 'description': 'Wall Street was modestly upbeat last week. The release of fourth-quarter U.S. GDP data and better-than-expected Consumer Sentiment and some Home Sales data led to the upbeat stock market.'},\n",
+ " {'id': 'Ga64dbiZ6iIw7JcE945Hp_V1BKvNSfv5Mdeaoi9Y89s',\n",
+ " 'publisher': {'name': 'Investing.com',\n",
+ " 'homepage_url': 'https://www.investing.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/investing.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/investing.ico'},\n",
+ " 'title': 'Ford Motor Struggles as Tesla Raises Stakes in EV Battle',\n",
+ " 'author': 'Shane Neagle',\n",
+ " 'published_utc': '2023-01-31T17:33:00Z',\n",
+ " 'article_url': 'https://www.investing.com/analysis/ford-motor-struggles-as-tesla-raises-stakes-in-ev-battle-200634873',\n",
+ " 'tickers': ['F', 'TSLA', 'GM'],\n",
+ " 'amp_url': 'https://m.investing.com/analysis/ford-motor-struggles-as-tesla-raises-stakes-in-ev-battle-200634873?ampMode=1',\n",
+ " 'image_url': 'https://i-invdn-com.investing.com/redesign/images/seo/investingcom_analysis_og.jpg'},\n",
+ " {'id': 'Qyk3DcFK-yduGRSLUkSrh80M6oh_cBViOjCdkBuBd6k',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': \"Tesla Stock Has Soared 38% in 2023 So Far -- Here's Why It's Still a Screaming Buy\",\n",
+ " 'author': 'newsfeedback@fool.com (Anthony Di Pizio)',\n",
+ " 'published_utc': '2023-01-31T15:56:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/01/31/tesla-stock-has-soared-38-2023-why-screaming-buy/',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/718425/a-blue-tesla-car-driving-on-an-open-road.jpg',\n",
+ " 'description': 'Tesla stock has roared back to life after a 75% peak-to-trough decline.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'VUvNE0D6TYWl4yb1aAoZHXwdkAnXbKhAGwlGq3bsWC4',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Dogecoin rallies while bitcoin falls, as Musk considers crypto payments for Twitter',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-01-31T15:08:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/dogecoin-rallies-while-bitcoin-falls-as-musk-considers-crypto-payments-for-twitter-11675177723',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/dogecoin-rallies-while-bitcoin-falls-as-musk-considers-crypto-payments-for-twitter-11675177723',\n",
+ " 'image_url': 'https://images.mktw.net/im-333857/social',\n",
+ " 'description': 'Dogecoin jumps more than 8% Tuesday, outperforming other major cryptocurrencies, after a report said Elon Musk is pushing Twitter to build a payments system where crypto might be incorporated.'},\n",
+ " {'id': 'BEJPEKBNHZ9nIMbmDZFXCAAeVLRPy6KWzLwYDBa2uwI',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': \"Will Tesla's Unit Sales in 2023 Rise Enough to Offset Falling Gross Margins?\",\n",
+ " 'author': 'newsfeedback@fool.com (Parkev Tatevosian, CFA)',\n",
+ " 'published_utc': '2023-01-31T15:00:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/01/31/will-teslas-unit-sales-in-2023-rise-enough-to-offs/',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/718556/tesla-stock-analysis-1.jpg',\n",
+ " 'description': 'Tesla is decreasing sales prices while its cost of goods sold is rising.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'UKt8DzqgRsdn0dAlQ7S9RdgfKs2VAmxm8MI2YavvWmg',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'This newsletter editor has been recommending stocks and bonds this year and says the rally has room to run',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-01-31T14:09:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/this-newsletter-editor-has-been-recommending-stocks-and-bonds-this-year-and-says-the-rally-has-room-to-run-11675165998',\n",
+ " 'tickers': ['COMP',\n",
+ " 'DJIA',\n",
+ " 'CAT',\n",
+ " 'XOM',\n",
+ " 'UPS',\n",
+ " 'PFE',\n",
+ " 'GM',\n",
+ " 'MCD',\n",
+ " 'SPOT',\n",
+ " 'AMD',\n",
+ " 'AMGN',\n",
+ " 'SNAP',\n",
+ " 'EA',\n",
+ " 'DASH',\n",
+ " 'USIO',\n",
+ " 'TSLA',\n",
+ " 'BBBY',\n",
+ " 'GME',\n",
+ " 'AMC',\n",
+ " 'APE',\n",
+ " 'GNS',\n",
+ " 'NIO',\n",
+ " 'LCID',\n",
+ " 'AAPL',\n",
+ " 'CVNA'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/this-newsletter-editor-has-been-recommending-stocks-and-bonds-this-year-and-says-the-rally-has-room-to-run-11675165998',\n",
+ " 'image_url': 'https://images.mktw.net/im-713654/social',\n",
+ " 'description': 'Our contrarian call of the day from founder and editor-in-chief of The Kobeissi Letter, Adam Kobeissi is not buying any of the market angst on Wall Street right now.'},\n",
+ " {'id': 'WZUo__YH0sfwSelezMm0UQ_Dn5jW3SZzI1jME_Umz-o',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'EV Roundup: TSLA Q4 Earnings, HMC E-Mobility Business Unit & More',\n",
+ " 'author': 'Rimmi Singhi',\n",
+ " 'published_utc': '2023-01-31T13:36:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/2046864/ev-roundup-tsla-q4-earnings-hmc-e-mobility-business-unit-more',\n",
+ " 'tickers': ['HMC', 'TSLA', 'BLNK', 'NKLA', 'GOEV'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/2046864/ev-roundup-tsla-q4-earnings-hmc-e-mobility-business-unit-more',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/articles/main/99/1094.jpg',\n",
+ " 'description': 'Tesla (TSLA) manages to pull off the eighth consecutive earnings beat in Q422. Meanwhile, Honda (HMC) announces structural changes to ramp up the electrification business.'},\n",
+ " {'id': 'qNhBVvXAa-91UCYHsnkrFUVtX0Xz0TKwF_gKy3l3b8I',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': \"35% of Cathie Wood's Flagship ETF Is Invested in Just 5 Stocks\",\n",
+ " 'author': 'newsfeedback@fool.com (Bram Berkowitz)',\n",
+ " 'published_utc': '2023-01-31T13:30:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/01/31/35-of-cathie-wood-flagship-etf-invested-in-5-stock/',\n",
+ " 'tickers': ['TSLA', 'SQ', 'ROKU', 'ARKK', 'ZM', 'COIN'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/718070/person-looking-at-computer-2.jpg',\n",
+ " 'description': \"Many people know of Cathie Wood's Ark Innovation ETF for its focus on disruptive tech stocks.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'oWfmZ5ENfy7Aap9IJ1bkyuwJllBnlZ8ka3sStxJqFDI',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': \"Tesla Stock's Short-Term Could Be Challenging. Is the Stock Still a Buy?\",\n",
+ " 'author': 'newsfeedback@fool.com (Lawrence Nga)',\n",
+ " 'published_utc': '2023-01-31T13:30:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/01/31/tesla-stocks-short-term-could-be-challenging-is-th/',\n",
+ " 'tickers': ['TSLA', 'F', 'GM'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/718060/car-charging.jpg',\n",
+ " 'description': \"Tesla's stock price might have corrected, but investors should not get overly excited just yet.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'X9blqbKCdLV_9dBZQu2unnFYmypeMnpyeK-eDB0hCY0',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'Auto Roundup: Q4 Earnings Snapshots of TSLA, PCAR, GPI, ALV & GNTX',\n",
+ " 'author': 'Rimmi Singhi',\n",
+ " 'published_utc': '2023-01-31T13:28:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/2046877/auto-roundup-q4-earnings-snapshots-of-tsla-pcar-gpi-alv-gntx',\n",
+ " 'tickers': ['ALV', 'PCAR', 'GPI', 'TSLA', 'GNTX'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/2046877/auto-roundup-q4-earnings-snapshots-of-tsla-pcar-gpi-alv-gntx',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/articles/main/a0/644.jpg',\n",
+ " 'description': 'While Tesla (TSLA), PACCAR (PCAR), Group 1 (GPI), Autoliv (ALV) post better-than-expected Q4 earnings, Gentex (GNTX) lags earnings estimates by a slight margin.'},\n",
+ " {'id': '5rloRyxsaXuyIlaIQxqiSaO6qPJ8JANvOFdLG5jqJdQ',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Is It Too Late to Buy Lucid Group Stock?',\n",
+ " 'author': 'newsfeedback@fool.com (Leo Sun)',\n",
+ " 'published_utc': '2023-01-31T13:14:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/01/31/is-it-too-late-to-buy-lucid-group-stock/',\n",
+ " 'tickers': ['LCID', 'TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/718510/lucid-air-exterior-04.jpg',\n",
+ " 'description': 'The electric-vehicle maker is riding high on some viable takeover buzz.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': '9jFXwmX9exMELMA73N9mszdOJnAYkWdsQuJdVPfD3zk',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Bear market unlike anything I’ve seen since starting on the Street in 1980, says short selling legend Jim Chanos',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-01-31T11:39:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/bear-market-unlike-anything-ive-seen-since-starting-on-the-street-in-1980-says-short-selling-legend-jim-chanos-11675161730',\n",
+ " 'tickers': ['SLG', 'AMC', 'TSLA', 'COIN'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/bear-market-unlike-anything-ive-seen-since-starting-on-the-street-in-1980-says-short-selling-legend-jim-chanos-11675161730',\n",
+ " 'image_url': 'https://images.mktw.net/im-701729/social',\n",
+ " 'description': 'The market will not be able to overcome rising interest rates and waning corporate profitability, notable short seller Jim Chanos told CNBC on Monday.'},\n",
+ " {'id': 'vtXxVY_AuAH8qXB4TpV96a8ea2Csyq-TYYRtUVVxDz4',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"New Tesla Owner Lashes Out At Elon Musk Over Broken Steering Wheel: 'Am I Responsible For Manufacturing Defect?'\",\n",
+ " 'author': 'Shivdeep Dhaliwal',\n",
+ " 'published_utc': '2023-01-31T11:15:06Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/23/01/30635324/new-tesla-owner-lashes-out-at-elon-musk-over-broken-steering-wheel-am-i-responsible-for-manufacturin',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/30635324',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/01/31/shutterstock_2031177383.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'A Twitter user based in New Jersey shared details of what they said was a “horrific experience” in the middle of the highway as their new Tesla Inc (NASDAQ: TSLA) vehicle’s steering wheel fell off.\\xa0\\nWhat Happened: The Twitter user, who goes by the name\\xa0Prerak, tweeted at Elon Musk, the CEO of the automaker and said their family was excited to receive the Tesla Y delivery on Jan. 24, but while they were driving on the highway “the sudden steering wheel [fell] off.”\\nPrerak said in the tweet, first noted on Motortrend, that they were lucky enough that there was no vehicle behind and they could pull onto the divider.\\n@elonmusk @TeslaOwnersWW @BLKMDL3 Family was excited to receive Tesla Y delivery on 1/24/2023. Was driving on highway and all the sudden steering wheel fall off, was lucky enough there was no car behind and I was able ...',\n",
+ " 'keywords': ['News', 'Social Media', 'Tech', 'General']},\n",
+ " {'id': 'eou9k_iHFiFmP26dqHXTW6G4qwKQsWxkmVSGbHjtTh8',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Volatility In Markets Increases Sharply Ahead Of Big Earnings',\n",
+ " 'author': 'Lisa Levin',\n",
+ " 'published_utc': '2023-01-31T10:48:42Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/earnings/23/01/30636531/volatility-in-markets-increases-sharply-ahead-of-big-earnings',\n",
+ " 'tickers': ['AAPL', 'AMZN', 'TSLA', 'GOOGL'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/30636531',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/01/31/image31.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'US stocks closed lower on Monday amid declines in technology and other megacap stocks.\\nBig tech names, including, Apple Inc (NASDAQ: AAPL), Amazon.com Inc (NASDAQ: AMZN) and Alphabet Inc (NASDAQ: GOOGL) are scheduled to report earnings results this week.\\nThe US Federal Reserve and European Central Bank are also due to announce their interest rate decisions this week.\\nMajority of ...',\n",
+ " 'keywords': ['News',\n",
+ " 'Earnings',\n",
+ " 'Pre-Market Outlook',\n",
+ " 'Markets',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': 'R08R7QPeeReamRMi__hiEpubdfJzF4ZJbGsTdTiDHMU',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'My Top Beaten-Down EV Stock to Buy and Hold for the Next Decade',\n",
+ " 'author': 'newsfeedback@fool.com (Chris Neiger)',\n",
+ " 'published_utc': '2023-01-31T10:16:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/01/31/my-top-beaten-down-ev-stock-to-buy-and-hold-for-th/',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/717326/model-y-side-blue.jpg',\n",
+ " 'description': \"Tesla is down right now, but it wouldn't be prudent to give up on this stock just yet.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'WUw1e8Uo0d-TeSB34xcNXjFHjZYFKB6zTIKc3g7bp3c',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'Zacks Investment Ideas feature highlights: Lyft, Dutch Bros, Airbnb, Meta Platforms and Tesla',\n",
+ " 'author': 'Zacks Equity Research',\n",
+ " 'published_utc': '2023-01-31T10:00:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/2046703/zacks-investment-ideas-feature-highlights-lyft-dutch-bros-airbnb-meta-platforms-and-tesla',\n",
+ " 'tickers': ['TSLA', 'LYFT', 'ABNB', 'META', 'BROS'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/2046703/zacks-investment-ideas-feature-highlights-lyft-dutch-bros-airbnb-meta-platforms-and-tesla',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/articles/main/65/763.jpg',\n",
+ " 'description': 'Lyft, Dutch Bros, Airbnb, Meta Platforms and Tesla have been highlighted in this Investment Ideas article.'},\n",
+ " {'id': 'wojtCSabhc-dOcAlnKviaHOI-wmybjMWIA9ccpkjsQw',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Another Chance to Look Back and Score Stock Picks',\n",
+ " 'author': 'newsfeedback@fool.com (Motley Fool Staff)',\n",
+ " 'published_utc': '2023-01-31T09:24:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/01/31/another-chance-to-look-back-and-score-stock-picks/',\n",
+ " 'tickers': ['AAPL',\n",
+ " 'DIS',\n",
+ " 'AMZN',\n",
+ " 'TSLA',\n",
+ " 'SBUX',\n",
+ " 'ETSY',\n",
+ " 'SEDG',\n",
+ " 'TDOC',\n",
+ " 'TEAM'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/717154/rbi_20230118.jpg',\n",
+ " 'description': '\"I think it\\'s helpful to score because if you don\\'t score, you\\'re not really sure if you\\'re doing it right.\" -- Motley Fool co-founder David Gardner',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'O_d4hOg6_A8Dyqjkkdg6-KQPTezTHrWjSA7FL8dhbB8',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': \"It's a key week for the stock market. If you're not nervous, you should be, this global strategist warns.\",\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-01-31T07:11:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/time-to-short-goldilocks-why-this-major-banks-strategist-is-now-turning-cautious-11675079901',\n",
+ " 'tickers': ['TSLA',\n",
+ " 'GME',\n",
+ " 'LCID',\n",
+ " 'APE',\n",
+ " 'BBBY',\n",
+ " 'AMC',\n",
+ " 'NIO',\n",
+ " 'MULN',\n",
+ " 'AAPL',\n",
+ " 'AMZN'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/time-to-short-goldilocks-why-this-major-banks-strategist-is-now-turning-cautious-11675079901',\n",
+ " 'image_url': 'https://images.mktw.net/im-615308/social',\n",
+ " 'description': \"Any investor out there who isn't nervous, perhaps should recheck his gut, says our call of the day, from Standard Chartered's global head of research, Eric Robertsen.\"},\n",
+ " {'id': 'RpgcSsI9Qdk8cH3GfVUpZnMWmiZ2Y1DlmunqJWO0lYk',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Ford Mach-E Price Cuts Right Strategic Move, Says Analyst: Why Tesla Is 'Uniquely Positioned' In This 'Game Of Thrones Battle'\",\n",
+ " 'author': 'Shanthi Rexaline',\n",
+ " 'published_utc': '2023-01-31T06:31:43Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/23/01/30635407/ford-mach-e-price-cuts-right-strategic-move-says-analyst-why-tesla-is-uniquely-posi',\n",
+ " 'tickers': ['F', 'GM', 'TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/30635407',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/01/31/ford_photo_by_kullapong_parcherat_on_shutterstock.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Ford Motor Co. (NYSE: F) announced on Monday that it was\\xa0lowering the Mustang Mach-E electric vehicle prices across trims, which is seen as a reactive move to EV industry leader Tesla\\xa0Inc.’s (NASDAQ: TSLA) string of price cuts.\\nWhat Happened:\\xa0Tesla’s up to 20% price cuts announced in mid-January kicked off a major EV price war, which has now officially begun, Wedbush analyst Daniel Ives said in a note. Ford’s 6-8% price cuts for its Mustang Mach-E are in response to the Model Y price cuts announced by Tesla, he said.\\nSee Also: Best Electric Vehicle Stocks\\nThe analyst said he expects similar moves over the coming weeks from a host of EV players from Detroit to Germany to China.\\nIves, however, is hopeful of Tesla warding off competitive threats. “In this EV arms race, Tesla is uniquely positioned around scale, brand, battery technology, and the Musk DNA while others ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['News',\n",
+ " 'Analyst Color',\n",
+ " 'Top Stories',\n",
+ " 'Analyst Ratings',\n",
+ " 'Tech']},\n",
+ " {'id': 'eYY58Ek6x1FUdf4Yu1h-QsPBIBAzuf21jHThWVQu9qc',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Will Twitter Embrace Dogecoin Like Tesla? Elon Musk Reportedly Seeks Crypto Options In Payments Push',\n",
+ " 'author': 'Mehab Qureshi',\n",
+ " 'published_utc': '2023-01-31T03:48:34Z',\n",
+ " 'article_url': 'https://www.benzinga.com/markets/cryptocurrency/23/01/30635059/will-twitter-embrace-dogecoin-like-tesla-elon-musk-reportedly-seeks-crypto-options-in-paym',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/30635059',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/01/30/shutterstock_2149752817.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': \"Twitter\\xa0is reportedly working on a system that would allow users to make payments directly through the social media platform. Billionaire owner\\xa0Elon Musk\\xa0is said to be pushing for a fiat currency priority but wants the system to incorporate cryptocurrencies later on.\\xa0\\nWhat Happened:\\xa0According to a Financial Times\\xa0report, two people familiar with Twitter's plans have indicated that its forthcoming payments feature will initially support fiat currencies but will also be built to accommodate digital currencies.\\nBREAKING: Elon Musk’s Twitter Working On Crypto ...\",\n",
+ " 'keywords': ['News',\n",
+ " 'Cryptocurrency',\n",
+ " 'Social Media',\n",
+ " 'Top Stories',\n",
+ " 'Markets',\n",
+ " 'Tech',\n",
+ " 'Media',\n",
+ " 'General']},\n",
+ " {'id': '2mizTw3x7zUVWHNS34mR_paO_9m0SZsVWVyfxR0eD_s',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Elon Musk Said His Neighbors Called The Cops On Him Four Times In Single Night — Here's Why\",\n",
+ " 'author': 'Shivdeep Dhaliwal',\n",
+ " 'published_utc': '2023-01-31T00:33:10Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/22/08/28391245/elon-musk-says-his-neighbours-called-the-cops-on-him-four-times-in-one-night-heres-why-1',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/28391245',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2022/08/08/shutterstock_1457667725.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Tesla Inc (NASDAQ: TSLA) CEO Elon Musk regaled the audience of the “Full Send” podcast\\xa0with an anecdote of the time his house party was visited by the cops in August.\\nWhat Happened: Musk, during the podcast appearance, said a party was held at his Hillsborough mansion near the bay area in San Francisco, California.\\nMusk said “everyone goes to bed at 10 p.m.” in the bay area, noting that\\xa0in that particular instance\\xa0cops were called by ...',\n",
+ " 'keywords': ['News', 'Entertainment', 'General']},\n",
+ " {'id': 'N51Kt-Lc6vTvj3jK2S5X_zzVJ3-qfZgERPraVbk_Boo',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Why Canoo Stock Dived Today by Almost 12%',\n",
+ " 'author': 'newsfeedback@fool.com (Eric Volkman)',\n",
+ " 'published_utc': '2023-01-30T23:01:20Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/01/30/why-canoo-stock-dived-today-by-almost-12/',\n",
+ " 'tickers': ['GOEV', 'F', 'TSLA', 'LCID'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/718625/person-looking-under-the-hood-of-their-car.jpg',\n",
+ " 'description': 'Through no fault of its own, the company got quite the cold shoulder from the market.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': '5elicwqcTyadIK1V6Itw0eJqEONM8gYRo1hjz1uSj4E',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'Time to Take Another Bite of Apple Before Q1 Earnings?',\n",
+ " 'author': 'Derek Lewis',\n",
+ " 'published_utc': '2023-01-30T22:48:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/2046546/time-to-take-another-bite-of-apple-before-q1-earnings',\n",
+ " 'tickers': ['AAPL', 'MSFT', 'NFLX', 'TSLA'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/2046546/time-to-take-another-bite-of-apple-before-q1-earnings',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/articles/main/24/52.jpg',\n",
+ " 'description': 'Apple has managed to deliver better-than-expected results despite facing a challenging business environment, exceeding the Zacks Consensus EPS Estimate in four consecutive quarters. Can the streak continue?'},\n",
+ " {'id': '9deTml0yo-bAa0Cawnl01NyQfjGUXphAPPDbjwpb1J0',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Could Big Tech layoffs grow? Apple, Amazon, Facebook and Google may give hints in biggest week of holiday earnings.',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-01-30T21:31:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/could-big-tech-layoffs-keep-growing-apple-amazon-facebook-and-google-may-give-hints-in-biggest-week-of-earnings-11675022463',\n",
+ " 'tickers': ['AMZN',\n",
+ " 'AAPL',\n",
+ " 'META',\n",
+ " 'MSFT',\n",
+ " 'TSLA',\n",
+ " 'GOOGL',\n",
+ " 'GOOG',\n",
+ " 'IBM',\n",
+ " 'LRCX',\n",
+ " 'INTC',\n",
+ " 'AMD',\n",
+ " 'DJIA',\n",
+ " 'WHR',\n",
+ " 'UPS',\n",
+ " 'SPOT',\n",
+ " 'MCD',\n",
+ " 'XOM',\n",
+ " 'CAT',\n",
+ " 'SNAP',\n",
+ " 'PFE',\n",
+ " 'TMUS',\n",
+ " 'SBUX',\n",
+ " 'WWE',\n",
+ " 'NFLX',\n",
+ " 'GM',\n",
+ " 'F'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/could-big-tech-layoffs-keep-growing-apple-amazon-facebook-and-google-may-give-hints-in-biggest-week-of-earnings-11675022463',\n",
+ " 'image_url': 'https://images.mktw.net/im-713394/social',\n",
+ " 'description': \"Quarterly earnings from 2022's top five market-value losers will continue what will the earnings season's most hectic week.\"},\n",
+ " {'id': 'fAvgC3NmHOkwFaHacCKbOaPFu9D53TGG24shd7bO08I',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Nasdaq books worst skid in 5 weeks, stocks slump ahead of Fed rate decision, tech earnings deluge',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-01-30T21:24:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/dow-futures-drop-200-points-as-fed-decision-tech-earnings-await-11675076116',\n",
+ " 'tickers': ['DJIA',\n",
+ " 'COMP',\n",
+ " 'ARKK',\n",
+ " 'AAPL',\n",
+ " 'GOOGL',\n",
+ " 'AMZN',\n",
+ " 'SOFI',\n",
+ " 'JNJ',\n",
+ " 'F',\n",
+ " 'TSLA'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/dow-futures-drop-200-points-as-fed-decision-tech-earnings-await-11675076116',\n",
+ " 'image_url': 'https://images.mktw.net/im-713090/social',\n",
+ " 'description': 'Stocks end lower Monday as a big week that features a Fed interest-rate decision, a jobs report and key tech-sector earnings gets under way.'},\n",
+ " {'id': 'sR2Se5G0DBO25ZEjPUGjhL3sCmoEgRZ4unBfpk7Ow3Y',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Elon Musk is trying to build a Twitter payments system --- and crypto may be part of it: report',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-01-30T20:04:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/elon-musk-is-trying-to-build-a-twitter-payments-system-and-crypto-may-be-part-of-it-report-11675109065',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/elon-musk-is-trying-to-build-a-twitter-payments-system-and-crypto-may-be-part-of-it-report-11675109065',\n",
+ " 'image_url': 'https://images.mktw.net/im-705382/social',\n",
+ " 'description': \"Twitter is reportedly advancing its efforts to introduce payments across the social media platform. In Elon Musk's vision, crypto may be part of it.\"},\n",
+ " {'id': 'THfpBIvr-4I_sHl4ECvq6UsXVXgb6YYmoZNIkODkZtE',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Why Rivian Stock Plunged Today',\n",
+ " 'author': 'newsfeedback@fool.com (Joe Tenebruso)',\n",
+ " 'published_utc': '2023-01-30T20:02:10Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/01/30/why-rivian-stock-plunged-today/',\n",
+ " 'tickers': ['RIVN', 'F', 'TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/718595/stock-market-down-gettyimages-873873202.jpg',\n",
+ " 'description': 'Competition is intensifying in the EV arena.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'JPrzzLxSjgaTozdLkoLCD1jh3Mk7fHO1__mgmzXIzaI',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'The Latest Analyst Ratings for Tesla',\n",
+ " 'author': 'Benzinga Insights',\n",
+ " 'published_utc': '2023-01-30T19:01:17Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/23/01/30627872/the-latest-analyst-ratings-for-tesla',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/30627872',\n",
+ " 'image_url': 'https://www.benzinga.com/next-assets/images/schema-image-default.png',\n",
+ " 'description': \"Over the past 3 months, 28 analysts have published their opinion on Tesla (NASDAQ:TSLA) stock. These analysts are typically employed by large Wall Street banks and tasked with understanding a company's business to predict how a stock will trade over the upcoming year.\\n\\n\\n\\n\\nBullish\\nSomewhat Bullish\\nIndifferent\\nSomewhat Bearish\\nBearish\\n\\n\\n\\n\\nTotal Ratings\\n9\\n9\\n9\\n1\\n0\\n\\n\\nLast 30D\\n1\\n0\\n0\\n0\\n0\\n\\n\\n1M Ago\\n4\\n4\\n7\\n1\\n0\\n\\n\\n2M Ago\\n4\\n5\\n1\\n0\\n0\\n\\n\\n3M Ago\\n0\\n0\\n1\\n0\\n0\\n\\n\\n\\nAccording to 28 analyst offering 12-month price targets in the last 3 months, Tesla has an average price target of $200.57 with a high of $300.00 and a ...Full story available on Benzinga.com\",\n",
+ " 'keywords': ['Analyst Ratings']},\n",
+ " {'id': '8zCfiCPAVlMqh_M9pPApBo8ryRMVpGfbsDOdpeK5o6E',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Ford Cuts Mustang Prices. What Does It Mean for Ford Stock?',\n",
+ " 'author': 'newsfeedback@fool.com (Lou Whiteman)',\n",
+ " 'published_utc': '2023-01-30T18:10:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/01/30/ford-cuts-mustang-prices-what-does-it-mean-for-for/',\n",
+ " 'tickers': ['F', 'TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/718558/ford-mustang-mach-e-ev-source-f.jpg',\n",
+ " 'description': 'The battle between Ford and Tesla takes an exciting new twist.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'ehNeFjTTi6QL2fxG3tizZijvkOgzeorsd9zKLkMboLk',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Why Tesla Stock Pumped the Brakes Monday',\n",
+ " 'author': 'newsfeedback@fool.com (Howard Smith)',\n",
+ " 'published_utc': '2023-01-30T17:42:38Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/01/30/why-tesla-stock-pumped-the-brakes-monday/',\n",
+ " 'tickers': ['TSLA', 'F'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/718543/0x0-model_y_05.jpg',\n",
+ " 'description': \"Investors are pondering whether Tesla's pricing strategy will ultimately help or hurt its business.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'QM9EXLo-kMpsS_QnXArYDb31qcQiW7rDc0Wf_LKhqxY',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Follow The Leader? Ford's EV Price Cuts Could Be In Response To Tesla\",\n",
+ " 'author': 'Chris Katje',\n",
+ " 'published_utc': '2023-01-30T17:23:57Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/23/01/30625753/follow-the-leader-fords-ev-price-cuts-could-be-in-response-to-tesla',\n",
+ " 'tickers': ['F', 'TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/30625753',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/01/30/ford.mustang-mach-e_08.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Electric vehicle leader Tesla Inc (NASDAQ: TSLA) dominated the sub-sector of the automotive industry for years. Legacy automakers are increasing their focus on electric vehicles, which could put pressure on Tesla’s dominant market share.\\nWhat Happened: Tesla made massive headlines when it announced price cuts on its electric vehicle models in the U.S.\\nThe price cuts ranged from 6.4% to 19.7% and brought the price of a Model 3 down to $43,990, or $36,490 after tax credits.\\nThe result of the price cuts was a huge jump in requests with Tesla CEO Elon Musk saying that the numbers\\xa0in January were nearly double the production from the company.\\nTesla is guiding for vehicle sales of 1.8 million units in 2023, with Musk saying the popularity of the price cuts could help boost the figure closer to two million.\\n“We think demand will be good despite probably a contraction in the automotive market as a whole. So, basically, price really matters,” Musk said.\\nOn Monday, Ford Motor Company (NYSE: F) announced price cuts to its Mustang Mach-E electric vehicle and also announced ...',\n",
+ " 'keywords': ['News', 'Top Stories', 'Trading Ideas']},\n",
+ " {'id': 'PomRW1mV76tE0kxXO0YHIHos4C8bB_ioEXWL08Qn2UA',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Tesla had a great week, but one analyst still has doubts',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-01-30T17:21:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/tesla-had-a-great-week-but-one-analyst-still-has-doubts-11675099313',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/tesla-had-a-great-week-but-one-analyst-still-has-doubts-11675099313',\n",
+ " 'image_url': 'https://images.mktw.net/im-689311/social',\n",
+ " 'description': \"Tesla Inc.'s stock on Monday gave back some of the previous week's huge advance following a mixed quarterly earnings report.\"},\n",
+ " {'id': 'LOiqJqLaimhJjOignNGCLrC3X8PaZ_CniIiyjGKlPJQ',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': \"Why Toyota's Optimism Bodes Well for the Automotive Sector\",\n",
+ " 'author': 'newsfeedback@fool.com (Larry Printz)',\n",
+ " 'published_utc': '2023-01-30T17:15:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/01/30/why-toyotas-optimism-bodes-well-for-the-automotive/',\n",
+ " 'tickers': ['TM', 'TSLA', 'GM'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/717950/2023-toyota-crown_platinum_full-front.jpeg',\n",
+ " 'description': \"Toyota leads the industry in an optimistic 2023 sales forecast. Here's why that matters.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': '57hLX-Ls8mJeRhR_nDgr6s4rhIeX37aUG7mUJX6xLWc',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Lucid Analyst Remains Bullish Even After Stock Rallies On Saudi Arabia Takeover Speculation',\n",
+ " 'author': 'Wayne Duggan',\n",
+ " 'published_utc': '2023-01-30T16:33:48Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/23/01/30624935/lucid-analyst-remains-bullish-even-after-stock-rallies-on-saudi-arabia-takeover-spe',\n",
+ " 'tickers': ['F', 'TSLA', 'LCID'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/30624935',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/01/30/lucid_shutterstock.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': \"Lucid Group Inc (NASDAQ: LCID) shares continued their pullback on Monday morning after rallying nearly 100% in intraday trading on Friday following reports that Saudi Arabia’s Public Investment Fund (SAPIF) was in talks to take Lucid private. Lucid's takeover rumors were welcomed as good news, as some electric vehicle investors have grown concerned about what recent EV price cuts by Tesla Inc (NASDAQ: TSLA) and Ford Motor Company (NYSE: F) could mean about EV demand in 2023.\\nFord Cuts Prices: On Monday, Ford joined Tesla in slashing prices on its electric Mustang Mach-E crossover, a move company executives say means not all Mach-E models will be profitable moving forward. Ford is reportedly cutting the price of the Mach-E by an average of about $4,500 after Tesla issued price cuts on the comparable Model Y of up to ...Full story available on Benzinga.com\",\n",
+ " 'keywords': ['News', 'Analyst Color', 'Price Target', 'Analyst Ratings']},\n",
+ " {'id': 'JvvpkBPN4DfqzkvAIMwuwxZ6FqOOwuezmXZsB__6QnQ',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Why Nio, Xpeng, and Lucid Stocks Dropped Today',\n",
+ " 'author': 'newsfeedback@fool.com (Rich Smith)',\n",
+ " 'published_utc': '2023-01-30T16:12:17Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/01/30/why-nio-xpeng-and-lucid-stocks-dropped-today/',\n",
+ " 'tickers': ['F', 'TSLA', 'NIO', 'XPEV', 'LCID'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/718541/chart-shows-a-red-dollar-sign-trending-down.jpg',\n",
+ " 'description': \"Sting said it best: There's no such thing as a winnable (price) war.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'UUYgzKI9ZVn0UGKcOSKWd6RXOB6OCVgxHBVo4vymII8',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Tesla stock has fallen enough to start buying, Berenberg says',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-01-30T15:07:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/tesla-has-fallen-enough-to-start-buying-berenberg-says-11675084412',\n",
+ " 'tickers': ['GM', 'TSLA'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/tesla-has-fallen-enough-to-start-buying-berenberg-says-11675084412',\n",
+ " 'image_url': 'https://images.mktw.net/im-712860/social',\n",
+ " 'description': '\"Tesla, in our view, could take market share at a gross margin that exceeds 25%,\" Berenberg analyst says.'},\n",
+ " {'id': 'KykgPqt8DKE_9FnnNvp8YCjAND7b6BsgNJbSYjhzniw',\n",
+ " 'publisher': {'name': 'Seeking Alpha',\n",
+ " 'homepage_url': 'https://seekingalpha.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/seekingalpha.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/seekingalpha.ico'},\n",
+ " 'title': 'Tesla: Calm Before The Interest Rate Storm',\n",
+ " 'author': \"Wright's Research\",\n",
+ " 'published_utc': '2023-01-30T15:02:14Z',\n",
+ " 'article_url': 'https://seekingalpha.com/article/4573523-tesla-calm-before-the-interest-rate-storm',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'image_url': 'https://static.seekingalpha.com/cdn/s3/uploads/getty_images/531622190/image_531622190.jpg?io=getty-c-w1536',\n",
+ " 'description': 'Investors may want to tread carefully with Tesla, Inc., and perhaps wait for volatility to subside. Click here for our TSLA stock analysis.'},\n",
+ " {'id': 'lg-8kGaTKN44OOYlgW2gd15IwrTqIvQ3iY3LafOEzus',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Benzinga's Top Ratings Upgrades, Downgrades For January 30, 2023\",\n",
+ " 'author': 'Benzinga Insights',\n",
+ " 'published_utc': '2023-01-30T15:00:50Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/upgrades/23/01/30623458/benzingas-top-ratings-upgrades-downgrades-for-january-30-2023',\n",
+ " 'tickers': ['CELU',\n",
+ " 'GT',\n",
+ " 'BOOT',\n",
+ " 'LVLU',\n",
+ " 'JWN',\n",
+ " 'AXTA',\n",
+ " 'BMRN',\n",
+ " 'HSCS',\n",
+ " 'KGC',\n",
+ " 'SHOP',\n",
+ " 'BOOT',\n",
+ " 'ONFO',\n",
+ " 'KSS',\n",
+ " 'UBER',\n",
+ " 'ODFL',\n",
+ " 'FBIN',\n",
+ " 'LMT',\n",
+ " 'PEN',\n",
+ " 'REGN',\n",
+ " 'M',\n",
+ " 'LYFT',\n",
+ " 'SAIA',\n",
+ " 'SKT',\n",
+ " 'OKTA',\n",
+ " 'STEL',\n",
+ " 'TSLA',\n",
+ " 'ATER',\n",
+ " 'ACN',\n",
+ " 'FIBK',\n",
+ " 'GTHX',\n",
+ " 'CL',\n",
+ " 'KMPR',\n",
+ " 'DNLI',\n",
+ " 'GNPX',\n",
+ " 'CYT',\n",
+ " 'TRMR',\n",
+ " 'DOOO',\n",
+ " 'EMN',\n",
+ " 'IRT',\n",
+ " 'AZEK',\n",
+ " 'EW',\n",
+ " 'IRT',\n",
+ " 'EBC',\n",
+ " 'FLS',\n",
+ " 'XNCR',\n",
+ " 'DASH',\n",
+ " 'FRT',\n",
+ " 'VRNS',\n",
+ " 'FDMT',\n",
+ " 'GM',\n",
+ " 'XNCR'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/30623458',\n",
+ " 'image_url': 'https://www.benzinga.com/next-assets/images/schema-image-default.png',\n",
+ " 'description': 'Upgrades\\nAccording to B of A Securities, the prior rating for Flowserve Corp (NYSE:FLS) was changed from Neutral to Buy. Flowserve earned $0.09 in the third quarter, compared to $0.29 in the year-ago quarter. The current stock performance of Flowserve shows a 52-week-high of $37.59 and a 52-week-low of $23.89. Moreover, at the end of the last trading period, the closing price was at $33.39. \\nCompass Point upgraded the previous rating for Federal Realty Investment Trust (NYSE:FRT) from Neutral to Buy. Federal Realty Investment earned $1.59 in the third quarter, compared to $1.51 in the year-ago quarter. The stock has a 52-week-high of $128.13 and a 52-week-low of $86.43. At the end of the last trading period, Federal Realty Investment closed at $111.38. \\nCowen & Co. upgraded the previous rating for Regeneron Pharmaceuticals Inc (NASDAQ:REGN) from Market Perform to Outperform. In the third quarter, Regeneron Pharmaceuticals showed an EPS of $11.14, compared to $15.37 from the year-ago quarter. The stock has a 52-week-high of $779.00 and a 52-week-low of $538.01. At the end of the last trading period, Regeneron Pharmaceuticals closed at $742.83. \\nAccording to DZ Bank, the prior rating for Lockheed Martin Corp (NYSE:LMT) was changed from Hold to Buy. For the fourth quarter, Lockheed Martin had an EPS of $7.79, compared to year-ago quarter EPS of $7.47. At the moment, the stock has a 52-week-high of $498.95 and a 52-week-low of $373.67. Lockheed Martin closed at $459.60 at the end of the last trading period. \\nRoth Capital upgraded the previous rating for Shopify Inc (NYSE:SHOP) from Neutral to Buy. Shopify earned $0.02 in the third quarter, compared to $0.08 in the year-ago quarter. The current stock performance of Shopify shows a 52-week-high of $988.50 and a 52-week-low of $23.63. Moreover, at the end of the last trading period, the closing price was at $50.08. \\nAccording to Deutsche Bank, the prior rating for Axalta Coating Systems Ltd (NYSE:AXTA) was changed from Hold to Buy. For the fourth quarter, Axalta Coating Sys had an EPS of $0.38, compared to year-ago quarter EPS of $0.30. The current stock performance of Axalta Coating Sys shows a 52-week-high of $30.31 and a 52-week-low of $20.66. Moreover, at the end of the last trading period, the closing price was at $29.27. \\nPiper Sandler upgraded the previous rating for Stellar Bancorp Inc (NASDAQ:STEL) from Neutral to Overweight. The stock has a 52-week-high of $36.09 and a 52-week-low of $25.49. At the end of the last trading period, Stellar Bancorp closed at $25.85. \\nFor Axalta Coating Systems Ltd (NYSE:AXTA), Citigroup upgraded the previous rating of Neutral to Buy. Axalta Coating Sys earned $0.38 in the fourth quarter, compared to $0.30 in the year-ago quarter. The stock has a 52-week-high of $30.31 and a 52-week-low of $20.66. At the end of the last trading period, Axalta Coating Sys closed at $29.27. \\nFor Okta Inc (NASDAQ:OKTA), Stifel upgraded the previous rating of Hold to Buy. In the third quarter, Okta showed an EPS of $0.00, compared to $0.07 from the year-ago quarter. The current stock performance of Okta shows a 52-week-high of $203.79 and a 52-week-low of $44.12. Moreover, at the end of the last trading period, the closing price was at $71.38. \\nMorgan Stanley upgraded the previous rating for Colgate-Palmolive Co (NYSE:CL) from Equal-Weight to Overweight. In the fourth quarter, Colgate-Palmolive showed an EPS of $0.77, compared to $0.79 from the year-ago quarter. The stock has a 52-week-high of $83.81 and a 52-week-low of $67.84. At the end of the last trading period, Colgate-Palmolive closed at $71.59. \\nFor Tesla Inc (NASDAQ:TSLA), Berenberg upgraded the previous rating of Hold to Buy. In the fourth quarter, Tesla showed an EPS of $1.19, compared to $0.85 from the year-ago quarter. The current stock performance of Tesla shows a 52-week-high of $384.29 and a 52-week-low of $101.81. Moreover, at the end of the last trading period, the closing price was at $177.90. \\nFor Kemper Corp (NYSE:KMPR), Credit Suisse upgraded the previous rating of Underperform to Neutral. In the third quarter, Kemper showed an EPS of $0.48, compared to $1.19 from the year-ago quarter. At the moment, the stock has a 52-week-high of $60.95 and a 52-week-low of $40.65. Kemper closed at $55.88 at the end of the last trading period. \\nJP Morgan upgraded the previous rating for G1 Therapeutics Inc (NASDAQ:GTHX) from Underweight to Neutral. In the third quarter, G1 Therapeutics showed an EPS of $0.59, compared to $1.00 from the year-ago quarter. The stock has a 52-week-high of $17.49 and a 52-week-low of $3.84. At the end of the last trading period, G1 Therapeutics closed at $6.71. \\nSee all analyst ratings upgrades.\\nDowngrades\\nFor Eastman Chemical Co (NYSE:EMN), Vertical Research downgraded the previous rating of Buy to Hold. For the fourth quarter, Eastman Chemical had an EPS of $0.89, compared to year-ago quarter EPS of $1.81. At the moment, the stock has a 52-week-high of $124.84 and a 52-week-low of $69.91. Eastman Chemical closed at $86.82 at the end of the last trading period. \\nAccording to Keefe, Bruyette & Woods, the prior rating for First Interstate BancSystem Inc (NASDAQ:FIBK) was changed from Outperform to Market Perform. For the fourth quarter, First Interstate BancSys had an EPS of $0.82, compared to year-ago quarter EPS of $0.83. The current stock performance of First Interstate BancSys shows a 52-week-high of $46.34 and a 52-week-low of $32.40. Moreover, at the end of the last trading period, the closing price was at $33.62. \\nFor Goodyear Tire & Rubber Co (NASDAQ:GT), Exane BNP Paribas downgraded the previous rating of Neutral to Underperform. Goodyear Tire & Rubber earned $0.40 in the third quarter, compared to $0.72 in the year-ago quarter. The stock has a 52-week-high of $22.66 and a 52-week-low of $9.66. At the end of the last trading period, Goodyear Tire & Rubber closed at $11.10. \\nJanney Montgomery Scott downgraded the previous rating for First Interstate BancSystem ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['Upgrades',\n",
+ " 'Downgrades',\n",
+ " 'Initiation',\n",
+ " 'Intraday Update',\n",
+ " 'Analyst Ratings']},\n",
+ " {'id': 'z1icob14RhXoTxtNQV5DZkestvzugz-puIh7Opi5zvM',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Ford to cut Mustang Mach-E prices as price war with Tesla ‘intensifies’',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-01-30T14:24:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/ford-to-cut-mustang-mach-e-prices-while-significantly-increasing-production-11675086925',\n",
+ " 'tickers': ['F', 'TSLA'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/ford-to-cut-mustang-mach-e-prices-while-significantly-increasing-production-11675086925',\n",
+ " 'image_url': 'https://images.mktw.net/im-673470/social',\n",
+ " 'description': \"Ford Motor Co. said Monday that it was 'significantly increasing' production of its Mustang Mach-E in 2023.\"},\n",
+ " {'id': 's25Rx-995w6d7CHpUwm18-r1dbZ_5cXIJ1FX06tXF0Q',\n",
+ " 'publisher': {'name': 'Seeking Alpha',\n",
+ " 'homepage_url': 'https://seekingalpha.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/seekingalpha.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/seekingalpha.ico'},\n",
+ " 'title': 'Chevron: What A Big Dividend Disappointment',\n",
+ " 'author': 'Michael Fitzsimmons',\n",
+ " 'published_utc': '2023-01-30T14:06:00Z',\n",
+ " 'article_url': 'https://seekingalpha.com/article/4573395-chevron-big-dividend-disappointment',\n",
+ " 'tickers': ['COP', 'FCX', 'XOM', 'TSLA', 'CVX'],\n",
+ " 'image_url': 'https://static.seekingalpha.com/cdn/s3/uploads/getty_images/1437346447/image_1437346447.jpg?io=getty-c-w1536',\n",
+ " 'description': \"Chevron's decision to over-emphasize share buybacks is a major red-flag for investors moving forward. See why CVX stock is a hold.\"},\n",
+ " {'id': 'QPePXnVHU84lBhGbSuHlRitAQ8L9SqsSbG7jm5NErDo',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'Tesla, Inc. (TSLA) Is a Trending Stock: Facts to Know Before Betting on It',\n",
+ " 'author': 'Zacks Equity Research',\n",
+ " 'published_utc': '2023-01-30T14:00:12Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/2046204/tesla-inc-tsla-is-a-trending-stock-facts-to-know-before-betting-on-it',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/2046204/tesla-inc-tsla-is-a-trending-stock-facts-to-know-before-betting-on-it',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/default_article_images/default32.jpg',\n",
+ " 'description': \"Tesla (TSLA) has received quite a bit of attention from Zacks.com users lately. Therefore, it is wise to be aware of the facts that can impact the stock's prospects.\"},\n",
+ " {'id': 'dUg63CueA5rmAICgO_8t8kqILYXEb1IZCTujEDL7BlA',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': '3 Stocks to Avoid This Week',\n",
+ " 'author': 'newsfeedback@fool.com (Rick Munarriz)',\n",
+ " 'published_utc': '2023-01-30T13:15:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/01/30/3-stocks-to-avoid-this-week/',\n",
+ " 'tickers': ['BZFD', 'GM', 'META', 'TSLA', 'DHI', 'BBBY', 'FLWS'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/718474/gettycrash.jpg',\n",
+ " 'description': 'These investments seem pretty vulnerable right now.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'qzk97-zJPlSJ5uJ4oz82eHvJhJrD6bQJJ4KC5ucUjHk',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Amazon To Rally Around 29%? Here Are 10 Other Analyst Forecasts For Monday',\n",
+ " 'author': 'Lisa Levin',\n",
+ " 'published_utc': '2023-01-30T12:44:40Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/23/01/30620201/amazon-to-rally-around-29-here-are-10-other-analyst-forecasts-for-monday',\n",
+ " 'tickers': ['AMZN',\n",
+ " 'SAIA',\n",
+ " 'AXP',\n",
+ " 'EW',\n",
+ " 'GM',\n",
+ " 'TSLA',\n",
+ " 'CHTR',\n",
+ " 'GOOGL',\n",
+ " 'SNTI',\n",
+ " 'SSB',\n",
+ " 'CELU'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/30620201',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/01/30/image-amazon-3.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Barclays cut the price target for Amazon.com, Inc. (NASDAQ: AMZN) from $140 to $130. Barclays analyst Ross Sandler maintained an Overweight rating. Amazon shares fell 1.2% to $101.06 in pre-market trading.\\nWells Fargo boosted the price target for Charter Communications, Inc. (NASDAQ: CHTR) from $340 to $410. Wells Fargo analyst Steven Cahall maintained an Equal-Weight rating. Charter Communications shares fell 1.2% to $389.89 in pre-market trading.\\nHC Wainwright & Co. cut the price target for Celularity Inc. (NASDAQ: CELU) from $15 to $2.5. HC Wainwright & Co. analyst Swayampakula Ramakanth maintained a Buy rating on the stock. Celularity shares gained 7.7% to close at $1.05 on Friday.\\nPiper Sandler raised the price target for American Express Company (NYSE: Full story available on Benzinga.com',\n",
+ " 'keywords': ['News',\n",
+ " 'Penny Stocks',\n",
+ " 'Reiteration',\n",
+ " 'Pre-Market Outlook',\n",
+ " 'Markets',\n",
+ " 'Analyst Ratings',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': 'zGVcKClJDvlHPafNwVaX8cmaNSEvPAFWUw4N6Z3SEGI',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'US Futures Slump Ahead Of Fed Decision, Big Tech Earnings: Powell Key For Keeping Rally Hopes Alive, Say Analysts',\n",
+ " 'author': 'Shanthi Rexaline',\n",
+ " 'published_utc': '2023-01-30T11:35:15Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/earnings/23/01/30618517/us-futures-slump-ahead-of-fed-decision-big-tech-earnings-powell-key-for-keeping-rally-hopes-alive-s',\n",
+ " 'tickers': ['SPY', 'GE', 'WHR', 'TSLA', 'NXPI', 'QQQ', 'GEHC'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/30618517',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/01/30/stocks_photo_by_whyframe_on_shutterstock.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': \"U.S. stocks are poised to kickstart the proceedings of the week with a steep move to the downside, spearheaded by tech stocks. The major index futures point to a lower start on Monday.\\nCues From Past Week’s Trading: \\nStocks advanced notably in the week ended Jan. 27, as the momentum picked up by the market earlIer this year accelerated, thanks to the hopes of a soft landing and few better-than-feared earnings. Better-than-expected fourth-quarter GDP data released in the past allayed fears of the economy falling off the cliff, while positive reaction to Tesla\\xa0Inc.’s\\xa0(NASDAQ: TSLA) earnings and a rebound by energy prices also helped generate positive sentiment.\\nSee Also: How To Swing Trade Options\\nThe tech-heavy Nasdaq Composite settled at its highest level since mid-September 2022, extending the streak of weekly gains to four. The broader S&P 500 Index closed at a fresh two-month high.\\n\\nU.S. Indices' Performance During Week Ended Jan. 27\\n\\n\\nIndex\\nPerformance (+/-)\\n\\xa0\\nValue\\n\\n\\n\\n\\nNasdaq Composite\\n+4.32%\\n\\xa0\\n11,621.71\\n\\n\\nS&P 500 Index\\n+2.47%\\n\\xa0\\n4,070.56\\n\\n\\nDow Industrials\\n+1.81%\\n\\xa0\\n33,978.08\\n\\n\\n\\nAnalyst Color: \\nMarket watchers have been giving out contrasting takes on the near-term trajectory. Wharton professor Jeremy Siegel, whose call is for a 15-20% rally by the S&P 500 Index this year, cautioned that the Fed could upset the market’s applecart. Jerome Powell and his colleagues at the Fed could put the ...Full story available on Benzinga.com\",\n",
+ " 'keywords': ['News',\n",
+ " 'Earnings',\n",
+ " 'Futures',\n",
+ " 'Previews',\n",
+ " 'Top Stories',\n",
+ " 'Economics',\n",
+ " 'Federal Reserve',\n",
+ " 'Pre-Market Outlook',\n",
+ " 'Markets',\n",
+ " 'Tech',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': 'XopdS_6f9G7MKvNbdXMfjcDoFpZ9y0kUiBXpd8_HYYc',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'S&P 500 Rebounds; Tech, Gold, Bitcoin Rally As Investors Bet On Fed Pause In May',\n",
+ " 'author': 'Shanthi Rexaline',\n",
+ " 'published_utc': '2023-03-23T17:26:40Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/earnings/23/03/31470586/us-stocks-poised-to-rebound-from-yellen-inflicted-damage-fed-may-have-jumped-the-gun-by-signaling-a',\n",
+ " 'tickers': ['FRC',\n",
+ " 'QQQ',\n",
+ " 'EWU',\n",
+ " 'MANU',\n",
+ " 'EZU',\n",
+ " 'AMC',\n",
+ " 'SPY',\n",
+ " 'CHWY',\n",
+ " 'NVDA',\n",
+ " 'PACW',\n",
+ " 'ACN',\n",
+ " 'DRI',\n",
+ " 'F',\n",
+ " 'GIS',\n",
+ " 'NKE',\n",
+ " 'OXM',\n",
+ " 'RF',\n",
+ " 'WAL',\n",
+ " 'TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/31470586',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/03/23/shutterstock_1722647191.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': \"Risk appetite sharply recovered on Thursday amid increased expectations of a Fed rate pause in May.\\xa0This helped to alleviate fears raised by Treasury Secretary Janet Yellen's rejection of complete protection on bank deposits.\\nCues From Wednesday’s Trading: \\nNegative pressure on the U.S. Dollar and U.S. Treasury yields continued on Thursday, after the Bank of England hiked interest rates by 25bps to 4.25% and the ECB signaled ongoing increases in interest rates.\\nExpectations on future U.S. interest rates eased further, with money markets now assigning a greater probability to a hold in May (60%), while three 25-basis-point cuts are now fully priced until December 2023.\\nDovish rate expectations by the market were sufficient to send all U.S. major stock indices higher during the session.\\nSee Also: Best High-Volume Penny Stocks\\nThe S&P 500 index briefly reclaimed 4,000 points, before marginally retracing to 3,990, advancing 1.45% on the day.\\nThe Nasdaq Composite rose above 11,900, gaining 2%, while the Dow Jones Industrial added 335 points rising 1%.\\xa0\\xa0\\n\\nU.S. Indices' Performance On Thursday\\n\\n\\nIndex\\nPerformance (+/-)\\n\\xa0\\nValue\\n\\n\\n\\n\\nNasdaq Composite\\n+2.1%\\n\\xa0\\n11,915.79\\n\\n\\nS&P 500 Index\\n+1.45%\\n\\xa0\\n3,993.65\\n\\n\\nDow Industrials\\n+1.00%\\n\\xa0\\n32,399.34\\n\\n\\n\\nAnalyst Color: \\nTighter credit standards can take the place of policy rate hikes, according to BofA US Economist\\xa0Michael Gapen.\\nBofA revised its forecast for the terminal policy rate to 5.0-5.25% in May, down from 5.25%-5.5% in June.\\nETF Movers Today\\nIn midday trading\\xa0on Thursday, the SPDR S&P 500 ETF Trust\\xa0(NYSE: SPY) rose 1.31% to $397.11\\xa0and the Invesco QQQ Trust\\xa0(NASDAQ: QQQ) soared 2% to $312.52, according to Benzinga Pro data.\\nEvery S&P 500 ...Full story available on Benzinga.com\",\n",
+ " 'keywords': ['News',\n",
+ " 'Earnings',\n",
+ " 'Penny Stocks',\n",
+ " 'Futures',\n",
+ " 'Previews',\n",
+ " 'Small Cap',\n",
+ " 'Top Stories',\n",
+ " 'Economics',\n",
+ " 'Federal Reserve',\n",
+ " 'Pre-Market Outlook',\n",
+ " 'Markets',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': 'FawxD9HgebmANNUtKcxsgpaPPVgYxcXKK4ynSzHkIs8',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': \"The Fed pivot is near, and yield curve inversion has likely peaked. That's usually bad news for stocks, this Fidelity strategist says.\",\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-03-23T11:49:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/the-fed-pivot-is-near-and-yield-curve-inversion-has-likely-peaked-thats-usually-bad-news-for-stocks-this-fidelity-strategist-says-eab59e6f',\n",
+ " 'tickers': ['FRC',\n",
+ " 'PACW',\n",
+ " 'SQ',\n",
+ " 'COIN',\n",
+ " 'REGN',\n",
+ " 'SAN',\n",
+ " 'GME',\n",
+ " 'TSLA',\n",
+ " 'AMC',\n",
+ " 'BBBY',\n",
+ " 'NVDA',\n",
+ " 'AAPL',\n",
+ " 'NIO',\n",
+ " 'AMZN'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/the-fed-pivot-is-near-and-yield-curve-inversion-has-likely-peaked-thats-usually-bad-news-for-stocks-this-fidelity-strategist-says-eab59e6f',\n",
+ " 'image_url': 'https://images.mktw.net/im-749436/social',\n",
+ " 'description': 'Jurrien Timmer, director of global macro at Fidelity Investments, looked at the intersection of yield-curve inversions and the stock market.'},\n",
+ " {'id': 'X0qIJg8D7j4ybi_A-eVNfSf-YfEGH52gp5p5pa3jbak',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'The Zacks Analyst Blog Highlights Tesla, Volkswagen, General Motors and Nissan',\n",
+ " 'author': 'Zacks Equity Research',\n",
+ " 'published_utc': '2023-03-23T10:59:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/2069467/the-zacks-analyst-blog-highlights-tesla-volkswagen-general-motors-and-nissan',\n",
+ " 'tickers': ['GM', 'TSLA'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/2069467/the-zacks-analyst-blog-highlights-tesla-volkswagen-general-motors-and-nissan',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/articles/main/e6/1979.jpg',\n",
+ " 'description': 'Tesla, Volkswagen, General Motors and Nissan are part of the Zacks top Analyst Blog.'},\n",
+ " {'id': '3AuoMLHxeF0pSHnY722nYugzsUrc_RlexfiVdImHvZA',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Tesla Analyst Says Buy The Dip Ahead Of Q1 Deliveries: 1 Reason He Expects Number To Beat Street View',\n",
+ " 'author': 'Shanthi Rexaline',\n",
+ " 'published_utc': '2023-03-23T10:00:56Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/23/03/31468996/tesla-analyst-says-buy-the-dip-ahead-of-q1-deliveries-1-reason-he-expects-number-to',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/31468996',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/03/23/tesla_stock_photo_by_camilo_concha_on_shutterstock.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Tesla\\xa0Inc. (NASDAQ: TSLA) shares retreated on Wednesday along with the broader market and an analyst flagged it as a buying opportunity.\\nWhat Happened: The Tesla dip that many investors wanted ahead of the first-quarter deliveries report has materialized, said Future Fund co-founder Gary Black. He noted that Treasury yields were plunging, which is good for equities.\\n“Hope folks who were waiting for the dip are buying,” Black said.\\nSee Also: Best Electric Vehicle Stocks\\nBlack expects Tesla’s first-quarter sales to beat the consensus estimate of 420,000 units, with China and the U.S. volume likely coming in at a record and Europe potentially finishing strong.\\nThe Tesla management said at the company’s March Investor Day that volume has responded to the price cuts, ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['Long Ideas',\n",
+ " 'News',\n",
+ " 'Analyst Color',\n",
+ " 'Top Stories',\n",
+ " 'Analyst Ratings',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': 'EtESLXme7uWt2W0X0_1U8GhUvB43AhZtTruHLHxNzyE',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'US Stocks Drop Sharply, Market Volatility Increases',\n",
+ " 'author': 'Lisa Levin',\n",
+ " 'published_utc': '2023-03-23T09:31:57Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/earnings/23/03/31469891/us-stocks-drop-sharply-market-volatility-increases',\n",
+ " 'tickers': ['AMZN', 'TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/31469891',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/03/23/image13.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'U.S. stocks dropped from near two-week highs on Wednesday following the Fed’s policy decision.\\nThe Federal Reserve increased interest rates by a quarter of a percentage point to 4.75%-5% at its March FOMC meeting.\\xa0During the press conference, Fed Chair Jerome Powell said the FOMC considered a pause at this meeting but the hike was supported by a strong consensus.\\nAll the major ...',\n",
+ " 'keywords': ['News',\n",
+ " 'Earnings',\n",
+ " 'Pre-Market Outlook',\n",
+ " 'Markets',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': 'BnSceTdOyHwLSOis7yyehg2nHesKETC1U48x6PkekcI',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': '2 Stocks That Could Join Apple and Microsoft in the $2 Trillion Club',\n",
+ " 'author': 'newsfeedback@fool.com (Anthony Di Pizio)',\n",
+ " 'published_utc': '2023-03-23T09:05:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/03/23/stocks-join-apple-microsoft-in-2-trillion-club/',\n",
+ " 'tickers': ['GOOGL', 'AAPL', 'MSFT', 'TSLA', 'GOOG'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/725429/a-black-tesla-car-driving-on-an-open-road-in-the-snow.jpg',\n",
+ " 'description': 'Technologies of the future could drive two companies into the most exclusive club in the stock market.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'uPxXCzvRDlnIByy1o43WcyzAiL-w3yhAxS5IUjN8RTg',\n",
+ " 'publisher': {'name': 'Seeking Alpha',\n",
+ " 'homepage_url': 'https://seekingalpha.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/seekingalpha.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/seekingalpha.ico'},\n",
+ " 'title': 'The Fed Seems Eerily Worried About The U.S. Economy',\n",
+ " 'author': 'Logan Kane',\n",
+ " 'published_utc': '2023-03-23T00:56:25Z',\n",
+ " 'article_url': 'https://seekingalpha.com/article/4589441-fed-seems-worried-about-economy',\n",
+ " 'tickers': ['AAPL',\n",
+ " 'AMZN',\n",
+ " 'CS',\n",
+ " 'FRC',\n",
+ " 'MSFT',\n",
+ " 'NVDA',\n",
+ " 'PACW',\n",
+ " 'SBNY',\n",
+ " 'SIVB',\n",
+ " 'SPY',\n",
+ " 'TIP',\n",
+ " 'TSLA',\n",
+ " 'ACTV',\n",
+ " 'AFMC',\n",
+ " 'AFSM',\n",
+ " 'ARKK',\n",
+ " 'AVUV',\n",
+ " 'BAPR',\n",
+ " 'IVOO',\n",
+ " 'IVOV',\n",
+ " 'IVV',\n",
+ " 'IVW',\n",
+ " 'IWC',\n",
+ " 'IWM',\n",
+ " 'IWN',\n",
+ " 'IWO',\n",
+ " 'IWP',\n",
+ " 'IWR',\n",
+ " 'IWS',\n",
+ " 'IYY',\n",
+ " 'QQQ',\n",
+ " 'SPLV',\n",
+ " 'SPMD',\n",
+ " 'SPMO',\n",
+ " 'SPMV',\n",
+ " 'SPSM',\n",
+ " 'SPUS',\n",
+ " 'SPUU',\n",
+ " 'SPVM',\n",
+ " 'SPVU',\n",
+ " 'SPXE',\n",
+ " 'SPXL',\n",
+ " 'SPXN',\n",
+ " 'SPXS',\n",
+ " 'SPXT',\n",
+ " 'SPXU',\n",
+ " 'SPXV',\n",
+ " 'SPYD',\n",
+ " 'SPYG',\n",
+ " 'SPYV',\n",
+ " 'SPYX',\n",
+ " 'SQEW',\n",
+ " 'SQLV',\n",
+ " 'SSLY',\n",
+ " 'SSO',\n",
+ " 'SSPY',\n",
+ " 'STLV',\n",
+ " 'SVAL',\n",
+ " 'SYLD',\n",
+ " 'TMDV',\n",
+ " 'TPHD',\n",
+ " 'TPLC',\n",
+ " 'TPSC',\n",
+ " 'UAUG',\n",
+ " 'UJAN',\n",
+ " 'UMAR',\n",
+ " 'UMAY',\n",
+ " 'UOCT',\n",
+ " 'UPRO',\n",
+ " 'USEQ',\n",
+ " 'USLB',\n",
+ " 'USMC',\n",
+ " 'USMF',\n",
+ " 'USVM'],\n",
+ " 'image_url': 'https://media.gettyimages.com/id/dv1620005/photo/grizzly-bear-feeds-on-a-jumping-salmon-alaska.jpg?b=1&s=170667a&w=0&k=20&c=vxGsrZBulD-9KJykF7MgUZs0tvSjcCti8Omx3izhEQs=',\n",
+ " 'description': 'As expected, the FOMC raised rates by 0.25% at their meeting this week. Click here to find out what this means for your portfolio.'},\n",
+ " {'id': 'gr_bLuzyfpHTrEK3-HNXaT5ZuEEa5fLl4EBqaJeR_a4',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'onsemi (ON) Expands Portfolio With New Simulation Tools',\n",
+ " 'author': 'Zacks Equity Research',\n",
+ " 'published_utc': '2023-03-22T17:31:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/2069251/onsemi-on-expands-portfolio-with-new-simulation-tools',\n",
+ " 'tickers': ['TSLA', 'ANET', 'ON', 'ABNB'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/2069251/onsemi-on-expands-portfolio-with-new-simulation-tools',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/articles/main/aa/2943.jpg',\n",
+ " 'description': 'onsemi (ON) is expanding its product portfolio with the launch of the online Elite Power Simulator and Self-Service PLECS Model Generator.'},\n",
+ " {'id': 'Qw7KaUudwsk8dvYU1lakkKKiUQinxI7qCjolk-4EZYE',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Biden just made a move to protect 900-year-old Joshua trees and a pristine coral reef',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-03-22T17:25:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/biden-just-made-a-move-to-protect-900-year-old-trees-and-a-pristine-coral-reef-658fa13e',\n",
+ " 'tickers': ['COP', 'TSLA', 'GM', 'ICLN'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/biden-just-made-a-move-to-protect-900-year-old-trees-and-a-pristine-coral-reef-658fa13e',\n",
+ " 'image_url': 'https://images.mktw.net/im-748040/social',\n",
+ " 'description': 'Biden establishes national monuments in Nevada and Texas, and wants a marine sanctuary in U.S. waters near the Pacific Remote Islands hurt by climate change.'},\n",
+ " {'id': '-xEeqIgl9xoIG1jR1k2gc1oxWb3CFETFffPLhwWHE7Q',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'GM vs. TSLA: Which Stock Is the Better Value Option?',\n",
+ " 'author': 'Zacks Equity Research',\n",
+ " 'published_utc': '2023-03-22T15:40:13Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/2069143/gm-vs-tsla-which-stock-is-the-better-value-option',\n",
+ " 'tickers': ['GM', 'TSLA'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/2069143/gm-vs-tsla-which-stock-is-the-better-value-option',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/default_article_images/default17.jpg',\n",
+ " 'description': 'GM vs. TSLA: Which Stock Is the Better Value Option?'},\n",
+ " {'id': '_-s8r74wYgTGhVA-GjhmyamUctMtOYRU4JvgRHcdogI',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'All Eyes on Fed Decision: Key Stocks to Watch',\n",
+ " 'author': 'Bryan Hayes',\n",
+ " 'published_utc': '2023-03-22T15:26:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/commentary/2069121/all-eyes-on-fed-decision-key-stocks-to-watch',\n",
+ " 'tickers': ['NVDA', 'GME', 'TSLA'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/commentary/2069121/all-eyes-on-fed-decision-key-stocks-to-watch',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/articles/main/1f/370.jpg',\n",
+ " 'description': 'Wall Street isn???t entirely ruling out a Fed pause, but concerns are rampant over an early hiatus given that inflation still remains high.'},\n",
+ " {'id': 'LW4Ut3LgaGsfz0p37Bdcg_xGV_Dk4wZ-Z9jKoBDMYTs',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'Company News for Mar 22, 2023',\n",
+ " 'author': 'Zacks Equity Research',\n",
+ " 'published_utc': '2023-03-22T13:47:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/2068999/company-news-for-mar-22-2023',\n",
+ " 'tickers': ['COP', 'AEP', 'TSLA', 'PACW'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/2068999/company-news-for-mar-22-2023',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/articles/main/67/2662.jpg',\n",
+ " 'description': 'Companies in The News Are: TSLA, PACW, COP, AEP'},\n",
+ " {'id': 'n85AOYHk_p79F4vcR_519qrPv8Z8n44-8ZYtAwpKbPo',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': \"Race for Affordable EVs Begins: Here's How the Competition Looks\",\n",
+ " 'author': 'Rimmi Singhi',\n",
+ " 'published_utc': '2023-03-22T13:02:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/2069086/race-for-affordable-evs-begins-heres-how-the-competition-looks',\n",
+ " 'tickers': ['GM', 'TSLA'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/2069086/race-for-affordable-evs-begins-heres-how-the-competition-looks',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/articles/main/8c/2878.jpg',\n",
+ " 'description': 'While Tesla (TSLA) fails to keep up its promise to launch a $25K EV by this year, VWAGY makes headlines as it unveils its ID.2all, the base price of which is EUR 25K.'},\n",
+ " {'id': 'Wkzc_aYIugq1wtqFzajQB7pvbGFTjGyRwinfJJwbJmw',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'Investors Heavily Search Tesla, Inc. (TSLA): Here is What You Need to Know',\n",
+ " 'author': 'Zacks Equity Research',\n",
+ " 'published_utc': '2023-03-22T13:00:14Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/2068960/investors-heavily-search-tesla-inc-tsla-here-is-what-you-need-to-know',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/2068960/investors-heavily-search-tesla-inc-tsla-here-is-what-you-need-to-know',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/default_article_images/default18.jpg',\n",
+ " 'description': 'Recently, Zacks.com users have been paying close attention to Tesla (TSLA). This makes it worthwhile to examine what the stock has in store.'},\n",
+ " {'id': 'uKKsm-DxaGUd60iwVx3ROKDAdQzg-tpJVEsO9g6L-eE',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': \"Here's one for the battered bulls: the second-largest sector in the S&P 500 is stirring to life, says this strategist.\",\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-03-22T12:45:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/heres-one-for-the-battered-bulls-the-second-largest-sector-in-the-s-p-500-is-stirring-to-life-says-this-strategist-5e179744',\n",
+ " 'tickers': ['DJIA',\n",
+ " 'RYH',\n",
+ " 'XLV',\n",
+ " 'IHI',\n",
+ " 'IDXX',\n",
+ " 'BSX',\n",
+ " 'TMDX',\n",
+ " 'OMCL',\n",
+ " 'SWAV',\n",
+ " 'TFX',\n",
+ " 'BRKR',\n",
+ " 'TNDM',\n",
+ " 'IBB',\n",
+ " 'REGN',\n",
+ " 'VRTX',\n",
+ " 'AMGN',\n",
+ " 'MYGN',\n",
+ " 'COMP',\n",
+ " 'FRC',\n",
+ " 'GME',\n",
+ " 'AMC',\n",
+ " 'APE',\n",
+ " 'BBBY',\n",
+ " 'NKE',\n",
+ " 'TSLA',\n",
+ " 'NIO',\n",
+ " 'AAPL',\n",
+ " 'NVDA',\n",
+ " 'AMZN'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/heres-one-for-the-battered-bulls-the-second-largest-sector-in-the-s-p-500-is-stirring-to-life-says-this-strategist-5e179744',\n",
+ " 'image_url': 'https://images.mktw.net/im-748531/social',\n",
+ " 'description': \"Everyone is watching the banks, but what about healthcare. It's breaking out, says this strategist.\"},\n",
+ " {'id': '4uF3LlDLoaRG_9Rt-WZudRLJndqKDMMBC9YOfQD6C_I',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': '2 Ways Disruptors Can Make You Rich',\n",
+ " 'author': 'newsfeedback@fool.com (Rick Munarriz)',\n",
+ " 'published_utc': '2023-03-22T11:30:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/03/22/2-ways-disruptors-can-make-you-rich/',\n",
+ " 'tickers': ['TSLA', 'NFLX', 'PEP', 'CAR'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/725440/gettyimages-576603370.jpg',\n",
+ " 'description': 'Tesla, Netflix, and SodaStream took different paths to be disruptors over the past decade.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'weVLKaeA_JwXSkt0kKgl_Vbr9-M8xFtnLjo7QZnWT8E',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Opinion: This Will Be the Biggest EV Stock in 2030',\n",
+ " 'author': 'newsfeedback@fool.com (Keithen Drury)',\n",
+ " 'published_utc': '2023-03-22T11:15:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/03/22/opinion-this-will-be-the-biggest-ev-stock-in-2030/',\n",
+ " 'tickers': ['TSLA', 'F', 'GM'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/722616/person-charging-their-electric-vehicle-with-the-sun-setting-in-the-background.jpg',\n",
+ " 'description': \"The biggest EV maker isn't necessarily the best investment.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'uD2wDD1xloupz7YPaTMSYfTUA6L09STpZPuM-1DCe6Q',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Technology stocks like Microsoft and Apple are outperforming the S&P 500 by the widest margin in years',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-03-22T10:46:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/technology-stocks-like-microsoft-and-apple-are-outperforming-the-s-p-500-by-the-widest-margin-in-years-a8d384b7',\n",
+ " 'tickers': ['MSFT',\n",
+ " 'AAPL',\n",
+ " 'AMZN',\n",
+ " 'NFLX',\n",
+ " 'META',\n",
+ " 'GOOG',\n",
+ " 'GOOGL',\n",
+ " 'TSLA',\n",
+ " 'NVDA',\n",
+ " 'COMP',\n",
+ " 'DJIA',\n",
+ " 'BA',\n",
+ " 'MMM'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/technology-stocks-like-microsoft-and-apple-are-outperforming-the-s-p-500-by-the-widest-margin-in-years-a8d384b7',\n",
+ " 'image_url': 'https://images.mktw.net/im-738501/social',\n",
+ " 'description': 'Megacap technology stocks like Amazon.com Inc., Microsoft Corp. and Apple Inc. have outperformed the broader market by the widest margin in years following the collapse of Silicon Valley Bank and two other U.S. lenders.'},\n",
+ " {'id': 'm5nMffzKZ7DcZUwDh9tmwtDd-Tx--qnTk0N5u3gfRM0',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Tesla Is Axing Silicon Carbide Chips... or Is It? Aehr Test Systems Provides Some Clarity',\n",
+ " 'author': 'newsfeedback@fool.com (Nicholas Rossolillo)',\n",
+ " 'published_utc': '2023-03-22T10:31:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/03/22/tesla-is-axing-silicon-carbide-chips-or-is-it-aehr/',\n",
+ " 'tickers': ['AEHR', 'TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/725223/electric-vehicles-evs-charging-station-battery-technology.jpg',\n",
+ " 'description': \"Tesla's new powertrain system is more efficient, but that isn't bad news for silicon carbide semiconductor companies.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': '0zMajAwlUpxsT-35CjhSdD8XwLHKIt0A3QXMAOZJWVQ',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'S&P 500 Records Gains, Market Volatility Drops Further',\n",
+ " 'author': 'Lisa Levin',\n",
+ " 'published_utc': '2023-03-22T10:13:56Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/earnings/23/03/31452523/s-p-500-records-gains-market-volatility-drops-further',\n",
+ " 'tickers': ['AMZN', 'TSLA', 'FRC'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/31452523',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/03/22/image41.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'The S&P 500 settled higher on Tuesday ahead of the Fed’s policy decision.\\nShares of First Republic Bank (NYSE: FRC) jumped more than 29% on Tuesday following reports suggesting JP Morgan Chase & Co CEO Jamie Dimon is leading discussions to come up with a new rescue plan for the bank. Treasury Secretary Janet Yellen also said the government is prepared to take more action to aid banks.\\nThe Federal Reserve is scheduled to ...',\n",
+ " 'keywords': ['News',\n",
+ " 'Earnings',\n",
+ " 'Pre-Market Outlook',\n",
+ " 'Markets',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': 'u2OCAuhM88A-a66hMwfJlXoIlVzlO5gekKjHHnp90Dk',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Tesla Stock: Headed to $220?',\n",
+ " 'author': 'newsfeedback@fool.com (Daniel Sparks)',\n",
+ " 'published_utc': '2023-03-22T09:06:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/03/22/tesla-stock-headed-to-220/',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/725426/tesla-stock-tsla.jpg',\n",
+ " 'description': \"Despite the stock's enormous run-up already this year, one analyst thinks shares can climb significantly higher.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'r1b6edKxvwbgpa6g8hHqdXJcK1KWHc_dxvMaNZthrSM',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Power To The People: Elon Musk Says Tesla Powerwall Lets You Go Off-Grid For Most Of The Year',\n",
+ " 'author': 'Aveek Bhowmik',\n",
+ " 'published_utc': '2023-03-22T08:19:32Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/23/03/31451205/power-to-the-people-elon-musk-says-tesla-powerwall-lets-you-go-off-grid-for-most-of-the-year',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/31451205',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/03/22/musk_and_tesla_photo_by_kovop58_on_shutterstock.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Elon Musk says Tesla Inc.’s (NASDAQ: TSLA) Powerwall can help homes during power cuts, even in “high altitudes.”\\nWhat Happened: Tesla, apart from being the leader in electric vehicles, also boasts a solar business — Powerwall — that offers solar panels and roofs to its customers.\\nMusk recently tweeted that the Tesla Powerwall would allow a home to function normally even when there is a power outage. With sufficient solar power, you can go off-grid for most of the year in high latitudes and all year in ...',\n",
+ " 'keywords': ['News', 'Tech']},\n",
+ " {'id': 'd1JV0DMdFMpjtnoAzVXWjp2I7IAPxAFBA6rJHP4SWi4',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'The 2023 Porsche Taycan: an electrifying drive in more ways than one',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-03-22T08:00:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/the-2023-porsche-taycan-an-electrifying-drive-in-more-ways-than-one-32d090af',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'image_url': 'https://images.mktw.net/im-745826/social',\n",
+ " 'description': 'It may be electric, but the new Taycan is a true Porsche—with that special combination of engineering expertise, driving joy, technology, and quality materials.'},\n",
+ " {'id': 'ukgiu41rx7pW8uHiXidYqp2dUk-ZPwXeYm7DB795_dw',\n",
+ " 'publisher': {'name': 'Investing.com',\n",
+ " 'homepage_url': 'https://www.investing.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/investing.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/investing.ico'},\n",
+ " 'title': \"Tesla's Strong Quarter in China and Credit Upgrade Fuel Bullish Sentiment\",\n",
+ " 'author': 'MarketBeat.com',\n",
+ " 'published_utc': '2023-03-22T06:15:00Z',\n",
+ " 'article_url': 'https://www.investing.com/analysis/teslas-strong-quarter-in-china-and-credit-upgrade-fuel-bullish-sentiment-200636484',\n",
+ " 'tickers': ['TSLA', 'TM'],\n",
+ " 'amp_url': 'https://m.investing.com/analysis/teslas-strong-quarter-in-china-and-credit-upgrade-fuel-bullish-sentiment-200636484?ampMode=1',\n",
+ " 'image_url': 'https://i-invdn-com.investing.com/redesign/images/seo/investingcom_analysis_og.jpg'},\n",
+ " {'id': 'CR8Ts0NeRHN5RUrH7tWm8dj_fjW9A9Mb6aPMsjWzfT4',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Tesla and Coinbase Just Gave Shareholders Something to Smile About',\n",
+ " 'author': 'newsfeedback@fool.com (Dan Caplinger)',\n",
+ " 'published_utc': '2023-03-22T01:47:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/03/21/tesla-and-coinbase-just-gave-shareholders-somethin/',\n",
+ " 'tickers': ['TSLA', 'COIN'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/725483/tsla-red-mountain.jpg',\n",
+ " 'description': 'It was a good day for the stock market, but these two companies in particular saw some big gains.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'HohatGuTu4D34hMjHrCs1Ex_NDE4558XE_g-a9XnnLs',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Rumored Details Of Tesla Project Highland: Revamp Of Model 3 With New Interior, Autopilot Hardware',\n",
+ " 'author': 'Benzinga EV Insights',\n",
+ " 'published_utc': '2023-03-21T23:10:57Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/23/03/31445843/rumored-details-of-tesla-project-highland-revamp-of-model-3-with-new-interior-autopilot-hardware',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/31445843',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/03/21/0x0-model3_02.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Tesla\\xa0Inc\\xa0(NASDAQ: TSLA) is allegedly working on a major revamp of its popular Model 3, known as Project Highland, which will bring changes to the best-selling electric vehicle since its 2017 launch.\\nWhat Happened: The website \"Not A Tesla App\"\\xa0shared leaked information from a trusted insider that revealed\\xa0the Model 3 Highland will have multiple updates both inside and out.\\nRedesigned headlights will be\\xa0a different shape and Tesla will continue to offer matrix headlights, though it is unclear ...',\n",
+ " 'keywords': ['News', 'Tech']},\n",
+ " {'id': 'hu4c7eesvdH_ryGCO74rE5zXUxZullSfF2iv4AYH3gk',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Tesla Engineers Unsuccessfully Tried To Convince Elon Musk To Keep Radar In Self-Driving Cars',\n",
+ " 'author': 'Benzinga EV Insights',\n",
+ " 'published_utc': '2023-03-21T21:08:44Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/23/03/31444150/tesla-engineers-unsuccessfully-tried-to-convince-elon-musk-to-keep-radar-in-self-driving-cars',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/31444150',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/03/21/0x0-model3_01.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Tesla Inc\\xa0(NASDAQ: TSLA) CEO Elon Musk made\\xa0a bold move in 2021 when he\\xa0decided to remove radar sensors from the company\\'s vehicles.\\nThis decision was part of Tesla\\'s shift towards a \"Tesla Vision\" approach, which relies solely on cameras for self-driving capabilities.\\nWhat Happened: While the automaker maintained that the camera-only method is the best way to achieve autonomous driving, recent revelations have brought to ...',\n",
+ " 'keywords': ['News', 'Tech']},\n",
+ " {'id': 'xYfNlQVQzm9JxO_tM0uD3Sun77yt84ENfoSkhMs-rlY',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Dow ends with gain of over 300 points as regional banks rally ahead of Fed rate decision',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-03-21T19:27:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/stock-futures-firm-as-bank-tensions-ease-and-traders-eye-fed-edc99f9c',\n",
+ " 'tickers': ['DJIA',\n",
+ " 'COMP',\n",
+ " 'CS',\n",
+ " 'UBS',\n",
+ " 'FRC',\n",
+ " 'KRE',\n",
+ " 'AMZN',\n",
+ " 'APA',\n",
+ " 'TSLA',\n",
+ " 'COIN',\n",
+ " 'GME'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/stock-futures-firm-as-bank-tensions-ease-and-traders-eye-fed-edc99f9c',\n",
+ " 'image_url': 'https://images.mktw.net/im-748021/social',\n",
+ " 'description': 'U.S. stocks finished sharply higher on Tuesday as anxiety about the banking sector receded after U.S. Treasury Secretary Janet Yellen’s reassurances on containing the banking crisis buoyed market sentiment.'},\n",
+ " {'id': 'LgoUI5fGaSXLDVqsrC0X9qMWoXytClTroOqL1pBnCtw',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': \"First Republic shares pop, Tesla's stock boosted by credit rating upgrade, while First Majestic shares slide as Nevada mine activities halted\",\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-03-21T17:43:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/first-republic-shares-pop-metas-stock-boosted-by-upgrade-while-first-majestic-shares-slide-as-nevada-mine-activities-halted-88e4e447',\n",
+ " 'tickers': ['FRC',\n",
+ " 'PACW',\n",
+ " 'WAL',\n",
+ " 'TSLA',\n",
+ " 'NYCB',\n",
+ " 'META',\n",
+ " 'USX',\n",
+ " 'KNX',\n",
+ " 'NKE',\n",
+ " 'HOG',\n",
+ " 'FLT',\n",
+ " 'BB',\n",
+ " 'AG',\n",
+ " 'LLAP'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/first-republic-shares-pop-metas-stock-boosted-by-upgrade-while-first-majestic-shares-slide-as-nevada-mine-activities-halted-88e4e447',\n",
+ " 'image_url': 'https://images.mktw.net/im-747806/social',\n",
+ " 'description': 'Here are some of the biggest movers on Tuesday, as the Federal Reserve begins deliberations on a key interest rate decision with the banking system wobbling.'},\n",
+ " {'id': 'glJyM2elfd5QEraMFIqqNMmhxla06R12pn7EdR-IqNg',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Why Lucid Stock Is Gaining Ground Today',\n",
+ " 'author': 'newsfeedback@fool.com (Chris Neiger)',\n",
+ " 'published_utc': '2023-03-21T16:58:25Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/03/21/why-lucid-stock-is-gaining-ground-today/',\n",
+ " 'tickers': ['LCID', 'TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/725407/lucid-air-exterior-04.jpg',\n",
+ " 'description': 'Positive news about another EV maker and hopes that that Fed will slow its interest rate increases are giving Lucid a boost.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'tOwhBX6E3138fPkaStxSIdV242RiDH886KvkdPzRpPU',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Sigma Lithium Short Seller Says Forget About Tesla Buyout, Projects 50%-75% Downside',\n",
+ " 'author': 'Piero Cingari',\n",
+ " 'published_utc': '2023-03-21T16:11:07Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/23/03/31441653/sigma-lithium-short-seller-says-forget-about-tesla-buyout-projects-50-75-downside',\n",
+ " 'tickers': ['ALB', 'RIO', 'TSLA', 'SGML'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/31441653',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/03/21/shutterstock_1833635461.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Grizzly Research LLC has issued a short report on Sigma Lithium Corp (NASDAQ: SGML), estimating a 50%-75% drop in the share price and shooting down\\xa0acquisition rumors.\\nThe Short Report:\\xa0The company\\'s share price rose by more than 180% in the last year, driven by rumors of acquisition offers made before production started.\\nAmong these, Tesla (NASDAQ: TSLA)\\'s\\xa0interest in acquiring SGML, as reported by Bloomberg in February, has lately sparked the greatest excitement among investors.\\nGrizzly Research said\\xa0Elon Musk\\'s possible interest in SGML is unlikely on the grounds of inadequate technical innovation, alleging that SGML has nothing to do with \"greentech\" and \"green mining.\"\\xa0\\n\"The company has spent essentially nothing on R&D in its entire existence\" and \"lacks the leadership and technical expertise necessary to ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['Analyst Color',\n",
+ " 'Penny Stocks',\n",
+ " 'Short Sellers',\n",
+ " 'Commodities',\n",
+ " 'Top Stories',\n",
+ " 'Markets',\n",
+ " 'Analyst Ratings',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': 'hfZUs49QDtNY8WqD67V2pvlckKq_U4GKuS6UWy6cSaU',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Why Tesla Stock Stepped on the Accelerator Tuesday Morning',\n",
+ " 'author': 'newsfeedback@fool.com (Danny Vena)',\n",
+ " 'published_utc': '2023-03-21T15:32:39Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/03/21/why-tesla-stock-stepped-on-the-gas-tuesday-morning/',\n",
+ " 'tickers': ['TSLA', 'MCO', 'SPGI'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/725392/tesla-model-y_07.jpg',\n",
+ " 'description': 'Back-to-back bits of good news sent the stock racing higher.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'rK8zQ1ghexw6GuXkTZYWsi8VmPfsTSZDQQcjRE6Np9o',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': \"Rivian Could Be on the Brink of a Huge Rally: Why It's a Buy Now\",\n",
+ " 'author': 'newsfeedback@fool.com (James Brumley)',\n",
+ " 'published_utc': '2023-03-21T14:36:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/03/21/rivian-could-be-on-the-brink-of-a-huge-rally-why-i/',\n",
+ " 'tickers': ['RIVN', 'TSLA', 'NIO'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/725080/rivian-manufacturing-normal-05.jpg',\n",
+ " 'description': \"While still losing loads of money, this year's planned production scale-up will solve much of that problem.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'GcYKhqZmWff_DZ_V-vT7COadfBOzbDNUtsibuFuLcUk',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Moderna Wants $130 Per COVID-19 Vaccine Dose, US Health Authorities Warn Of Incurable Deadly Fungal Infection, Elon Musk Wants Interest Rate Cut: Today's Top Stories\",\n",
+ " 'author': 'Vandana Singh',\n",
+ " 'published_utc': '2023-03-21T13:25:32Z',\n",
+ " 'article_url': 'https://www.benzinga.com/general/biotech/23/03/31438522/moderna-wants-130-per-covid-19-vaccine-dose-us-health-authorities-warn-of-incurable-deadly-fungal',\n",
+ " 'tickers': ['PDD', 'SPY', 'GOOG', 'TSLA', 'FLT', 'GOOGL', 'RACE', 'MRNA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/31438522',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/03/21/elon_musk_-_the_summit_2013.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Reuters\\nModerna Wants To Charge About $130 Per COVID-19 Vaccine Dose\\n\\nModerna Inc\\xa0(NASDAQ: MRNA) expects to charge\\xa0$130 per dose\\xa0for its COVID-19 vaccine as purchases move to the private sector from the government.\\n\"There are different customers negotiating different prices right now, which is why it\\'s a little bit complicated,\" the company\\'s president Stephen Hoge said in an interview ahead of a Congressional hearing run by Democratic U.S. Senator Bernie Sanders on Moderna\\'s pricing plans.\\n\\nEU Court Says Mercedes Must Pay Damages In Diesel Lawsuit\\n\\nThe European Court of Justice (ECJ) has ruled that\\xa0Mercedes Benz Group\\xa0(OTC: MBGYY) should pay compensation for unauthorized shutoff devices in diesel cars if the buyer has been damaged.\\nThe case was brought to a court in Ravensburg, Germany, by the purchaser of a used Mercedes whose exhaust gas recirculation system operated within a temperature range but reduced recirculation in lower temperatures, leading to raised nitrogen oxide emissions.\\nThe German court had asked ECJ if the purchaser had a right to compensation under EU law.\\n\\n\\xa0\\nBloomberg\\nFerrari Italian Subsidiary Hit By Ransomware Comprising Client Data; Taps Cybersecurity Expert To Investigate\\n\\nFerrari NV\\'s\\xa0(NYSE: RACE) Italian subsidiary\\xa0Ferrari SpA\\xa0suffered a ransomware attack. Ferrari informed its clients and customers of the potential data exposure and the nature of the incident.\\nFerrari immediately started an investigation by tapping a leading global third-party cybersecurity firm. Ferrari also informed the relevant authorities.\\n\"Certain data relating to our clients were exposed, including names, addresses, email addresses, and telephone numbers,\" CEO Benedetto Vigna stated on Monday.\\n\\nBig Blow For Pinduoduo As Google Discontinues Shopping App After Finding Malware\\n\\nAfter discovering malware in unsanctioned software versions,\\xa0Alphabet Inc\\'s Google\\xa0has suspended\\xa0PDD Holdings Inc\\'s\\xa0(NASDAQ: PDD) main Chinese shopping app,\\xa0Pinduoduo.\\nOn Tuesday, Google said it is analyzing the matter and suspended downloads of the Play Store version of Pinduoduo as a security precaution.\\nGoogle warned users Tuesday to uninstall off-store versions of Pinduoduo.',\n",
+ " 'keywords': ['News',\n",
+ " 'Biotech',\n",
+ " 'Health Care',\n",
+ " 'Top Stories',\n",
+ " 'Markets',\n",
+ " 'Tech',\n",
+ " 'Media',\n",
+ " 'General']},\n",
+ " {'id': 'o8Gfu_PzkvJKdCs74MfUMct9FmwxX9kANx5Os5KJ6HE',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'The Zacks Analyst Blog Highlights Alphabet, Tesla, Amgen, FedEx and Capital One Financial',\n",
+ " 'author': 'Zacks Equity Research',\n",
+ " 'published_utc': '2023-03-21T11:43:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/2068404/the-zacks-analyst-blog-highlights-alphabet-tesla-amgen-fedex-and-capital-one-financial',\n",
+ " 'tickers': ['AMGN', 'COF', 'FDX', 'TSLA', 'GOOGL'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/2068404/the-zacks-analyst-blog-highlights-alphabet-tesla-amgen-fedex-and-capital-one-financial',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/articles/main/b9/441.jpg',\n",
+ " 'description': 'Alphabet, Tesla, Amgen, FedEx and Capital One Financial are part of the Zacks top Analyst Blog.'},\n",
+ " {'id': 'b3xXsfrU60GOrBmaf5savAsHmddhJsE3TKKMmW9SaYk',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Elon Musk says Fed should cut interest rates by half-point after Bill Ackman asks for pause',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-03-21T11:24:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/elon-musk-says-fed-should-cut-interest-rates-by-half-point-after-bill-ackman-asks-for-pause-57dbe76f',\n",
+ " 'tickers': ['TSLA',\n",
+ " 'DJIA',\n",
+ " 'FRC',\n",
+ " 'UBS',\n",
+ " 'CS',\n",
+ " 'META',\n",
+ " 'NKE',\n",
+ " 'NVDA',\n",
+ " 'MSFT',\n",
+ " 'GME',\n",
+ " 'BBBY',\n",
+ " 'AMC',\n",
+ " 'NIO',\n",
+ " 'AMZN',\n",
+ " 'APE'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/elon-musk-says-fed-should-cut-interest-rates-by-half-point-after-bill-ackman-asks-for-pause-57dbe76f',\n",
+ " 'image_url': 'https://images.mktw.net/im-747790/social',\n",
+ " 'description': 'How exactly should the Federal Reserve stop a banking crisis while trying to douse inflation at the same time? Bill Ackman and Elon Musk weigh in.'},\n",
+ " {'id': '5yKVNGl_R8Yby81k-oEiltnKcYnw5U3vtEXr3vfZUfo',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Resilient US Stocks Could Push Higher Amid Expectations Of Fed Relenting: 'FOMC Statement…Big Deal,' Says Analyst\",\n",
+ " 'author': 'Shanthi Rexaline',\n",
+ " 'published_utc': '2023-03-21T10:47:17Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/earnings/23/03/31433432/resilient-us-stocks-could-push-higher-amid-expectations-of-fed-relenting-fomc-statement-big-deal-sa',\n",
+ " 'tickers': ['META',\n",
+ " 'MTTR',\n",
+ " 'SPY',\n",
+ " 'CSIQ',\n",
+ " 'GOOG',\n",
+ " 'CS',\n",
+ " 'FL',\n",
+ " 'GME',\n",
+ " 'JPM',\n",
+ " 'NKE',\n",
+ " 'UBS',\n",
+ " 'TSLA',\n",
+ " 'FRC',\n",
+ " 'QQQ',\n",
+ " 'GOOGL',\n",
+ " 'TME'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/31433432',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/03/21/shutterstock_1151323265.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': \"The resilient market’s resolve will likely be put to test, as traders look ahead to Wednesday’s Fed decision with cautious optimism. Trading could be characterized by listlessness amid the ongoing news flow about the troubled banking sector.\\nCues From Monday’s Trading: \\nStocks ended Monday’s session higher, as coordinated central bank actions and UBS Group\\xa0Inc. (NYSE: UBS) lapping up Credit Suisse AG (NYSE: CS) infused optimism into the market.\\nSee Also: How To Trade Futures\\nThe major averages started the day mixed, with the Dow Industrials, an underperformer in recent sessions,\\xa0and the S&P 500 Index, opening higher, while the Nasdaq Composite was lower at the open. The former two managed to hold above the unchanged line throughout the session, although amid some volatility. The tech-heavy Nasdaq Composite was seen flitting in and out of the unchanged lien before moving decisively higher in the afternoon session.\\nEnergy stocks led the rebound, while technology, real estate, material, consumer staple, financial, healthcare and IT services stocks also found notable buying interest.\\n\\nU.S. Indices' Performance On Monday\\n\\n\\nIndex\\nPerformance (+/-)\\n\\xa0\\nValue\\n\\n\\n\\n\\nNasdaq Composite\\n+0.39%\\n\\xa0\\n11,675.54\\n\\n\\nS&P 500 Index\\n+0.89%\\n\\xa0\\n3,951.57\\n\\n\\nDow Industrials\\n+1.20%\\n\\xa0\\n32,244.58\\n\\n\\n\\nAnalyst Color: \\nA geopolitical development could be one of the biggest catalysts for the equity market, according to fund manager Louis Navellier. If China can get Russia to agree to a ceasefire, stocks could stage a big relief rally, he said.\\nNavellier also sees Wednesday’s Fed decision as another important catalyst. He expects the Fed to ...Full story available on Benzinga.com\",\n",
+ " 'keywords': ['News',\n",
+ " 'Earnings',\n",
+ " 'Penny Stocks',\n",
+ " 'Futures',\n",
+ " 'Previews',\n",
+ " 'Small Cap',\n",
+ " 'Top Stories',\n",
+ " 'Economics',\n",
+ " 'Federal Reserve',\n",
+ " 'Pre-Market Outlook',\n",
+ " 'Markets',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': 'UwGYAM8EDVCe2Oi_POc_p0JPu_ETtThBSty8VU6eDHw',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'S&P 500 Settles Higher Ahead Of Fed Decision, Market Volatility Decreases',\n",
+ " 'author': 'Lisa Levin',\n",
+ " 'published_utc': '2023-03-21T10:33:42Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/earnings/23/03/31433396/s-p-500-settles-higher-ahead-of-fed-decision-market-volatility-decreases',\n",
+ " 'tickers': ['AAPL', 'CS', 'UBS', 'TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/31433396',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/03/21/image23.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'The S&P 500 settled higher on Monday after UBS AG (NYSE: UBS) stepped into buying Credit Suisse Group Inc (NYSE: CS) for $3.2 billion.\\nUS-listed shares of Credit Suisse jumped 53%, while UBS Group shares added over 3% on Monday.\\nThe S&P Banking index gained 0.6%, while the KBW Regional Banking index climbed 1.5% on Monday after recording big losses last week.\\nThe Federal Reserve ...',\n",
+ " 'keywords': ['News',\n",
+ " 'Earnings',\n",
+ " 'Penny Stocks',\n",
+ " 'Pre-Market Outlook',\n",
+ " 'Markets',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': 'ZDpiK7jMhxbg30x4gdmMqqWr_FuArwAkS5r3Unavxrc',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': \"3 Supercharged Stock-Split Stocks Wall Street Billionaires Can't Stop Buying\",\n",
+ " 'author': 'newsfeedback@fool.com (Sean Williams)',\n",
+ " 'published_utc': '2023-03-21T09:06:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/03/21/3-stock-split-stocks-wall-street-billionaires-buy/',\n",
+ " 'tickers': ['TSLA', 'AMZN', 'PANW'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/725214/stock-certificate-investment-retire-heirloom-donate-capital-gains-tax-getty.jpg',\n",
+ " 'description': 'These ultra-popular companies, which completed stock splits last year, were top buys for billionaire investors during the fourth quarter.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'Du16cuDI4Un_1XvpAcpx-qF9sEQ_IWpzNsENmWlp5Zs',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': \"Cathie Wood's internet fund make its first Microsoft purchase\",\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-03-21T07:52:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/cathie-woods-internet-fund-make-its-first-microsoft-purchase-edafe7a',\n",
+ " 'tickers': ['MSFT', 'ARKW', 'EDR', 'COIN', 'SQ', 'ROKU', 'TSLA'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/cathie-woods-internet-fund-make-its-first-microsoft-purchase-edafe7a',\n",
+ " 'image_url': 'https://images.mktw.net/im-745473/social',\n",
+ " 'description': \"Cathie Wood on Monday bought a stock she doesn't trade very much -- Microsoft.\"},\n",
+ " {'id': 'YFHHPT4NQk9bCIswD9YOehvjx4Vy0ZPjvPmi27NucFM',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Tesla outpaced European competitors in February, growing EU market share',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-03-21T07:31:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/tesla-outpaced-european-competitors-in-february-growing-eu-market-share-260c5385',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/tesla-outpaced-european-competitors-in-february-growing-eu-market-share-260c5385',\n",
+ " 'image_url': 'https://images.mktw.net/im-276171/social',\n",
+ " 'description': 'The U.S. car maker accounted for 19.8% of the BEV--fully electric vehicle--market share in the EU, according to ACEA. In February last year, Tesla held an 18.5% share.'},\n",
+ " {'id': 'peuiHI76HGpykWexA1m_ctwK1Gx7uEht3ftZvMndYcE',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Tesla Price Cuts May Have Hurt Its Margin, Says Analyst: Why Investors Shouldn't Worry About It\",\n",
+ " 'author': 'Shanthi Rexaline',\n",
+ " 'published_utc': '2023-03-21T05:42:42Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/23/03/31431161/tesla-price-cuts-may-have-hurt-its-margin-says-analyst-why-investors-shouldnt-worry',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/31431161',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/03/21/tesla_photo_by_fellowneko_on_shutterstock.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Morgan Stanley, which recently dropped Tesla\\xa0Inc. (NASDAQ: TSLA) as its top U.S. automaker, continues to be bullish about the Elon Musk-led company.\\nThe Tesla Analyst: Adam Jonas has an Overweight rating and $220 price target for Tesla shares.\\nThe Tesla Thesis: The recent cuts in electric vehicles across industry participants are not a fad, but a trend, Jonas said in a note. Investors should expect further price cuts, with cost-leader Tesla setting the tone, he said.\\nSee Also: Everything You Need To Know About Tesla Stock\\nTesla’s price cuts, the analyst said, are a rational competitive behavior due to a host of factors that include:\\n\\nIts\\xa0scale and cost leadership in the global EV market.\\nIt\\xa0being theFull story available on Benzinga.com',\n",
+ " 'keywords': ['Long Ideas',\n",
+ " 'News',\n",
+ " 'Analyst Color',\n",
+ " 'Reiteration',\n",
+ " 'Analyst Ratings',\n",
+ " 'Tech',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': '--uin5IaCbGnvNZfD0vZZjDFGu4rIcjLn8s4_bMem8w',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'Buy the Recent Dip in Tesla (TSLA) or General Motors (GM) Stock?',\n",
+ " 'author': 'Shaun Pruitt',\n",
+ " 'published_utc': '2023-03-20T22:10:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/2068249/buy-the-recent-dip-in-tesla-tsla-or-general-motors-gm-stock',\n",
+ " 'tickers': ['GM', 'TSLA'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/2068249/buy-the-recent-dip-in-tesla-tsla-or-general-motors-gm-stock',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/articles/main/b6/9617.jpg',\n",
+ " 'description': \"Let's see if the recent dip in Tesla and General Motors stock is a buying opportunity.\"},\n",
+ " {'id': 'C9FWfXUqR4P_Aa0_USYQTnhmxg5e3mAIUFhNu8W_B68',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'Tesla (TSLA) Outpaces Stock Market Gains: What You Should Know',\n",
+ " 'author': 'Zacks Equity Research',\n",
+ " 'published_utc': '2023-03-20T21:45:25Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/2068168/tesla-tsla-outpaces-stock-market-gains-what-you-should-know',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/2068168/tesla-tsla-outpaces-stock-market-gains-what-you-should-know',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/default_article_images/default8.jpg',\n",
+ " 'description': 'Tesla (TSLA) closed the most recent trading day at $183.25, moving +1.73% from the previous trading session.'},\n",
+ " {'id': 'vwC6_qOdlBuCH9kMVYVpUJwgQXUHEPSYWx-J_yavIh0',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'Top Analyst Reports for Alphabet, Tesla & Amgen',\n",
+ " 'author': 'Mark Vickery',\n",
+ " 'published_utc': '2023-03-20T20:12:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/research-daily/2067872/top-analyst-reports-for-alphabet-tesla-amgen',\n",
+ " 'tickers': ['AMGN', 'COF', 'FMX', 'FDX', 'TSLA', 'GOOGL'],\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/articles/main/3f/12266.jpg',\n",
+ " 'description': \"Today's Research Daily features new research reports on 16 major stocks, including Alphabet Inc. (GOOGL), Tesla, Inc. (TSLA) and Amgen Inc. (AMGN).\"},\n",
+ " {'id': 'LmDAsXnUpptjM_NRIxSqo5aTsBCMV1ffps3LKYj9ADU',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Nasdaq, S&P 500, Dow Move Higher On Central Bank Liquidity Boost: Analyst Says Potential Relief Rally On Horizon',\n",
+ " 'author': 'Shanthi Rexaline',\n",
+ " 'published_utc': '2023-03-20T16:29:00Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/earnings/23/03/31416120/nasdaq-s-p-500-futures-see-tentative-gains-as-traders-react-to-central-bank-interventions-analyst-s',\n",
+ " 'tickers': ['QQQ',\n",
+ " 'NYCB',\n",
+ " 'PD',\n",
+ " 'SPY',\n",
+ " 'HPE',\n",
+ " 'AAPL',\n",
+ " 'DELL',\n",
+ " 'MSFT',\n",
+ " 'OPEN',\n",
+ " 'CS',\n",
+ " 'FDX',\n",
+ " 'FL',\n",
+ " 'HPQ',\n",
+ " 'UBS',\n",
+ " 'UNM',\n",
+ " 'TSLA',\n",
+ " 'FRC'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/31416120',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/03/20/stocks_photo_by_golden_dayz_on_shutterstock.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': \"The risk mood on Wall Street recovered Monday, with major equity indices\\xa0posting gains. Some of the positive sentiment is attributable to the coordinated action announced by five of the world’s biggest central banks to ease liquidity strains.\\xa0\\nCues From Past Week’s Trading: \\nStocks closed the week ended March 17 mostly higher despite the volatility seen amid the continuing news flow on the banking crisis. The S&P 500 and the Nasdaq Composite indices recorded weekly gains of 1.43% and 4.41%, respectively, while the Dow Industrials in which financial stocks have over 15% weighting edged down 0.15%.\\nSee Also: Best Binary Options Strategies\\nThe mood in the past week alternated between hope and despair as traders digested the government’s rescue plan to backstop all Silicon Valley Bank deposits, reports of trouble at First Republic Bank (NYSE: FRC) and, subsequently, the private banks’ rescue package for the bank.\\nIssues at Credit Suisse AG (NYSE: CS) also simmered through the week, which culminated in a Swiss National Bank-brokered deal\\xa0to be bought by peer UBS Group\\xa0Inc. (NYSE: UBS) over the weekend.\\n\\xa0\\n\\nU.S. Indices' Performance In Week Ended March 17\\n\\n\\nIndex\\nPerformance (+/-)\\n\\xa0\\nValue\\n\\n\\n\\n\\nNasdaq Composite\\n+4.41%\\n\\xa0\\n11,630.51\\n\\n\\nS&P 500 Index\\n+1.43%\\n\\xa0\\n3,916,64\\n\\n\\nDow Industrials\\n-0.15%\\n\\xa0\\n31,861.98\\n\\n\\n\\nAnalyst Color: \\nThe fallout from the banking turmoil has created a wave of technical damage across the equity markets and the degree of oversold conditions suggests a potential relief rally could be on the horizon, said LPL Chief Technical Strategist Adam Turnquist. \\nDrawing inspiration from historical performance, the analyst noted that whenever 20% or more of S&P 500 stocks reached oversold levels as seen last week, the average return over the following ...Full story available on Benzinga.com\",\n",
+ " 'keywords': ['News',\n",
+ " 'Earnings',\n",
+ " 'Penny Stocks',\n",
+ " 'Futures',\n",
+ " 'Previews',\n",
+ " 'Small Cap',\n",
+ " 'Top Stories',\n",
+ " 'Economics',\n",
+ " 'Federal Reserve',\n",
+ " 'Pre-Market Outlook',\n",
+ " 'Markets',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': 'z5ypb5T06D4qWKZo8KSGBrzS6e2ybkU9YjALq7GOEVs',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Why Nio Stock Jumped Monday',\n",
+ " 'author': 'newsfeedback@fool.com (Howard Smith)',\n",
+ " 'published_utc': '2023-03-20T15:59:47Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/03/20/why-nio-stock-jumped-monday/',\n",
+ " 'tickers': ['NIO', 'TSLA', 'XPEV'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/725254/nioet7blue.png',\n",
+ " 'description': 'A two-month decline in shares seems to have gone far enough for some investors.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'amtDt_H9NLAnvvapOLa9YpDfvQdq9uxOTXeu8f7cd90',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'Why Investors Need to Take Advantage of These 2 Auto, Tires and Trucks Stocks Now',\n",
+ " 'author': 'Zacks Equity Research',\n",
+ " 'published_utc': '2023-03-20T12:50:07Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/2067860/why-investors-need-to-take-advantage-of-these-2-auto-tires-and-trucks-stocks-now',\n",
+ " 'tickers': ['TSLA', 'PCAR'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/2067860/why-investors-need-to-take-advantage-of-these-2-auto-tires-and-trucks-stocks-now',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/default_article_images/default22.jpg',\n",
+ " 'description': 'Why investors should use the Zacks Earnings ESP tool to help find stocks that are poised to top quarterly earnings estimates.'},\n",
+ " {'id': 'dX3W6ighbpSsQj8Uyfm-7D-8YIR3tKCmIME5nTnl2D8',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': \"Investors are misreading the SVB depositor rescue, and shouldn't be buying stocks yet, warns Morgan Stanley's Mike Wilson\",\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-03-20T11:31:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/investors-are-misreading-the-svb-depositor-rescue-and-shouldnt-be-buying-stocks-yet-warns-morgan-stanleys-mike-wilson-db8e5e0e',\n",
+ " 'tickers': ['CS',\n",
+ " 'UBS',\n",
+ " 'DB',\n",
+ " 'HSBC',\n",
+ " 'NYCB',\n",
+ " 'SBNY',\n",
+ " 'FRC',\n",
+ " 'FL',\n",
+ " 'PDD',\n",
+ " 'TSLA',\n",
+ " 'BBBY',\n",
+ " 'GME',\n",
+ " 'AMC',\n",
+ " 'NVDA',\n",
+ " 'AAPL'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/investors-are-misreading-the-svb-depositor-rescue-and-shouldnt-be-buying-stocks-yet-warns-morgan-stanleys-mike-wilson-db8e5e0e',\n",
+ " 'image_url': 'https://images.mktw.net/im-746947/social',\n",
+ " 'description': \"Morgan Stanley's chief U.S. equity strategist warns investors are wrongly interpreting the U.S. rescue for bank depositors as a sort of quantitative easing.\"},\n",
+ " {'id': '60dImjlKOr2Q0t8L6tI8O3IrHC-4RgsLuY-efDirtgI',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Tesla Bull Weighs In On EV Maker's Near-Term Stock Trajectory — 8 Catalysts That Can Lead To Upside\",\n",
+ " 'author': 'Shanthi Rexaline',\n",
+ " 'published_utc': '2023-03-20T11:01:49Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/23/03/31414112/tesla-bull-weighs-in-on-ev-makers-near-term-stock-trajectory-8-catalysts-that-can-l',\n",
+ " 'tickers': ['TSLA', 'FFND'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/31414112',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/03/20/shutterstock_777484921.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Tesla\\xa0Inc. (NASDAQ: TSLA) stock has seen an uneven recovery this year, alternating between recoveries and pullbacks. Much of the volatility may have to do with external shocks, including the banking crisis.\\nWhat Happened: Future Fund’s Gary Black, a Tesla bull, weighed in on the near-term trajectory for the stock.\\nTesla Price Action: Tesla shares have lost about 12% since the March 1 Investor Day as opposed to the 4% gain for the Nasdaq 100 Index, Black noted. The stock is still about 72% higher for the year, although off the year’s high of $217.65.\\nSee Also: Everything You Need To Know About Tesla Stock\\nBlack expects Tesla’s stock to remain stuck in the recent range of $170-$190 until the release of its first-quarter deliveries. The company could release the numbers on April 2.\\nStreet estimates deliveries to touch 420,000 units in ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['News',\n",
+ " 'Analyst Color',\n",
+ " 'Top Stories',\n",
+ " 'Analyst Ratings',\n",
+ " 'Tech']},\n",
+ " {'id': 'jMAoFHWJMV8iWPhf2depVt9D7L0G6DPADEJOcKBdPCM',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': \"Rivian, Lucid and Fisker navigate a 'treacherous road' as they struggle to match Tesla's success\",\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-05-13T16:31:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/rivian-lucid-and-fisker-navigate-a-treacherous-road-as-they-struggle-to-match-teslas-success-ce0a9135',\n",
+ " 'tickers': ['RIVN', 'FSR', 'LCID', 'TSLA', 'F', 'RIDE', 'GM'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/rivian-lucid-and-fisker-navigate-a-treacherous-road-as-they-struggle-to-match-teslas-success-ce0a9135',\n",
+ " 'image_url': 'https://images.mktw.net/im-780231/social',\n",
+ " 'description': \"EV startups are discovering it's difficult to ramp up production in the middle of economic uncertainty, lingering supply-chain worries and rising interest rates.\"},\n",
+ " {'id': '_a1lCaLTJvZavwh8_J4hFFjFFjqpGPOdfu9ClLdE-dY',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Cathie Wood Loves These AI Stocks. Should You?',\n",
+ " 'author': 'newsfeedback@fool.com (Danny Vena)',\n",
+ " 'published_utc': '2023-05-13T13:10:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/05/13/cathie-wood-loves-these-ai-stocks-should-you/',\n",
+ " 'tickers': ['TSLA', 'NVDA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/732228/a-person-in-a-business-attire-holding-a-mobile-device-with-an-ai-neural-network-hologram-appearing-above.jpg',\n",
+ " 'description': \"The fund manager has a deep portfolio of AI stocks among Ark Investment Management's holdings.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'MPhpmqHZHMJkfjps9wIkEbqNAnvp4LnR3Patq6j3B7Y',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': \"Here's why people are still worried about regional banks and commercial real estate\",\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-05-13T13:01:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/heres-why-people-are-still-worried-about-regional-banks-and-commercial-real-estate-cccbd31c',\n",
+ " 'tickers': ['JPM', 'PACW', 'META', 'TSLA', 'RIVN', 'SPCE'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/heres-why-people-are-still-worried-about-regional-banks-and-commercial-real-estate-cccbd31c',\n",
+ " 'image_url': 'https://images.mktw.net/im-780776/social',\n",
+ " 'description': \"Bank stocks have taken it on the chin because of investor fears tied to the decline in market values for the institutions' bond portfolios as interest rates have risen.\"},\n",
+ " {'id': '7Rv3oXCqpaL7YlsdAtnmLrOPw-QZSP9KSv6ofOuUcaQ',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': \"'The Fed is way late and they’ve already screwed it up.' This stock strategist is banking on gold, silver and Treasurys to weather a recession.\",\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-05-13T12:48:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/youll-need-these-3-assets-to-weather-the-fed-induced-recession-this-stock-strategist-says-8027c238',\n",
+ " 'tickers': ['XLU', 'ITA', 'PINK', 'XLB', 'EWJ', 'EWY', 'TSLA'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/youll-need-these-3-assets-to-weather-the-fed-induced-recession-this-stock-strategist-says-8027c238',\n",
+ " 'image_url': 'https://images.mktw.net/im-548495/social',\n",
+ " 'description': \"Hedgeye's Keith McCullough says the market is in denial: 'Investors just want their bubble back.'\"},\n",
+ " {'id': 'HCA277kB3m7WHiRohPp7jPnLW8iHNE6xMu15FABE2M0',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Elon Musk Committed To Tesla, Rivian Shuns Price Cuts, Fisker Stutters At Start And More: Biggest EV Stories Of The Week',\n",
+ " 'author': 'Shanthi Rexaline',\n",
+ " 'published_utc': '2023-05-13T12:33:37Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/23/05/32377876/elon-musk-committed-to-tesla-rivian-shuns-price-cuts-fisker-stutters-at-start-and-m',\n",
+ " 'tickers': ['FSR', 'TM', 'TSLA', 'LI', 'RIVN'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/32377876',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/Tesla_0.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': \"Electric vehicle stocks experienced another week of mixed performance, with earnings impacting stock moves. Market leader Tesla, Inc. (NASDAQ:TSLA) had a down week amid several negative headlines.\\nHere are the key events that happened in the EV space during the week:\\nTesla's Leadership Rumors, Price Hikes And More: Tesla shares came under selling pressure on Friday, following reports of CEO Elon Musk stepping down. The stock fell nearly 2.4% on the reports. The billionaire entrepreneur later clarified that he intends to focus more on Tesla now that he is leaving Twitter leadership to a new CEO.\\nIn an encouraging sign, Tesla hiked EV prices yet again in the U.S. this week, reversing some of the aggressive cuts it had been implementing since the start of the year. This week saw Model S and X prices in the U.S. go up by $1,000 and Model Y prices increase by a more modest $250. Analysts such as Future Fund's Gary Black see this as a positive development, giving hope that margins could bottom in the second quarter.\\nTesla was also hit with a recall this ...Full story available on Benzinga.com\",\n",
+ " 'keywords': ['News',\n",
+ " 'Analyst Color',\n",
+ " 'Earnings',\n",
+ " 'Equities',\n",
+ " 'Top Stories']},\n",
+ " {'id': 'cZhzjWbLSoKvOCdl6NEmXZjb0Pb3ut77LoiMEbN3v50',\n",
+ " 'publisher': {'name': 'Seeking Alpha',\n",
+ " 'homepage_url': 'https://seekingalpha.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/seekingalpha.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/seekingalpha.ico'},\n",
+ " 'title': \"Apple: 2 Billion Reasons Buffett's Favorite Company Just Changed The Game\",\n",
+ " 'author': 'Dividend Sensei',\n",
+ " 'published_utc': '2023-05-13T12:00:00Z',\n",
+ " 'article_url': 'https://seekingalpha.com/article/4603333-apple-2-billion-reasons-buffetts-favorite-company-just-changed-the-game',\n",
+ " 'tickers': ['TSLA', 'GM', 'F', 'STLA', 'TM', 'AAPL'],\n",
+ " 'image_url': 'https://static.seekingalpha.com/cdn/s3/uploads/getty_images/1390890404/image_1390890404.jpg?io=getty-c-w1536',\n",
+ " 'description': 'Apple Inc. has evolved from a tech company into a full-blown aspirational luxury brand, and Warren Buffett apparently likes it. Click for our thoughts on AAPL.'},\n",
+ " {'id': 'guvvzsOBb3LrXtz4MvenlxdoAR3tt-SD9V0j3r27gcU',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Ford Loses This Whopping Amount of Money on Each EV It Makes',\n",
+ " 'author': 'newsfeedback@fool.com (Daniel Miller)',\n",
+ " 'published_utc': '2023-05-13T09:02:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/05/13/ford-loses-this-whopping-amount-of-money-on-each-e/',\n",
+ " 'tickers': ['F', 'TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/731931/2022-mustang-mach-e-ice-white-appearance-package_01.jpg',\n",
+ " 'description': \"Ford manufactures each EV at a staggering loss -- but expect that to change soon. Here's how.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'thhv_qkAojZXWYIpUjQbGSiZcj_2tsSUB-PgOrcxof8',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Soros bet on railroads, fitness, gig economy and lightened load on Disney, Amazon, dumped Tesla',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-05-12T21:30:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/soros-bet-on-railroads-fitness-gig-economy-and-lightened-load-on-disney-amazon-dumped-tesla-a205ffd1',\n",
+ " 'tickers': ['CSX',\n",
+ " 'NSC',\n",
+ " 'DIS',\n",
+ " 'AMZN',\n",
+ " 'NFLX',\n",
+ " 'DASH',\n",
+ " 'NKE',\n",
+ " 'WMT',\n",
+ " 'AAL',\n",
+ " 'TSLA'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/soros-bet-on-railroads-fitness-gig-economy-and-lightened-load-on-disney-amazon-dumped-tesla-a205ffd1',\n",
+ " 'image_url': 'https://images.mktw.net/im-781333/social',\n",
+ " 'description': \"George Soros' Soros Fund Management placed bets on railroads and the gig economy during the first quarter.\"},\n",
+ " {'id': 'KGl2ToY8ux2v9VAcVNBEEDmeS8-BmYIe5ra0RYTW9OY',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Dow, S&P 500 book back-to-back weekly losses, as poor consumer sentiment report reignites recession fears',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-05-12T20:42:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/u-s-stock-futures-advance-after-222-point-drop-in-the-dow-7d200869',\n",
+ " 'tickers': ['DJIA', 'COMP', 'PACW', 'KRE', 'NWSA', 'TSLA'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/u-s-stock-futures-advance-after-222-point-drop-in-the-dow-7d200869',\n",
+ " 'image_url': 'https://images.mktw.net/im-776448/social',\n",
+ " 'description': 'U.S. stocks end lower, surrendering early gains on Friday after a report from the University of Michigan showed consumer sentiment soured in May, helping revive recession fears.'},\n",
+ " {'id': '4fUtfsPXcnqoonoJbT1YeLSweCR4dapQSdpI9I3eErM',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': \"Tesla stock moves lower as boost from Musk's Twitter CEO pick proves short-lived\",\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-05-12T18:02:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/tesla-stock-moves-lower-as-boost-from-musks-twitter-ceo-pick-proves-short-lived-5ed91ec2',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/tesla-stock-moves-lower-as-boost-from-musks-twitter-ceo-pick-proves-short-lived-5ed91ec2',\n",
+ " 'image_url': 'https://images.mktw.net/im-770317/social',\n",
+ " 'description': 'Tesla stock drops nearly 3% on Friday as Elon Musk announces a new CEO for Twitter and investors worry about a recall in China.'},\n",
+ " {'id': '3lxDemIqe7CnrF2ahreR5B7_MRN3vSIVklx8sG2hd_c',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Analyst Ratings for Tesla',\n",
+ " 'author': 'Benzinga Insights',\n",
+ " 'published_utc': '2023-05-12T18:00:41Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/23/05/32370108/analyst-ratings-for-tesla',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/32370108',\n",
+ " 'image_url': 'https://www.benzinga.com/next-assets/images/schema-image-default.png',\n",
+ " 'description': 'Within the last quarter, Tesla (NASDAQ:TSLA) has observed the following analyst ratings: \\n\\n\\n\\n\\nBullish\\nSomewhat Bullish\\nIndifferent\\nSomewhat Bearish\\nBearish\\n\\n\\n\\n\\nTotal Ratings\\n7\\n13\\n11\\n1\\n0\\n\\n\\nLast 30D\\n0\\n1\\n0\\n0\\n0\\n\\n\\n1M Ago\\n4\\n7\\n6\\n1\\n0\\n\\n\\n2M Ago\\n2\\n2\\n2\\n0\\n0\\n\\n\\n3M Ago\\n1\\n3\\n3\\n0\\n0\\n\\n\\n\\nIn the last 3 months, 32 analysts have offered 12-month price targets for Tesla. The company has an average price target of $210.66 with a high of $280.00 and a low of $115.00. \\nBelow is a summary of how these 32 analysts rated Tesla over the past 3 months. The greater the number of ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['Analyst Ratings']},\n",
+ " {'id': 'KjBgYQHMBh6b9vs0xP2FDbPXSRaMQomWvxoEYObZb00',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Getaround stock soars on deal news, First Solar, Tesla, Beyond Meat and other stocks on the move ',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-05-12T17:47:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/getaround-stock-soars-on-deal-news-and-blue-bird-gets-a-lift-from-sales-outlook-9e173952',\n",
+ " 'tickers': ['GETR',\n",
+ " 'FSLR',\n",
+ " 'BLBD',\n",
+ " 'NWSA',\n",
+ " 'IEP',\n",
+ " 'SCHW',\n",
+ " 'BYND',\n",
+ " 'GETY',\n",
+ " 'TSLA',\n",
+ " 'SANM',\n",
+ " 'SPNT',\n",
+ " 'SPB'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/getaround-stock-soars-on-deal-news-and-blue-bird-gets-a-lift-from-sales-outlook-9e173952',\n",
+ " 'image_url': 'https://images.mktw.net/im-780568/social',\n",
+ " 'description': \"The biggest moving shares in Friday's trading include, Getaround, Blue Bird and First Solar.\"},\n",
+ " {'id': '3OdyDSjGshhTAQHAM7NM0SAL_1QIBrk6C3RANPw8_fU',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Musk makes it official: Yaccarino is new Twitter CEO',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-05-12T17:04:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/musk-makes-it-official-yaccarino-is-new-twitter-ceo-5c5e28e5',\n",
+ " 'tickers': ['CMCSA', 'TSLA', 'AAPL', 'SNAP', 'GOOGL', 'GOOG'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/musk-makes-it-official-yaccarino-is-new-twitter-ceo-5c5e28e5',\n",
+ " 'image_url': 'https://images.mktw.net/im-781070/social',\n",
+ " 'description': \"It's official: Elon Musk on Friday named Linda Yaccarino, a veteran media executive with experience in advertising, as Twitter's new CEO, months after promising to cede control.\"},\n",
+ " {'id': '6f_3L9l7Z6lPKTLRB7gat0ehj1-o2zuA4_I_Rj87Vd8',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'US Stocks Drop, Dollar Jumps As Cautious Sentiment Dominates: S&P 500 On Track To Close Another Week In The Red',\n",
+ " 'author': 'Shanthi Rexaline',\n",
+ " 'published_utc': '2023-05-12T16:46:03Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/23/05/32361242/us-stock-futures-signal-strong-finish-to-wobbly-week-but-analyst-still-sees-recessi',\n",
+ " 'tickers': ['SPY', 'FSLR', 'PACW', 'SCHW', 'DIS', 'TSLA', 'QQQ', 'AMLX'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/32361242',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/05/12/shutterstock_1321462397.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Risk aversion prevailed on Friday, with stocks trending lower, Treasury yields climbing\\xa0and the U.S. dollar being the notable gainer for the session.\\xa0\\nThe preliminary estimate of the University of Michigan consumer sentiment gauge saw a sharp drop in May, down from 63.5 in April to 57, well below the expected 63, with long-term inflation expectations surging to the highest since April 2011.\\xa0\\nCues From Friday\\'s Trading:\\nThe S&P 500 dipped 0.3% on Friday and is down 0.5% for the week, on track to record its second straight week of\\xa0negative performance.\\xa0\\nThe Dow Jones Industrial Average\\xa0fell 0.2% and is down 1.3% this week.\\xa0\\nThe Nasdaq 100 dropped 0.5% but is still up 0.6% this week.\\xa0\\nU.S. Indices’ Performance Friday\\n\\n\\n\\nIndex \\nPerformance (+/-)\\nValue\\n\\n\\nNasdaq 100\\n-0.49%\\n12,266.99\\n\\n\\nS&P 500 Index\\n-0.28%\\n4,132.57\\n\\n\\nDow Industrials\\n-0.25%\\n33,225.92\\n\\n\\n\\nAnalyst Color:\\nFollowing a second inflation reading that confirmed the slowdown in pricing pressure, Chris Zaccarelli, chief investment officer at Independent Advisor Alliance, said the Fed now has the room it needs to take a pause at the next meeting.\\nThe challenges in the banking sector are just the first sign of stress that has been inflicted on the system by the Fed\\'s rapid and aggressive rate hikes, the analyst said.\\nZaccarelli sees a recession on the horizon. \"We do think investors are being too ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['News',\n",
+ " 'Analyst Color',\n",
+ " 'Futures',\n",
+ " 'Previews',\n",
+ " 'Top Stories',\n",
+ " 'Economics',\n",
+ " 'Federal Reserve',\n",
+ " 'Pre-Market Outlook',\n",
+ " 'Markets',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': 'umaiYw_H1tuYJOjye42VXchEwqyCPVpcyDHjwWdf4Kk',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Why Rivian Stock Keeps Falling',\n",
+ " 'author': 'newsfeedback@fool.com (Rich Smith)',\n",
+ " 'published_utc': '2023-05-12T15:51:23Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/05/12/why-rivian-stock-keeps-falling/',\n",
+ " 'tickers': ['RIVN', 'F', 'TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/732299/rivian-r1t-is-rivian.jpg',\n",
+ " 'description': 'Rivian is making a risky bet. Should you bet on Rivian?',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'XTU6f39kD62cWjcfpiXWet6hpBSnBp6I3nJdFnDlzAI',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'GM or TSLA: Which Is the Better Value Stock Right Now?',\n",
+ " 'author': 'Zacks Equity Research',\n",
+ " 'published_utc': '2023-05-12T15:40:07Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/2094834/gm-or-tsla-which-is-the-better-value-stock-right-now',\n",
+ " 'tickers': ['GM', 'TSLA'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/2094834/gm-or-tsla-which-is-the-better-value-stock-right-now',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/default_article_images/default40.jpg',\n",
+ " 'description': 'GM vs. TSLA: Which Stock Is the Better Value Option?'},\n",
+ " {'id': 'fMK2s7gs3ywFi-0DZAwbnAmoE7bzupDEiIKhWQoPQYU',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': \"Tesla Raises Prices Again, but This Lesser-Known EV Stock Is Friday's Highflier\",\n",
+ " 'author': 'newsfeedback@fool.com (Dan Caplinger)',\n",
+ " 'published_utc': '2023-05-12T13:15:30Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/05/12/tesla-raises-prices-again-but-this-lesser-known-ev/',\n",
+ " 'tickers': ['TSLA', 'BLBD'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/732257/tsla-model-s.png',\n",
+ " 'description': 'Markets looked poised for a modest gain.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'KgsKahbgjo_UZt_i8hH47Z5yZ2kOcO3p347u-3ZMiWM',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Why the stock market has actually thrived as regional banks flounder.',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-05-12T12:03:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/regional-bank-turmoil-has-actually-reduced-volatility-and-supported-the-market-heres-how-81604ecd',\n",
+ " 'tickers': ['SCHW',\n",
+ " 'TSLA',\n",
+ " 'GETR',\n",
+ " 'GME',\n",
+ " 'BUD',\n",
+ " 'AAPL',\n",
+ " 'AMC',\n",
+ " 'AMZN',\n",
+ " 'MULN',\n",
+ " 'NIO',\n",
+ " 'BABA',\n",
+ " 'NVDA'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/regional-bank-turmoil-has-actually-reduced-volatility-and-supported-the-market-heres-how-81604ecd',\n",
+ " 'image_url': 'https://images.mktw.net/im-780727/social',\n",
+ " 'description': 'The gains for big tech outweigh the damage to financials as stress reduces bond yields.'},\n",
+ " {'id': '88K3s-Wz8JWoAA0booLPIK1q2OmZiEJPcDCuQsy4FVY',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Tesla raises prices on the Model S, Model X and Model Y',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-05-12T11:56:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/tesla-raises-prices-on-the-model-s-model-x-and-model-y-5b190a94',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/tesla-raises-prices-on-the-model-s-model-x-and-model-y-5b190a94',\n",
+ " 'image_url': 'https://images.mktw.net/im-335178/social',\n",
+ " 'description': 'Tesla Inc. will again tweak the prices of its vehicles, this time boosting the prices of its Model S, Model X, and Model Y cars.'},\n",
+ " {'id': 'w1gmOW_yT0Kcy0cGm2OM9o7RCmUh2LTan7Vl-PnhvYQ',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': \"Unleashing the Power of Innovation: Why High-Growth Investors Can't Afford to Ignore Tesla and Coinbase\",\n",
+ " 'author': 'newsfeedback@fool.com (RJ Fulton)',\n",
+ " 'published_utc': '2023-05-12T10:30:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/05/12/unleashing-the-power-of-innovation-why-high-growth/',\n",
+ " 'tickers': ['TSLA', 'COIN'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/731663/profit-cash-fan-prize.jpg',\n",
+ " 'description': 'Looking for technological innovation? Look no further than these two industry juggernauts.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'r6pBGemZjyOyI1g_3DtFe-ZMon0lDO28sqW9vWJjCbs',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'Should Goldman Sachs ActiveBeta U.S. Large Cap Equity ETF (GSLC) Be on Your Investing Radar?',\n",
+ " 'author': 'Zacks Equity Research',\n",
+ " 'published_utc': '2023-05-12T10:20:08Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/2094528/should-goldman-sachs-activebeta-us-large-cap-equity-etf-gslc-be-on-your-investing-radar',\n",
+ " 'tickers': ['GSLC', 'NEE', 'TSLA', 'SPY', 'IVV'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/2094528/should-goldman-sachs-activebeta-us-large-cap-equity-etf-gslc-be-on-your-investing-radar',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/default_article_images/default10.jpg',\n",
+ " 'description': 'Style Box ETF report for GSLC'},\n",
+ " {'id': 'Y2BpJQun0GiD8GUqxBVw-s_ab2S61yzjqrBQ5DsZEwo',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Why This Tesla Analyst Expects Stock To Spike Over Next 3 Sessions',\n",
+ " 'author': 'Shanthi Rexaline',\n",
+ " 'published_utc': '2023-05-12T07:51:23Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/23/05/32358384/why-this-tesla-analyst-expects-stock-to-spike-over-next-3-sessions',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/32358384',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/Tesla_stock_0.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Tesla, Inc. (NASDAQ:TSLA) shares are trading off the year\\'s high of $217.65 reached in mid-February as investors fret over a demand slowdown and hit to margins from recent aggressive pricing actions.\\nThe stock could be headed higher over the next few sessions and also in the near term, according to Future Fund\\'s Gary Black.\\nTesla has scheduled its annual shareholders\\' meeting on Tuesday. \"CEOs often give goodies to shareholders before annual meetings to ensure shareholders are happy going into the annual event,\" Black ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['Long Ideas',\n",
+ " 'News',\n",
+ " 'Analyst Color',\n",
+ " 'Equities',\n",
+ " 'Tech',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': 'jl2dn_VizXR_OmJrn6c6h9YDh1FBCQ1nzohqVpcAExo',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Tesla Analysts Applaud Musk's Exit As Twitter CEO: 'Finally Reading The Room'\",\n",
+ " 'author': 'Anan Ashraf',\n",
+ " 'published_utc': '2023-05-12T06:23:22Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/23/05/32358052/tesla-analysts-applaud-musks-exit-as-twitter-ceo-finally-reading-the-room',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/32358052',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/Elon_Musk_and_Tesla_3.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Elon Musk stepping down as Twitter CEO heralds positive impact for Tesla Inc (NASDAQ:TSLA) shares, according to Wedbush analysts.\\nBullish Rating Intact: Wedbush maintained its outperform rating on the EV giant with a 12-month price target of $215.\\nWhat Do They Say: “We believe leaving earlier than originally thought by the end of the year is a positive development for Tesla as well as SpaceX with Musk needing to spend more and more time on these golden child platforms rather than Twitter,” said the three analysts including Daniel Ives, John Katsingris and Steven Wahrhaftig. \\n“With the tweet this afternoon, Musk’s reign as ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['News',\n",
+ " 'Analyst Color',\n",
+ " 'Reiteration',\n",
+ " 'Top Stories',\n",
+ " 'Analyst Ratings',\n",
+ " 'Tech']},\n",
+ " {'id': 'CYZl-XTXvEThoEwFDnjcvXwMCeUIfC8qiy4vyQjY8rs',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Cathie Wood Unfazed By Autopilot Concerns, Calls Tesla's FSD 'Most Impactful AI Project'\",\n",
+ " 'author': 'Shanthi Rexaline',\n",
+ " 'published_utc': '2023-05-12T05:58:59Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/23/05/32357884/cathie-wood-unfazed-by-autopilot-concerns-calls-teslas-fsd-most-impactful-ai-projec',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/32357884',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/Cathie_Wood_Ark_Photo_courtesy_Benzinga_YouTube_and_Unsplash_0.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': \"Cathie Wood‘s\\xa0Ark Investment Management\\xa0recently\\xa0updated its valuation framework\\xa0for\\xa0Tesla Inc\\xa0(NASDAQ:TSLA), indicating that the majority of the value would come from Robotaxis. In an interview earlier this week, Wood shared her thoughts on the controversies surrounding Autopilot and the full self-driving software that powered robotaxis.\\nWhat Happened: The National Highway Transport Safety Administration's probe into Autopilot and the threat of even taking off the Tesla vehicles armed with the technology is not concerning, said Wood in an interview with Axios.\\nArk's updated Tesla model sees Tesla stock hitting $2,400 in 2027, up from around $170 currently, the fund manager said. A good part of that is autopilot, she added.\\nWood also pointed to data shared by Tesla at its Investor Day that showed that a Tesla car with FSD is six times safer than the average car on the road. The rate ...Full story available on Benzinga.com\",\n",
+ " 'keywords': ['News', 'Analyst Color', 'Top Stories', 'Tech']},\n",
+ " {'id': 'hoSqg0C2zVwBkOyPiqEbFh1D6eV0p-r56pR3Gtwd24E',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Bank News and a New Normal for Investors to Consider',\n",
+ " 'author': 'newsfeedback@fool.com (Chris Hill)',\n",
+ " 'published_utc': '2023-05-12T01:03:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/05/11/bank-news-and-a-new-normal-for-investors-to-consid/',\n",
+ " 'tickers': ['JPM', 'DIS', 'AAPL', 'TSLA', 'PG', 'CCL', 'NCLH', 'BABA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/730725/mfm_20230501.jpg',\n",
+ " 'description': 'Three of the four largest bank failures in U.S. history have happened in the past two months.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': '0yP4AmZuEDGgKQ4LY8HGD77lphoKAdxKQhoJKuZRrf4',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': \"Elon Musk says he's hired new CEO for Twitter; is it NBCUniversal's Linda Yaccarino?\",\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-05-12T00:12:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/elon-musk-says-hes-hired-a-new-ceo-for-twitter-who-starts-in-six-weeks-5ae6a2cd',\n",
+ " 'tickers': ['CMCSA', 'TSLA'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/elon-musk-says-hes-hired-a-new-ceo-for-twitter-who-starts-in-six-weeks-5ae6a2cd',\n",
+ " 'image_url': 'https://images.mktw.net/im-767756/social',\n",
+ " 'description': 'Twitter Chief Executive Elon Musk says he\\'s found a new CEO to run Twitter and its parent company, X Corp., and \"she\" starts soon.'},\n",
+ " {'id': 'NJYCrwLONDzi5d2tNo80WE747YRwFykUwPJM1A9vAX8',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'What Is the Fortune 100?',\n",
+ " 'author': 'newsfeedback@fool.com (Matthew DiLallo)',\n",
+ " 'published_utc': '2023-05-11T20:26:58Z',\n",
+ " 'article_url': 'https://www.fool.com/terms/f/fortune-100/',\n",
+ " 'tickers': ['BAC',\n",
+ " 'JNJ',\n",
+ " 'COST',\n",
+ " 'UPS',\n",
+ " 'EPD',\n",
+ " 'ABBV',\n",
+ " 'ABT',\n",
+ " 'AMZN',\n",
+ " 'T',\n",
+ " 'VLO',\n",
+ " 'CVX',\n",
+ " 'GD',\n",
+ " 'AAPL',\n",
+ " 'XOM',\n",
+ " 'MET',\n",
+ " 'BBY',\n",
+ " 'PSX',\n",
+ " 'ELV',\n",
+ " 'ABC',\n",
+ " 'MS',\n",
+ " 'AXP',\n",
+ " 'META',\n",
+ " 'RTX',\n",
+ " 'WMT',\n",
+ " 'KO',\n",
+ " 'ACI',\n",
+ " 'TJX',\n",
+ " 'CAH',\n",
+ " 'ET',\n",
+ " 'TSN',\n",
+ " 'COP',\n",
+ " 'F',\n",
+ " 'MPC',\n",
+ " 'HCA',\n",
+ " 'AIG',\n",
+ " 'FDX',\n",
+ " 'GOOGL',\n",
+ " 'GS',\n",
+ " 'SYY',\n",
+ " 'CHS',\n",
+ " 'TGT',\n",
+ " 'IBM',\n",
+ " 'KR',\n",
+ " 'MCK',\n",
+ " 'PGR',\n",
+ " 'DE',\n",
+ " 'BRK.A',\n",
+ " 'PRU',\n",
+ " 'C',\n",
+ " 'VZ',\n",
+ " 'CI',\n",
+ " 'NKE',\n",
+ " 'WBA',\n",
+ " 'LMT',\n",
+ " 'PG',\n",
+ " 'GM',\n",
+ " 'CSCO',\n",
+ " 'HUM',\n",
+ " 'INTC',\n",
+ " 'JPM',\n",
+ " 'MRK',\n",
+ " 'SNEX',\n",
+ " 'BA',\n",
+ " 'HP',\n",
+ " 'BMY',\n",
+ " 'HD',\n",
+ " 'CNC',\n",
+ " 'CAT',\n",
+ " 'PFE',\n",
+ " 'CHTR',\n",
+ " 'CVS',\n",
+ " 'WFC',\n",
+ " 'NUE',\n",
+ " 'DELL',\n",
+ " 'DOW',\n",
+ " 'MSFT',\n",
+ " 'GE',\n",
+ " 'ADM',\n",
+ " 'TSLA',\n",
+ " 'GOOG',\n",
+ " 'DIS',\n",
+ " 'ALL',\n",
+ " 'BRK.B',\n",
+ " 'UNH',\n",
+ " 'LOW',\n",
+ " 'TMO'],\n",
+ " 'image_url': 'https://m.foolcdn.com/media/dubs/images/original_imageshttpsg.foolcdn.comeditorialimag.width-600_u2jxuZQ.jpg'},\n",
+ " {'id': 'KyJ5GVXkoCuYA1uBS0RNKLrbvEqdbVEtLGvZo7vMwTw',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': \"'Trading hours haven’t changed since the '80s': Robinhood's Tenev talks about 24-hour stock trading as skeptics question need\",\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-05-11T15:25:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/trading-hours-havent-changed-since-the-80s-robinhoods-tenev-talks-about-24-hour-stock-trading-as-skeptics-question-need-771fe940',\n",
+ " 'tickers': ['HOOD', 'TSLA', 'AMZN', 'AAPL'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/trading-hours-havent-changed-since-the-80s-robinhoods-tenev-talks-about-24-hour-stock-trading-as-skeptics-question-need-771fe940',\n",
+ " 'image_url': 'https://images.mktw.net/im-780150/social',\n",
+ " 'description': \"Robinhood's Vlad Tenev says move to 24-hour trading for individual stocks is overdue. Skeptics see no need.\"},\n",
+ " {'id': '4ghJ6usoSSQAnAgGMif0vGu204lYiM51GpuePFCAtFA',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': \"Biden's EPA proposes first-ever restrictions on greenhouse gases from power plants\",\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-05-11T14:54:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/bidens-epa-moves-closer-to-first-ever-restrictions-on-greenhouse-gases-from-power-plants-reports-276b98f1',\n",
+ " 'tickers': ['CVX', 'XOM', 'SO', 'NEE', 'ICLN', 'COP', 'TSLA', 'GM'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/bidens-epa-moves-closer-to-first-ever-restrictions-on-greenhouse-gases-from-power-plants-reports-276b98f1',\n",
+ " 'image_url': 'https://images.mktw.net/im-684250/social',\n",
+ " 'description': 'Regulations would target existing power plants, which spew 25% of U.S. emissions. The oil and gas sector, plus many Republicans, object.'},\n",
+ " {'id': 'IJ9uejuu1U7U-pm4OyjoPgAs48if4bD8o-Mcisnc7LI',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Why investors should pay particular attention to one recent Warren Buffett move',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-05-11T13:46:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/heres-why-investors-should-pay-attention-to-this-warren-buffett-move-ac3d6b9b',\n",
+ " 'tickers': ['BRK.A',\n",
+ " 'BRK.B',\n",
+ " 'DXJ',\n",
+ " 'HEWJ',\n",
+ " 'DJIA',\n",
+ " 'COMP',\n",
+ " 'DIS',\n",
+ " 'SONO',\n",
+ " 'BYND',\n",
+ " 'U',\n",
+ " 'HOOD',\n",
+ " 'TSLA',\n",
+ " 'GME',\n",
+ " 'BUD',\n",
+ " 'AMC',\n",
+ " 'AAPL',\n",
+ " 'MULN',\n",
+ " 'PLTR',\n",
+ " 'NVDA',\n",
+ " 'PYPL'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/heres-why-investors-should-pay-attention-to-this-warren-buffett-move-ac3d6b9b',\n",
+ " 'image_url': 'https://images.mktw.net/im-752426/social',\n",
+ " 'description': 'The chairman and CEO of Berkshire Hathaway has recently shed light on some overlooked opportunity in Japan, says this portfolio manager.'},\n",
+ " {'id': 'DqoW228uk2Kt4WjdFn-lHuftuUtKdcgV3x3zGj46I_U',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Senators ask Tesla to end forced arbitration, saying it helps company hide discrimination and safety claims',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-05-11T13:10:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/senators-ask-tesla-to-end-forced-arbitration-saying-it-helps-company-hide-discrimination-and-safety-claims-7fb2a900',\n",
+ " 'tickers': ['TSLA', 'UBER'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/senators-ask-tesla-to-end-forced-arbitration-saying-it-helps-company-hide-discrimination-and-safety-claims-7fb2a900',\n",
+ " 'image_url': 'https://images.mktw.net/im-704909/social',\n",
+ " 'description': \"Democrats' letter to Elon Musk comes after recent reintroduction of the FAIR Act, which seeks to end mandatory arbitration for workers and consumers.\"},\n",
+ " {'id': 'VSpK9Jud6dWsnt1cMQxnapjoLdAtKM43DCcJiZ75rwc',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'Should You Invest in the Consumer Discretionary Select Sector SPDR ETF (XLY)?',\n",
+ " 'author': 'Zacks Equity Research',\n",
+ " 'published_utc': '2023-05-11T10:20:09Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/2093947/should-you-invest-in-the-consumer-discretionary-select-sector-spdr-etf-xly',\n",
+ " 'tickers': ['XLY', 'AMZN', 'HD', 'TSLA', 'VCR', 'FXD'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/2093947/should-you-invest-in-the-consumer-discretionary-select-sector-spdr-etf-xly',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/default_article_images/default27.jpg',\n",
+ " 'description': 'Sector ETF report for XLY'},\n",
+ " {'id': 'zoWc9S3zRk64mnGP5FGu5TBO1-D-Yrdf35WiAvchyr4',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Riding the $14 Trillion AI Wave: Here Are 2 Top Stocks to Buy Now',\n",
+ " 'author': 'newsfeedback@fool.com (Manali Bhade)',\n",
+ " 'published_utc': '2023-05-11T09:40:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/05/11/riding-the-14-trillion-ai-wave-here-are-2-top-stoc/',\n",
+ " 'tickers': ['TTD', 'TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/731432/woman_working_laptop_with_an_infant.jpg',\n",
+ " 'description': 'There is still plenty of AI-supported growth ahead for Tesla and The Trade Desk.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': '0R6-87lRTsrGmgEgFki_HuWaaXIQaA2qBJKJz7KvVPo',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Robinhood Q1 Earnings Highlights: Revenue And EPS Beat, 24-Hour Trading Launch Featuring Select Stocks Such As Tesla',\n",
+ " 'author': 'Chris Katje',\n",
+ " 'published_utc': '2023-05-10T21:06:44Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/earnings/23/05/32328411/robinhood-q1-earnings-highlights-revenue-and-eps-beat-24-hour-trading-launch-featuring-select-stock',\n",
+ " 'tickers': ['AAPL', 'AMZN', 'TSLA', 'HOOD'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/32328411',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/05/10/robinhood.shutterstock_1906351525.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Trading platform company Robinhood Markets Inc (NASDAQ: HOOD) reported first-quarter financial results after the market close Wednesday. Here are the key highlights.\\nWhat Happened: Robinhood reported first-quarter revenue of $441 million, up 16% quarter-over-quarter. The total came in ahead of a Street consensus estimate of $424.5 million, according to data from Benzinga Pro.\\nThe company reported a loss of 57 cents per share, which beat a Street estimate of a loss of 61 cents per share.\\nTransaction revenue totaled $207 million in the first quarter, which was up 11% year-over-year. Options revenue was $133 million, which was up 7% quarter-over-quarter. Crypto revenue was $38 million, down 1% quarter-over-quarter.\\nThe company added 120,0000 funded accounts to end the quarter with a total of 23.1 million. Monthly active users were up 0.4 million in the quarter to 11.8 million.\\nThe company ended the quarter with $5.5 billion in cash.\\n“We had a great ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['News',\n",
+ " 'Earnings',\n",
+ " 'Top Stories',\n",
+ " 'After-Hours Center',\n",
+ " 'Movers',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': 'r2eNAqvIAbyiUpG4VPXOertoGfRHgLDuhBRImH2uLrM',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Cybertruck Prototype Gets Stuck In Field In Texas, Quickly Goes Viral On Twitter',\n",
+ " 'author': 'Chris Katje',\n",
+ " 'published_utc': '2023-05-10T17:08:31Z',\n",
+ " 'article_url': 'https://www.benzinga.com/general/entertainment/23/05/32321393/cybertruck-prototype-gets-stuck-in-field-in-texas-quickly-goes-viral-on-twitter',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/32321393',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/05/10/0x0-cybertruck_15.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'One of the most anticipated vehicles to be launched has made headlines many times over the past several years. Earlier this week, the vehicle made more headlines — but for the wrong reasons.\\nWhat Happened: Earlier this week, electric vehicle giant Tesla Inc (NASDAQ: TSLA) showed off a prototype of its highly anticipated electric pickup truck called Cybertruck at a groundbreaking ceremony for a new lithium refinery in Texas.\\nOver the past year, videos and photos surfaced of Cybertruck prototypes on the road or at facilities. Users have been able to question such things\\xa0as\\xa0the steel used in production, a giant windshield wiper blade and a new crash test facility.\\nOne item people weren’t likely prepared to question was the Cybertruck getting stuck in the mud, which is what allegedly happened after the prototype appeared at the Texas groundbreaking event.\\nA user on Twitter (@stephfischer13) shared photos and a video from the event of the Tesla Cybertruck\\xa0on the side of the road. The user alleged\\xa0the pickup truck was stuck in a field.\\n“Couple hours after ground breaking on new Tesla lithium plant. Cybertruck got stuck in a south Texas field. Since they aren’t sold yet can only assume Mr. Musk was driving,” the Twitter user said.\\n5/8/23 ...',\n",
+ " 'keywords': ['News', 'Entertainment', 'General']},\n",
+ " {'id': 'LAAyailXBaujjY4TakrfmJY7JPb6S_36iYlgOzqVKK8',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Tesla’s stock back to green as Rivian and broader stock market provide support',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-05-10T15:43:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/tesla-stock-resumes-rally-as-rivians-results-and-broader-stock-market-rally-provide-support-db14463b',\n",
+ " 'tickers': ['TSLA', 'RIVN', 'NIO', 'LCID', 'NKLA', 'COMP'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/tesla-stock-resumes-rally-as-rivians-results-and-broader-stock-market-rally-provide-support-db14463b',\n",
+ " 'image_url': 'https://images.mktw.net/im-767296/social',\n",
+ " 'description': 'Tesla shares edged higher Wednesday, losing some steam from earlier trading, as better-than-expected results from fellow EV maker Rivian and broader support from the stock market provided a boost.'},\n",
+ " {'id': 'nCVZLRzwoXNXKsLkoOFFa7X4xZkHaeN5AyhaZWx6Ypo',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': \"Rivian Stock: 3 Words That Should Scare the EV Company's Bulls\",\n",
+ " 'author': 'newsfeedback@fool.com (Jeremy Bowman)',\n",
+ " 'published_utc': '2023-05-10T14:37:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/05/10/rivian-stock-3-words-that-should-scare-ev-bulls/',\n",
+ " 'tickers': ['RIVN', 'F', 'TSLA', 'GM'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/731770/rivian_sankey_q12023.png',\n",
+ " 'description': 'Rivian beat estimates in the first quarter, but posted another huge loss.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'wmvFZP9JUC-aPC5DMFrGRqaeHRx7CFQNgAJU5CxfwHY',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'CPI Reactions: S&P 500 Eyes Bull Market, Dollar Sinks, Treasuries And Gold Climb As Markets Embrace Potential Fed Pause',\n",
+ " 'author': 'Piero Cingari',\n",
+ " 'published_utc': '2023-05-10T14:01:04Z',\n",
+ " 'article_url': 'https://www.benzinga.com/economics/macro-economic-events/23/05/32316934/cpi-reactions-s-p-500-eyes-bull-market-dollar-sinks-treasuries-and-gold-climb-as-',\n",
+ " 'tickers': ['SPY', 'ADBE', 'AMZN', 'AMD', 'TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/32316934',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/05/10/inflation_chart_shutter3.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': \"Market risk appetite soared on Wednesday, with the U.S. dollar plunging while gold, stocks, and bonds rallied after the latest inflation report for April boosted the odds that the Fed will keep interest rates unchanged in June.\\nThe annual U.S. CPI inflation rate came in at 4.9% in April, slightly lower than economists' 5% expected and down from 5% in March, the Bureau of Labor Statistics reported Wednesday. The underlying measure of inflation, which excludes food and energy goods from the basket, eased to 5.5% last month, slightly down from the 5.6% seen in March.\\xa0\\nInvestors have further trimmed their already slim bets on a ...Full story available on Benzinga.com\",\n",
+ " 'keywords': ['Macro Economic Events',\n",
+ " 'Broad U.S. Equity ETFs',\n",
+ " 'Bonds',\n",
+ " 'Specialty ETFs',\n",
+ " 'Currency ETFs',\n",
+ " 'Forex',\n",
+ " 'Economics',\n",
+ " 'Hot',\n",
+ " 'Intraday Update',\n",
+ " 'Markets',\n",
+ " 'ETFs']},\n",
+ " {'id': 'Mi-MZFwFRvlU2dTsrRj9g7MuBHE2k08vtNEvVWgkyG0',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Is commercial real estate about to keel over? What tightening lending standards have historically meant for the economy.',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-05-10T10:56:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/is-commercial-real-estate-about-to-keel-over-what-tightening-lending-standards-have-historically-meant-for-the-economy-ddde0eb0',\n",
+ " 'tickers': ['ABNB',\n",
+ " 'UPST',\n",
+ " 'FCNCA',\n",
+ " 'IEP',\n",
+ " 'LTHM',\n",
+ " 'DIS',\n",
+ " 'HOOD',\n",
+ " 'CAKE',\n",
+ " 'NFLX',\n",
+ " 'TSLA',\n",
+ " 'AMC',\n",
+ " 'GME',\n",
+ " 'MULN',\n",
+ " 'AAPL',\n",
+ " 'PYPL',\n",
+ " 'BUD',\n",
+ " 'PLTR',\n",
+ " 'NIO'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/is-commercial-real-estate-about-to-keel-over-what-tightening-lending-standards-have-historically-meant-for-the-economy-ddde0eb0',\n",
+ " 'image_url': 'https://images.mktw.net/im-779194/social',\n",
+ " 'description': 'The tightening in lending standards that has already occurred is consistent with loan books contracting over the next year, a strategist finds.'},\n",
+ " {'id': 'QtZyNtazEJ6_HKexXsyPBoR2sQReb16UJldTgAwjVrc',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Tesla Gears Up to Offer Free AI-Powered Self-Driving Trial: Time to Buy the Stock?',\n",
+ " 'author': 'newsfeedback@fool.com (Keith Noonan)',\n",
+ " 'published_utc': '2023-05-10T10:15:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/05/10/tesla-gears-up-to-offer-free-ai-powered-self-drivi/',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/731656/a-tesla-model-s.jpg',\n",
+ " 'description': \"Tesla is getting aggressive in the self-driving niche, and the EV leader's moves could pay off.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'I4fl6Rb3II2Mr1tu5IPMllMtOyax-PpDajQSgagOxu0',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'S&P Settles Lower Ahead Of CPI; Market Volatility Increases',\n",
+ " 'author': 'Lisa Levin',\n",
+ " 'published_utc': '2023-05-10T10:11:49Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/earnings/23/05/32310201/s-p-settles-lower-ahead-of-cpi-market-volatility-increases',\n",
+ " 'tickers': ['AAPL', 'NVAX', 'SWKS', 'TSLA', 'PYPL'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/32310201',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/05/10/image27.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'The S&P 500 closed lower on Tuesday ahead of consumer price index report.\\nDisappointing projections from companies, including, PayPal Holdings, Inc. (NASDAQ: PYPL) and Skyworks Solutions, Inc. (NASDAQ: SWKS) also weighed on overall market sentiment. The Philadelphia SE Semiconductor Index dropped around 1.9% on Tuesday.\\nNovavax, Inc. (NASDAQ: NVAX) shares jumped around 28% after the company reported mixed Q1 financial results and issued FY23 ...',\n",
+ " 'keywords': ['News',\n",
+ " 'Earnings',\n",
+ " 'Small Cap',\n",
+ " 'Pre-Market Outlook',\n",
+ " 'Markets']},\n",
+ " {'id': 'ZmztAO6dqYsgYR2higUGuLJJ9kCXCcWDV0Jd70Tq4ls',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': \"1 Growth Stock Down 75% You'll Regret Not Buying on the Dip\",\n",
+ " 'author': 'newsfeedback@fool.com (Anthony Di Pizio)',\n",
+ " 'published_utc': '2023-05-10T10:09:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/05/10/1-growth-stock-down-75-youll-regret-not-buying-on/',\n",
+ " 'tickers': ['CFLT', 'AMZN', 'WMT', 'META', 'TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/731386/a-person-walking-through-a-factory-between-two-digitally-enhanced-shelves.jpg',\n",
+ " 'description': 'Confluent just delivered another strong quarter of growth.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'l9iU1RkTIemxqJ5V6udvNrqxLhRYEWs9AahndKbm7HU',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Tesla Peak Earnings In 'Rear View' As EV Maker Falters In China, Says Analyst: 'Wall Street Remains ... Criminally Bullish'\",\n",
+ " 'author': 'Shanthi Rexaline',\n",
+ " 'published_utc': '2023-05-10T09:53:43Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/23/05/32309777/tesla-peak-earnings-in-rear-view-as-ev-maker-falters-in-china-says-analyst-wall-str',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/32309777',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/tesla_buyers_shutter_1.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Tesla, Inc. (NASDAQ:TSLA) is apparently facing a demand problem amid economic uncertainties and intense competition. A Tesla bear sees more trouble ahead for the electric vehicle maker.\\nWhat Happened: Two very negative China-centric data points will emerge over the next few days, said GLJ Research analyst Gordon Johnson.\\n\\nA collapse in China sales, starting in May\\nApril Shanghai factory data will likely show Tesla produced 9,000 more cars than it sold for the month.\\n\\nThis, according to the analyst, will increase fears that Tesla has a demand problem in its largest and only profitable market in China.\\nSee Also: Best Electric Vehicle Stocks\\nDirect Sales Model Hurts? \\xa0The direct sales model used by the likes ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['News',\n",
+ " 'Analyst Color',\n",
+ " 'Equities',\n",
+ " 'Asia',\n",
+ " 'Short Ideas',\n",
+ " 'Top Stories',\n",
+ " 'Tech',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': '1za_799zNlqgX6G124XL11fVAakdox9IJP-THHAHkpU',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Elon Musk Can Leverage Tucker Carlson's Twitter Broadcast To Tesla's Advantage: Analyst Explains How\",\n",
+ " 'author': 'Shanthi Rexaline',\n",
+ " 'published_utc': '2023-05-10T06:36:39Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/23/05/32308462/elon-musk-can-leverage-tucker-carlsons-twitter-broadcast-to-teslas-advantage-analys',\n",
+ " 'tickers': ['TSLA', 'LCID'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/32308462',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/Elon_Musk_SpaceX_Tesla_Twitter.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'As demand for Tesla, Inc.\\'s (NASDAQ:TSLA) electric vehicle fails to kickstart in a meaningful way, Future Fund\\'s Gary Black has been recommending that the company considers advertising as an option.\\nWhat Happened: With former Fox News host Tucker Carlson announcing that he would bring a new version of his show on Twitter, Black suggested that Tesla should jump at the opportunity.\\nTagging Tesla CEO Elon Musk, the fund manager raised the possibility of Tesla running a 60-second ad called \"Why go EV?\" \\nThe ad could talk about how EVs lower operating costs, how ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['News',\n",
+ " 'Analyst Color',\n",
+ " 'Equities',\n",
+ " 'Social Media',\n",
+ " 'Top Stories',\n",
+ " 'Tech']},\n",
+ " {'id': 'oAAUkKejxvcPQCdisyeuoJ5Ax48o76ImO0nmQwUGn-c',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Elon Musk joins long list of billionaires who’ve said giving away money is hard — including Andrew Carnegie',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-05-09T19:45:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/elon-musk-joins-long-list-of-billionaires-whove-said-giving-away-money-is-hard-including-andrew-carnegie-34b05e24',\n",
+ " 'tickers': ['AMZN', 'TSLA', 'DJIA', 'COMP'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/elon-musk-joins-long-list-of-billionaires-whove-said-giving-away-money-is-hard-including-andrew-carnegie-34b05e24',\n",
+ " 'image_url': 'https://images.mktw.net/im-777809/social',\n",
+ " 'description': 'The Tesla CEO is currently worth an estimated $179.5 billion.'},\n",
+ " {'id': 'tg34-TZwyiEtc3RiPWR0JTssCax1TdSFtssm2uXL870',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': '2 Stocks to Buy Now and Hold for Decades',\n",
+ " 'author': 'newsfeedback@fool.com (Jake Lerch)',\n",
+ " 'published_utc': '2023-05-09T17:01:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/05/09/2-stocks-to-buy-now-and-hold-for-decades/',\n",
+ " 'tickers': ['TSLA', 'HUBB'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/726340/nest-with-hundred-dollar-bills-saving-retirement-nest-egg.jpg',\n",
+ " 'description': 'Looking to grow your investment portfolio? Start with this electric-stock double feature.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': '5aptK-hlyYsxGF4Dqu5Bxf9RLGOe4nQcksxeHdyJip8',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'How To Trade US CPI: The Top 5 Mega-Cap Gainers And Losers Following Last 3 Inflation Reports',\n",
+ " 'author': 'Piero Cingari',\n",
+ " 'published_utc': '2023-05-09T16:42:39Z',\n",
+ " 'article_url': 'https://www.benzinga.com/general/biotech/23/05/32295234/how-to-trade-us-cpi-the-top-5-mega-cap-gainers-and-losers-following-last-3-inflation-reports',\n",
+ " 'tickers': ['TSM',\n",
+ " 'UNH',\n",
+ " 'AMZN',\n",
+ " 'XOM',\n",
+ " 'ASML',\n",
+ " 'TSLA',\n",
+ " 'GOOG',\n",
+ " 'BABA',\n",
+ " 'GOOGL',\n",
+ " 'MSFT',\n",
+ " 'META',\n",
+ " 'NVDA',\n",
+ " 'SHEL',\n",
+ " 'ORCL',\n",
+ " 'AZN',\n",
+ " 'HD',\n",
+ " 'KO',\n",
+ " 'LLY',\n",
+ " 'MRK',\n",
+ " 'NVO',\n",
+ " 'PEP',\n",
+ " 'PFE'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/32295234',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/05/09/inflation_chart_shutter.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Investors are eagerly awaiting the U.S. inflation statistics for April, which will be announced on Wednesday at 8.30 a.m. ET, before the start of trading on Wall Street.\\nThe CPI data is one of the most crucial market-moving events for stocks, as investors try to decipher the state of the economy and how the Federal Reserve could respond next.\\xa0\\nHow Is The Market Positioned Ahead Of April\\xa0CPI?\\xa0The consensus expectation\\xa0from analysts is for\\xa0the U.S. CPI inflation rate to hold at 5% annually in April, unchanged from March, while core inflation is predicted to slightly ease from 5.6% to 5.5%. The monthly increase for both headline and core inflation is expected to be at\\xa00.4%.\\nFed future swaps indicate investors currently assign an 88% probability of the\\xa0Fed holding interest rates steady at 5-5.25% in June, as opposed to a 12% chance of a further 0.25% hike.\\xa0\\nRead also:\\xa0Alarming April Inflation Data This Week Could Make Investors Rethink Fed Pause In June\\nBy analyzing the last three CPI reports using the',\n",
+ " 'keywords': ['Equities',\n",
+ " 'Macro Economic Events',\n",
+ " 'Previews',\n",
+ " 'Top Stories',\n",
+ " 'Economics',\n",
+ " 'Markets',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': 'gfge760J-T0rmSTdOB_S1uecFAjFmbZ1xAA5SraAQBs',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': \"Are Lucid's Latest Numbers a Warning Signal for Investors?\",\n",
+ " 'author': 'newsfeedback@fool.com (Neha Chamaria)',\n",
+ " 'published_utc': '2023-05-09T15:19:23Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/05/09/are-lucids-latest-numbers-a-warning-signal-for-inv/',\n",
+ " 'tickers': ['LCID', 'TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/731650/lucid-air-exterior-03.jpg',\n",
+ " 'description': \"Lucid Group's deliveries are falling, and the electric car maker has chosen not to reveal its reservations number.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': '3MV9ZD27qQzAjBo_X2muS3F6qklDKQMmaAXqNHz2f3k',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Nikola Plans to Shift Focus to North America: What It Means for Investors',\n",
+ " 'author': 'newsfeedback@fool.com (Howard Smith)',\n",
+ " 'published_utc': '2023-05-09T15:14:36Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/05/09/nikola-plans-to-shift-focus-to-north-america/',\n",
+ " 'tickers': ['NKLA', 'TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/731632/nikola-truck-on-scenic-road.png',\n",
+ " 'description': \"Is the Tesla Semi eating Nikola's lunch?\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'cMBIk-6beHKMV9N6Xtglo2IwjZ-t40Wt75MysxPShY0',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': \"'It's ridiculous.' Buy short-term Treasury bills because debt-ceiling deal will come, says bond legend Bill Gross\",\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-05-09T13:38:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/its-ridiculous-buy-short-term-treasury-bills-because-debt-ceiling-deal-will-come-says-bond-legend-bill-gross-751040c9',\n",
+ " 'tickers': ['COMP',\n",
+ " 'VTIP',\n",
+ " 'STIP',\n",
+ " 'DJIA',\n",
+ " 'UAA',\n",
+ " 'HAIN',\n",
+ " 'PLUG',\n",
+ " 'NVAX',\n",
+ " 'ABNB',\n",
+ " 'DUOL',\n",
+ " 'RIVN',\n",
+ " 'WYNN',\n",
+ " 'AKAM',\n",
+ " 'PLTR',\n",
+ " 'SHLS',\n",
+ " 'HLIT',\n",
+ " 'LCID',\n",
+ " 'PYPL',\n",
+ " 'SWKS',\n",
+ " 'W',\n",
+ " 'TPX',\n",
+ " 'UBS',\n",
+ " 'CS',\n",
+ " 'TSLA',\n",
+ " 'AMC',\n",
+ " 'GME',\n",
+ " 'MULN',\n",
+ " 'PACW',\n",
+ " 'AAPL',\n",
+ " 'TRVN',\n",
+ " 'BUD'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/its-ridiculous-buy-short-term-treasury-bills-because-debt-ceiling-deal-will-come-says-bond-legend-bill-gross-751040c9',\n",
+ " 'image_url': 'https://images.mktw.net/im-768256/social',\n",
+ " 'description': \"Don't worry, buy short-dated Treasury bills, says Bill Gross.\"},\n",
+ " {'id': '12W16Piktn1tNdTc2JE68nXm7nv0-kQ_mrYXioYLWKY',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Why QuantumScape Stock Electrified Investors Today',\n",
+ " 'author': 'newsfeedback@fool.com (Eric Volkman)',\n",
+ " 'published_utc': '2023-07-03T22:40:45Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/07/03/why-quantumscape-stock-electrified-investors-today/',\n",
+ " 'tickers': ['QS', 'TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/738502/two-people-enjoying-a-daylight-ride-in-a-convertible-car.jpg',\n",
+ " 'description': 'The company slipstreams behind the top name in the EV business.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': '0-DuezWoCqNomOXp5Le2Hql7eCCP8Ly1Lqb-VVV5crY',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Why Tesla Stock Stomped on the Accelerator in June',\n",
+ " 'author': 'newsfeedback@fool.com (Danny Vena)',\n",
+ " 'published_utc': '2023-07-03T22:34:35Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/07/03/why-tesla-stock-stomped-on-the-accelerator-in-june/',\n",
+ " 'tickers': ['TSLA', 'F', 'GM', 'RIVN', 'PSNY'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/738496/0x0-model3_04.jpg',\n",
+ " 'description': 'The electric vehicle maker is adding to its extraordinary move so far in 2023.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': '2VurimjC1wfK6lZBcbL6gwLUK5PMKo6ztTcB2mL-upg',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Electric Vehicles Are Taking Over And It Shows',\n",
+ " 'author': 'newsfeedback@fool.com (Neil Rozenbaum)',\n",
+ " 'published_utc': '2023-07-03T20:00:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/07/03/electric-vehicles-are-taking-over-and-it-shows/',\n",
+ " 'tickers': ['NIO', 'TSLA', 'LI', 'XPEV', 'RIVN'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/738445/ev.png',\n",
+ " 'description': 'These are signs of better things to come.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': '_Fx7aBD_JNy-q-p8i_EmaTUQSdx4RUvJgwkFgYOvOvA',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': \"Tesla's Deliveries Hit a Quarterly Record: Here's Why the Stock Is a Buy Right Now\",\n",
+ " 'author': 'newsfeedback@fool.com (Anthony Di Pizio)',\n",
+ " 'published_utc': '2023-07-03T18:43:03Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/07/03/why-buy-tesla-stock-after-record-deliveries/',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/738433/a-black-tesla-car-driving-on-an-open-road-in-the-snow.jpg',\n",
+ " 'description': 'Tesla just shocked investors with a surprising acceleration of growth in electric vehicle deliveries.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'IksYajnZ1oK-616gY77xpm0wmvS46ahSKx4-_eytJ7s',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'China ETFs jump after upbeat economic data, EV delivery results',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-07-03T17:37:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/china-etfs-jump-after-upbeat-economic-data-ev-delivery-results-98838f6d',\n",
+ " 'tickers': ['PGJ',\n",
+ " 'KWEB',\n",
+ " 'MCHI',\n",
+ " 'GXC',\n",
+ " 'LI',\n",
+ " 'XPEV',\n",
+ " 'NIO',\n",
+ " 'TSLA',\n",
+ " 'COMP'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/china-etfs-jump-after-upbeat-economic-data-ev-delivery-results-98838f6d',\n",
+ " 'image_url': 'https://images.mktw.net/im-787741/social',\n",
+ " 'description': 'China-related ETFs surge after a private sector survey points to resilient factory activity, and electric-vehicle makers report solid deliveries.'},\n",
+ " {'id': '_mAPhyWga0w-WMli-kvPcTstQa4OXegq_AI4jgQ1xgU',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Stocks Gain Ground Before Independence Day Break: EV Sector Leads Charge With Solid Deliveries',\n",
+ " 'author': 'Shanthi Rexaline',\n",
+ " 'published_utc': '2023-07-03T17:36:00Z',\n",
+ " 'article_url': 'https://www.benzinga.com/markets/equities/23/07/33094696/us-stock-futures-signal-muted-start-to-july-why-this-analyst-says-strong-gains-await-market-in-h',\n",
+ " 'tickers': ['TSLA',\n",
+ " 'QQQ',\n",
+ " 'DIA',\n",
+ " 'XLRE',\n",
+ " 'FEZ',\n",
+ " 'FXE',\n",
+ " 'LCID',\n",
+ " 'GLD',\n",
+ " 'RIVN',\n",
+ " 'SLV',\n",
+ " 'SPY',\n",
+ " 'TLT',\n",
+ " 'USO',\n",
+ " 'UUP',\n",
+ " 'XLK',\n",
+ " 'XLV',\n",
+ " 'XLY',\n",
+ " 'COIN',\n",
+ " 'FIS'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/33094696',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/wall_street_bull_shutter.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': \"The U.S. stock market moved slightly higher on Monday ahead of the Independence Day holiday, in a shortened session marked by light trading volumes. \\nThe second half of the year has started off with a lower-than-expected ISM manufacturing PMI, which contracted to the lowest level in over three years.\\nOn the plus side EV makers rallied strongly as Tesla Inc. (NASDAQ:TSLA) saw its June deliveries growing 83% year-on-year to 466,140 vehicles, surpassing expectation of 445,000 units. Within the EV space, shares of Rivian Automotive, Inc. (NASDAQ:RIVN) and Lucid Group Inc. (NASDAQ:LCID) soared 14% and 5.1%, respectively. \\n U.S. Indices’ Performance on Monday\\n\\n\\n\\n\\nIndex \\nPerformance (+/-)\\nValue\\n\\n\\nNasdaq 100\\n+0.15%\\n15,195.50\\n\\n\\nS&P 500 Index\\n+0.09%\\n4,460.18\\n\\n\\nDow Industrials\\n+0.24%\\n34,460.55\\n\\n\\nRussell 2000\\n+0.17%\\n1,891.93\\n\\n\\n\\n\\nAnalyst Color:\\nThe S&P 500 Index is poised for another strong run in the second half of the year, said Carson Group's Ryan Detrick. Since 1950, there were 10 instances when the index is up between 12% and 17% in the first six months of the year, the analyst noted.\\nThe market has advanced in the second half of the year ...Full story available on Benzinga.com\",\n",
+ " 'keywords': ['News',\n",
+ " 'Equities',\n",
+ " 'Futures',\n",
+ " 'Top Stories',\n",
+ " 'Economics',\n",
+ " 'Federal Reserve',\n",
+ " 'Markets',\n",
+ " 'Movers',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': '1A5JvZG8esXqkv3ae4SDn8d2hQFMm9fMf7q31TpzjHw',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'U.S. stocks eke out small gains in holiday-shortened session',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-07-03T17:36:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/u-s-stock-futures-mixed-as-tesla-bounce-boosts-nasdaq-dcfc7a44',\n",
+ " 'tickers': ['DJIA',\n",
+ " 'COMP',\n",
+ " 'AAPL',\n",
+ " 'MSFT',\n",
+ " 'NVDA',\n",
+ " 'TSLA',\n",
+ " 'RIVN',\n",
+ " 'TTCF',\n",
+ " 'LCID'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/u-s-stock-futures-mixed-as-tesla-bounce-boosts-nasdaq-dcfc7a44',\n",
+ " 'image_url': 'https://images.mktw.net/im-802047/social',\n",
+ " 'description': 'U.S. stocks drift higher in preholiday trade as the second half of the year gets under way.'},\n",
+ " {'id': 'p-jxWWxJgEdohnAN22h8cuWOMWMytHPiR_Tdt_kJv2Y',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Why Tesla Shares Jumped Again Today',\n",
+ " 'author': 'newsfeedback@fool.com (Howard Smith)',\n",
+ " 'published_utc': '2023-07-03T17:32:15Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/07/03/why-tesla-shares-jumped-again-today/',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/738437/0x0-modelx_07.jpg',\n",
+ " 'description': 'Record quarterly production has Tesla on track for its annual growth objectives.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'B9NRexJv77d-F-5s7fv4GJAcqDh6ifJZTNxtx2rCLHE',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Canaccord Genuity Maintains Buy Rating for Tesla: Here's What You Need To Know\",\n",
+ " 'author': 'Benzinga Insights',\n",
+ " 'published_utc': '2023-07-03T17:00:44Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/23/07/33099518/canaccord-genuity-maintains-buy-rating-for-tesla-heres-what-you-need-to-know',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/33099518',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/analyst_ratings_image_3.png?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Canaccord Genuity has decided to maintain its Buy rating of Tesla (NASDAQ:TSLA) and raise its price target from $257.00 to $293.00.\\nShares of Tesla are trading up 6.18% over the last 24 hours, at $277.96 per share.\\nA move to $293.00 would account for a 5.41% increase from the current share price.\\nAbout Tesla\\nFounded in 2003 and based in Palo Alto, California, Tesla is a vertically integrated sustainable energy company that also aims to transition the world to electric mobility by making electric vehicles. The company sells solar panels and solar roofs for energy generation plus batteries for stationary storage for residential and commercial properties including utilities. ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['Analyst Ratings']},\n",
+ " {'id': 'LlTLMbJ4jAlrm172IqSVfXVGCXU6MboUehuP_8FBGEk',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Truist Securities Maintains Hold Rating for Tesla: Here's What You Need To Know\",\n",
+ " 'author': 'Benzinga Insights',\n",
+ " 'published_utc': '2023-07-03T17:00:34Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/23/07/33099511/truist-securities-maintains-hold-rating-for-tesla-heres-what-you-need-to-know',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/33099511',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/analyst_ratings_image_2.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Truist Securities has decided to maintain its Hold rating of Tesla (NASDAQ:TSLA) and raise its price target from $154.00 to $240.00.\\nShares of Tesla are trading up 6.17% over the last 24 hours, at $277.93 per share.\\nA move to $240.00 would account for a 13.65% decrease from the current share price.\\nAbout Tesla\\nFounded in 2003 and based in Palo Alto, California, Tesla is a vertically integrated sustainable energy company that also aims to transition the world to electric mobility by making electric vehicles. The company sells solar panels and solar roofs for energy generation plus batteries for stationary storage for residential and commercial properties including utilities. ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['Analyst Ratings']},\n",
+ " {'id': 'n7Nu2PmgoHRgDMM29OPX8Ntq0l8u8k8qi6WNOPxdv74',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Why Li Auto Shares Are Trading Higher By Around 7%? Here Are Other Stocks Moving In Monday's Session\",\n",
+ " 'author': 'Lisa Levin',\n",
+ " 'published_utc': '2023-07-03T16:52:26Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/23/07/33099880/why-li-auto-shares-are-trading-higher-by-around-7-here-are-other-stocks-moving-in-mondays-mid-day-se',\n",
+ " 'tickers': ['RXT',\n",
+ " 'AHI',\n",
+ " 'XPEV',\n",
+ " 'LI',\n",
+ " 'TTCF',\n",
+ " 'LOV',\n",
+ " 'TPET',\n",
+ " 'GRCL',\n",
+ " 'PLM',\n",
+ " 'PTGX',\n",
+ " 'BHG',\n",
+ " 'ACMR',\n",
+ " 'NMRD',\n",
+ " 'ENSC',\n",
+ " 'ASTC',\n",
+ " 'TOP',\n",
+ " 'VTYX',\n",
+ " 'COIN',\n",
+ " 'CLSK',\n",
+ " 'RIVN',\n",
+ " 'FIS',\n",
+ " 'ATXG',\n",
+ " 'DLPN',\n",
+ " 'ALLR',\n",
+ " 'CGC',\n",
+ " 'ENOB',\n",
+ " 'BJDX',\n",
+ " 'TSLA',\n",
+ " 'OPRA',\n",
+ " 'VINE',\n",
+ " 'XXII',\n",
+ " 'MSC',\n",
+ " 'BACK',\n",
+ " 'AGE',\n",
+ " 'IDEX',\n",
+ " 'ETAO',\n",
+ " 'ATTO',\n",
+ " 'PTON',\n",
+ " 'MCOM',\n",
+ " 'DERM',\n",
+ " 'NIO',\n",
+ " 'VBIV',\n",
+ " 'INVO',\n",
+ " 'SQZ'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/33099880',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/07/03/li_auto_-_logo.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Gainers\\n\\nPolyMet Mining Corp. (NYSE: PLM) shares surged 144% to $1.92 after the company announced Glencore made a non-binding proposal to acquire the company for $2.11 per share.\\nFresh Vine Wine, Inc. (NYSE: VINE) gained 70.1% to $0.3845. Fresh Vine Wine recently announced the appointment of Hitesh Dheri as Chief Financial Officer and Secretary.\\nAdvanced Health Intelligence Ltd. (NASDAQ: AHI) shares jumped 65.1% to $6.32. Advanced Health Intelligence recently announced the implementation of an ADS ratio change.\\nSQZ Biotechnologies Company (NYSE: SQZ) shares gained 46.1% to $0.3944 after declining 11% on Friday.\\nIMAC Holdings, Inc. (NASDAQ: BACK) shares jumped 38.6% to $0.1524. Theralink recently signed definitive merger agreement to be acquired by IMAC Holdings.\\nCanopy Growth Corporation (NASDAQ: CGC) gained 37% to $0.5337. Canopy Growth said that all conversions pursuant to the $100 million senior unsecured convertible debentures, sold to an institutional investor in February 2023, have been completed.\\nEnsysce Biosciences, Inc. (NASDAQ: ENSC) gained 30.6% to $2.39. HC Wainwright & Co. initiated coverage on Ensysce Biosciences with a Buy rating and announced a price target of $9.\\nSpark Networks SE (NASDAQ: LOV) rose 26.1% to $0.3974.\\nNemaura Medical Inc. (NASDAQ: NMRD) surged 24.6% to $1.16.\\nVentyx Biosciences, Inc. (NASDAQ: VTYX) gained 17.6% to $38.56.\\nJourney Medical Corporation (NASDAQ: DERM) jumped 17.6% to $1.87. Journey Medical expects topline results from the Phase 3 clinical trials evaluating DFD-2 for the treatment of papulopustular rosacea to be announced week of July 10, 2023.\\nACM Research, Inc. (NASDAQ: ACMR) shares climbed 17% to $15.30 after Jefferies upgraded its rating from Underperform to Buy and raised the price target from $9 to $23.4.\\nMicromobility.com Inc. (NASDAQ: MCOM) shares ...',\n",
+ " 'keywords': ['News',\n",
+ " 'Penny Stocks',\n",
+ " 'Small Cap',\n",
+ " 'Intraday Update',\n",
+ " 'Markets',\n",
+ " 'Movers',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': 'yn5D312_dP_g0XC99G4Txg4XD0ZH75oOFJTUwdhxNuY',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'Plug Into Tesla With These ETFs',\n",
+ " 'author': 'Yashwardhan Jain',\n",
+ " 'published_utc': '2023-07-03T16:37:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/2116148/plug-into-tesla-with-these-etfs',\n",
+ " 'tickers': ['F', 'GM', 'TSLA', 'XLY', 'VCR', 'ARKQ', 'FDIS', 'PP', 'RIVN'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/2116148/plug-into-tesla-with-these-etfs',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/articles/main/b9/441.jpg',\n",
+ " 'description': \"Given Tesla's exceptional performance and its significant role in driving the EV market in the United States, explore these ETFs that provide exposure to Tesla to capitalize on the current rally of this EV manufacturer.\"},\n",
+ " {'id': 'RtdMW5Ug7qdBZ1IqGhO6mMg5f6DZyhEIMRx-Uvmmhp8',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'Tesla Sets New Q2 Delivery Record: ETFs to Buy',\n",
+ " 'author': 'Sweta Killa',\n",
+ " 'published_utc': '2023-07-03T16:35:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/2116149/tesla-sets-new-q2-delivery-record-etfs-to-buy',\n",
+ " 'tickers': ['TSLA', 'XLY', 'VCR', 'ARKQ', 'FDIS', 'PP'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/2116149/tesla-sets-new-q2-delivery-record-etfs-to-buy',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/articles/main/b3/2062.jpg',\n",
+ " 'description': 'Tesla announced a record number of deliveries for the second quarter of 2023.'},\n",
+ " {'id': 'RSzOxh6naMOzyZc9RgYALdwuSA_l65Xv13cgIbjt6TU',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': \"Here's What to Expect for the Second Half of 2023\",\n",
+ " 'author': 'Bryan Hayes',\n",
+ " 'published_utc': '2023-07-03T15:40:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/commentary/2116068/heres-what-to-expect-for-the-second-half-of-2023',\n",
+ " 'tickers': ['AAPL', 'NVDA', 'TSLA'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/commentary/2116068/heres-what-to-expect-for-the-second-half-of-2023',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/articles/main/5d/41051.jpg',\n",
+ " 'description': 'Stellar gains in the first half point to more strength ahead.'},\n",
+ " {'id': '8-eX8SWJzVC6AIXpXTkqUaTz2-kpnbnQawPiIVgeOs0',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'EXCLUSIVE: Top 10 Most-Searched Tickers On Benzinga Pro In June, Including Tesla, C3.ai, Nvidia',\n",
+ " 'author': 'Chris Katje',\n",
+ " 'published_utc': '2023-07-03T15:28:29Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/23/07/33097712/exclusive-top-10-most-searched-tickers-on-benzinga-pro-in-june-including-tesla-c3-ai-nvidia',\n",
+ " 'tickers': ['CVNA',\n",
+ " 'META',\n",
+ " 'SPY',\n",
+ " 'SPCE',\n",
+ " 'AMZN',\n",
+ " 'PLTR',\n",
+ " 'COIN',\n",
+ " 'FRZA',\n",
+ " 'VCIG',\n",
+ " 'MSFT',\n",
+ " 'UCAR',\n",
+ " 'NVDA',\n",
+ " 'PACW',\n",
+ " 'AI',\n",
+ " 'AMD',\n",
+ " 'AAPL',\n",
+ " 'TSLA',\n",
+ " 'QQQ',\n",
+ " 'U',\n",
+ " 'AHI',\n",
+ " 'SOFI'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/33097712',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/07/03/binoculors.shutterstock_1870076644.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Each trading day features hundreds of headlines and press releases on Benzinga Pro, a source for traders to see the latest news on the overall market and individual tickers.\\nHere is a look at the most-searched stocks on Benzinga Pro during June 2023.\\nYear-to-date and 52-week ranges are based on June 30, 2023 prices.\\n1. Tesla Inc (NASDAQ: TSLA)\\nMonth End Price: $261.77\\n52-Week Range: $101.81 to $314.67\\nYTD Return: +142.2%\\nMarch/April/May Search Rank: 2nd/2nd/2nd\\n2022 Search Rank: 2nd\\n2. SPDR S&P 500 ETF Trust (NYSE: SPY)\\nMonth End Price: $443.28\\n52-Week Range: $348.11 to $444.30\\nYTD Return: +16.4%\\nMarch/April/May Search Rank: 1st/1st/1st\\n2022 Search Rank: 1st\\n3. Nvidia Corp\\xa0(NASDAQ: NVDA)\\nMonth End Price: $423.02\\n52-Week Range: $108.13 to $439.90\\nYTD Return: +195.5%\\nMarch/April/May Search Rank: 3rd/8th/3rd\\n2022 Search Rank: 4th\\n4. Advanced Micro Devices, Inc.\\xa0(NASDAQ: AMD)\\nMonth End Price: $113.91\\n52-Week Range: $54.57 to $132.82\\nYTD Return: +77.9%\\nMarch/April/May Search Rank: 9th/14th/4th\\n2022 Search Rank: 5th\\n5. Carvana Co (NYSE: CVNA)\\nMonth End Price: $25.82\\n52-Week Range: 3.55 to $58.05\\nYTD Return: +459.8%\\nMarch/April/May Search Rank: Not in Top 20/Not in Top 20/Not in Top 20\\n2022 Search Rank: Not in Top 20\\n6. C3.ai Inc (NYSE: AI)\\nMonth ...',\n",
+ " 'keywords': ['News',\n",
+ " 'Penny Stocks',\n",
+ " 'Small Cap',\n",
+ " 'Top Stories',\n",
+ " 'Exclusives',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': 'E6ppuCSv21kWeVaHvT7rHUm_jcuylMhSeDpoumyOVps',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'Tesla (TSLA) Logs 466,140 Deliveries for the Second Quarter',\n",
+ " 'author': 'Zacks Equity Research',\n",
+ " 'published_utc': '2023-07-03T15:02:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/2116118/tesla-tsla-logs-466140-deliveries-for-the-second-quarter',\n",
+ " 'tickers': ['GM', 'TSLA', 'LI'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/2116118/tesla-tsla-logs-466140-deliveries-for-the-second-quarter',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/articles/main/b9/441.jpg',\n",
+ " 'description': \"Tesla's (TSLA) second-quarter deliveries rise to 466,140 compared with 422,875 in the previous quarter, following several rounds of price cuts.\"},\n",
+ " {'id': 'oBh70Qv4XGS1w_uWkEw79IH8thGRIyTbuHUxEIVYDyI',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Tesla Tops Q2 Delivery Expectations, But Analysts Say Near-Term Direction Of Stock Hinges On Data Due Later This Month',\n",
+ " 'author': 'Adam Eckert',\n",
+ " 'published_utc': '2023-07-03T14:56:36Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/23/07/33097030/tesla-tops-q2-delivery-expectations-but-analysts-say-near-term-direction-of-stock-h',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/33097030',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/07/03/0x0-model3_10.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Tesla\\xa0Inc (NASDAQ: TSLA) shares are accelerating higher Monday morning on the heels of strong second-quarter delivery numbers. Analysts are turning incrementally more positive, but deliveries are just one piece of the puzzle.\\nWhat Happened:\\xa0Tesla\\xa0produced 479,700\\xa0vehicles in the second quarter and\\xa0delivered 466,140\\xa0vehicles\\xa0consisting\\xa0of 446,915 Model 3 and Model Y vehicles and\\xa019,225 Model S and Model X vehicles. Tesla\\'s quarterly delivery numbers\\xa0were up more than 83% year-over-year.\\xa0\\nWhy It Matters: Goldman Sachs analyst Mark Delaney maintained a Neutral rating on Tesla and increased the\\xa012-month price target from $248 to $275. The price target increase comes just a week after the analyst downgraded the stock\\xa0from Buy to Neutral and raised its price target from $185 to $248.\\n\"The [delivery] report suggests that Tesla was able to close the quarter more strongly than we and\\xa0consensus had expected,\" Delaney said ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['News', 'Analyst Color', 'Price Target']},\n",
+ " {'id': 'gCmfVCO53bHSpOLIXJNJYfdmodQTpZlYkZa1JwSykhw',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': '2 Unstoppable Stocks That Could Turn $200,000 Into $1 Million by 2033',\n",
+ " 'author': 'newsfeedback@fool.com (Anthony Di Pizio)',\n",
+ " 'published_utc': '2023-07-03T13:50:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/07/03/2-unstoppable-stocks-turn-200000-to-1-million-2033/',\n",
+ " 'tickers': ['TSLA', 'LMND'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/738320/a-blue-tesla-car-driving-on-an-open-road.jpg',\n",
+ " 'description': 'These companies are growing quickly enough to potentially quintuple your money.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'i-EQuf7FMcM9sStgQ8tcmnfSHlHI0-snD-r3a6E8NGM',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'EV Roundup: RIDE Files for Bankruptcy, WKHS Hits Milestones & More',\n",
+ " 'author': 'Rimmi Singhi',\n",
+ " 'published_utc': '2023-07-03T13:45:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/2116034/ev-roundup-ride-files-for-bankruptcy-wkhs-hits-milestones-more',\n",
+ " 'tickers': ['TSLA', 'WKHS', 'BLNK'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/2116034/ev-roundup-ride-files-for-bankruptcy-wkhs-hits-milestones-more',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/articles/main/aa/963.jpg',\n",
+ " 'description': 'While Lordstown (RIDE) files for Chapter 11 bankruptcy and sues Foxconn, Workhorse (WKHS) begins W750 vans production and signs a deal with Smyrna Truck to expand its network for customers.'},\n",
+ " {'id': 'DPqpmKvsURfTGCXD3BdkJMPgJnuZLxyaUV3gUU0XRLw',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Goldman Sachs Reveals Winning Portfolio: 'Rule of 10' Unlocks S&P 500's Future Top Performers\",\n",
+ " 'author': 'Piero Cingari',\n",
+ " 'published_utc': '2023-07-03T13:24:55Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/23/07/33096461/goldman-sachs-reveals-winning-portfolio-rule-of-10-unlocks-s-p-500s-future-top-perf',\n",
+ " 'tickers': ['AAPL',\n",
+ " 'FTNT',\n",
+ " 'TSLA',\n",
+ " 'NOW',\n",
+ " 'MNST',\n",
+ " 'AAPL',\n",
+ " 'ENPH',\n",
+ " 'ADBE',\n",
+ " 'PANW',\n",
+ " 'AMZN',\n",
+ " 'GOOGL',\n",
+ " 'CDNS',\n",
+ " 'PAYC',\n",
+ " 'DXCM',\n",
+ " 'ANET',\n",
+ " 'GOOG',\n",
+ " 'SEDG',\n",
+ " 'INTU',\n",
+ " 'AXON',\n",
+ " 'MSFT',\n",
+ " 'APTV',\n",
+ " 'NVDA',\n",
+ " 'CDAY',\n",
+ " 'PODD',\n",
+ " 'META',\n",
+ " 'SBUX',\n",
+ " 'CMG',\n",
+ " 'CRM'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/33096461',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/Goldman_Sachs_0.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Only 20 stocks out of the entire S&P 500 Index have remarkable revenue growth. These companies have boosted sales\\xa0at a rate of at least 10% per year since 2021. This upward trend is expected to continue at least through 2025.\\nEquity analysts from Goldman Sachs screened these stocks and studied their performance, using what’s called the “Rule of 10.”\\nThe ‘Rule of 10’ Has Outperformed The S&P 500 \\nThe investment bank noted that rapid and consistent revenue growth has been a key\\xa0feature of many of today’s largest\\xa0stocks. \\nFrom 2013 to 2019, the seven largest publicly traded technology companies have seen their sales increase by an impressive 15% compound annual growth rate (CAGR). They are:\\n\\nApple Inc. (NASDAQ:AAPL)\\nMicrosoft Corp. (NASDAQ:MSFT)\\nAlphabet Inc. (NASDAQ:GOOG) (NASDAQ:GOOGL)\\nAmazon Inc. (NASDAQ:Full story available on Benzinga.com',\n",
+ " 'keywords': ['Long Ideas',\n",
+ " 'Analyst Color',\n",
+ " 'Fintech',\n",
+ " 'Large Cap',\n",
+ " 'Top Stories',\n",
+ " 'Economics',\n",
+ " 'Analyst Ratings',\n",
+ " 'Tech']},\n",
+ " {'id': 'tpsGku2xAs8nEPxuagzH93Lcptq-pWT-m9_mr_eesRg',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Top 5 Consumer Stocks That May Implode This Quarter',\n",
+ " 'author': 'Lisa Levin',\n",
+ " 'published_utc': '2023-07-03T13:13:59Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/23/07/33096328/top-5-consumer-stocks-that-may-implode-this-quarter',\n",
+ " 'tickers': ['F', 'TSLA', 'LI', 'VRM', 'XPEV'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/33096328',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/07/03/image12.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'The most overbought stocks in the consumer discretionary sector presents an opportunity to go short on these overvalued companies.\\nThe RSI is a momentum indicator, which compares a stock\\'s strength on days when prices go up to its strength on days when prices go down. When compared to a stock\\'s price action, it can give traders a better sense of how a stock may perform in the short term. An asset is typically considered overbought when the RSI is above 70.\\nHere’s the latest list of major overbought players in this sector.\\nVroom, Inc. (NASDAQ: VRM)\\n\\nVroom reported worse-than-expected first-quarter sales results. Tom Shortt, Chief Executive Officer of Vroom, said, \"In the first quarter of 2023, consistent with our Long-Term Roadmap, we continued to make progress on our three key objectives and four strategic initiatives, ...',\n",
+ " 'keywords': ['News',\n",
+ " 'Penny Stocks',\n",
+ " 'Short Ideas',\n",
+ " 'Pre-Market Outlook',\n",
+ " 'Markets',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': '4tQLOj4-mkuCwnxtl5c2hMAxO-NQccvLHj-RMqD1mjs',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'The Nasdaq-100 is headed for its best first half on record. But the rally faces a high-stakes test in July.',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-07-03T12:48:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/the-nasdaq-100-is-headed-for-its-best-first-half-on-record-but-obstacles-to-further-gains-lie-ahead-5c9f6df9',\n",
+ " 'tickers': ['NVDA',\n",
+ " 'AAPL',\n",
+ " 'GOOGL',\n",
+ " 'GOOG',\n",
+ " 'TSLA',\n",
+ " 'AMZN',\n",
+ " 'META',\n",
+ " 'AI',\n",
+ " 'DJIA'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/the-nasdaq-100-is-headed-for-its-best-first-half-on-record-but-obstacles-to-further-gains-lie-ahead-5c9f6df9',\n",
+ " 'image_url': 'https://images.mktw.net/im-798554/social',\n",
+ " 'description': 'Technology stocks are leading the U.S. stock market to a spectacular turnaround in the first half of 2023. The Nasdaq-100, which tracks the top 100 stocks traded on the Nasdaq Exchange, is on track for its best first-half performance on record.'},\n",
+ " {'id': '3pZndOB6GAqwY52vWHbmZM8wa2yLhCFlSfpEZw9Yq98',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Why Tattooed Chef Are Trading Lower By 47%; Here Are 20 Stocks Moving Premarket',\n",
+ " 'author': 'Lisa Levin',\n",
+ " 'published_utc': '2023-07-03T12:15:02Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/23/07/33095520/why-tattooed-chef-are-trading-lower-by-47-here-are-20-stocks-moving-premarket',\n",
+ " 'tickers': ['ALLR',\n",
+ " 'BJDX',\n",
+ " 'ATHX',\n",
+ " 'TCBP',\n",
+ " 'ENG',\n",
+ " 'BACK',\n",
+ " 'TSLA',\n",
+ " 'FLJ',\n",
+ " 'AGRX',\n",
+ " 'MCOM',\n",
+ " 'VBIV',\n",
+ " 'SQZ',\n",
+ " 'FBIO',\n",
+ " 'TOP',\n",
+ " 'BXRX',\n",
+ " 'XPEV',\n",
+ " 'TTCF',\n",
+ " 'MSGM',\n",
+ " 'GBNH',\n",
+ " 'BHG'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/33095520',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/07/03/tattooed_chef_-_logo.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Gainers\\n\\nMicromobility.com Inc. (NASDAQ: MCOM) shares surged 60% to $0.18 in pre-market trading. micromobility.com recently reported a strategic realignment to strengthen its financial position and drive profitability.\\nFortress Biotech, Inc. (NASDAQ: FBIO) shares gained 38.2% to $0.76 in pre-market trading. Urica Therapeutics, a Fortress Biotech subsidiary company, recently disclosed topline data from the Phase 1 clinical trial evaluating dotinurad in healthy volunteers in the United States.\\nIMAC Holdings, Inc. (NASDAQ: BACK) shares rose 35.9% to $0.1495 in pre-market trading. Theralink recently signed definitive merger agreement to be acquired by IMAC Holdings.\\nFLJ Group Limited (NASDAQ: FLJ) shares rose 23.9% to $0.3680 in pre-market trading. The company said Mr. Lin Zhou has resigned as an independent director and a member of the audit committee of the Company, effective June 30, 2023.\\nSQZ Biotechnologies Company (NYSE: SQZ) shares gained 20.7% to $0.3260 in pre-market trading after declining 11% on Friday.\\nENGlobal Corporation (NASDAQ: ENG) gained 16.2% to $0.4380 in pre-market trading. ENGlobal was recently granted 180-day extension by NASDAQ to regain compliance with minimum bid price rule.\\nAthersys, Inc. (NASDAQ: ATHX) rose 14.9% to ...',\n",
+ " 'keywords': ['News',\n",
+ " 'Penny Stocks',\n",
+ " 'Small Cap',\n",
+ " 'Pre-Market Outlook',\n",
+ " 'Markets',\n",
+ " 'Movers',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': '0HTjbFxnUBxEXxSmGM-3g3kb_wYWq_BqXUrcqWvXhy8',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': \"History shows stock market's bullish momentum in the first half could spill over into the second half, but analysts are not so sure\",\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-07-03T12:15:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/history-shows-stock-markets-bullish-momentum-in-the-first-half-could-spill-over-into-the-second-half-but-analysts-are-not-so-sure-193e4e61',\n",
+ " 'tickers': ['COMP',\n",
+ " 'DJIA',\n",
+ " 'GOOGL',\n",
+ " 'AAPL',\n",
+ " 'META',\n",
+ " 'MSFT',\n",
+ " 'AMZN',\n",
+ " 'NVDA',\n",
+ " 'TSLA'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/history-shows-stock-markets-bullish-momentum-in-the-first-half-could-spill-over-into-the-second-half-but-analysts-are-not-so-sure-193e4e61',\n",
+ " 'image_url': 'https://images.mktw.net/im-809979/social',\n",
+ " 'description': 'The U.S. stock market closed out a historically robust first half of the year that saw the technology-heavy Nasdaq Composite post its best opening six-month in four decades despite numerous downside risks. Stock-market analysts remained cautious about what history tells us about markets moving forward.'},\n",
+ " {'id': 'wljqlHg5KVQojUjPhcndJWODz1Ha_33gIJjnjcKZsHQ',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Tesla Leads EV Stocks Higher as Deliveries Surge Across the Industry',\n",
+ " 'author': 'newsfeedback@fool.com (Dan Caplinger)',\n",
+ " 'published_utc': '2023-07-03T12:12:09Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/07/03/tesla-leads-ev-stocks-higher-as-deliveries-surge-a/',\n",
+ " 'tickers': ['TSLA', 'NIO', 'LI'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/738412/tsla-red-mountain.jpg',\n",
+ " 'description': 'Markets were generally quiet in the pre-July 4 half-day session.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'A7mcxCytqWYZOMz2CGtIrtkry3giwGvg-vToXhUN8L8',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': \"Cathie Wood's Bold Prediction: Is a 500% Increase Possible for Tesla?\",\n",
+ " 'author': 'newsfeedback@fool.com (RJ Fulton)',\n",
+ " 'published_utc': '2023-07-03T11:30:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/07/03/cathie-woods-bold-prediction-is-a-500-increase-pos/',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/737927/electric-vehicles-solar-panels-and-windmills.jpg',\n",
+ " 'description': \"As one of Tesla's biggest fans, Cathie Wood and her firm think Tesla has plenty of room to run.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'Zzox4awox4PULrE26Kr78boyG-d_6c1XrMES6IKFDIk',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Nio, XPeng stocks surge after EV delivery data',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-07-03T11:15:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/nio-xpeng-stocks-surge-after-ev-delivery-data-b916f23',\n",
+ " 'tickers': ['TSLA', 'NIO', 'XPEV', 'LI'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/nio-xpeng-stocks-surge-after-ev-delivery-data-b916f23',\n",
+ " 'image_url': 'https://images.mktw.net/im-332166/social',\n",
+ " 'description': 'Shares of China-based electric-vehicle makers surged Monday, after they reported June deliveries that showed big jumps from May.'},\n",
+ " {'id': 'n7Q2DfgOpxutUYmnZIDQ49Z0EB4UUmdAX1MW01O56H0',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"XPeng, Tesla And Other Big Stocks Moving Higher In Monday's Pre-Market Session\",\n",
+ " 'author': 'Lisa Levin',\n",
+ " 'published_utc': '2023-07-03T10:55:06Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/23/07/33094604/xpeng-tesla-and-other-big-stocks-moving-higher-in-mondays-pre-market-session',\n",
+ " 'tickers': ['ACMR', 'FIS', 'TSLA', 'LILM', 'BABA', 'LI', 'NIO', 'XPEV'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/33094604',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/07/03/xpeng_-_logo.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'U.S. stock futures traded mixed this morning. Here are some big stocks recording gains in today’s pre-market trading session.\\n\\nXPeng Inc. (NYSE: XPEV) shares jumped 10.7% to $14.86 in pre-market trading after the company announced a significant increase in vehicle deliveries for June and the second quarter of 2023.\\nLilium N.V. (NASDAQ: LILM) shares gained 9.7% to $1.93 in pre-market trading after jumping over 15% on Friday.\\nACM Research, Inc. (NASDAQ: ACMR) shares rose 8.5% to $14.19 in pre-market trading after Jefferies upgraded its rating from Underperform to Buy and raised the price target from $9 to $23.4.\\nFidelity ...',\n",
+ " 'keywords': ['News',\n",
+ " 'Penny Stocks',\n",
+ " 'Small Cap',\n",
+ " 'Pre-Market Outlook',\n",
+ " 'Markets',\n",
+ " 'Movers',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': 'OYYLFNl32AF4KBJZhQBO8sirOQIHuxXY64Jn4g94cS8',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Will Tesla Be a Trillion-Dollar Stock by 2025?',\n",
+ " 'author': 'newsfeedback@fool.com (Neil Patel)',\n",
+ " 'published_utc': '2023-07-03T10:45:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/07/03/will-tesla-be-a-trillion-dollar-stock-by-2025/',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/738261/tesla-ev-electric-vehicle-charging-station.jpg',\n",
+ " 'description': 'This booming auto stock has already reached the 13-figure mark before.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'eCE57JRHsq8PR1S3tsiBmxWimHpFoFT-5cujsGfeupA',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': \"Tesla's stock jumps 6% premarket after second-quarter deliveries beat with 466,000 vehicles\",\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-07-03T10:06:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/tesla-beats-2nd-quarter-estimates-with-deliveries-of-466-000-vehicles-24efc14f',\n",
+ " 'tickers': ['F', 'GM', 'TSLA'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/tesla-beats-2nd-quarter-estimates-with-deliveries-of-466-000-vehicles-24efc14f',\n",
+ " 'image_url': 'https://images.mktw.net/im-805740/social',\n",
+ " 'description': 'Tesla Inc. delivered a record number of vehicles in the second quarter, beating market estimates after the electric carmaker increased discounts and incentives, the company reported on Sunday.'},\n",
+ " {'id': '6M8TFruQh0iUXcDdOKoIVHoq49i_o7SuVnX_uMq20mc',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Tesla shares rally on delivery numbers, AstraZeneca stock slumps on drug trial, and other stocks on the move',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-07-03T09:31:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/tesla-shares-rally-on-delivery-numbers-astrazeneca-stock-slumps-on-drug-trial-and-other-stocks-on-the-move-ebba7f65',\n",
+ " 'tickers': ['TSLA', 'AZN', 'TTCF', 'CC', 'DD', 'CTVA'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/tesla-shares-rally-on-delivery-numbers-astrazeneca-stock-slumps-on-drug-trial-and-other-stocks-on-the-move-ebba7f65',\n",
+ " 'image_url': 'https://images.mktw.net/im-801344/social',\n",
+ " 'description': 'Tesla and AstraZeneca stock head in opposite directions.'},\n",
+ " {'id': 'Fttx7fD_6ytlMp9UzInvOcFkSHLO_3UGdw-KeW77n2E',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Tesla Analyst Gary Black Flags Key Concern Amid Q2 Delivery Cheer: 'I Would Much Prefer...'\",\n",
+ " 'author': 'Shanthi Rexaline',\n",
+ " 'published_utc': '2023-07-03T09:19:43Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/23/07/33093409/tesla-analyst-gary-black-flags-key-concern-amid-q2-delivery-cheer-i-would-much-pref',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/33093409',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/Tesla_Inventory.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Tesla, Inc.\\xa0(NASDAQ:TSLA)\\xa0reported record-breaking\\xa0production and delivery numbers for the second quarter, but some skeptics argue that the optimistic outlook is already priced into the stock.\\nBut Wait: However,\\xa0Future Fund‘s\\xa0Gary Black\\xa0has a different perspective. In a tweet, he stated that Tesla’s stock is expected to rise on Monday in response to the update. With 466,000 deliveries reported by the electric vehicle maker, Black believes that the second-quarter adjusted earnings per share will surpass the current consensus of $0.78.\\n\\n\\nIMO $TSLA will rise tomorrow. A beat is a beat. 466K delivs should translate to higher 2Q Adj EPS than 447K delivs ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['Long Ideas',\n",
+ " 'News',\n",
+ " 'Analyst Color',\n",
+ " 'Equities',\n",
+ " 'Top Stories',\n",
+ " 'Movers',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': 'oO3rv_lvdoNL0pXQAHA2RaeJaKfUIMQYMY9HYtO6ZyY',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'An Industry Tesla May Struggle to Dominate (and a Better Stock to Buy Instead)',\n",
+ " 'author': 'newsfeedback@fool.com (Jason Hall and Tyler Crowe)',\n",
+ " 'published_utc': '2023-07-03T09:01:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/07/03/an-industry-tesla-may-struggle-to-dominate-and-a-b/',\n",
+ " 'tickers': ['PCAR', 'TSLA', 'NKLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/738284/truck-with-hydrogen-tank-trailer-stock-photo.jpg',\n",
+ " 'description': \"Tesla's headstart in cars may be hard to overcome. But in heavy trucking, the upstart may struggle to break the incumbent's hold.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'pU8k88D2PnLX76z7vVIgsv4Fr2zbPD3J2hseglpk7Gg',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Tesla, Nio And 3 Stocks To Watch Heading Into Monday',\n",
+ " 'author': 'Lisa Levin',\n",
+ " 'published_utc': '2023-07-03T08:02:51Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/earnings/23/07/33093049/tesla-nio-and-3-stocks-to-watch-heading-into-monday',\n",
+ " 'tickers': ['TSLA', 'LI', 'NIO', 'MRNA', 'TTCF'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/33093049',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/07/03/tesla-logo1.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'With U.S. stock futures trading mixed this morning on Monday, some of the stocks that may grab investor focus today are as follows:\\n\\nTesla, Inc. (NASDAQ: TSLA) reported record deliveries numbers for the second quarter. The company’s quarterly deliveries came in at 466,140 units, compared to the company-compiled estimate of 446,823 units and the FactSet-compiled estimate of 445,000 units. Tesla shares gained 1.7% to $261.77 in the after-hours trading session.\\nModerna, Inc. (NASDAQ: MRNA) ...',\n",
+ " 'keywords': ['News',\n",
+ " 'Earnings',\n",
+ " 'Penny Stocks',\n",
+ " 'Pre-Market Outlook',\n",
+ " 'Markets',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': 'FuLYD1KWlM2mhWnu6TWH_5iccUiQ6xs6BJZy4slFi9s',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Tesla's Blockbuster Q2 Deliveries: Gene Munster Shares 5 Takeaways — And Why He Rules Out Margin Recovery In June Quarter\",\n",
+ " 'author': 'Shanthi Rexaline',\n",
+ " 'published_utc': '2023-07-03T05:01:14Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/23/07/33092518/teslas-blockbuster-q2-deliveries-gene-munster-shares-5-takeaways-and-why-he-rules-o',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/33092518',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/Tesla_Models_0.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Tesla, Inc.’s (NASDAQ:TSLA) record second-quarter deliveries report has left analysts gushing over its strong numbers.\\nWhat Happened: Tesla’s price cuts are working in a big way, said Gene Munster, Managing Partner at Deepwater Asset Management.\\nAmong the analyst’s five takeaways are:\\n\\nJune quarter year-over-year deliveries growth accelerated from 36% in the first quarter to 83% in the second quarter\\nThe year-over-year delivery growth marked the fastest growth rate since June 2021\\nDeliveries growth averaged 50% over the past ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['News', 'Analyst Color', 'Equities', 'Top Stories']},\n",
+ " {'id': '5qefhiuTkmqX_RsAtqOoCfvzTfWpghNXNtSyPqLLtho',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Tesla's Record Q2 Deliveries Will Send 'Bears Into Hibernation,' Says Analyst: 2 Reasons For The Outperformance\",\n",
+ " 'author': 'Shanthi Rexaline',\n",
+ " 'published_utc': '2023-07-02T18:45:13Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/23/07/33091769/teslas-record-q2-deliveries-will-send-bears-into-hibernation-says-analyst-2-reasons',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/33091769',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/Tesla_Bear_0.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': \"New data from Tesla, Inc. (NASDAQ:TSLA) will send “bears into hibernation mode,” one analyst says, citing the car manufacturer’s record deliveries for the second quarter.\\nThe Tesla Analyst: Wedbush analyst Daniel Ives maintained an Outperform rating and a $300 price target for Tesla stock following news that the company delivered 466,140 cars in June — up 83% year-over-year.\\nMarket estimates expected deliveries to hover at around 445,900.\\nThe Tesla Thesis: Tesla's strong second-quarter deliveries beat is proof to combat the narrative of a murky backdrop, Ives said in a note.\\nSee Also: Tesla Reduces Prices In China After Offering Cash Subsidies\\n“Tesla continues to play chess while other EV players are playing checkers and this was another trophy case quarter for Musk & Co. despite much skepticism from the Street the last few months and will create some fireworks for the bears on these robust number,” the analyst said.\\nStrong demand, achieved on the ...Full story available on Benzinga.com\",\n",
+ " 'keywords': ['News',\n",
+ " 'Analyst Color',\n",
+ " 'Equities',\n",
+ " 'Reiteration',\n",
+ " 'Top Stories',\n",
+ " 'Analyst Ratings']},\n",
+ " {'id': 'StVobbIHeouwaA9Z3DlNRf_4CG3KTvMjbNPlWhCExiw',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Is Tesla Stock a Buy Now?',\n",
+ " 'author': 'newsfeedback@fool.com (Justin Pope)',\n",
+ " 'published_utc': '2023-07-02T13:35:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/07/02/is-tesla-stock-a-buy-now/',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/738190/tesla-ev-electric-vehicle-charging-station-3.jpg',\n",
+ " 'description': 'It comes down to long-term opportunities versus short-term risks.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'fogCXxpYoV-wbht3j1QKs4-ZkRpMf87U9L9zNxq4CrQ',\n",
+ " 'publisher': {'name': 'Seeking Alpha',\n",
+ " 'homepage_url': 'https://seekingalpha.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/seekingalpha.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/seekingalpha.ico'},\n",
+ " 'title': 'Wall Street Breakfast: The Week Ahead',\n",
+ " 'author': 'Wall Street Breakfast',\n",
+ " 'published_utc': '2023-07-02T11:18:39Z',\n",
+ " 'article_url': 'https://seekingalpha.com/article/4614762-wall-street-breakfast-week-ahead',\n",
+ " 'tickers': ['BK',\n",
+ " 'JPM',\n",
+ " 'BAC',\n",
+ " 'WFC',\n",
+ " 'GS',\n",
+ " 'MS',\n",
+ " 'TFC',\n",
+ " 'C',\n",
+ " 'STT',\n",
+ " 'AAPL',\n",
+ " 'TSLA',\n",
+ " 'LEVI',\n",
+ " 'KRUS',\n",
+ " 'SLP',\n",
+ " 'AZZ',\n",
+ " 'UONE',\n",
+ " 'IBRX',\n",
+ " 'VRM',\n",
+ " 'FGEN',\n",
+ " 'SPCE',\n",
+ " 'ROIV',\n",
+ " 'OLN',\n",
+ " 'XAIR',\n",
+ " 'JBSS',\n",
+ " 'PNC',\n",
+ " 'OZK',\n",
+ " 'COTY'],\n",
+ " 'image_url': 'https://static.seekingalpha.com/uploads/2023/7/1/unnamed__4_.jpg',\n",
+ " 'description': 'Listen on the go! A daily podcast of Wall Street Breakfast will be available by 8:00 a.m. on Seeking Alpha, iTunes, Stitcher and Spotify.'},\n",
+ " {'id': 'PY0_1n0BNjivVCVPDAYUXrMkegtobOy7hfez9HR4Szg',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'A Bull Market Is Coming: 1 Incredible Growth Stock to Buy Hand Over Fist Before It Soars 684%, According to Wall Street',\n",
+ " 'author': 'newsfeedback@fool.com (Danny Vena)',\n",
+ " 'published_utc': '2023-07-02T11:00:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/07/02/a-bull-market-is-coming-1-incredible-growth-stock/',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/738077/a-mom-with-a-young-child-looking-at-a-laptop-at-the-kitchen-table.jpg',\n",
+ " 'description': 'Unparalleled market share and a still sizable opportunity make this stock a compelling buy.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'pxgvEhGJbRXDY7vwDiMjAffcMlZlUDZZ8lFof7ysarU',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'A Top Stock to Buy No Matter Who Wins the EV Race',\n",
+ " 'author': 'newsfeedback@fool.com (Jason Hall and Tyler Crowe)',\n",
+ " 'published_utc': '2023-07-02T09:25:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/07/02/a-top-stock-to-buy-no-matter-who-wins-the-ev-race/',\n",
+ " 'tickers': ['BWA', 'TSLA', 'GOEV', 'LCID', 'RIVN'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/738268/ev-electric-vehicle-solid-state-battery.jpg',\n",
+ " 'description': 'The magic -- and the profits -- are in being a key supplier to the entire industry.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'Dm6jEFlf11RS1uu88lNnY6EJr5HK_3ypVoW5R2fzCUM',\n",
+ " 'publisher': {'name': 'Investing.com',\n",
+ " 'homepage_url': 'https://www.investing.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/investing.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/investing.ico'},\n",
+ " 'title': \"5 Huge Analyst Calls: Tesla Slashed at Goldman; Pfizer Cut on 'Uncertainty'\",\n",
+ " 'author': 'Investing.com',\n",
+ " 'published_utc': '2023-07-02T09:22:00Z',\n",
+ " 'article_url': 'https://www.investing.com/analysis/5-huge-analyst-calls--tesla-slashed-at-goldman-pfizer-cut-on-uncertainty-200639585',\n",
+ " 'tickers': ['TSLA', 'FYBR', 'PINS', 'PFE', 'NVDA'],\n",
+ " 'amp_url': 'https://m.investing.com/analysis/5-huge-analyst-calls--tesla-slashed-at-goldman-pfizer-cut-on-uncertainty-200639585?ampMode=1',\n",
+ " 'image_url': 'https://i-invdn-com.investing.com/redesign/images/seo/investingcom_analysis_og.jpg'},\n",
+ " {'id': 'popzCj6bYE_Y6sBqp_2398OkWUKmzTDFLQXPpIchQDM',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': \"The next catalyst for Tesla's stock is around the corner\",\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-07-01T17:49:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/the-next-catalyst-for-teslas-stock-is-around-the-corner-6267a06c',\n",
+ " 'tickers': ['TSLA', 'GM'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/the-next-catalyst-for-teslas-stock-is-around-the-corner-6267a06c',\n",
+ " 'image_url': 'https://images.mktw.net/im-804723/social',\n",
+ " 'description': \"Tesla's stock is struggling to sustain its momentum in recent sessions after an epic run earlier this month.\"},\n",
+ " {'id': 'ApaBMomhu919fPzDlsiokiToQxTAB3LukFBpvpyeBgk',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'This new bull market is just getting started. Buy stocks on weakness.',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-07-01T15:34:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/this-new-bull-market-is-just-getting-started-buy-stocks-on-weakness-89a37773',\n",
+ " 'tickers': ['NVDA',\n",
+ " 'META',\n",
+ " 'MSFT',\n",
+ " 'TSLA',\n",
+ " 'AAPL',\n",
+ " 'NDAQ',\n",
+ " 'HNNA',\n",
+ " 'CME',\n",
+ " 'OXY',\n",
+ " 'CRK',\n",
+ " 'MTDR'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/this-new-bull-market-is-just-getting-started-buy-stocks-on-weakness-89a37773',\n",
+ " 'image_url': 'https://images.mktw.net/im-800073/social',\n",
+ " 'description': \"How to tap into the market's uptrend in the second half of 2023\"},\n",
+ " {'id': 'JxHkpxyXo6820kO1znoxnWIUaALlWBiJ7vXeXBlIss4',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': '7 Best Stocks to Buy in July 2023',\n",
+ " 'author': 'newsfeedback@fool.com (Eric Cuka)',\n",
+ " 'published_utc': '2023-07-01T14:30:26Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/07/01/7-best-stocks-to-buy-in-july-2023/',\n",
+ " 'tickers': ['TSLA', 'MNST', 'ETSY', 'CRWD', 'SE', 'FOUR', 'HCP'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/738308/7-best-stocks-to-buy-now-july-2023-thumby.jpg',\n",
+ " 'description': 'Here are seven stocks to buy now that could unlock explosive gains in your growth-stock portfolio.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'A_D9vRMSnH2lT2j0RU6NTpV9DzozOiO-NtF2fv2dzew',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'What Happened to Tesla This Week?',\n",
+ " 'author': 'newsfeedback@fool.com (Neil Rozenbaum)',\n",
+ " 'published_utc': '2023-07-01T14:30:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/07/01/what-happened-to-tesla-this-week/',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/738288/tsla.png',\n",
+ " 'description': \"Here's everything you need to know about the electric vehicle (EV) maker's week.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'PhPeB06QaxXiBTyHwYnzfVwaDH1sePuq85flUYgd_Hk',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'These are the best-performing stocks in the 2023 bull market — and the worst',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-07-01T12:16:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/these-are-the-best-performing-stocks-in-the-2023-bull-market-and-the-worst-bc563861',\n",
+ " 'tickers': ['GOOGL',\n",
+ " 'GOOG',\n",
+ " 'META',\n",
+ " 'AMZN',\n",
+ " 'SPY',\n",
+ " 'AAPL',\n",
+ " 'MSFT',\n",
+ " 'NVDA',\n",
+ " 'CCL',\n",
+ " 'TSLA',\n",
+ " 'RCL',\n",
+ " 'PANW',\n",
+ " 'NCLH',\n",
+ " 'AMD',\n",
+ " 'PHM',\n",
+ " 'ALGN',\n",
+ " 'AAP',\n",
+ " 'KEY',\n",
+ " 'ZION',\n",
+ " 'ENPH',\n",
+ " 'CMA',\n",
+ " 'CFG',\n",
+ " 'NWL',\n",
+ " 'MRNA',\n",
+ " 'SCHW',\n",
+ " 'EPAM',\n",
+ " 'QQQ',\n",
+ " 'COMP',\n",
+ " 'MRVL',\n",
+ " 'AVGO',\n",
+ " 'FTNT',\n",
+ " 'WBA',\n",
+ " 'SIRI',\n",
+ " 'AMGN',\n",
+ " 'PDD',\n",
+ " 'KHC',\n",
+ " 'KDP',\n",
+ " 'XEL',\n",
+ " 'AEP',\n",
+ " 'DJIA',\n",
+ " 'CRM',\n",
+ " 'INTC',\n",
+ " 'AXP',\n",
+ " 'V',\n",
+ " 'MCD',\n",
+ " 'WMT',\n",
+ " 'BA',\n",
+ " 'CSCO',\n",
+ " 'JPM',\n",
+ " 'DOW',\n",
+ " 'MRK',\n",
+ " 'DIS',\n",
+ " 'CAT',\n",
+ " 'PG',\n",
+ " 'HD',\n",
+ " 'HON',\n",
+ " 'IBM',\n",
+ " 'KO',\n",
+ " 'VZ',\n",
+ " 'NKE',\n",
+ " 'GS',\n",
+ " 'JNJ',\n",
+ " 'TRV',\n",
+ " 'UNH',\n",
+ " 'CVX',\n",
+ " 'MMM'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/these-are-the-best-performing-stocks-in-the-2023-bull-market-and-the-worst-bc563861',\n",
+ " 'image_url': 'https://images.mktw.net/im-718877/social',\n",
+ " 'description': 'The cruise operators Carnival and Royal Caribbean have claimed spots alongside Nvidia, Meta Platforms and Tesla in the S&P 500 ranking of top five performers so far this year.'},\n",
+ " {'id': 'Y34VrsYx8P-sXvNNjuW53CV69l5GbNJX6yNcHzj52wU',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'EVs Get Supercharged',\n",
+ " 'author': 'newsfeedback@fool.com (Motley Fool Staff)',\n",
+ " 'published_utc': '2023-07-01T11:30:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/07/01/evs-get-supercharged/',\n",
+ " 'tickers': ['RIVN', 'F', 'GM', 'TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/737218/mfm_20230621.jpg',\n",
+ " 'description': \"We also take a look at organized retail crime syndicates and what's being done to stop them.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'n89psZlfhbXshQlsRjuFiwIphZWLy0mgSB4jh6pCTF8',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Cathie Wood Offloads Whopping $19M Tesla Stock Even As Bulls Brace For Q2 Deliveries Sunday',\n",
+ " 'author': 'Shanthi Rexaline',\n",
+ " 'published_utc': '2023-07-01T02:44:58Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/23/06/33088270/cathie-wood-offloads-whopping-19m-tesla-stock-even-as-bulls-brace-for-q2-deliveries',\n",
+ " 'tickers': ['TSLA', 'ARKW', 'ARKK'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/33088270',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/ARK_Photo_by_viewimage_on_Shutterstock_1.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': \"Cathie Wood's Ark Invest sold a massive chunk of Tesla Inc. (NASDAQ:TSLA) shares just ahead of the electric vehicle maker's second-quarter deliveries report.\\nWhat Happened: On Friday, Wood's Ark Invest, through its Ark Innovation ETF (NYSE:ARKK) and Ark Next Generation Internet ETF (NYSE:ARKW), sold 72,183 Tesla shares, valued at about $18.9 million.\\nArk has been a seller of Tesla stock in the recent past, as the stock continued to grind higher. The fund's net buying so far this year is positive with a tally of 1.193 billion purchases and 876,382 sale transactions.\\nFor ...Full story available on Benzinga.com\",\n",
+ " 'keywords': ['News', 'Analyst Color', 'Equities', 'Trading Ideas']},\n",
+ " {'id': 'd7EgQjcxFhIB7VP5Wn-u-OLX37FUXqghbyv6kd1qlBo',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': \"Wall Street Finishes a Strong First Half of 2023. What's Next?\",\n",
+ " 'author': 'newsfeedback@fool.com (Dan Caplinger)',\n",
+ " 'published_utc': '2023-06-30T22:40:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/06/30/wall-street-finishes-a-strong-first-half-of-2023-w/',\n",
+ " 'tickers': ['NVDA', 'AAPL', 'META', 'TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/738287/bull-and-bear-gettyimages-1182811599.jpg',\n",
+ " 'description': 'Investors are optimistic about what the future could bring.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'Pm8cp_Jt9ofbRRGwGLckQliGZ62r13LHgo1saakjgsg',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Why This Tesla Analyst Is Shooting For Below-Consensus Q2 Deliveries',\n",
+ " 'author': 'Shanthi Rexaline',\n",
+ " 'published_utc': '2023-06-30T20:01:40Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/23/06/33084616/why-this-tesla-analyst-is-shooting-for-below-consensus-q2-deliveries',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/33084616',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/tesla_vehicles_shutter.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': \"Electric vehicle pioneer Tesla, Inc. (NASDAQ:TSLA) is widely expected to report its second-quarter deliveries on Sunday. An analyst at RBC Capital Markets expects quarterly deliveries to come in below the consensus estimate.\\nThe Tesla Analyst: Tom Narayan has an Outperform rating and $305 price target for Tesla stock.\\nThe Tesla Thesis\\nQ2 Expectation: Tesla's total second-quarter deliveries will likely come in at 438,000 units, Narayan said, citing his checks of regionally reported data and app download data. The estimated number would mark a 72% year-over-year increase and a 4% sequential estimate.\\nThis compares to the company-compiled consensus estimate of 446,823 units. Future Fund's Gary Black said he expects second-quarter deliveries of 450,000 units, compared to FactSet's estimate of 445,000 units. China sales, according to the fund manager, would come in at 150,000 units.\\nRBC’s Region-Wise Forecast\\n\\n\\n\\n\\nGeography\\nDeliveries ...Full story available on Benzinga.com\",\n",
+ " 'keywords': ['Analyst Color',\n",
+ " 'Equities',\n",
+ " 'Previews',\n",
+ " 'Reiteration',\n",
+ " 'Top Stories',\n",
+ " 'Analyst Ratings']},\n",
+ " {'id': 'BFE1sDLBqG0-kJbkydY_Se1JzrB15xbfeGVlRE8wSb4',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'How will energy, climate change and EVs feature in the first Republican debate?',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-08-23T20:24:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/how-will-energy-climate-change-and-evs-feature-in-the-first-republican-debate-9232d4bb',\n",
+ " 'tickers': ['ICLN', 'TSLA'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/how-will-energy-climate-change-and-evs-feature-in-the-first-republican-debate-9232d4bb',\n",
+ " 'image_url': 'https://images.mktw.net/im-840246/social',\n",
+ " 'description': \"Republicans, including some taking the debate stage, have said a 2024 win means Biden's climate-focused IRA could be stripped to a shell of its former self.\"},\n",
+ " {'id': 'bKtHCTturq-OHAHIAUtMrb612waNn3rP2QRelKUJmrM',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Elon Musk Says Cybertruck Is Tesla's 'Best Product Ever'\",\n",
+ " 'author': 'Benzinga EV Insights',\n",
+ " 'published_utc': '2023-08-23T20:06:16Z',\n",
+ " 'article_url': 'https://www.benzinga.com/top-stories/23/08/34011292/elon-musk-says-cybertruck-is-teslas-best-product-ever',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/34011292',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/08/23/cybersnow.png?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Elon Musk, CEO of Tesla Inc (NASDAQ: TSLA),\\xa0took to X (formerly Twitter) Wednesday to post an image of himself seated in the driver\\'s seat of what he termed a \"production candidate\" Cybertruck. Musk\\'s smile was unmistakable and further fueled excitement and anticipation for the groundbreaking electric pickup truck.\\nJust drove the production candidate Cybertruck at Tesla Giga ...',\n",
+ " 'keywords': ['Top Stories', 'Tech']},\n",
+ " {'id': 'PDfDukqZ9XN9XtgJmTffRU4LnXYebgWbDz-0nqs-aaw',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'What Are Fractional Shares?',\n",
+ " 'author': 'newsfeedback@fool.com (Matthew Frankel, CFP®)',\n",
+ " 'published_utc': '2023-08-23T18:21:56Z',\n",
+ " 'article_url': 'https://www.fool.com/terms/f/what-are-fractional-shares/',\n",
+ " 'tickers': ['MELI', 'AAPL', 'DIS', 'BRK.B', 'BRK.A', 'AMZN', 'TSLA'],\n",
+ " 'image_url': 'https://m.foolcdn.com/media/dubs/images/Fractional_Shares.width-600.png'},\n",
+ " {'id': 'gorD0wNlgmhjxbjXq6elrw1tydVhTxaOryEWPGteIBI',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'The Largest Companies by Market Cap in 2023',\n",
+ " 'author': 'newsfeedback@fool.com (Lyle Daly)',\n",
+ " 'published_utc': '2023-08-23T15:12:08Z',\n",
+ " 'article_url': 'https://www.fool.com/research/largest-companies-by-market-cap/',\n",
+ " 'tickers': ['LLY',\n",
+ " 'AAPL',\n",
+ " 'MSFT',\n",
+ " 'BRK.A',\n",
+ " 'WMT',\n",
+ " 'JNJ',\n",
+ " 'NVDA',\n",
+ " 'JPM',\n",
+ " 'META',\n",
+ " 'GOOG',\n",
+ " 'TSM',\n",
+ " 'UNH',\n",
+ " 'BRK.B',\n",
+ " 'AMZN',\n",
+ " 'V',\n",
+ " 'PG',\n",
+ " 'XOM',\n",
+ " 'TSLA',\n",
+ " 'GOOGL'],\n",
+ " 'image_url': 'https://m.foolcdn.com/media/dubs/images/women-investing-stock-graphs.width-600.jpg',\n",
+ " 'description': 'Apple, Microsoft, and Saudi Aramco are the biggest companies measured by market cap.',\n",
+ " 'keywords': ['research']},\n",
+ " {'id': 'pmLHfHYF7U1lpmW1mgEYCB_KIJUw0wpJhZB-VZJUMao',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'If markets sell off again, get ready to buy U.S. stocks, says HSBC',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-08-23T14:45:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/if-markets-sell-off-again-get-ready-to-buy-u-s-stocks-says-hsbc-f8a3d70',\n",
+ " 'tickers': ['COMP',\n",
+ " 'FL',\n",
+ " 'NKE',\n",
+ " 'BBWI',\n",
+ " 'M',\n",
+ " 'PTON',\n",
+ " 'AAP',\n",
+ " 'NVDA',\n",
+ " 'NTAP',\n",
+ " 'UPS',\n",
+ " 'AMC',\n",
+ " 'TSLA',\n",
+ " 'APE',\n",
+ " 'GME',\n",
+ " 'NIO',\n",
+ " 'TTOO',\n",
+ " 'MULN',\n",
+ " 'MANU',\n",
+ " 'AAPL'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/if-markets-sell-off-again-get-ready-to-buy-u-s-stocks-says-hsbc-f8a3d70',\n",
+ " 'image_url': 'https://images.mktw.net/im-833528/social',\n",
+ " 'description': \"HSBC strategists say it's too early for investors to start bargain hunting after the recent two-week selloff, as they see another broad-based slump possibly ahead.\"},\n",
+ " {'id': 'kj3dtpm_PdsVK5Qji_r_wwuCU1E8nnacJV1NMdroxf4',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Stock-market slide: All S&P 500 sectors are down in August, on pace for a broad monthly drop not seen this year',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-08-23T12:49:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/all-s-p-500-sectors-are-down-in-august-on-pace-for-a-broad-monthly-drop-not-seen-this-year-6b94b61a',\n",
+ " 'tickers': ['AAPL', 'NVDA', 'TSLA', 'GOOG', 'GOOGL', 'DJIA', 'COMP'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/all-s-p-500-sectors-are-down-in-august-on-pace-for-a-broad-monthly-drop-not-seen-this-year-6b94b61a',\n",
+ " 'image_url': 'https://images.mktw.net/im-786253/social',\n",
+ " 'description': 'All of the S&P 500’s sectors are down in August in a sweeping stock-market tumble not seen since the end of last year, after the index surged in the first seven months of 2023.'},\n",
+ " {'id': 'IlwG7COmB4UXwydUMrEQE22zDax4aGYvnKR4Vark2es',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Cybertruck Launch Could Triple Tesla Stock By 2030, Says Fund Manager: 'Expect It To Ignite Interest In Entire Franchise'\",\n",
+ " 'author': 'Shanthi Rexaline',\n",
+ " 'published_utc': '2023-08-23T10:15:00Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/23/08/34001154/cybertruck-launch-could-triple-tesla-stock-by-2030-says-fund-manager-expect-it-to-i',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/34001154',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/Szczecin,poland-october,2020:,Tesla,Cybertruck,In,An,Industrial,Urban,,3d,Illustration..jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Tesla, Inc. (NASDAQ:TSLA) stock hasn\\'t taken off vertically notwithstanding the strong recovery seen this year. But sentiment could radically change with the launch of the Cybertruck, says a fund manager.\\nWhat Happened: With surging global electric vehicle adoption, the Cybertruck launch, and the next-gen EV at the $25,000-$35,000 price point, full-self driving achieving level 4 autonomy, Tesla\\'s long-term fundamentals remain “excellent,” said Future Fund co-founder and Managing Director Gary Black.\\nThe fund manager expects Tesla deliveries to leapfrog from 1.85 million in 2023 to 10.2 million by 2030, suggesting a 28% compounded annual growth rate. The earnings per share will likely soar from $3.60 in 2023 to $24 by 2030, he added.\\n“We continue to view Cytruck launch (\"rolling billboard\") as similar to Model Y launch in 2020 and expect ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['Long Ideas',\n",
+ " 'News',\n",
+ " 'Analyst Color',\n",
+ " 'Equities',\n",
+ " 'Top Stories',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': 'OWJXE4VJw68pUNYiQFYPiWEaub6WY6gdEco2iA5AUWE',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Down 9% in the Past 5 Days, Is Now the Right Time to Buy Bitcoin?',\n",
+ " 'author': 'newsfeedback@fool.com (Neil Patel)',\n",
+ " 'published_utc': '2023-08-23T10:10:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/08/23/down-last-5-days-is-now-right-time-buy-bitcoin/',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/744912/trader-pondering-at-screens.jpg',\n",
+ " 'description': 'The top digital asset is taking a breather after a rapid rise in 2023.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'PsS3iqOyJn32ec2L7hCJUy3nhiX-Ns-u-3OADVt4x9A',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Buying These 2 Stocks Could Be the Smartest Investing Move You Ever Make',\n",
+ " 'author': 'newsfeedback@fool.com (John Ballard)',\n",
+ " 'published_utc': '2023-08-23T09:03:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/08/23/buying-these-2-stocks-could-be-the-smartest-invest/',\n",
+ " 'tickers': ['AMZN', 'TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/744876/stock-chart-moving-up-making-money.jpg',\n",
+ " 'description': 'These industry leaders still offer tremendous long-term upside.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'm9RyWe5B2EKqx6L1GhJxl_30C-NekgX_xRN7lFjbZrM',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Tesla's 'Biggest Risk' Right Now? Analyst Says This Could Crash 2023 EPS By Up To 35% Below Estimates\",\n",
+ " 'author': 'Shanthi Rexaline',\n",
+ " 'published_utc': '2023-08-23T08:52:57Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/23/08/33998880/teslas-biggest-risk-right-now-analyst-says-this-could-crash-2023-eps-by-up-to-35-be',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/33998880',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/Stuttgart,,Germany,-,08-11-2023:,Person,Holding,Smartphone,With,Logo,Of.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Tesla, Inc. (NASDAQ:TSLA) stock has recovered from a six-session slump with back-to-back gains on Tuesday. Against the backdrop, an analyst pointed to the biggest risk which could be an overhang on the stock.\\nWhat Happened: The “biggest risk” for Tesla is new configurator price cuts, said Future Fund Managing Partner Gary Black. New configurator vehicles are fresh, customized vehicles configured by users using the digital solution provided by the company on its website.\\nIf Tesla goes ahead with lowering configurator vehicle prices, it would be matched by competitors and will unlikely give the volume lift the ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['News',\n",
+ " 'Analyst Color',\n",
+ " 'Equities',\n",
+ " 'Top Stories',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': 'JEn1CeXL0zCJXZMcV97GQ6nacuQ0gCJgjf6IpCBcxQQ',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'QQQ vs. RSP : Which Is the Better ETF Investment Now?',\n",
+ " 'author': 'Neena Mishra',\n",
+ " 'published_utc': '2023-08-22T22:09:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/2139417/qqq-vs-rsp-which-is-the-better-etf-investment-now',\n",
+ " 'tickers': ['GOOG',\n",
+ " 'AMZN',\n",
+ " 'AAPL',\n",
+ " 'MSFT',\n",
+ " 'NVDA',\n",
+ " 'TSLA',\n",
+ " 'QQQ',\n",
+ " 'RSP',\n",
+ " 'META'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/2139417/qqq-vs-rsp-which-is-the-better-etf-investment-now',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/default_article_images/default320.jpg',\n",
+ " 'description': 'Can mega cap stocks continue to surge or should investors bet on the rest of the market now?'},\n",
+ " {'id': '2qQ6vo3GVusFn_zNapBBSGl8Am-G__xYqdijDudz6IE',\n",
+ " 'publisher': {'name': 'PennyStocks',\n",
+ " 'homepage_url': 'https://www.pennystocks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/pennystocks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/pennystocks.jpeg'},\n",
+ " 'title': '3 Penny Stocks To Watch If You Like “Magnificent 7 Stocks”',\n",
+ " 'author': 'J. Samuel',\n",
+ " 'published_utc': '2023-08-22T18:56:51Z',\n",
+ " 'article_url': 'https://pennystocks.com/featured/2023/08/22/3-penny-stocks-to-watch-if-you-like-magnificent-7-stocks/',\n",
+ " 'tickers': ['NVDA', 'REAL', 'REKR', 'TSLA', 'TWOU'],\n",
+ " 'amp_url': 'https://pennystocks.com/featured/2023/08/22/3-penny-stocks-to-watch-if-you-like-magnificent-7-stocks/?amp',\n",
+ " 'image_url': 'https://pennystocks.com/wp-content/uploads/2022/11/tech-penny-stocks.jpg',\n",
+ " 'description': 'Magnificent 7 stocks ignite interest in penny stocks to watch this week.\\nThe post 3 Penny Stocks To Watch If You Like “Magnificent 7 Stocks” appeared first on Penny Stocks to Buy, Picks, News and Information | PennyStocks.com.',\n",
+ " 'keywords': ['Featured',\n",
+ " 'Penny Stocks Watch List',\n",
+ " 'Trading Penny Stocks',\n",
+ " 'magnificent 7 stocks',\n",
+ " 'magnificent 7 stocks definition',\n",
+ " 'meta',\n",
+ " 'penny stocks',\n",
+ " 'penny stocks to buy',\n",
+ " 'penny stocks to watch',\n",
+ " 'what are magnificent 7 stocks']},\n",
+ " {'id': 'msZHvviJBz_hSpN_HfEfGuNeBL237xN9YFbRi2jEslQ',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Stocks Dip On Rate Worries; Nvidia Backtracks From Record: What's Driving Markets Tuesday?\",\n",
+ " 'author': 'Shanthi Rexaline',\n",
+ " 'published_utc': '2023-08-22T17:48:59Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/earnings/23/08/33979928/us-stocks-set-to-extend-rally-as-fed-speeches-nvidia-q2-print-loom-analyst-says-dont-panic-as-pullb',\n",
+ " 'tickers': ['DKS',\n",
+ " 'HAS',\n",
+ " 'LZB',\n",
+ " 'DIA',\n",
+ " 'M',\n",
+ " 'FEZ',\n",
+ " 'MDT',\n",
+ " 'FXE',\n",
+ " 'TOL',\n",
+ " 'SPY',\n",
+ " 'TSLA',\n",
+ " 'TLT',\n",
+ " 'QQQ',\n",
+ " 'USO',\n",
+ " 'UUP',\n",
+ " 'COTY',\n",
+ " 'XLF',\n",
+ " 'XLRE',\n",
+ " 'BIDU',\n",
+ " 'ZM',\n",
+ " 'CSIQ',\n",
+ " 'NVDA',\n",
+ " 'SCHW',\n",
+ " 'URBN',\n",
+ " 'BJ'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/33979928',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/Wall_Street.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': \"Near midday during New York’s trading session, a momentum shift rippled through all indices, offsetting Monday’s gains. S&P Global Ratings downgraded five U.S. regional banks, and has concurrently revised the outlook for two additional banks, a move that has stirred apprehension among participants in the market.\\nThe move was largely attributed to hawkish rhetoric from the Federal Reserve.\\nThomas Barkin, president of the Richmond Fed, underscored the situation, suggested that a scenario where inflation remains elevated and demand remains robust could trigger the need for a more stringent monetary policy.\\nAs for Nvidia Corp. (NASDAQ:NVDA), although it initially surged to achieve new all-time highs at the outset of the trading session, it promptly reversed course. The semiconductor giant is set to disclose its earnings after the market close on Wednesday.\\nCues From Tuesday's Trading:\\nThe S&P 500 fell 0.2%, while the Dow Jones eased 0.4%. The Nasdaq edged 0.1% lower, while small caps in the Russell 2000 fell 0.4%. \\n ...Full story available on Benzinga.com\",\n",
+ " 'keywords': ['News',\n",
+ " 'Earnings',\n",
+ " 'Equities',\n",
+ " 'Futures',\n",
+ " 'Previews',\n",
+ " 'Top Stories',\n",
+ " 'Economics',\n",
+ " 'Federal Reserve',\n",
+ " 'Pre-Market Outlook',\n",
+ " 'Markets',\n",
+ " 'Movers',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': 'p9n9Iz2bjOozNqScyjZssKO9CdwllnEkHO0OUNNDWTA',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Apple only Big Tech stock ‘really hitting’ the S&P 500 as ‘little’ about August’s market slump appears worrisome, says DataTrek',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-08-22T16:51:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/apple-only-big-tech-stock-really-hitting-the-s-p-500-as-little-about-augusts-market-slump-appears-worrisome-says-datatrek-2f2f4c82',\n",
+ " 'tickers': ['AAPL', 'MSFT', 'GOOGL', 'AMZN', 'META', 'TSLA', 'NVDA'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/apple-only-big-tech-stock-really-hitting-the-s-p-500-as-little-about-augusts-market-slump-appears-worrisome-says-datatrek-2f2f4c82',\n",
+ " 'image_url': 'https://images.mktw.net/im-756251/social',\n",
+ " 'description': 'Stocks have been rattled in August by a rise in real interest rates and bond-market volatility, yet “very little about this selloff strikes us as fundamentally worrisome,” according to DataTrek Research.'},\n",
+ " {'id': 'Lwuj15UuqCSzdZrsNrikABJPKFbr0VVgAKn8XaXQT2E',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Something unusual happened on the Nasdaq Monday. It’s one more reason for investors to tread carefully, analyst says.',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-08-22T16:48:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/something-unusual-happened-on-the-nasdaq-monday-its-one-more-reason-for-investors-to-tread-carefully-analyst-says-de3f4f98',\n",
+ " 'tickers': ['COMP',\n",
+ " 'TSLA',\n",
+ " 'NVDA',\n",
+ " 'META',\n",
+ " 'MSFT',\n",
+ " 'AMZN',\n",
+ " 'AAPL',\n",
+ " 'GOOGL',\n",
+ " 'GOOG',\n",
+ " 'DJIA'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/something-unusual-happened-on-the-nasdaq-monday-its-one-more-reason-for-investors-to-tread-carefully-analyst-says-de3f4f98',\n",
+ " 'image_url': 'https://images.mktw.net/im-712113/social',\n",
+ " 'description': \"The Nasdaq Composite experienced something fairly unusual during Monday's rebound. According to one analyst, it's another reason to be cautious about stocks' nascent rebound this week.\"},\n",
+ " {'id': 'c3Xen-mbqgGS6Yq3ujgfC1mUHOQ71_KefA-uY5B9IUM',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'Tech Stocks are Back: ETFs in Focus',\n",
+ " 'author': 'Sanghamitra Saha',\n",
+ " 'published_utc': '2023-08-22T15:24:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/2139008/tech-stocks-are-back-etfs-in-focus',\n",
+ " 'tickers': ['NVDA',\n",
+ " 'TSLA',\n",
+ " 'PANW',\n",
+ " 'HACK',\n",
+ " 'TDIV',\n",
+ " 'SKYY',\n",
+ " 'PXQ',\n",
+ " 'ZM',\n",
+ " 'FITE',\n",
+ " 'BYTE'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/2139008/tech-stocks-are-back-etfs-in-focus',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/articles/main/2a/25154.jpg',\n",
+ " 'description': 'The tech-heavy Nasdaq Composite Index delivered awful performances for the last three weeks, only to stage a recovery this week.'},\n",
+ " {'id': 'ogWLZQTZtOLSeVVDhr1RVyWBpJCVnatMs2N6webqJwI',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Positive Stock Market Sentiment From Wall Street Positioning For Another Leg Of AI Frenzy And PPT Buying Stocks In China',\n",
+ " 'author': 'The Arora Report',\n",
+ " 'published_utc': '2023-08-22T15:09:30Z',\n",
+ " 'article_url': 'https://www.benzinga.com/23/08/33987156/positive-stock-market-sentiment-from-wall-street-positioning-for-another-leg-of-ai-frenzy-and-ppt-bu',\n",
+ " 'tickers': ['QQQ',\n",
+ " 'META',\n",
+ " 'GLD',\n",
+ " 'SLV',\n",
+ " 'SPY',\n",
+ " 'USO',\n",
+ " 'AMZN',\n",
+ " 'GOOG',\n",
+ " 'MSFT',\n",
+ " 'NVDA',\n",
+ " 'CMA',\n",
+ " 'DKS',\n",
+ " 'KEY',\n",
+ " 'LOW',\n",
+ " 'AAPL',\n",
+ " 'TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/33987156',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/yiorgos-ntrahas-mcauhlgirvs-unsplash_3.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': \"To gain an edge, this is what you need to know today.\\n\\nPositive Sentiment\\nPlease\\xa0click here\\xa0for a chart of NVIDIA Corp (NASDAQ: NVDA).\\nNote the following:\\n\\nThere is positive sentiment in the stock market in the early trade for a number of reasons explained below.\\nThe Morning Capsule is about the big picture, not an individual stock.\\xa0The chart of Nvidia stock is being used to illustrate the point.\\nThe chart shows Nvidia's 8.47% gain on aggressive investor buying ahead of earnings that will be released tomorrow after the close. We shared with you various factors related to Nvidia in the prior Morning Capsule before most of the big rise yesterday.\\nThe chart shows that Nvidia is up another 2.41% as of this writing in the premarket.\\nThe chart shows the big rise in Nvidia when it reported earnings last quarter. Investors are expecting a similar rise Wednesday after the close.\\nThe Arora Report very long term target on Nvidia was raised this morning.\\xa0Other than that, there is no change in our prior call on Nvidia.\\xa0We previously wrote:\\n\\nIn The Arora Report analysis, the demand for\\xa0AI\\xa0chips from Nvidia is far exceeding supply.\\xa0As good as this sounds, the whisper numbers have moved up.\\xa0Nvidia guided current quarter sales to $11B but whisper numbers are around $12B.\\xa0A\\xa0lot will also depend on what Nvidia guides for the current quarter that ends in October. Whisper numbers are around $12.5B.\\n\\n\\nHistorically, it is common for a high flying stock to fall after great earnings because even great earnings often do not match high whisper numbers.\\xa0To persuade their followers to buy Nvidia stock now before the earnings, momo gurus are preempting the possibility of Nvidia earnings coming below the high whisper numbers with a new mantra.\\xa0The new mantra is even if Nvidia earnings are less than whisper numbers, it does not matter because the artificial intelligence frenzy will ultimately run the stock higher.\\nWall Street is positioning for another leg up in the artificial intelligence frenzy rally.\\xa0 Understanding positioning gives investors an edge.\\xa0For those who are interested in learning about positioning, listen to the podcast titled “Market Mechanics: Positioning.”\\nInvestors are also excited about stocks in Hong Kong rising about 2% within minutes.\\nIn The Arora Report analysis, the 2% rise in Hong Kong stocks was most likely caused by the Chinese Plunge Protection Team (PPT) buying stocks through state entities. PPT is believed to be a secretive team inside the Chinese government with the responsibility to buy stocks to stop them from plunging.\\xa0 Chinese learned from the\\xa0U.S.\\xa0The\\xa0U.S. government is also believed to have ...Full story available on Benzinga.com\",\n",
+ " 'keywords': ['Cryptocurrency', 'Asia', 'Economics', 'Markets', 'Tech']},\n",
+ " {'id': 'Pt20Losuqt6eQB7d1r7rLVOPEkWyadTWqCqYAbeyX-I',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'Tesla Stock Surges on Cybertruck Launch, Model 3 Refresh',\n",
+ " 'author': 'Bryan Hayes',\n",
+ " 'published_utc': '2023-08-22T14:24:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/commentary/2139086/tesla-stock-surges-on-cybertruck-launch-model-3-refresh',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/commentary/2139086/tesla-stock-surges-on-cybertruck-launch-model-3-refresh',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/articles/main/fe/2036.jpg',\n",
+ " 'description': \"Monday's climb of more than 7% has the bulls knocking on the door once again.\"},\n",
+ " {'id': 'iL808u1-_fmgAiP-5zbDNbaVMAxiQvvi-M8cQUd_ngg',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Nvidia may be the AI stock for now, but here are the picks for later, says Goldman Sachs',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-08-22T14:19:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/nvidia-may-be-the-ai-stock-for-now-but-here-are-the-picks-for-later-says-goldman-sachs-b84b5818',\n",
+ " 'tickers': ['COMP',\n",
+ " 'NVDA',\n",
+ " 'MSFT',\n",
+ " 'META',\n",
+ " 'ATVI',\n",
+ " 'TSLA',\n",
+ " 'LOW',\n",
+ " 'FN',\n",
+ " 'ZM',\n",
+ " 'BHP',\n",
+ " 'AMC',\n",
+ " 'NIO',\n",
+ " 'APE',\n",
+ " 'TTOO',\n",
+ " 'GME',\n",
+ " 'AAPL',\n",
+ " 'MULN',\n",
+ " 'AMZN',\n",
+ " 'XLK'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/nvidia-may-be-the-ai-stock-for-now-but-here-are-the-picks-for-later-says-goldman-sachs-b84b5818',\n",
+ " 'image_url': 'https://images.mktw.net/im-661016/social',\n",
+ " 'description': 'Think beyond the usual household AI names and look into the future, says Goldman Sachs, which offers a list of long-term plays.'},\n",
+ " {'id': 'k142hLWDysRMu1m6TUrOwHAZSjTUDN9ECiJog_B-Q5U',\n",
+ " 'publisher': {'name': 'Seeking Alpha',\n",
+ " 'homepage_url': 'https://seekingalpha.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/seekingalpha.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/seekingalpha.ico'},\n",
+ " 'title': 'A Rising Interest Rate Freight Train Is Coming For The Economy',\n",
+ " 'author': 'Logan Kane',\n",
+ " 'published_utc': '2023-08-22T13:29:44Z',\n",
+ " 'article_url': 'https://seekingalpha.com/article/4630234-a-rising-interest-rate-freight-train-is-coming-for-the-economy',\n",
+ " 'tickers': ['AAPL',\n",
+ " 'AMZN',\n",
+ " 'MSFT',\n",
+ " 'NVDA',\n",
+ " 'SPY',\n",
+ " 'TSLA',\n",
+ " 'JPM',\n",
+ " 'TLT',\n",
+ " 'XLI',\n",
+ " 'KBE',\n",
+ " 'XLRE'],\n",
+ " 'image_url': 'https://static.seekingalpha.com/cdn/s3/uploads/getty_images/157195793/image_157195793.jpg?io=getty-c-w1536',\n",
+ " 'description': 'Interest rates are skyrocketing, with the 30-year fixed-rate mortgage hitting 7.48% this week. Read more here.'},\n",
+ " {'id': 'SVFq5QOK4P4RVBuZBQEZvRpS_PyfCm_GrjYMcbzsYxU',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'The Mood is Back in Tech Investing: ETFs in Focus',\n",
+ " 'author': 'Sanghamitra Saha',\n",
+ " 'published_utc': '2023-08-22T12:41:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/2139008/the-mood-is-back-in-tech-investing-etfs-in-focus',\n",
+ " 'tickers': ['NVDA',\n",
+ " 'TSLA',\n",
+ " 'PANW',\n",
+ " 'HACK',\n",
+ " 'TDIV',\n",
+ " 'SKYY',\n",
+ " 'PXQ',\n",
+ " 'ZM',\n",
+ " 'FITE',\n",
+ " 'BYTE'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/2139008/the-mood-is-back-in-tech-investing-etfs-in-focus',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/articles/main/2a/25154.jpg',\n",
+ " 'description': 'The tech-heavy Nasdaq Composite Index delivered awful performances for the last three weeks, only to stage a recovery this week.'},\n",
+ " {'id': '_T48rjBKI_yIekmtvaQMFj6OMoNHZspcnbma6ZjJy9k',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': \"Texas Mandates Tesla's (TSLA) NACS Plugs for New Stations\",\n",
+ " 'author': 'Zacks Equity Research',\n",
+ " 'published_utc': '2023-08-22T12:19:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/2139034/texas-mandates-teslas-tsla-nacs-plugs-for-new-stations',\n",
+ " 'tickers': ['TSLA', 'ALSN', 'OSK', 'GNTX'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/2139034/texas-mandates-teslas-tsla-nacs-plugs-for-new-stations',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/articles/main/8b/1008.jpg',\n",
+ " 'description': \"Texas approves plan for the installation of Tesla's (TSLA) NACS plug at new charging station.\"},\n",
+ " {'id': 'GREORVC0talf_kQBVGTVoNF7enhHY41VulWCo4UMFAY',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': '3 Catalysts to Take Tesla Stock to $300',\n",
+ " 'author': 'newsfeedback@fool.com (Daniel Sparks)',\n",
+ " 'published_utc': '2023-08-22T12:03:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/08/22/3-catalysts-to-take-tesla-stock-to-300/',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/744952/tesla-stock-buy-cybertuck.jpeg',\n",
+ " 'description': 'The electric-car maker has three major growth drivers in the works that could propel shares substantially higher over the next 12 months.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'FEdqL4Uj4dANX93QsAbSRO1KPrd_B33wO0UMcWPqEcQ',\n",
+ " 'publisher': {'name': 'Investing.com',\n",
+ " 'homepage_url': 'https://www.investing.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/investing.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/investing.ico'},\n",
+ " 'title': 'Tesla Stock Looks Poised for Turnaround Despite Headwinds',\n",
+ " 'author': 'Investing.com',\n",
+ " 'published_utc': '2023-08-22T11:28:00Z',\n",
+ " 'article_url': 'https://www.investing.com/analysis/tesla-stock-looks-poised-for-turnaround-despite-headwinds-200641185',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://m.investing.com/analysis/tesla-stock-looks-poised-for-turnaround-despite-headwinds-200641185?ampMode=1',\n",
+ " 'image_url': 'https://i-invdn-com.investing.com/redesign/images/seo/investingcom_analysis_og.jpg'},\n",
+ " {'id': 'dKXwgwINVKpgxlUFyK1Y7BQ-kdMr21tJuXmOLHZRwVU',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': \"Tesla's stock jumps 7% after Baird highlights Cybertruck, other 'catalysts' for the year\",\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-08-22T10:30:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/teslas-stock-jumps-3-5-premarket-after-baird-outlines-catalysts-for-the-second-half-a1920bc9',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/teslas-stock-jumps-3-5-premarket-after-baird-outlines-catalysts-for-the-second-half-a1920bc9',\n",
+ " 'image_url': 'https://images.mktw.net/im-819220/social',\n",
+ " 'description': 'A Baird analyst highlights some positive developments ahead of the EV maker in the second half of the year, including the launch of the Cybertruck.'},\n",
+ " {'id': '1vAGLKwttTd_7Pu7QW3x4AtsJWNeOOdyaxMxFlZg6Yw',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Tesla Inching Closer To India Debut? Spy Shots Of Model Y At Mahindra Facility Build Up Buzz',\n",
+ " 'author': 'Shomik Sen Bhattacharjee',\n",
+ " 'published_utc': '2023-08-22T10:20:34Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/23/08/33977786/tesla-inching-closer-to-india-debut-spy-shots-of-model-y-at-mahindra-facility-build-up-buzz',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/33977786',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/08/22/shutterstock_2263245917.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'This story was first published on the Benzinga India portal.\\nElon Musk-led\\xa0Tesla Inc (NASDAQ: TSLA), has finally set its wheels on Indian terrain, ending years of eager anticipation. The buzz reignited when Carversal unveiled spy shots of the Tesla Model Y, discreetly stationed at Mahindra’s Pune Test Facility. These snapshots not only fuel hope but also paint a clearer picture of Tesla’s long-awaited Indian debut.\\nThe story so ...',\n",
+ " 'keywords': ['News', 'Rumors', 'Top Stories', 'Tech']},\n",
+ " {'id': 'q7ApLNJiC3XCF7tg35NYuXCBqrR6nOQxxStv4eO9UKU',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Prediction: 3 Unstoppable Stocks Set to Join Apple, Microsoft, Amazon, Alphabet, and Nvidia in the $1 Trillion Club by 2030',\n",
+ " 'author': 'newsfeedback@fool.com (Anthony Di Pizio)',\n",
+ " 'published_utc': '2023-08-22T09:51:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/08/22/3-stocks-apple-microsoft-amazon-nvidia-1-trillion/',\n",
+ " 'tickers': ['META', 'ORCL', 'TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/744850/a-blue-tesla-car-driving-on-an-open-road.jpg',\n",
+ " 'description': \"There might soon be a few new members of the stock market's most exclusive club.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'J1pXEMagbvlgwouuvMNPNI9CY1G1JDBE70cRiL5XZ08',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Jim Cramer Dives Deep Into Nvidia's 'Really Incredible' Monday Surge: What Stock's Short Interest Looks Like Ahead Of Q2 Print\",\n",
+ " 'author': 'Shanthi Rexaline',\n",
+ " 'published_utc': '2023-08-22T09:43:07Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/23/08/33978390/jim-cramer-dives-deep-into-nvidias-really-incredible-monday-surge-what-stocks-short',\n",
+ " 'tickers': ['NVDA', 'AMD', 'TSLA', 'PANW', 'META'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/33978390',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/Nvidia_20.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Nvidia Corp. (NASDAQ:NVDA) shares rallied over 8% on Monday, thanks to positive analysts\\' commentaries concerning its second-quarter results due on Wednesday.\\nThe stock settled Monday\\'s session up 8.47% at $469.67, according to Benzinga Pro data, taking the year-to-date gain to over 221%.\\nWhat Happened: \"Gigantic amount of short covering in Nvidia and Palo Alto Networks, Inc. (NASDAQ:PANW), said CNBC Mad Money host Jim Cramer in a post on X, formerly Twitter.\\n\"Really incredible…Just so much shorting…,\" he said.\\nShort interest in Nvidia stock at the end of July 31 was at 26,400,064, down from 31,396,008 by July 14, according ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['Long Ideas',\n",
+ " 'News',\n",
+ " 'Analyst Color',\n",
+ " 'Earnings',\n",
+ " 'Equities',\n",
+ " 'Previews',\n",
+ " 'Top Stories',\n",
+ " 'Tech',\n",
+ " 'Media',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': 'H-kGbgK3vgeasvd9dZdXRwEu_mxXFMJfKF-ouqKnv3M',\n",
+ " 'publisher': {'name': 'Investing.com',\n",
+ " 'homepage_url': 'https://www.investing.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/investing.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/investing.ico'},\n",
+ " 'title': \"Elon Musk's Bitcoin Sales Rock Crypto Stocks\",\n",
+ " 'author': 'MarketBeat.com',\n",
+ " 'published_utc': '2023-08-22T05:43:00Z',\n",
+ " 'article_url': 'https://www.investing.com/analysis/elon-musks-bitcoin-sales-rock-crypto-stocks-what-happens-next-200641171',\n",
+ " 'tickers': ['RIOT', 'MARA', 'COIN', 'TSLA', 'ARKF', 'ARKW'],\n",
+ " 'amp_url': 'https://m.investing.com/analysis/elon-musks-bitcoin-sales-rock-crypto-stocks-what-happens-next-200641171?ampMode=1',\n",
+ " 'image_url': 'https://i-invdn-com.investing.com/redesign/images/seo/investingcom_analysis_og.jpg'},\n",
+ " {'id': 'UCNqFvGNALKacy3atqzQk3R2NBdcd50ft4fBU4_A5Qw',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Tesla, Nvidia Surge By Same Value As Goldman Sachs, Starbucks In 1 Day',\n",
+ " 'author': 'Aaron Bry',\n",
+ " 'published_utc': '2023-08-21T21:08:39Z',\n",
+ " 'article_url': 'https://www.benzinga.com/top-stories/23/08/33973181/tesla-nvidia-surge-by-same-value-as-goldman-sachs-starbucks-in-1-day',\n",
+ " 'tickers': ['NVDA',\n",
+ " 'SBUX',\n",
+ " 'BX',\n",
+ " 'CVS',\n",
+ " 'GS',\n",
+ " 'LMT',\n",
+ " 'MO',\n",
+ " 'T',\n",
+ " 'BUD',\n",
+ " 'TSLA',\n",
+ " 'SHOP',\n",
+ " 'ABNB',\n",
+ " 'SONY'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/33973181',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/08/21/nvidia-large-language-model-services.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'When people on Wall Street call companies like NVIDIA Corp (NASDAQ: NVDA) and Tesla Inc (NASDAQ: TSLA) tech giants,\\xa0they really aren’t kidding about the giant part.\\nAfter the companies traded higher by 8.5% and 7.3%, respectively, on Monday, the pair added more than $120 billion to their combined market value, according to data from Benzinga Pro.\\xa0\\nThis combined total matches the entire value of companies like Starbucks Corp (NASDAQ: SBUX), Goldman Sachs Group (NYSE:',\n",
+ " 'keywords': ['Top Stories', 'Movers', 'Tech', 'Trading Ideas', 'General']},\n",
+ " {'id': 'Yi4xCN1PgonQrmRzFZ_2nsEmVFLqYKWXeT-ya5QQ39g',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'QQQ vs. RSP : Which Is the Better ETF Investment Now?',\n",
+ " 'author': 'Neena Mishra',\n",
+ " 'published_utc': '2023-08-21T20:46:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/2138878/qqq-vs-rsp-which-is-the-better-etf-investment-now',\n",
+ " 'tickers': ['GOOG',\n",
+ " 'AMZN',\n",
+ " 'AAPL',\n",
+ " 'MSFT',\n",
+ " 'NVDA',\n",
+ " 'TSLA',\n",
+ " 'QQQ',\n",
+ " 'RSP',\n",
+ " 'META'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/2138878/qqq-vs-rsp-which-is-the-better-etf-investment-now',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/articles/main/01/36484.jpg',\n",
+ " 'description': 'Can mega cap stocks continue to surge or should investors bet on the rest of the market now?'},\n",
+ " {'id': 'jnqiy74LPNdueOB0-wk6s8TYHO4zX2X8GL8q6zJ6WkQ',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'S&P 500, Nasdaq close higher after three straight weekly declines',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-08-21T20:29:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/stock-index-futures-gain-ground-after-three-week-losing-streak-ee1acee4',\n",
+ " 'tickers': ['DJIA',\n",
+ " 'COMP',\n",
+ " 'JNJ',\n",
+ " 'GS',\n",
+ " 'PANW',\n",
+ " 'TSLA',\n",
+ " 'NKLA',\n",
+ " 'AMC',\n",
+ " 'APE'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/stock-index-futures-gain-ground-after-three-week-losing-streak-ee1acee4',\n",
+ " 'image_url': 'https://images.mktw.net/im-828973/social',\n",
+ " 'description': 'The S&P 500 and Nasdaq Composite end with their first gains of the past five sessions despite another surge in long-dated Treasury yields.'},\n",
+ " {'id': 'gjTikHriB3bo_RBcLR-UDKiWpkpYcTZLKpoQ_ksg9uM',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Meta Is Throwing Gas on the Flames in Feud With Elon Musk With Its Latest Move -- Is the Stock a Buy?',\n",
+ " 'author': 'newsfeedback@fool.com (Keith Noonan)',\n",
+ " 'published_utc': '2023-08-21T18:17:58Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/08/21/meta-is-throwing-gas-on-the-flames-in-musk-feud/',\n",
+ " 'tickers': ['META', 'TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/744874/gettyimages-1304459914.jpg',\n",
+ " 'description': 'Mark Zuckerberg is gearing up for a long fight with the company formerly known as Twitter.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': '8xmJTKhbWIRS8FqIuQbvR2pVhwx1JhoR6RF1XcgXqMc',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"US Stocks Mixed, Treasury Yields Soar To More Than A Decade High: What's Driving Markets Monday?\",\n",
+ " 'author': 'Shanthi Rexaline',\n",
+ " 'published_utc': '2023-08-21T17:25:21Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/earnings/23/08/33959699/us-stocks-gear-up-for-rebound-as-traders-eye-nvidia-earnings-jackson-hole-analyst-sees-bond-yield-c',\n",
+ " 'tickers': ['AMC',\n",
+ " 'PANW',\n",
+ " 'XLRE',\n",
+ " 'DIA',\n",
+ " 'MRNA',\n",
+ " 'FEZ',\n",
+ " 'FXE',\n",
+ " 'NKLA',\n",
+ " 'GLD',\n",
+ " 'SPY',\n",
+ " 'TLT',\n",
+ " 'USO',\n",
+ " 'UUP',\n",
+ " 'XLE',\n",
+ " 'XLK',\n",
+ " 'NDSN',\n",
+ " 'NVDA',\n",
+ " 'TSLA',\n",
+ " 'QQQ'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/33959699',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/WallStreet.NYSE_3.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'On Monday, U.S. stocks made a cautious attempt at bouncing back following three consecutive weeks of losses. The upward momentum seems uncertain, and the recent increases in Treasury yields are posing challenges for the market bulls. \\nThe 10-year Treasury yield reached 4.35%, reaching its highest level since October 2007.\\nNVIDIA Corp. (NASDAQ:NVDA) stood out as a positive exception, moving higher by 5%. This boost was attributed to analysts revising their price targets in a positive direction and investors eagerly awaiting the earnings report set for Wednesday.\\nWith a relatively quiet week in terms of economic data releases, all eyes are on the Federal Reserve’s Jackson Hole Symposium, scheduled for Thursday and Friday. Federal Reserve Chair Jerome Powell is expected to deliver a speech Friday.\\nCues From Monday’s Trading:\\nThe S&P 500 edged 0.1% higher, while the Dow Jones Industrial fell 0.4%. The Nasdaq 100 was the clear outperformer, up 1%, while small caps in the Russell 2000 index fell 0.6%. \\n ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['News',\n",
+ " 'Earnings',\n",
+ " 'Equities',\n",
+ " 'Broad U.S. Equity ETFs',\n",
+ " 'Futures',\n",
+ " 'Previews',\n",
+ " 'Top Stories',\n",
+ " 'Economics',\n",
+ " 'Federal Reserve',\n",
+ " 'Pre-Market Outlook',\n",
+ " 'Markets',\n",
+ " 'Movers',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': 'XmN_8WihkFgSVm3HRflp51EDrb6dhj-j_qamZijte4o',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Is NVIDIA Overpriced? Cathie Wood's Ark Invest Highlights 3 Other AI Stocks\",\n",
+ " 'author': 'Chris Katje',\n",
+ " 'published_utc': '2023-08-21T17:20:44Z',\n",
+ " 'article_url': 'https://www.benzinga.com/etfs/specialty-etfs/23/08/33966459/is-nvidia-overpriced-cathie-woods-ark-invest-points-to-3-other-stocks',\n",
+ " 'tickers': ['TWLO',\n",
+ " 'META',\n",
+ " 'SPY',\n",
+ " 'ARKF',\n",
+ " 'AMZN',\n",
+ " 'ARKX',\n",
+ " 'CSCO',\n",
+ " 'GOOG',\n",
+ " 'MSFT',\n",
+ " 'NVDA',\n",
+ " 'AAPL',\n",
+ " 'TSLA',\n",
+ " 'PATH',\n",
+ " 'QQQ',\n",
+ " 'GOOGL',\n",
+ " 'ARKQ',\n",
+ " 'ARKW',\n",
+ " 'ARKK'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/33966459',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/08/21/nvidia_chart_shutter.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Over the last year, the conversation among investors and analysts has prominently centered on artificial intelligence.\\nThe topic of artificial intelligence is among the \"Big Ideas\" from Cathie Wood-led Ark Invest, but the ETF company says the days of Nvidia Corporation\\'s (NASDAQ: NVDA) reign as the go-to AI investment may be waning.\\nWhat Happened: Shares of Nvidia are up over 200% year-to-date, as the company is seen as one of the major beneficiaries of growth in the artificial intelligence space. Wood and Ark Invest were previous investors in Nvidia, but sold their shares when they believed the\\xa0valuation got too high.\\nWood and Ark might be signaling Nvidia is hitting overvalued levels, calling for investors to look at small-cap companies instead.\\n“We believe the days of relying solely on mega-cap companies for tech innovation are waning and an era of AI-centric small-cap companies is emerging. Find out where we see potential growth opportunities built on AI,” Ark Invest tweeted Monday.\\nIn a new\\xa0report, Ark says that artificial intelligence could be a “long-term growth driver more impactful than the internet.”\\nThe research report says that mega-cap technology stocks saw a rally on the excitement surrounding artificial intelligence possibilities, but this might be the wrong move for traders to make.\\n“We believe non-benchmark names are likely to accrue more value from AI over time.”\\nRelated Link:\\xa0Generative AI On The Rise: 93% Of Companies To Boost Spending, US May Fall Behind\\nAvoiding Mega Caps: The research report said that benchmarks like the S&P 500 and Nasdaq 100, tracked by the SPDR S&P 500 ETF Trust (NYSE: SPY) and Invesco QQQ Trust (NASDAQ: QQQ), respectively, saw rallies led by artificial intelligence-linked names.\\nApple Inc (NASDAQ:',\n",
+ " 'keywords': ['Specialty ETFs', 'Top Stories', 'Trading Ideas', 'ETFs']},\n",
+ " {'id': 'eI8Ql67Oc63wwAuNbrYb4F9Mzoi284kc0dY-tw_6ngE',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Elon Musk: The Unofficial Power Behind US Government Decisions?',\n",
+ " 'author': 'Michael Cohen',\n",
+ " 'published_utc': '2023-08-21T16:00:08Z',\n",
+ " 'article_url': 'https://www.benzinga.com/government/23/08/33966569/elon-musks-shadow-rule-the-unofficial-power-behind-us-government-decisions',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/33966569',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/08/21/musk_capitol_shutter.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': \"Elon Musk's role in the U.S. government and his influence across various industries have become a significant cause for concern. A newly published article in The New Yorker highlights\\xa0how the\\xa0government is struggling\\xa0to rein in Musk's power and decision-making.\\n1. The Government's Reliance On Musk\\nThe U.S. government has become heavily reliant on Elon Musk's companies, such as SpaceX and Tesla Inc (NASDAQ: TSLA), in critical areas like space exploration, transportation\\xa0and the future of energy.\\nSpaceX is the sole means of transporting NASA crew into space, and the government's plans for electric cars largely depend on Tesla, The New Yorker reports\\xa0Monday.\\xa0This dependency presents challenges, as Musk's risk-taking and capricious nature make him difficult to control.\\n2. Musk's Singular Role, Unfamiliar Challenges\\nMusk's unique position as a civilian arbiter in geopolitical conflicts, like the Ukrainian war, creates unfamiliar challenges for ...\",\n",
+ " 'keywords': ['Government', 'Top Stories', 'Tech', 'Media']},\n",
+ " {'id': 'wqvmpCN78INTr22DVadPUQvtprEbazVQHdwmsWrpvME',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Why Tesla Stock Might Break Its Losing Streak Today',\n",
+ " 'author': 'newsfeedback@fool.com (Howard Smith)',\n",
+ " 'published_utc': '2023-08-21T15:59:37Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/08/21/why-tesla-stock-jumped-today/',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/744877/0x0-modelx_08.jpg',\n",
+ " 'description': 'Tesla shares have been on a six-day losing streak.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'EBfkJuYcUrnUk9rao6_PRGEbkGkAIVBKcLgNEOLQ38U',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'What Are Multibaggers?',\n",
+ " 'author': 'newsfeedback@fool.com (Jeremy Bowman)',\n",
+ " 'published_utc': '2023-08-21T15:07:14Z',\n",
+ " 'article_url': 'https://www.fool.com/terms/m/multibaggers/',\n",
+ " 'tickers': ['AMZN', 'TSLA', 'NFLX'],\n",
+ " 'image_url': 'https://m.foolcdn.com/media/dubs/images/GettyImages-497392002_--_upwards_growth_trend_.width-600.jpg'},\n",
+ " {'id': 'xsq7OiSg2C5CM892j0aRko31Ekmwufqa1m8i-hFDrWA',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Palo Alto Networks shares surge after earnings, Tesla climbs and more stocks on the move',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-08-21T15:07:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/palo-alto-networks-shares-surge-after-earnings-napco-security-tumbles-and-more-stocks-on-the-move-ef349d01',\n",
+ " 'tickers': ['PANW',\n",
+ " 'TSLA',\n",
+ " 'ESTE',\n",
+ " 'SPGC',\n",
+ " 'GOLF',\n",
+ " 'KVUE',\n",
+ " 'JNJ',\n",
+ " 'REGN',\n",
+ " 'MRNA',\n",
+ " 'PFE',\n",
+ " 'BNTX',\n",
+ " 'NSSC',\n",
+ " 'JTAI',\n",
+ " 'NKLA',\n",
+ " 'HE',\n",
+ " 'AMC'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/palo-alto-networks-shares-surge-after-earnings-napco-security-tumbles-and-more-stocks-on-the-move-ef349d01',\n",
+ " 'image_url': 'https://images.mktw.net/im-787374/social',\n",
+ " 'description': 'Palo Alto Networks, Napco Security, Tesla and Jet.AI were among the biggest moving stocks on Monday.'},\n",
+ " {'id': 'ySNj86fLkNvoexwgxkKG_Dl2-fhxe20GyRl_b2lc2M0',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': \"4 Stocks I'm Ready to Bulk Up on as the Market Cools\",\n",
+ " 'author': 'newsfeedback@fool.com (Jose Najarro)',\n",
+ " 'published_utc': '2023-08-21T13:21:36Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/08/21/4-stocks-im-ready-to-bulk-up-on-as-the-market-cool/',\n",
+ " 'tickers': ['AMD', 'TSLA', 'MCHP', 'SE'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/744796/jose-najarro-2023-08-19t155151244.png',\n",
+ " 'description': 'Advanced Micro Devices is one of my favorite AI stocks, but the market seems to be underestimating its growth potential.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': '1nThPoDqeWcyIwh1LyrwfJFMPZpadpHaihvDbTow_Zw',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'Investors Heavily Search Tesla, Inc. (TSLA): Here is What You Need to Know',\n",
+ " 'author': 'Zacks Equity Research',\n",
+ " 'published_utc': '2023-08-21T13:00:10Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/2138576/investors-heavily-search-tesla-inc-tsla-here-is-what-you-need-to-know',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/2138576/investors-heavily-search-tesla-inc-tsla-here-is-what-you-need-to-know',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/default_article_images/default36.jpg',\n",
+ " 'description': 'Recently, Zacks.com users have been paying close attention to Tesla (TSLA). This makes it worthwhile to examine what the stock has in store.'},\n",
+ " {'id': 'DrYF4jIU3cHuoW7IgDyP6MFcvZdALCctRaQFtN1C2-U',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Tesla's Employee Data Leak, Full Self-Driving Problem and Using Siri for Car Commands: Top Stories For Elon Musk Led EV Company Today\",\n",
+ " 'author': 'Mohit Manghnani',\n",
+ " 'published_utc': '2023-08-21T11:41:04Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/23/08/33960465/teslas-employee-data-leak-full-self-driving-problem-and-using-siri-for-car-commands-top-stories-for',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/33960465',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/08/21/tesla-photo_by_b.zhou_on_shutterstock.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': \"Today's top stories for\\xa0Tesla Inc.\\xa0(NASDAQ: TSLA) encompass a significant data breach, concerns about the safety of its autonomous driving technology, and enhanced integration with Apple's Siri.\\nInsider Data Breach Affects Thousands: A data breach in May impacted over 75,000 individuals, including both current and former Tesla employees.\\xa0\\nThe breach, attributed to insider misconduct, came to light when foreign media outlet Handelsblatt alerted Tesla about possessing confidential data.\\xa0\\nInvestigations pinpointed two ex-employees as the culprits who had leaked the data. Tesla has since taken legal action against these individuals and secured court orders to prevent further misuse of the data.\\xa0\\nThe company remains committed ...\",\n",
+ " 'keywords': ['News', 'Top Stories']},\n",
+ " {'id': 'vkX2lsf3ZhhmXL_I9h4NtUENnxZdFoBlACf4Y8VA-R4',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Down 21% in the Last Month, Is Tesla Stock a Buy Now?',\n",
+ " 'author': 'newsfeedback@fool.com (Neil Patel)',\n",
+ " 'published_utc': '2023-08-21T11:17:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/08/21/down-21-in-the-last-month-is-tesla-stock-a-buy-now/',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/744413/charging-tesla-looking-at-phone.jpg',\n",
+ " 'description': \"The leading EV maker's shares are taking a breather.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'ajy2-Xi-ziHJ9eoUi24djF-DteJTAYUw5fvja7A0XBI',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': '‘Magnificent Seven’ stocks are losing some of their shine, but their bonds are doing fine',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-08-21T10:56:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/magnificent-seven-stocks-are-losing-some-of-their-shine-but-their-bonds-are-doing-fine-95eaa2ec',\n",
+ " 'tickers': ['META', 'AAPL', 'MSFT', 'NVDA', 'AMZN', 'GOOGL', 'GOOG', 'TSLA'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/magnificent-seven-stocks-are-losing-some-of-their-shine-but-their-bonds-are-doing-fine-95eaa2ec',\n",
+ " 'image_url': 'https://images.mktw.net/im-810845/social',\n",
+ " 'description': 'Meta, Apple, Microsoft and Nvidia shares are all in correction territory, but investors are still buying their bonds.'},\n",
+ " {'id': 'Sv9X2YVCJ1YgXl2bpsEHrtSjK4NpX5oFUV8kMXRKJvI',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'Should Goldman Sachs Equal Weight U.S. Large Cap Equity ETF (GSEW) Be on Your Investing Radar?',\n",
+ " 'author': 'Zacks Equity Research',\n",
+ " 'published_utc': '2023-08-21T10:20:06Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/2138467/should-goldman-sachs-equal-weight-us-large-cap-equity-etf-gsew-be-on-your-investing-radar',\n",
+ " 'tickers': ['GSEW', 'INTC', 'ADBE', 'TSLA', 'SPY', 'IVV'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/2138467/should-goldman-sachs-equal-weight-us-large-cap-equity-etf-gsew-be-on-your-investing-radar',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/default_article_images/default19.jpg',\n",
+ " 'description': 'Style Box ETF report for GSEW'},\n",
+ " {'id': 'xfvmpl1x_8S5QkCrT5V9oTIQ44N_Y03k2h-hn_kBRyQ',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': \"3 Stock-Split Stocks Billionaires Are Selling and the 1 Surprising Stock-Split Stock They're Piling Into\",\n",
+ " 'author': 'newsfeedback@fool.com (Sean Williams)',\n",
+ " 'published_utc': '2023-08-21T09:05:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/08/21/3-stock-split-stocks-billionaires-selling-1-buying/',\n",
+ " 'tickers': ['AMZN',\n",
+ " 'GOOGL',\n",
+ " 'NVDA',\n",
+ " 'TSLA',\n",
+ " 'MNST',\n",
+ " 'PANW',\n",
+ " 'GOOG',\n",
+ " 'SHOP',\n",
+ " 'DXCM'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/744504/stock-certificate-investment-retire-heirloom-donate-capital-gains-tax-getty.jpg',\n",
+ " 'description': \"Among Nvidia, Amazon, DexCom, Shopify, Alphabet, Tesla, Palo Alto Networks, and Monster Beverage, there are three stock-split stocks billionaires are meaningfully paring down, and another they simply can't stop buying.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'm2dPFZM7e8NwCWG5LLwKYqRULc44ICpIBEeT8T9rFqg',\n",
+ " 'publisher': {'name': 'Seeking Alpha',\n",
+ " 'homepage_url': 'https://seekingalpha.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/seekingalpha.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/seekingalpha.ico'},\n",
+ " 'title': 'The S&P 500 Reversed Friday Indicating Gains This Week - Sell; I Explain How',\n",
+ " 'author': 'David H. Lerner',\n",
+ " 'published_utc': '2023-08-21T03:55:36Z',\n",
+ " 'article_url': 'https://seekingalpha.com/article/4629898-s-and-p-500-reversed-friday-indicating-gains-this-week-sell-i-explain-how',\n",
+ " 'tickers': ['AAPL', 'AXSM', 'TSLA', 'NFLX', 'APLS', 'SAGE', 'NVDA'],\n",
+ " 'image_url': 'https://static.seekingalpha.com/cdn/s3/uploads/getty_images/1572559351/image_1572559351.jpg?io=getty-c-w1536',\n",
+ " 'description': 'The S&P 500 experienced a strong reversal to end the week, suggesting a buoyant start to the next week. Click here for a detailed review.'},\n",
+ " {'id': 'jVdq6RONlzKetu3DVCuEeWwYSOoeOAwlZC2oB8BveY4',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Cathie Wood Just Sold Tesla and Shopify -- and Bought This Potentially Explosive Growth Stock',\n",
+ " 'author': 'newsfeedback@fool.com (Keith Noonan)',\n",
+ " 'published_utc': '2023-08-20T11:35:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/08/20/cathie-wood-sold-tesla-shopify-bought-growth/',\n",
+ " 'tickers': ['ACHR', 'TSLA', 'SHOP', 'ARKK'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/744613/archer_midnight_front_3quarter_tip_closeup.jpg',\n",
+ " 'description': 'Wood and Ark Invest sold some big names to free up funds to invest in this little-known company.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'dz1yrgqIH5tAPNiQUH_QPJG3Rym92Tr-Yb41UAVMYxY',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': '3 Growth Stocks That Could Be Huge Winners in the Next Decade and Beyond',\n",
+ " 'author': 'newsfeedback@fool.com (Neha Chamaria)',\n",
+ " 'published_utc': '2023-08-20T11:00:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/08/20/3-growth-stocks-be-huge-winners-next-decade-beyond/',\n",
+ " 'tickers': ['V', 'CRM', 'TSLA', 'GOOGL', 'GOOG'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/744700/a-young-happy-person-hugging-a-piggy-bank.jpg',\n",
+ " 'description': 'Industry leadership and massive opportunities could send these stocks soaring in the coming decade.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': '8pGZ-0I7NRg7c9MDJRsy4DML5CC2NgLDPxOcv55lDJo',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Is Rivian Stock a Buy?',\n",
+ " 'author': 'newsfeedback@fool.com (Howard Smith)',\n",
+ " 'published_utc': '2023-08-20T10:27:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/08/20/is-rivian-stock-a-buy/',\n",
+ " 'tickers': ['RIVN', 'TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/741757/rivian-front-view-at-dusk.png',\n",
+ " 'description': \"Rivian just raised 2023 production estimates, but it's likely the company will bump them once again.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'YnmDZZ2TB1VglhGa0V5BJU-pF1MEyL4yaFQqP1UwwGE',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Cathie Wood Thinks This Streaming Stock Will Jump 747%. Is She Right?',\n",
+ " 'author': 'newsfeedback@fool.com (Jeremy Bowman)',\n",
+ " 'published_utc': '2023-10-13T21:30:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/10/13/cathie-wood-thinks-this-streaming-stock-will-jump/',\n",
+ " 'tickers': ['ROKU', 'NFLX', 'DIS', 'TSLA', 'AMZN', 'ARKK'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/750696/streaming-tv.jpg',\n",
+ " 'description': 'Ark sees big things ahead for Roku.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'eRk3Eucx1guRTOSevvoxgNRKTJLZ66LyZSAUMMgz5Xc',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Israel-Hamas War Shakes Middle East, Inflation Reawakens, Oil Surges: The Week In The Markets',\n",
+ " 'author': 'Piero Cingari',\n",
+ " 'published_utc': '2023-10-13T20:33:31Z',\n",
+ " 'article_url': 'https://www.benzinga.com/markets/equities/23/10/35248880/israel-hamas-war-shakes-middle-east-inflation-reawakens-oil-surges-the-week-in-the-markets',\n",
+ " 'tickers': ['BK',\n",
+ " 'XOM',\n",
+ " 'BX',\n",
+ " 'TSLA',\n",
+ " 'ELV',\n",
+ " 'DHR',\n",
+ " 'UAL',\n",
+ " 'GLD',\n",
+ " 'FCX',\n",
+ " 'USO',\n",
+ " 'GS',\n",
+ " 'XLE',\n",
+ " 'HON',\n",
+ " 'JNJ',\n",
+ " 'CME',\n",
+ " 'LMT',\n",
+ " 'IBKR',\n",
+ " 'MS',\n",
+ " 'LRCX',\n",
+ " 'PG',\n",
+ " 'MSFT',\n",
+ " 'PLD',\n",
+ " 'NFLX',\n",
+ " 'PM',\n",
+ " 'SCHW',\n",
+ " 'SLB',\n",
+ " 'ABT',\n",
+ " 'T',\n",
+ " 'AXP',\n",
+ " 'UNP',\n",
+ " 'BAC',\n",
+ " 'USB'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/35248880',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/Wall_Street_subway_sign_2.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Global geopolitical developments and domestic economic data shaped investor sentiment throughout the week, sparking fresh concerns regarding the outlook for growth and inflation.\\nGlobal Reactions Mount As Israel-Hamas Conflict Escalates\\nThe week commenced with the eruption of conflict in the Middle East involving Israel and the Palestinian militant group Hamas.\\xa0\\nPresident Joe Biden condemned Hamas’ attacks, labeling them an “act of sheer evil.” The White House has confirmed 27 deaths of American citizens.\\xa0\\nSecretary of State Anthony Blinken flew to Israel for talks with Israeli Prime Minister Benjamin Netanyahu and President Isaac Herzog, reaffirming U.S. support for Israel “as long as America exists.” \\nBlinken also met with King Abdullah II of Jordan, Palestinian Authority President Mahmoud Abbas and Qatar Emir Tamim bin Hamad Al Thani in an effort to prevent the conflict from escalating further. Along the northern border between Israel and Lebanon, the Iran-backed militant group Hezbollah launched gunfire targeting several Israeli military posts.\\xa0\\nOn Thursday, International Monetary Fund Managing Director Kristalina Georgieva expressed concerns about how the conflict could impact global oil markets, as instability in the Middle East, responsible for roughly one-third of global oil production, could disrupt supplies.\\nResurgent US Inflation, Mortgage Rates Hit 23-Year Highs, Consumer Sentiment Dips\\nHigher-than-expected U.S. inflation figures have caught markets off guard and are complicating the Federal Reserve’s rate outlook. In September, the Producer Price Index surged 2.2% year-on-year, exceeding expectations of 1.6%. \\nDuring the same month, Consumer Price Index inflation rose by 3.7% ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['Sector ETFs',\n",
+ " 'Equities',\n",
+ " 'Macro Economic Events',\n",
+ " 'Broad U.S. Equity ETFs',\n",
+ " 'Politics',\n",
+ " 'Top Stories',\n",
+ " 'Economics',\n",
+ " 'Federal Reserve',\n",
+ " 'Markets',\n",
+ " 'Tech',\n",
+ " 'ETFs']},\n",
+ " {'id': 'uF528m0bpIkyg0zGdmFvmFJvzg6nPpJ82B158llxhhs',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': '3 Quarterly Reports to Watch Next Week',\n",
+ " 'author': 'Derek Lewis',\n",
+ " 'published_utc': '2023-10-13T19:51:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/2165855/3-quarterly-reports-to-watch-next-week',\n",
+ " 'tickers': ['NFLX', 'ORCL', 'ADBE', 'TSM', 'TSLA'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/2165855/3-quarterly-reports-to-watch-next-week',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/articles/main/b9/441.jpg',\n",
+ " 'description': \"We'll soon be in the thick of earnings season, undoubtedly a hectic period for investors. And next week, these three reports are certainly worth attention.\"},\n",
+ " {'id': 'MTzYW9rdLujoUVHinp2UU45zLltSJaRkKRREQq9Raq0',\n",
+ " 'publisher': {'name': 'Investing.com',\n",
+ " 'homepage_url': 'https://www.investing.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/investing.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/investing.ico'},\n",
+ " 'title': 'These Discounted Lithium Stocks Can Be a Great Bet on EVs',\n",
+ " 'author': 'The Tokenist',\n",
+ " 'published_utc': '2023-10-13T19:40:00Z',\n",
+ " 'article_url': 'https://www.investing.com/analysis/these-discounted-lithium-stocks-can-be-a-great-bet-on-evs-200642698',\n",
+ " 'tickers': ['TSLA', 'TM', 'F', 'ALB', 'CAT', 'PLL', 'LTHM', 'FMC', 'SONY'],\n",
+ " 'amp_url': 'https://m.investing.com/analysis/these-discounted-lithium-stocks-can-be-a-great-bet-on-evs-200642698?ampMode=1',\n",
+ " 'image_url': 'https://i-invdn-com.investing.com/redesign/images/seo/investingcom_analysis_og.jpg'},\n",
+ " {'id': '5GPlgt2QAgiJkLcQBDeMxtvHOf6h7O1qunJqzA1ng1M',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'Room To Run: Why This Bull Market May Be Just Getting Started',\n",
+ " 'author': 'Bryan Hayes',\n",
+ " 'published_utc': '2023-10-13T16:34:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/commentary/2165791/room-to-run-why-this-bull-market-may-be-just-getting-started',\n",
+ " 'tickers': ['JPM', 'TSLA'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/commentary/2165791/room-to-run-why-this-bull-market-may-be-just-getting-started',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/articles/main/dd/52606.jpg',\n",
+ " 'description': 'The second year of this new bull market may surprise to the upside.'},\n",
+ " {'id': 'zFBvMzPnBNjaCcJyob5P3qbS7ugSRRsjl-0T0Bmgueo',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'A Tesla set ablaze on an icy lake leads to jail time for Vermont man who scammed company out of 5 cars',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-10-13T14:52:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/a-vermont-man-duped-tesla-into-giving-him-five-cars-for-free-now-hes-headed-to-prison-ffc173fe',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/a-vermont-man-duped-tesla-into-giving-him-five-cars-for-free-now-hes-headed-to-prison-ffc173fe',\n",
+ " 'image_url': 'https://images.mktw.net/im-820529/social',\n",
+ " 'description': 'After exploiting a loophole in Tesla’s online ordering system, Michael Gonzalez only got caught after he set a car on fire for the insurance money.'},\n",
+ " {'id': 'l1bYTDGzOMXhROchxoP1QeIQXmh4RqDaW5M1dliFWxQ',\n",
+ " 'publisher': {'name': 'Investing.com',\n",
+ " 'homepage_url': 'https://www.investing.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/investing.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/investing.ico'},\n",
+ " 'title': \"Q3 Earnings Season Poses Next Big Test for S&P 500: Here's How to Prepare for It\",\n",
+ " 'author': 'Investing.com',\n",
+ " 'published_utc': '2023-10-13T14:45:00Z',\n",
+ " 'article_url': 'https://www.investing.com/analysis/q3-earnings-season-poses-next-big-test-for-sp-500-heres-how-to-prepare-for-it-200642663',\n",
+ " 'tickers': ['JPM',\n",
+ " 'C',\n",
+ " 'WFC',\n",
+ " 'UNH',\n",
+ " 'TSLA',\n",
+ " 'NFLX',\n",
+ " 'SCHW',\n",
+ " 'AXP',\n",
+ " 'AAL',\n",
+ " 'MSFT',\n",
+ " 'GOOGL',\n",
+ " 'META',\n",
+ " 'AMZN',\n",
+ " 'AAPL',\n",
+ " 'GOOGL',\n",
+ " 'META',\n",
+ " 'NFLX',\n",
+ " 'DIS',\n",
+ " 'AMZN',\n",
+ " 'WMT',\n",
+ " 'HD',\n",
+ " 'MCD',\n",
+ " 'KO',\n",
+ " 'NVDA',\n",
+ " 'ANET',\n",
+ " 'SNOW',\n",
+ " 'CRWD',\n",
+ " 'MDB',\n",
+ " 'ZS',\n",
+ " 'NET',\n",
+ " 'JPM',\n",
+ " 'RCL',\n",
+ " 'LVS',\n",
+ " 'DASH',\n",
+ " 'XLE',\n",
+ " 'XLV'],\n",
+ " 'amp_url': 'https://m.investing.com/analysis/q3-earnings-season-poses-next-big-test-for-sp-500-heres-how-to-prepare-for-it-200642663?ampMode=1',\n",
+ " 'image_url': 'https://i-invdn-com.investing.com/redesign/images/seo/investingcom_analysis_og.jpg'},\n",
+ " {'id': 'NhTlisy0t3iv-qtCC4eSWw02ySYqqmKTW41Uvu3f5qw',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': \"Tech stocks like Amazon and CrowdStrike will rip higher this earnings season, says Wedbush's Ives. Here's why.\",\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-10-13T12:22:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/tech-stocks-like-amazon-and-crowdstrike-will-rip-higher-this-earnings-season-says-wedbushs-ives-heres-why-2fb6e7ec',\n",
+ " 'tickers': ['AMZN',\n",
+ " 'GOOG',\n",
+ " 'META',\n",
+ " 'AAPL',\n",
+ " 'MSFT',\n",
+ " 'PANW',\n",
+ " 'PLTR',\n",
+ " 'ZS',\n",
+ " 'CRWD',\n",
+ " 'MDB',\n",
+ " 'JPM',\n",
+ " 'C',\n",
+ " 'WFC',\n",
+ " 'ATVI',\n",
+ " 'DG',\n",
+ " 'SAVA',\n",
+ " 'TSLA',\n",
+ " 'AMC',\n",
+ " 'TTOO',\n",
+ " 'INFY',\n",
+ " 'NVDA',\n",
+ " 'GME',\n",
+ " 'NIO',\n",
+ " 'TUP'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/tech-stocks-like-amazon-and-crowdstrike-will-rip-higher-this-earnings-season-says-wedbushs-ives-heres-why-2fb6e7ec',\n",
+ " 'image_url': 'https://images.mktw.net/im-867942/social',\n",
+ " 'description': 'Cloud computing and AI spending are among the factors that will power Big Tech earnings, says Dan Ives at Wedbush'},\n",
+ " {'id': 'phdDYsQ7rG1joNitknVJtrz9mZDBKQg-E3N1-VriSNQ',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': \"Tesla's (TSLA) EV Market Share Comes Down to 50% in Q3\",\n",
+ " 'author': 'Zacks Equity Research',\n",
+ " 'published_utc': '2023-10-13T09:52:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/2165365/teslas-tsla-ev-market-share-comes-down-to-50-in-q3',\n",
+ " 'tickers': ['F', 'GM', 'TSLA'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/2165365/teslas-tsla-ev-market-share-comes-down-to-50-in-q3',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/articles/main/75/107.jpg',\n",
+ " 'description': \"Ford (F), General Motors (GM) and Mercedes-Benz (MBGAF) emerge as a few leading American EV makers while Tesla's (TSLA) share shrinks.\"},\n",
+ " {'id': 'a-zOEgCXI1tpF3YxvoXJ_HrT48KI4TSBNOowaAWZ50w',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'The 4 Most Commonly Held Stocks Among Retail Investors',\n",
+ " 'author': 'newsfeedback@fool.com (Sean Williams)',\n",
+ " 'published_utc': '2023-10-13T09:21:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/10/13/4-most-commonly-held-stocks-among-retail-investors/',\n",
+ " 'tickers': ['TSLA', 'AAPL', 'AMZN', 'F', 'HOOD'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/750562/smartphone-retail-investing-robinhood-buy-sell-retire-stock-market-crypto-getty.jpg',\n",
+ " 'description': \"Hint: It's not Microsoft, Walt Disney, Nvidia, Meta Platforms, or Starbucks.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'I9D6fSCff4EaGerDw8nU_UJwISvUjGWqXf2JNu_NtGk',\n",
+ " 'publisher': {'name': 'Investing.com',\n",
+ " 'homepage_url': 'https://www.investing.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/investing.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/investing.ico'},\n",
+ " 'title': 'S&P 500 Market Breadth Data Suggests Broader Sell-Off Remains in the Offing',\n",
+ " 'author': 'Anna Coulling',\n",
+ " 'published_utc': '2023-10-13T07:03:00Z',\n",
+ " 'article_url': 'https://www.investing.com/analysis/sp-500-market-breadth-data-suggests-broader-selloff-remains-in-the-offing-200642656',\n",
+ " 'tickers': ['AAPL',\n",
+ " 'MSFT',\n",
+ " 'GOOGL',\n",
+ " 'AMZN',\n",
+ " 'NVDA',\n",
+ " 'META',\n",
+ " 'TSLA',\n",
+ " 'C',\n",
+ " 'NFLX'],\n",
+ " 'amp_url': 'https://m.investing.com/analysis/sp-500-market-breadth-data-suggests-broader-selloff-remains-in-the-offing-200642656?ampMode=1',\n",
+ " 'image_url': 'https://i-invdn-com.investing.com/redesign/images/seo/investingcom_analysis_og.jpg'},\n",
+ " {'id': 'gEtdU0OhasN9ogwwkLwssvCGY6ASNvinYj0GTgEXjyg',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Iran's Involvement In Israel-Hamas Conflict Is Key For The Future Of US Inflation\",\n",
+ " 'author': 'Natan Ponieman',\n",
+ " 'published_utc': '2023-10-12T21:46:00Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/23/10/35231309/irans-involvement-in-israel-hamas-conflict-is-key-for-the-future-of-us-inflation',\n",
+ " 'tickers': ['NKE',\n",
+ " 'PXD',\n",
+ " 'XOM',\n",
+ " 'IEO',\n",
+ " 'AAPL',\n",
+ " 'UCO',\n",
+ " 'TSLA',\n",
+ " 'USO',\n",
+ " 'BKNG',\n",
+ " 'VCR',\n",
+ " 'XLY',\n",
+ " 'META',\n",
+ " 'AAPL',\n",
+ " 'ABNB',\n",
+ " 'AMZN',\n",
+ " 'SHEL',\n",
+ " 'LULU',\n",
+ " 'SBUX',\n",
+ " 'CVX',\n",
+ " 'F',\n",
+ " 'GM',\n",
+ " 'HD',\n",
+ " 'MCD'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/35231309',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/hamas_shutter2.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'The outbreak of war in the Middle East is threatening to hamper the Fed\\'s efforts to control inflation.\\nA Thursday visit from Secretary of State Antony Blinken to Israel was confirmation of unconditional support from the U.S. for Israel in its war against Palestinian terrorist organization Hamas.\\nIsrael’s military reported on Thursday afternoon that over 1,200 people, including at least 27 Americans, have been killed by Hamas’ attacks, with around 2,800 individuals injured. In response to these attacks, Israeli counterstrikes in Gaza have resulted in the deaths of approximately 1,537 individuals, according to the Gaza Ministry of Health, CBS News reported.\\nOn Thursday morning, International Monetary Fund managing director Kristalina Georgieva expressed concern over how the conflict could affect global oil markets, which are liable to be disrupted by war in the Middle East, where roughly a third of the global oil output is produced.\\nWhile the specific area where the conflict is located is not a significant oil-producing region, major disruptions in the global oil markets could come if further conflict arises between the U.S. and Iran, a long-time backer of Hamas operations against Israel. \\nEarlier this week the Iranian government denied having any relationship with the Hamas attacks, as Supreme Leader Ayatollah Ali Khamenei said \"We defend Palestine, we defend the fights.\"\\xa0 This denial is contradicted by reports that Iran had a direct role in training Hamas for the latest attack on Israeli civilians, according to The Wall Street Journal.\\nWhile Congress is preparing a $2-billion aid package for Israel, several prominent U.S. politicians denounced Iran’s participation in the massacre, proposing a double-down on oil sanctions. \\nYet the already fragile relationship between the U.S. and Iran, the world’s eight largest oil producers, could still have an impact ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['Sector ETFs',\n",
+ " 'News',\n",
+ " 'Specialty ETFs',\n",
+ " 'Markets',\n",
+ " 'ETFs',\n",
+ " 'General']},\n",
+ " {'id': 'Sw_WhLBVlxZ4Kdf3sZdYfref-UEzagp85bilFdnpmpU',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Early Believer In Tesla And NVIDIA, Cathie Wood And Her Firm Changed Modern Investing - Just What Does ARK Invest Offer?',\n",
+ " 'author': 'Johnny Rice',\n",
+ " 'published_utc': '2023-10-12T20:47:21Z',\n",
+ " 'article_url': 'https://www.benzinga.com/etfs/23/10/35230373/early-believer-in-tesla-and-nvidia-cathie-wood-and-her-firm-changed-modern-investing-just-what-does',\n",
+ " 'tickers': ['NVDA',\n",
+ " 'TSLA',\n",
+ " 'ARKQ',\n",
+ " 'ARKW',\n",
+ " 'ARKK',\n",
+ " 'ARKG',\n",
+ " 'PRNT',\n",
+ " 'IZRL',\n",
+ " 'ARKF',\n",
+ " 'ARKX',\n",
+ " 'TARK'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/35230373',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/cathie_wood_nvidia_shutter_1.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'As head of ARK Invest, Cathie Wood is one of the few celebrities in the financial world. She has solidified her status as a trailblazer and oracle in her near-decade-leading ARK. Wood and her firm have become synonymous with forward-thinking investing, focusing on disruptive, game-changing technologies. And she is not afraid to take positions in \"risky\" companies. She bought stock in Tesla Inc (NASDAQ:TSLA) and NVIDIA Corporation (NASDAQ:NVDA) in 2016.\\nWood has big ideas and makes splashy predictions – like her belief Bitcoin (CRYPTO: BTC) will top $1M by 2030. Cutting her teeth at firms like Capital Group and AllianceBernstein, Wood founded ARK in 2014, obsessed with transforming the way we think about investing, eschewing broad market, index-linked ETFs, in favor of focused, thematic funds that allow investors to express their view of the world to come.\\nThe Funds\\nARK \"strives to invest at the pace of innovation\". The firm offers 8 US-listed ETFs. They are:\\n\\nARK Innovation ETF (NYSE:ARKK) is Wood\\'s flagship fund. It is all about disruptive innovation across various sectors, from technology to healthcare and ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['ETFs']},\n",
+ " {'id': 'DPQL4d2jhYVx6Eb9uooya3-rr1OfXHz0_GjjwYseYZY',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'Tesla (TSLA) Produces 20M 4680 Battery Cells in Giga Texas',\n",
+ " 'author': 'Zacks Equity Research',\n",
+ " 'published_utc': '2023-10-12T15:37:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/2165118/tesla-tsla-produces-20m-4680-battery-cells-in-giga-texas',\n",
+ " 'tickers': ['MGA', 'TSLA', 'ALSN', 'ADNT'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/2165118/tesla-tsla-produces-20m-4680-battery-cells-in-giga-texas',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/articles/main/99/1094.jpg',\n",
+ " 'description': 'Tesla (TSLA) reaches a production milestone by building its 20 millionth 4680 battery cells at Gigafactory Texas.'},\n",
+ " {'id': '59bPo0SoVoLypfHm0LavkZgTC_y3wz8aMRHAayGrcp0',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Hotter Consumer Inflation Will Test Stock Market Bulls' Trust In Market Mechanics\",\n",
+ " 'author': 'The Arora Report',\n",
+ " 'published_utc': '2023-10-12T15:27:30Z',\n",
+ " 'article_url': 'https://www.benzinga.com/markets/23/10/35223456/hotter-consumer-inflation-will-test-stock-market-bulls-trust-in-market-mechanics',\n",
+ " 'tickers': ['GLD',\n",
+ " 'SLV',\n",
+ " 'SPY',\n",
+ " 'USO',\n",
+ " 'AMZN',\n",
+ " 'GOOG',\n",
+ " 'MSFT',\n",
+ " 'NVDA',\n",
+ " 'AAPL',\n",
+ " 'TSLA',\n",
+ " 'QQQ',\n",
+ " 'META'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/35223456',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/m-zzoa5g8hspi-unsplash_8.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'To gain an edge, this is what you need to know today.\\n\\nHotter Consumer Inflation\\nPlease\\xa0click here\\xa0for a chart of SPDR S&P 500 ETF Trust (ARCA:SPY) which represents the benchmark stock market index S&P 500 (SPX).\\nNote the following:\\n\\nThe chart shows that the stock market ran up above the top band of the top support zone in anticipation of better than expected Producer Price Index (PPI) and Consumer Price Index (CPI) as well as the market mechanics of year end chase and market positioning.\\nYesterday, we shared with you that PPI came hotter than expected, but bullish investors chose to ignore it.\\xa0Please read yesterday’s Capsules for more on PPI.\\xa0Bullish investors chose to pin their hopes on CPI coming better than expected and market mechanics.\\nThis morning, CPI came worse than expected.\\xa0Here are the details:\\n\\nHeadline CPI came at 0.4% vs. 0.3% month-over-month consensus.\\nCore CPI came at 0.3% vs. 0.3% month-over-month consensus.\\xa0Of special note is that the whisper numbers for Core CPI were 0.2%.\\xa0\\nWall Street was positioned for 0.2% Core CPI.\\n\\n\\nNow, there are two strikes against Wall Street positioning and bulls’ hopes in the form of PPI and CPI.\\nStock futures were running up ahead of the release of CPI on hopes of better than expected numbers.\\xa0On release of CPI, the stock market took a slight dip.\\xa0The momo crowd aggressively bought the dip and is trying to run up the stock market as of this writing.\\nIn The Arora Report analysis, even though progress is being made on inflation, core inflation is staying sticky, way above the Fed’s 2% target.\\xa0This means that the Fed is likely to keep rates higher for longer but may be reluctant to raise rates. You may recall that The Arora Report’s call for a while has been that core inflation will stay sticky.\\xa0So far, that call is spot on.\\nEarnings season starts tomorrow, although a fair number of earnings were reported this morning.\\xa0Earnings are expected to be inline with consensus; however, earnings this morning are mixed.\\nGoing forward, bulls’ faith in market mechanics to run up the stock market will be tested as their predictions on the data have been wrong.\\nHere are the probabilities of Fed interest rate hikes:\\n\\n10% in November\\n33% in December\\n\\n\\nInitial jobless claims came at 209K vs. 214K consensus.\\xa0This indicates that the job picture, especially at the low end, remains very strong.\\xa0The job ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['Cryptocurrency',\n",
+ " 'Economics',\n",
+ " 'Federal Reserve',\n",
+ " 'Markets',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': 'ZYWP0GbfDxaH1uz7vGXAz0sX9e0U4ZykECo-bixKEs4',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Investors are asking too much from the stock market, says this strategist.',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-10-12T12:42:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/investors-are-asking-too-much-from-the-stock-market-says-this-strategist-b13c175b',\n",
+ " 'tickers': ['AAPL',\n",
+ " 'MSFT',\n",
+ " 'GOOGL',\n",
+ " 'AMZN',\n",
+ " 'NVDA',\n",
+ " 'TSLA',\n",
+ " 'META',\n",
+ " 'DAL',\n",
+ " 'DPZ',\n",
+ " 'WBA',\n",
+ " 'FAST',\n",
+ " 'TUP',\n",
+ " 'F',\n",
+ " 'AMC',\n",
+ " 'TTOO',\n",
+ " 'TPST',\n",
+ " 'GME',\n",
+ " 'NIO',\n",
+ " 'PLTR'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/investors-are-asking-too-much-from-the-stock-market-says-this-strategist-b13c175b',\n",
+ " 'image_url': 'https://images.mktw.net/im-867042/social',\n",
+ " 'description': 'Jim Bianco, president of Bianco Research, says investors need to decide exactly what they want from the stock market these days.'},\n",
+ " {'id': '8IdIDSwvuk6-U9Td5jcKUjzGuY76Gknxu2aKJrKjvEk',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': '2 Reasons Tesla Stock Will Keep Driving Higher',\n",
+ " 'author': 'newsfeedback@fool.com (RJ Fulton)',\n",
+ " 'published_utc': '2023-10-12T12:30:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/10/12/2-reasons-tesla-stock-will-keep-driving-higher/',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/750024/rich-millionaire-billionaire-raining-money.jpg',\n",
+ " 'description': 'What if I told you Tesla has yet to reach its full potential?',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'OxKAWC-LUbBxqsuGMsli7y0_tNd8uf2m2U5TbUlc47w',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Best Growth Stocks: Rivian Stock vs. Tesla Stock vs. Nio Stock',\n",
+ " 'author': 'newsfeedback@fool.com (Parkev Tatevosian, CFA)',\n",
+ " 'published_utc': '2023-10-12T12:00:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/10/12/best-growth-stocks-rivian-stock-vs-tesla-stock-vs/',\n",
+ " 'tickers': ['TSLA', 'NIO', 'RIVN'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/750624/4-teslas-in-a-line-at-a-charging-station.png',\n",
+ " 'description': 'Tesla, Rivian, and Nio are all trying to take market share from legacy automakers in the car industry.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': '4-A0_vCBBgmtjGorsnT-LoJWzWWnwbtrT7uieyGBi-8',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'Zacks Investment Ideas feature highlights: Nvidia, Tesla and Novo Nordisk',\n",
+ " 'author': 'Zacks Equity Research',\n",
+ " 'published_utc': '2023-10-12T11:36:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/2164737/zacks-investment-ideas-feature-highlights-nvidia-tesla-and-novo-nordisk',\n",
+ " 'tickers': ['NVO', 'NVDA', 'TSLA'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/2164737/zacks-investment-ideas-feature-highlights-nvidia-tesla-and-novo-nordisk',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/articles/main/75/107.jpg',\n",
+ " 'description': 'Nvidia, Tesla and Novo Nordisk are part of the Zacks Investment Ideas article.'},\n",
+ " {'id': 'PfXZVicn_nHg3vZIIEjMPC3v3586QAMvN3y-JpTXUjc',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Which Electric Vehicle Stock Is a Better Buy: Tesla or Rivian?',\n",
+ " 'author': 'newsfeedback@fool.com (RJ Fulton)',\n",
+ " 'published_utc': '2023-10-12T10:31:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/10/12/which-electric-vehicle-stock-is-a-better-buy-tesla/',\n",
+ " 'tickers': ['TSLA', 'RIVN'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/750551/driver-waits-for-an-electric-vehicle-to-charge.jpg',\n",
+ " 'description': \"It's time to dive into the battle for EV supremacy.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'RItXwhSVrwPZenJI2cyRtdPE9FF3VC2AVgSnDZ19RN0',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Is Ford Stock a Buy?',\n",
+ " 'author': 'newsfeedback@fool.com (Neil Patel)',\n",
+ " 'published_utc': '2023-10-12T09:12:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/10/12/is-ford-stock-a-buy/',\n",
+ " 'tickers': ['F', 'HMC', 'TSLA', 'TM', 'GM', 'STLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/750185/ev-electric-truck-f-150-lightning-lariat-source-ford.jpg',\n",
+ " 'description': 'Investors should think through both the positive and negative factors.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'PLQVVTqB7KSuya-Ncas3mNU3BMvHfsUiMTo3x0UeJIg',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Tesla Bull Adam Jonas Says EV Maker's Q3 Margins, Earnings Face Headwinds\",\n",
+ " 'author': 'Anan Ashraf',\n",
+ " 'published_utc': '2023-10-12T05:41:45Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/23/10/35211821/tesla-bull-adam-jonas-says-ev-makers-q3-margins-earnings-face-headwinds',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/35211821',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/tesla-shutter2_2.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Morgan Stanley\\xa0analyst and Tesla bull\\xa0Adam Jonas\\xa0unveiled his expectations for Tesla Inc‘s (NASDAQ:TSLA) third-quarter performance ahead of the company’s earnings date.\\nTesla Thesis: Jonas sees Tesla’s gross margins falling further to 17.5% in the third quarter as compared to 18.1% in the second quarter and 19% in the first. The analyst further sees a U.S. GAAP EPS of $0.56 as compared to the $0.78 reported in the second quarter and lower than the consensus estimate of $0.65.\\nThe analyst noted after a Bull/Bear lunch ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['News', 'Analyst Color', 'Tech']},\n",
+ " {'id': 'TK1dgHvqcD6-hZ5DyFKHkRIdv6r7LjhUHY2L7bzS450',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Cathie Wood's Ark Invest Sells $9.8M Worth Of Tesla Shares — Second Day Of Selling EV Giant In A Row\",\n",
+ " 'author': 'Benzinga Neuro',\n",
+ " 'published_utc': '2023-10-12T02:38:08Z',\n",
+ " 'article_url': 'https://www.benzinga.com/markets/equities/23/10/35210742/cathie-woods-ark-invest-sells-9-8m-worth-of-tesla-shares-second-day-of-selling-ev-giant-in-a-row',\n",
+ " 'tickers': ['TSLA', 'ARKW', 'PD', 'ARKK', 'ARKG', 'NTLA', 'CRSP', 'DKNG'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/35210742',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/CathieWood_0.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': \"On Wednesday, Cathie Wood-led Ark Invest continued its trend of selling shares of Tesla Inc (NASDAQ:TSLA), disposing of nearly $10M worth. This marked the second consecutive day of such trades.\\nThe Tesla Trade\\nOn Wednesday, Ark sold 37,268 worth of Tesla shares through its flagship ARK Innovation ETF (NYSE:ARKK) fund. The transaction was valued at $9.8 million, based on the EV maker stocks’ closing price of $262.99.\\nA day earlier, Ark Invest sold 31,418 shares of the Elon Musk-led company, a move valued at over $8 million. The electric vehicle giant's recent performance has notably pulled Ark's ETFs higher, with Wood's $2,000 Tesla price target still in play.\\nSee Also: Cathie Wood’s Ark Invest Bumps ...Full story available on Benzinga.com\",\n",
+ " 'keywords': ['News', 'Equities', 'Markets', 'Media', 'ETFs']},\n",
+ " {'id': '-pBiHc2zmxw3oONSpWUQpHVwQQIzowV8Qs3znXfVGsM',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'Time to Buy Stock in These Automotive Finance Leaders?',\n",
+ " 'author': 'Shaun Pruitt',\n",
+ " 'published_utc': '2023-10-11T23:24:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/2164622/time-to-buy-stock-in-these-automotive-finance-leaders',\n",
+ " 'tickers': ['CACC', 'ALLY', 'TSLA'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/2164622/time-to-buy-stock-in-these-automotive-finance-leaders',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/default_article_images/default148.jpg',\n",
+ " 'description': \"While every automaker won't have nearly the same success as Tesla (TSLA), investing in consumer lending companies that offer exposure to auto loans could be a rewarding option as well.\"},\n",
+ " {'id': 'meaWfwVG7EgZBnYTDEoRXzyoXc_xGrwEG0mqKUM02n4',\n",
+ " 'publisher': {'name': 'Investing.com',\n",
+ " 'homepage_url': 'https://www.investing.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/investing.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/investing.ico'},\n",
+ " 'title': 'This Underrated AI Stock Is Up 52% YTD, And Likely Continue to Rally',\n",
+ " 'author': 'The Tokenist',\n",
+ " 'published_utc': '2023-10-11T18:51:00Z',\n",
+ " 'article_url': 'https://www.investing.com/analysis/this-underrated-ai-stock-is-up-52-ytd-and-likely-to-continue-rally-200642609',\n",
+ " 'tickers': ['NVDA', 'NET', 'MSFT', 'AMZN', 'TSLA'],\n",
+ " 'amp_url': 'https://m.investing.com/analysis/this-underrated-ai-stock-is-up-52-ytd-and-likely-to-continue-rally-200642609?ampMode=1',\n",
+ " 'image_url': 'https://i-invdn-com.investing.com/redesign/images/seo/investingcom_analysis_og.jpg'},\n",
+ " {'id': 'PGe8eLIEq7P-F__cKfnSmtfsEjenW-KVXx2RCl09yvo',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'The 3 Widest Competitive Moats on Wall Street',\n",
+ " 'author': 'Andrew Rocco',\n",
+ " 'published_utc': '2023-10-11T18:22:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/commentary/2164433/the-3-widest-competitive-moats-on-wall-street',\n",
+ " 'tickers': ['F', 'NVO', 'MDT', 'BAX', 'DVA', 'NVDA', 'GM', 'TSLA', 'STLA'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/commentary/2164433/the-3-widest-competitive-moats-on-wall-street',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/articles/main/22/35721.jpg',\n",
+ " 'description': \"Competitive moats symbolize a company's sustainable advantage, protecting it from competitors and external threats. Three standout examples illustrate this principle vividly.\"},\n",
+ " {'id': 'mAVeXPTrAxuhyMs9oLMu5p9HLP9WVB36TFMEnO-_WRM',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Israel's Netanyahu Forms Wartime Cabinet As Military Readies Gaza Ground Offensive\",\n",
+ " 'author': 'Anthony Noto',\n",
+ " 'published_utc': '2023-10-11T18:08:44Z',\n",
+ " 'article_url': 'https://www.benzinga.com/government/23/10/35198850/israels-netanyahu-forms-wartime-cabinet-as-military-readies-gaza-ground-offensive',\n",
+ " 'tickers': ['EIS', 'UBS', 'TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/35198850',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/10/11/israel_war_shutter.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Israel has formed a wartime cabinet as a conflict with Hamas militants in Gaza escalates for the fifth day.\\nWhat Happened: The cabinet consists of Israeli Prime Minister Benjamin Netanyahu, opposition leader and former Defense Minister Benny Gantz\\xa0and current Defense Minister Yoav Gallant, according to the Associated Press.\\xa0\\nThe news comes as the Israeli military preps for a ground offensive in Gaza.\\nOn Oct. 7, Hamas militants from Gaza stormed through a border fence and began attacking hundreds of Israelis in their homes, in public and at an outdoor music festival.\\nAn estimated 150 people — including women and children — were taken hostage from Israel. Since then, some 2,400 Israelis have been wounded, with more than 1,000 dead.\\nIsrael responded with missile attacks and blockades, closing Gaza off from water, food, electricity and medical supplies. At the time of writing, Palestinian ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['News',\n",
+ " 'Specialty ETFs',\n",
+ " 'Politics',\n",
+ " 'Global',\n",
+ " 'Top Stories',\n",
+ " 'ETFs',\n",
+ " 'General']},\n",
+ " {'id': 'K87ZNT6vmhFy86L7T1WjgZeYsiM4x5qYbLpfWu1tBXQ',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Stock Market Bulls Disappointed On Hotter Producer Inflation But Trusting Market Mechanics',\n",
+ " 'author': 'The Arora Report',\n",
+ " 'published_utc': '2023-10-11T14:46:36Z',\n",
+ " 'article_url': 'https://www.benzinga.com/markets/23/10/35195627/stock-market-bulls-disappointed-on-hotter-producer-inflation-but-trusting-market-mechanics',\n",
+ " 'tickers': ['GLD',\n",
+ " 'SLV',\n",
+ " 'SPY',\n",
+ " 'USO',\n",
+ " 'AMZN',\n",
+ " 'GOOG',\n",
+ " 'MSFT',\n",
+ " 'NVDA',\n",
+ " 'PXD',\n",
+ " 'XOM',\n",
+ " 'AAPL',\n",
+ " 'TSLA',\n",
+ " 'QQQ',\n",
+ " 'META'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/35195627',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/hans-eiskonen-wn57csq7vzi-unsplash_6_0.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'To gain an edge, this is what you need to know today.\\n\\nHotter Producer Inflation\\nPlease\\xa0click here\\xa0for a chart of SPDR S&P 500 ETF Trust (ARCA: SPY)\\xa0 which represents the benchmark stock market index S&P 500 (SPX).\\nNote the following:\\n\\nThe chart shows that the stock market moved up above the top band of the top support zone.\\xa0The move up was driven primarily by market mechanics.\\nBulls are confident that market mechanics will drive the stock market to the mini resistance zone shown on the chart.\\nBulls have data to back up their belief.\\xa0About two thirds of the market rise this year is due to market mechanics.\\xa0Market mechanics tend to become extra powerful in November and December.\\xa0Bulls are also pointing to the historical data that shows that the year end chase is to the upside in a year when the stock market has been up more than 10% going into the last quarter. Of course, prudent investors need to take into account the current conditions that are unique to this year.\\xa0All investors should strive to develop deep knowledge of market mechanics to gain a big edge.\\xa0Due to the high value, Wall Street professionals keep the details of market mechanics close to their chest.\\xa0The best way to learn about market mechanics is to listen to the podcasts in\\xa0Arora Ambassador Club.\\nProducer Price Index came hotter than expected.\\xa0Here are the details:\\n\\nHeadline PPI came at 0.5% vs. 0.3% consensus.\\nCore PPI came at 0.3% vs. 0.2% consensus.\\n\\n\\nWall Street has been positioned for better than expected PPI and CPI.\\xa0Today PPI has dashed bulls’ hopes, but they are hanging tough, trusting that market mechanics will drive the stock market higher irrespective of the data.\\nCPI will be released tomorrow at 8:30am ET.\\xa0The latest consensus is 0.3% for both the headline and core.\\nSan Francisco Fed President Mary Daly commented that the neutral rate may now be at 3%.\\xa0Stock market bulls are still hoping for ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['Cryptocurrency', 'Economics', 'Markets', 'Trading Ideas']},\n",
+ " {'id': 'u3pCQaXSnjypSTL90BEKPg2FJ1Rbg-3TdzfqQb_jATI',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'Analysts Estimate Tesla (TSLA) to Report a Decline in Earnings: What to Look Out for',\n",
+ " 'author': 'Zacks Equity Research',\n",
+ " 'published_utc': '2023-10-11T14:00:36Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/2164307/analysts-estimate-tesla-tsla-to-report-a-decline-in-earnings-what-to-look-out-for',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/2164307/analysts-estimate-tesla-tsla-to-report-a-decline-in-earnings-what-to-look-out-for',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/default_article_images/default7.jpg',\n",
+ " 'description': \"Tesla (TSLA) doesn't possess the right combination of the two key ingredients for a likely earnings beat in its upcoming report. Get prepared with the key expectations.\"},\n",
+ " {'id': 'XELUS9bHvgZo3C7DxjtjV4ff3G7h_WwYwo1z5GoBzTc',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': \"Steer clear of these stocks where the economy is in trouble, says Steve Eisman of 'Big Short' fame\",\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-10-11T13:36:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/steer-clear-of-these-stocks-where-the-economy-is-in-trouble-says-steve-eisman-of-big-short-fame-2956e0f5',\n",
+ " 'tickers': ['XHB',\n",
+ " 'BAC',\n",
+ " 'DJIA',\n",
+ " 'COMP',\n",
+ " 'BIRK',\n",
+ " 'XOM',\n",
+ " 'PXD',\n",
+ " 'DVA',\n",
+ " 'BAX',\n",
+ " 'SILK',\n",
+ " 'WBA',\n",
+ " 'FMS',\n",
+ " 'NVO',\n",
+ " 'TSLA',\n",
+ " 'AMC',\n",
+ " 'GME',\n",
+ " 'NVDA',\n",
+ " 'NIO',\n",
+ " 'AAPL',\n",
+ " 'TTOO',\n",
+ " 'PLTR',\n",
+ " 'AMZN',\n",
+ " 'MULN'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/steer-clear-of-these-stocks-where-the-economy-is-in-trouble-says-steve-eisman-of-big-short-fame-2956e0f5',\n",
+ " 'image_url': 'https://images.mktw.net/im-866296/social',\n",
+ " 'description': 'Steve Eisman of \"Big Short\" fame lays out where investors should be focusing their concerns right now, offering sectors and parts of the economy to avoid.'},\n",
+ " {'id': 'pawjLSaqYyLj9QHkoKFlIApOysm2HENPN1P7FrrvpWU',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Tesla Bear Gordon Johnson Shares Stories Of 3 Drivers Who Don't Plan To Buy A Tesla Again: Here's What They Said\",\n",
+ " 'author': 'Anan Ashraf',\n",
+ " 'published_utc': '2023-10-11T11:22:55Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/23/10/35188824/tesla-bear-gordon-johnson-shares-stories-of-3-drivers-who-dont-plan-to-buy-a-tesla-',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/35188824',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/Tesla_Shanghai_0.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Long-time\\xa0Tesla Inc\\xa0(NASDAQ:TSLA) bear and\\xa0GLJ Research\\xa0CEO\\xa0Gordon Johnson\\xa0allegedly interviewed three Tesla owners in the past week who won’t buy another Tesla.\\nWhat Happened:\\xa0In a post on X, formerly Twitter, Johnson said that he spoke to a 2021 Model 3 owner and Uber driver on Tuesday.\\nWhen asked if he liked his car, the owner initially hesitated but eventually conceded, “Sure, it’s great.”\\xa0\\nHowever, his reluctance to buy another Tesla became evident as he explained, “No… I will wait for the price to drop more, or other EV options to come out before buying another TSLA.”\\xa0\\nHe appreciated the car and its software but voiced concerns about pricing and depreciation. He also felt that the Full Self-Driving (FSD) package was “too much at $15K; I’m not rich.”\\n“I asked him if he had taken long trips, and he said his furthest was 3hrs, but there were issues charging (although, admittedly, he said that’s gotten better over the ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['News', 'Analyst Color', 'Tech']},\n",
+ " {'id': '_db_P9eib0z4AgVnuk4ImXXb8B9ikw5QVGHgTO65gI0',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': \"1 Key Investing Metric Is Waving a Massive Green Flag for Tesla -- Time to Buy the EV Leader's Stock?\",\n",
+ " 'author': 'newsfeedback@fool.com (Keith Noonan)',\n",
+ " 'published_utc': '2023-10-11T09:40:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/10/11/investing-metric-green-flag-tesla-ev-stock/',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/750224/a-tesla-model-s.jpg',\n",
+ " 'description': 'Despite recent margin headwinds, now could be a great time to buy Tesla stock.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'fq7lr6koBdsZXhWuUmr2_gTyMa7F5agf97TIeWa1NoU',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'A Bull Market Is Coming: 3 No-Brainer Stocks to Buy With $1,000 Right Now',\n",
+ " 'author': 'newsfeedback@fool.com (Joe Tenebruso)',\n",
+ " 'published_utc': '2023-10-11T09:10:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/10/11/bull-market-stocks-to-buy-with-1000-now/',\n",
+ " 'tickers': ['TSLA', 'NVDA', 'V'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/750233/investor-gettyimages-1094918638.jpg',\n",
+ " 'description': \"Here's why you should invest in these three tech stocks today.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'sbX8pUQu5gjh8dPdC_HaFCl_6XfeI0uKA_x1Rmg115o',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': '1 \"Magnificent Seven\" Stock to Buy Hand Over Fist in October and 1 to Avoid',\n",
+ " 'author': 'newsfeedback@fool.com (Sean Williams)',\n",
+ " 'published_utc': '2023-10-11T09:06:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/10/11/1-magnificent-seven-stock-buy-october-1-to-avoid/',\n",
+ " 'tickers': ['META', 'TSLA', 'MSFT', 'GOOGL', 'AAPL', 'AMZN', 'NVDA', 'GOOG'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/750165/buy-sell-dice-on-financial-graph-stock-market-getty.jpg',\n",
+ " 'description': \"Among Apple, Microsoft, Alphabet, Amazon, Nvidia, Tesla, and Meta Platforms, there's one historically inexpensive industry leader with a bounty of long-term tailwinds, as well as a highflier that's priced for perfection.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'HVrYnEXblRodGbx0Uoe1FF4zMKfX3Iu5pQer9d_Q5PQ',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Tesla's High-Stakes Q3 Earnings Report: Will Margin Erosion Trigger Stock Selloff? 2 Analysts Weigh In\",\n",
+ " 'author': 'Shanthi Rexaline',\n",
+ " 'published_utc': '2023-10-11T08:52:11Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/23/10/35184825/teslas-high-stakes-q3-earnings-report-will-margin-erosion-trigger-stock-selloff-2-a',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/35184825',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/Paris,,France,-,November,29:,Tesla,Motors,Logo,On,A_1.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Tesla, Inc. (NASDAQ:TSLA) is gearing up to reveal its third-quarter financial performance, and analysts are bracing for the report and subsequent earnings call.\\nScheduled for release next week, on Oct. 18, Tesla’s results come amidst a backdrop of price reductions and\\xa0sluggish vehicle sales. Here’s what two analysts anticipate for the forthcoming report:\\nWill Musk Blame Economic Woes?\\xa0Tesla’s stock has faced a downward trend following earnings releases over recent quarters, with declines occurring in seven of the past 12 quarters, according to Future Fund Managing Director Gary Black. He attributed this to concerns surrounding earnings quality and negative management commentary during conference calls.\\nEarnings quality concerns include factors like regulatory credits, non-operating income, or low tax rates.\\nThe consensus estimate for Tesla’s earnings per share stands at $0.75, a decrease from the initial estimate of $0.78 before third-quarter deliveries were disclosed. According to Black, the most crucial metric this quarter is the auto gross margin, excluding regulatory credits. While the Street estimate pegs this figure at 18%, Black’s projection is 17.1%.\\nIn the past two earnings calls, CEO\\xa0Elon Musk\\xa0and his ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['News', 'Analyst Color', 'Equities', 'Top Stories', 'Tech']},\n",
+ " {'id': '2EjRWCEEcal0Cg1NeDXpkAjET5uSTedIBf-q7P6fuYU',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Cathie Wood's Ark Invest Keeps On Cutting Tesla Holdings, Sells More Than $8M Worth Of EV Maker's Shares\",\n",
+ " 'author': 'Benzinga Neuro',\n",
+ " 'published_utc': '2023-10-11T02:33:15Z',\n",
+ " 'article_url': 'https://www.benzinga.com/markets/equities/23/10/35178618/cathie-woods-ark-invest-keeps-on-cutting-tesla-holdings-sells-more-than-8m-worth-of-ev-makers-sh',\n",
+ " 'tickers': ['TSLA', 'ARKW', 'PD', 'ARKK', 'ARKG', 'NTLA', 'CRSP', 'DKNG'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/35178618',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/Cathie_Wood_3.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'On Tuesday, Cathie Wood-led Ark Invest made a notable move by selling over $8 million worth of Tesla Inc (NASDAQ:TSLA) shares. This significant trade comes amidst a series of Tesla disposals by Ark, marking the third consecutive session of selling the electric vehicle giant’s stock.\\nThe Tesla Trade\\nArk Invest sold 31,418 shares of the Elon Musk-led company through its flagship ARK Innovation ETF (NYSE:ARKK). The transaction was valued at $8.28 million\\xa0—\\xa0based on Tesla stock’s closing price of $263.62 on Tuesday.\\nThe sale is particularly notable given Ark’s consistent acquisition of Tesla shares in the preceding weeks. It should be noted that the EV maker’s recent bullish run has pulled Ark’s ETFs higher. Interestingly, Wood’s ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['News', 'Equities', 'Markets', 'Media', 'ETFs']},\n",
+ " {'id': '-igpLu5XHWKMjBlwYGI0lk-PK0qWpPPLWBcb-YZTaBs',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Tesla Charges North, Pulls Cathie Wood-Led ARKK And 2X Leveraged TARK ETFs Higher: A Technical Analysis',\n",
+ " 'author': 'Melanie Schaffer',\n",
+ " 'published_utc': '2023-10-10T16:16:51Z',\n",
+ " 'article_url': 'https://www.benzinga.com/trading-ideas/long-ideas/23/10/35166867/tesla-charges-north-pulls-cathie-wood-led-arkk-and-2x-leveraged-tark-etfs-higher-a-techn',\n",
+ " 'tickers': ['TSLA', 'ARKK', 'TARK'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/35166867',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/10/10/shutterstock_1803971389.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Tesla, Inc (NASDAQ: TSLA) was rising over 3% on Tuesday, breaking up from a bull flag pattern on the daily chart.\\nOn Monday, Wells Fargo analyst Colin Langan maintained an Equal-Weight rating on the EV giant and lowered a price target slightly from $265 to $260. Morgan Stanley analyst Adam Jonas maintained an Overweight rating on the stock and a price target of $400.\\nJonas sees smartphone and EV technology continuing to merge and believes Tesla investors should consider the implications of a blurring of the lines between the two market segments.\\nFrom a technical analysis perspective, Tesla not only broke up from a bull flag on Tuesday but confirmed the stock continues to trade within a strong uptrend.\\nWith Tesla holding a 10.8% weighting in Cathie Wood-led Ark Innovation ETF (ARCA: ARKK), the fund ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['Long Ideas',\n",
+ " 'Sector ETFs',\n",
+ " 'Short Ideas',\n",
+ " 'Specialty ETFs',\n",
+ " 'Technicals',\n",
+ " 'Trading Ideas',\n",
+ " 'ETFs']},\n",
+ " {'id': 'me0qiFHaxlHym_Fi-iSjkGo--B2Ix_U1efsVSQBDMZw',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Pay Attention To Wall Street Positioning Ahead Of Important Inflation Data, US General Warns Iran',\n",
+ " 'author': 'The Arora Report',\n",
+ " 'published_utc': '2023-10-10T15:02:23Z',\n",
+ " 'article_url': 'https://www.benzinga.com/markets/23/10/35165227/pay-attention-to-wall-street-positioning-ahead-of-important-inflation-data-us-general-warns-iran',\n",
+ " 'tickers': ['GLD',\n",
+ " 'SLV',\n",
+ " 'SPY',\n",
+ " 'USO',\n",
+ " 'AMZN',\n",
+ " 'GOOG',\n",
+ " 'MSFT',\n",
+ " 'NVDA',\n",
+ " 'PEP',\n",
+ " 'AAPL',\n",
+ " 'TSLA',\n",
+ " 'QQQ',\n",
+ " 'META'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/35165227',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/m-zzoa5g8hspi-unsplash_1_1.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'To gain an edge, this is what you need to know today.\\n\\nPositioning\\nPlease\\xa0click here\\xa0for a chart of Invesco QQQ Trust Series 1 (NASDAQ: QQQ).\\nNote the following:\\n\\nThe chart shows that\\xa0QQQ\\xa0bounced from the top band of the mini support zone.\\xa0This is a sign of strength for tech stocks.\\nThe chart shows that unlike S&P 500 (SPX) SPDR S&P 500 ETF Trust (ARCA:SPY),\\xa0QQQ\\xa0did not even come close to the 200 day moving average.\\xa0This is again a sign of relative strength of tech stocks.\\nThe chart shows that RSI has quickly gone from oversold to overbought. This is due to the market mechanics of year end chase taking over.\\nImportant inflation data is ahead.\\n\\nPPI will be released on October 11 at 8:30am ET.\\xa0Consensus for the headline is 0.3% and for core is 0.2%.\\nCPI will be released on October 12 at 8:30am ET.\\xa0Consensus for both the headline and core is 0.3%.\\n\\n\\nIn The Arora Report analysis, Wall Street is positioned for inflation numbers better than the consensus.\\xa0Those interested in learning deeply about market mechanics of positioning, listen to the podcast “MARKET MECHANICS: POSITIONING.”\\n\\nIf the numbers come better than the consensus, Wall Street will be encouraged that they called it right.\\xa0This will cause aggressive buying.\\nIf the numbers come worse than the consensus, expect smart money to lightly sell and the market mechanic of year end chase to temporarily pause.\\xa0Expect momo gurus to come up with a new narrative to persuade their followers to buy stocks.\\n\\n\\nThe International Monetary Fund is raising its projections for inflation to 5.8% for the next year.\\xa0Only three months ago, the IMF had made a project of 5.2%. In The Arora Report analysis, this is not good news:\\xa0however as of this writing the crowd is oblivious as market mechanics have taken over.\\nThere is plenty of Fed speak today that may move the markets, speakers include Raphael Bostic, Neel Kashkari, Christopher Waller, and Mary Daly.\\xa0Investors are hoping that the Fed speakers will say the following:\\n\\nThe recent increase in long term rates has removed the necessity of further ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['Cryptocurrency', 'Economics', 'Federal Reserve', 'Markets']},\n",
+ " {'id': '-NoxKSeaOesxiL7LOUX5V-kOxftuo9STEOK533CLnSg',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': \"Momentum traders set to buy the S&P 500 'in every scenario,' says Goldman Sachs\",\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-10-10T14:03:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/momentum-traders-set-to-buy-the-s-p-500-in-every-scenario-says-goldman-sachs-c32efb10',\n",
+ " 'tickers': ['DJIA',\n",
+ " 'COMP',\n",
+ " 'PEP',\n",
+ " 'JPM',\n",
+ " 'BLK',\n",
+ " 'C',\n",
+ " 'WFC',\n",
+ " 'GM',\n",
+ " 'TSLA',\n",
+ " 'AMC',\n",
+ " 'NVDA',\n",
+ " 'GME',\n",
+ " 'NIO',\n",
+ " 'AAPL',\n",
+ " 'PLTR',\n",
+ " 'AMZN',\n",
+ " 'HUBC',\n",
+ " 'TTOO'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/momentum-traders-set-to-buy-the-s-p-500-in-every-scenario-says-goldman-sachs-c32efb10',\n",
+ " 'image_url': 'https://images.mktw.net/im-865537/social',\n",
+ " 'description': 'Call of the day from Goldman Sachs says that an influential crowd of momentum traders are setting up to be big buyers of the S&P 500 over the next month.'},\n",
+ " {'id': 'jSAupX9GuEJ8qRIyOf1p_Bw6-WTS00f2iBfE6SklQF0',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'Company News for Oct 10, 2023',\n",
+ " 'author': 'Zacks Equity Research',\n",
+ " 'published_utc': '2023-10-10T13:34:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/2163360/company-news-for-oct-10-2023',\n",
+ " 'tickers': ['LMT', 'CVX', 'DIS', 'TSLA'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/2163360/company-news-for-oct-10-2023',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/articles/main/c3/1493.jpg',\n",
+ " 'description': 'Companies in The News Are: LMT,DIS,TSLA,CVX'},\n",
+ " {'id': 'nqWQIMErgph5ADj2H1ifwgTlMnQkj9UN_g_2aiGjenE',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': \"This Artificial Intelligence Stock Is Now Cathie Wood's Second-Largest Position -- and It's Not Palantir or Nvidia\",\n",
+ " 'author': 'newsfeedback@fool.com (Adam Spatacco)',\n",
+ " 'published_utc': '2023-10-10T12:30:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/10/10/this-artificial-intelligence-ai-stock-is-now-cathi/',\n",
+ " 'tickers': ['PATH',\n",
+ " 'IBM',\n",
+ " 'GOOGL',\n",
+ " 'CRM',\n",
+ " 'AMZN',\n",
+ " 'NVDA',\n",
+ " 'TSLA',\n",
+ " 'SAP',\n",
+ " 'GOOG',\n",
+ " 'TWLO',\n",
+ " 'PLTR'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/749675/gettyimages-1598676527.jpg',\n",
+ " 'description': 'Ark Invest has quietly been building a position in UiPath, a leader in workforce automation software.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'VRW8Y2-zar_ZmfI60oC7BfAelEgB2xarxiRkUPs_j6w',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'Chart Storm: 6 Strong Technical Set-Ups for Q4',\n",
+ " 'author': 'Andrew Rocco',\n",
+ " 'published_utc': '2023-10-10T12:00:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/commentary/2162982/chart-storm-6-strong-technical-set-ups-for-q4',\n",
+ " 'tickers': ['AMD', 'MSFT', 'CME', 'TSLA', 'CCJ', 'SMCI', 'MBLY', 'PLTR'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/commentary/2162982/chart-storm-6-strong-technical-set-ups-for-q4',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/articles/main/f5/48899.jpg',\n",
+ " 'description': 'Open-minded investors will find several reasons to be bullish equities into Q4, including seasonality, sentiment, and Fed pivot potential. As a result, investors should pay attention to the many bullish set-ups emerging.'},\n",
+ " {'id': 'pHD6MBulTdHtNKIW71c0vkcJJSM9KczXJtYbmZBgB6A',\n",
+ " 'publisher': {'name': 'Seeking Alpha',\n",
+ " 'homepage_url': 'https://seekingalpha.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/seekingalpha.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/seekingalpha.ico'},\n",
+ " 'title': 'Wall Street Breakfast: All-Out War',\n",
+ " 'author': 'Wall Street Breakfast',\n",
+ " 'published_utc': '2023-10-10T11:30:36Z',\n",
+ " 'article_url': 'https://seekingalpha.com/article/4639913-wall-street-breakfast-all-out-war',\n",
+ " 'tickers': ['NOC',\n",
+ " 'LHX',\n",
+ " 'HII',\n",
+ " 'LMT',\n",
+ " 'GD',\n",
+ " 'GM',\n",
+ " 'F',\n",
+ " 'TSLA',\n",
+ " 'MSFT',\n",
+ " 'AAPL',\n",
+ " 'GOOG',\n",
+ " 'GOOGL',\n",
+ " 'AMZN',\n",
+ " 'META',\n",
+ " 'BAC',\n",
+ " 'PCG',\n",
+ " 'WW',\n",
+ " 'TFC',\n",
+ " 'JOBY',\n",
+ " 'U',\n",
+ " 'IBM'],\n",
+ " 'image_url': 'https://static.seekingalpha.com/cdn/s3/uploads/getty_images/98164604/image_98164604.jpg?io=getty-c-w1536',\n",
+ " 'description': \"This article covers escalating Middle East tensions and resulting defense stock moves, UAW strike at Mack Trucks, Europe's scrutiny of Apple & Microsoft, Country Garden's default warning.\"},\n",
+ " {'id': 'IxlyB2A4KrGIT8Pbx7jyR6lklOPceEuvLZgG8zN4lDA',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': \"Only 29% of S&P 500 Stocks Are Beating the Index. Here's What It Means for Your Portfolio\",\n",
+ " 'author': 'newsfeedback@fool.com (Daniel Foelber)',\n",
+ " 'published_utc': '2023-10-10T11:15:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/10/10/invest-sp-500-stocks-market-portfolio/',\n",
+ " 'tickers': ['GOOGL',\n",
+ " 'AMZN',\n",
+ " 'NVDA',\n",
+ " 'RCL',\n",
+ " 'META',\n",
+ " 'TSLA',\n",
+ " 'GE',\n",
+ " 'FDX',\n",
+ " 'CRM',\n",
+ " 'AMD',\n",
+ " 'PHM',\n",
+ " 'BKNG',\n",
+ " 'PANW',\n",
+ " 'ADBE',\n",
+ " 'CCL',\n",
+ " 'LRCX',\n",
+ " 'GOOG',\n",
+ " 'ANET',\n",
+ " 'WST',\n",
+ " 'ON',\n",
+ " 'ABNB'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/749874/gettyimages-1430486612.jpg',\n",
+ " 'description': \"Big gains from Nvidia, Meta Platforms, Tesla, Amazon, and Alphabet are driving the S&P 500's strong year.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'MyC__AXumPQoCsCyq57J2m90Ze-_KxxPq1a_gNP7MSo',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': \"1 Green Flag and 1 Red Flag for Lucid Group's Future\",\n",
+ " 'author': 'newsfeedback@fool.com (Leo Sun)',\n",
+ " 'published_utc': '2023-10-10T10:05:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/10/10/1-green-flag-and-1-red-flag-for-lucid-group-future/',\n",
+ " 'tickers': ['LCID', 'TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/750171/lucid-air-exterior-04.jpg',\n",
+ " 'description': 'The luxury electric vehicle maker is still suffering growing pains.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'A6Nu7yXagw4DvD0Zl-ToTIck5e8iC_n3zzFqqQPSYuI',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': \"Cathie Wood's Ark Invest Is Selling Tesla and Nvidia, and Buying 1 Little-Known Artificial Intelligence (AI) Growth Stock\",\n",
+ " 'author': 'newsfeedback@fool.com (Trevor Jennewine)',\n",
+ " 'published_utc': '2023-10-10T09:45:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/10/10/cathie-wood-selling-nvidia-tesla-buying-1-ai-stock/',\n",
+ " 'tickers': ['NET', 'TSLA', 'NVDA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/750047/artificial-intelligence-13.jpg',\n",
+ " 'description': 'Investors might not see Cloudflare as an AI stock, but the cloud computing company stands to benefit greatly from growing demand for the technology.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'Nuzrj7lzzhn1-RKSKZSp7Uc7EpxGKOvZ_zPV_6ixkDc',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': \"1 Stock-Split AI Growth Stock to Buy Now Before It Soars 860%, According to Cathie Wood's Ark Invest\",\n",
+ " 'author': 'newsfeedback@fool.com (Trevor Jennewine)',\n",
+ " 'published_utc': '2023-10-10T09:15:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/10/10/1-stock-split-ai-stock-to-buy-before-it-soars-860/',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/749934/growth-3.jpg',\n",
+ " 'description': 'Popular fund manager Cathie Wood sees substantial upside for Tesla shareholders in the coming years.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': '6kqTlS-w5ff1EEpRVxVW6TFJiIJqUhLJNI1PdTH4xZA',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Tesla's Future: Morgan Stanley's Adam Jonas Foresees Car, Smartphone Convergence\",\n",
+ " 'author': 'Anan Ashraf',\n",
+ " 'published_utc': '2023-10-10T05:07:32Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/23/10/35153971/teslas-future-morgan-stanleys-adam-jonas-foresees-car-smartphone-convergence',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/35153971',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/Stuttgart,,Germany,-,08-11-2023:,Person,Holding,Smartphone,With,Logo,Of_0.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Morgan Stanley\\xa0analyst\\xa0Adam Jonas sees the lines between the automobile and mobile device market blur away as cars become increasingly defined by their software. This, he believes, will have implications for EV giant Tesla Inc (NASDAQ:TSLA). \\nPositive Outlook:\\xa0Jonas has maintained an \"overweight\" rating on Tesla stock with a price target of $400.\\nThe Tesla Thesis: Jonas believes it’s not too early for Tesla investors to consider the implications of the blurring lines between the two market segments of automobiles and mobile devices.\\nThe vehicle is now increasingly defined by its software and the key attributes of the connected vehicle include the primary hardware of a smartphone be it ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['News', 'Analyst Color', 'Reiteration', 'Tech']},\n",
+ " {'id': 'nFJy2def2tMt6xn4qa3D7PQtK5ZgH3G7qlglYTpEZnc',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'Tesla (TSLA) Stock Slides as Market Rises: Facts to Know Before You Trade',\n",
+ " 'author': 'Zacks Equity Research',\n",
+ " 'published_utc': '2023-10-09T21:45:18Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/2162956/tesla-tsla-stock-slides-as-market-rises-facts-to-know-before-you-trade',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/2162956/tesla-tsla-stock-slides-as-market-rises-facts-to-know-before-you-trade',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/default_article_images/default36.jpg',\n",
+ " 'description': 'Tesla (TSLA) reachead $259.67 at the closing of the latest trading day, reflecting a -0.33% change compared to its last close.'},\n",
+ " {'id': '73jgnCUch2Eq1cbrBje8O9Pr1EKTxVoacsRkrld5Gbc',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Why ParaZero Technologies Shares Are Trading Higher By Over 100%? Here Are Other Stocks Moving In Monday's Mid-Day Session\",\n",
+ " 'author': 'Lisa Levin',\n",
+ " 'published_utc': '2023-10-09T17:30:06Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/23/10/35149464/why-parazero-technologies-shares-are-trading-higher-by-over-100-here-are-other-stocks-moving-in-mond',\n",
+ " 'tickers': ['AAOI',\n",
+ " 'GROM',\n",
+ " 'ELIQ',\n",
+ " 'MRTX',\n",
+ " 'FEMY',\n",
+ " 'FBYD',\n",
+ " 'MBLY',\n",
+ " 'TNGX',\n",
+ " 'SNT',\n",
+ " 'CFRX',\n",
+ " 'SGLY',\n",
+ " 'NWLI',\n",
+ " 'TTOO',\n",
+ " 'HUBC',\n",
+ " 'USEG',\n",
+ " 'EVA',\n",
+ " 'TMPO',\n",
+ " 'BMY',\n",
+ " 'SFT',\n",
+ " 'SVRE',\n",
+ " 'CPE',\n",
+ " 'WINT',\n",
+ " 'PGY',\n",
+ " 'LMT',\n",
+ " 'VCNX',\n",
+ " 'PEV',\n",
+ " 'NOC',\n",
+ " 'SLNG',\n",
+ " 'HOLO',\n",
+ " 'WW',\n",
+ " 'TSLA',\n",
+ " 'ADXN',\n",
+ " 'PRZO',\n",
+ " 'LAC',\n",
+ " 'RPTX',\n",
+ " 'SPRU',\n",
+ " 'VIVK',\n",
+ " 'KBNT',\n",
+ " 'AWIN',\n",
+ " 'MTEK',\n",
+ " 'NNOX',\n",
+ " 'ZJYL',\n",
+ " 'WHLR',\n",
+ " 'XPEV',\n",
+ " 'TSBX',\n",
+ " 'KMDA',\n",
+ " 'WNW',\n",
+ " 'LQR'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/35149464',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/10/09/image9.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Gainers\\n\\nParaZero Technologies Ltd. (NASDAQ: PRZO) shares jumped 106% to $2.3901 after the company announced an Australian regulator approved first commercial drone flights in populated areas and near people using ParaZero safety systems.\\nHUB Cyber Security Ltd. (NASDAQ: HUBC) shares jumped 60.5% to $0.3836.\\nPhoenix Motor Inc. (NASDAQ: PEV) climbed 48% to $1.48. Phoenix Motor said its EdisonFuture subsidiary launched new Proton Exchange Membrane (PEM) solutions for green hydrogen products and production.\\nMaris-Tech Ltd. (NASDAQ: MTEK) shares climbed 21.1% to $1.2110. Maris-Tech announced\\xa0its participation in the upcoming Milipol Paris 2023 at the Paris Norde Villepinte exhibition.\\nSenstar Technologies Ltd. (NASDAQ: SNT) surged 20.5% to $1.35.\\nAERWINS Technologies Inc. (NASDAQ: AWIN) gained 19.5% to $0.1688. AERWINS Technologies said its board approved the establishment of a United States subsidiary in Los Angeles, California to pursue the redesign of its XTURISMO Ltd Edition prototype 1 hoverbike.\\nWindtree Therapeutics, Inc. (NASDAQ: WINT) climbed 13.3% to $1.3601.\\nJin Medical International Ltd. (NASDAQ: ZJYL) rose 16% to $15.93.\\nT2 Biosystems, Inc. (NASDAQ: TTOO) climbed 17% to $0.3075.\\nVivakor, Inc. (NASDAQ: VIVK) gained 15.6% to $0.96.\\nSingularity Future Technology Ltd. (NASDAQ: SGLY) jumped 15.3% to $0.68.\\nNational Western Life Group, Inc. (NASDAQ: NWLI) climbed 13.8% to $474.69 after the company inked a definitive merger deal with Prosperity Life Group for about $1.9 billion in an all-cash transaction.\\nU.S. Energy Corp. (NASDAQ:',\n",
+ " 'keywords': ['News',\n",
+ " 'Penny Stocks',\n",
+ " 'Small Cap',\n",
+ " 'Intraday Update',\n",
+ " 'Markets',\n",
+ " 'Movers',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': 'mKcmjX8mMvMTfg8HHfhOLu9sOJqBETmOWwhkqwkOk78',\n",
+ " 'publisher': {'name': 'Seeking Alpha',\n",
+ " 'homepage_url': 'https://seekingalpha.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/seekingalpha.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/seekingalpha.ico'},\n",
+ " 'title': \"BYD: The 'Better Tesla' Is A Bargain\",\n",
+ " 'author': 'Jonathan Weber',\n",
+ " 'published_utc': '2023-12-03T16:24:24Z',\n",
+ " 'article_url': 'https://seekingalpha.com/article/4655675-byd-better-tesla-bargain',\n",
+ " 'tickers': ['BRK.A', 'BRK.B', 'NIO', 'TSLA', 'XPEV'],\n",
+ " 'image_url': 'https://static.seekingalpha.com/cdn/s3/uploads/getty_images/1648458189/image_1648458189.jpg?io=getty-c-w1536',\n",
+ " 'description': \"BYD (BYDDF) is growing at a much faster rate and is expected to overtake Tesla in pure BEV sales this quarter. Read why I'm bullish on the stock.\"},\n",
+ " {'id': '32fpfdEH6QVLnyhDu0zfDQcguDuymMHNne4lgo3yui4',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"'Hard To Argue Against' Tesla's Cybertruck But Rivian Has An 'Incredibly Compelling' Product In RIT: Analyst\",\n",
+ " 'author': 'Shanthi Rexaline',\n",
+ " 'published_utc': '2023-12-03T15:51:25Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/23/12/36061625/hard-to-argue-against-teslas-cybertruck-but-rivian-has-an-incredibly-compelling-pro',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/36061625',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/San-Jose--Ca--Usa---November-25--2023-Te_0.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Tesla, Inc. (NASDAQ:TSLA) shares fell in the two straight sessions that followed the release of its much-awaited to Cybertruck, with the disgruntled lot pointing to the higher-than-expected pricing. An analyst at sell-side firm Canaccord Genuity said that the newest vehicle from the electric vehicle maker’s stable is as polarizing as company CEO Elon Musk.\\nMixed Views: “It’s hard to argue against its genius and its performance,” said Canaccord’s George Gianarikas\\xa0in a CNBC interview. The latest pickup truck’s performance metrics are “incredible,” he added. He noted that the Cybertruck beat a Porsche 911 “off the line” while towing another Porsche 911, and cited reviews that said that the former vehicle’s turning radius is “incredible.” \\n“It’s just a car that will probably change the landscape of our roads,” the analyst said of the ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['News', 'Analyst Color', 'Equities', 'Top Stories']},\n",
+ " {'id': 'g7jmr-yQinKxyaJkMSGBWW8wye61pf8IMyyCSb5BdBg',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Apple Is Far Less Important to Berkshire Hathaway Than You Think',\n",
+ " 'author': 'newsfeedback@fool.com (Daniel Foelber)',\n",
+ " 'published_utc': '2023-12-03T15:32:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/12/03/apple-is-far-less-important-to-berkshire-hathaway/',\n",
+ " 'tickers': ['BRK.B',\n",
+ " 'BRK.A',\n",
+ " 'AAPL',\n",
+ " 'UNP',\n",
+ " 'NSC',\n",
+ " 'META',\n",
+ " 'GOOGL',\n",
+ " 'TSLA',\n",
+ " 'AMZN',\n",
+ " 'CSX',\n",
+ " 'GOOG'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/756765/gettyimages-1652005987-1200x800-5b2df79.jpg',\n",
+ " 'description': 'What is Warren Buffett-led Berkshire Hathaway really worth?',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'NbSRJtm56eqkxBRGajwZkysVA99Ay_mVtZbxO0sw0kQ',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Tesla Dug Its Own Grave With the Cybertruck. Or Did It?',\n",
+ " 'author': 'newsfeedback@fool.com (Neil Rozenbaum)',\n",
+ " 'published_utc': '2023-12-03T15:30:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/12/03/tesla-dug-its-own-grave-with-the-cybertruck-or-did/',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/756889/tesla-cybertruck-on-road.png',\n",
+ " 'description': \"Here's everything you need to know about the electric vehicle maker's week.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'XyytZFYdDPMh6PGHsqyV1XHcSmI8pGHQkBbOfWIqeuA',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'These 3 Stocks Might Be Getting a Little Too Expensive',\n",
+ " 'author': 'newsfeedback@fool.com (Neil Patel)',\n",
+ " 'published_utc': '2023-12-03T15:10:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/12/03/these-3-stocks-are-getting-a-little-too-expensive/',\n",
+ " 'tickers': ['AAPL', 'CMG', 'TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/756650/mobile-stock-trading.jpg',\n",
+ " 'description': 'Investors should practice patience, adding these companies to their watch lists.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'ljyh1DTtmDTkxYqyUv70H-demsqHU1rFhUUjjEUnsKA',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Despite Trade Barriers, Chinese EVs Will Pose Major Threat To American Automakers, Say Experts: 'Picture A Modern Day Godzilla'\",\n",
+ " 'author': 'Bibhu Pattnaik',\n",
+ " 'published_utc': '2023-12-03T14:59:10Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/23/12/36061505/despite-trade-barriers-chinese-evs-will-pose-major-threat-to-american-automakers-say-experts-picture',\n",
+ " 'tickers': ['F', 'GM', 'TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/36061505',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/12/03/shutterstock_2248023209.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'While Chinese electric vehicles (EVs) have been gaining popularity globally, their entry into the U.S. market has been\\xa0notably restricted.\\nWhat Happened: A report by the Wall Street Journal sheds light on the trade barriers set up by the federal government,\\xa0which have effectively limited the presence of these affordable EVs in the American automotive landscape.\\nInitiated by former President\\xa0Donald Trump, the\\xa025% tariff on Chinese auto imports has been a significant hurdle. This policy was further reinforced by President Joe Biden, who also excluded Chinese EVs from the advantageous \"Buy America\" credits.\\nThese measures have created a challenging environment for Chinese automakers to compete in the U.S., contrasting with their growing\\xa0market presence\\xa0elsewhere.\\nDespite these obstacles, the global influence of Chinese automakers continues to expand, raising concerns among U.S. officials about the long-term effectiveness of these trade barriers.\\n\"China is determined to dominate the electric-vehicle market by using unfair trade practices, but I will not let them,\"\\xa0Biden assured auto-union workers in Illinois in November.\\nChina\\'s automotive prowess is evident as it is set to surpass Japan ...',\n",
+ " 'keywords': ['News', 'Top Stories']},\n",
+ " {'id': 'XSHyrKLD2QcR8Ik7U1unrW2vGGXTw_bk7fEHPEDC68o',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': \"1 Growth Stock to Buy and Hold in a Market Downturn: Examining Tesla's Resilience Beyond EV Dominance\",\n",
+ " 'author': 'newsfeedback@fool.com (RJ Fulton)',\n",
+ " 'published_utc': '2023-12-03T13:54:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/12/03/1-growth-stock-to-buy-and-hold-in-a-market-downtur/',\n",
+ " 'tickers': ['TSLA', 'F', 'RIVN'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/756701/investor-trader-chart-graph-stock-point-growth-profit-loss-1200x800-5b2df79.jpg',\n",
+ " 'description': 'In the turbulent seas of economic uncertainty, Tesla emerges as the growth stock to buy and hold for a resilient future.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'Q3mkjWEOUkWqsICLzAX-baCtv1fpKvuHYGpoSEF5iRc',\n",
+ " 'publisher': {'name': 'Investing.com',\n",
+ " 'homepage_url': 'https://www.investing.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/investing.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/investing.ico'},\n",
+ " 'title': '1 Stock to Buy, 1 Stock to Sell This Week: MongoDB, Nio',\n",
+ " 'author': 'Investing.com',\n",
+ " 'published_utc': '2023-12-03T12:47:00Z',\n",
+ " 'article_url': 'https://www.investing.com/analysis/1-stock-to-buy-1-stock-to-sell-this-week-mongodb-nio-200644076',\n",
+ " 'tickers': ['GME',\n",
+ " 'AVGO',\n",
+ " 'LULU',\n",
+ " 'DG',\n",
+ " 'CHWY',\n",
+ " 'TOL',\n",
+ " 'AI',\n",
+ " 'DOCU',\n",
+ " 'MDB',\n",
+ " 'NIO',\n",
+ " 'LI',\n",
+ " 'XPEV',\n",
+ " 'TSLA',\n",
+ " 'XLK'],\n",
+ " 'amp_url': 'https://m.investing.com/analysis/1-stock-to-buy-1-stock-to-sell-this-week-mongodb-nio-200644076?ampMode=1',\n",
+ " 'image_url': 'https://i-invdn-com.investing.com/redesign/images/seo/investingcom_analysis_og.jpg'},\n",
+ " {'id': 'WhmVN1DIuZ0cL5ymN9Pv2M6KZjcskEry3wYaq_RTTR0',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'This Artificial Intelligence (AI) Company Could Be the Next to Join Apple, Microsoft, Amazon, and Alphabet in the $1 Trillion Club, According to Wall Street',\n",
+ " 'author': 'newsfeedback@fool.com (Adam Spatacco)',\n",
+ " 'published_utc': '2023-12-03T11:48:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/12/03/this-artificial-intelligence-ai-company-could-be-t/',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/755190/people-working-on-a-car-assmebly-line.jpg',\n",
+ " 'description': \"Ron Baron thinks Tesla's autonomous driving technology could be worth $100 billion in revenue per year.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'cfzd_2RtsU4fhmBETqAIthhp_9X9gYj1e3-1dS5wvOY',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': \"Why Is Nobody Talking About This Stock That's Tripled in 5 Years?\",\n",
+ " 'author': 'newsfeedback@fool.com (Daniel Miller)',\n",
+ " 'published_utc': '2023-12-03T10:12:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/12/03/why-is-nobody-talking-about-this-stock-thats-tripl/',\n",
+ " 'tickers': ['RACE', 'TSLA', 'F', 'GM', 'RIVN'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/756665/ferrari_puro.jpg',\n",
+ " 'description': \"Savvy investors have enjoyed Ferrari's gains over the past few years, but many mistakenly brush this luxury company aside.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'UMbqQssI0KY6laFoQrkrhBmFonWMIfczSoocLpeGKeM',\n",
+ " 'publisher': {'name': 'Seeking Alpha',\n",
+ " 'homepage_url': 'https://seekingalpha.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/seekingalpha.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/seekingalpha.ico'},\n",
+ " 'title': \"Abbott Laboratories: A 'Must-Have' In A Defensive Dividend Growth Portfolio\",\n",
+ " 'author': 'Millennial Dividends',\n",
+ " 'published_utc': '2023-12-03T09:00:32Z',\n",
+ " 'article_url': 'https://seekingalpha.com/article/4655625-abbott-laboratories-a-must-have-in-a-defensive-dividend-growth-portfolio',\n",
+ " 'tickers': ['AAPL',\n",
+ " 'ABBV',\n",
+ " 'AMZN',\n",
+ " 'CL',\n",
+ " 'GOOG',\n",
+ " 'GOOGL',\n",
+ " 'JNJ',\n",
+ " 'LLY',\n",
+ " 'META',\n",
+ " 'MRK',\n",
+ " 'MSFT',\n",
+ " 'NOBL',\n",
+ " 'NVDA',\n",
+ " 'NVO',\n",
+ " 'PFE',\n",
+ " 'RSP',\n",
+ " 'SPY',\n",
+ " 'TSLA',\n",
+ " 'ABT'],\n",
+ " 'image_url': 'https://static.seekingalpha.com/cdn/s3/uploads/getty_images/1450931952/image_1450931952.jpg?io=getty-c-w1536',\n",
+ " 'description': 'Abbott Laboratories had a difficult last three years, with its stock price trading sideways as sales driven by COVID-19 plummeted. Read more on ABT stock here.'},\n",
+ " {'id': '8PJ89FJxQQYGMP9SkMzafXS5gzE0vbd8YoDCvsCU-I8',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': \"The 'Magnificent Seven' is like the 'Nifty 50'? If only they could be so lucky.\",\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-12-02T15:51:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/the-magnificent-seven-is-like-the-nifty-50-if-only-they-could-be-so-lucky-1ef77f6d',\n",
+ " 'tickers': ['META',\n",
+ " 'AAPL',\n",
+ " 'AMZN',\n",
+ " 'GOOGL',\n",
+ " 'MSFT',\n",
+ " 'NVDA',\n",
+ " 'TSLA',\n",
+ " 'JPM',\n",
+ " 'WMT',\n",
+ " 'BRK.A',\n",
+ " 'BRK.B'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/the-magnificent-seven-is-like-the-nifty-50-if-only-they-could-be-so-lucky-1ef77f6d',\n",
+ " 'image_url': 'https://images.mktw.net/im-20271959/social',\n",
+ " 'description': \"Buying high-flying growth stocks at premium prices can be profitable -- if you're able to hold on for decades.\"},\n",
+ " {'id': 'rz3gDSAR1VFpvdGAJlG0YPxdhWwJYZhFUmehaZtJ3FE',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Investors beware: ‘Magnificent Seven’ are starting to resemble ‘Nifty 50’ stocks that got crushed in the 1970s market crash',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-12-02T15:10:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/investors-beware-magnificent-seven-are-starting-to-resemble-nifty-50-stocks-that-got-crushed-in-the-1970s-market-crash-6e26b351',\n",
+ " 'tickers': ['PFE',\n",
+ " 'BMY',\n",
+ " 'KO',\n",
+ " 'GE',\n",
+ " 'TXN',\n",
+ " 'IBM',\n",
+ " 'XRX',\n",
+ " 'MSFT',\n",
+ " 'AAPL',\n",
+ " 'NVDA',\n",
+ " 'GOOGL',\n",
+ " 'META',\n",
+ " 'AMZN',\n",
+ " 'TSLA'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/investors-beware-magnificent-seven-are-starting-to-resemble-nifty-50-stocks-that-got-crushed-in-the-1970s-market-crash-6e26b351',\n",
+ " 'image_url': 'https://images.mktw.net/im-386226/social',\n",
+ " 'description': 'What do the \"Magnificent Seven\" stocks of today and the \"Nifty 50\" names of the early 1970s have in common? More than you might expect, according to one Wall Street strategist.'},\n",
+ " {'id': 'nbhzkp4A0Rx6xCuu1lE6Z9bzNgRCoxTQrXb32_kM9Fw',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Tesla Cybertruck Seen As Pricier 'Side Story,' More Ford Dealers Drop Out Of EV Program, Fisker's Production Woes And More: Biggest EV Stories Of The Week\",\n",
+ " 'author': 'Shanthi Rexaline',\n",
+ " 'published_utc': '2023-12-02T14:34:37Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/23/12/36058005/tesla-cybertruck-seen-as-pricier-side-story-more-ford-dealers-drop-out-of-ev-progra',\n",
+ " 'tickers': ['RIVN',\n",
+ " 'VFS',\n",
+ " 'F',\n",
+ " 'FSR',\n",
+ " 'TSLA',\n",
+ " 'LI',\n",
+ " 'WKHS',\n",
+ " 'KARS',\n",
+ " 'NIO',\n",
+ " 'NKLA',\n",
+ " 'XPEV',\n",
+ " 'ARVL',\n",
+ " 'GOEV',\n",
+ " 'LCID',\n",
+ " 'HYZN',\n",
+ " 'FFIE'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/36058005',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/San-Jose--Ca--Usa---November-25--2023-Te.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Electric vehicle stocks had a mixed outing in the week that ended on Dec. 1, as stock-specific actions drove sentiment in some cases while the listless performance of the broader market also weighed down on the industry. Tesla, Inc. (NASDAQ:TSLA) managed to post a weekly gain but settled off the highs, as the pre-Cybertruck launch frenzy soured amid mixed reviews for the electric pickup truck.\\nHere are the key events that happened in the EV space during the week:\\nTesla’s Cybertruck Launch, Swedish Strike Update And More: After four years of its unveiling, Tesla’s Cybertruck finally saw the light of the day. The company held a grand delivery event Thursday afternoon at its Giga Austin facility and handed over the first few vehicles to customers. Delving into the details Tesla made available on its website, most analysts said the EV pickup truck was pricier.\\nDeepwater Asset Management’s Gene Munster, who is bullish on Tesla, said the final pricing of the three trim levels was at least 20-25% above his expectations. He also said the Cybertruck will likely be a “side story” until the company fully ramps up production to an annual production rate of 25,000 units in 2026.\\nTesla continues to fight union troubles in Sweden as the Elon Musk-led company sued the Swedish Transport Agency after employees affiliated with Sweden’s public service union, Fackförbundent ST,\\xa0stopped delivering mail, including license plates, to Tesla, local news ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['News', 'Analyst Color', 'Equities', 'Top Stories']},\n",
+ " {'id': '6LQgnW9scygtd8uMkJxiORboR6sgO3ohYH5PIBOZsP8',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Top trades for 2024 encircle Big Tech, but their bonds are a better bet, Bank of America says',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-12-02T13:38:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/top-trades-for-2024-encircle-big-tech-but-not-so-much-the-stocks-bank-of-america-says-3b582f00',\n",
+ " 'tickers': ['AMZN',\n",
+ " 'META',\n",
+ " 'TSLA',\n",
+ " 'NVDA',\n",
+ " 'GOOGL',\n",
+ " 'MSFT',\n",
+ " 'XBI',\n",
+ " 'BP',\n",
+ " 'BP'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/top-trades-for-2024-encircle-big-tech-but-not-so-much-the-stocks-bank-of-america-says-3b582f00',\n",
+ " 'image_url': 'https://images.mktw.net/im-581897/social',\n",
+ " 'description': 'Bank of America strategists who laid out the top 10 trades for 2024, including a bet against the Magnificent Seven tech stocks.'},\n",
+ " {'id': 'T-_dlOQGvi6BD7CXQ5SvQtWuklrbBWOrbZP8V8pW26g',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Here’s why Nvidia is a compelling stock when compared with the rest of the ‘Magnificent Seven’',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-12-02T13:31:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/heres-why-nvidia-is-a-compelling-stock-when-compared-with-the-rest-of-the-magnificent-seven-0db1071b',\n",
+ " 'tickers': ['NVDA', 'AAPL', 'MSFT', 'AMZN', 'TSLA', 'GOOGL', 'META'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/heres-why-nvidia-is-a-compelling-stock-when-compared-with-the-rest-of-the-magnificent-seven-0db1071b',\n",
+ " 'image_url': 'https://images.mktw.net/im-06439923/social',\n",
+ " 'description': 'Nvidia has dominated financial-news coverage for tech-oriented companies this year, and it is reasonable to question how long a company can continue a winning streak like the one it has been on.'},\n",
+ " {'id': 'pB-d54v4eSV4pjuAXRMbWxxHMSfM7FwAGcM5pxtarkg',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': \"'Magnificent Seven's' bonds may have been sending a signal to stockholders\",\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-12-02T13:23:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/magnificent-sevens-bonds-may-have-been-sending-a-signal-to-stockholders-41b7ad42',\n",
+ " 'tickers': ['AAPL', 'TSLA', 'META', 'MSFT', 'NVDA', 'AMZN', 'GOOGL'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/magnificent-sevens-bonds-may-have-been-sending-a-signal-to-stockholders-41b7ad42',\n",
+ " 'image_url': 'https://images.mktw.net/im-70410073/social',\n",
+ " 'description': 'Bonds issued by the high-valuation \"Magnificent Seven\" have seen net selling for the last two weeks. Is that a signal for stockholders?'},\n",
+ " {'id': 'UmBVEAZiJ56p-B9L95HhTx6rptfIqR2q_x03R0sjSDg',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'The ‘Magnificent Seven’ have dominated the stock market this year. That’s the bad news.',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-12-02T13:02:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/the-magnificent-seven-have-dominated-the-stock-market-this-year-thats-the-bad-news-aa22bfe7',\n",
+ " 'tickers': ['SPY',\n",
+ " 'AAPL',\n",
+ " 'MSFT',\n",
+ " 'AMZN',\n",
+ " 'NVDA',\n",
+ " 'GOOGL',\n",
+ " 'GOOG',\n",
+ " 'TSLA',\n",
+ " 'META',\n",
+ " 'RSP',\n",
+ " 'GM',\n",
+ " 'DIS',\n",
+ " 'DLTR'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/the-magnificent-seven-have-dominated-the-stock-market-this-year-thats-the-bad-news-aa22bfe7',\n",
+ " 'image_url': 'https://images.mktw.net/im-96498660/social',\n",
+ " 'description': \"The 'Magnificent Seven' stocks have dominated financial media coverage this year and for good reason.\"},\n",
+ " {'id': 'E-QJcrgigGRu3nsuJIsOsgzNAm2V94DKssp8d-aPeIE',\n",
+ " 'publisher': {'name': 'Seeking Alpha',\n",
+ " 'homepage_url': 'https://seekingalpha.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/seekingalpha.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/seekingalpha.ico'},\n",
+ " 'title': 'Wall Street Breakfast: What Moved Markets',\n",
+ " 'author': 'Wall Street Breakfast',\n",
+ " 'published_utc': '2023-12-02T12:12:17Z',\n",
+ " 'article_url': 'https://seekingalpha.com/article/4655580-wall-street-breakfast-what-moved-markets',\n",
+ " 'tickers': ['AAPL',\n",
+ " 'GOOGL',\n",
+ " 'TSLA',\n",
+ " 'BRK.A',\n",
+ " 'BRK.B',\n",
+ " 'BXP',\n",
+ " 'NTAP',\n",
+ " 'CRM',\n",
+ " 'GM',\n",
+ " 'CCI',\n",
+ " 'CI',\n",
+ " 'GEHC',\n",
+ " 'PFE',\n",
+ " 'AVGO',\n",
+ " 'ACGL'],\n",
+ " 'image_url': 'https://static.seekingalpha.com/uploads/2021/9/4/saupload_Stock_Market_-_generic_11.jpg',\n",
+ " 'description': 'Listen on the go! A daily podcast of Wall Street Breakfast will be available this morning on Seeking Alpha, iTunes, Spotify.'},\n",
+ " {'id': '0hS9heKRV_mDE_lRpyBs7IWvcOapCqbKrS3LCNKJ-1E',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Tesla May Have Just Made Its Checkmate Move Against the Competition',\n",
+ " 'author': 'newsfeedback@fool.com (Adam Spatacco)',\n",
+ " 'published_utc': '2023-12-02T12:09:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/12/02/tesla-may-have-just-made-its-checkmate-move-agains/',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/755294/people-working-on-a-car-assmebly-line.jpg',\n",
+ " 'description': 'Tesla is reportedly working on a more affordable EV model at its factory in Berlin, Germany.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': '72hVRn3RvLUBO5xopnLELRuQrYR43qBi-Yi-RvhLB9g',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Why Tesla Will Be a High-Margin Stock Again',\n",
+ " 'author': 'newsfeedback@fool.com (Lee Samaha)',\n",
+ " 'published_utc': '2023-12-02T10:12:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/12/02/why-tesla-will-be-a-high-margin-stock-again/',\n",
+ " 'tickers': ['TSLA', 'F', 'HMC', 'GM'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/756034/electric-vehicle-charging-stock-to-buy-1.jpg',\n",
+ " 'description': \"The electric vehicle company's margin decline is concerning investors, but it's highly unlikely to be a long-term issue.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'Wm9oHOSqkovJoJUSEbTa7BIy3B7EbiVy9QtCus5Gdf0',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': '3 Winning Investments No Matter What the Market Is Doing',\n",
+ " 'author': 'newsfeedback@fool.com (RJ Fulton)',\n",
+ " 'published_utc': '2023-12-01T22:23:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/12/01/3-winning-investments-in-any-market/',\n",
+ " 'tickers': ['TSLA', 'MGK'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/756392/thinking-hard-with-laptop.jpg',\n",
+ " 'description': \"Don't let market uncertainties dictate your investments! Here are three resilient assets with unique qualities that make them winners in any market scenario.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'wAt8vfVFlSMg74xuQswQzN-mlcXktTsrNA2CvIxcMfA',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'November Rally Lights Up Stock Market As Speculation Grows Over Potential Fed Rate Cuts: The Week In The Markets',\n",
+ " 'author': 'Piero Cingari',\n",
+ " 'published_utc': '2023-12-01T21:43:23Z',\n",
+ " 'article_url': 'https://www.benzinga.com/markets/equities/23/12/36054244/november-rally-lights-up-stock-market-as-speculation-grows-over-potential-fed-rate-cuts-the-week',\n",
+ " 'tickers': ['SPY', 'TSLA', 'QQQ'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/36054244',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/Wall-Street-shutter2.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': \"The S&P 500 index, as tracked by the SPDR S&P 500 ETF Trust (NYSE:SPY), capped off November with a 8.9% rise, marking its 18th strongest monthly performance since 1950. \\nTechnology stocks, as closely monitored through the Invesco QQQ Trust (NASDAQ:QQQ), outpaced broader market gains, with the Nasdaq 100 index escalating by 10.8%, recording its fifth-best monthly result in a decade.\\nAdditionally, bond markets rallied as yields took a notable dip, while metal commodities thrived in the wake of a weakening dollar.\\nFueling this broad market rally was a surge in investor optimism, anticipating Federal Reserve interest rate cuts in 2024 in response to cooling inflation. Speculative bets are now leaning towards the Fed commencing its rate-cutting cycle in March 2024, with up to five rate reductions by the end of next year.\\nChart Of The Week: Stocks, Bonds Rally In Tandem As Dollar Falters\\n\\nFed’s preferred inflation measure slows to 3%, paving the way for rate cuts: The Personal Consumption Expenditure (PCE) price index, known as the Fed's preferred measure of ...Full story available on Benzinga.com\",\n",
+ " 'keywords': ['Equities',\n",
+ " 'Large Cap',\n",
+ " 'Broad U.S. Equity ETFs',\n",
+ " 'Bonds',\n",
+ " 'Commodities',\n",
+ " 'Forex',\n",
+ " 'Federal Reserve',\n",
+ " 'Markets',\n",
+ " 'Tech',\n",
+ " 'ETFs']},\n",
+ " {'id': 'Ko-57q0U7JG4bzHbfdZ0DBhocbSkRi4wNsZ7GfQxlzk',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Dow tops 36,000 after remarks by Fed’s Powell, S&P 500 heads for highest close of 2023',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-12-01T20:50:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/s-p-500-futures-steady-after-520-point-dow-surge-as-powell-comments-awaited-e9dfc859',\n",
+ " 'tickers': ['DJIA',\n",
+ " 'COMP',\n",
+ " 'TSLA',\n",
+ " 'CRM',\n",
+ " 'WBA',\n",
+ " 'NKE',\n",
+ " 'FSR',\n",
+ " 'ULTA',\n",
+ " 'PFE'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/s-p-500-futures-steady-after-520-point-dow-surge-as-powell-comments-awaited-e9dfc859',\n",
+ " 'image_url': 'https://images.mktw.net/im-269207/social',\n",
+ " 'description': 'U.S. stocks advance after remarks by Fed Chair Jerome Powell.'},\n",
+ " {'id': 'X7U0aj5RXFTs6vHZEA6JwtlviFJYRAQ6HvI8PhTbKgM',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Stocks, Gold, Bonds Rally Further, Dollars Tumbles As Traders Anticipate Fed Cuts: What's Driving Markets Friday?\",\n",
+ " 'author': 'Piero Cingari',\n",
+ " 'published_utc': '2023-12-01T19:36:48Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/large-cap/23/12/36051410/stocks-gold-bonds-rally-further-dollars-tumbles-as-traders-anticipate-fed-cuts-whats-driving-marke',\n",
+ " 'tickers': ['MRVL',\n",
+ " 'OKTA',\n",
+ " 'NVDA',\n",
+ " 'SOFI',\n",
+ " 'ULTA',\n",
+ " 'ZUO',\n",
+ " 'DIA',\n",
+ " 'ZUMZ',\n",
+ " 'FEZ',\n",
+ " 'CRM',\n",
+ " 'GLD',\n",
+ " 'KR',\n",
+ " 'VSCO',\n",
+ " 'IWM',\n",
+ " 'PFE',\n",
+ " 'KRE',\n",
+ " 'PVH',\n",
+ " 'SMH',\n",
+ " 'USO',\n",
+ " 'TSLA',\n",
+ " 'XBI',\n",
+ " 'PATH',\n",
+ " 'XLB',\n",
+ " 'XLC',\n",
+ " 'XLF',\n",
+ " 'AMBA',\n",
+ " 'XLK',\n",
+ " 'SNOW',\n",
+ " 'XLV',\n",
+ " 'PD',\n",
+ " 'XLY',\n",
+ " 'XLRE',\n",
+ " 'DELL',\n",
+ " 'HPE'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/36051410',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/Wall-Street-sign_3.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Kicking off the new month, Wall Street continued its strong November momentum, with major U.S. stocks rallying on Friday. \\nThe S&P 500, Dow Jones, and Nasdaq indices are all set for their fifth consecutive week of positive movement. Investor optimism further improved, driven by growing speculation of Fed rate cuts in 2024, despite Fed Chair Powell’s cautious remarks.\\nThe ISM manufacturing activity slowed more than predicted in November, contributing to a marked drop in Treasury yields. \\nAccording to CME Group Fed Watch tool, fed futures are currently anticipating the first interest rate cut in March 2024, with a probability of 60%. Furthermore, speculators are factoring in a total of five rate cuts by December 2024, with a probability of 72%.\\nThe U.S. dollar index (DXY) fell 0.4%, partially erasing Thursday’s gain. Gold, as tracked by the SPDR Gold Trust (NYSE:GLD), continued to shine, with the precious metal surging by 1.5% to reach $2,070 per ounce, coming tantalizingly close to its all-time highs.\\n\\n\\n\\n\\nIndex\\nPerformance (+/-)\\nValue\\n\\n\\nNasdaq 100\\n+0.22%\\n15,984.29\\n\\n\\nS&P 500 Index\\n+0.61%\\n4,597.30\\n\\n\\nDow Industrials\\n+0.79%\\n36,202.42\\n\\n\\nRussell 2000\\n+0.24%\\n1,853.38\\n\\n\\n\\n\\n\\nThe SPDR S&P 500 ETF Trust\\xa0(ARCA: SPY) rose 0.5% ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['Large Cap',\n",
+ " 'Macro Economic Events',\n",
+ " 'Bonds',\n",
+ " 'Commodities',\n",
+ " 'Treasuries',\n",
+ " 'Econ #s',\n",
+ " 'Economics',\n",
+ " 'Federal Reserve',\n",
+ " 'Tech',\n",
+ " 'ETFs']},\n",
+ " {'id': '2D3sMYzIp3ZsTwUR2eeNvNxZ0vS4d9Lul-YlURC-4uY',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Cybertruck A 'Moonshot' For Tesla? Divisive New EV Represents 5% Of Revenue, Zero Profit In 2025 For Automaker: Analysts\",\n",
+ " 'author': 'Chris Katje',\n",
+ " 'published_utc': '2023-12-01T18:11:47Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/23/12/36049175/cybertruck-a-moonshot-for-tesla-divisive-new-ev-represents-5-of-revenue-zero-profit',\n",
+ " 'tickers': ['F', 'TSLA', 'RIVN'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/36049175',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/Tesla-Cybertruck_6.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Electric vehicle leader Tesla Inc (NASDAQ:TSLA) highlighted the first deliveries of its highly anticipated Cybertruck electric pickup truck at an event Thursday.\\nAnalysts reacted to the event, details of the Cybertruck and the first announced pricing of the new vehicle, which currently ranged from $60,990 to $99,990.\\nThe Tesla Analysts: Goldman Sachs analyst Mark Delaney had a Neutral rating and a price target of $235.\\nMorgan Stanley analyst Adam Jonas had an Overweight rating and a price target of $380.\\nRBC Capital Markets analyst Tom Narayan had an Outperform rating and a price target of $301.\\nRelated Link: Tesla Q3 Earnings Highlights: Revenue Miss, EPS Miss, Cybertruck Launch Set For November And More\\nGoldman Sachs on Tesla: The capabilities like 0-60 mph acceleration were impressive, according to Delaney.\\n\"We believe the key focus for investors will be on how fast it ramps up, with strong consumer interest, but also potential headwinds from the premium price point and manufacturability,\" Delaney said.\\nThe analyst guided for 50,000 units delivered in 2024 despite a higher than what ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['Analyst Color',\n",
+ " 'Price Target',\n",
+ " 'Reiteration',\n",
+ " 'Top Stories',\n",
+ " 'Analyst Ratings',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': '8IRhEdsrpjVnWV0HxU85Zf7zKrz-0VlBq1PZBD1xO-w',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Why Lucid Group Stock Popped Friday Morning',\n",
+ " 'author': 'newsfeedback@fool.com (Rich Smith)',\n",
+ " 'published_utc': '2023-12-01T17:49:52Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/12/01/why-lucid-group-stock-popped-friday-morning/',\n",
+ " 'tickers': ['LCID', 'TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/756812/tesla-cybertruck-is-tesla.jpg',\n",
+ " 'description': \"Lucid's Gravity may be better than the Cybertruck -- if Lucid has the money it needs to build it.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': '5oBKCWckb5fuKwe2u5aHJYW79lp60zdnC7DOGCOhQEE',\n",
+ " 'publisher': {'name': 'Seeking Alpha',\n",
+ " 'homepage_url': 'https://seekingalpha.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/seekingalpha.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/seekingalpha.ico'},\n",
+ " 'title': \"Tesla's Botched CyberTruck Launch Bodes Poorly\",\n",
+ " 'author': 'Anton Wahlman',\n",
+ " 'published_utc': '2023-12-01T15:46:04Z',\n",
+ " 'article_url': 'https://seekingalpha.com/article/4655407-teslas-botched-cybertruck-launch',\n",
+ " 'tickers': ['GM', 'RIVN', 'STLA', 'F', 'TSLA'],\n",
+ " 'image_url': 'https://static.seekingalpha.com/cdn/s3/uploads/getty_images/1799662799/image_1799662799.jpg?io=getty-c-w1536',\n",
+ " 'description': 'The initial delivery event for the Tesla CyberTruck was underwhelming at best. Click here to find out what investors need to know.'},\n",
+ " {'id': 'SmBOM5P77-XL7S7wasoxU-sFdi9l9zNvDJBB5bqex5I',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'Stock Market News for Dec 1, 2023',\n",
+ " 'author': 'Zacks Equity Research',\n",
+ " 'published_utc': '2023-12-01T14:31:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/2192145/stock-market-news-for-dec-1-2023',\n",
+ " 'tickers': ['CRM', 'NVDA', 'TSLA'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/2192145/stock-market-news-for-dec-1-2023',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/articles/main/a0/43171.jpg',\n",
+ " 'description': 'U.S. stocks ended mostly higher on Thursday, with the Dow recording its highest close since January 2022, while the Nasdaq and S&P 500 registered their best monthly gains since July 2022 as fresh data showed inflation cooled further in October.'},\n",
+ " {'id': 'Tmaq-A_WWRZSVnMqacGuJOCUAXwsQPpDVVI6_hboUHw',\n",
+ " 'publisher': {'name': 'Seeking Alpha',\n",
+ " 'homepage_url': 'https://seekingalpha.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/seekingalpha.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/seekingalpha.ico'},\n",
+ " 'title': 'Tesla Cybertruck Event Flops',\n",
+ " 'author': 'Bill Maurer',\n",
+ " 'published_utc': '2023-12-01T14:23:23Z',\n",
+ " 'article_url': 'https://seekingalpha.com/article/4655390-tesla-cybertruck-event-flops',\n",
+ " 'tickers': ['F', 'RIVN', 'TSLA'],\n",
+ " 'image_url': 'https://static.seekingalpha.com/cdn/s3/uploads/getty_images/1799666459/image_1799666459.jpg?io=getty-c-w1536',\n",
+ " 'description': \"Tesla, Inc.'s highly anticipated Cybertruck delivery event was a disappointment, with higher pricing and lower range than expected. Explore more details here.\"},\n",
+ " {'id': 'nzlETq838F1MEvLKf5loCwQa9M3EHI3WLNrwJkwrNAM',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Bill Gross says beaten-down mortgage plays may thrive — and offer huge yields',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-12-01T13:57:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/bill-gross-says-beaten-down-mortgage-plays-may-thrive-and-offer-huge-yields-ce80eb7f',\n",
+ " 'tickers': ['NLY',\n",
+ " 'AGNC',\n",
+ " 'REM',\n",
+ " 'ULTA',\n",
+ " 'DELL',\n",
+ " 'MRVL',\n",
+ " 'TSLA',\n",
+ " 'GME',\n",
+ " 'NVDA',\n",
+ " 'AMC',\n",
+ " 'RDHL',\n",
+ " 'NIO',\n",
+ " 'AAPL',\n",
+ " 'AMZN',\n",
+ " 'GGE',\n",
+ " 'PLTR'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/bill-gross-says-beaten-down-mortgage-plays-may-thrive-and-offer-huge-yields-ce80eb7f',\n",
+ " 'image_url': 'https://images.mktw.net/im-768256/social'},\n",
+ " {'id': '4qpKQv7QJ1mfMc5YP5TFWW_tCBOxa2Jf6VaSZtGxUhw',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Tesla Is Falling, but Another Luxury Stock Looks More Beautiful Than Ever',\n",
+ " 'author': 'newsfeedback@fool.com (Dan Caplinger)',\n",
+ " 'published_utc': '2023-12-01T13:55:28Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/12/01/tesla-is-falling-but-another-luxury-stock-looks-mo/',\n",
+ " 'tickers': ['TSLA', 'ULTA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/756774/tsla-cybertruck-5.jpeg',\n",
+ " 'description': \"Investors didn't react to the long-awaited release of the Cybertruck.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'ZIfXsdqDY5RYdga_K-8bJ-63xTLfgwUZCltOlBpTaS0',\n",
+ " 'publisher': {'name': 'Seeking Alpha',\n",
+ " 'homepage_url': 'https://seekingalpha.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/seekingalpha.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/seekingalpha.ico'},\n",
+ " 'title': 'Wall Street Breakfast Podcast: Crude Oil Slips As OPEC Cuts Underwhelm',\n",
+ " 'author': 'Wall Street Breakfast',\n",
+ " 'published_utc': '2023-12-01T12:38:00Z',\n",
+ " 'article_url': 'https://seekingalpha.com/article/4655383-crude-oil-slips-as-opec-cuts-underwhelm',\n",
+ " 'tickers': ['CRM',\n",
+ " 'DIS',\n",
+ " 'F',\n",
+ " 'FSR',\n",
+ " 'GM',\n",
+ " 'GOEV',\n",
+ " 'GOEVW',\n",
+ " 'RIVN',\n",
+ " 'TM',\n",
+ " 'TSLA'],\n",
+ " 'image_url': 'https://static.seekingalpha.com/cdn/s3/uploads/getty_images/1432530757/image_1432530757.jpg?io=getty-c-w1536',\n",
+ " 'description': \"Crude oil slips as OPEC's voluntary production cuts underwhelm. Tesla delivers 1st Cybertrucks as it looks to shake up electric truck segment. Disney declares dividend after 3 year hiatus.\"},\n",
+ " {'id': 'JiUTSjCvtmRRg_TvJbIxjpSunztzkEz8YIyH6GF-nYI',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"US Stocks Set For Lackluster Start Following November's Buoyancy; Fed Chair Powell's Speeches Take The Spotlight\",\n",
+ " 'author': 'Shanthi Rexaline',\n",
+ " 'published_utc': '2023-12-01T12:25:36Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/earnings/23/12/36041425/us-stocks-set-for-lackluster-start-following-novembers-buoyancy-fed-chair-powells-speeches-take-the',\n",
+ " 'tickers': ['SPY',\n",
+ " 'DELL',\n",
+ " 'ULTA',\n",
+ " 'CRM',\n",
+ " 'GCO',\n",
+ " 'TSLA',\n",
+ " 'PATH',\n",
+ " 'QQQ',\n",
+ " 'PD'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/36041425',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/Stocks-Photo-by-Jirapong-Manustrong-on-S_5.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': \"U.S. stocks are priming for a cautious start in the first trading session of December following Thursday’s mixed close. December, typically a seasonally strong month, could be cautiously approached by traders as the major averages have all advanced strongly this year despite the economic uncertainties. That said, if incoming evidence continues to support expectations of a soft landing scenario accompanied by a cool-off in inflation, then cash waiting on the sidelines will likely be into stocks and other risky bets, increasing the momentum of the typical “Santa Claus” rally.\\nTraders could closely watch Federal Reserve Chair Jerome Powell’s two public appearances as they seek clarity on the rate outlook.\\nCues From Thursday's Trading:\\nThe major indices closed mixed on Thursday, as profit-taking in some high-profile tech names weighed down on the tech-heavy Nasdaq Composite, while the Dow Industrials advanced solidly. The strong gain of the 30-stock blue-chip average was fueled by the 9%+ rally in Salesforce, Inc. (NYSE:CRM) shares following its quarterly results. The breadth markedly favored the advancers, with 24 of the index components closing in the green.\\nA tamer reading for the Fed’s preferred inflation gauge also kept the risk appetite alive.\\nThe broader S&P 500 Index, which traded below the unchanged line for the bulk of the session, recovered in a last-hour push upward.\\nNotwithstanding the mixed performance on Thursday, the three averages had a buoyant November. The S&P 500 and the Nasdaq Composite had their best monthly performances since July 2022. The Dow closed snapped three straight months of losses and settled at the highest level since Jan. 13, 2022.\\n ...Full story available on Benzinga.com\",\n",
+ " 'keywords': ['News',\n",
+ " 'Earnings',\n",
+ " 'Equities',\n",
+ " 'Futures',\n",
+ " 'Previews',\n",
+ " 'Economics',\n",
+ " 'Federal Reserve',\n",
+ " 'Pre-Market Outlook',\n",
+ " 'Markets',\n",
+ " 'Movers',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': 'vSShWIGWFAZHre_TWt18Ws-BC0XIv4jdkbXUOrTtgo8',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': \"Down 90%, Is Rivian Stock a Can't-Miss Buy at These Prices?\",\n",
+ " 'author': 'newsfeedback@fool.com (Brett Schafer)',\n",
+ " 'published_utc': '2023-12-01T11:48:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/12/01/down-90-is-rivian-stock-a-cant-miss-buy-at-these-p/',\n",
+ " 'tickers': ['RIVN', 'TSLA', 'NVDA', 'QQQ'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/756427/electric-vehicles.jpg',\n",
+ " 'description': \"The stock is not participating in this recent bull market rally. Let's see whether that is set to change.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'l4EjHHasgBlM2SFx2trhH_nrbdwEiIBKdAouv3c40bY',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Tesla Analysts Groan At Cybertruck's Final Pricing, Warn Of $10K Loss Per Vehicle At Current Production Rate\",\n",
+ " 'author': 'Shanthi Rexaline',\n",
+ " 'published_utc': '2023-12-01T11:29:58Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/23/12/36040163/tesla-analysts-groan-at-cybertrucks-final-pricing-warn-of-10k-loss-per-vehicle-at-c',\n",
+ " 'tickers': ['F', 'TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/36040163',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/Surakarta--Indonesia---October-20-2022--_0.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'The reception to Tesla, Inc.‘s (NASDAQ:TSLA) Cybertruck delivery event was muted among analysts, with two notable bulls offering cautious commentaries following the launch of the newest vehicle from the electric vehicle pioneer’s stable.\\nAnalysts Harp On Disappointing Pricing: At the current production level, Tesla could be losing $40,000 on each vehicle, said Deepwater Asset Management co-founder Gene Munster in a CNBC interview late Thursday. The loss will likely narrow when the company gets to the scale of making 10,000 units, he said.\\n“I’ve been waiting for this for four years. I was disappointed today in the price,” the fund manager said, adding “I have a reservation [but] I don’t know if I’m going to get it,” he added.\\nIn a separate video posted on X, formerly Twitter, Munster said pricing across the trim levels was 20-25% higher than what he expected. The high-end trim, namely the Cyber Beast, and the all-wheel drive versions are priced at $99,000 and $80,000, respectively, and the single-motor rear-wheel drive, which will be available in 2025, has a price tag of $61,000, he noted. \\nCompared with Ford Motor Co.’s (NYSE:F) F-150 Lightning, Munster said each of Blue Oval’s versions is around $10,000 lower. That said, the analyst sees the Cybertruck as a superior product. It’s about 15%-20% longer, is more durable, and has better performance, he said.\\nThe ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['News',\n",
+ " 'Analyst Color',\n",
+ " 'Equities',\n",
+ " 'Reiteration',\n",
+ " 'Top Stories',\n",
+ " 'Analyst Ratings']},\n",
+ " {'id': '2vxc5nVZcYZdGYhvgb2zt_Pu8fpMqB89wajhSVN-vuE',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Buying Tesla Taught Me a Costly Lesson',\n",
+ " 'author': 'newsfeedback@fool.com (Anders Bylund)',\n",
+ " 'published_utc': '2023-12-01T10:49:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/12/01/buying-tesla-taught-me-a-costly-lesson/',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/756376/sad-businessperson.jpg',\n",
+ " 'description': 'Think investing in groundbreaking companies is a sure-fire win? My experience with a groundbreaking -- but deeply troubled -- innovator might change your mind.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'gKZNkIYo3r-MPNTPDzIjfADC5X022I_gdYw6Cfxbmpo',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'The $625 Billion Blunder I Believe Tesla Shareholders Are Making',\n",
+ " 'author': 'newsfeedback@fool.com (Sean Williams)',\n",
+ " 'published_utc': '2023-12-01T10:21:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/12/01/625-billion-blunder-tesla-shareholders-are-making/',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/756594/tsla-model-s.jpg',\n",
+ " 'description': \"The greatest threat to Tesla's success just might be its own CEO.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'gyT1TDUuk10EWHIg8Vu5NIXXzdsi2jsPvGFFVHAPO6E',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Did Tesla Overpromise And Underdeliver With The Cybertruck?',\n",
+ " 'author': 'Anan Ashraf',\n",
+ " 'published_utc': '2023-12-01T10:00:12Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/23/12/36039263/did-tesla-overpromise-and-underdeliver-with-the-cybertruck',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/36039263',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/Tesla-Cybertruck_5.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'EV giant\\xa0Tesla Inc\\xa0(NASDAQ:TSLA) disappointed many consumers on Thursday by delivering less value for higher prices\\xa0with its Cybertrucks, which have seen a significant increase compared to the initial 2019 estimates, coupled with a lower-than-promised range.\\nDuring its unveiling in November 2019, Tesla presented tentative pricing for three Cybertruck versions. The entry-level, single-motor, rear-wheel-drive (RWD) version was initially slated to start at $39,900 with an estimated range of 250 miles per charge. The dual-motor all-wheel-drive (AWD) variant was projected to begin at $49,900, and the top-tier tri-motor all-wheel drive at $69,900, offering a range exceeding 500 miles.\\nHowever, as deliveries have now commenced, the pricing has surged significantly. The RWD version now starts at $60,990, marking a considerable 53% increase from the initial estimates. ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['News', 'Analyst Color', 'Top Stories', 'Tech']},\n",
+ " {'id': 'foJApTAMjegJsq7WerbVA63a08lhNwW-TB8SvLnzqyQ',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Should You Really Invest in Stocks Now -- or Wait Until the New Year?',\n",
+ " 'author': 'newsfeedback@fool.com (Adria Cimino)',\n",
+ " 'published_utc': '2023-12-01T10:00:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/12/01/should-you-really-invest-in-stocks-now-or-wait/',\n",
+ " 'tickers': ['AMZN', 'AAPL', 'TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/756617/gettyimages-1349766209.jpg',\n",
+ " 'description': \"When investing, it's important to focus on the long term.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'uO0fky2oMRAsEAaOgokEqfgzqfFLhCJEgbm_7sQj9k8',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Dow surges 520 points to post highest close in nearly 2 years, stocks log best month in more than a year',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-11-30T23:16:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/s-p-500-futures-up-near-four-month-highs-ahead-of-pce-inflation-report-661d3c7a',\n",
+ " 'tickers': ['DJIA', 'COMP', 'CRM', 'NVDA', 'META', 'SNOW', 'PSTG', 'TSLA'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/s-p-500-futures-up-near-four-month-highs-ahead-of-pce-inflation-report-661d3c7a',\n",
+ " 'image_url': 'https://images.mktw.net/im-16377633/social',\n",
+ " 'description': 'The Dow Jones Industrial Average is heading for its highest close in almost 2 year, while the S&P 500 and Nasdaq wavered.'},\n",
+ " {'id': 'yb97LkxdlGxMyYmSyM-9QPrJ-_cAzXfaFM8taetDRR8',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'The Tesla Cybertruck is finally here; prices start around $61,000',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-11-30T22:57:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/teslas-cybertruck-is-finally-here-will-it-boost-the-ev-makers-stock-d76903ac',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/teslas-cybertruck-is-finally-here-will-it-boost-the-ev-makers-stock-d76903ac',\n",
+ " 'image_url': 'https://images.mktw.net/im-11893261/social',\n",
+ " 'description': 'Tesla delivers the first of its Cybertrucks at an event Thursday in Texas.'},\n",
+ " {'id': 'GYeQ3Ddpy2THx7ustwwtExM2PcTs_dzyX6MisxdKvPY',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'Tesla (TSLA) Stock Dips While Market Gains: Key Facts',\n",
+ " 'author': 'Zacks Equity Research',\n",
+ " 'published_utc': '2023-11-30T22:45:15Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/2191829/tesla-tsla-stock-dips-while-market-gains-key-facts',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/2191829/tesla-tsla-stock-dips-while-market-gains-key-facts',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/default_article_images/default21.jpg',\n",
+ " 'description': 'In the closing of the recent trading day, Tesla (TSLA) stood at $239.79, denoting a -1.78% change from the preceding trading day.'},\n",
+ " {'id': 'ym4jDaaPMnGr9vcjnuqO2PbtMdqfwRwGVqIdcBTlJAA',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Cybertruck Delivery Event: Elon Musk Highlights Tesla's 'Best Product,' Says 'Finally The Future Will Look Like The Future'\",\n",
+ " 'author': 'Chris Katje',\n",
+ " 'published_utc': '2023-11-30T20:56:25Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/23/11/36032944/cybertruck-delivery-event-elon-musk-highlights-teslas-best-product-says-finally-the',\n",
+ " 'tickers': ['F', 'TSLA', 'RIVN'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/36032944',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/musk-cybertruck-shutter2.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'On Thursday, electric vehicle leader Tesla Inc (NASDAQ:TSLA) hosted its Cybertruck delivery event at its Giga Factory in Texas.\\nThe event celebrated the first deliveries of the highly anticipated electric pickup truck.\\nWhat Happened: Tesla CEO Elon Musk spoke to special guests at the Tesla Cybertruck event, driving a unit of the vehicle into the room and speaking while standing on the bed of the vehicle.\\n\"Once in awhile, once in a long while, a product comes along that is rare,\" Musk said.\\nThe Tesla CEO said that every five to 10 years something really special comes along and this is one of those special moments.\\n\"We\\'ll remember those special moments.\"\\nMusk highlighted how experts said the Cybertruck was an impossible vehicle to be made.\\n\"I think it\\'s our best product.\"\\nWith the Cybertruck, Musk said \"finally the future will look like the future.\"\\nDuring the event, Musk highlighted several features via video including how the Cybertruck is bulletproof and doesn\\'t roll over due to a low center of gravity. \\xa0\\nTesla Chief Designer ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['News', 'Analyst Color', 'Price Target', 'Analyst Ratings']},\n",
+ " {'id': 'KaV-FuVJAVJH1lblIj5Ri8rLko-th3_PVvrc9jMh_Yg',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Fed's Favorite Inflation Gauge Disappoints Both Stock Market Bulls And Bears\",\n",
+ " 'author': 'The Arora Report',\n",
+ " 'published_utc': '2023-11-30T15:21:42Z',\n",
+ " 'article_url': 'https://www.benzinga.com/23/11/36025372/feds-favorite-inflation-gauge-disappoints-both-stock-market-bulls-and-bears',\n",
+ " 'tickers': ['SPY',\n",
+ " 'USO',\n",
+ " 'AMZN',\n",
+ " 'GOOG',\n",
+ " 'MSFT',\n",
+ " 'NVDA',\n",
+ " 'SNPS',\n",
+ " 'CRM',\n",
+ " 'AAPL',\n",
+ " 'TSLA',\n",
+ " 'QQQ',\n",
+ " 'SNOW',\n",
+ " 'META'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/36025372',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/tech-daily-ztymiqecyh4-unsplash_5_4.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'To gain an edge, this is what you need to know today.\\n\\nPCE\\nPlease\\xa0click here\\xa0for a chart of SPDR S&P 500 ETF Trust (ARCA:SPY) which represents the benchmark stock market index S&P 500 (SPX).\\nNote the following:\\n\\nThe chart shows that the stock market is consolidating right below the mini resistance zone.\\nThe RSI pattern on the chart shows that the stock market can go either way.\\nThe stock market is up this morning due to positive earnings from Salesforce Inc (NYSE: CRM).\\xa0Salesforce is in the Global X Dow 30 Covered Call ETF\\xa0(ARCA: DJIA).\\xa0Buying is also coming in due to strong earnings from Snowflake Inc (NYSE: SNOW) and Synopsys Inc (NASDAQ: SNPS).\\xa0All three companies are benefiting from AI.\\xa0\\nThe just released economic data shows that consumer spending is finally beginning to taper from excessive levels relative to incomes.\\xa0Here are the details:\\n\\nPersonal spending came at 0.2% vs. 0.2% consensus.\\nPersonal income came at 0.2% vs. 0.2% consensus.\\n\\n\\nThe latest data on the Fed’s favorite inflation gauge PCE has disappointed both bulls and bears.\\xa0Bears were pinning their hopes that PCE would be worse than expected and thereby cause a big drop in the stock market.\\xa0Bulls were pinning their hopes on PCE triggering another leg of the stock market rally.\\xa0PCE came inline with expectations, a scenario that neither bulls nor bears had expected.\\xa0Here are the details:\\n\\nHeadline PCE came at 0.0% vs. 0.1% consensus.\\nCore PCE came at 0.2% vs. 0.2% consensus.\\n\\n\\nWeekly Initial Claims came at 218K\\xa0vs. 215K\\xa0consensus.\\xa0This indicates that the jobs picture is staying very strong.\\nAs an actionable item, the sum total of the foregoing is in the protection band, which strikes the optimum balance between various crosscurrents. Please scroll down to see the protection band.\\n\\nEurope\\nEurozone inflation has fallen more than expected.\\xa0Flash CPI came at 2.4% year-over-year vs. ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['Cryptocurrency',\n",
+ " 'Asia',\n",
+ " 'Eurozone',\n",
+ " 'Economics',\n",
+ " 'Federal Reserve',\n",
+ " 'Markets']},\n",
+ " {'id': 'ZlHSl9DdgTJz48iY2p1eNsCz93Lq1yiHYR_3El9NL14',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'These advisers say markets are expecting unrealistic outcomes. Here are some alternatives.',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2023-11-30T14:33:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/these-advisors-say-markets-are-expecting-unrealistic-outcomes-here-are-some-alternatives-721b0df1',\n",
+ " 'tickers': ['HFND',\n",
+ " 'BRK.A',\n",
+ " 'BRK.B',\n",
+ " 'COMP',\n",
+ " 'DJIA',\n",
+ " 'ABBV',\n",
+ " 'IMGN',\n",
+ " 'CRM',\n",
+ " 'SNOW',\n",
+ " 'NTNX',\n",
+ " 'PSTG',\n",
+ " 'ULTA',\n",
+ " 'DIS',\n",
+ " 'MSFT',\n",
+ " 'TSLA',\n",
+ " 'GME',\n",
+ " 'AMC',\n",
+ " 'NVDA',\n",
+ " 'NIO',\n",
+ " 'AAPL',\n",
+ " 'RDHL',\n",
+ " 'AMZN',\n",
+ " 'CYTO'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/these-advisors-say-markets-are-expecting-unrealistic-outcomes-here-are-some-alternatives-721b0df1',\n",
+ " 'image_url': 'https://images.mktw.net/im-279173/social',\n",
+ " 'description': 'Our call of the day from a pair of money managers asks investors to think about all the implausibilities being expected from markets for next year. And the opportunities.'},\n",
+ " {'id': 'ZpihkWR9jZhvgX4jZNLiZRGx9h-B3uEwACaD-awAMLU',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Tesla Stock On Track To Rebound From Wednesday's Losses: Key Levels To Watch As Cybertruck Delivery Event Looms\",\n",
+ " 'author': 'Shanthi Rexaline',\n",
+ " 'published_utc': '2023-11-30T12:17:59Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/23/11/36020031/tesla-stock-on-track-to-rebound-from-wednesdays-losses-key-levels-to-watch-as-cyber',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/36020031',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/cybertruck-tesla_0.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Shares of electric vehicle giant Tesla, Inc. (NASDAQ:TSLA) rose in premarket trading on Thursday following a 1%+ decline on Wednesday.\\nThe stock could gather some momentum as the Elon Musk-led company prepares to begin deliveries of its much-awaited Cybertruck on Thursday. The delivery event is scheduled to start at 3 p.m. ET. The stock could see some volatility in late trading around the event.\\nAlthough the Tesla community and ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['News',\n",
+ " 'Analyst Color',\n",
+ " 'Equities',\n",
+ " 'Movers',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': 'gSz-ejhwrjpjjQI3SqpemHfadNGhsO_OQkDWpFlYIbY',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Could Investing in the Nasdaq-100 Help You Retire a Millionaire?',\n",
+ " 'author': 'newsfeedback@fool.com (Keithen Drury)',\n",
+ " 'published_utc': '2023-11-30T12:15:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/11/30/could-investing-in-the-nasdaq-100-help-you-retire/',\n",
+ " 'tickers': ['QQQ',\n",
+ " 'BRK.A',\n",
+ " 'META',\n",
+ " 'MSFT',\n",
+ " 'GOOGL',\n",
+ " 'AAPL',\n",
+ " 'TSLA',\n",
+ " 'AMZN',\n",
+ " 'BRK.B',\n",
+ " 'NVDA',\n",
+ " 'AVGO',\n",
+ " 'ADBE',\n",
+ " 'GOOG'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/756179/two-people-meeting-with-an-advisor-at-a-coffee-shop.jpg',\n",
+ " 'description': 'The Invesco QQQ ETF is an excellent way to invest profitably with little effort.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 't3YXcgEOu9bIu4t9KUTJRpbJTJxntLGN9jNp6zJH5t4',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"How To Watch Tesla's Cybertruck Delivery Event Today And What To Expect\",\n",
+ " 'author': 'Shanthi Rexaline',\n",
+ " 'published_utc': '2023-11-30T12:14:18Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/23/11/36019902/how-to-watch-teslas-cybertruck-delivery-event-today-and-what-to-expect',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/36019902',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/Tesla-Cybertruck-2.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': \"Tesla, Inc.\\xa0(NASDAQ:TSLA) is set to unveil its\\xa0Cybertruck four years after\\xa0its initial reveal, generating heightened interest due to its unconventional design.\\nThe Event:\\xa0This year marks “Cyber Thursday,” as stated in a post on Cybertruck’s X handle, a playful reference to “Cyber Monday.” The delivery event is scheduled for Thursday, Nov. 30, starting at 2 p.m. CT/3 p.m. ET.\\n\\n\\nThis year it's Cyber Thursday 11.30.23 | 2pm CT pic.twitter.com/nFhbIJMoXi\\n— Cybertruck (@cybertruck) November 27, 2023\\n\\n\\nTesla CEO Elon Musk also announced the event, noting, “Cybertruck deliveries start on Thursday.” The early timing contrasts with Tesla’s usual late-evening scheduling for major events.\\nThe Venue:\\xa0Initial Cybertruck deliveries will occur at Tesla’s Giga Austin factory. Attendees were randomly ...Full story available on Benzinga.com\",\n",
+ " 'keywords': ['News', 'Analyst Color', 'Equities', 'Top Stories']},\n",
+ " {'id': 'igBjw7z0Wg-mBkWMzgeALJYcpZXdSl8QoiW1JYgAHZw',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Where Will Tesla Be in 3 Years?',\n",
+ " 'author': 'newsfeedback@fool.com (Neil Patel)',\n",
+ " 'published_utc': '2023-11-30T11:53:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2023/11/30/where-will-tesla-be-in-3-years/',\n",
+ " 'tickers': ['TSLA', 'F', 'GM', 'LCID', 'RIVN'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/756206/business-analyst-trader-stocks-trends.jpg',\n",
+ " 'description': \"It's easy to be bullish, but investors need to set realistic expectations.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': '2K1F5knT0uAcKST9Pp1WKbac1NMwfiqzZxGO5kkaKUY',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'Brian Big Idea On Earning Season',\n",
+ " 'author': 'Brian Bolan',\n",
+ " 'published_utc': '2024-01-23T23:21:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/2214650/brian-big-idea-on-earning-season',\n",
+ " 'tickers': ['IBM', 'NFLX', 'WDC', 'TSLA'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/2214650/brian-big-idea-on-earning-season',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/articles/main/e7/705.jpg',\n",
+ " 'description': 'Earnings season is heating up this week.'},\n",
+ " {'id': 'SOhg511yW9u5zLVqimk1Afg8hdyrATrcP-kE9x6Y8aw',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"'Elon Musk Is A Visionary Leader, He's Our Renaissance Man': Cathie Wood Backs Tesla CEO's Push For 25% Ownership\",\n",
+ " 'author': 'Chris Katje',\n",
+ " 'published_utc': '2024-01-23T23:01:31Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/24/01/36749033/elon-musk-is-a-visionary-leader-hes-our-renaissance-man-cathie-wood-backs-tesla-ceo',\n",
+ " 'tickers': ['HTZ', 'TSLA', 'ARKQ', 'ARKW', 'ARKK', 'UBER'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/36749033',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2024/Cathie-Wood_0.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'For years, Ark Invest CEO Cathie Wood has been a supporter of electric vehicle company Tesla Inc (NASDAQ:TSLA) and its CEO Elon Musk, calling for the company to trade as a technology stock and not as a traditional automotive company.\\nOn Tuesday, Wood echoed her praise for Musk and the growth of electric vehicles.\\nWhat Happened: Musk recently said he would like to have increased ownership of 25% of Tesla in order to support his future artificial intelligence endeavors within the electric vehicle company.\\n\"I am uncomfortable growing Tesla to be a leader in AI & robotics without having ~25% voting control. Enough to be influential, but not so much that I can\\'t be overturned,\" Musk said.\\nWood was asked about Musk\\'s 25% ownership request during an interview Tuesday on CNBC. \\n\"Elon Musk is a visionary leader. He\\'s our renaissance man. He\\'s the inventor of our age,\" Wood said.\\nIn today’s market, investors are too focused on the short term and want immediate profits, dividends and buybacks, Wood said — instead of focusing on investing in some of the biggest opportunities of our lifetime right now.\\n\"We are looking for visionary leaders looking to stand up to short-term oriented shareholders.\"\\nAs for Musk wanting 25% ownership of Tesla, ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['News',\n",
+ " 'Analyst Color',\n",
+ " 'Equities',\n",
+ " 'Management',\n",
+ " 'Top Stories',\n",
+ " 'Markets',\n",
+ " 'Analyst Ratings',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': 'PxbWgA3pKr1RR8POtciMAuT4l9KWgrB_q5UpKWWfv0M',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'S&P Hits New All-Time High; Netflix, T.I. Mixed in Q4',\n",
+ " 'author': 'Mark Vickery',\n",
+ " 'published_utc': '2024-01-23T22:49:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/2214559/sp-hits-new-all-time-high-netflix-ti-mixed-in-q4',\n",
+ " 'tickers': ['GD', 'TXN', 'IBM', 'NFLX', 'ISRG', 'KMB', 'TSLA'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/2214559/sp-hits-new-all-time-high-netflix-ti-mixed-in-q4',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/articles/main/45/414.jpg',\n",
+ " 'description': \"NFLX's net subscriber adds blew the doors off expectations: 13 million versus 8.9 million estimated.\"},\n",
+ " {'id': 'N9-xD0YeOCO-nA08oAjTnvYUWkKQQxhK6tzE8JGn0uY',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'Is Tesla a Buy Heading Into Earnings?',\n",
+ " 'author': 'Derek Lewis',\n",
+ " 'published_utc': '2024-01-23T22:00:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/2214544/is-tesla-a-buy-heading-into-earnings',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/2214544/is-tesla-a-buy-heading-into-earnings',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/articles/main/75/107.jpg',\n",
+ " 'description': \"We'll hear from the highly-coveted Tesla on Wednesday after the market's close. How do expectations currently stack up?\"},\n",
+ " {'id': 'SfxOIqywnZEcLEMk6M0_uIGxYEH-5C816dV8qu5rKrY',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Apple said to be scaling down self-driving Apple car features',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2024-01-23T20:11:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/apple-said-to-be-scaling-down-apple-car-features-37f1822a',\n",
+ " 'tickers': ['AAPL', 'TSLA'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/apple-said-to-be-scaling-down-apple-car-features-37f1822a',\n",
+ " 'image_url': 'https://images.mktw.net/im-260589/social',\n",
+ " 'description': \"Apple has switched to developing a car with basic self-driving features, more in line with Tesla's features.\"},\n",
+ " {'id': 'KAlJTUIpsfgPIbyZXTTFZBmD3jbYp0eMRe7TRoIHfL0',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Here’s the No. 1 question retail investors want Tesla to answer ahead of earnings',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2024-01-23T19:21:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/heres-the-no-1-question-retail-investors-want-tesla-to-answer-ahead-of-earnings-12dae1ee',\n",
+ " 'tickers': ['TSLA', 'HOOD'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/heres-the-no-1-question-retail-investors-want-tesla-to-answer-ahead-of-earnings-12dae1ee',\n",
+ " 'image_url': 'https://images.mktw.net/im-04817671/social',\n",
+ " 'description': 'Amid hundreds of questions for Tesla earnings day, one reigns supreme.'},\n",
+ " {'id': 'jEC3dJyCKBUyk0DNBDkDOPqSty9-xBw6RlFlWPwa1XA',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'Tesla Earnings Preview: What to Watch For',\n",
+ " 'author': 'Andrew Rocco',\n",
+ " 'published_utc': '2024-01-23T18:37:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/commentary/2214494/tesla-earnings-preview-what-to-watch-for',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/commentary/2214494/tesla-earnings-preview-what-to-watch-for',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/articles/main/b9/441.jpg',\n",
+ " 'description': 'Tesla, the leading EV maker, is expected to report Q4 earnings tomorrow after the close. What should investors look for?'},\n",
+ " {'id': '0bui7EAcuhATuj6IZ9rvpZ-FRmwVXrh96gC0KvdW2zo',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': '5 Red Hot Stocks with Fabulous Earnings Records',\n",
+ " 'author': 'Tracey Ryniec',\n",
+ " 'published_utc': '2024-01-23T18:11:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/2214487/5-red-hot-stocks-with-fabulous-earnings-records',\n",
+ " 'tickers': ['V', 'ISRG', 'TSLA', 'URI', 'NOW'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/2214487/5-red-hot-stocks-with-fabulous-earnings-records',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/articles/main/34/973.jpg',\n",
+ " 'description': 'All 5 of these stocks are coming off of an earnings beat last quarter.'},\n",
+ " {'id': '_mtX2PUKrpgV2yXf3WHBCc5NYakOQLieSS24BjCBHpI',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': \"Why Nio Stock Has More Room to Run Even After Today's Jump\",\n",
+ " 'author': 'newsfeedback@fool.com (Howard Smith)',\n",
+ " 'published_utc': '2024-01-23T17:30:17Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2024/01/23/why-nio-stock-has-more-room-to-run/',\n",
+ " 'tickers': ['NIO', 'TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/762303/nio-et5-at-battery-swap.png',\n",
+ " 'description': 'The Chinese government is planning new ways to jump-start its lagging economic recovery.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': '8bsEgjXrcVB_RNZQYUoETs1D3gAs-Te5gEFx7hKxm-k',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'Q4 Earnings Season Scorecard and Fresh Analyst Reports for Amazon, Home Depot & Merck',\n",
+ " 'author': 'Sheraz Mian',\n",
+ " 'published_utc': '2024-01-23T17:14:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/research-daily/2214056/q4-earnings-season-scorecard-and-fresh-analyst-reports-for-amazon-home-depot-merck',\n",
+ " 'tickers': ['AMZN', 'ACN', 'MRK', 'HD', 'PEP', 'TSLA'],\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/default_article_images/default268.jpg',\n",
+ " 'description': \"Today's Research Daily features a real-time update on the Q4 earnings season and updated reports on Amazon (AMZN), Home Depot (HD), Merck (MRK) & others.\"},\n",
+ " {'id': 'hbDk8SxNlrfGYukwTqrtgvqth6nA0IYOAD9mnlYic24',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Elon Musk's Tesla Confronts 'Black Cloud': Q4 Earnings Must Draw 'Line In The Sand Around Margins,' Analyst Says\",\n",
+ " 'author': 'Neil Dennis',\n",
+ " 'published_utc': '2024-01-23T17:06:48Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/24/01/36742655/elon-musks-tesla-confronts-black-cloud-q4-earnings-to-draw-line-in-the-sand-around-',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/36742655',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2024/musk-tesla-building-shutter_1.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'With Tesla Inc (NASDAQ:TSLA) set to report its fourth-quarter earnings on Wednesday, the key item for many will be guidance on its margin and demand outlook over the next year given the balance the company had to strike in 2023 with price cuts.\\nAnalysts at Wedbush said that price cuts in 2023 were the right move to ensure healthy demand given increasing competition and higher production rates.\\nHowever, they questioned whether the Elon Musk-led electric vehicle maker can continue its cost-cutting strategies, or if it will opt to keep its current pricing to ensure margin stability amid possible declines in EV demand.\\n“Which pricing path Tesla takes will be a foundational move for the future of Tesla over the coming years in our view,” said analyst Daniel Ives.\\nWedbush kept its outperform rating on Tesla stock and maintained a $350 price target.\\n\\nAlso ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['News',\n",
+ " 'Analyst Color',\n",
+ " 'Earnings',\n",
+ " 'Equities',\n",
+ " 'Short Sellers',\n",
+ " 'Price Target',\n",
+ " 'Reiteration',\n",
+ " 'Markets',\n",
+ " 'Analyst Ratings',\n",
+ " 'Tech',\n",
+ " 'General']},\n",
+ " {'id': 'POlK2O1TTbpPyLfE2ujs6FGK9F47ZtciVGWgi-moAq8',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Should You Buy the Dip on the 3 \"Magnificent Seven\" Stocks That Are Already Down in 2024?',\n",
+ " 'author': 'newsfeedback@fool.com (Daniel Foelber)',\n",
+ " 'published_utc': '2024-01-23T16:36:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2024/01/23/should-you-buy-dip-on-the-magnificent-seven-stock/',\n",
+ " 'tickers': ['TSLA', 'AAPL', 'AMZN'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/761823/gettyimages-531734725-1201x801-d21b45d.jpg',\n",
+ " 'description': \"Tesla, Apple, and Amazon aren't having a thrilling start to 2024.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': '8FeuXpalKh17NZqq5ka0OwnN17N-wsykh6pQLZL3rKw',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'This EV Company Has a $10 Billion Secret Weapon',\n",
+ " 'author': 'newsfeedback@fool.com (Howard Smith)',\n",
+ " 'published_utc': '2024-01-23T15:02:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2024/01/23/this-ev-company-has-a-10-billion-secret-weapon/',\n",
+ " 'tickers': ['RIVN', 'AMZN', 'F', 'TSLA', 'T', 'UPS', 'FDX', 'ARVL'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/760215/rivian-vehicle-lineup.png',\n",
+ " 'description': 'Rivian has a head start in a market that is set to explode.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': '_u-OCEcYsPpapQxlh6gjaLa7WTiZ1-6u0IgB4vvuWwI',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Here’s what big consumer-sentiment gains mean for the stock market — and this one is unusual',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2024-01-23T13:37:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/heres-what-vibecession-endings-usually-mean-for-the-stock-market-this-one-is-unusual-anyway-15f7a96a',\n",
+ " 'tickers': ['MMM',\n",
+ " 'GE',\n",
+ " 'NFLX',\n",
+ " 'TXN',\n",
+ " 'TKO',\n",
+ " 'UAL',\n",
+ " 'SAN',\n",
+ " 'INBX',\n",
+ " 'XOM',\n",
+ " 'TSLA',\n",
+ " 'PHUN',\n",
+ " 'NVDA',\n",
+ " 'DWAC',\n",
+ " 'NIO',\n",
+ " 'AAPL',\n",
+ " 'AMD',\n",
+ " 'GME',\n",
+ " 'AMC',\n",
+ " 'HDB',\n",
+ " 'DIN'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/heres-what-vibecession-endings-usually-mean-for-the-stock-market-this-one-is-unusual-anyway-15f7a96a',\n",
+ " 'image_url': 'https://images.mktw.net/im-38717841/social',\n",
+ " 'description': \"Historically, consumer sentiment doesn't usually pick up while the business outlook is gloomy, except coming out of recessions.\"},\n",
+ " {'id': 'fODO_SOwC7sSy4IcN2Cx5i5TwsmUJHMvoG_kD0_CRhM',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': \"Missed the Boat on Tesla? Here's 1 Auto Stock That's Still on the Rise\",\n",
+ " 'author': 'newsfeedback@fool.com (Travis Hoium)',\n",
+ " 'published_utc': '2024-01-23T11:45:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2024/01/23/tesla-isnt-the-top-auto-stock-today-this-is/',\n",
+ " 'tickers': ['TSLA', 'GM', 'STLA', 'LCID', 'RIVN'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/762105/zoox-autonomous-vehicle-two-vehicle-coit-tower-sf.jpg',\n",
+ " 'description': \"Tesla's margins are falling and shares are incredibly expensive, but there's one auto company that's making billions and giving it back to shareholders at a rapid clip.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'nUEa8YxtlFi--U6kdBQvb6sQG-Gyh7RX29lrOS6mSpw',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Will Nio Be a Trillion-Dollar Stock by 2050?',\n",
+ " 'author': 'newsfeedback@fool.com (Leo Sun)',\n",
+ " 'published_utc': '2024-01-23T11:24:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2024/01/23/will-nio-be-a-trillion-dollar-stock-by-2050/',\n",
+ " 'tickers': ['NIO', 'TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/761862/nio.jpg',\n",
+ " 'description': 'The Chinese EV underdog faces an uphill battle over the next few decades.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'vbPum8mjlS1SPIX6BqvFXZUZD97eLI7LgJv3bJCvro8',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Is QuantumScape a Millionaire Maker?',\n",
+ " 'author': 'newsfeedback@fool.com (Justin Pope)',\n",
+ " 'published_utc': '2024-01-23T10:36:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2024/01/23/is-quantumscape-a-millionaire-maker/',\n",
+ " 'tickers': ['QS', 'TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/761944/ev-battery-packs.jpg',\n",
+ " 'description': \"The disruptive company's solid-state battery technology could revolutionize the electric vehicle industry, but there is a wide range of potential investment outcomes.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'S4VDsqlUO0V0VuLd9M9twe6FsKKyGIhqlRuC5VBc08k',\n",
+ " 'publisher': {'name': 'Investing.com',\n",
+ " 'homepage_url': 'https://www.investing.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/investing.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/investing.ico'},\n",
+ " 'title': 'Tesla, Netflix Earnings Previews: Downside Risks Running at a High for Both Giants',\n",
+ " 'author': 'Brian Gilmartin',\n",
+ " 'published_utc': '2024-01-23T07:14:00Z',\n",
+ " 'article_url': 'https://www.investing.com/analysis/tesla-netflix-earnings-previews-downside-risks-running-at-a-high-for-both-giants-200645394',\n",
+ " 'tickers': ['NFLX', 'TSLA'],\n",
+ " 'amp_url': 'https://m.investing.com/analysis/tesla-netflix-earnings-previews-downside-risks-running-at-a-high-for-both-giants-200645394?ampMode=1',\n",
+ " 'image_url': 'https://i-invdn-com.investing.com/redesign/images/seo/investingcom_analysis_og.jpg'},\n",
+ " {'id': '1t8bXYCEAlfH42x0HdJy8z83oT1vIgKa9_7VIHK-aZo',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Fund Manager Gary Black Puzzled By Tesla Analyst's 'Weird' Take On EV Giant's Stock: 'MS Sales Team Will Have A Hard Time With This Call'\",\n",
+ " 'author': 'Shanthi Rexaline',\n",
+ " 'published_utc': '2024-01-23T07:12:57Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/24/01/36731622/fund-manager-gary-black-puzzled-by-tesla-analysts-weird-take-on-ev-giants-stock-ms-',\n",
+ " 'tickers': ['TSLA', 'FFND'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/36731622',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2024/Ivano-frankivsk--Ukraine---May-13--2019-_0.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Ahead of\\xa0Tesla, Inc.‘s (NASDAQ:TSLA)\\xa0fourth-quarter results\\xa0on Wednesday, a fund manager raised questions about the price target of a bullish analyst.\\nWhat Happened:\\xa0Morgan Stanley analyst\\xa0Adam Jonas\\xa0cut his estimates for Tesla, citing expectations for a challenging year for electric vehicles.\\nHe reduced the 2024 adjusted earnings per share estimate from $2.41 to $1.98, down from the $3.02 per share estimated for 2023.\\xa0\\nMorgan Stanley’s price target dropped from $380 to $345, with reductions attributed to lower volume, average transaction price, and margins in the core auto business, as well as lower valuation for Tesla Mobility and Network Services and a cut to the valuation of Tesla Insurance, Battery, and Energy businesses.\\nSee Also:\\xa0Everything You Need To Know About Tesla Stock\\nGary Black’s Perspective:\\xa0Future Fund co-founder\\xa0Gary Black\\xa0found ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['News', 'Analyst Color', 'Top Stories', 'Tech']},\n",
+ " {'id': '6G0uxITHwr2mB9PWNKu-WMjcqXeu7X4Evibxh2DVMMU',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'A \"Sell the News\" Rally Builds in Dogecoin as This Token Sinks 4% Today',\n",
+ " 'author': 'newsfeedback@fool.com (Chris MacDonald)',\n",
+ " 'published_utc': '2024-01-22T22:03:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2024/01/22/a-sell-the-news-rally-builds-in-dogecoin-down-4-to/',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/762227/dogecoin6.jpg',\n",
+ " 'description': 'Dogecoin rallied feverishly over the weekend but has since given up a big chunk of its gains.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'KAs9WviIL1lb_qoAhwE5t5oETOah20LSmtWsrrQo8pg',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'These 3 tech companies should be the brightest spots in a grim earnings season',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2024-01-22T21:42:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/these-three-tech-companies-should-be-the-brightest-spots-in-a-grim-earnings-season-18081a8f',\n",
+ " 'tickers': ['NVDA', 'AMZN', 'META', 'TSLA'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/these-three-tech-companies-should-be-the-brightest-spots-in-a-grim-earnings-season-18081a8f',\n",
+ " 'image_url': 'https://images.mktw.net/im-70277675/social',\n",
+ " 'description': 'S&P 500 profits are expected to fall — but Nvidia, Amazon and Meta should help cushion the blow.'},\n",
+ " {'id': 'vpBirsu8QknlKzrnQg4PaoXpm6AlTPeoYT7EpM77Ksc',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Dow closes above 38,000 for first time and S&P 500 scores back-to-back records',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2024-01-22T21:34:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/s-p-500-futures-rise-after-key-index-finished-at-record-high-dc5f0388',\n",
+ " 'tickers': ['DJIA',\n",
+ " 'COMP',\n",
+ " 'IBM',\n",
+ " 'NFLX',\n",
+ " 'TSLA',\n",
+ " 'ADM',\n",
+ " 'SUN',\n",
+ " 'NS',\n",
+ " 'BA',\n",
+ " 'GILD'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/s-p-500-futures-rise-after-key-index-finished-at-record-high-dc5f0388',\n",
+ " 'image_url': 'https://images.mktw.net/im-32620495/social',\n",
+ " 'description': 'U.S. stocks advanced on Monday, building off a record finish as fourth-quarter earnings season ramps up.'},\n",
+ " {'id': 'Vg2MaAjZePf1xH_RbetvyHxMicxDhCMVISZ8AiFZi8c',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': \"Time to Buy the Recent Dip in Tesla's Stock Before Earnings?\",\n",
+ " 'author': 'Shaun Pruitt',\n",
+ " 'published_utc': '2024-01-22T21:02:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/commentary/2213722/time-to-buy-the-recent-dip-in-teslas-stock-before-earnings',\n",
+ " 'tickers': ['TSLA', 'F', 'GM', 'RIVN'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/commentary/2213722/time-to-buy-the-recent-dip-in-teslas-stock-before-earnings',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/articles/main/7c/572.jpg',\n",
+ " 'description': 'Tesla (TSLA) will be one of the heavy hitters reporting earnings this week with the auto giant scheduled to release its fourth quarter financial results on Wednesday, January 24.'},\n",
+ " {'id': '2z8qjGEbVMIa2u54lXaWKg_M87pvHscb_KzN8dKKjrc',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'Momentum Monday: Inflation, Earnings, and Breakouts',\n",
+ " 'author': 'Ethan Feller',\n",
+ " 'published_utc': '2024-01-22T20:03:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/2213725/momentum-monday-inflation-earnings-and-breakouts',\n",
+ " 'tickers': ['V', 'JNJ', 'TSLA'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/2213725/momentum-monday-inflation-earnings-and-breakouts',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/default_article_images/default272.jpg',\n",
+ " 'description': 'Want to start the week ahead of the pack? Check out Momentum Monday to get the scoop on market-leading stocks and major economic news'},\n",
+ " {'id': 'ozvoPgsu7MyDWmPspiUrorrNb4g7AFA2WIrvZXnVzw8',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'These 3 stock-market sectors were only winners in S&P 500’s 2-year trip back to record high',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2024-01-22T19:34:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/these-3-stock-market-sectors-were-only-winners-in-s-p-500s-2-year-trip-back-to-record-high-1eec350e',\n",
+ " 'tickers': ['NVDA',\n",
+ " 'MSFT',\n",
+ " 'AAPL',\n",
+ " 'AMZN',\n",
+ " 'GOOG',\n",
+ " 'META',\n",
+ " 'TSLA',\n",
+ " 'DJIA',\n",
+ " 'COMP'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/these-3-stock-market-sectors-were-only-winners-in-s-p-500s-2-year-trip-back-to-record-high-1eec350e',\n",
+ " 'image_url': 'https://images.mktw.net/im-67223295/social',\n",
+ " 'description': 'The S&P 500 notched an all-time closing high on Friday, yet most of its sectors were still trading below levels seen when the index reached its last peak a bit more than two years ago, according to DataTrek Research.'},\n",
+ " {'id': 'WQa_HnrRP0ZEXhVd9_KyYvnDCj38GHqHqyyc2lW6kQ0',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"S&P 500, Nasdaq, Dow Jones Strike All-Time Highs Ahead Of Key Earnings This Week: What's Driving Markets Monday?\",\n",
+ " 'author': 'Piero Cingari',\n",
+ " 'published_utc': '2024-01-22T18:34:49Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/earnings/24/01/36721881/stock-indexes-trade-at-all-time-highs-ahead-of-key-earnings-this-week-whats-driving-markets-monday',\n",
+ " 'tickers': ['ISRG',\n",
+ " 'UNP',\n",
+ " 'LRCX',\n",
+ " 'V',\n",
+ " 'NFLX',\n",
+ " 'VZ',\n",
+ " 'DIA',\n",
+ " 'ABT',\n",
+ " 'WDC',\n",
+ " 'ELV',\n",
+ " 'ADM',\n",
+ " 'TSLA',\n",
+ " 'IWM',\n",
+ " 'AMD',\n",
+ " 'NEE',\n",
+ " 'NOW',\n",
+ " 'AXP',\n",
+ " 'QQQ',\n",
+ " 'SPY',\n",
+ " 'GE',\n",
+ " 'RTX',\n",
+ " 'TLT',\n",
+ " 'IBM',\n",
+ " 'TMUS',\n",
+ " 'XLF',\n",
+ " 'JNJ',\n",
+ " 'XLI',\n",
+ " 'XLK',\n",
+ " 'LMT',\n",
+ " 'XLU',\n",
+ " 'PG',\n",
+ " 'ASML',\n",
+ " 'PGR',\n",
+ " 'CMCSA',\n",
+ " 'SAP',\n",
+ " 'GILD',\n",
+ " 'T',\n",
+ " 'INTC',\n",
+ " 'TXN'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/36721881',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2024/Bull-and-bear-stock-market-index_3.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Following a record-breaking week for the S&P 500, U.S. stocks continue to be on the rise as investors eagerly await this week’s key earnings reports with optimism.\\nOn Monday, the S&P 500 reached 4,850 points, the Nasdaq 100 climbed to 17,365 and the Dow Jones briefly touched a record-breaking 38,000 points, with all major U.S. averages simultaneously trading at all-time peaks.\\nSmall caps, as tracked by the iShares Russell 2000 ETF (NYSE:IWM) rose 1.7%, outperforming major indices.\\n The dollar held steady, while Treasury yields slightly eased, providing relief to the bond market. The iShares 20+ Year Treasury Bond ETF (NASDAQ:TLT) rose 0.6%. \\nGold edged down 0.3%, while oil soared by over 2%, on track to close at the highest level since late December. \\nBitcoin tumbled by over 2%, eyeing the lowest level since early December. \\nMonday’s Performance In US Major Indices, ETFs\\n\\n\\n\\n\\nIndex\\nPrice\\n%\\n\\n\\n\\n\\nRussell 2000\\n1,973.68\\n1.6%\\n\\n\\nDow Jones\\n37,986.40\\n0.3%\\n\\n\\nS&P 500\\n4,854.84\\n0.3%\\n\\n\\nNasdaq 100\\n17,362.66\\n0.3%\\n\\n\\n\\n\\nThe SPDR S&P 500 ETF Trust (NYSE:SPY) rose 0.3% to $483.78, the SPDR Dow Jones Industrial Average (NYSE:DIA) rose 0.3% to $378.86 and the tech-heavy Invesco QQQ ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['Earnings',\n",
+ " 'Equities',\n",
+ " 'Large Cap',\n",
+ " 'Broad U.S. Equity ETFs',\n",
+ " 'Top Stories',\n",
+ " 'Markets',\n",
+ " 'Tech',\n",
+ " 'ETFs']},\n",
+ " {'id': 'CTDTG8AAbh1eoUm3gML548qY-jYiQBdaM7Zb5WvdV5Y',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Uber Drops Drizly; the Government Stalls an Airline Merger',\n",
+ " 'author': 'newsfeedback@fool.com (Motley Fool Staff)',\n",
+ " 'published_utc': '2024-01-22T18:21:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2024/01/22/uber-drops-drizly-the-government-stalls-an-airline/',\n",
+ " 'tickers': ['SAVE', 'JBLU', 'TSLA', 'WSR', 'UBER'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/761806/mfm_0117.jpg',\n",
+ " 'description': 'And we chat trends with Dave Holeman, CEO of Whitestone REIT.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'pnbpsZOeBNqSmUMK_9727_Rhzth0bbsHxQighSmv-7c',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Why is Exxon suing to stop two yogis from pushing their climate proposals?',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2024-01-22T18:02:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/why-is-exxon-suing-to-stop-two-yogis-from-pushing-their-climate-proposals-4404c544',\n",
+ " 'tickers': ['XOM', 'AMZN', 'MSFT', 'V', 'TSLA'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/why-is-exxon-suing-to-stop-two-yogis-from-pushing-their-climate-proposals-4404c544',\n",
+ " 'image_url': 'https://images.mktw.net/im-69498107/social',\n",
+ " 'description': 'Natasha Lamb and Farnum Brown run Arjuna Capital, a sustainable-investment fund that has warred with Microsoft, Visa and Tesla on pay equity and environmental and sexual-harassment issues.'},\n",
+ " {'id': 'cIyc1PRq3oXRUntsMoF63sB3RVLY7UGWkhgfxNLy5BM',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Lucid Stock Is Bouncing Off a Record Low Today -- Time to Buy the Stock for 2024?',\n",
+ " 'author': 'newsfeedback@fool.com (Keith Noonan)',\n",
+ " 'published_utc': '2024-01-22T16:53:06Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2024/01/22/lucid-stock-is-bouncing-off-a-record-low-today-tim/',\n",
+ " 'tickers': ['LCID', 'TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/762159/gettyimages-1157075425.jpg',\n",
+ " 'description': 'After a brutal stretch of trading, Lucid is starting this week on a bullish note. Is the bottom in on the stock?',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'sZN7GKFav4Ww2l20Lb2rE9QhvLtqFtPm5m5KUOisYyE',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'Pre-Markets Open in The Green to Start off Week',\n",
+ " 'author': 'Zacks Equity Research',\n",
+ " 'published_utc': '2024-01-22T15:40:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/2213562/pre-markets-open-in-the-green-to-start-off-week',\n",
+ " 'tickers': ['INTC', 'NFLX', 'TSLA'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/2213562/pre-markets-open-in-the-green-to-start-off-week',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/articles/main/b9/441.jpg',\n",
+ " 'description': 'Pre-Markets Open in The Green to Start off Week.'},\n",
+ " {'id': 'MS8Eb6h_NPGd1btdxj3_X2fNS00NYEpeYjDlbS95xko',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'Q4 Earnings, Econ Data to Inform Fed Decisions',\n",
+ " 'author': 'Mark Vickery',\n",
+ " 'published_utc': '2024-01-22T15:17:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/2213536/q4-earnings-econ-data-to-inform-fed-decisions',\n",
+ " 'tickers': ['INTC', 'NFLX', 'TSLA'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/2213536/q4-earnings-econ-data-to-inform-fed-decisions',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/articles/main/6c/851.jpg',\n",
+ " 'description': \"Q4 earnings pick up this week, and by Friday we'll see PCE numbers, the Fed's preferred measure of inflation.\"},\n",
+ " {'id': '9AHXubIqcnR_t0-1IJ_vL27ON8mFkEOvnppQHW3n-Q4',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': \"Will Tesla's Profits Keep Falling in 2024?\",\n",
+ " 'author': 'newsfeedback@fool.com (Jeremy Bowman)',\n",
+ " 'published_utc': '2024-01-22T14:11:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2024/01/22/will-teslas-profits-keep-falling-in-2024/',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/761858/tesla-cybertruck-road.jpg',\n",
+ " 'description': 'The stock soared in 2023, but its bottom line went in the wrong direction.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'K_ze8fL_cMTunQhPvuLuwyBD49X6Vcqnw0HLa_CYudc',\n",
+ " 'publisher': {'name': 'Investing.com',\n",
+ " 'homepage_url': 'https://www.investing.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/investing.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/investing.ico'},\n",
+ " 'title': 'Tech Earnings Tasked With Sustaining Rally Post-Mixed Bank Results, Economic Data',\n",
+ " 'author': 'Christine Short',\n",
+ " 'published_utc': '2024-01-22T13:57:00Z',\n",
+ " 'article_url': 'https://www.investing.com/analysis/tech-earnings-tasked-with-sustaining-rally-postmixed-bank-results-economic-data-200645369',\n",
+ " 'tickers': ['GS',\n",
+ " 'MS',\n",
+ " 'SCHW',\n",
+ " 'USB',\n",
+ " 'PNC',\n",
+ " 'TSM',\n",
+ " 'AAPL',\n",
+ " 'NFLX',\n",
+ " 'AMZN',\n",
+ " 'TSLA',\n",
+ " 'TXN',\n",
+ " 'IBM',\n",
+ " 'INTC'],\n",
+ " 'amp_url': 'https://m.investing.com/analysis/tech-earnings-tasked-with-sustaining-rally-postmixed-bank-results-economic-data-200645369?ampMode=1',\n",
+ " 'image_url': 'https://i-invdn-com.investing.com/redesign/images/seo/investingcom_analysis_og.jpg'},\n",
+ " {'id': 'eu5Vtg75EP8aRyMO4JulPNhxb2rs9mPwHiR8C-3IE1Q',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Where Will Lucid Stock Be in 1 Year?',\n",
+ " 'author': 'newsfeedback@fool.com (Will Ebiefung)',\n",
+ " 'published_utc': '2024-01-22T12:04:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2024/01/22/where-will-lucid-stock-be-in-1-year/',\n",
+ " 'tickers': ['LCID', 'TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/761505/gettyimages-1251218290-1.jpg',\n",
+ " 'description': 'Will this struggling electric automaker ever bounce back?',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'bHkFozRZGL16AiciNpIh9eVOsUu-ULO_KZcLm-hFaWs',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Nasdaq, S&P 500 Futures Surge As Earnings Optimism Drives Positive Sentiment: Analyst Lists 3 Factors For Higher Market Multiples',\n",
+ " 'author': 'Shanthi Rexaline',\n",
+ " 'published_utc': '2024-01-22T11:56:17Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/earnings/24/01/36712917/nasdaq-s-p-500-futures-surge-as-earnings-optimism-drives-positive-sentiment-analyst-lists-3-factors',\n",
+ " 'tickers': ['SPY',\n",
+ " 'AGYS',\n",
+ " 'INTC',\n",
+ " 'NFLX',\n",
+ " 'ZION',\n",
+ " 'ADM',\n",
+ " 'TSM',\n",
+ " 'TSLA',\n",
+ " 'UAL',\n",
+ " 'QQQ'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/36712917',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2024/Market_1.png?width=1200&height=800&fit=crop',\n",
+ " 'description': \"The positive sentiment appears to have carried forward into the new week, as major index futures all point to a higher opening on Monday. Earnings could\\xa0exert a significant influence\\xa0on stocks and the market this week, overshadowing economic data.\\xa0Tesla, Inc.\\xa0(NASDAQ:TSLA),\\xa0Intel Corp.\\xa0(NASDAQ:INTC), and\\xa0Netflix, Inc.\\xa0(NASDAQ:NFLX) are among the key companies set to release earnings reports, likely capturing investors’ attention.\\nTraders will receive data on the central bank’s preferred inflation gauge, specifically the Personal Consumption Expenditure (PCE) Index, on Friday. This number could be crucial as it is expected to shape investor expectations regarding the upcoming rate decision on Jan. 31.\\nCues From Last Week's Trading:\\nStocks closed the holiday-shortened week ending Jan. 19 on a positive note. Traders overcame early-week jitters caused by some Federal Reserve officials and economic data that dampened hopes of rate cuts.\\xa0Taiwan Semiconductor Manufacturing Company Limited’s (NYSE:TSM) strong outlook attracted buyers back into the market on Thursday. This positive sentiment drove the S&P 500 Index to a record high in Friday’s session.\\nLPL Financial Chief Global Strategist\\xa0Quincy Krosby\\xa0noted, “As technology, semiconductors, and consumer discretionary led the S&P 500 to new highs, it reflected the strength of the growth sectors that underpinned the inherent strength in the bull market that was born earlier last year.”\\n US Index Performance In Week Ended Jan. 19 \\n\\n\\n\\n\\nIndex \\nPerformance (+/-)\\nValue\\n\\n\\nNasdaq Composite\\n+2.26%\\n15,310.97\\n\\n\\nS&P 500 Index\\n+1.17%\\n4,839.81\\n\\n\\nDow Industrials\\n+0.72%\\n37,863.80\\n\\n\\nRussell 2000\\n-0.34%\\n1,944.39\\n\\n\\n\\n\\nAnalyst Color:\\nJohn Lynch, Chief Investment Strategist at Comerica Wealth Management, brought up the possibility for a ...Full story available on Benzinga.com\",\n",
+ " 'keywords': ['News',\n",
+ " 'Earnings',\n",
+ " 'Equities',\n",
+ " 'Futures',\n",
+ " 'Previews',\n",
+ " 'Top Stories',\n",
+ " 'Economics',\n",
+ " 'Federal Reserve',\n",
+ " 'Pre-Market Outlook',\n",
+ " 'Markets',\n",
+ " 'Movers',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': 'DTuERpA4mQXovFEefl11K1DnAHrz-V1OvSHcHt9r_uk',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': \"If You Invested $500 in Shiba Inu in November, Here's How Much You Would Have Now\",\n",
+ " 'author': 'newsfeedback@fool.com (Eric Volkman)',\n",
+ " 'published_utc': '2024-01-22T11:52:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2024/01/22/if-you-invested-500-in-shiba-inu-in-november-heres/',\n",
+ " 'tickers': ['TSLA', 'COIN'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/761179/dog-looking-at-camera-with-its-mouth-open.jpg',\n",
+ " 'description': \"You'd have more, for sure.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'FCv65sLkN0lNgOLJG9v8Crxxth1NmdZz2inWbivxj7E',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'The stock market needs better earnings to keep climbing. It’s not going to get them, warns JPMorgan',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2024-01-22T11:46:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/the-stock-market-needs-better-earnings-to-keep-climbing-its-not-going-to-get-them-warns-jpmorgan-667010ef',\n",
+ " 'tickers': ['LOGI',\n",
+ " 'UAL',\n",
+ " 'ZION',\n",
+ " 'ADM',\n",
+ " 'M',\n",
+ " 'IBN',\n",
+ " 'TSLA',\n",
+ " 'NVDA',\n",
+ " 'PHUN',\n",
+ " 'NIO',\n",
+ " 'HDB',\n",
+ " 'AMD',\n",
+ " 'AAPL',\n",
+ " 'AMC'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/the-stock-market-needs-better-earnings-to-keep-climbing-its-not-going-to-get-them-warns-jpmorgan-667010ef',\n",
+ " 'image_url': 'https://images.mktw.net/im-89878596/social',\n",
+ " 'description': 'Bulls need sure footing at this altitude but earnings are not likely to provide support'},\n",
+ " {'id': '_KujDF5j3mWa0GA7kbpOFmKgPS6rr4xdRWCemeEueIk',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Investing in BYD Stock Instead of Tesla? 1 Key Risk to Keep An Eye On in 2024',\n",
+ " 'author': 'newsfeedback@fool.com (Nicholas Rossolillo)',\n",
+ " 'published_utc': '2024-01-22T11:31:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2024/01/22/investing-in-byd-stock-instead-of-tesla-1-key-risk/',\n",
+ " 'tickers': ['BRK.B', 'BRK.A', 'TSLA', 'NVDA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/761760/electric-vehicles-evs-charging-station-battery-technology.jpg',\n",
+ " 'description': \"EVs are eating the auto industry, but that doesn't automatically mean higher profit margins.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'VUKKTf9xE-QTtBgJIyIpF7yfoL9HgQmUxfLlKC3SosY',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Where Will Ford Stock Be in Five Years?',\n",
+ " 'author': 'newsfeedback@fool.com (Will Ebiefung)',\n",
+ " 'published_utc': '2024-01-22T11:17:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2024/01/22/where-will-ford-stock-be-in-five-years/',\n",
+ " 'tickers': ['F', 'TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/761688/gettyimages-1251218290-1.jpg',\n",
+ " 'description': 'This legacy automaker has historically been a poor performer. Could its fortunes soon change?',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'NGUzkaRbWHMLLfxDyOrP3HOdHx016aQn9HqPzXNipOE',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Where Will Tesla Be in 3 Years?',\n",
+ " 'author': 'newsfeedback@fool.com (Neil Patel)',\n",
+ " 'published_utc': '2024-01-22T11:11:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2024/01/22/where-will-tesla-be-in-3-years/',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/761569/thinking-in-front-of-trading-screens.jpg',\n",
+ " 'description': 'It might be a good idea to temper expectations with this massive market outperformer.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'miecynBwMi2T3cqA50Yv_5bU-ka1ESz3AohM5D5wIpk',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'These 5 Wildly Popular High-Flying Stocks of 2023 Could Be Duds in the Rest of 2024, According to Wall Street',\n",
+ " 'author': 'newsfeedback@fool.com (Keith Speights)',\n",
+ " 'published_utc': '2024-01-22T10:50:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2024/01/22/these-5-wildly-popular-high-flying-stocks-of-2023/',\n",
+ " 'tickers': ['AAPL', 'MSFT', 'GOOGL', 'TSLA', 'LLY', 'GOOG'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/761848/young-woman-frustrated-laptop.jpg',\n",
+ " 'description': 'Analysts have not-so-great expectations going forward for these huge winners.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'VeAMg1N5_V5H_Ekoh1ceCsVyii3MWfntp0R-8reXR-c',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': \"This EV Stock Could Be Supercharged for 2024. Hint: It's Not Tesla.\",\n",
+ " 'author': 'newsfeedback@fool.com (Adam Spatacco)',\n",
+ " 'published_utc': '2024-01-22T10:44:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2024/01/22/this-ev-stock-could-be-supercharged-for-2024-hint/',\n",
+ " 'tickers': ['QS', 'TSLA', 'RIVN'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/761503/ev-electric-vehicle-solid-state-battery.jpg',\n",
+ " 'description': 'QuantumScape is a developer of an alternative to lithium-ion batteries for electric vehicles.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'tbukECM3wQIr4WE-veA4Vw9jv1RXdloDLYf04YDHFe8',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Why car insurance has gotten so expensive',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2024-01-22T10:02:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/why-car-insurance-has-gotten-so-expensive-7ebf6932',\n",
+ " 'tickers': ['TSLA', 'HTZ'],\n",
+ " 'image_url': 'https://images.mktw.net/im-63022930/social',\n",
+ " 'description': \"Jumping 20% higher than last year, the average 6-month auto policy cost Americans over $780 in December. Here's what's going on.\"},\n",
+ " {'id': 'wZgR7YZT2QqPkcWEVJVCCX_gCuVleJHLMqecOAh86-g',\n",
+ " 'publisher': {'name': 'Investing.com',\n",
+ " 'homepage_url': 'https://www.investing.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/investing.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/investing.ico'},\n",
+ " 'title': \"Netflix, Tesla Earnings to Tell Market's Next Move - Watch Options Market for Cues\",\n",
+ " 'author': 'Michael Kramer',\n",
+ " 'published_utc': '2024-01-22T07:35:00Z',\n",
+ " 'article_url': 'https://www.investing.com/analysis/netflix-tesla-earnings-to-tell-markets-next-move--watch-options-market-for-cues-200645347',\n",
+ " 'tickers': ['NFLX', 'TSLA'],\n",
+ " 'amp_url': 'https://m.investing.com/analysis/netflix-tesla-earnings-to-tell-markets-next-move--watch-options-market-for-cues-200645347?ampMode=1',\n",
+ " 'image_url': 'https://i-invdn-com.investing.com/redesign/images/seo/investingcom_analysis_og.jpg'},\n",
+ " {'id': 'Dmpyu9JF5AkS3ij5W71HWjghtT7VTIahrf-T8LSh3HI',\n",
+ " 'publisher': {'name': 'Investing.com',\n",
+ " 'homepage_url': 'https://www.investing.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/investing.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/investing.ico'},\n",
+ " 'title': 'Will MegaCap Earnings Support the S&P 500 Breakout?',\n",
+ " 'author': 'Brian Gilmartin',\n",
+ " 'published_utc': '2024-01-22T07:16:00Z',\n",
+ " 'article_url': 'https://www.investing.com/analysis/will-megacap-earnings-support-the-sp-500-breakout-200645350',\n",
+ " 'tickers': ['NFLX', 'TSLA', 'IBM', 'V', 'INTC', 'T', 'MSFT'],\n",
+ " 'amp_url': 'https://m.investing.com/analysis/will-megacap-earnings-support-the-sp-500-breakout-200645350?ampMode=1',\n",
+ " 'image_url': 'https://i-invdn-com.investing.com/redesign/images/seo/investingcom_analysis_og.jpg'},\n",
+ " {'id': 'lSASkMqWafi0dy4TUfUbKOMbtqk1o4Xf5lkWItWvmrs',\n",
+ " 'publisher': {'name': 'Seeking Alpha',\n",
+ " 'homepage_url': 'https://seekingalpha.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/seekingalpha.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/seekingalpha.ico'},\n",
+ " 'title': 'AT&T: About 53% Undervalued, But Is It A Buy?',\n",
+ " 'author': 'Millennial Dividends',\n",
+ " 'published_utc': '2024-01-22T05:39:19Z',\n",
+ " 'article_url': 'https://seekingalpha.com/article/4664105-att-about-53-percent-undervalued-but-is-it-a-buy',\n",
+ " 'tickers': ['F', 'TMUS', 'TSLA', 'T', 'VZ'],\n",
+ " 'image_url': 'https://media.gettyimages.com/id/1247531909/photo/a-visitor-walks-past-us-multinational-telecommunications-at-t-logo-at-the-mobile-world.jpg?b=1&s=594x594&w=0&k=20&c=DAdb4sTDI2npiDSstQa1Dw7AVm0WyMiYF-AStb9s2fc=',\n",
+ " 'description': \"AT&T's refocus on its core telecom business has led to growth in wireless subscriptions. Read what makes T stock an attractive investment for income investors.\"},\n",
+ " {'id': 'LxOZlHiN9uqmy5qhT73mKLwm77P6LuqR3csCqG-4aBY',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Stock Market's 'Once-In-A-Generation' Opportunity Is Near, Says Bernstein Analyst: 'You Are Going To See A Bear Market'\",\n",
+ " 'author': 'Benzinga Neuro',\n",
+ " 'published_utc': '2024-01-22T02:45:04Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/24/01/36710497/stock-markets-once-in-a-generation-opportunity-is-near-says-bernstein-analyst-you-a',\n",
+ " 'tickers': ['AAPL', 'AMZN', 'GOOG', 'MSFT', 'NVDA', 'TSLA', 'GOOGL', 'META'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/36710497',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2024/Bajaj-Electricals-shares-are-surging-tod.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'The stock market is showing signs of a forthcoming investment opportunity, according to a recent report by Richard Bernstein Advisors (RBA). The firm’s deputy CIO, Dan Suzuki, believes that the current market signals could lead to a significant shift in investment dynamics.\\nWhat Happened: Richard Bernstein Advisors (RBA) has been signaling a potential investment opportunity amidst concerning signs in the stock market, reported Business Insider. The firm has been predicting a “once-in-a-generation” opportunity for months, and it appears to be on the verge of realization.\\nAccording to RBA’s Deputy CIO Dan Suzuki, the market’s current situation, particularly the dominance of a few stocks, could lead to a broader market shift. The firm’s thesis, proposed at the end of last year, suggests that the extraordinary market leadership of a small group of stocks will expand to the wider market, resulting in stronger gains for the other 493 S&P 500 stocks.\\nHowever, Suzuki warned that the corporate earnings of major tech companies are expected to decelerate in the next quarter. Only three of the so-called “Magnificent Seven” — Apple Inc (NASDAQ:AAPL), Microsoft Corp (NASDAQ:MSFT), Alphabet Inc (NASDAQ:GOOG) (NASDAQ:GOOGL), Amazon.com Inc (NASDAQ:AMZN), NVIDIA Corp (NASDAQ:NVDA), Tesla Inc (NASDAQ:TSLA), ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['News', 'Analyst Color', 'Equities', 'Markets']},\n",
+ " {'id': 'VjIWmSNlLoN6kev6hn2OmbHDApi7glHNbZF1bb6EF7E',\n",
+ " 'publisher': {'name': 'Seeking Alpha',\n",
+ " 'homepage_url': 'https://seekingalpha.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/seekingalpha.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/seekingalpha.ico'},\n",
+ " 'title': 'Rivian: Thank You, Ford!',\n",
+ " 'author': 'Stone Fox Capital',\n",
+ " 'published_utc': '2024-01-22T01:00:00Z',\n",
+ " 'article_url': 'https://seekingalpha.com/article/4664025-rivian-thank-you-ford',\n",
+ " 'tickers': ['RIVN', 'TSLA', 'F'],\n",
+ " 'image_url': 'https://static.seekingalpha.com/cdn/s3/uploads/getty_images/1601687094/image_1601687094.jpg?io=getty-c-w1536',\n",
+ " 'description': 'Rivian is benefiting from less competition in the EV space as other automakers pull back from EV production. Read why RIVN stock is a Strong Buy.'},\n",
+ " {'id': 'Fzr2U386UoCuvaKObvv2Qpp8uBK3mFgWXKFpsuxHfm4',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Ahead Of Tesla's Q4 Earnings, Analyst Positive Despite Muted Outlook For Margin, New Product Ramp-up\",\n",
+ " 'author': 'Shanthi Rexaline',\n",
+ " 'published_utc': '2024-01-21T18:46:21Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/24/01/36709680/ahead-of-teslas-q4-earnings-analyst-positive-despite-muted-outlook-for-margin-new-p',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/36709680',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2024/rebro--Sweden--28-April-2023-Tesla-Car-D_0.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Tesla, Inc.’s (NASDAQ:TSLA) fourth-quarter results due Wednesday is key for the electric-vehicle maker, given investors’ worry over the company’s fundamentals. Ahead of the results, a venture capitalist and Tesla bull Gene Munster weighed on the aspects that will likely be on investors’ radar.\\nMargin Is The Key: There is risk to the consensus core auto margin estimate of 17.1% for the December quarter due to the ramp in Cybertruck, said Munster, Managing Partner at Deepwater Asset Management. He expects core auto margin, which excludes regulatory credits, to come in at 16.7%, up from 16.3% in the September quarter. \\nDespite the decline, Munster said this is a “directional positive” as it would end Tesla’s four-quarter declining margin streak. He noted that margins peaked seven quarters ago at 29%, and despite the contraction seen since then, Tesla has outperformed the other automakers with 10-14% gross margin. \\nMunster expects CFO Vaibhav Taneja to guide to stable margins during 2024. He, however, sees core auto margins to come in at 17-18%, below the current consensus of about 18.5%. Long term, the analyst sees operating margins trending at 25% or greater. \\nNew Product Ramps: Tesla investors will likely be keen on ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['News',\n",
+ " 'Analyst Color',\n",
+ " 'Earnings',\n",
+ " 'Equities',\n",
+ " 'Previews',\n",
+ " 'Top Stories']},\n",
+ " {'id': 'AkwafW15AMV73KOnFwPT4fFV4MPTYQdCvIYvXuCG6m8',\n",
+ " 'publisher': {'name': 'Seeking Alpha',\n",
+ " 'homepage_url': 'https://seekingalpha.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/seekingalpha.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/seekingalpha.ico'},\n",
+ " 'title': 'Tesla: Sell-Off Likely To Accelerate On Weak Q4 Reporting',\n",
+ " 'author': 'Cavenagh Research',\n",
+ " 'published_utc': '2024-01-21T15:54:07Z',\n",
+ " 'article_url': 'https://seekingalpha.com/article/4664060-tesla-sell-off-likely-to-accelerate-weak-q4-reporting',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'image_url': 'https://static.seekingalpha.com/cdn/s3/uploads/getty_images/1304694206/image_1304694206.jpg?io=getty-c-w1536',\n",
+ " 'description': \"Tesla's margin pressure is increasing due to fresh price cuts, wage increases, and competition from low-cost competitors. Read why I rate the stock a sell.\"},\n",
+ " {'id': 'b5ZpXfCkKyhRy5xvFksGPycCi3g4oHvkF79JTr1dFMo',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Popular QQQ ETF is losing steam this month — even as growth stocks outperform in 2024',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2024-03-14T22:29:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/popular-qqq-etf-is-losing-steam-this-month-even-as-growth-stocks-outperform-in-2024-aff70d1a',\n",
+ " 'tickers': ['QQQ',\n",
+ " 'NVDA',\n",
+ " 'MSFT',\n",
+ " 'AAPL',\n",
+ " 'AMZN',\n",
+ " 'META',\n",
+ " 'SPY',\n",
+ " 'GOOGL',\n",
+ " 'GOOG',\n",
+ " 'TSLA',\n",
+ " 'JTEK',\n",
+ " 'AMD',\n",
+ " 'ORCL',\n",
+ " 'IWF',\n",
+ " 'IWD',\n",
+ " 'KWEB',\n",
+ " 'FBTC',\n",
+ " 'BITB',\n",
+ " 'HODL',\n",
+ " 'ARKB',\n",
+ " 'URNM',\n",
+ " 'SMIN',\n",
+ " 'UNG',\n",
+ " 'URA',\n",
+ " 'PSI'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/popular-qqq-etf-is-losing-steam-this-month-even-as-growth-stocks-outperform-in-2024-aff70d1a',\n",
+ " 'image_url': 'https://images.mktw.net/im-341402/social',\n",
+ " 'description': 'This week’s ETF Wrap digs into the performance of the technology-heavy Invesco QQQ Trust Series I, as investors eye the mixed performance of Big Tech stocks so far in 2024.'},\n",
+ " {'id': 'c35z2QZLfZKLdykVAS_DeCZ_GVLc-W2yoS7HzFM4x8s',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Fisker breaks silence about potential bankruptcy. Here’s what it had to say.',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2024-03-14T21:57:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/fisker-breaks-silence-about-potential-bankruptcy-heres-what-it-had-to-say-eee91905',\n",
+ " 'tickers': ['FSR', 'TSLA'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/fisker-breaks-silence-about-potential-bankruptcy-heres-what-it-had-to-say-eee91905',\n",
+ " 'image_url': 'https://images.mktw.net/im-59453634/social',\n",
+ " 'description': 'Fisker tries to ward off bankruptcy talk, says it is still engaging with another carmaker to survive.'},\n",
+ " {'id': 'HnV2AW5QI3pq97YLodJGoZ7XsI-CrTsmRnpEC9F9UPM',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Dogecoin Rips Then Slips On Most Recent Elon Musk Comments',\n",
+ " 'author': 'newsfeedback@fool.com (Chris MacDonald)',\n",
+ " 'published_utc': '2024-03-14T21:04:36Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2024/03/14/dogecoin-rips-then-slips-on-most-recent-elon-musk/',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/769388/dogecoin3.jpg',\n",
+ " 'description': 'Recent comments from Elon Musk pushed the token more than 11% higher late last night, before the meme coin gave up most of its gains.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': '7cT7Zjqfu55WQsHuWnmcrShasgny6Cubsz-19IFtgo4',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Tesla Worst Performing S&P 500 Stock Year-To-Date: Analyst Warns More Trouble Ahead With 'Slower EV Demand'\",\n",
+ " 'author': 'Chris Katje',\n",
+ " 'published_utc': '2024-03-14T20:02:55Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/24/03/37716163/tesla-worst-performing-s-p-500-stock-year-to-date-analyst-warns-more-trouble-ahead-',\n",
+ " 'tickers': ['SPY',\n",
+ " 'AAPL',\n",
+ " 'AMZN',\n",
+ " 'GOOG',\n",
+ " 'MSFT',\n",
+ " 'NVDA',\n",
+ " 'BA',\n",
+ " 'CEG',\n",
+ " 'TSLA',\n",
+ " 'GOOGL',\n",
+ " 'PP',\n",
+ " 'META'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/37716163',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2024/musk-ai4.png?width=1200&height=800&fit=crop',\n",
+ " 'description': \"Electric vehicle leader Tesla Inc (NASDAQ:TSLA) has been one of the leading producers of EVs over the last five years.\\nAfter a strong recovery for its stock in 2023, Tesla shares have turned into one of the worst performers over the last three months.\\nWhat Happened: The S&P 500 Index has been setting new all-time high records in 2024 passing the 5,000 level.\\nThe SPDR S&P 500 ETF Trust (NYSE:SPY), which tracks the index, is up 33.6% over the last year and up 8.3% year-to-date in 2024. The index and ETF have been helped by the performance of the Magnificent 7 stocks.\\nThe seven stocks of Amazon.com Inc (NASDAQ:AMZN), Meta Platforms (NASDAQ:META), Apple Inc (NASDAQ:AAPL), Microsoft Corporation (NASDAQ:MSFT), Alphabet Inc (NASDAQ:GOOG)(NASDAQ:GOOGL), NVIDIA Corporation (NASDAQ:NVDA) and Tesla have helped boost the S&P 500 over the last year.\\nYear-to-date though, two of the seven key stocks are negative with Apple down 9.9% and Tesla down 34.4%. Overall, the SPDR S&P 500 ETF Trust is up 8.3% year-to-date in 2024.\\nTurns out Tesla isn't just underperforming as a member of the Magnificent 7, the stock is also underperforming in the S&P 500 Index.\\nAs of Thursday, the stock is now the worst performer in the S&P 500 Index year-to-date.\\nCompare that to top performers like Nvidia ...Full story available on Benzinga.com\",\n",
+ " 'keywords': ['Analyst Color',\n",
+ " 'Broad U.S. Equity ETFs',\n",
+ " 'Downgrades',\n",
+ " 'Price Target',\n",
+ " 'Top Stories',\n",
+ " 'Analyst Ratings',\n",
+ " 'Movers',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': 'PIkPVQOY42AKFu7QQVnE550EqTa3K0IM7iA4JihyzWQ',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Stocks Fall As Hot Inflation Data Derails Fed Cut Bets, Bonds Tumble, VIX Rallies, Oil Tops $80: What's Driving Markets Thursday? (CORRECTED)\",\n",
+ " 'author': 'Piero Cingari',\n",
+ " 'published_utc': '2024-03-14T18:23:54Z',\n",
+ " 'article_url': 'https://www.benzinga.com/markets/cryptocurrency/24/03/37713349/stocks-fall-as-hot-inflation-data-derails-fed-cut-bets-bonds-tumble-vix-rallies-oil-tops-8',\n",
+ " 'tickers': ['FSR',\n",
+ " 'HAL',\n",
+ " 'DIA',\n",
+ " 'LEN',\n",
+ " 'IWM',\n",
+ " 'DG',\n",
+ " 'SPY',\n",
+ " 'WB',\n",
+ " 'TLT',\n",
+ " 'TSLA',\n",
+ " 'XLB',\n",
+ " 'QQQ',\n",
+ " 'XLE',\n",
+ " 'MARA',\n",
+ " 'XLK',\n",
+ " 'PD',\n",
+ " 'ADBE',\n",
+ " 'XLRE',\n",
+ " 'COIN',\n",
+ " 'RIOT',\n",
+ " 'GIII',\n",
+ " 'CDLX',\n",
+ " 'NVDA',\n",
+ " 'BLNK',\n",
+ " 'ULTA',\n",
+ " 'SMAR',\n",
+ " 'ZUMZ',\n",
+ " 'HOOD',\n",
+ " 'DKS'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/37713349',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2024/Bull-and-bear-stock-market-index_9.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Editor’s note: This story has been corrected to reflect that Fisker is reportedly considering bankruptcy, but has not filed for bankruptcy. \\nTraders received a cold shower on Thursday as hopes for a rate cut were dashed, with February’s Producer Price Index (PPI) inflation figure significantly exceeding expectations, adding to concerns raised by robust consumer inflation data earlier in the week.\\nDuring morning trading hours in New York, major U.S. equity indices turned negative, driven by a sharp increase in U.S. Treasury yields.\\nThe 30-year Treasury note yields rose by 9 basis points to 4.44%, marking the highest level since late February. The iShares 20+ Year Treasury Bond ETF (NASDAQ:TLT), the world’s largest bond ETF, declined by 1.4%, poised for its sixth consecutive day of losses, marking the longest losing streak since last August.\\nTraders tempered their expectations for rate cuts, now anticipating only an 80-basis-point reduction by year-end, equating to just three cuts of 25 basis points each. Market-implied probabilities of a rate cut by June decreased from nearly 70% to 62%, according to the CME Group ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['Mid Cap',\n",
+ " 'Macro Economic Events',\n",
+ " 'Equities',\n",
+ " 'Cryptocurrency',\n",
+ " 'Large Cap',\n",
+ " 'Broad U.S. Equity ETFs',\n",
+ " 'Bonds',\n",
+ " 'Commodities',\n",
+ " 'Small Cap',\n",
+ " 'Top Stories',\n",
+ " 'Economics',\n",
+ " 'Federal Reserve',\n",
+ " 'Intraday Update',\n",
+ " 'Markets',\n",
+ " 'Tech',\n",
+ " 'ETFs']},\n",
+ " {'id': 'SppbbdI2xwHDNfEAL5__Qm5zYL-Jwt4BQHqmEoPEFro',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Wall Street has another grim take on Tesla, and the stock is at a 10-month low',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2024-03-14T17:30:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/wall-street-has-another-grim-take-on-tesla-and-the-stock-is-at-a-10-month-low-67949c3b',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/wall-street-has-another-grim-take-on-tesla-and-the-stock-is-at-a-10-month-low-67949c3b',\n",
+ " 'image_url': 'https://images.mktw.net/im-25944526/social',\n",
+ " 'description': 'UBS cuts its estimate on Tesla’s sales for the year, pinning it on slower EV demand in the U.S. and Europe and lower production in North America and Europe, among other concerns.'},\n",
+ " {'id': '0ILAK8_QdS2CMBCiKvCAbZsCU_xa4lGX5XbTYDvbvNY',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Hotter Producer Inflation And Declining Retail Sales – Momo Crowd In La La Land, Oil Deficit Prediction',\n",
+ " 'author': 'The Arora Report',\n",
+ " 'published_utc': '2024-03-14T16:47:11Z',\n",
+ " 'article_url': 'https://www.benzinga.com/markets/24/03/37710583/hotter-producer-inflation-and-declining-retail-sales-momo-crowd-in-la-la-land-oil-deficit-prediction',\n",
+ " 'tickers': ['AMZN', 'GOOG', 'MSFT', 'NVDA', 'AAPL', 'TSLA', 'QQQ', 'META'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/37710583',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/chris-liverani-dbi_my696rk-unsplash_12.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'To gain an edge, this is what you need to know today.\\n\\nHotter PPI\\nPlease click here for an enlarged version of the chart of\\xa0SPDR S&P 500 ETF Trust (ARCA:SPY) which represents the benchmark stock market index S&P 500 (SPX).\\nNote the following:\\n\\nThe chart shows that the stock market is staying above the trendline.\\nAs long as the stock market stays above the trendline, the momo crowd is going to continue to buy stocks.\\nThe data just released shows that the momo crowd is in AI la la land and paying no attention to the data.\\xa0\\nThe Arora Report has been heavily focused on AI, and as a result, Arora portfolios have done extremely well.\\xa0Having said that, prudent investors need to understand that when it is all said and done, AI has to prosper in the real world and not in a make believe artificial world.\\xa0 Right now, the momo crowd is in AI la la land.\\xa0\\nProducer Price Index (PPI) shows that inflation is running hotter at the producer level than expected.\\xa0Here are the details:\\n\\nHeadline PPI came at 0.6% vs. 0.3% consensus.\\nCore PPI came at 0.3% vs. 0.2% consensus.\\n\\n\\nPPI feeds directly into PCE, which is the Fed’s favorite inflation gauge. The data released today shows that the Fed needs to be very careful before cutting rates.\\nAs The Arora Report had correctly predicted, consumer spending is beginning to weaken.\\xa0The U.S. economy is 70% consumer based.\\xa0For this reason, prudent investors pay attention to retail sales.\\xa0Here is the latest retail sales data.\\n\\nHeadline retail sales came at 0.6% vs. 0.7% consensus.\\nRetail sales ex-auto came at 0.3% vs. 0.5% consensus.\\n\\n\\nInitial jobless claims came at 209K vs. 218K consensus. Initial jobless claims is a leading indicator and carries heavy weight in our adaptive ZYX Asset Allocation Model with inputs in ten categories.\\xa0 In plain English, adaptiveness means that the model changes itself with market conditions.\\xa0 Most models on Wall ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['Economics', 'Markets', 'General']},\n",
+ " {'id': '3RwxejyZxDQ3_9KVw5-MpOZ6YiRQNPxWbYXd5wuidLU',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Market Cap Game Show: Andy Cross vs. Emily Flippen',\n",
+ " 'author': 'newsfeedback@fool.com (Motley Fool Staff)',\n",
+ " 'published_utc': '2024-03-14T15:50:20Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2024/03/14/market-cap-game-show-andy-cross-vs-emily-flippen/',\n",
+ " 'tickers': ['TSLA',\n",
+ " 'INTU',\n",
+ " 'CMG',\n",
+ " 'MMM',\n",
+ " 'LUV',\n",
+ " 'SNBR',\n",
+ " 'BAH',\n",
+ " 'SSNC',\n",
+ " 'NTB',\n",
+ " 'DOCN'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/768513/image.jpeg',\n",
+ " 'description': \"Test your knowledge of companies' value on the stock market.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'P48CMBK_YRjtgs0MH4EX0jTSBjoX1F2xXiNNRhtfiJ8',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': '‘Run with the bulls.’ Don’t worry about the S&P 500 until it reaches 6,250, says SocGen.',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2024-03-14T14:17:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/run-with-the-bulls-dont-worry-about-frothy-markets-until-s-p-500-hits-6-250-says-socgen-f56ef02a',\n",
+ " 'tickers': ['TSLA',\n",
+ " 'AAPL',\n",
+ " 'DJIA',\n",
+ " 'COMP',\n",
+ " 'X',\n",
+ " 'DG',\n",
+ " 'DKS',\n",
+ " 'AZN',\n",
+ " 'HOOD',\n",
+ " 'NVDA',\n",
+ " 'SOUN',\n",
+ " 'MSTR',\n",
+ " 'FSR',\n",
+ " 'TSM',\n",
+ " 'PATH',\n",
+ " 'AMD',\n",
+ " 'GME'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/run-with-the-bulls-dont-worry-about-frothy-markets-until-s-p-500-hits-6-250-says-socgen-f56ef02a',\n",
+ " 'image_url': 'https://images.mktw.net/im-49712626/social',\n",
+ " 'description': '“Run with the bulls,” says Société Générale’s head of U.S. equity strategy Manish Kabra, who says the U.S. stock index is far from overexuberance still.'},\n",
+ " {'id': 'XeL4F_QSkyX2bpL8yo2VaZDXKczhpVhd2E7I1TRjFg8',\n",
+ " 'publisher': {'name': 'Investing.com',\n",
+ " 'homepage_url': 'https://www.investing.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/investing.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/investing.ico'},\n",
+ " 'title': 'Tesla Vs. Li Auto: Which EV Stock to Back in 2024?',\n",
+ " 'author': 'The Tokenist',\n",
+ " 'published_utc': '2024-03-14T12:50:00Z',\n",
+ " 'article_url': 'https://www.investing.com/analysis/tesla-vs-li-auto-which-ev-stock-to-back-in-2024-200646832',\n",
+ " 'tickers': ['TSLA', 'EVXX', 'RIVN', 'LI', 'WB', 'RWT'],\n",
+ " 'amp_url': 'https://m.investing.com/analysis/tesla-vs-li-auto-which-ev-stock-to-back-in-2024-200646832?ampMode=1',\n",
+ " 'image_url': 'https://i-invdn-com.investing.com/redesign/images/seo/investingcom_analysis_og.jpg'},\n",
+ " {'id': 'g3VKhsA8LnkiPB369EcLql52JBuw4rRGx1dkwcXPvbs',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Tesla To $165? Here Are 10 Top Analyst Forecasts For Thursday',\n",
+ " 'author': 'Avi Kapoor',\n",
+ " 'published_utc': '2024-03-14T12:33:32Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/24/03/37698150/tesla-to-165-here-are-10-top-analyst-forecasts-for-thursday',\n",
+ " 'tickers': ['CART',\n",
+ " 'DLTR',\n",
+ " 'ASH',\n",
+ " 'S',\n",
+ " 'WSM',\n",
+ " 'TSLA',\n",
+ " 'PATH',\n",
+ " 'SKIN',\n",
+ " 'SUM',\n",
+ " 'FTCI'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/37698150',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2024/03/14/tesla-logo1.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Top Wall Street analysts changed their outlook on these top names. For a complete view of all analyst rating changes, including upgrades and downgrades, please see our analyst ratings page.\\n\\nB of A Securities raised the price target for UiPath Inc. (NYSE: PATH) from $26 to $30. B of A Securities analyst Brad Sills maintained a Buy rating. UiPath shares fell 0.9% to close at $24.43 on Wednesday. See how other analysts view this stock.\\nHC Wainwright & Co. cut the price target for FTC Solar, Inc. (NASDAQ: FTCI) from $2.5 to $1.5. HC Wainwright & Co. analyst Amit Dayal maintained a Buy rating. FTC Solar shares gained 3.9% to close at $0.4747 on Wednesday. See how other analysts view this stock.\\nLoop Capital raised SentinelOne, Inc. (NYSE: S) price target from $28 to $30. Loop Capital analyst Yun Kim maintained a Buy rating. SentinelOne shares fell 0.1% to close at $27.94 on Wednesday. See how other analysts view this ...',\n",
+ " 'keywords': ['News',\n",
+ " 'Penny Stocks',\n",
+ " 'Price Target',\n",
+ " 'Small Cap',\n",
+ " 'Markets',\n",
+ " 'Analyst Ratings',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': 'yZfUfI2ZIGvx6SS6OuikqHeVATHmDlVMwHzDMYPZJYE',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Wall Street Eyes Strong Start Ahead Of More Inflation Data, Gold & Bitcoin Dip: Why This Analyst Looks Beyond AI For Growth',\n",
+ " 'author': 'Shanthi Rexaline',\n",
+ " 'published_utc': '2024-03-14T11:39:29Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/earnings/24/03/37691936/wall-street-eyes-strong-start-ahead-of-more-inflation-data-gold-bitcoin-dip-why-this-analyst-looks-',\n",
+ " 'tickers': ['TSLA',\n",
+ " 'QQQ',\n",
+ " 'PD',\n",
+ " 'SPY',\n",
+ " 'CDLX',\n",
+ " 'ADBE',\n",
+ " 'BLNK',\n",
+ " 'DLTR',\n",
+ " 'SMAR',\n",
+ " 'GIII',\n",
+ " 'ULTA',\n",
+ " 'HOOD',\n",
+ " 'ZUMZ',\n",
+ " 'DKS',\n",
+ " 'FSR',\n",
+ " 'LEN',\n",
+ " 'MMM',\n",
+ " 'S',\n",
+ " 'WSM',\n",
+ " 'DG',\n",
+ " 'WB'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/37691936',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2024/nyse-shutter_7.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'As traders harbor hopes that the Federal Reserve will take down interest rates in the first half of the year, the broader trend is to the upside amid occasional minor corrections. Stock futures are pointing up on Thursday. The February producer price inflation and retail sales data could direct traders’ sentiment for the day, and if these pan out in line with expectations, the broader market could resume their climb. Bond yields, however, tell a different story, and have been on an uptrend in recent sessions.\\nCues From Previous Session:\\nThe lack of any major catalyst kept sentiment subdued on Wednesday, with tech stocks serving as drags. The major averages opened on a mixed note, with the Nasdaq Composite and the S&P 500 Index declining, while the Dow Jones Industrial Average was higher at the open. \\nThe former two indices languished mostly below the unchanged line before ending lower, while the Dow held above the unchanged line for a majority of the session before ending modestly higher. The 30-stock blue-chip average received support from a strong rally in 3M Co. (NYSE:MMM) after the company announced a new CEO. \\nIT, real estate, healthcare, and consumer discretionary stocks experienced weakness, while energy and material stocks were among the biggest gainers.\\n\\n\\n\\n\\nIndex\\nPerformance (+/-)\\nValue\\n\\n\\nNasdaq Composite\\n-0.54%\\n16,177.77\\n\\n\\nS&P 500 Index\\n-0.19%\\n5,165.31\\n\\n\\nDow Industrials\\n+0.10%\\n39,043.32\\n\\n\\nRussell 2000\\n+0.30%\\n2,071.71\\n\\n\\n\\nAnalyst Color:\\nDelving into the reasons behind the market’s optimism since the October 2023 lows, Morgan Stanley’s Lisa Shalett said easy financial conditions and excitement about AI are driving the surge, despite persistently high rates and negative earnings revisions. \\nThe analyst, however, cautioned against investors pinning much hope on these going forward. Liquidity infusion into the financial system from banks, money markets, and government stimulus programs that more than offset Fed tightening may finally be drying up and excess savings cushions are nearing exhaustion, she said.\\nShalett viewed that ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['News',\n",
+ " 'Earnings',\n",
+ " 'Equities',\n",
+ " 'Futures',\n",
+ " 'Previews',\n",
+ " 'Economics',\n",
+ " 'Federal Reserve',\n",
+ " 'Pre-Market Outlook',\n",
+ " 'Markets',\n",
+ " 'Movers',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': 'HTRsGQzfn3zmdYNsz_FWVEokXvS005E6MgZ2mWCnkbc',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Why Japan’s stock market could keep soaring — plus three stock picks there',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2024-03-14T11:08:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/why-japans-stock-market-could-keep-soaring-plus-three-stock-picks-there-dc504017',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/why-japans-stock-market-could-keep-soaring-plus-three-stock-picks-there-dc504017',\n",
+ " 'image_url': 'https://images.mktw.net/im-78066869/social',\n",
+ " 'description': 'Christian Heck of First Eagle Investment Management makes the case that Japan’s stock market is still inexpensive as its companies improve.'},\n",
+ " {'id': 'KwY7-u4iNfocpydeEUpWlzkc0GKyqA1tAWpbHG4Su0o',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'This Artificial Intelligence (AI) \"Magnificent Seven\" Stock Could be a Once-in-a-Generation Investment Opportunity Right Now',\n",
+ " 'author': 'newsfeedback@fool.com (Adria Cimino)',\n",
+ " 'published_utc': '2024-03-14T10:05:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2024/03/14/this-artificial-intelligence-ai-magnificent-seven/',\n",
+ " 'tickers': ['GOOG',\n",
+ " 'GOOGL',\n",
+ " 'MCD',\n",
+ " 'META',\n",
+ " 'MSFT',\n",
+ " 'AAPL',\n",
+ " 'TSLA',\n",
+ " 'AMZN',\n",
+ " 'VZ',\n",
+ " 'NVDA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/769016/gettyimages-smiling-investor.jpg',\n",
+ " 'description': 'This particular company looks like a bargain considering its strength today and prospects ahead.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'i1WxfDmUEOSrYKJwal8cH-S8WLTb3O3BeW3nvc2U2Yo',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Ross Gerber's Wake-Up Call For Tesla: 'Investors Need To Face Reality' As The 'Market Is Finally Revaluing'\",\n",
+ " 'author': 'Benzinga Neuro',\n",
+ " 'published_utc': '2024-03-14T09:18:54Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/24/03/37688954/ross-gerbers-wake-up-call-for-tesla-investors-need-to-face-reality-as-the-market-is',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/37688954',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2024/musk-tesla-ai_0.png?width=1200&height=800&fit=crop',\n",
+ " 'description': \"Ross Gerber has recently raised questions about the current strategy of Tesla Inc. (NASDAQ:TSLA), highlighting the company’s high valuation and stagnant growth.\\nWhat Happened: Gerber took to X on Wednesday to express his concerns about Tesla’s current situation over a series of posts. He criticized the company’s strategy, which restricts their sales to no more than 2 million cars per year, and expressed concern about the lack of advertising and the amount of misinformation surrounding electric vehicles.\\n“Tesla investors need to face reality,” he wrote. \\n\\n\\nTesla investors need to face reality. They are not able to sell more than 2 mil cars a year with their current strategy. They don't advertise and the amount of EV misinformation is absurd. Meanwhile energy prices are a key component of higher inflation… $tsla\\n— Ross Gerber (@GerberKawasaki) March 13, 2024\\n\\n\\nGerber also discussed the impact of energy prices on inflation and questioned Tesla’s profitability. While reiterating his appreciation for Tesla and its products, he reminded us that the stock market is assessing its $3 valuation.\\n\\n\\nAnother realty is tesla profits are not growing and now $3 ...Full story available on Benzinga.com\",\n",
+ " 'keywords': ['News', 'Analyst Color', 'Equities', 'Markets', 'General']},\n",
+ " {'id': 'Xz2_Qfl1hOYy6rVL-LV3Yqc9WFEjpfVdsai4ZZx4UUY',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Tesla Investor Shorts Stock, Saying 'Don't Think All Of The Bad Is Priced In Yet' — Predicts Possible Fall To This Level\",\n",
+ " 'author': 'Shanthi Rexaline',\n",
+ " 'published_utc': '2024-03-14T07:24:33Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/24/03/37683249/tesla-investor-shorts-stock-saying-dont-think-all-of-the-bad-is-priced-in-yet-predi',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/37683249',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2024/Tesla-stock_12.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Tesla, Inc.\\xa0(NASDAQ:TSLA) took a sharp nosedive on Wednesday following a\\xa0downgrade from\\xa0Wells Fargo, which raised concerns about the electric vehicle maker’s ability to meet delivery targets. Adding to the downward pressure, a prominent Tesla investor and YouTuber announced his decision to short the stock, citing broader economic factors.\\nPointing Finger At The Fed: “Going short Tesla,” declared Kevin Paffrath, better known as “Meet Kevin” on YouTube and social media.\\xa0\\nWith nearly 2 million subscribers on his YouTube channel and over 339,000 followers on X, Paffrath expressed his frustration, saying, “But I feel stabbed in the back and a lot of it doesn’t even have to do with Tesla, has to do with what I think the Federal Reserve is about to do to us.” He clarified that his short position is only for the short term.\\nPaffrath then delved into the recent ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['News',\n",
+ " 'Analyst Color',\n",
+ " 'Equities',\n",
+ " 'Short Ideas',\n",
+ " 'Topics',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': 'VaZuV1Awt4UV5BWIa76jbsYi9_lqHrwqDOnpeRddpTM',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Wedbush's Dan Ives On Recent Tesla Downgrade: 'Even The New York City Cab Driver Is Bearish'\",\n",
+ " 'author': 'Benzinga Neuro',\n",
+ " 'published_utc': '2024-03-14T06:18:54Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/24/03/37682987/wedbushs-dan-ives-on-recent-tesla-downgrade-even-the-new-york-city-cab-driver-is-be',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/37682987',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2024/Kaunas--Lithuania-2022---April-14-Tesla-_5.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Wedbush analyst Dan Ives commented on the recent downgrade of Tesla Inc. (NASDAQ:TSLA), suggesting a shift in market sentiment. Ives noted the pervasive bearish outlook, even among New York City cab drivers, but predicted a significant rebound for Tesla in the coming years, especially with advancements in AI technology.\\nWhat Happened: On Wednesday, Ives acknowledged the current “piling on” by bears emerging “out of hibernation,” yet he maintains a long-term bullish stance on the electric vehicle (EV) giant. He believes that the current sentiment will be viewed retrospectively as a prime buying opportunity for investors.\\n“When you look through in six to nine months, we are going to look at this as more of a golden buying opportunity for Tesla over the next two to three years, especially with AI, right in time to throw in the white towel. But for now, we all know that even the New York City cab driver is bearish on Tesla,” he told to CNBC.\\n\\n\\nDAN IVES ON TESLA DOWNGRADE TODAY $TSLA:\"Even the New ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['News',\n",
+ " 'Analyst Color',\n",
+ " 'Equities',\n",
+ " 'Markets',\n",
+ " 'Analyst Ratings',\n",
+ " 'General']},\n",
+ " {'id': 'wMp19gkKRanBGZYii2jxtPIbBR0cAQR6-SQ-MwHxnvc',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Dow ekes out gain, S&P 500 slips following its 17th record high this year',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2024-03-13T20:22:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/s-p-500-futures-virtually-flat-after-17th-record-high-of-the-year-96f43d0c',\n",
+ " 'tickers': ['DJIA',\n",
+ " 'COMP',\n",
+ " 'NVDA',\n",
+ " 'DLTR',\n",
+ " 'WOOF',\n",
+ " 'WSM',\n",
+ " 'PATH',\n",
+ " 'S',\n",
+ " 'LEN',\n",
+ " 'TSLA'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/s-p-500-futures-virtually-flat-after-17th-record-high-of-the-year-96f43d0c',\n",
+ " 'image_url': 'https://images.mktw.net/im-08911757/social',\n",
+ " 'description': 'U.S. stocks finished mixed on Wednesday as investors digested gains from the previous session that had propelled the S&P 500 to its 17th record high of the year.'},\n",
+ " {'id': 'cOCgFJdxaZqcMvjv8vg1qggYcBtTsFZinibqCC_HXDI',\n",
+ " 'publisher': {'name': 'Investing.com',\n",
+ " 'homepage_url': 'https://www.investing.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/investing.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/investing.ico'},\n",
+ " 'title': 'Boeing Now the Second-Worst Performer in the S&P 500 YTD, Only Behind Tesla',\n",
+ " 'author': 'The Tokenist',\n",
+ " 'published_utc': '2024-03-13T19:27:00Z',\n",
+ " 'article_url': 'https://www.investing.com/analysis/boeing-now-the-secondworst-performer-in-the-sp-500-ytd-only-behind-tesla-200646808',\n",
+ " 'tickers': ['TSLA', 'BA', 'LUV'],\n",
+ " 'amp_url': 'https://m.investing.com/analysis/boeing-now-the-secondworst-performer-in-the-sp-500-ytd-only-behind-tesla-200646808?ampMode=1',\n",
+ " 'image_url': 'https://i-invdn-com.investing.com/redesign/images/seo/investingcom_analysis_og.jpg'},\n",
+ " {'id': 'zHYn5hnDFlWk72lH-JoKTkkz66UKQaLUP3fdCuvAC_s',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Tesla now worth less than JPMorgan as stock slapped with new bearish call',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2024-03-13T18:19:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/teslas-stock-selloff-is-way-overdone-as-ev-demand-stabilizes-analyst-says-48441167',\n",
+ " 'tickers': ['TSLA', 'JPM', 'BA', 'DRIV'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/teslas-stock-selloff-is-way-overdone-as-ev-demand-stabilizes-analyst-says-48441167',\n",
+ " 'image_url': 'https://images.mktw.net/im-67367165/social',\n",
+ " 'description': 'Shares of Tesla extended their selloff toward a 10-month low Wednesday, as a Wells Fargo analyst moved to a bearish stance on the stock.'},\n",
+ " {'id': '8YweoHYuymxRTbrdquyW4dYCLMsGnq32rypeaAousEo',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Tech Stocks Ease As Treasury Yields Rise, Commodity Rally Fuels Sector Rotation: What's Driving Markets Wednesday?\",\n",
+ " 'author': 'Piero Cingari',\n",
+ " 'published_utc': '2024-03-13T17:55:37Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/24/03/37671501/tech-stocks-ease-as-treasury-yields-rise-commodity-rally-fuels-sector-rotation-what',\n",
+ " 'tickers': ['QQQ',\n",
+ " 'PYPL',\n",
+ " 'DIA',\n",
+ " 'SPY',\n",
+ " 'TLT',\n",
+ " 'XLB',\n",
+ " 'XLE',\n",
+ " 'XLK',\n",
+ " 'XLU',\n",
+ " 'DLTR',\n",
+ " 'CCL',\n",
+ " 'FCX',\n",
+ " 'VLO',\n",
+ " 'WSM',\n",
+ " 'SCCO',\n",
+ " 'TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/37671501',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2024/Wall-Street-subway-sign_3.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'A session marked by sector rotation is unfolding on Wednesday, with the tech sector giving back some of Tuesday’s gains, making way for the advance of energy and materials sectors following a surge in commodities prices.\\nThe S&P 500 remained flat at 1 p.m. in New York, while the tech-heavy Nasdaq 100 declined by 0.5%. In contrast, blue-chip and small-cap stocks saw increases of 0.5% and 0.6%, respectively.\\nTreasury yields saw a slight uptick, causing the iShares 20+ Year Treasury Bond ETF (NASDAQ:TLT) to decline for the fifth consecutive session.\\nCommodities emerged as the strongest performers in the market. Copper surged by over 3%, reaching highs last observed in April 2023 as China announced plans to reduce output. Silver rose by 3.6% to $25/oz, the highest level since early December 2023, driven by ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['Mid Cap',\n",
+ " 'Sector ETFs',\n",
+ " 'Analyst Color',\n",
+ " 'Large Cap',\n",
+ " 'Broad U.S. Equity ETFs',\n",
+ " 'Downgrades',\n",
+ " 'Price Target',\n",
+ " 'Commodities',\n",
+ " 'Small Cap',\n",
+ " 'Top Stories',\n",
+ " 'Intraday Update',\n",
+ " 'Markets',\n",
+ " 'Analyst Ratings',\n",
+ " 'Tech',\n",
+ " 'ETFs']},\n",
+ " {'id': 'HznZmdiAwgu-rkCrZn7H_DcS03graL2ewn5MJKq5y14',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Nvidia And Gamma Squeeze Overpower Hotter Inflation Data',\n",
+ " 'author': 'The Arora Report',\n",
+ " 'published_utc': '2024-03-13T15:44:23Z',\n",
+ " 'article_url': 'https://www.benzinga.com/markets/24/03/37666432/nvidia-and-gamma-squeeze-overpower-hotter-inflation-data',\n",
+ " 'tickers': ['GLD',\n",
+ " 'SLV',\n",
+ " 'USO',\n",
+ " 'AMZN',\n",
+ " 'GOOG',\n",
+ " 'MSFT',\n",
+ " 'NVDA',\n",
+ " 'ORCL',\n",
+ " 'AAPL',\n",
+ " 'TSLA',\n",
+ " 'QQQ',\n",
+ " 'META'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/37666432',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/observatory4_6.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'To gain an edge, this is what you need to know today.\\n\\nAI Frenzy\\nPlease click here for an enlarged version of the chart of\\xa0Invesco QQQ Trust Series 1 (NASDAQ: QQQ).\\nNote the following:\\n\\nQQQ is above the trendline shown on the chart.\\nThe chart shows that QQQ ran up in spite of hotter inflation data.\\xa0Yesterday, gamma squeeze and AI frenzy completely overpowered inflation data that was negative for the stock market.\\nPrudent investors know the market cannot ignore inflation forever.\\xa0While the stock market and the economy are not the same thing, they can not be completely divorced from one another.\\nAs long as QQQ stays above the trendline shown on the chart, the rapidly increasing YOLO (you only live once) behavior in the stock market will continue.\\xa0In YOLO behavior, investors give up any notion of risk.\\nThe chart shows that if QQQ starts pulling back, the major support zone is far off.\\nOracle Corp (NYSE: ORCL) earnings indicated there is a strong demand for NVIDIA Corp (NASDAQ: NVDA) chips.\\nNVDA stock ran up on Oracle earnings, which pulled up other AI stocks and led the market higher.\\nQuadruple witching is this Friday.\\xa0Quadruple witching is to the upside.\\nThe incessant call buying by the momo crowd is leading to a gamma squeeze, putting upward pressure on the stock market.\\xa0Gamma squeeze is an important market mechanic.\\xa0Understanding gamma squeeze can give investors an edge.\\nNVDA has now totally replaced Tesla Inc (NASDAQ: TSLA) as the momo crowd’s favorite stock.\\xa0The momo crowd is selling TSLA and buying NVDA.\\nThe next major trigger for the stock market will be the Nvidia GTC event that starts on March 18.\\nThe momo crowd is caught up in the AI frenzy to such a large extent that the momo crowd has decided inflation does not matter anymore.\\nOf note is that as ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['Economics', 'Markets']},\n",
+ " {'id': '1eVAJ9R9GB2-bki82GCqB2yC1sM6m4MBZZkzArVQEjU',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'PCAR vs. TSLA: Which Stock Is the Better Value Option?',\n",
+ " 'author': 'Zacks Equity Research',\n",
+ " 'published_utc': '2024-03-13T15:40:12Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/2240107/pcar-vs-tsla-which-stock-is-the-better-value-option',\n",
+ " 'tickers': ['PCAR', 'TSLA'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/2240107/pcar-vs-tsla-which-stock-is-the-better-value-option',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/default_article_images/default45.jpg',\n",
+ " 'description': 'PCAR vs. TSLA: Which Stock Is the Better Value Option?'},\n",
+ " {'id': 'zB3oKODytgxtuuSFd-GUhvEA-BUnYrECivbD5P7cy9o',\n",
+ " 'publisher': {'name': 'Investing.com',\n",
+ " 'homepage_url': 'https://www.investing.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/investing.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/investing.ico'},\n",
+ " 'title': 'This Company Has Posted More Profits than Nvidia, Meta, Tesla and Amazon Combined',\n",
+ " 'author': 'Investing.com',\n",
+ " 'published_utc': '2024-03-13T14:50:00Z',\n",
+ " 'article_url': 'https://www.investing.com/analysis/this-company-has-posted-more-profits-than-nvidia-meta-tesla-and-amazon-combined-200646796',\n",
+ " 'tickers': ['META', 'AMZN', 'NVDA', 'TSLA', 'AAPL', 'MSFT'],\n",
+ " 'amp_url': 'https://m.investing.com/analysis/this-company-has-posted-more-profits-than-nvidia-meta-tesla-and-amazon-combined-200646796?ampMode=1',\n",
+ " 'image_url': 'https://i-invdn-com.investing.com/redesign/images/seo/investingcom_analysis_og.jpg'},\n",
+ " {'id': 'DMpnlX8qJfK4gi_mV0405bgEdfPHOxWf7IGjerqzrVU',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Dollar Tree Reports Weak Earnings, Joins Tesla, Arcos Dorados And Other Big Stocks Moving Lower On Wednesday',\n",
+ " 'author': 'Avi Kapoor',\n",
+ " 'published_utc': '2024-03-13T14:22:00Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/24/03/37662379/dollar-tree-reports-weak-earnings-joins-tesla-arcos-dorados-and-other-big-stocks-moving-lower-on-wed',\n",
+ " 'tickers': ['ADCT',\n",
+ " 'CMTL',\n",
+ " 'DLTR',\n",
+ " 'TSLA',\n",
+ " 'ARCO',\n",
+ " 'LDI',\n",
+ " 'NUKK',\n",
+ " 'ICHR',\n",
+ " 'SWIN',\n",
+ " 'RXT',\n",
+ " 'ZIM',\n",
+ " 'NAAS',\n",
+ " 'NMRA',\n",
+ " 'TVGN'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/37662379',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2024/03/13/tesla_-_logo.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'U.S. stocks were mixed, with the Dow Jones index surging more than 100 points on Wednesday.\\nShares of Dollar Tree, Inc. (NASDAQ: DLTR) fell sharply during Wednesday’s session after the company reported worse-than-expected fourth-quarter financial results and issued first-quarter EPS guidance below estimates.\\nDollar Tree reported fourth-quarter FY23 sales growth of 11.9% year-on-year to $8.63 billion, missing the analyst consensus estimate of $8.67 billion. Adjusted EPS of $2.55 missed the consensus estimate of $2.65, according to data from Benzinga Pro.\\nDollar Tree shares dipped 14.5% to $128.00 on Wednesday.\\nHere are some other big stocks recording losses in today’s session.\\n\\nNaaS ...',\n",
+ " 'keywords': ['News',\n",
+ " 'Penny Stocks',\n",
+ " 'Small Cap',\n",
+ " 'Intraday Update',\n",
+ " 'Markets',\n",
+ " 'Movers',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': '4O7Prvl6F-mxiIOacfJdHIcEIRH522RdZe5uFCF4KOs',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': '1 Wall Street Analyst Thinks Tesla Stock Is Going to $125. Is It a Sell?',\n",
+ " 'author': 'newsfeedback@fool.com (Howard Smith)',\n",
+ " 'published_utc': '2024-03-13T14:12:40Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2024/03/13/1-wall-street-analyst-thinks-tesla-stock-is-a-sell/',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/769145/0x0-models_06.jpg',\n",
+ " 'description': 'Tesla is no longer a magnificent stock, according to a Wells Fargo analyst.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'egX8ywuO4VQ7uR-SYhvuOi-JIqvelKkva0SIXhOXMLg',\n",
+ " 'publisher': {'name': 'Seeking Alpha',\n",
+ " 'homepage_url': 'https://seekingalpha.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/seekingalpha.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/seekingalpha.ico'},\n",
+ " 'title': 'Tesla Is Dead Money',\n",
+ " 'author': 'The Value Portfolio',\n",
+ " 'published_utc': '2024-03-13T14:00:22Z',\n",
+ " 'article_url': 'https://seekingalpha.com/article/4677896-tesla-is-dead-money',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'image_url': 'https://static.seekingalpha.com/cdn/s3/uploads/getty_images/1354070884/image_1354070884.jpg?io=getty-c-w1536',\n",
+ " 'description': \"Tesla's growth story is over and is expected to get worse. Find out why we expect TSLA stock price to continue stagnating if not going down.\"},\n",
+ " {'id': 'ALOgIc4aCHhd4nWM3hT4svZiwcYDxsHrMZNZisHngnE',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'The Zacks Analyst Blog Highlights Novo Nordisk, Tesla, Airbnb, ONEOK and CDW',\n",
+ " 'author': 'Zacks Equity Research',\n",
+ " 'published_utc': '2024-03-13T13:48:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/2240060/the-zacks-analyst-blog-highlights-novo-nordisk-tesla-airbnb-oneok-and-cdw',\n",
+ " 'tickers': ['NVO', 'OKE', 'TSLA', 'CDW', 'ABNB'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/2240060/the-zacks-analyst-blog-highlights-novo-nordisk-tesla-airbnb-oneok-and-cdw',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/articles/main/b9/441.jpg',\n",
+ " 'description': 'Novo Nordisk, Tesla, Airbnb, ONEOK and CDW are part of the Zacks top Analyst Blog.'},\n",
+ " {'id': '-34idkWS2jrl2CFJwXLOKq_HhXJBjifzoO2vHIJPEw4',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"'Now Is NOT The Time To Throw In The Towel' On Tesla, Says Wedbush's Dan Ives: AI And FSD Could Drive The Stock Over $1 Trillion\",\n",
+ " 'author': 'Rounak Jain',\n",
+ " 'published_utc': '2024-03-13T12:49:22Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/24/03/37657502/now-is-not-the-time-to-throw-in-the-towel-on-tesla-says-wedbushs-dan-ives-ai-and-fs',\n",
+ " 'tickers': ['NVDA', 'TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/37657502',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2024/musk-tesla-ai.png?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Wedbush\\'s Dan Ives\\xa0thinks \"now is NOT the time to throw in the towel\" on\\xa0Tesla Inc.\\xa0(NASDAQ:TSLA) despite\\xa0increasing negativity surrounding\\xa0the EV maker. He added that Tesla\\'s AI technology, aided by Full Self-Driving (FSD), could drive the EV maker\\'s market capitalization to over $1 trillion.\\nWhat Happened: Ives expressed that Tesla’s AI and Full Self-Driving (FSD) advancements could propel the company’s valuation beyond $1 trillion. Despite a slow first quarter, the firm anticipates the possibility of Tesla reaching 2.1 million units in 2024.\\n\"We believe the risk/reward is extremely compelling at these levels with the AI story and FSD making major strides at Tesla,\" Ives said.\\nIves believes AI and FSD could drive the next phase of Tesla\\'s growth story and help it cross $1 trillion in market capitalization.\\nMusk has previously voiced his displeasure over compensation and the lack of 25% voting control in the company he co-founded.\\n“I am uncomfortable growing Tesla to be a leader in AI & robotics without having ~25% voting control. Enough to be influential, but not so much that I can’t be overturned.\"\\n\\n\\nI am uncomfortable growing Tesla to be a leader in AI & ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['News',\n",
+ " 'Analyst Color',\n",
+ " 'Equities',\n",
+ " 'Price Target',\n",
+ " 'Top Stories',\n",
+ " 'Markets',\n",
+ " 'Analyst Ratings',\n",
+ " 'Tech']},\n",
+ " {'id': 'eDo_HutHEHOEYKRVgmEVo9Y6M25yHHedOaTKwqbxfQk',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Top rated manager flags three overlooked small stocks, including an under-the-radar AI play',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2024-03-13T11:57:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/top-rated-manager-flags-three-overlooked-small-stocks-including-an-under-the-radar-ai-play-8134847f',\n",
+ " 'tickers': ['KAI',\n",
+ " 'GLOB',\n",
+ " 'FND',\n",
+ " 'HD',\n",
+ " 'LESL',\n",
+ " 'DLTR',\n",
+ " 'TSLA',\n",
+ " 'IBM',\n",
+ " 'NVDA',\n",
+ " 'TSM',\n",
+ " 'SOUN',\n",
+ " 'SMCI',\n",
+ " 'AAPL',\n",
+ " 'GME',\n",
+ " 'AMD',\n",
+ " 'PLTR',\n",
+ " 'NIO'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/top-rated-manager-flags-three-overlooked-small-stocks-including-an-under-the-radar-ai-play-8134847f',\n",
+ " 'image_url': 'https://images.mktw.net/im-85909438/social',\n",
+ " 'description': 'Mick Rasmussen, fund manager at a gold medalist ranked fund, talks about an AI play no one is looking and other stocks.'},\n",
+ " {'id': 'JmjgmwFks7iZ5Petdmgzho7p6Bvm6jj-QjiJh3K07zs',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Rough Patch or Dip in the Road? 6 Reasons to Keep Your Eyes on Tesla',\n",
+ " 'author': 'newsfeedback@fool.com (Justin Pope)',\n",
+ " 'published_utc': '2024-03-13T11:15:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2024/03/13/rough-patch-or-dip-in-the-road-6-reasons-to-keep-y/',\n",
+ " 'tickers': ['TSLA', 'GM', 'RIVN'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/768665/two-teslas-in-a-line-driving-on-road-1.png',\n",
+ " 'description': \"Tesla's various growth opportunities could carry the company forward for years.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'd92ULkTQtvPGcugeOoKpldKSJPKshNRzDvdQUW1FeTg',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': '2 \"Magnificent Seven\" Stocks That Are Screaming Buys in March',\n",
+ " 'author': 'newsfeedback@fool.com (Jake Lerch)',\n",
+ " 'published_utc': '2024-03-13T11:10:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2024/03/13/2-magnificent-seven-stocks-screaming-buys-march/',\n",
+ " 'tickers': ['NVDA', 'AMZN', 'META', 'MSFT', 'GOOGL', 'AAPL', 'TSLA', 'GOOG'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/767434/nvidia-nvda-ai-artificial-intelligence-stock-investment.jpg',\n",
+ " 'description': 'These 2 stocks have been riding the gravy train all year.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'BdtIvT7uX4RDnBTBneENIrHX1q93n8qBvFhcnOllLCo',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'US Stock Futures Indicate Flat Open After Mini-Relief Rally; Bitcoin Goes Past $73K While Gold Dulls: Analyst Stresses Need For Robust Earnings',\n",
+ " 'author': 'Shanthi Rexaline',\n",
+ " 'published_utc': '2024-03-13T10:49:21Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/earnings/24/03/37650244/us-stock-futures-indicate-flat-open-after-mini-relief-rally-bitcoin-goes-past-73k-while-gold-dulls-',\n",
+ " 'tickers': ['SPY', 'DLTR', 'LEN', 'S', 'WSM', 'TSLA', 'QQQ'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/37650244',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2024/stock-charts-3_2.png?width=1200&height=800&fit=crop',\n",
+ " 'description': 'After Tuesday’s relief rally that came after investors digested February inflation data, the mood has reverted to caution on Wall Street. Stock futures point to a flattish open on Wednesday. The absence of any major catalysts could increase indecision although traders may look forward to the reception to the 30-year bond auction, given the slight recovery in bond yields in recent sessions. \\nStrategists, meanwhile, are optimistic that the market would preserve the upward momentum, baking in expectations that the Federal Reserve has to pause sometime this year. Between now and the upcoming Wednesday’s Fed decision, stocks could mostly tread water before making a decisive move in either direction.\\nCues From Previous Session:\\nU.S. stocks ended Tuesday’s session on an upbeat note as traders ignored the message relayed by the February inflation and the rise in bond yields. The major averages opened higher after consumer price inflation came in hotter than expected. Selling emerged immediately after, dragging the indices into negative territory in early trading.\\nThe averages staged a remarkable recovery as commentary from economists after the data release suggested that the downward trend in underlying inflation is intact. After a V-shaped recovery in late-morning trading, they moved roughly sideways before ending notably higher.\\nThe broader S&P 500 Index closed at a fresh record after hitting an intraday high earlier in the session, while the Nasdaq Composite and the Dow Industrials closed short of their respective records.\\n“Hopes remain that even though we continue to be far from the Fed’s 2% target\\xa0they will still make cuts, believing\\xa0that a lower Fed Funds rate will still keep sufficient\\xa0pressure on inflation to move eventually towards 2%,” said fund manager Louis Navellier. \\n“Behind the curtain, there is undeniable political\\xa0pressure to lower rates given soaring government debt ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['News',\n",
+ " 'Earnings',\n",
+ " 'Equities',\n",
+ " 'Futures',\n",
+ " 'Previews',\n",
+ " 'Top Stories',\n",
+ " 'Economics',\n",
+ " 'Pre-Market Outlook',\n",
+ " 'Markets',\n",
+ " 'Movers',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': 'cL-nXskGPwsGI_WKbIryFSeW7QmJsvdLfyYYE979CkM',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'The Biggest Loser in the \"Magnificent Seven\" Could Soar 1,140%, According to Cathie Wood\\'s Ark Invest',\n",
+ " 'author': 'newsfeedback@fool.com (Anthony Di Pizio)',\n",
+ " 'published_utc': '2024-03-13T10:00:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2024/03/13/the-loser-magnificent-seven-soar-1140-cathie-wood/',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/768881/a-black-tesla-car-driving-on-an-open-road-in-the-snow.jpg',\n",
+ " 'description': 'Cathie Wood thinks Tesla is the biggest opportunity in the artificial intelligence (AI) space, but its core business recently hit a wall.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'XS-ueC8BRGA84gS6GsEgLep73RXSicl7Zmf7psdS1lc',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': \"Cathie Wood's Ark Invest Is Selling Nvidia Stock and Buying This Artificial Intelligence (AI) Stock\",\n",
+ " 'author': 'newsfeedback@fool.com (Trevor Jennewine)',\n",
+ " 'published_utc': '2024-03-13T09:00:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2024/03/13/cathie-wood-selling-nvidia-buying-ai-stock/',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/768717/strategy-5.jpg',\n",
+ " 'description': 'Ark Invest has been selling shares of Nvidia in March while redeploying capital into Tesla.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'jt933gO2P2mwHxIOj8hRgLczANmk1F6CDGHnLvFwPxI',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Can This Beaten-Down Growth Stock Outperform the \"Magnificent Seven\" Over the Next 5 Years?',\n",
+ " 'author': 'newsfeedback@fool.com (Will Healy)',\n",
+ " 'published_utc': '2024-03-13T08:55:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2024/03/13/can-growth-stock-outperform-magnificent-7-5-years/',\n",
+ " 'tickers': ['ROKU',\n",
+ " 'META',\n",
+ " 'MSFT',\n",
+ " 'GOOGL',\n",
+ " 'AAPL',\n",
+ " 'TSLA',\n",
+ " 'AMZN',\n",
+ " 'NVDA',\n",
+ " 'GOOG'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/768965/couple-watches-streaming-video-together.jpg',\n",
+ " 'description': 'This pandemic darling exhibits some potential for a comeback.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'EdnHH4o-3ckJpssC3DNzHawG2M8zKwAWh444FJP7cXo',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'Bull of the Day: Li Auto (LI)',\n",
+ " 'author': 'Andrew Rocco',\n",
+ " 'published_utc': '2024-03-13T08:00:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/commentary/2239517/bull-of-the-day-li-auto-li',\n",
+ " 'tickers': ['TSLA', 'JD', 'BILI', 'LI'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/commentary/2239517/bull-of-the-day-li-auto-li',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/default_article_images/default12.jpg',\n",
+ " 'description': \"Li Auto is witnessing expanded EPS and margins due to its innovative extended-range electric vehicles (EREVs). Despite challenges in China's equity market, LI remains resilient, with solid demand and plans for significant delivery increases.\"},\n",
+ " {'id': 'T5T6Nour-Zv9Guv0sH_luT6hb3OE79Bl-XhN_S9BfYE',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'Top Research Reports for Novo Nordisk, Tesla & Airbnb',\n",
+ " 'author': 'Mark Vickery',\n",
+ " 'published_utc': '2024-03-12T21:58:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/research-daily/2239296/top-research-reports-for-novo-nordisk-tesla-airbnb',\n",
+ " 'tickers': ['SLB', 'NVO', 'OKE', 'TSLA', 'CDW', 'ABNB'],\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/articles/main/c8/39674.jpg',\n",
+ " 'description': \"Today's Research Daily features new research reports on 16 major stocks, including Novo Nordisk A/S (NVO), Tesla, Inc. (TSLA) and Airbnb, Inc. (ABNB).\"},\n",
+ " {'id': 't5TgP3ZI5JaquElpt0Vnhw5JhUBkORkwhuMGoKm2iXY',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'AXS 2X Innovation ETF (TARK) Looks To Break Up From Technical Pattern As Coinbase Continues To Surge Higher',\n",
+ " 'author': 'Melanie Schaffer',\n",
+ " 'published_utc': '2024-03-12T19:34:23Z',\n",
+ " 'article_url': 'https://www.benzinga.com/trading-ideas/long-ideas/24/03/37632416/axs-2x-innovation-etf-tark-looks-to-break-up-from-technical-pattern-as-coinbase-continue',\n",
+ " 'tickers': ['COIN', 'TSLA', 'ARKK', 'ROKU', 'SARK', 'TARK'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/37632416',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2024/03/12/scott-graham-5fnmwej4taa-unsplash.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': \"AXS 2X Innovation ETF (NASDAQ: TARK) was trading slightly lower Tuesday, working its way mostly sideways within a large symmetrical triangle pattern.\\nTARK is an actively managed double-leveraged ETF aiming to return 200% of the daily performance of Cathie Wood-led ARK Innovation ETF (NYSE: ARKK).\\nARKK, and subsequently TARK, have been buoyed recently by the Bitcoin rally because Coinbase Global, Inc (NASDAQ: COIN) is the largest holding within Wood’s ARKK fund, weighted at 10.91%.\\nCoinbase’s strong 124% rally between Feb. 7 and Tuesday has helped hold ARKK and TARK within a consolidation pattern while ARKK’s other two top holdings, Tesla, Inc (NASDAQ: TSLA) and Roku, Inc (NASDAQ: ROKU) have underperformed this year, falling about 30% each since trading started on Jan. 2.\\nRead Next:\\xa0Even As Bitcoin Charts New All-Time Highs, Cathie Wood's Ark Invest Keeps Selling Coinbase Shares ...Full story available on Benzinga.com\",\n",
+ " 'keywords': ['Long Ideas',\n",
+ " 'Short Ideas',\n",
+ " 'Specialty ETFs',\n",
+ " 'Technicals',\n",
+ " 'Trading Ideas',\n",
+ " 'ETFs']},\n",
+ " {'id': 'mYa6mtmdGONlaPW9pxfyPUkCkAWm4sw_HA61U6C_1pk',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Rivian Designs 'Beautiful Products' But Needs To Prove It Can Produce Vehicles Profitably, Analyst Says\",\n",
+ " 'author': 'Adam Eckert',\n",
+ " 'published_utc': '2024-03-12T17:48:02Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/24/03/37629857/rivian-designs-beautiful-products-but-needs-to-prove-it-can-produce-vehicles-profit',\n",
+ " 'tickers': ['TSLA', 'RIVN'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/37629857',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2024/Rivian-R2-Teaser_4.png?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Rivian Automotive Inc (NASDAQ:RIVN) held its R2/R3 launch event last week and shares raced higher as key strategy changes were received well by investors. Here’s a look at RBC Capital’s main takeaways from the launch.\\nWhat To Know: Following the Rivian event last week, RBC Capital analyst Tom Narayan reiterated Rivian with a Sector Perform rating and price target of $15.\\nRivian will offer two battery sizes with the R2 platform. The larger battery will offer more than 300 miles of range and RBC expects the smaller battery and lower-priced vehicle to have a range of about 250 miles.\\nThe EV maker plans to shift production of the R2 to its Normal, Illinois facility — where the R1 is produced — instead of using its Georgia facility, where the R3 will be produced. The company believes it will save $2.25 ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['News',\n",
+ " 'Analyst Color',\n",
+ " 'Price Target',\n",
+ " 'Top Stories',\n",
+ " 'General']},\n",
+ " {'id': 'iKG3TB9ZAZ18u2mgynVUAjRnnyLIJaM-XEPz0hp1fB0',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Tesla’s stock chart sends warning to bears that momentum may have bottomed',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2024-03-12T17:41:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/teslas-stock-chart-sends-warning-to-bears-that-momentum-may-have-bottomed-2dfc9cff',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/teslas-stock-chart-sends-warning-to-bears-that-momentum-may-have-bottomed-2dfc9cff',\n",
+ " 'image_url': 'https://images.mktw.net/im-96973314/social',\n",
+ " 'description': 'Tesla Inc. bears beware: The electric-vehicle giant’s stock has bounced sharply off a 10-month low at a time the charts have been warning that momentum may have already bottomed.'},\n",
+ " {'id': 'mGAhpaQbzNl71uQ9jQQolhM8YZC3p-QRclfgRnw21TM',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Tesla’s Autopilot, other driver-assistance systems get poor ratings from auto-insurance group',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2024-03-12T17:23:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/teslas-autopilot-other-driver-assistance-systems-get-poor-ratings-from-auto-insurance-group-05551b52',\n",
+ " 'tickers': ['TSLA', 'F', 'GM', 'TM'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/teslas-autopilot-other-driver-assistance-systems-get-poor-ratings-from-auto-insurance-group-05551b52',\n",
+ " 'image_url': 'https://images.mktw.net/im-30133071/social',\n",
+ " 'description': 'The Insurance Institute for Highway Safety found that there was “little evidence” driver-assistance systems are making driving any safer.'},\n",
+ " {'id': '0MVSg3LzzULdtEeomJxoj3LzjxwmSQDrc9mHZaPXkZ4',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'The Magnificent Three: Unveiling the Top Performers Among Tech Titans',\n",
+ " 'author': 'Ethan Feller',\n",
+ " 'published_utc': '2024-03-12T16:52:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/commentary/2239459/the-magnificent-three-unveiling-the-top-performers-among-tech-titans',\n",
+ " 'tickers': ['AMZN', 'AAPL', 'MSFT', 'NVDA', 'TSLA', 'GOOGL', 'META'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/commentary/2239459/the-magnificent-three-unveiling-the-top-performers-among-tech-titans',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/articles/main/01/36484.jpg',\n",
+ " 'description': 'Among the magnificent seven, three stocks are truly standouts'},\n",
+ " {'id': 'JzVBMLNnW9l8luFS6fM9pti1AWukcPHrfQGJQ45oMdQ',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'No more free lunches: How laid-off tech workers are surviving a tight job market',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2024-03-12T16:18:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/no-more-free-lunches-how-laid-off-tech-workers-are-surviving-a-tight-job-market-286ffcf3',\n",
+ " 'tickers': ['GOOGL', 'GOOG', 'META', 'CRM', 'EBAY', 'AMZN', 'TSLA', 'DASH'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/no-more-free-lunches-how-laid-off-tech-workers-are-surviving-a-tight-job-market-286ffcf3',\n",
+ " 'image_url': 'https://images.mktw.net/im-20929908/social',\n",
+ " 'description': 'Being a tech employee, especially in Silicon Valley, has rarely been more perilous.'},\n",
+ " {'id': 'czO4pHRHtV9LMLF8LB5-bMHb633CdXLzz8ejRMM9eRo',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Inflation Hotter Than Expected – Momo Buys The Bad News, JP Morgan CEO Says Recession Not 'Off The Table'\",\n",
+ " 'author': 'The Arora Report',\n",
+ " 'published_utc': '2024-03-12T15:00:04Z',\n",
+ " 'article_url': 'https://www.benzinga.com/economics/24/03/37623349/inflation-hotter-than-expected-momo-buys-the-bad-news-jp-morgan-ceo-says-recession-not-off-the-table',\n",
+ " 'tickers': ['GLD',\n",
+ " 'SLV',\n",
+ " 'SPY',\n",
+ " 'USO',\n",
+ " 'AMZN',\n",
+ " 'GOOG',\n",
+ " 'MSFT',\n",
+ " 'NVDA',\n",
+ " 'JPM',\n",
+ " 'AAPL',\n",
+ " 'TSLA',\n",
+ " 'QQQ',\n",
+ " 'META'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/37623349',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/adam-smigielski-k5mptonmphm-unsplash_23.jpg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'To gain an edge, this is what you need to know today.\\n\\nHotter Inflation\\xa0\\nPlease click here for an enlarged version of the chart of\\xa0SPDR S&P 500 ETF Trust (ARCA:SPY) which represents the benchmark stock market index S&P 500 (SPX).\\nNote the following:\\n\\nThe chart shows that the stock market is hovering above the trendline.\\nThe chart shows when the Consumer Price Index (CPI) was last reported, the stock market fell as CPI was hotter than expected.\\nThe difference between when CPI was reported last time as shown on the chart and the CPI release this time is that stock market euphoria has significantly expanded.\\xa0\\xa0\\nThe chart shows that the stock market is rising after the CPI report today.\\nCPI came hotter than expected.\\xa0Here are the details:\\n\\nHeadline CPI came at 0.4% vs. 0.3% consensus and 0.2% whisper number.\\nCore CPI came at 0.4% vs. 0.3% consensus and 0.2% whisper number.\\n\\n\\nOn a micro level, the stock market quickly dipped after the release of the hotter than expected CPI, but then the momo crowd stepped in to aggressively buy the dip.\\nIf the stock market was in a rational phase, it would have seen a big drop today on the hotter than expected CPI. However, the stock market is in a euphoric phase.\\xa0In a euphoric phase, bad news is good news, and good news is great news.\\xa0A characteristic of the euphoric phase is that all news is bought, irrespective of what it is.\\xa0\\xa0\\nMomo gurus have a new highly flawed narrative to persuade their followers to buy stocks.\\xa0The narrative is that year-over-year inflation came at 3.2% vs. 3.1% consensus.\\nAs we have shared with you several times along the way, looking solely at year-over-year is like driving while looking only in the rearview mirror.\\xa0Investors should look at month-over-month for the last three months – this is like looking through the windshield.\\xa0Investors should also look at year-over-year, but that is like looking through the ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['Economics', 'Markets', 'General']},\n",
+ " {'id': 'OO6VjupsIhlv8W0HW2T99p5OTZIq2Jyc24Ecu42v_II',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Coinbase Hits 3-Year High: Cathie Wood's Top Pick Surges As Bitcoin Rockets Past $72,000\",\n",
+ " 'author': 'Johnny Rice',\n",
+ " 'published_utc': '2024-03-12T14:10:28Z',\n",
+ " 'article_url': 'https://www.benzinga.com/trading-ideas/long-ideas/24/03/37621417/coinbase-hits-3-year-high-cathie-woods-top-pick-surges-as-bitcoin-rockets-past-72-000',\n",
+ " 'tickers': ['COIN', 'TSLA', 'ARKK', 'ROKU', 'SARK', 'TARK', 'ARKB'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/37621417',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2024/Screenshot-2024-03-12-at-7-34-57-PM.png?width=1200&height=800&fit=crop',\n",
+ " 'description': \"The Bitcoin (Crypto: BTC) bull rally is in full swing as the cryptocurrency reaches another all-time high. Bitcoin popped on Monday, rising roughly 5% to settle above $72,300 just days after smashing 2021's peak.\\nAmid the renewed excitement around crypto, Coinbase (NASDAQ:COIN) has seen its shares recover to a level not seen since the exchange went public in 2021. Since the company smashed expectations in its February earnings report, COIN is up nearly 60%.\\nThe stock had been hammered after the 2021 bull market cooled off. It was down over 90% from its peak at one point. But as the company cut costs and worked to increase revenues, the stock has recovered.\\nThe recent change in fortunes ...Full story available on Benzinga.com\",\n",
+ " 'keywords': ['Long Ideas', 'Short Ideas', 'Trading Ideas', 'ETFs']},\n",
+ " {'id': 'CA0_yF2zDhaojrCXNnnI_DzXnkH2T7k0lPAFifIjYiQ',\n",
+ " 'publisher': {'name': 'MarketWatch',\n",
+ " 'homepage_url': 'https://www.marketwatch.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/marketwatch.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/marketwatch.ico'},\n",
+ " 'title': 'Illegal immigration is giving Fed more scope to let economy run hot, researchers say.',\n",
+ " 'author': 'MarketWatch',\n",
+ " 'published_utc': '2024-03-12T13:13:00Z',\n",
+ " 'article_url': 'https://www.marketwatch.com/story/why-the-fed-has-more-scope-to-let-the-economy-and-job-growth-run-hot-b710f221',\n",
+ " 'tickers': ['ORCL',\n",
+ " 'LUV',\n",
+ " 'AAL',\n",
+ " 'ACAD',\n",
+ " 'TSLA',\n",
+ " 'BA',\n",
+ " 'NVDA',\n",
+ " 'TSM',\n",
+ " 'NIO',\n",
+ " 'AAPL',\n",
+ " 'MARA',\n",
+ " 'SMCI',\n",
+ " 'GME',\n",
+ " 'PLTR'],\n",
+ " 'amp_url': 'https://www.marketwatch.com/amp/story/why-the-fed-has-more-scope-to-let-the-economy-and-job-growth-run-hot-b710f221',\n",
+ " 'image_url': 'https://images.mktw.net/im-61468606/social',\n",
+ " 'description': 'Some more academic heft is coming to the view that illegal immigration may be the surprise factor that’s keeping the economy running strong yet allowing inflation to cool down.'},\n",
+ " {'id': 'TzVrq6Onc9wJVdUBsmLVx-nSV3IB88AHmnRVrpF9gZc',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': \"Nvidia Has Added $1 Trillion to Its Market Cap in 50 Days. Here's Why Its Growth Isn't Done.\",\n",
+ " 'author': 'newsfeedback@fool.com (Adam Spatacco)',\n",
+ " 'published_utc': '2024-03-12T11:05:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2024/03/12/nvidia-has-added-1-trillion-to-its-market-cap-in-5/',\n",
+ " 'tickers': ['NVDA',\n",
+ " 'MSFT',\n",
+ " 'GOOGL',\n",
+ " 'AAPL',\n",
+ " 'TSLA',\n",
+ " 'AMZN',\n",
+ " 'INTC',\n",
+ " 'GOOG',\n",
+ " 'SOUN'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/768623/gettyimages-1751833779.jpg',\n",
+ " 'description': \"Nvidia is on a roll, surpassing Amazon and Alphabet in market cap. With a $2 trillion valuation, what's next for the AI company?\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': '0UOHM-WsDYV40YayZ2skvIelxHZMJn5K9pVCvsi1F8E',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'Pain or Gain Ahead of Electric Vehicle ETFs?',\n",
+ " 'author': 'Sanghamitra Saha',\n",
+ " 'published_utc': '2024-03-12T11:00:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/2239034/pain-or-gain-ahead-of-electric-vehicle-etfs',\n",
+ " 'tickers': ['F', 'DRIV', 'GM', 'TSLA', 'CARZ', 'KARS', 'IDRV'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/2239034/pain-or-gain-ahead-of-electric-vehicle-etfs',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/articles/main/1b/532.jpg',\n",
+ " 'description': 'The EV industry in 2024 is poised at a critical juncture, with growth opportunities tempered by economic and technological challenges. However, the slowing momentum should gain traction in the medium term.'},\n",
+ " {'id': '7TjDmTqMHmqG7Q80jf6iwm6yz7RuksAK2bD_aO8Z2TE',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Tesla Analyst Lists 3 Things That Need To Happen For 'Stock To Really Get Its Legs' Amid 'Pause-Period'\",\n",
+ " 'author': 'Anan Ashraf',\n",
+ " 'published_utc': '2024-03-12T10:45:11Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/24/03/37611382/tesla-analyst-lists-3-things-that-need-to-happen-for-stock-to-really-get-its-legs-a',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/37611382',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2024/Tesla-stock_11.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Canaccord Genuity\\xa0analyst\\xa0George Gianarikas\\xa0considers\\xa0Tesla Inc\\xa0(NASDAQ:TSLA) shares a solid buy despite the current slump in price. The analyst is optimistic about the\\xa0electric vehicle giant’s growth potential\\xa0in three key areas, expecting a rebound in the stock.\\nWhat Happened:\\xa0Gianarikas attributes the stock’s current lag to the company’s dismal earnings revisions over the past 12-plus months.\\xa0\\n“I think we’re at a period of time right now where the worries likely exceed the reality,” the analyst stated in an\\xa0interview\\xa0with Yahoo Finance.\\nAccording to Gianarikas, a reliable measure of Tesla’s performance is its vehicle prices, which have remained relatively stable in the U.S. over recent months.\\nGianarikas currently sets a price target of over $230 for Tesla shares, banking ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['News', 'Analyst Color', 'Top Stories', 'Tech', 'Media']},\n",
+ " {'id': 'jWVYRv_SEw7Kzh7aNfohFHZEkNcWFiStw8NTi0SxsZU',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': '4 Top Growth Stocks to Buy in April',\n",
+ " 'author': 'newsfeedback@fool.com (Neil Rozenbaum)',\n",
+ " 'published_utc': '2024-04-01T20:19:09Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2024/04/01/4-top-growth-stocks-to-buy-in-april/',\n",
+ " 'tickers': ['SOFI', 'TSLA', 'DELL', 'RKLB'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/771417/gettyimages-1304459914-2.jpg',\n",
+ " 'description': 'Here are four stocks to buy now that could offer investors upside in the short and long term.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': '5K4S3ftJ6CfFb2cvjvcQq0HmJF44j7vKigzkB1fK4j4',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Tesla Stock Has 27% Downside, According to 1 Wall Street Analyst',\n",
+ " 'author': 'newsfeedback@fool.com (John Ballard)',\n",
+ " 'published_utc': '2024-04-01T20:15:10Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2024/04/01/tesla-stock-27-downside-wall-street-analyst/',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/771444/wall-street-investor.jpg',\n",
+ " 'description': 'A lack of near-term catalysts may weigh on the stock this year.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'qO0UyzyrqcvF-lkAd-r8ud0FV9gn_08nb6AMGcauB6U',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Tesla Sentiment Is Reaching a Tipping Point',\n",
+ " 'author': 'newsfeedback@fool.com (Neil Rozenbaum)',\n",
+ " 'published_utc': '2024-04-01T20:11:40Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2024/04/01/tesla-sentiment-is-reaching-a-tipping-point/',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/771416/tesla-building-with-tesla-logo-and-two-teslas-in-front.png',\n",
+ " 'description': \"Here's everything you need to know about the electric vehicle maker's week.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'G8S9arkwvL2VeC7m7HqlYWoLlIWxCPrdXevtdS2p-xo',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': \"Tesla's Strides in This Game-Changing Technology Make the Stock a Magnificent Buy\",\n",
+ " 'author': 'newsfeedback@fool.com (Justin Pope)',\n",
+ " 'published_utc': '2024-04-01T18:49:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2024/04/01/teslas-strides-in-this-game-changing-technology-ma/',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/770919/two-teslas-in-a-line-driving-on-road-2.png',\n",
+ " 'description': 'Tesla claims its full self-driving technology can drive you almost anywhere...with a caveat.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'VYmGPwCkLqGQyBnbtSamff7QNhDcWK3HA7AG3uw_ky8',\n",
+ " 'publisher': {'name': 'Seeking Alpha',\n",
+ " 'homepage_url': 'https://seekingalpha.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/seekingalpha.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/seekingalpha.ico'},\n",
+ " 'title': 'Tesla Stock: No Longer An Obvious Sell',\n",
+ " 'author': 'A.J. Button',\n",
+ " 'published_utc': '2024-04-01T18:34:01Z',\n",
+ " 'article_url': 'https://seekingalpha.com/article/4681554-tesla-stock-no-longer-an-obvious-sell',\n",
+ " 'tickers': ['BYDDF',\n",
+ " 'BYDDY',\n",
+ " 'VWAGY',\n",
+ " 'NVDA',\n",
+ " 'GM',\n",
+ " 'F',\n",
+ " 'VWAPY',\n",
+ " 'VLKAF',\n",
+ " 'TSLA'],\n",
+ " 'image_url': 'https://static.seekingalpha.com/cdn/s3/uploads/getty_images/1311107789/image_1311107789.jpg?io=getty-c-w1536',\n",
+ " 'description': 'If FSD can achieve mass release, then it will give Tesla a major differentiator. Find out why shorts are taking more risks than longs on the TSLA stock today.'},\n",
+ " {'id': 'kGRCMeTPFQ2YY1BxHXSahue74__I3Kr3AeyJORCT9kw',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"As Tesla, Apple Falter, These Remaining 'Fab Four' From The Mag 7 Lot Are 'Still Holding Up' The Market\",\n",
+ " 'author': 'Benzinga Neuro',\n",
+ " 'published_utc': '2024-04-01T14:56:37Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/24/04/38024879/as-tesla-apple-falter-these-remaining-fab-four-from-the-mag-7-lot-are-still-holding',\n",
+ " 'tickers': ['AAPL', 'AMZN', 'MSFT', 'NVDA', 'TSLA', 'META'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/38024879',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2024/Magnificent7-Shutterstock_7.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'The stock market has defied expectations with a robust surge, even as industry heavyweights like Apple Inc. (NASDAQ:AAPL) and Tesla Inc. (NASDAQ:TSLA) experience notable downturns in their share prices.\\nWhat Happened: The S&P 500 has delivered its strongest first quarter since 2019, despite an 11% drop in Apple’s shares and a nearly 30% fall in Tesla’s stock. A report from The Wall Street Journal highlights the emergence of a new tech quartet, consisting of Nvidia (NASDAQ:NVDA), Meta Platforms (NASDAQ:META), Microsoft (NASDAQ:MSFT), and Amazon.com (NASDAQ:AMZN), which has been pivotal in driving the broader market’s performance.\\nInvestor sentiment is buoyed by hopes that the economy may skirt a severe recession and anticipations of potential interest rate cuts by the Federal Reserve. The burgeoning excitement around artificial intelligence technologies has also played a role in bolstering market optimism.\\n\"The fact that the market is still holding these levels and trading up without that full force of the Magnificent Seven is actually a really positive thing,\" said Joseph Ferrara, investment strategist at Gateway Investment Advisers. \\nHowever, some market participants are cautious, viewing the divergence in big tech stock performance as a possible sign of a rally nearing its end. Despite these concerns, ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['News', 'Analyst Color', 'Equities', 'Markets', 'General']},\n",
+ " {'id': 'l4wg0M_OqvWA11Qmuj3OlGGQ1fApUFnsKrmX1nWGibE',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Nvidia Leads, Tesla Lags Among Magnificent Seven Stocks: Q1 Market Shake-Up',\n",
+ " 'author': 'Surbhi Jain',\n",
+ " 'published_utc': '2024-04-01T13:50:19Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/24/04/38023142/nvidia-leads-tesla-lags-among-magnificent-seven-stocks-q1-market-shake-up',\n",
+ " 'tickers': ['AAPL', 'AMZN', 'GOOG', 'MSFT', 'NVDA', 'TSLA', 'GOOGL', 'META'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/38023142',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2024/nvidia-ai5_0.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Among the so-called Magnificent Seven technology companies, Nvidia Corp (NASDAQ:NVDA) and Tesla Inc (NASDAQ:TSLA) have emerged as standout performers, albeit in contrasting directions. \\nWhat Happened: Apple Inc (NASDAQ:AAPL) and Tesla suffered double-digit declines in the first three months of the year, according to the Wall Street Journal. \\nThe other Mag7 stocks include Nvidia, Microsoft Corp (NASDAQ:MSFT), Alphabet Inc (NASDAQ:GOOGL) (NASDAQ:GOOG), Amazon.com Inc (NASDAQ:AMZN) and Meta Platforms Inc (NASDAQ:META).\\nAmong these companies, Nvidia’s stock has soared the highest, spiking 85% over the first quarter this year. Tesla’s stock, meanwhile, has struggled to maintain momentum, marking a notable shift in market dynamics. It’s down 20%.\\n\\nChart: Benzinga Pro\\nNvidia, known for its graphics processing units (GPUs) and artificial intelligence (AI) technologies, saw its stock rise by 245% in 2023. Shares continued their ascent in 2024. Nvidia’s stock is up about 85% YTD. \\nAlso Read: Nvidia Captures 92% of Data Center GPU Market, Underlining US Leadership in Generative AI\\nWith its stock posting impressive returns, Nvidia has solidified its position as a frontrunner among the Magnificent Seven. The stellar performance of Nvidia’s stock can be attributed to several key factors:\\n\\nGenerative AI adoption: The widespread adoption of generative AI, particularly in applications like ChatGPT, sparked ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['Long Ideas',\n",
+ " 'Analyst Color',\n",
+ " 'Top Stories',\n",
+ " 'Analyst Ratings',\n",
+ " 'Tech',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': 'ms6wjj_gcAAkPJcT8Etrsf1zMA0fXcgZK050kzbazG8',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'US Stocks Set To Start Fresh Week On Positive Note As Traders Take Inflation Data In Their Stride: Analyst Explains Why Rally Will Likely Extend Through 2024',\n",
+ " 'author': 'Shanthi Rexaline',\n",
+ " 'published_utc': '2024-04-01T11:50:50Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/earnings/24/04/38019828/us-stocks-set-to-start-fresh-week-on-positive-note-as-traders-take-inflation-data-in-their-stride-a',\n",
+ " 'tickers': ['SPY', 'PVH', 'TSLA', 'QQQ', 'LI', 'NIO', 'XPEV'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/38019828',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2024/Congress-Markets-Shutterstock_0.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': \"U.S. stock futures point to a higher opening on Monday as the market reopens after a long weekend. The price consumption expenditure index released Friday showed that the Federal Reserve’s preferred inflation gauge rose in line with expectations. Although Fed Chair Powell said on Friday that the central bank wasn’t in a hurry to cut rates, the market has begun discounting downward rate adjustments, beginning in June. \\nCommenting on the data, Jeffery Roach, chief economist at LPL Financial said, “The trajectory for consumer spending is weakening, especially since real disposable incomes declined in February. Core services inflation is slowing and will likely continue throughout the year.”\\n“By the time the Fed meets in June, the data should be convincing enough for them to commence it's rate normalization process.”\\nCues From Previous Week\\nU.S. stocks closed the holiday-shortened week ended March 28 on a mixed note, with the tech stocks reporting modest losses for the week, while the broader S&P 500 Index and the Dow Industrials recorded gains. The latter two ended at fresh record highs.\\nAfter starting the previous week on a weak note amid profit-taking after the Fed meeting, stocks showed lackluster sentiment yet again on Tuesday. On Wednesday, they snapped a three-session losing streak and advanced solidly before ending the final trading session on a mixed note.\\n\\n\\n\\n\\nIndex\\nWeek’s Performance (+/-)\\nQuarterly Performance (+/-)\\nValue\\n\\n\\nNasdaq Composite\\n-0.30%\\n+9.11%\\n16,379.46\\n\\n\\nS&P 500 Index\\n+0.39%\\n+10.16%\\n5,254.35\\n\\n\\nDow Industrials\\n+0.84%\\n+5.62%\\n39,807.37\\n\\n\\nRussell 2000\\n+2.54%\\n+4.80%\\n2,124.55\\n\\n\\n\\n\\nInsights From Analysts:\\nCarson Group’s Ryan Detrick pointed to data that suggests the market’s upward momentum could continue this year. He noted that since 1950, the S&P 500 Index closed the first quarter higher than the December lows in 37 years, while in the remaining 37 years, it didn’t. If the December low wasn’t violated, the market was higher 95% of the time the average gain has been 18.8%, ...Full story available on Benzinga.com\",\n",
+ " 'keywords': ['News',\n",
+ " 'Earnings',\n",
+ " 'Equities',\n",
+ " 'Futures',\n",
+ " 'Previews',\n",
+ " 'Top Stories',\n",
+ " 'Economics',\n",
+ " 'Federal Reserve',\n",
+ " 'Pre-Market Outlook',\n",
+ " 'Markets',\n",
+ " 'Movers',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': 'oeRDn5RkLIip8Llp6KRPLxIlpKvV4rj2s0rs9WnrG-0',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'Zacks Value Investor Highlights: Paolo Alto, Lululemon, Tesla, Nike and Starbucks',\n",
+ " 'author': 'Zacks Equity Research',\n",
+ " 'published_utc': '2024-04-01T10:19:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/2248111/zacks-value-investor-highlights-paolo-alto-lululemon-tesla-nike-and-starbucks',\n",
+ " 'tickers': ['NKE', 'SBUX', 'LULU', 'TSLA', 'PANW'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/2248111/zacks-value-investor-highlights-paolo-alto-lululemon-tesla-nike-and-starbucks',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/articles/main/b9/441.jpg',\n",
+ " 'description': 'Paolo Alto, Lululemon, Tesla, Nike and Starbucks have been highlighted in this Value Investor article.'},\n",
+ " {'id': '5HjG3Bek9qFDiGJGpYIaUQCN37pT3ioLfW0srjBJ0_E',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Tesla Bull Anticipates Lower Q1 Volume, But Does Not Rule Out Stock Rally If This Happens',\n",
+ " 'author': 'Shanthi Rexaline',\n",
+ " 'published_utc': '2024-04-01T09:52:01Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/24/04/38017649/tesla-bull-anticipates-lower-q1-volume-but-does-not-rule-out-stock-rally-if-this-ha',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/38017649',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2024/Tesla-stock_19.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'As Tesla, Inc. NASDAQ: TSLA) prepares to release its first-quarter deliveries, expectations remain very muted. A fund manager, who is bullish on the electric vehicle maker, said on Sunday that he was bracing for a very weak number.\\nWhat Happened: Future Fund‘s Gary Black noted that number cruncher Troy Teslike estimated first-quarter deliveries of 409,000 units for Tesla, down from the year-ago number of 423,000 units. The fund manager said this could be Tesla’s first year-over-year sales decline since the COVID-19 in 2020. The predicament is despite the 15-20% price cuts, a $7,500 up-front EV credit and Cybertruck’s halo effect. \\n\\n\\nWith @TroyTeslike 1Q delivs est at 409K vs 423K YoY, this could be Full story available on Benzinga.com',\n",
+ " 'keywords': ['News',\n",
+ " 'Analyst Color',\n",
+ " 'Equities',\n",
+ " 'Previews',\n",
+ " 'Top Stories',\n",
+ " 'Tech']},\n",
+ " {'id': 'KE36nFQiLJ1ShPHI2vod0epz9aykpwolRuChgaPpI00',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Here\\'s the Best \"Magnificent Seven\" Stock to Buy in April, According to Wall Street',\n",
+ " 'author': 'newsfeedback@fool.com (Keith Speights)',\n",
+ " 'published_utc': '2024-04-01T09:50:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2024/04/01/best-magnificent-seven-stock-buy-april-wall-street/',\n",
+ " 'tickers': ['AAPL', 'MSFT', 'GOOGL', 'AMZN', 'NVDA', 'META', 'TSLA', 'GOOG'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/771107/wall-street-young-man-with-laptop.jpg',\n",
+ " 'description': 'You might be surprised which \"Magnificent Seven\" stock analysts like the most.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'yc0JyTV0WQqQaim10T04CqVlYufWom4aXTYaXOI5wjE',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': \"Cathie Wood's Ark Invest Has 14% of Its Portfolio Invested in 2 Growth Stocks\",\n",
+ " 'author': 'newsfeedback@fool.com (Trevor Jennewine)',\n",
+ " 'published_utc': '2024-04-01T09:35:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2024/04/01/cathie-wood-14-portfolio-invested-2-growth-stocks/',\n",
+ " 'tickers': ['TSLA', 'ARKK', 'COIN'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/771220/investor-4.jpg',\n",
+ " 'description': 'Ark Invest has allocated a substantial portion of its portfolio to Tesla and Coinbase Global.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'sWAZ1lZ08hDC3F9CF2D7UfidC9Dt6HmrughOej-dmJ8',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'Bull of the Day: Ford Motor (F)',\n",
+ " 'author': 'Shaun Pruitt',\n",
+ " 'published_utc': '2024-04-01T08:00:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/commentary/2247790/bull-of-the-day-ford-motor-f',\n",
+ " 'tickers': ['F', 'GM', 'TSLA'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/commentary/2247790/bull-of-the-day-ford-motor-f',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/default_article_images/default173.jpg',\n",
+ " 'description': \"The recent surge in Ford Motor's (F) stock may just be getting started considering its very attractive valuation and compelling EV expansion.\"},\n",
+ " {'id': 'TZKar5lQ5gERY6zD_wQ8hTkKmhq_WCI1UmFT8yXvYS8',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Down More Than 50%, This \"Magnificent Seven\" Stock Is a Screaming Buy',\n",
+ " 'author': 'newsfeedback@fool.com (RJ Fulton)',\n",
+ " 'published_utc': '2024-04-01T07:58:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2024/04/01/down-more-than-50-this-magnificent-seven-stock-is/',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/771004/tesla-car-at-super-charger-station.png',\n",
+ " 'description': 'Tesla presents a compelling opportunity for investors.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'x2Hc1F85oQz265Oo68WSBUVXHa6vQ3yU_mKSKOSQwH8',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"'Congrats Tesla Team,' Says Elon Musk As EV Giant Hits 6M Production Milestone: What Does It Mean For Q1 Deliveries?\",\n",
+ " 'author': 'Shanthi Rexaline',\n",
+ " 'published_utc': '2024-03-31T15:25:09Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/24/03/38015148/congrats-tesla-team-says-elon-musk-as-ev-giant-hits-6m-production-milestone-what-do',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/38015148',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2024/New-York--Usa--2--October-2022-Elon-Musk_1.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Tesla, Inc. (NASDAQ:TSLA) achieved a major production milestone and, on Friday, CEO Elon Musk appreciated the team for the accomplishment. More importantly, the milestone prompted a Tesla number cruncher to revisit his estimates for first-quarter deliveries.\\nWhat Happened: This week, Tesla produced its 6 millionth vehicle. The company took to its official X handle and said, “Produced our 6 millionth car! Thank you to our owners & teams around the world for your support & hard work—it truly matters.”\\nTesla boss Musk reshared the post and said, “Congrats Tesla Team!”\\n\\n\\nCongrats Tesla Team! https://t.co/tWR4z6CBaP\\n— Elon Musk (@elonmusk) March 29, 2024\\n\\nThe following day, Bloomberg columnist Jon Erlichman noted on X that it took Tesla 12 years to build its first 1 million cars and merely four years to build the next 5 million vehicles.\\n\\n\\nFull story available on Benzinga.com',\n",
+ " 'keywords': ['News', 'Analyst Color', 'Equities', 'Top Stories']},\n",
+ " {'id': 'cUWWnriUfjaekF2VKqZr9Bzq4RG4_6bT_X1OUIBs_zA',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Can Tesla Stock Reach $1,000 by 2030?',\n",
+ " 'author': 'newsfeedback@fool.com (Neil Patel)',\n",
+ " 'published_utc': '2024-03-31T13:27:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2024/03/31/can-tesla-stock-reach-1000-by-2030/',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/770933/group-of-tesla-super-chargers-with-logo-in-view.png',\n",
+ " 'description': 'Bullish Tesla supporters are ready for the monster gains to continue.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': '3MO9AYvp4WiKtKvviCAObGDJGQPhxSaLx9oUC7U3m7I',\n",
+ " 'publisher': {'name': 'Seeking Alpha',\n",
+ " 'homepage_url': 'https://seekingalpha.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/seekingalpha.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/seekingalpha.ico'},\n",
+ " 'title': 'Wall Street Breakfast: The Week Ahead',\n",
+ " 'author': 'Wall Street Breakfast',\n",
+ " 'published_utc': '2024-03-31T11:38:40Z',\n",
+ " 'article_url': 'https://seekingalpha.com/article/4681350-wall-street-breakfast-week-ahead',\n",
+ " 'tickers': ['LEVI',\n",
+ " 'BB',\n",
+ " 'TSLA',\n",
+ " 'DIS',\n",
+ " 'PVH',\n",
+ " 'CALM',\n",
+ " 'PAYX',\n",
+ " 'PLAY',\n",
+ " 'AYI',\n",
+ " 'SPWH',\n",
+ " 'LW',\n",
+ " 'LNN',\n",
+ " 'CAG',\n",
+ " 'GBX',\n",
+ " 'DJT',\n",
+ " 'EME',\n",
+ " 'KLG',\n",
+ " 'PEGR',\n",
+ " 'SIRI',\n",
+ " 'ZVIA',\n",
+ " 'RYDE',\n",
+ " 'LGCL',\n",
+ " 'SYT',\n",
+ " 'SFWL',\n",
+ " 'RDDT',\n",
+ " 'BDTX',\n",
+ " 'ILMN',\n",
+ " 'NEO',\n",
+ " 'CARM'],\n",
+ " 'image_url': 'https://static.seekingalpha.com/cdn/s3/uploads/getty_images/1397127580/image_1397127580.jpg?io=getty-c-w1536',\n",
+ " 'description': 'Stay informed with the latest financial news and updates.'},\n",
+ " {'id': '49DhA9LxzaJBxU_idALR0czpadS1OPyQvK9nPn3BTFc',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': \"Some Skeptics Say Crypto Is Too Expensive. I Disagree, and Here's Why.\",\n",
+ " 'author': 'newsfeedback@fool.com (Dominic Basulto)',\n",
+ " 'published_utc': '2024-03-31T11:30:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2024/03/31/some-skeptics-say-crypto-is-too-expensive-i-disagr/',\n",
+ " 'tickers': ['TSLA', 'FBTC', 'IBIT'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/771158/gettyimages-1059102594.jpg',\n",
+ " 'description': \"If you're suffering from Bitcoin sticker shock, here's what you need to know.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'msmZ67CSwQwEMaeVQ_k7SbVrPkTj6XWV5ZCM0qnTiLA',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Here\\'s How Much Dividend Income You\\'d Make by Investing $70,000 in the \"Magnificent Seven\" Stocks',\n",
+ " 'author': 'newsfeedback@fool.com (Keith Speights)',\n",
+ " 'published_utc': '2024-03-31T09:59:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2024/03/31/dividend-income-magnificent-seven-stocks/',\n",
+ " 'tickers': ['AAPL', 'MSFT', 'NVDA', 'META', 'GOOGL', 'TSLA', 'AMZN', 'GOOG'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/770999/dollar-sign-on-circuit-board.jpg',\n",
+ " 'description': \"Income investors won't find these seven stocks all that magnificent.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'xO-43N2wlt6lqWJa8HG52fGGYvEd0Oq177js1AC4o9g',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Are Nike, Lululemon, Apple, Tesla, and Starbucks Waving a Red Flag for the Stock Market?',\n",
+ " 'author': 'newsfeedback@fool.com (Daniel Foelber)',\n",
+ " 'published_utc': '2024-03-31T07:50:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2024/03/31/nike-lululemon-apple-tesla-starbucks-buy-stock/',\n",
+ " 'tickers': ['AAPL', 'NVDA', 'TSLA', 'SBUX', 'LULU', 'NKE'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/770771/gettyimages-1502885375-1201x773-5e40324.jpg',\n",
+ " 'description': 'The struggles of consumer-facing companies are going unnoticed due to broader market gains.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'Qwn6PYVbH8fG1XPAtNkXc9GSOUtVHhHtVJnnpXFBd70',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Better \"Magnificent Seven\" Stock: Apple or Tesla?',\n",
+ " 'author': 'newsfeedback@fool.com (John Ballard)',\n",
+ " 'published_utc': '2024-03-30T11:15:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2024/03/30/better-magnificent-seven-stock-apple-or-tesla/',\n",
+ " 'tickers': ['TSLA', 'AAPL', 'WMT', 'NKE', 'MAGS'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/770686/bull-vs-bear-market.png',\n",
+ " 'description': 'One of these stocks offers significantly higher return potential through the end of the decade.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'Vx08jswj1LRPiQXpsh5B7SxC4CYm6UzNPNKLkeNDr3U',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Forget Apple: I Think This Stock Should Replace It in the \"Magnificent Seven\"',\n",
+ " 'author': 'newsfeedback@fool.com (Anders Bylund)',\n",
+ " 'published_utc': '2024-03-30T11:09:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2024/03/30/can-this-stock-replace-apple-in-the-magnificent-7/',\n",
+ " 'tickers': ['COIN', 'AAPL', 'TSLA', 'BAC'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/770993/business-baton-handoff.jpg',\n",
+ " 'description': 'Wall Street\\'s unofficial list of \"it\" stocks might be due for an update. This contender might come as a surprise, but it surely belongs in the \"Magnificent Seven\" conversation.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'IWtO7mfbATS9PUwXVaHlgK75fYdVuyY3SAbyY3b0LPg',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Which \"Magnificent Seven\" Stocks Are Attracting More of the Big Money?',\n",
+ " 'author': 'newsfeedback@fool.com (Keith Speights)',\n",
+ " 'published_utc': '2024-03-30T09:48:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2024/03/30/which-magnificent-seven-stocks-are-attracting-more/',\n",
+ " 'tickers': ['AAPL', 'MSFT', 'GOOGL', 'AMZN', 'NVDA', 'META', 'TSLA', 'GOOG'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/770724/excited-investor-looks-at-financial-charts-on-computer.jpg',\n",
+ " 'description': 'Institutional investors like some of these megacap stocks more than others.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': '-BF9np7VKYjl5Zxu3KqUfOSFkxwiBNE6Eta6_yeeDFc',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'PCAR or TSLA: Which Is the Better Value Stock Right Now?',\n",
+ " 'author': 'Zacks Equity Research',\n",
+ " 'published_utc': '2024-03-29T15:40:09Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/2248000/pcar-or-tsla-which-is-the-better-value-stock-right-now',\n",
+ " 'tickers': ['PCAR', 'TSLA'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/2248000/pcar-or-tsla-which-is-the-better-value-stock-right-now',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/default_article_images/default26.jpg',\n",
+ " 'description': 'PCAR vs. TSLA: Which Stock Is the Better Value Option?'},\n",
+ " {'id': 'hHxMtMOpvOPlDTl8wuRyfdSnORmad3_CgYoWDuaiXsg',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Tesla Q1 Deliveries Preview: Analysts Cut Targets, 'Nightmare Quarter For Tesla'\",\n",
+ " 'author': 'Chris Katje',\n",
+ " 'published_utc': '2024-03-29T14:44:06Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/24/03/38005530/tesla-q1-deliveries-preview-analysts-cut-targets-nightmare-quarter-for-tesla',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/38005530',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2024/Riga--Lv---Aug-27--2019-Tesla-Logo-At-Th_1.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Editor’s Note: This story was corrected to reflect Troy Teslike’s latest first-quarter estimate. \\nElectric vehicle giant Tesla Inc (NASDAQ:TSLA) is expected to report first-quarter productions and delivery figures next week, which could show a sequential decline from the fourth quarter and a drop after a record-setting year.\\nHere are what analysts are expecting for Tesla in the first quarter.\\nQ1 Delivery Estimates: Citing concerns like electric vehicle demand, China and macroeconomic concerns, analysts have been cutting their first-quarter delivery estimates for Tesla.\\nWedbush analyst Daniel Ives recently cut his price target on Tesla from $315 to $300 and cut his estimate for first-quarter and full-year deliveries.\\n\"Let\\'s call it like it is: 1Q deliveries has been a nightmare quarter for Tesla as China demand remains very soft coming out of the gates for 2024,\" Ives said.\\nIves said Tesla\\'s first-quarter delivery numbers \"will not be a moment of celebration for the bulls.\"\\nHere are current first-quarter estimates from analysts and experts and what their previous estimates were in ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['Analyst Color',\n",
+ " 'Price Target',\n",
+ " 'Top Stories',\n",
+ " 'Analyst Ratings',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': 'SxBT2u-FMXVPrZdvWWqW42iJFZNdrl4YlGDe1VPViTg',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Are the \"Magnificent Seven\" Too Expensive to Buy?',\n",
+ " 'author': 'newsfeedback@fool.com (Keithen Drury)',\n",
+ " 'published_utc': '2024-03-29T11:15:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2024/03/29/are-the-magnificent-seven-too-expensive-to-buy/',\n",
+ " 'tickers': ['NVDA', 'AAPL', 'MSFT', 'GOOGL', 'AMZN', 'META', 'TSLA', 'GOOG'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/769793/celebrating-stock-market-success.jpg',\n",
+ " 'description': 'Some of the Magnificent Seven stocks have gotten ahead of themselves.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'DdPGkobyU_Vq4VK1WM-pIS8-QyCJVDJhQsC4sTpv4_s',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'The \"Magnificent Seven\" Stocks, Ranked From Best to Worst Performance Over Time',\n",
+ " 'author': 'newsfeedback@fool.com (Adria Cimino)',\n",
+ " 'published_utc': '2024-03-29T10:45:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2024/03/29/magnificent-seven-ranked-by-performance/',\n",
+ " 'tickers': ['NVDA', 'AAPL', 'MSFT', 'GOOGL', 'AMZN', 'META', 'TSLA', 'GOOG'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/770975/gettyimages-998452928.jpg',\n",
+ " 'description': 'These top tech stocks soared last year. But how have they performed over the long term?',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'VtkAf-vy-plA0zp9MJ8kuxh5Qt4ozDno790orN4hg68',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Tesla Stock Has 71% Upside, According to 1 Wall Street Analyst',\n",
+ " 'author': 'newsfeedback@fool.com (Danny Vena)',\n",
+ " 'published_utc': '2024-03-29T08:15:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2024/03/29/tesla-stock-67-upside-1-wall-street-analyst/',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/771018/tesla-model-y_07.jpg',\n",
+ " 'description': 'After a dismal performance so far in 2024, a $300 price target might seem like a stretch. Is the stock finally a buy?',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'r2hsNxbuczP9TkXbFOs4-0xHKifP2tQY1lAyT-S48l4',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Did Bitcoin, Gold Or S&P 500 Make You Richer This Quarter? What $1000 Invested In These Asset Classes Would've Returned\",\n",
+ " 'author': 'Shanthi Rexaline',\n",
+ " 'published_utc': '2024-03-29T06:24:23Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/24/03/38001174/bitcoin-vs-gold-vs-spy-which-asset-class-wouldve-given-best-returns-on-1000-investm',\n",
+ " 'tickers': ['TSLA',\n",
+ " 'CHTR',\n",
+ " 'ANET',\n",
+ " 'SPY',\n",
+ " 'ELF',\n",
+ " 'DECK',\n",
+ " 'OPRA',\n",
+ " 'MKTX',\n",
+ " 'MSFT',\n",
+ " 'META',\n",
+ " 'NVDA',\n",
+ " 'CRWD',\n",
+ " 'SMCI',\n",
+ " 'BA',\n",
+ " 'CEG',\n",
+ " 'HUM',\n",
+ " 'LLY',\n",
+ " 'MU',\n",
+ " 'NVO',\n",
+ " 'TOL',\n",
+ " 'FTNT'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/38001174',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2024/Bitcoin-Vs-Gold-Vs-Stock-Market_0.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'The first quarter of 2024 has turned out\\xa0to be a blockbuster\\xa0for most asset classes, and the strong performances have left investors worried about the sustainability of the uptrend.\\nHow long will the party last? What are the risks involved in investing in an overbought market? Benzinga collated views from analysts and economists to make sense of the rally so far and zero in on the opportunities that could pay off in the near to medium term.\\nEquity Market — From Shaky Start To Strong Surge:\\xa0The equity market kicked off the new year with a whimper, with concerns that 2023’s gains might not hold. However, the momentum from last year carried through, quashing skepticism and propelling the market to new highs.\\nThree months in, the S&P 500 Index has notched record highs for both closing and intraday trading. Blue-chip stocks mirrored this performance, with the Dow Jones Industrial Average closing the quarter at a fresh record. \\nTech stocks were once again at the forefront, fueled by the AI boom that spurred gains for companies of all sizes. However, the tech-heavy Nasdaq Composite couldn’t quite reach its record peak as valuation concerns prompted some profit-taking near the quarter’s end.\\n\\n Source: Benzinga \\nThe more heartening aspect of the recent rally is that, unlike in 2023 when it was nearly exclusively fueled by tech, this time around, the participation has broadened.\\xa0\\nLPL Financial‘s Chief Technical Strategist,\\xa0Adam Turnquist, said in a recent note that the strong uptrend in the S&P 500 Index is supported by broad participation and cyclical leadership. “Improving relative strength in industrials, financials, and materials provides additional evidence of a bullish rotation that has largely been overshadowed by mega-caps and AI enthusiasm,” he said.\\nSee Also:\\xa0Investing In Stocks For Beginners\\nAI optimism drove much of the upside early in the quarter, with stocks such as\\xa0Nvidia Corp. (NASDAQ:NVDA) and\\xa0Microsoft Corp. (NASDAQ:MSFT) — the ones at the forefront of the revolution — clocking strong gains for the year. In the latter half, stocks received support from the Fed leaning toward rate cuts.',\n",
+ " 'keywords': ['Long Ideas',\n",
+ " 'News',\n",
+ " 'Analyst Color',\n",
+ " 'Equities',\n",
+ " 'Short Sellers',\n",
+ " 'Cryptocurrency',\n",
+ " 'Education',\n",
+ " 'Commodities',\n",
+ " 'Top Stories',\n",
+ " 'Analyst Ratings',\n",
+ " 'Tech',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': 'lj3FZ43D5uAOovI6h1saYluZ7idP9X5xWUFmp3je_Ig',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Tesla Bull Says He Knows Why Wall Street Doesn't 'Yet Get How Great FSD' Is: 'Won't Add Value To TSLA's Valuation Unless...'\",\n",
+ " 'author': 'Anan Ashraf',\n",
+ " 'published_utc': '2024-03-29T05:45:32Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/24/03/38000833/tesla-bull-says-he-knows-why-wall-street-doesnt-yet-get-how-great-fsd-is-wont-add-v',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/38000833',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2024/Tesla-FSD_7.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': \"Tesla Inc.\\xa0(NASDAQ:TSLA) investor and\\xa0Future Fund\\xa0Managing Partner\\xa0Gary Black\\xa0has said that the valuation of the EV giant will only be influenced by its\\xa0full self-driving\\xa0(FSD) software once it achieves fully autonomous driving capabilities.\\nWhat Happened: Black emphasized that although Wall Street acknowledges Tesla’s progress with the FSD software, it will not impact the valuation until the software achieves fully autonomous driving. \\nPresently, Black views the FSD software as a remarkable driver assist tool rather than a fully autonomous driving solution. He stated that for the software to truly deliver autonomous driving capabilities, Tesla must assume full liability for any injury or damage incurred.\\xa0\\n“Since I don't see that happening anytime soon, WS won't add incremental value beyond the normal take rate math in every analyst's TSLA ...Full story available on Benzinga.com\",\n",
+ " 'keywords': ['News', 'Analyst Color', 'Top Stories', 'Tech']},\n",
+ " {'id': 'Gono-8MgCwTQuyHuoKdQGzDYfcOJ5CJ9cKc6N3KsBDA',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Cathie Wood's Ark Continues Tesla Stock Buying Spree, Acquires Over $14M Worth Of Shares Amid Dip\",\n",
+ " 'author': 'Benzinga Neuro',\n",
+ " 'published_utc': '2024-03-29T02:09:46Z',\n",
+ " 'article_url': 'https://www.benzinga.com/markets/equities/24/03/37999880/cathie-woods-ark-continues-tesla-stock-buying-spree-acquires-over-14m-worth-of-shares-amid-dip',\n",
+ " 'tickers': ['COIN',\n",
+ " 'KTOS',\n",
+ " 'TSLA',\n",
+ " 'PATH',\n",
+ " 'ARKW',\n",
+ " 'ARKK',\n",
+ " 'TWST',\n",
+ " 'PSNL',\n",
+ " 'RBLX',\n",
+ " 'HOOD'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/37999880',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2024/World-Economic-Forum---Annual-Meeting-of_0.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'On Thursday, Cathie Wood-led Ark Invest purchased a substantial number of shares in Tesla Inc. (NASDAQ:TSLA), despite the electric vehicle giant’s recent dip in stock price.\\nThe TSLA Trade\\nArk Invest’s ETFs, ARK Innovation ETF (NYSE:ARKK) and ARK Next Generation Internet ETF (NYSE:ARKW), purchased 65,514 and 14,437 shares of Tesla respectively. This move comes after Tesla’s stock price had tumbled nearly 2.25%.\\nThe value of the Tesla shares bought by Ark Invest on Thursday is estimated to be around $14 million, calculated from the closing price of $175.79. This move continues Ark’s trend of increasing its bet on Tesla. Just earlier in the week, Ark had bought Tesla shares worth $28.21 million, as the stock rebounded and outperformed the broader market.\\nArk Invest’s Tasha Keeney estimated a $28 trillion opportunity in AI’s financial impact, particularly highlighting Tesla and drone technology. Keeney projected a rise in equity ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['News', 'Equities', 'Markets', 'ETFs']},\n",
+ " {'id': 'WRbb7nS_324jWkMT3BFhftTT3KWYgGRTLCoPRFYMKpc',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': '5 Popular Stocks on Sale: Values or Traps?',\n",
+ " 'author': 'Tracey Ryniec',\n",
+ " 'published_utc': '2024-03-28T20:38:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/2247695/5-popular-stocks-on-sale-values-or-traps',\n",
+ " 'tickers': ['NKE', 'SBUX', 'LULU', 'TSLA', 'PANW'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/2247695/5-popular-stocks-on-sale-values-or-traps',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/articles/main/75/2558.jpg',\n",
+ " 'description': 'Not every stock is rallying in 2024. These 5 are on sale. Should you dive in?'},\n",
+ " {'id': 'x3P_dSrYr2Kwao4sayM54bJJyEvDOKowi4QI1XWsc9U',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Why Dogecoin, Floki Inu, and Bonk Are Surging Today',\n",
+ " 'author': 'newsfeedback@fool.com (Chris MacDonald)',\n",
+ " 'published_utc': '2024-03-28T20:16:01Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2024/03/28/why-dogecoin-floki-inu-and-bonk-are-surging-today/',\n",
+ " 'tickers': ['TSLA', 'SOL'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/770759/shiba-inu22.jpg',\n",
+ " 'description': 'These three meme tokens are seeing incredible double-digit moves higher today.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'SF9bF407FRxtyOaMCQx0RQM2zd38K9NNCcY-02a3Otw',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Tesla Is Navigating Free FSD Trials, Gigafactory Challenges, and Governance Hurdles: Analyst',\n",
+ " 'author': 'Anusuya Lahiri',\n",
+ " 'published_utc': '2024-03-28T17:51:51Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/24/03/37991157/tesla-is-navigating-free-fsd-trials-gigafactory-challenges-and-governance-hurdles-analyst',\n",
+ " 'tickers': ['VCR', 'TSLA', 'PP'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/37991157',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2024/Tesla-CEO-Elon-Musk_45.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'RBC Capital Markets\\xa0analyst\\xa0Tom Narayan\\xa0maintained an Outperform rating on\\xa0Tesla Inc\\xa0(NASDAQ:TSLA) with a price target of $298.\\nThe fourth quarter of fiscal 2023 saw a demand-pull forward from the IRA expiry of particular Model 3s, and that likely negatively impacted the first quarter of 2024, as per the analyst.\\xa0\\nThe analyst flagged the Red Sea\\xa0disruption in January\\xa0and the arson\\xa0attack in February, hampering the Berlin gigafactory operations.\\nNarayan expects the company’s decision to give one month of free trials of FSD in the U.S. will help drive higher volumes in the second quarter.\\xa0\\nHigher FSD attach rates are also central to his investment thesis on the stock.\\nNarayan projects Tesla deliveries of 446,000 in the first quarter of 2024, down 10.7% vs. his prior estimate of 500k and ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['News',\n",
+ " 'Price Target',\n",
+ " 'Reiteration',\n",
+ " 'Analyst Ratings',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': 'K4db6U9_y3o6CtEEHv0jo8Rl7KpYzSsYyJ5m64XmxFo',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Easter's Bitter Surprise: Cocoa Is Up 240% In A Year – What Can A Ton Of The Chocolate Commodity Get You Today?\",\n",
+ " 'author': 'Piero Cingari',\n",
+ " 'published_utc': '2024-03-28T17:29:18Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/large-cap/24/03/37990561/easters-bitter-surprise-cocoa-is-up-240-in-a-year-what-can-a-ton-of-the-chocolate-commodity-get-yo',\n",
+ " 'tickers': ['NVDA', 'GME', 'TSLA', 'NKLA', 'RDDT'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/37990561',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2024/chocolate-ai_0.png?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Cocoa prices surged to a staggering $10,000 in the last week of March 2024, marking an unprecedented 240% increase from the previous year that’s bound to affect chocolate lovers this Easter. \\nThis surge has placed cocoa’s market performance on par with that of Nvidia Corp (NASDAQ:NVDA), the leading S&P 500 stock over the past year, and notably ahead of Bitcoin‘s (CRYPTO: BTC) 160% increase in the same period.\\nChart: Cocoa Rivals Nvidia’s 1-Year Stock Surge, Outperforms Bitcoin\\n\\nThe Driving Forces Behind Cocoa’s Price Surge\\nThe question on everyone’s mind is: What’s causing this astronomical rise in cocoa prices? \\nAccording to a ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['Large Cap',\n",
+ " 'Commodities',\n",
+ " 'Econ #s',\n",
+ " 'Top Stories',\n",
+ " 'Economics',\n",
+ " 'Markets',\n",
+ " 'Tech']},\n",
+ " {'id': '-7r_wUIw4-6ZGZafyqkD__9-H57YPrLWzQMHMiDbbyE',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': \"A Closer Look at China's Changing EV Landscape\",\n",
+ " 'author': 'Rimmi Singhi',\n",
+ " 'published_utc': '2024-03-28T13:48:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/2247380/a-closer-look-at-chinas-changing-ev-landscape',\n",
+ " 'tickers': ['HMC', 'TSLA', 'NIO', 'LI'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/2247380/a-closer-look-at-chinas-changing-ev-landscape',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/articles/main/04/1374.jpg',\n",
+ " 'description': 'The once-booming EV market in China is experiencing a slowdown due to economic challenges and reduced government subsidies, prompting a shift in strategy among local and international automakers.'},\n",
+ " {'id': 'HU0P4vzVSWjdLVlG5mlwUs3UYpxTtw3x1CZGedZrVWw',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': '1 Wall Street Analyst Thinks Telsa Is Going to $194 -- Is 2024\\'s Worst-Performing \"Magnificent Seven\" Stock a Buy?',\n",
+ " 'author': 'newsfeedback@fool.com (Keith Noonan)',\n",
+ " 'published_utc': '2024-03-28T13:40:51Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2024/03/28/wall-street-analyst-telsa-magnificent-seven-buy/',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/770965/gettyimages-1353134043-1.jpg',\n",
+ " 'description': 'Tesla stock is down 28% this year and 56% from its high. Is this a buying opportunity?',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'X5ERJDCtpOd9-2mcmvjzVCJGUrjvVFXcMZLHLPPUjoE',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Prediction: This Will Be the Next \"Magnificent Seven\" Stock',\n",
+ " 'author': 'newsfeedback@fool.com (Adria Cimino)',\n",
+ " 'published_utc': '2024-03-28T10:50:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2024/03/28/this-will-be-next-magnificent-seven-stock/',\n",
+ " 'tickers': ['LLY',\n",
+ " 'META',\n",
+ " 'MSFT',\n",
+ " 'GOOGL',\n",
+ " 'AAPL',\n",
+ " 'TSLA',\n",
+ " 'AMZN',\n",
+ " 'NVDA',\n",
+ " 'NVO',\n",
+ " 'GOOG'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/770699/gettyimages-1191849990.jpg',\n",
+ " 'description': \"This particular company's growth is set to take off...\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'X6VLhwgJRIjrsNVnzQvFzH6S7w_CaIVdChbZbhC2v9Y',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Will This $900 Billion Stock Replace Tesla in the \"Magnificent Seven\"?',\n",
+ " 'author': 'newsfeedback@fool.com (Ryan Vanzo)',\n",
+ " 'published_utc': '2024-03-28T10:45:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2024/03/28/will-this-stock-replace-tesla-magnificent-seven/',\n",
+ " 'tickers': ['BRK.B',\n",
+ " 'BRK.A',\n",
+ " 'HPQ',\n",
+ " 'TSLA',\n",
+ " 'META',\n",
+ " 'MSFT',\n",
+ " 'GOOGL',\n",
+ " 'AAPL',\n",
+ " 'F',\n",
+ " 'AMZN',\n",
+ " 'V',\n",
+ " 'MA',\n",
+ " 'GM',\n",
+ " 'NVDA',\n",
+ " 'L',\n",
+ " 'MKL',\n",
+ " 'IEP',\n",
+ " 'GOOG',\n",
+ " 'SNOW',\n",
+ " 'RIVN',\n",
+ " 'NU'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/769402/gettyimages-1330888912-1201x655-4b46871.jpg',\n",
+ " 'description': 'Tesla is the only \"Magnificent Seven\" stock to have lost value during the past three years. This stock should replace it.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'wQLeT9VPbc3sfPKJRpKyP072wzMBVd-JX8EVYwPy10o',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Tesla Bull Trims Price Target Ahead Of Q1 Deliveries Update, Warns Of 'Darker Days' Ahead: 'For Musk, This Is A Fork-In-The-Road Time'\",\n",
+ " 'author': 'Shanthi Rexaline',\n",
+ " 'published_utc': '2024-03-28T05:42:04Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/24/03/37975506/tesla-bull-trims-price-target-ahead-of-q1-deliveries-update-warns-of-darker-days-ah',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/37975506',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2024/Elon-Musk-Tesla-CEO_11.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'With just days to go for the release of Tesla, Inc.’s (NASDAQ:TSLA) first-quarter deliveries update, an analyst on Wednesday reaffirmed his bullish stance but reduced the price target for the stock.\\nThe Tesla Analyst: Wedbush analyst Daniel Ives maintained an Outperform rating on the stock and cut his price target from $315 to $300. \\nTwin Troubles: Tesla has been haunted by both demand and supply-side issues, said Ives in a note. The first quarter has been nightmarish for Tesla as China demand remained very soft from the beginning of the quarter, and factory planned downtimes and the Berlin fire have impacted supply, he said.\\n“There is no denying this has been a quarter to forget for Musk and Tesla,” the analyst said. \\nThe weakness may have been exacerbated by the Model 3 Highland upgrade issues in the Fremont factory and flattish sales in Europe, he added.\\nAs such, the analyst reduced his first-quarter delivery estimates from 475,000 units to 425,000 units, citing a “perfect storm” of demand issues that hit the quarter, which in turn hurt delivery and sales.\\nSee Also: Everything You Need To Know About Tesla Stock\\nChina – Thorn In Flesh: The biggest and most concerning issue for Tesla and ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['Long Ideas',\n",
+ " 'News',\n",
+ " 'Analyst Color',\n",
+ " 'Equities',\n",
+ " 'Price Target',\n",
+ " 'Reiteration',\n",
+ " 'Analyst Ratings',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': 'SgkWfDkQV3SxC-tpuaOAWlvQgHxsUBngnO0dGcsS23Q',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'Tesla (TSLA) Outpaces Stock Market Gains: What You Should Know',\n",
+ " 'author': 'Zacks Equity Research',\n",
+ " 'published_utc': '2024-03-27T21:45:18Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/2246970/tesla-tsla-outpaces-stock-market-gains-what-you-should-know',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/2246970/tesla-tsla-outpaces-stock-market-gains-what-you-should-know',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/default_article_images/default8.jpg',\n",
+ " 'description': 'Tesla (TSLA) reachead $179.83 at the closing of the latest trading day, reflecting a +1.22% change compared to its last close.'},\n",
+ " {'id': 'csfNIFHlZYR7EY4o_xfJiLMDAJ1nqBybafSbeXdsMQ8',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Cracking The Code: Understanding Analyst Reviews For Tesla',\n",
+ " 'author': 'Benzinga Insights',\n",
+ " 'published_utc': '2024-03-27T16:01:02Z',\n",
+ " 'article_url': 'https://www.benzinga.com/insights/analyst-ratings/24/03/37963481/cracking-the-code-understanding-analyst-reviews-for-tesla',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/37963481',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2023/analyst_ratings_image_0.png?width=1200&height=800&fit=crop',\n",
+ " 'description': \"Tesla (NASDAQ:TSLA) has been analyzed by 34 analysts in the last three months, revealing a diverse range of perspectives from bullish to bearish.\\nThe table below summarizes their recent ratings, showcasing the evolving sentiments within the past 30 days and comparing them to the preceding months.\\n\\n\\n\\n\\nBullish\\nSomewhat Bullish\\nIndifferent\\nSomewhat Bearish\\nBearish\\n\\n\\n\\n\\nTotal Ratings\\n3\\n14\\n13\\n3\\n1\\n\\n\\nLast 30D\\n0\\n1\\n0\\n0\\n0\\n\\n\\n1M Ago\\n1\\n4\\n4\\n2\\n0\\n\\n\\n2M Ago\\n0\\n3\\n1\\n0\\n0\\n\\n\\n3M Ago\\n2\\n6\\n8\\n1\\n1\\n\\n\\n\\nAnalysts' evaluations of 12-month price targets offer additional insights, showcasing an average target of $244.41, with a high estimate of $350.00 and a low estimate of $120.00. Observing a downward trend, the current average is 7.03% lower than the prior average price target of $262.88. \\n\\nAnalyzing Analyst Ratings: A Detailed Breakdown\\nThe perception of Tesla by financial experts is analyzed through recent analyst actions. The following summary presents key analysts, their recent evaluations, and adjustments to ratings and price targets.\\n\\n\\n\\nAnalyst\\nAnalyst Firm\\nAction Taken\\nRating\\nCurrent Price Target\\nPrior Price Target\\n\\n\\n\\n\\nAdam Jonas\\nMorgan Stanley\\nMaintains\\nOverweight\\n$320.00\\n$320.00\\n\\n\\nToni Sacconaghi\\nBernstein\\nLowers\\nUnderperform\\n$120.00\\n$150.00\\n\\n\\nVijay Rakesh\\nMizuho\\nLowers\\nNeutral\\n$195.00\\n$270.00\\n\\n\\nMark Delaney\\nGoldman Sachs\\nLowers\\nNeutral\\n$190.00\\n$220.00\\n\\n\\nPatrick Hummel\\nUBS\\nLowers\\nNeutral\\n$165.00\\n$225.00\\n\\n\\nPatrick Hummel\\nUBS\\nLowers\\nNeutral\\n$165.00\\n$225.00\\n\\n\\nDaniel Ives\\nWedbush\\nMaintains\\nOutperform\\n$315.00\\n-\\n\\n\\nColin Langan\\nWells Fargo\\nLowers\\nUnderweight\\n$125.00\\n$200.00\\n\\n\\nEmmanuel Rosner\\nDeutsche Bank\\nLowers\\nBuy\\n$218.00\\n$250.00\\n\\n\\nAdam Jonas\\nMorgan Stanley\\nLowers\\nOverweight\\n$320.00\\n$345.00\\n\\n\\nTom Narayan\\nRBC Capital\\nRaises\\nOutperform\\n$298.00\\n$297.00\\n\\n\\nTom Narayan\\nRBC Capital\\nMaintains\\nOutperform\\n$297.00\\n-\\n\\n\\nJairam Nathan\\nDaiwa Capital\\nAnnounces\\nNeutral\\n$195.00\\n-\\n\\n\\nAlexander Potter\\nPiper Sandler\\nLowers\\nOverweight\\n$225.00\\n$295.00\\n\\n\\nDaniel Ives\\nWedbush\\nMaintains\\nOutperform\\n$315.00\\n-\\n\\n\\nBen Kallo\\nBaird\\nMaintains\\nOutperform\\n$300.00\\n-\\n\\n\\nEmmanuel Rosner\\nDeutsche Bank\\nLowers\\nBuy\\n$250.00\\n$260.00\\n\\n\\nRyan Brinkman\\nJP Morgan\\nLowers\\nUnderweight\\n$130.00\\n$135.00\\n\\n\\nItay Michaeli\\nCitigroup\\nLowers\\nNeutral\\n$224.00\\n$255.00\\n\\n\\nMark Delaney\\nGoldman Sachs\\nLowers\\nNeutral\\n$220.00\\n$255.00\\n\\n\\nPatrick Hummel\\nUBS\\nLowers\\nNeutral\\n$225.00\\n$229.00\\n\\n\\nBen Kallo\\nBaird\\nMaintains\\nOutperform\\n$300.00\\n-\\n\\n\\nDaniel Ives\\nWedbush\\nLowers\\nOutperform\\n$315.00\\n$350.00\\n\\n\\nVijay Rakesh\\nMizuho\\nLowers\\nBuy\\n$270.00\\n$310.00\\n\\n\\nTom Narayan\\nRBC Capital\\nLowers\\nOutperform\\n$297.00\\n$300.00\\n\\n\\nWilliam Stein\\nTruist Securities\\nLowers\\nHold\\n$193.00\\n$227.00\\n\\n\\nDan Levy\\nBarclays\\nLowers\\nEqual-Weight\\n$225.00\\n$250.00\\n\\n\\nMark Delaney\\nGoldman Sachs\\nLowers\\nNeutral\\n$220.00\\n$255.00\\n\\n\\nJennifer Liang\\nKGI Securities\\nLowers\\nNeutral\\n$213.00\\n$309.00\\n\\n\\nAdrian Yanoshik\\nRedburn Atlantic\\nAnnounces\\nSell\\n$170.00\\n-\\n\\n\\nDaniel Ives\\nWedbush\\nMaintains\\nOutperform\\n$350.00\\n-\\n\\n\\nAdam Jonas\\nMorgan Stanley\\nLowers\\nOverweight\\n$345.00\\n$380.00\\n\\n\\nDan Levy\\nBarclays\\nLowers\\nEqual-Weight\\n$250.00\\n$260.00\\n\\n\\nDaniel Ives\\nWedbush\\nMaintains\\nOutperform\\n$350.00\\n-\\n\\n\\n\\nKey Insights:\\n\\nAction Taken: Responding to changing market dynamics and company performance, analysts update their recommendations. Whether ...Full story available on Benzinga.com\",\n",
+ " 'keywords': ['Analyst Ratings']},\n",
+ " {'id': '5VymDDhVhpHOvoOjMY5mLhNDkXQCMidMQWjUgyER5Vo',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'This Semiconductor Growth Stock Dropped Over 20% on Monday -- Is It Time to Buy Hand Over Fist?',\n",
+ " 'author': 'newsfeedback@fool.com (Jose Najarro)',\n",
+ " 'published_utc': '2024-03-27T14:32:45Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2024/03/27/this-semiconductor-growth-stock-dropped-over-20-on/',\n",
+ " 'tickers': ['AEHR', 'TSLA', 'ON', 'INDI', 'MBLY'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/770833/bear-market-in-the-red-trending-down.jpg',\n",
+ " 'description': 'The automotive market is becoming a significant headwind for this semiconductor company.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'qOWtjuFXbR1QUw5geh-POh6a7jFxINj491JwZ-XltZc',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Better Electric Vehicle Stock: Tesla or Rivian?',\n",
+ " 'author': 'newsfeedback@fool.com (RJ Fulton)',\n",
+ " 'published_utc': '2024-03-27T13:53:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2024/03/27/better-electric-vehicle-stock-tesla-or-rivian/',\n",
+ " 'tickers': ['TSLA', 'RIVN'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/770279/gettyimages-1405242703.jpg',\n",
+ " 'description': 'While both stand out in a crowded electric vehicle market, only one deserves a spot in your portfolio.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'M--VGDC8VStoBcXZFwm1LzVJYutJyyI6NwVkMrKjYUc',\n",
+ " 'publisher': {'name': 'Zacks Investment Research',\n",
+ " 'homepage_url': 'https://www.zacks.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/zacks.png',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/zacks.ico'},\n",
+ " 'title': 'Company News for Mar 27, 2024',\n",
+ " 'author': 'Zacks Equity Research',\n",
+ " 'published_utc': '2024-03-27T13:26:00Z',\n",
+ " 'article_url': 'https://www.zacks.com/stock/news/2246591/company-news-for-mar-27-2024',\n",
+ " 'tickers': ['MCD', 'MKC', 'TSLA', 'ESLT', 'DNUT'],\n",
+ " 'amp_url': 'https://www.zacks.com/amp/stock/news/2246591/company-news-for-mar-27-2024',\n",
+ " 'image_url': 'https://staticx-tuner.zacks.com/images/articles/main/3e/106.jpg',\n",
+ " 'description': 'Companies in The News Are: MKC,ESLT,DNUT,MCD,TSLA'},\n",
+ " {'id': 'UubTuww0IbuYZIBCvNK2f_cK_xfOImnbHahPNHEPSVY',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Forget Tesla: I Think This Stock Should Replace It in the \"Magnificent Seven\"',\n",
+ " 'author': 'newsfeedback@fool.com (Ryan Vanzo)',\n",
+ " 'published_utc': '2024-03-27T09:50:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2024/03/27/forget-tesla-i-think-this-stock-should-replace-it/',\n",
+ " 'tickers': ['V', 'TSLA', 'META', 'GOOGL', 'NVDA', 'GOOG'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/769403/gettyimages-1392175897-1200x646-155feec.jpg',\n",
+ " 'description': 'Tesla stock has lost 30% of its value in three years. Visa should take its place in the Magnificent Seven.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'QzI8mX8__zTvRWgwqgSYPjAD49Wi5sqsn1-5gYQoNXU',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'This Fantastic Stock Has Outperformed Tesla in the Past 3 Years and It Just Got Much Cheaper',\n",
+ " 'author': 'newsfeedback@fool.com (Neil Rozenbaum)',\n",
+ " 'published_utc': '2024-03-27T09:30:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2024/03/27/this-growth-stock-has-outperformed-tesla-in-the-pa/',\n",
+ " 'tickers': ['LULU', 'TSLA'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/770691/exercise-lululemon-athleisure-workout.jpg',\n",
+ " 'description': 'Lululemon stock has crashed 20% since reporting earnings last week.',\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'aNETwfELk3fnJHMejDxAXfpu931S-zaC93cs-pD7cS0',\n",
+ " 'publisher': {'name': 'The Motley Fool',\n",
+ " 'homepage_url': 'https://www.fool.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/themotleyfool.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/themotleyfool.ico'},\n",
+ " 'title': 'Forget Tesla: 1 Unstoppable Artificial Intelligence (AI) Stock Belongs in the \"Magnificent Seven\" Instead',\n",
+ " 'author': 'newsfeedback@fool.com (Anthony Di Pizio)',\n",
+ " 'published_utc': '2024-03-27T08:27:00Z',\n",
+ " 'article_url': 'https://www.fool.com/investing/2024/03/27/forget-tesla-1-ai-stock-magnificent-seven-instead/',\n",
+ " 'tickers': ['ORCL',\n",
+ " 'TSLA',\n",
+ " 'META',\n",
+ " 'MSFT',\n",
+ " 'GOOGL',\n",
+ " 'AAPL',\n",
+ " 'AMZN',\n",
+ " 'NVDA',\n",
+ " 'GOOG'],\n",
+ " 'image_url': 'https://g.foolcdn.com/editorial/images/770375/tesla-car-at-super-charger-station.png',\n",
+ " 'description': \"Tesla stock is down 31% already in 2024, jeopardizing its place among the stock market's top leadership group.\",\n",
+ " 'keywords': ['investing']},\n",
+ " {'id': 'gPdvI5l7YFrkcBSZSK_ZgKkYlay8UIuDpFlOroyG7d4',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': 'Investor Sentiment Falls Further, S&P 500 Falls For 3rd Session',\n",
+ " 'author': 'Avi Kapoor',\n",
+ " 'published_utc': '2024-03-27T08:00:27Z',\n",
+ " 'article_url': 'https://www.benzinga.com/news/earnings/24/03/37951150/investor-sentiment-falls-further-s-p-500-falls-for-3rd-session',\n",
+ " 'tickers': ['CTAS', 'STX', 'CCL', 'TSLA', 'RH'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/37951150',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2024/03/27/image34.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'The CNN Money Fear and Greed index showed a further decline in the overall market sentiment, while the index remained in the \"Greed\" zone on Tuesday.\\nU.S. stocks closed lower on Tuesday, with the S&P 500 recording losses for a third straight session. However, all major indices are on course for their fifth consecutive winning month, as the S&P 500 is up over 2% in March, and the Dow is up 0.7%.\\nShares of Seagate Technology Holdings plc (NASDAQ: STX) gained over 7% on Tuesday after Morgan Stanley upgraded the stock from Equal-Weight to Overweight and raised its price target from $73 to $115. Tesla, Inc. (NASDAQ: TSLA) shares rose ...',\n",
+ " 'keywords': ['News',\n",
+ " 'Earnings',\n",
+ " 'Pre-Market Outlook',\n",
+ " 'Markets',\n",
+ " 'Trading Ideas']},\n",
+ " {'id': 'rD3Jh821u6EVUukLdPuuvheL8Iry8BIAHdPj15YgbJ4',\n",
+ " 'publisher': {'name': 'Benzinga',\n",
+ " 'homepage_url': 'https://www.benzinga.com/',\n",
+ " 'logo_url': 'https://s3.polygon.io/public/assets/news/logos/benzinga.svg',\n",
+ " 'favicon_url': 'https://s3.polygon.io/public/assets/news/favicons/benzinga.ico'},\n",
+ " 'title': \"Tesla-CATL 'Power Couple' Can Recharge US EV Market, Says Morgan Stanley Analyst Adam Jonas: '...Could Be A Game-Changer'\",\n",
+ " 'author': 'Anan Ashraf',\n",
+ " 'published_utc': '2024-03-27T03:22:17Z',\n",
+ " 'article_url': 'https://www.benzinga.com/analyst-ratings/analyst-color/24/03/37950620/tesla-catl-power-couple-can-recharge-us-ev-market-says-morgan-stanley-analyst-adam-',\n",
+ " 'tickers': ['TSLA'],\n",
+ " 'amp_url': 'https://www.benzinga.com/amp/content/37950620',\n",
+ " 'image_url': 'https://cdn.benzinga.com/files/images/story/2024/Ivano-frankivsk--Ukraine---May-13--2019-_10.jpeg?width=1200&height=800&fit=crop',\n",
+ " 'description': 'Morgan Stanley\\xa0analyst and Tesla Inc (NASDAQ:TSLA) bull\\xa0Adam Jonas believes a partnership between the U.S. EV giant and Chinese battery maker CATL could be a game-changer with the ‘power-couple’ potentially recharging the U.S. EV market. \\nWhat Happened: Jonas believes that the U.S. EV market is in dire need of high-quality cheaper batteries for which it needs to rely on China despite the complicated geopolitics and security concerns. While the U.S. EV market is under-penetrated, China’s is highly penetrated with an oversupply of batteries, he noted. \\nThe analyst was referring to ...Full story available on Benzinga.com',\n",
+ " 'keywords': ['News', 'Analyst Color', 'Tech']}]"
+ ]
+ },
+ "execution_count": 24,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "news_articles"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 30,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "import pandas as pd \n",
+ "\n",
+ "# Assuming news_articles is a list of dictionaries\n",
+ "df = pd.DataFrame(news_articles)\n",
+ "\n",
+ "\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 34,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "
\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " | \n",
+ " id | \n",
+ " publisher | \n",
+ " title | \n",
+ " author | \n",
+ " published_utc | \n",
+ " article_url | \n",
+ " tickers | \n",
+ " amp_url | \n",
+ " image_url | \n",
+ " description | \n",
+ " keywords | \n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " 0 | \n",
+ " rHYPs-UNybcfTGof0g3bkqHkaA4KA5z1UbSPJ7gmaaQ | \n",
+ " {'name': 'Benzinga', 'homepage_url': 'https://... | \n",
+ " Elon Musk Says Twitter Refusing To Cough Up Sp... | \n",
+ " Bibhu Pattnaik | \n",
+ " 2022-05-21T19:39:28Z | \n",
+ " https://www.benzinga.com/news/22/05/27337474/e... | \n",
+ " [TSLA, TWTR] | \n",
+ " https://www.benzinga.com/amp/content/27337474 | \n",
+ " https://cdn.benzinga.com/files/images/story/20... | \n",
+ " Tesla Inc (NASDAQ: TSLA) CEO Elon Musk seems t... | \n",
+ " [News, Top Stories, Tech] | \n",
+ "
\n",
+ " \n",
+ " 1 | \n",
+ " eYUSHsraFoKd8y4OiDtesI8pSbne2M4XDzjq7vmVRfw | \n",
+ " {'name': 'The Motley Fool', 'homepage_url': 'h... | \n",
+ " Why Twitter Stock Fell This Week | \n",
+ " newsfeedback@fool.com (Daniel Sparks) | \n",
+ " 2022-05-21T12:16:04Z | \n",
+ " https://www.fool.com/investing/2022/05/21/why-... | \n",
+ " [TWTR, TSLA] | \n",
+ " NaN | \n",
+ " https://g.foolcdn.com/editorial/images/681359/... | \n",
+ " Is the company's $44 billion deal at risk of n... | \n",
+ " [investing] | \n",
+ "
\n",
+ " \n",
+ " 2 | \n",
+ " LMfdls7oU_GPgoSbFgq2xvW2bj0QwgWWD8SwHVAMEL4 | \n",
+ " {'name': 'Seeking Alpha', 'homepage_url': 'htt... | \n",
+ " S&P 500 Earnings Update: Earnings Yield Above ... | \n",
+ " Brian Gilmartin, CFA | \n",
+ " 2022-05-21T04:00:00Z | \n",
+ " https://seekingalpha.com/article/4513558-sp500... | \n",
+ " [WMT, TSLA, TGT, BAPR, BAUG, BJUL, BJUN, BMAR,... | \n",
+ " https://seekingalpha.com/amp/article/4513558-s... | \n",
+ " https://static.seekingalpha.com/cdn/s3/uploads... | \n",
+ " The S&P 500 earnings yield is 6.03% vs last we... | \n",
+ " NaN | \n",
+ "
\n",
+ " \n",
+ " 3 | \n",
+ " PsNkJVaCAXki25-hZcJk2irqOky8s5cNOypZqHqgrz4 | \n",
+ " {'name': 'The Motley Fool', 'homepage_url': 'h... | \n",
+ " Why Tesla Stock Was Slammed on Friday | \n",
+ " newsfeedback@fool.com (Daniel Sparks) | \n",
+ " 2022-05-20T22:56:26Z | \n",
+ " https://www.fool.com/investing/2022/05/20/why-... | \n",
+ " [TSLA, TWTR] | \n",
+ " NaN | \n",
+ " https://g.foolcdn.com/editorial/images/681336/... | \n",
+ " The electric-car maker's stock has been gettin... | \n",
+ " [investing] | \n",
+ "
\n",
+ " \n",
+ " 4 | \n",
+ " nMdkN0UNxwOrP0VLjCpYzR6xq-rzxS-5uM3qKEQsftE | \n",
+ " {'name': 'Benzinga', 'homepage_url': 'https://... | \n",
+ " S&P 500 Falls For 7th Consecutive Week Amid On... | \n",
+ " Henry Khederian | \n",
+ " 2022-05-20T20:17:20Z | \n",
+ " https://www.benzinga.com/news/22/05/27332539/s... | \n",
+ " [DIA, SPY, ROST, AMT, DE, LLY, VFC, TSLA, QQQ] | \n",
+ " https://www.benzinga.com/amp/content/27332539 | \n",
+ " https://cdn.benzinga.com/files/images/story/20... | \n",
+ " U.S. indices rebounded off session lows Friday... | \n",
+ " [News, After-Hours Center, Markets, Movers, Tr... | \n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " id \\\n",
+ "0 rHYPs-UNybcfTGof0g3bkqHkaA4KA5z1UbSPJ7gmaaQ \n",
+ "1 eYUSHsraFoKd8y4OiDtesI8pSbne2M4XDzjq7vmVRfw \n",
+ "2 LMfdls7oU_GPgoSbFgq2xvW2bj0QwgWWD8SwHVAMEL4 \n",
+ "3 PsNkJVaCAXki25-hZcJk2irqOky8s5cNOypZqHqgrz4 \n",
+ "4 nMdkN0UNxwOrP0VLjCpYzR6xq-rzxS-5uM3qKEQsftE \n",
+ "\n",
+ " publisher \\\n",
+ "0 {'name': 'Benzinga', 'homepage_url': 'https://... \n",
+ "1 {'name': 'The Motley Fool', 'homepage_url': 'h... \n",
+ "2 {'name': 'Seeking Alpha', 'homepage_url': 'htt... \n",
+ "3 {'name': 'The Motley Fool', 'homepage_url': 'h... \n",
+ "4 {'name': 'Benzinga', 'homepage_url': 'https://... \n",
+ "\n",
+ " title \\\n",
+ "0 Elon Musk Says Twitter Refusing To Cough Up Sp... \n",
+ "1 Why Twitter Stock Fell This Week \n",
+ "2 S&P 500 Earnings Update: Earnings Yield Above ... \n",
+ "3 Why Tesla Stock Was Slammed on Friday \n",
+ "4 S&P 500 Falls For 7th Consecutive Week Amid On... \n",
+ "\n",
+ " author published_utc \\\n",
+ "0 Bibhu Pattnaik 2022-05-21T19:39:28Z \n",
+ "1 newsfeedback@fool.com (Daniel Sparks) 2022-05-21T12:16:04Z \n",
+ "2 Brian Gilmartin, CFA 2022-05-21T04:00:00Z \n",
+ "3 newsfeedback@fool.com (Daniel Sparks) 2022-05-20T22:56:26Z \n",
+ "4 Henry Khederian 2022-05-20T20:17:20Z \n",
+ "\n",
+ " article_url \\\n",
+ "0 https://www.benzinga.com/news/22/05/27337474/e... \n",
+ "1 https://www.fool.com/investing/2022/05/21/why-... \n",
+ "2 https://seekingalpha.com/article/4513558-sp500... \n",
+ "3 https://www.fool.com/investing/2022/05/20/why-... \n",
+ "4 https://www.benzinga.com/news/22/05/27332539/s... \n",
+ "\n",
+ " tickers \\\n",
+ "0 [TSLA, TWTR] \n",
+ "1 [TWTR, TSLA] \n",
+ "2 [WMT, TSLA, TGT, BAPR, BAUG, BJUL, BJUN, BMAR,... \n",
+ "3 [TSLA, TWTR] \n",
+ "4 [DIA, SPY, ROST, AMT, DE, LLY, VFC, TSLA, QQQ] \n",
+ "\n",
+ " amp_url \\\n",
+ "0 https://www.benzinga.com/amp/content/27337474 \n",
+ "1 NaN \n",
+ "2 https://seekingalpha.com/amp/article/4513558-s... \n",
+ "3 NaN \n",
+ "4 https://www.benzinga.com/amp/content/27332539 \n",
+ "\n",
+ " image_url \\\n",
+ "0 https://cdn.benzinga.com/files/images/story/20... \n",
+ "1 https://g.foolcdn.com/editorial/images/681359/... \n",
+ "2 https://static.seekingalpha.com/cdn/s3/uploads... \n",
+ "3 https://g.foolcdn.com/editorial/images/681336/... \n",
+ "4 https://cdn.benzinga.com/files/images/story/20... \n",
+ "\n",
+ " description \\\n",
+ "0 Tesla Inc (NASDAQ: TSLA) CEO Elon Musk seems t... \n",
+ "1 Is the company's $44 billion deal at risk of n... \n",
+ "2 The S&P 500 earnings yield is 6.03% vs last we... \n",
+ "3 The electric-car maker's stock has been gettin... \n",
+ "4 U.S. indices rebounded off session lows Friday... \n",
+ "\n",
+ " keywords \n",
+ "0 [News, Top Stories, Tech] \n",
+ "1 [investing] \n",
+ "2 NaN \n",
+ "3 [investing] \n",
+ "4 [News, After-Hours Center, Markets, Movers, Tr... "
+ ]
+ },
+ "execution_count": 34,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "df.head()\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 38,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "id 0\n",
+ "publisher 0\n",
+ "title 0\n",
+ "author 0\n",
+ "published_utc 0\n",
+ "article_url 0\n",
+ "tickers 0\n",
+ "amp_url 251\n",
+ "image_url 0\n",
+ "description 38\n",
+ "keywords 308\n",
+ "dtype: int64"
+ ]
+ },
+ "execution_count": 38,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "df.isnull().sum()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 40,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\n",
+ "RangeIndex: 750 entries, 0 to 749\n",
+ "Data columns (total 11 columns):\n",
+ " # Column Non-Null Count Dtype \n",
+ "--- ------ -------------- ----- \n",
+ " 0 id 750 non-null object\n",
+ " 1 publisher 750 non-null object\n",
+ " 2 title 750 non-null object\n",
+ " 3 author 750 non-null object\n",
+ " 4 published_utc 750 non-null object\n",
+ " 5 article_url 750 non-null object\n",
+ " 6 tickers 750 non-null object\n",
+ " 7 amp_url 499 non-null object\n",
+ " 8 image_url 750 non-null object\n",
+ " 9 description 712 non-null object\n",
+ " 10 keywords 442 non-null object\n",
+ "dtypes: object(11)\n",
+ "memory usage: 64.6+ KB\n"
+ ]
+ }
+ ],
+ "source": [
+ "df.info()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 41,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "/var/folders/ty/fy7wpfqs4c39hnsfl21_rzyc0000gn/T/ipykernel_36715/2409066706.py:5: SettingWithCopyWarning: \n",
+ "A value is trying to be set on a copy of a slice from a DataFrame.\n",
+ "Try using .loc[row_indexer,col_indexer] = value instead\n",
+ "\n",
+ "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
+ " df['amp_url'] = df['amp_url'].fillna('No URL provided') # placeholder\n",
+ "/var/folders/ty/fy7wpfqs4c39hnsfl21_rzyc0000gn/T/ipykernel_36715/2409066706.py:8: SettingWithCopyWarning: \n",
+ "A value is trying to be set on a copy of a slice from a DataFrame.\n",
+ "Try using .loc[row_indexer,col_indexer] = value instead\n",
+ "\n",
+ "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
+ " df['keywords'] = df['keywords'].fillna('No keywords') # placeholder\n"
+ ]
+ }
+ ],
+ "source": [
+ "# Drop rows where the description is NaN\n",
+ "df = df.dropna(subset=['description'])\n",
+ "\n",
+ "# Fill missing 'amp_url' with a specific placeholder\n",
+ "df['amp_url'] = df['amp_url'].fillna('No URL provided') # placeholder\n",
+ "\n",
+ "# Fill missing 'keywords' with a specific placeholder\n",
+ "df['keywords'] = df['keywords'].fillna('No keywords') # placeholder\n",
+ "\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 42,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "id 0\n",
+ "publisher 0\n",
+ "title 0\n",
+ "author 0\n",
+ "published_utc 0\n",
+ "article_url 0\n",
+ "tickers 0\n",
+ "amp_url 0\n",
+ "image_url 0\n",
+ "description 0\n",
+ "keywords 0\n",
+ "dtype: int64"
+ ]
+ },
+ "execution_count": 42,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "df.isnull().sum()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 43,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\n",
+ "Int64Index: 712 entries, 0 to 749\n",
+ "Data columns (total 11 columns):\n",
+ " # Column Non-Null Count Dtype \n",
+ "--- ------ -------------- ----- \n",
+ " 0 id 712 non-null object\n",
+ " 1 publisher 712 non-null object\n",
+ " 2 title 712 non-null object\n",
+ " 3 author 712 non-null object\n",
+ " 4 published_utc 712 non-null object\n",
+ " 5 article_url 712 non-null object\n",
+ " 6 tickers 712 non-null object\n",
+ " 7 amp_url 712 non-null object\n",
+ " 8 image_url 712 non-null object\n",
+ " 9 description 712 non-null object\n",
+ " 10 keywords 712 non-null object\n",
+ "dtypes: object(11)\n",
+ "memory usage: 66.8+ KB\n"
+ ]
+ }
+ ],
+ "source": [
+ "df.info()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 44,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "/var/folders/ty/fy7wpfqs4c39hnsfl21_rzyc0000gn/T/ipykernel_36715/1780558183.py:4: SettingWithCopyWarning: \n",
+ "A value is trying to be set on a copy of a slice from a DataFrame.\n",
+ "Try using .loc[row_indexer,col_indexer] = value instead\n",
+ "\n",
+ "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
+ " df['sentiment'] = df['description'].apply(lambda text: TextBlob(text).sentiment.polarity)\n"
+ ]
+ },
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " | \n",
+ " title | \n",
+ " sentiment | \n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " 0 | \n",
+ " Elon Musk Says Twitter Refusing To Cough Up Sp... | \n",
+ " -0.064242 | \n",
+ "
\n",
+ " \n",
+ " 1 | \n",
+ " Why Twitter Stock Fell This Week | \n",
+ " 0.000000 | \n",
+ "
\n",
+ " \n",
+ " 2 | \n",
+ " S&P 500 Earnings Update: Earnings Yield Above ... | \n",
+ " 0.000000 | \n",
+ "
\n",
+ " \n",
+ " 3 | \n",
+ " Why Tesla Stock Was Slammed on Friday | \n",
+ " 0.187500 | \n",
+ "
\n",
+ " \n",
+ " 4 | \n",
+ " S&P 500 Falls For 7th Consecutive Week Amid On... | \n",
+ " 0.096032 | \n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " title sentiment\n",
+ "0 Elon Musk Says Twitter Refusing To Cough Up Sp... -0.064242\n",
+ "1 Why Twitter Stock Fell This Week 0.000000\n",
+ "2 S&P 500 Earnings Update: Earnings Yield Above ... 0.000000\n",
+ "3 Why Tesla Stock Was Slammed on Friday 0.187500\n",
+ "4 S&P 500 Falls For 7th Consecutive Week Amid On... 0.096032"
+ ]
+ },
+ "execution_count": 44,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "from textblob import TextBlob\n",
+ "\n",
+ "# calculate sentiment\n",
+ "df['sentiment'] = df['description'].apply(lambda text: TextBlob(text).sentiment.polarity)\n",
+ "\n",
+ "df[['title', 'sentiment']].head() # Display titles with their sentiment scores\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 45,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " | \n",
+ " id | \n",
+ " publisher | \n",
+ " title | \n",
+ " author | \n",
+ " published_utc | \n",
+ " article_url | \n",
+ " tickers | \n",
+ " amp_url | \n",
+ " image_url | \n",
+ " description | \n",
+ " keywords | \n",
+ " sentiment | \n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " 0 | \n",
+ " rHYPs-UNybcfTGof0g3bkqHkaA4KA5z1UbSPJ7gmaaQ | \n",
+ " {'name': 'Benzinga', 'homepage_url': 'https://... | \n",
+ " Elon Musk Says Twitter Refusing To Cough Up Sp... | \n",
+ " Bibhu Pattnaik | \n",
+ " 2022-05-21T19:39:28Z | \n",
+ " https://www.benzinga.com/news/22/05/27337474/e... | \n",
+ " [TSLA, TWTR] | \n",
+ " https://www.benzinga.com/amp/content/27337474 | \n",
+ " https://cdn.benzinga.com/files/images/story/20... | \n",
+ " Tesla Inc (NASDAQ: TSLA) CEO Elon Musk seems t... | \n",
+ " [News, Top Stories, Tech] | \n",
+ " -0.064242 | \n",
+ "
\n",
+ " \n",
+ " 1 | \n",
+ " eYUSHsraFoKd8y4OiDtesI8pSbne2M4XDzjq7vmVRfw | \n",
+ " {'name': 'The Motley Fool', 'homepage_url': 'h... | \n",
+ " Why Twitter Stock Fell This Week | \n",
+ " newsfeedback@fool.com (Daniel Sparks) | \n",
+ " 2022-05-21T12:16:04Z | \n",
+ " https://www.fool.com/investing/2022/05/21/why-... | \n",
+ " [TWTR, TSLA] | \n",
+ " No URL provided | \n",
+ " https://g.foolcdn.com/editorial/images/681359/... | \n",
+ " Is the company's $44 billion deal at risk of n... | \n",
+ " [investing] | \n",
+ " 0.000000 | \n",
+ "
\n",
+ " \n",
+ " 2 | \n",
+ " LMfdls7oU_GPgoSbFgq2xvW2bj0QwgWWD8SwHVAMEL4 | \n",
+ " {'name': 'Seeking Alpha', 'homepage_url': 'htt... | \n",
+ " S&P 500 Earnings Update: Earnings Yield Above ... | \n",
+ " Brian Gilmartin, CFA | \n",
+ " 2022-05-21T04:00:00Z | \n",
+ " https://seekingalpha.com/article/4513558-sp500... | \n",
+ " [WMT, TSLA, TGT, BAPR, BAUG, BJUL, BJUN, BMAR,... | \n",
+ " https://seekingalpha.com/amp/article/4513558-s... | \n",
+ " https://static.seekingalpha.com/cdn/s3/uploads... | \n",
+ " The S&P 500 earnings yield is 6.03% vs last we... | \n",
+ " No keywords | \n",
+ " 0.000000 | \n",
+ "
\n",
+ " \n",
+ " 3 | \n",
+ " PsNkJVaCAXki25-hZcJk2irqOky8s5cNOypZqHqgrz4 | \n",
+ " {'name': 'The Motley Fool', 'homepage_url': 'h... | \n",
+ " Why Tesla Stock Was Slammed on Friday | \n",
+ " newsfeedback@fool.com (Daniel Sparks) | \n",
+ " 2022-05-20T22:56:26Z | \n",
+ " https://www.fool.com/investing/2022/05/20/why-... | \n",
+ " [TSLA, TWTR] | \n",
+ " No URL provided | \n",
+ " https://g.foolcdn.com/editorial/images/681336/... | \n",
+ " The electric-car maker's stock has been gettin... | \n",
+ " [investing] | \n",
+ " 0.187500 | \n",
+ "
\n",
+ " \n",
+ " 4 | \n",
+ " nMdkN0UNxwOrP0VLjCpYzR6xq-rzxS-5uM3qKEQsftE | \n",
+ " {'name': 'Benzinga', 'homepage_url': 'https://... | \n",
+ " S&P 500 Falls For 7th Consecutive Week Amid On... | \n",
+ " Henry Khederian | \n",
+ " 2022-05-20T20:17:20Z | \n",
+ " https://www.benzinga.com/news/22/05/27332539/s... | \n",
+ " [DIA, SPY, ROST, AMT, DE, LLY, VFC, TSLA, QQQ] | \n",
+ " https://www.benzinga.com/amp/content/27332539 | \n",
+ " https://cdn.benzinga.com/files/images/story/20... | \n",
+ " U.S. indices rebounded off session lows Friday... | \n",
+ " [News, After-Hours Center, Markets, Movers, Tr... | \n",
+ " 0.096032 | \n",
+ "
\n",
+ " \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ "
\n",
+ " \n",
+ " 745 | \n",
+ " UubTuww0IbuYZIBCvNK2f_cK_xfOImnbHahPNHEPSVY | \n",
+ " {'name': 'The Motley Fool', 'homepage_url': 'h... | \n",
+ " Forget Tesla: I Think This Stock Should Replac... | \n",
+ " newsfeedback@fool.com (Ryan Vanzo) | \n",
+ " 2024-03-27T09:50:00Z | \n",
+ " https://www.fool.com/investing/2024/03/27/forg... | \n",
+ " [V, TSLA, META, GOOGL, NVDA, GOOG] | \n",
+ " No URL provided | \n",
+ " https://g.foolcdn.com/editorial/images/769403/... | \n",
+ " Tesla stock has lost 30% of its value in three... | \n",
+ " [investing] | \n",
+ " 1.000000 | \n",
+ "
\n",
+ " \n",
+ " 746 | \n",
+ " QzI8mX8__zTvRWgwqgSYPjAD49Wi5sqsn1-5gYQoNXU | \n",
+ " {'name': 'The Motley Fool', 'homepage_url': 'h... | \n",
+ " This Fantastic Stock Has Outperformed Tesla in... | \n",
+ " newsfeedback@fool.com (Neil Rozenbaum) | \n",
+ " 2024-03-27T09:30:00Z | \n",
+ " https://www.fool.com/investing/2024/03/27/this... | \n",
+ " [LULU, TSLA] | \n",
+ " No URL provided | \n",
+ " https://g.foolcdn.com/editorial/images/770691/... | \n",
+ " Lululemon stock has crashed 20% since reportin... | \n",
+ " [investing] | \n",
+ " 0.000000 | \n",
+ "
\n",
+ " \n",
+ " 747 | \n",
+ " aNETwfELk3fnJHMejDxAXfpu931S-zaC93cs-pD7cS0 | \n",
+ " {'name': 'The Motley Fool', 'homepage_url': 'h... | \n",
+ " Forget Tesla: 1 Unstoppable Artificial Intelli... | \n",
+ " newsfeedback@fool.com (Anthony Di Pizio) | \n",
+ " 2024-03-27T08:27:00Z | \n",
+ " https://www.fool.com/investing/2024/03/27/forg... | \n",
+ " [ORCL, TSLA, META, MSFT, GOOGL, AAPL, AMZN, NV... | \n",
+ " No URL provided | \n",
+ " https://g.foolcdn.com/editorial/images/770375/... | \n",
+ " Tesla stock is down 31% already in 2024, jeopa... | \n",
+ " [investing] | \n",
+ " 0.172222 | \n",
+ "
\n",
+ " \n",
+ " 748 | \n",
+ " gPdvI5l7YFrkcBSZSK_ZgKkYlay8UIuDpFlOroyG7d4 | \n",
+ " {'name': 'Benzinga', 'homepage_url': 'https://... | \n",
+ " Investor Sentiment Falls Further, S&P 500 Fall... | \n",
+ " Avi Kapoor | \n",
+ " 2024-03-27T08:00:27Z | \n",
+ " https://www.benzinga.com/news/earnings/24/03/3... | \n",
+ " [CTAS, STX, CCL, TSLA, RH] | \n",
+ " https://www.benzinga.com/amp/content/37951150 | \n",
+ " https://cdn.benzinga.com/files/images/story/20... | \n",
+ " The CNN Money Fear and Greed index showed a fu... | \n",
+ " [News, Earnings, Pre-Market Outlook, Markets, ... | \n",
+ " 0.157812 | \n",
+ "
\n",
+ " \n",
+ " 749 | \n",
+ " rD3Jh821u6EVUukLdPuuvheL8Iry8BIAHdPj15YgbJ4 | \n",
+ " {'name': 'Benzinga', 'homepage_url': 'https://... | \n",
+ " Tesla-CATL 'Power Couple' Can Recharge US EV M... | \n",
+ " Anan Ashraf | \n",
+ " 2024-03-27T03:22:17Z | \n",
+ " https://www.benzinga.com/analyst-ratings/analy... | \n",
+ " [TSLA] | \n",
+ " https://www.benzinga.com/amp/content/37950620 | \n",
+ " https://cdn.benzinga.com/files/images/story/20... | \n",
+ " Morgan Stanley analyst and Tesla Inc (NASDAQ:T... | \n",
+ " [News, Analyst Color, Tech] | \n",
+ " 0.010000 | \n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
712 rows × 12 columns
\n",
+ "
"
+ ],
+ "text/plain": [
+ " id \\\n",
+ "0 rHYPs-UNybcfTGof0g3bkqHkaA4KA5z1UbSPJ7gmaaQ \n",
+ "1 eYUSHsraFoKd8y4OiDtesI8pSbne2M4XDzjq7vmVRfw \n",
+ "2 LMfdls7oU_GPgoSbFgq2xvW2bj0QwgWWD8SwHVAMEL4 \n",
+ "3 PsNkJVaCAXki25-hZcJk2irqOky8s5cNOypZqHqgrz4 \n",
+ "4 nMdkN0UNxwOrP0VLjCpYzR6xq-rzxS-5uM3qKEQsftE \n",
+ ".. ... \n",
+ "745 UubTuww0IbuYZIBCvNK2f_cK_xfOImnbHahPNHEPSVY \n",
+ "746 QzI8mX8__zTvRWgwqgSYPjAD49Wi5sqsn1-5gYQoNXU \n",
+ "747 aNETwfELk3fnJHMejDxAXfpu931S-zaC93cs-pD7cS0 \n",
+ "748 gPdvI5l7YFrkcBSZSK_ZgKkYlay8UIuDpFlOroyG7d4 \n",
+ "749 rD3Jh821u6EVUukLdPuuvheL8Iry8BIAHdPj15YgbJ4 \n",
+ "\n",
+ " publisher \\\n",
+ "0 {'name': 'Benzinga', 'homepage_url': 'https://... \n",
+ "1 {'name': 'The Motley Fool', 'homepage_url': 'h... \n",
+ "2 {'name': 'Seeking Alpha', 'homepage_url': 'htt... \n",
+ "3 {'name': 'The Motley Fool', 'homepage_url': 'h... \n",
+ "4 {'name': 'Benzinga', 'homepage_url': 'https://... \n",
+ ".. ... \n",
+ "745 {'name': 'The Motley Fool', 'homepage_url': 'h... \n",
+ "746 {'name': 'The Motley Fool', 'homepage_url': 'h... \n",
+ "747 {'name': 'The Motley Fool', 'homepage_url': 'h... \n",
+ "748 {'name': 'Benzinga', 'homepage_url': 'https://... \n",
+ "749 {'name': 'Benzinga', 'homepage_url': 'https://... \n",
+ "\n",
+ " title \\\n",
+ "0 Elon Musk Says Twitter Refusing To Cough Up Sp... \n",
+ "1 Why Twitter Stock Fell This Week \n",
+ "2 S&P 500 Earnings Update: Earnings Yield Above ... \n",
+ "3 Why Tesla Stock Was Slammed on Friday \n",
+ "4 S&P 500 Falls For 7th Consecutive Week Amid On... \n",
+ ".. ... \n",
+ "745 Forget Tesla: I Think This Stock Should Replac... \n",
+ "746 This Fantastic Stock Has Outperformed Tesla in... \n",
+ "747 Forget Tesla: 1 Unstoppable Artificial Intelli... \n",
+ "748 Investor Sentiment Falls Further, S&P 500 Fall... \n",
+ "749 Tesla-CATL 'Power Couple' Can Recharge US EV M... \n",
+ "\n",
+ " author published_utc \\\n",
+ "0 Bibhu Pattnaik 2022-05-21T19:39:28Z \n",
+ "1 newsfeedback@fool.com (Daniel Sparks) 2022-05-21T12:16:04Z \n",
+ "2 Brian Gilmartin, CFA 2022-05-21T04:00:00Z \n",
+ "3 newsfeedback@fool.com (Daniel Sparks) 2022-05-20T22:56:26Z \n",
+ "4 Henry Khederian 2022-05-20T20:17:20Z \n",
+ ".. ... ... \n",
+ "745 newsfeedback@fool.com (Ryan Vanzo) 2024-03-27T09:50:00Z \n",
+ "746 newsfeedback@fool.com (Neil Rozenbaum) 2024-03-27T09:30:00Z \n",
+ "747 newsfeedback@fool.com (Anthony Di Pizio) 2024-03-27T08:27:00Z \n",
+ "748 Avi Kapoor 2024-03-27T08:00:27Z \n",
+ "749 Anan Ashraf 2024-03-27T03:22:17Z \n",
+ "\n",
+ " article_url \\\n",
+ "0 https://www.benzinga.com/news/22/05/27337474/e... \n",
+ "1 https://www.fool.com/investing/2022/05/21/why-... \n",
+ "2 https://seekingalpha.com/article/4513558-sp500... \n",
+ "3 https://www.fool.com/investing/2022/05/20/why-... \n",
+ "4 https://www.benzinga.com/news/22/05/27332539/s... \n",
+ ".. ... \n",
+ "745 https://www.fool.com/investing/2024/03/27/forg... \n",
+ "746 https://www.fool.com/investing/2024/03/27/this... \n",
+ "747 https://www.fool.com/investing/2024/03/27/forg... \n",
+ "748 https://www.benzinga.com/news/earnings/24/03/3... \n",
+ "749 https://www.benzinga.com/analyst-ratings/analy... \n",
+ "\n",
+ " tickers \\\n",
+ "0 [TSLA, TWTR] \n",
+ "1 [TWTR, TSLA] \n",
+ "2 [WMT, TSLA, TGT, BAPR, BAUG, BJUL, BJUN, BMAR,... \n",
+ "3 [TSLA, TWTR] \n",
+ "4 [DIA, SPY, ROST, AMT, DE, LLY, VFC, TSLA, QQQ] \n",
+ ".. ... \n",
+ "745 [V, TSLA, META, GOOGL, NVDA, GOOG] \n",
+ "746 [LULU, TSLA] \n",
+ "747 [ORCL, TSLA, META, MSFT, GOOGL, AAPL, AMZN, NV... \n",
+ "748 [CTAS, STX, CCL, TSLA, RH] \n",
+ "749 [TSLA] \n",
+ "\n",
+ " amp_url \\\n",
+ "0 https://www.benzinga.com/amp/content/27337474 \n",
+ "1 No URL provided \n",
+ "2 https://seekingalpha.com/amp/article/4513558-s... \n",
+ "3 No URL provided \n",
+ "4 https://www.benzinga.com/amp/content/27332539 \n",
+ ".. ... \n",
+ "745 No URL provided \n",
+ "746 No URL provided \n",
+ "747 No URL provided \n",
+ "748 https://www.benzinga.com/amp/content/37951150 \n",
+ "749 https://www.benzinga.com/amp/content/37950620 \n",
+ "\n",
+ " image_url \\\n",
+ "0 https://cdn.benzinga.com/files/images/story/20... \n",
+ "1 https://g.foolcdn.com/editorial/images/681359/... \n",
+ "2 https://static.seekingalpha.com/cdn/s3/uploads... \n",
+ "3 https://g.foolcdn.com/editorial/images/681336/... \n",
+ "4 https://cdn.benzinga.com/files/images/story/20... \n",
+ ".. ... \n",
+ "745 https://g.foolcdn.com/editorial/images/769403/... \n",
+ "746 https://g.foolcdn.com/editorial/images/770691/... \n",
+ "747 https://g.foolcdn.com/editorial/images/770375/... \n",
+ "748 https://cdn.benzinga.com/files/images/story/20... \n",
+ "749 https://cdn.benzinga.com/files/images/story/20... \n",
+ "\n",
+ " description \\\n",
+ "0 Tesla Inc (NASDAQ: TSLA) CEO Elon Musk seems t... \n",
+ "1 Is the company's $44 billion deal at risk of n... \n",
+ "2 The S&P 500 earnings yield is 6.03% vs last we... \n",
+ "3 The electric-car maker's stock has been gettin... \n",
+ "4 U.S. indices rebounded off session lows Friday... \n",
+ ".. ... \n",
+ "745 Tesla stock has lost 30% of its value in three... \n",
+ "746 Lululemon stock has crashed 20% since reportin... \n",
+ "747 Tesla stock is down 31% already in 2024, jeopa... \n",
+ "748 The CNN Money Fear and Greed index showed a fu... \n",
+ "749 Morgan Stanley analyst and Tesla Inc (NASDAQ:T... \n",
+ "\n",
+ " keywords sentiment \n",
+ "0 [News, Top Stories, Tech] -0.064242 \n",
+ "1 [investing] 0.000000 \n",
+ "2 No keywords 0.000000 \n",
+ "3 [investing] 0.187500 \n",
+ "4 [News, After-Hours Center, Markets, Movers, Tr... 0.096032 \n",
+ ".. ... ... \n",
+ "745 [investing] 1.000000 \n",
+ "746 [investing] 0.000000 \n",
+ "747 [investing] 0.172222 \n",
+ "748 [News, Earnings, Pre-Market Outlook, Markets, ... 0.157812 \n",
+ "749 [News, Analyst Color, Tech] 0.010000 \n",
+ "\n",
+ "[712 rows x 12 columns]"
+ ]
+ },
+ "execution_count": 45,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "df "
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 46,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "/var/folders/ty/fy7wpfqs4c39hnsfl21_rzyc0000gn/T/ipykernel_36715/2367640594.py:1: SettingWithCopyWarning: \n",
+ "A value is trying to be set on a copy of a slice from a DataFrame.\n",
+ "Try using .loc[row_indexer,col_indexer] = value instead\n",
+ "\n",
+ "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
+ " df['published_utc'] = pd.to_datetime(df['published_utc'])\n"
+ ]
+ }
+ ],
+ "source": [
+ "df['published_utc'] = pd.to_datetime(df['published_utc'])"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 49,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "/var/folders/ty/fy7wpfqs4c39hnsfl21_rzyc0000gn/T/ipykernel_36715/1406256251.py:2: SettingWithCopyWarning: \n",
+ "A value is trying to be set on a copy of a slice from a DataFrame.\n",
+ "Try using .loc[row_indexer,col_indexer] = value instead\n",
+ "\n",
+ "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
+ " df['date'] = df['published_utc'].dt.date\n",
+ "/var/folders/ty/fy7wpfqs4c39hnsfl21_rzyc0000gn/T/ipykernel_36715/1406256251.py:5: SettingWithCopyWarning: \n",
+ "A value is trying to be set on a copy of a slice from a DataFrame.\n",
+ "Try using .loc[row_indexer,col_indexer] = value instead\n",
+ "\n",
+ "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
+ " df['time'] = df['published_utc'].dt.time\n"
+ ]
+ }
+ ],
+ "source": [
+ "# Create a new column for just the date\n",
+ "df['date'] = df['published_utc'].dt.date\n",
+ "\n",
+ "# Create a new column for just the time\n",
+ "df['time'] = df['published_utc'].dt.time\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 51,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "/var/folders/ty/fy7wpfqs4c39hnsfl21_rzyc0000gn/T/ipykernel_36715/1488892596.py:1: SettingWithCopyWarning: \n",
+ "A value is trying to be set on a copy of a slice from a DataFrame\n",
+ "\n",
+ "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
+ " df.drop('published_utc', axis=1, inplace=True)\n",
+ "/var/folders/ty/fy7wpfqs4c39hnsfl21_rzyc0000gn/T/ipykernel_36715/1488892596.py:2: SettingWithCopyWarning: \n",
+ "A value is trying to be set on a copy of a slice from a DataFrame\n",
+ "\n",
+ "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
+ " df.drop('published_time', axis=1, inplace=True)\n",
+ "/var/folders/ty/fy7wpfqs4c39hnsfl21_rzyc0000gn/T/ipykernel_36715/1488892596.py:3: SettingWithCopyWarning: \n",
+ "A value is trying to be set on a copy of a slice from a DataFrame\n",
+ "\n",
+ "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
+ " df.drop('published_date', axis=1, inplace=True)\n"
+ ]
+ }
+ ],
+ "source": [
+ "df.drop('published_utc', axis=1, inplace=True)\n",
+ "df.drop('published_time', axis=1, inplace=True)\n",
+ "df.drop('published_date', axis=1, inplace=True)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 52,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " | \n",
+ " id | \n",
+ " publisher | \n",
+ " title | \n",
+ " author | \n",
+ " article_url | \n",
+ " tickers | \n",
+ " amp_url | \n",
+ " image_url | \n",
+ " description | \n",
+ " keywords | \n",
+ " sentiment | \n",
+ " date | \n",
+ " time | \n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " 0 | \n",
+ " rHYPs-UNybcfTGof0g3bkqHkaA4KA5z1UbSPJ7gmaaQ | \n",
+ " {'name': 'Benzinga', 'homepage_url': 'https://... | \n",
+ " Elon Musk Says Twitter Refusing To Cough Up Sp... | \n",
+ " Bibhu Pattnaik | \n",
+ " https://www.benzinga.com/news/22/05/27337474/e... | \n",
+ " [TSLA, TWTR] | \n",
+ " https://www.benzinga.com/amp/content/27337474 | \n",
+ " https://cdn.benzinga.com/files/images/story/20... | \n",
+ " Tesla Inc (NASDAQ: TSLA) CEO Elon Musk seems t... | \n",
+ " [News, Top Stories, Tech] | \n",
+ " -0.064242 | \n",
+ " 2022-05-21 | \n",
+ " 19:39:28 | \n",
+ "
\n",
+ " \n",
+ " 1 | \n",
+ " eYUSHsraFoKd8y4OiDtesI8pSbne2M4XDzjq7vmVRfw | \n",
+ " {'name': 'The Motley Fool', 'homepage_url': 'h... | \n",
+ " Why Twitter Stock Fell This Week | \n",
+ " newsfeedback@fool.com (Daniel Sparks) | \n",
+ " https://www.fool.com/investing/2022/05/21/why-... | \n",
+ " [TWTR, TSLA] | \n",
+ " No URL provided | \n",
+ " https://g.foolcdn.com/editorial/images/681359/... | \n",
+ " Is the company's $44 billion deal at risk of n... | \n",
+ " [investing] | \n",
+ " 0.000000 | \n",
+ " 2022-05-21 | \n",
+ " 12:16:04 | \n",
+ "
\n",
+ " \n",
+ " 2 | \n",
+ " LMfdls7oU_GPgoSbFgq2xvW2bj0QwgWWD8SwHVAMEL4 | \n",
+ " {'name': 'Seeking Alpha', 'homepage_url': 'htt... | \n",
+ " S&P 500 Earnings Update: Earnings Yield Above ... | \n",
+ " Brian Gilmartin, CFA | \n",
+ " https://seekingalpha.com/article/4513558-sp500... | \n",
+ " [WMT, TSLA, TGT, BAPR, BAUG, BJUL, BJUN, BMAR,... | \n",
+ " https://seekingalpha.com/amp/article/4513558-s... | \n",
+ " https://static.seekingalpha.com/cdn/s3/uploads... | \n",
+ " The S&P 500 earnings yield is 6.03% vs last we... | \n",
+ " No keywords | \n",
+ " 0.000000 | \n",
+ " 2022-05-21 | \n",
+ " 04:00:00 | \n",
+ "
\n",
+ " \n",
+ " 3 | \n",
+ " PsNkJVaCAXki25-hZcJk2irqOky8s5cNOypZqHqgrz4 | \n",
+ " {'name': 'The Motley Fool', 'homepage_url': 'h... | \n",
+ " Why Tesla Stock Was Slammed on Friday | \n",
+ " newsfeedback@fool.com (Daniel Sparks) | \n",
+ " https://www.fool.com/investing/2022/05/20/why-... | \n",
+ " [TSLA, TWTR] | \n",
+ " No URL provided | \n",
+ " https://g.foolcdn.com/editorial/images/681336/... | \n",
+ " The electric-car maker's stock has been gettin... | \n",
+ " [investing] | \n",
+ " 0.187500 | \n",
+ " 2022-05-20 | \n",
+ " 22:56:26 | \n",
+ "
\n",
+ " \n",
+ " 4 | \n",
+ " nMdkN0UNxwOrP0VLjCpYzR6xq-rzxS-5uM3qKEQsftE | \n",
+ " {'name': 'Benzinga', 'homepage_url': 'https://... | \n",
+ " S&P 500 Falls For 7th Consecutive Week Amid On... | \n",
+ " Henry Khederian | \n",
+ " https://www.benzinga.com/news/22/05/27332539/s... | \n",
+ " [DIA, SPY, ROST, AMT, DE, LLY, VFC, TSLA, QQQ] | \n",
+ " https://www.benzinga.com/amp/content/27332539 | \n",
+ " https://cdn.benzinga.com/files/images/story/20... | \n",
+ " U.S. indices rebounded off session lows Friday... | \n",
+ " [News, After-Hours Center, Markets, Movers, Tr... | \n",
+ " 0.096032 | \n",
+ " 2022-05-20 | \n",
+ " 20:17:20 | \n",
+ "
\n",
+ " \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ "
\n",
+ " \n",
+ " 745 | \n",
+ " UubTuww0IbuYZIBCvNK2f_cK_xfOImnbHahPNHEPSVY | \n",
+ " {'name': 'The Motley Fool', 'homepage_url': 'h... | \n",
+ " Forget Tesla: I Think This Stock Should Replac... | \n",
+ " newsfeedback@fool.com (Ryan Vanzo) | \n",
+ " https://www.fool.com/investing/2024/03/27/forg... | \n",
+ " [V, TSLA, META, GOOGL, NVDA, GOOG] | \n",
+ " No URL provided | \n",
+ " https://g.foolcdn.com/editorial/images/769403/... | \n",
+ " Tesla stock has lost 30% of its value in three... | \n",
+ " [investing] | \n",
+ " 1.000000 | \n",
+ " 2024-03-27 | \n",
+ " 09:50:00 | \n",
+ "
\n",
+ " \n",
+ " 746 | \n",
+ " QzI8mX8__zTvRWgwqgSYPjAD49Wi5sqsn1-5gYQoNXU | \n",
+ " {'name': 'The Motley Fool', 'homepage_url': 'h... | \n",
+ " This Fantastic Stock Has Outperformed Tesla in... | \n",
+ " newsfeedback@fool.com (Neil Rozenbaum) | \n",
+ " https://www.fool.com/investing/2024/03/27/this... | \n",
+ " [LULU, TSLA] | \n",
+ " No URL provided | \n",
+ " https://g.foolcdn.com/editorial/images/770691/... | \n",
+ " Lululemon stock has crashed 20% since reportin... | \n",
+ " [investing] | \n",
+ " 0.000000 | \n",
+ " 2024-03-27 | \n",
+ " 09:30:00 | \n",
+ "
\n",
+ " \n",
+ " 747 | \n",
+ " aNETwfELk3fnJHMejDxAXfpu931S-zaC93cs-pD7cS0 | \n",
+ " {'name': 'The Motley Fool', 'homepage_url': 'h... | \n",
+ " Forget Tesla: 1 Unstoppable Artificial Intelli... | \n",
+ " newsfeedback@fool.com (Anthony Di Pizio) | \n",
+ " https://www.fool.com/investing/2024/03/27/forg... | \n",
+ " [ORCL, TSLA, META, MSFT, GOOGL, AAPL, AMZN, NV... | \n",
+ " No URL provided | \n",
+ " https://g.foolcdn.com/editorial/images/770375/... | \n",
+ " Tesla stock is down 31% already in 2024, jeopa... | \n",
+ " [investing] | \n",
+ " 0.172222 | \n",
+ " 2024-03-27 | \n",
+ " 08:27:00 | \n",
+ "
\n",
+ " \n",
+ " 748 | \n",
+ " gPdvI5l7YFrkcBSZSK_ZgKkYlay8UIuDpFlOroyG7d4 | \n",
+ " {'name': 'Benzinga', 'homepage_url': 'https://... | \n",
+ " Investor Sentiment Falls Further, S&P 500 Fall... | \n",
+ " Avi Kapoor | \n",
+ " https://www.benzinga.com/news/earnings/24/03/3... | \n",
+ " [CTAS, STX, CCL, TSLA, RH] | \n",
+ " https://www.benzinga.com/amp/content/37951150 | \n",
+ " https://cdn.benzinga.com/files/images/story/20... | \n",
+ " The CNN Money Fear and Greed index showed a fu... | \n",
+ " [News, Earnings, Pre-Market Outlook, Markets, ... | \n",
+ " 0.157812 | \n",
+ " 2024-03-27 | \n",
+ " 08:00:27 | \n",
+ "
\n",
+ " \n",
+ " 749 | \n",
+ " rD3Jh821u6EVUukLdPuuvheL8Iry8BIAHdPj15YgbJ4 | \n",
+ " {'name': 'Benzinga', 'homepage_url': 'https://... | \n",
+ " Tesla-CATL 'Power Couple' Can Recharge US EV M... | \n",
+ " Anan Ashraf | \n",
+ " https://www.benzinga.com/analyst-ratings/analy... | \n",
+ " [TSLA] | \n",
+ " https://www.benzinga.com/amp/content/37950620 | \n",
+ " https://cdn.benzinga.com/files/images/story/20... | \n",
+ " Morgan Stanley analyst and Tesla Inc (NASDAQ:T... | \n",
+ " [News, Analyst Color, Tech] | \n",
+ " 0.010000 | \n",
+ " 2024-03-27 | \n",
+ " 03:22:17 | \n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
712 rows × 13 columns
\n",
+ "
"
+ ],
+ "text/plain": [
+ " id \\\n",
+ "0 rHYPs-UNybcfTGof0g3bkqHkaA4KA5z1UbSPJ7gmaaQ \n",
+ "1 eYUSHsraFoKd8y4OiDtesI8pSbne2M4XDzjq7vmVRfw \n",
+ "2 LMfdls7oU_GPgoSbFgq2xvW2bj0QwgWWD8SwHVAMEL4 \n",
+ "3 PsNkJVaCAXki25-hZcJk2irqOky8s5cNOypZqHqgrz4 \n",
+ "4 nMdkN0UNxwOrP0VLjCpYzR6xq-rzxS-5uM3qKEQsftE \n",
+ ".. ... \n",
+ "745 UubTuww0IbuYZIBCvNK2f_cK_xfOImnbHahPNHEPSVY \n",
+ "746 QzI8mX8__zTvRWgwqgSYPjAD49Wi5sqsn1-5gYQoNXU \n",
+ "747 aNETwfELk3fnJHMejDxAXfpu931S-zaC93cs-pD7cS0 \n",
+ "748 gPdvI5l7YFrkcBSZSK_ZgKkYlay8UIuDpFlOroyG7d4 \n",
+ "749 rD3Jh821u6EVUukLdPuuvheL8Iry8BIAHdPj15YgbJ4 \n",
+ "\n",
+ " publisher \\\n",
+ "0 {'name': 'Benzinga', 'homepage_url': 'https://... \n",
+ "1 {'name': 'The Motley Fool', 'homepage_url': 'h... \n",
+ "2 {'name': 'Seeking Alpha', 'homepage_url': 'htt... \n",
+ "3 {'name': 'The Motley Fool', 'homepage_url': 'h... \n",
+ "4 {'name': 'Benzinga', 'homepage_url': 'https://... \n",
+ ".. ... \n",
+ "745 {'name': 'The Motley Fool', 'homepage_url': 'h... \n",
+ "746 {'name': 'The Motley Fool', 'homepage_url': 'h... \n",
+ "747 {'name': 'The Motley Fool', 'homepage_url': 'h... \n",
+ "748 {'name': 'Benzinga', 'homepage_url': 'https://... \n",
+ "749 {'name': 'Benzinga', 'homepage_url': 'https://... \n",
+ "\n",
+ " title \\\n",
+ "0 Elon Musk Says Twitter Refusing To Cough Up Sp... \n",
+ "1 Why Twitter Stock Fell This Week \n",
+ "2 S&P 500 Earnings Update: Earnings Yield Above ... \n",
+ "3 Why Tesla Stock Was Slammed on Friday \n",
+ "4 S&P 500 Falls For 7th Consecutive Week Amid On... \n",
+ ".. ... \n",
+ "745 Forget Tesla: I Think This Stock Should Replac... \n",
+ "746 This Fantastic Stock Has Outperformed Tesla in... \n",
+ "747 Forget Tesla: 1 Unstoppable Artificial Intelli... \n",
+ "748 Investor Sentiment Falls Further, S&P 500 Fall... \n",
+ "749 Tesla-CATL 'Power Couple' Can Recharge US EV M... \n",
+ "\n",
+ " author \\\n",
+ "0 Bibhu Pattnaik \n",
+ "1 newsfeedback@fool.com (Daniel Sparks) \n",
+ "2 Brian Gilmartin, CFA \n",
+ "3 newsfeedback@fool.com (Daniel Sparks) \n",
+ "4 Henry Khederian \n",
+ ".. ... \n",
+ "745 newsfeedback@fool.com (Ryan Vanzo) \n",
+ "746 newsfeedback@fool.com (Neil Rozenbaum) \n",
+ "747 newsfeedback@fool.com (Anthony Di Pizio) \n",
+ "748 Avi Kapoor \n",
+ "749 Anan Ashraf \n",
+ "\n",
+ " article_url \\\n",
+ "0 https://www.benzinga.com/news/22/05/27337474/e... \n",
+ "1 https://www.fool.com/investing/2022/05/21/why-... \n",
+ "2 https://seekingalpha.com/article/4513558-sp500... \n",
+ "3 https://www.fool.com/investing/2022/05/20/why-... \n",
+ "4 https://www.benzinga.com/news/22/05/27332539/s... \n",
+ ".. ... \n",
+ "745 https://www.fool.com/investing/2024/03/27/forg... \n",
+ "746 https://www.fool.com/investing/2024/03/27/this... \n",
+ "747 https://www.fool.com/investing/2024/03/27/forg... \n",
+ "748 https://www.benzinga.com/news/earnings/24/03/3... \n",
+ "749 https://www.benzinga.com/analyst-ratings/analy... \n",
+ "\n",
+ " tickers \\\n",
+ "0 [TSLA, TWTR] \n",
+ "1 [TWTR, TSLA] \n",
+ "2 [WMT, TSLA, TGT, BAPR, BAUG, BJUL, BJUN, BMAR,... \n",
+ "3 [TSLA, TWTR] \n",
+ "4 [DIA, SPY, ROST, AMT, DE, LLY, VFC, TSLA, QQQ] \n",
+ ".. ... \n",
+ "745 [V, TSLA, META, GOOGL, NVDA, GOOG] \n",
+ "746 [LULU, TSLA] \n",
+ "747 [ORCL, TSLA, META, MSFT, GOOGL, AAPL, AMZN, NV... \n",
+ "748 [CTAS, STX, CCL, TSLA, RH] \n",
+ "749 [TSLA] \n",
+ "\n",
+ " amp_url \\\n",
+ "0 https://www.benzinga.com/amp/content/27337474 \n",
+ "1 No URL provided \n",
+ "2 https://seekingalpha.com/amp/article/4513558-s... \n",
+ "3 No URL provided \n",
+ "4 https://www.benzinga.com/amp/content/27332539 \n",
+ ".. ... \n",
+ "745 No URL provided \n",
+ "746 No URL provided \n",
+ "747 No URL provided \n",
+ "748 https://www.benzinga.com/amp/content/37951150 \n",
+ "749 https://www.benzinga.com/amp/content/37950620 \n",
+ "\n",
+ " image_url \\\n",
+ "0 https://cdn.benzinga.com/files/images/story/20... \n",
+ "1 https://g.foolcdn.com/editorial/images/681359/... \n",
+ "2 https://static.seekingalpha.com/cdn/s3/uploads... \n",
+ "3 https://g.foolcdn.com/editorial/images/681336/... \n",
+ "4 https://cdn.benzinga.com/files/images/story/20... \n",
+ ".. ... \n",
+ "745 https://g.foolcdn.com/editorial/images/769403/... \n",
+ "746 https://g.foolcdn.com/editorial/images/770691/... \n",
+ "747 https://g.foolcdn.com/editorial/images/770375/... \n",
+ "748 https://cdn.benzinga.com/files/images/story/20... \n",
+ "749 https://cdn.benzinga.com/files/images/story/20... \n",
+ "\n",
+ " description \\\n",
+ "0 Tesla Inc (NASDAQ: TSLA) CEO Elon Musk seems t... \n",
+ "1 Is the company's $44 billion deal at risk of n... \n",
+ "2 The S&P 500 earnings yield is 6.03% vs last we... \n",
+ "3 The electric-car maker's stock has been gettin... \n",
+ "4 U.S. indices rebounded off session lows Friday... \n",
+ ".. ... \n",
+ "745 Tesla stock has lost 30% of its value in three... \n",
+ "746 Lululemon stock has crashed 20% since reportin... \n",
+ "747 Tesla stock is down 31% already in 2024, jeopa... \n",
+ "748 The CNN Money Fear and Greed index showed a fu... \n",
+ "749 Morgan Stanley analyst and Tesla Inc (NASDAQ:T... \n",
+ "\n",
+ " keywords sentiment date \\\n",
+ "0 [News, Top Stories, Tech] -0.064242 2022-05-21 \n",
+ "1 [investing] 0.000000 2022-05-21 \n",
+ "2 No keywords 0.000000 2022-05-21 \n",
+ "3 [investing] 0.187500 2022-05-20 \n",
+ "4 [News, After-Hours Center, Markets, Movers, Tr... 0.096032 2022-05-20 \n",
+ ".. ... ... ... \n",
+ "745 [investing] 1.000000 2024-03-27 \n",
+ "746 [investing] 0.000000 2024-03-27 \n",
+ "747 [investing] 0.172222 2024-03-27 \n",
+ "748 [News, Earnings, Pre-Market Outlook, Markets, ... 0.157812 2024-03-27 \n",
+ "749 [News, Analyst Color, Tech] 0.010000 2024-03-27 \n",
+ "\n",
+ " time \n",
+ "0 19:39:28 \n",
+ "1 12:16:04 \n",
+ "2 04:00:00 \n",
+ "3 22:56:26 \n",
+ "4 20:17:20 \n",
+ ".. ... \n",
+ "745 09:50:00 \n",
+ "746 09:30:00 \n",
+ "747 08:27:00 \n",
+ "748 08:00:27 \n",
+ "749 03:22:17 \n",
+ "\n",
+ "[712 rows x 13 columns]"
+ ]
+ },
+ "execution_count": 52,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "df"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": []
+ }
+ ],
+ "metadata": {
+ "kernelspec": {
+ "display_name": "base",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.11.4"
+ },
+ "orig_nbformat": 4
+ },
+ "nbformat": 4,
+ "nbformat_minor": 2
+}