diff --git a/.dockerignore b/.dockerignore deleted file mode 100644 index 6176ee5..0000000 --- a/.dockerignore +++ /dev/null @@ -1,24 +0,0 @@ -# .dockerignore - -# 忽略 Python 虚拟环境 -venv/ -.venv/ - -# 忽略 Python 缓存文件 -__pycache__/ -*.pyc -*.pyo -*.pyd - -# 忽略 IDE 和编辑器配置文件 -.vscode/ -.idea/ -*.sublime-project -*.sublime-workspace - -# 忽略 Git 目录 -.git/ -.gitignore - -# 忽略 Docker 本地缓存 -.docker/ \ No newline at end of file diff --git a/.env.sample b/.env.sample new file mode 100644 index 0000000..3d3cfbc --- /dev/null +++ b/.env.sample @@ -0,0 +1,84 @@ +# ============================================================================= +# Automated Options Recommendation Bot +# Institutional Environment Configuration Template +# Copy this file to ".env" and populate secrets before runtime. +# ============================================================================= + +# ----------------------------------------------------------------------------- +# I. External Data Provider Credentials +# ----------------------------------------------------------------------------- +FRED_API_KEY=your_fred_api_key_here +SEC_USER_AGENT=YourName YourOrg your_email@example.com + +# ----------------------------------------------------------------------------- +# II. Vector Infrastructure (Qdrant) +# ----------------------------------------------------------------------------- +QDRANT_HOST=https://your-qdrant-endpoint.example.com +QDRANT_API_KEY=your_qdrant_api_key_here + +# ----------------------------------------------------------------------------- +# III. Core Inference Runtime (Ollama) +# ----------------------------------------------------------------------------- +# Use one of OLLAMA_BASE_URL or OLLAMA_HOST according to your runtime scripts. +OLLAMA_BASE_URL=http://localhost:11434 +OLLAMA_HOST=http://localhost:11434 +OLLAMA_KEEP_ALIVE=30m + +# Expert and router tier model routing. +OLLAMA_CUSTOM_MODEL_NAME=options-expert-v1:latest +OLLAMA_ROUTER_MODEL=llama3:latest +OLLAMA_INGESTION_MODEL=llama3:latest + +# Optional per-role overrides. +OLLAMA_ANALYST_MODEL=options-expert-v1:latest +OLLAMA_CHECKER_MODEL=options-expert-v1:latest +OLLAMA_CRITIC_MODEL=options-expert-v1:latest +OLLAMA_FINALIZER_MODEL=options-expert-v1:latest +OLLAMA_FINALIZER_ENRICHMENT_MODEL=llama3:latest + +# ----------------------------------------------------------------------------- +# IV. Retrieval and Embedding Controls +# ----------------------------------------------------------------------------- +EMBEDDING_PROVIDER=huggingface +EMBEDDING_MODEL_NAME=BAAI/bge-large-en-v1.5 +EMBEDDING_DEVICE=cpu +RETRIEVER_DEVICE=cpu +FASTEMBED_THREADS=4 +SPARSE_MODEL_NAME=prithivida/Splade_PP_en_v1 +RERANKER_MODEL_NAME=BAAI/bge-reranker-v2-m3 +DATA_LAKE_ROOT=./Data + +# ----------------------------------------------------------------------------- +# V. Agent Risk and Governance Controls +# ----------------------------------------------------------------------------- +AGENT_MAX_REVISIONS=3 +CHECKER_NUMERIC_TOLERANCE=0.02 +CHECKER_TOOL_RECOVERY=1 +CHECKER_MACRO_EXEMPT_ENABLED=1 +CHECKER_COVERAGE_CHECK_ENABLED=1 +INSIDER_SIGNAL_MIN_COUNT=3 + +# Optional analyst/finalizer tuning. +ANALYST_TEMPERATURE=0.1 +CRITIC_TEMPERATURE=0.0 +FINALIZER_TEMPERATURE=0.0 +FINALIZER_LLAMA3_ENRICHMENT=0 + +# ----------------------------------------------------------------------------- +# VI. Routing and Performance Controls +# ----------------------------------------------------------------------------- +ROUTER_TEMPERATURE=0.0 +GOLD_TIMEOUT=10.0 +SILVER_TIMEOUT=10.0 +SILVER_MAX_TICKERS=5 +HE_NOVEL_TICKERS_CAP=3 +TICKER_EXPLOSION_CAP=8 +TICKER_EXPLOSION_KEEP=5 + +# ----------------------------------------------------------------------------- +# VII. Optional Runtime and Cache Controls +# ----------------------------------------------------------------------------- +PYTHON_ENV=dev +YFINANCE_CACHE_DIR= +XDG_CACHE_HOME= +TMPDIR= diff --git a/.gitignore b/.gitignore index 38f1099..b7faf40 100644 --- a/.gitignore +++ b/.gitignore @@ -1,30 +1,207 @@ -# Python cache and virtual environments +# Byte-compiled / optimized / DLL files __pycache__/ -*.pyc -.venv/ -venv/ +*.py[codz] +*$py.class -# Large model files -# Assuming Ollama stores models in a default or custom directory -.ollama/ -models/ -options-expert +# C extensions +*.so -# Environment variables and secrets -.env -*.env +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.nox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +*.py.cover +.hypothesis/ +.pytest_cache/ +cover/ -# Data and Logs -data/ -logs/ +# Translations +*.mo +*.pot + +# Django stuff: *.log -Youtube_channel_ID +local_settings.py +db.sqlite3 +db.sqlite3-journal + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +.pybuilder/ +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# IPython +profile_default/ +ipython_config.py + +# pyenv +# For a library or package, you might want to ignore these files since the code is +# intended to run in multiple environments; otherwise, check them in: +# .python-version + +# pipenv +# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. +# However, in case of collaboration, if having platform-specific dependencies or dependencies +# having no cross-platform support, pipenv may install dependencies that don't work, or not +# install all needed dependencies. +#Pipfile.lock + +# UV +# Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control. +# This is especially recommended for binary packages to ensure reproducibility, and is more +# commonly ignored for libraries. +#uv.lock + +# poetry +# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. +# This is especially recommended for binary packages to ensure reproducibility, and is more +# commonly ignored for libraries. +# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control +#poetry.lock +#poetry.toml + +# pdm +# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. +# pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python. +# https://pdm-project.org/en/latest/usage/project/#working-with-version-control +#pdm.lock +#pdm.toml +.pdm-python +.pdm-build/ + +# pixi +# Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control. +#pixi.lock +# Pixi creates a virtual environment in the .pixi directory, just like venv module creates one +# in the .venv directory. It is recommended not to include this directory in version control. +.pixi + +# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm +__pypackages__/ + +# Celery stuff +celerybeat-schedule +celerybeat.pid + +# SageMath parsed files +*.sage.py + +# Environments +.env +.envrc +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ +.dmypy.json +dmypy.json + +# Pyre type checker +.pyre/ + +# pytype static type analyzer +.pytype/ + +# Cython debug symbols +cython_debug/ + +# PyCharm +# JetBrains specific template is maintained in a separate JetBrains.gitignore that can +# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore +# and can be added to the global gitignore or merged into this file. For a more nuclear +# option (not recommended) you can uncomment the following to ignore the entire idea folder. +#.idea/ + +# Abstra +# Abstra is an AI-powered process automation framework. +# Ignore directories containing user credentials, local state, and settings. +# Learn more at https://abstra.io/docs +.abstra/ + +# Visual Studio Code +# Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore +# that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore +# and can be added to the global gitignore or merged into this file. However, if you prefer, +# you could uncomment the following to ignore the entire vscode folder +# .vscode/ + +# Ruff stuff: +.ruff_cache/ + +# PyPI configuration file +.pypirc -# IDE and OS-specific files -.idea/ -.vscode/ -.DS_Store +# Cursor +# Cursor is an AI-powered code editor. `.cursorignore` specifies files/directories to +# exclude from AI features like autocomplete and code analysis. Recommended for sensitive data +# refer to https://docs.cursor.com/context/ignore-files +.cursorignore +.cursorindexingignore -# Qdrant data and monitoring folders -qdrant_storage/ -monitoring/ +# Marimo +marimo/_static/ +marimo/_lsp/ +__marimo__/ diff --git a/Data/1_Bronze_Raw/GPR_index/2026-04-10/gpr_preview.csv b/Data/1_Bronze_Raw/GPR_index/2026-04-10/gpr_preview.csv new file mode 100644 index 0000000..8620b3b --- /dev/null +++ b/Data/1_Bronze_Raw/GPR_index/2026-04-10/gpr_preview.csv @@ -0,0 +1,25 @@ +month,gpr,gprt,gpra,gprh,gprht,gprha,share_gpr,n10,share_gprh,n3h,gprh_noew,gpr_noew,gprh_and,gpr_and,gprh_basic,gpr_basic,shareh_cat_1,shareh_cat_2,shareh_cat_3,shareh_cat_4,shareh_cat_5,shareh_cat_6,shareh_cat_7,shareh_cat_8,gprc_arg,gprc_aus,gprc_bel,gprc_bra,gprc_can,gprc_che,gprc_chl,gprc_chn,gprc_col,gprc_deu,gprc_dnk,gprc_egy,gprc_esp,gprc_fin,gprc_fra,gprc_gbr,gprc_hkg,gprc_hun,gprc_idn,gprc_ind,gprc_isr,gprc_ita,gprc_jpn,gprc_kor,gprc_mex,gprc_mys,gprc_nld,gprc_nor,gprc_per,gprc_phl,gprc_pol,gprc_prt,gprc_rus,gprc_sau,gprc_swe,gprc_tha,gprc_tun,gprc_tur,gprc_twn,gprc_ukr,gprc_usa,gprc_ven,gprc_vnm,gprc_zaf,gprhc_arg,gprhc_aus,gprhc_bel,gprhc_bra,gprhc_can,gprhc_che,gprhc_chl,gprhc_chn,gprhc_col,gprhc_deu,gprhc_dnk,gprhc_egy,gprhc_esp,gprhc_fin,gprhc_fra,gprhc_gbr,gprhc_hkg,gprhc_hun,gprhc_idn,gprhc_ind,gprhc_isr,gprhc_ita,gprhc_jpn,gprhc_kor,gprhc_mex,gprhc_mys,gprhc_nld,gprhc_nor,gprhc_per,gprhc_phl,gprhc_pol,gprhc_prt,gprhc_rus,gprhc_sau,gprhc_swe,gprhc_tha,gprhc_tun,gprhc_tur,gprhc_twn,gprhc_ukr,gprhc_usa,gprhc_ven,gprhc_vnm,gprhc_zaf,var_name,var_label,date,gpr_mom_pct,gpr_yoy_pct,gpr_3m_ma,gpr_percentile +2024-04-01,163.95,170.7,165.99,112.01,120.66,119.72,4.92,15801.0,4.04,6014,146.92,154.11,76.6,138.23,164.73,148.76,0.71,0.02,1.41,0.17,0.17,1.43,0.73,0.58,0.04,0.31,0.24,0.09,0.47,0.05,0.01,1.04,0.05,0.72,0.03,0.7,0.17,0.08,0.82,2.0,0.12,0.05,0.08,0.25,2.91,0.19,0.28,0.27,0.13,0.02,0.12,0.07,0.03,0.08,0.32,0.03,1.83,0.39,0.13,0.06,0.0,0.25,0.3,1.67,4.02,0.04,0.08,0.14,0.05,0.28,0.12,0.08,0.27,0.03,0.0,0.63,0.08,0.62,0.05,0.45,0.12,0.03,0.8,1.01,0.03,0.02,0.1,0.17,2.36,0.17,0.27,0.3,0.15,0.02,0.13,0.02,0.07,0.1,0.22,0.03,1.56,0.3,0.15,0.05,0.0,0.27,0.3,1.51,3.84,0.03,0.07,0.15,,,2024-04-01,23.07,53.49,147.92,94.75 +2024-05-01,130.52,131.45,133.15,107.46,128.57,102.5,3.91,16348.0,3.88,6062,153.61,146.35,74.05,128.27,176.29,135.79,0.56,0.03,1.5,0.43,0.13,1.24,0.64,0.4,0.07,0.21,0.22,0.05,0.28,0.09,0.02,0.94,0.03,0.48,0.02,0.71,0.17,0.04,0.64,1.25,0.07,0.07,0.04,0.13,1.75,0.15,0.18,0.26,0.06,0.02,0.13,0.13,0.01,0.02,0.18,0.01,1.72,0.26,0.12,0.01,0.01,0.18,0.23,1.53,3.11,0.07,0.09,0.18,0.08,0.18,0.18,0.03,0.08,0.07,0.02,0.86,0.07,0.56,0.03,0.86,0.2,0.05,0.82,0.61,0.02,0.05,0.03,0.13,1.8,0.25,0.15,0.18,0.1,0.02,0.13,0.13,0.02,0.03,0.18,0.02,1.73,0.33,0.08,0.02,0.02,0.21,0.25,1.53,3.74,0.07,0.1,0.2,,,2024-05-01,-20.39,20.33,142.56,83.64 +2024-06-01,113.09,125.71,109.74,86.77,100.23,89.5,3.39,15772.0,3.13,6006,132.48,124.54,64.03,105.52,166.58,131.14,0.47,0.05,1.13,0.4,0.17,1.13,0.4,0.52,0.04,0.14,0.27,0.08,0.24,0.18,0.01,0.89,0.04,0.45,0.08,0.47,0.11,0.03,0.72,1.22,0.04,0.13,0.04,0.19,1.52,0.34,0.26,0.34,0.06,0.02,0.12,0.11,0.03,0.12,0.14,0.03,1.47,0.15,0.11,0.01,0.05,0.17,0.18,1.27,2.69,0.06,0.11,0.11,0.02,0.13,0.2,0.03,0.08,0.17,0.02,0.68,0.08,0.27,0.02,0.48,0.17,0.0,0.7,0.52,0.03,0.08,0.02,0.1,1.55,0.33,0.2,0.33,0.08,0.02,0.15,0.1,0.05,0.12,0.2,0.02,1.27,0.1,0.03,0.02,0.08,0.22,0.25,1.12,3.08,0.07,0.12,0.1,,,2024-06-01,-13.35,2.32,135.85,74.75 +2024-07-01,92.39,95.16,95.11,71.84,79.6,68.05,2.77,16238.0,2.59,5942,113.29,111.86,66.04,111.78,155.8,107.06,0.45,0.0,0.89,0.25,0.08,0.88,0.45,0.3,0.02,0.07,0.12,0.07,0.17,0.08,0.03,0.73,0.06,0.43,0.03,0.28,0.12,0.03,0.47,1.07,0.08,0.16,0.04,0.16,1.08,0.14,0.16,0.19,0.04,0.02,0.07,0.06,0.01,0.04,0.15,0.02,0.99,0.14,0.09,0.01,0.0,0.15,0.15,0.87,2.09,0.1,0.06,0.06,0.0,0.05,0.12,0.03,0.05,0.08,0.0,0.47,0.07,0.32,0.03,0.35,0.13,0.02,0.54,0.56,0.05,0.15,0.03,0.22,1.16,0.17,0.13,0.2,0.05,0.03,0.07,0.05,0.02,0.07,0.05,0.07,0.74,0.19,0.05,0.02,0.0,0.25,0.1,0.66,2.47,0.1,0.12,0.12,,,2024-07-01,-18.3,-14.01,112.0,49.09 +2024-08-01,140.98,124.8,165.18,105.3,100.77,122.46,4.23,15798.0,3.8,6081,138.91,136.32,72.14,123.21,146.36,126.97,0.66,0.03,1.18,0.15,0.1,1.46,0.79,0.53,0.04,0.17,0.08,0.15,0.19,0.1,0.01,0.64,0.09,0.42,0.08,0.79,0.05,0.08,0.65,1.59,0.09,0.04,0.06,0.23,1.88,0.13,0.1,0.17,0.12,0.04,0.05,0.1,0.02,0.07,0.13,0.02,1.55,0.26,0.07,0.05,0.01,0.22,0.13,1.34,3.21,0.15,0.07,0.07,0.03,0.12,0.03,0.18,0.05,0.1,0.02,0.59,0.13,0.31,0.07,0.9,0.03,0.12,0.69,0.81,0.05,0.02,0.07,0.25,1.94,0.15,0.08,0.25,0.12,0.03,0.02,0.07,0.03,0.1,0.1,0.0,1.38,0.21,0.0,0.05,0.0,0.16,0.2,1.13,3.65,0.18,0.03,0.03,,,2024-08-01,52.58,39.38,115.49,89.09 +2024-09-01,130.36,134.04,135.55,95.7,102.59,100.68,3.91,15371.0,3.45,6025,144.5,133.14,62.65,108.63,183.3,137.65,0.45,0.0,1.13,0.55,0.12,1.08,0.68,0.5,0.03,0.08,0.15,0.11,0.23,0.03,0.03,0.77,0.04,0.49,0.02,0.47,0.08,0.06,0.79,1.64,0.03,0.14,0.04,0.17,1.85,0.12,0.21,0.27,0.1,0.03,0.03,0.04,0.0,0.08,0.12,0.02,1.44,0.15,0.06,0.03,0.0,0.27,0.21,1.3,2.97,0.07,0.05,0.07,0.05,0.08,0.13,0.13,0.13,0.03,0.05,0.7,0.07,0.45,0.02,0.38,0.08,0.1,0.76,0.86,0.02,0.18,0.02,0.18,1.63,0.1,0.17,0.38,0.15,0.0,0.03,0.07,0.0,0.08,0.15,0.03,1.29,0.12,0.03,0.03,0.0,0.3,0.17,1.26,3.3,0.08,0.05,0.03,,,2024-09-01,-7.53,32.16,121.24,83.43 +2024-10-01,130.69,128.41,142.82,90.89,103.32,94.79,3.92,16174.0,3.28,6191,143.66,147.16,63.51,113.23,177.34,143.31,0.73,0.02,1.03,0.57,0.05,1.16,0.68,0.37,0.04,0.11,0.2,0.09,0.22,0.07,0.0,0.98,0.01,0.55,0.05,0.27,0.1,0.11,0.65,1.45,0.11,0.08,0.14,0.27,2.1,0.27,0.22,0.4,0.13,0.04,0.11,0.11,0.01,0.04,0.19,0.01,1.37,0.3,0.1,0.04,0.01,0.28,0.31,1.1,3.03,0.04,0.04,0.15,0.0,0.11,0.24,0.05,0.13,0.05,0.0,0.73,0.0,0.5,0.06,0.21,0.02,0.18,0.65,0.68,0.03,0.06,0.11,0.08,1.74,0.19,0.26,0.42,0.08,0.0,0.08,0.06,0.02,0.1,0.21,0.0,1.24,0.29,0.15,0.02,0.0,0.29,0.39,1.03,3.15,0.05,0.05,0.06,,,2024-10-01,0.25,-33.96,134.01,83.84 +2024-11-01,128.9,139.15,127.43,94.96,123.34,88.91,3.87,15881.0,3.43,6101,129.24,135.68,69.46,112.61,159.19,139.03,0.84,0.05,1.16,0.7,0.03,1.2,0.61,0.31,0.05,0.11,0.2,0.21,0.33,0.06,0.03,1.01,0.03,0.7,0.05,0.21,0.13,0.14,0.69,1.52,0.07,0.16,0.03,0.18,1.41,0.25,0.2,0.85,0.15,0.01,0.11,0.12,0.1,0.03,0.13,0.01,1.97,0.21,0.14,0.03,0.0,0.28,0.19,1.79,3.17,0.08,0.09,0.09,0.03,0.07,0.21,0.25,0.13,0.05,0.03,0.85,0.05,0.54,0.05,0.26,0.07,0.1,0.61,0.69,0.1,0.1,0.02,0.11,1.38,0.26,0.16,0.89,0.1,0.0,0.07,0.05,0.18,0.05,0.13,0.0,1.79,0.2,0.08,0.02,0.0,0.3,0.2,1.7,3.38,0.13,0.08,0.08,,,2024-11-01,-1.37,-17.74,129.98,82.83 +2024-12-01,142.37,128.26,164.81,116.52,113.43,124.54,4.27,14379.0,4.2,5781,154.34,144.1,76.3,115.33,171.37,141.36,0.48,0.03,1.56,0.31,0.1,1.07,1.45,0.38,0.03,0.11,0.16,0.09,0.31,0.06,0.01,0.84,0.03,0.54,0.07,0.26,0.06,0.12,0.55,1.53,0.06,0.07,0.02,0.19,1.61,0.15,0.21,0.54,0.16,0.03,0.1,0.1,0.04,0.03,0.08,0.02,2.3,0.34,0.1,0.01,0.01,1.2,0.18,1.54,3.29,0.04,0.03,0.1,0.02,0.07,0.1,0.1,0.09,0.05,0.0,0.8,0.07,0.45,0.03,0.28,0.03,0.07,0.73,1.04,0.0,0.07,0.05,0.21,1.8,0.17,0.16,0.45,0.14,0.03,0.09,0.07,0.1,0.03,0.1,0.03,2.25,0.29,0.03,0.02,0.02,1.19,0.19,1.54,4.03,0.02,0.05,0.14,,,2024-12-01,10.45,0.06,133.99,89.7 +2025-01-01,113.23,117.09,109.5,100.89,112.79,99.39,3.4,15988.0,3.64,8435,163.71,106.15,76.39,87.77,220.27,158.36,0.31,0.07,1.62,0.13,0.15,1.11,0.56,0.59,0.03,0.08,0.13,0.19,0.34,0.11,0.04,0.86,0.24,0.53,0.18,0.31,0.0,0.1,0.63,1.3,0.1,0.07,0.04,0.24,1.03,0.14,0.14,0.35,0.34,0.01,0.09,0.08,0.03,0.04,0.16,0.02,1.13,0.24,0.08,0.03,0.02,0.21,0.16,0.8,2.75,0.11,0.01,0.08,0.02,0.08,0.12,0.13,0.17,0.12,0.01,0.51,0.18,0.31,0.12,0.31,0.07,0.08,0.52,0.45,0.07,0.01,0.04,0.2,0.91,0.13,0.18,0.28,0.31,0.0,0.07,0.02,0.04,0.05,0.12,0.0,0.85,0.23,0.01,0.02,0.01,0.14,0.15,0.57,2.32,0.09,0.0,0.05,,,2025-01-01,-20.46,-29.39,128.17,75.15 +2025-02-01,136.97,138.76,140.78,94.49,107.73,98.21,4.11,14848.0,3.41,7833,153.84,111.03,80.25,102.73,206.51,173.12,0.4,0.1,1.19,0.28,0.24,1.29,0.37,0.38,0.05,0.18,0.44,0.05,0.65,0.05,0.01,1.1,0.09,1.14,0.23,0.38,0.0,0.19,1.03,1.76,0.06,0.09,0.05,0.21,1.0,0.2,0.18,0.33,0.46,0.01,0.11,0.09,0.0,0.01,0.4,0.02,1.95,0.69,0.14,0.1,0.01,0.29,0.14,1.76,3.54,0.1,0.06,0.07,0.0,0.11,0.17,0.01,0.27,0.08,0.0,0.51,0.08,0.57,0.05,0.27,0.09,0.14,0.52,0.43,0.01,0.08,0.04,0.14,0.66,0.08,0.14,0.19,0.19,0.0,0.04,0.05,0.0,0.01,0.2,0.01,1.0,0.52,0.08,0.04,0.0,0.19,0.09,0.91,2.22,0.06,0.01,0.0,,,2025-02-01,20.96,-6.57,130.86,86.67 +2025-03-01,173.91,193.7,158.23,119.59,143.99,120.67,5.22,16870.0,4.31,8623,164.99,129.84,96.29,119.56,224.89,197.11,0.66,0.06,1.81,0.36,0.15,1.84,0.61,0.36,0.02,0.17,0.39,0.09,0.95,0.08,0.01,1.08,0.05,0.94,0.17,0.43,0.0,0.17,1.32,2.51,0.13,0.14,0.05,0.24,1.2,0.39,0.29,0.39,0.43,0.03,0.11,0.16,0.04,0.02,0.39,0.04,2.46,0.79,0.14,0.09,0.01,0.34,0.17,2.23,4.46,0.18,0.07,0.08,0.0,0.1,0.22,0.05,0.31,0.05,0.0,0.65,0.0,0.53,0.05,0.34,0.07,0.06,0.71,0.85,0.03,0.08,0.02,0.14,0.89,0.15,0.1,0.36,0.17,0.03,0.05,0.06,0.05,0.01,0.2,0.05,1.44,0.58,0.08,0.06,0.0,0.19,0.12,1.32,2.96,0.17,0.06,0.02,,,2025-03-01,26.97,30.55,141.37,95.96 +2025-04-01,140.97,159.26,132.06,111.29,144.29,106.61,4.23,16484.0,4.01,8419,161.8,115.62,88.56,116.33,230.72,174.69,0.58,0.05,1.95,0.46,0.12,1.24,0.52,0.48,0.04,0.1,0.27,0.1,0.39,0.08,0.01,1.06,0.03,0.61,0.08,0.24,0.0,0.08,0.76,1.51,0.07,0.12,0.08,0.42,1.12,0.41,0.32,0.32,0.22,0.05,0.08,0.12,0.02,0.05,0.11,0.01,1.52,0.26,0.08,0.08,0.0,0.27,0.13,1.29,3.52,0.18,0.16,0.12,0.04,0.05,0.21,0.12,0.19,0.05,0.0,0.69,0.04,0.37,0.07,0.12,0.07,0.08,0.64,0.61,0.01,0.15,0.05,0.39,0.88,0.33,0.21,0.2,0.2,0.07,0.06,0.07,0.04,0.06,0.07,0.0,1.12,0.26,0.06,0.1,0.0,0.33,0.12,0.82,2.91,0.19,0.14,0.06,,,2025-04-01,-18.94,-14.01,150.62,88.89 +2025-05-01,165.66,203.55,148.82,128.91,188.27,107.88,4.97,17087.0,4.65,8365,170.42,127.3,87.91,111.31,222.5,168.7,0.96,0.06,2.52,0.53,0.13,1.26,0.26,0.75,0.05,0.18,0.22,0.07,0.74,0.15,0.02,1.12,0.04,0.67,0.08,0.29,0.0,0.08,1.02,1.99,0.1,0.05,0.09,0.76,1.89,0.36,0.17,0.32,0.19,0.03,0.09,0.09,0.03,0.04,0.19,0.02,1.49,0.7,0.2,0.04,0.02,0.69,0.21,1.39,4.1,0.19,0.1,0.09,0.01,0.14,0.1,0.06,0.35,0.08,0.01,0.68,0.06,0.45,0.07,0.17,0.17,0.02,0.77,0.74,0.06,0.02,0.04,0.6,1.29,0.27,0.1,0.27,0.22,0.05,0.04,0.08,0.01,0.04,0.04,0.02,1.04,0.59,0.05,0.05,0.02,0.57,0.12,0.96,3.37,0.31,0.14,0.08,,,2025-05-01,17.51,26.92,160.18,94.95 +2025-06-01,222.38,288.16,183.32,156.37,237.55,122.95,6.67,16087.0,5.64,7942,202.73,162.47,93.58,123.21,225.77,191.56,0.93,0.03,2.58,2.01,0.1,1.61,0.55,0.52,0.03,0.3,0.21,0.09,0.94,0.07,0.01,1.39,0.02,0.92,0.1,0.37,0.0,0.07,1.1,2.76,0.11,0.05,0.02,0.47,4.18,0.24,0.39,0.42,0.2,0.04,0.32,0.19,0.01,0.04,0.17,0.01,2.18,0.46,0.19,0.04,0.01,0.67,0.21,1.77,5.66,0.05,0.11,0.05,0.01,0.19,0.16,0.05,0.38,0.03,0.01,0.87,0.03,0.42,0.03,0.3,0.23,0.04,0.72,0.81,0.0,0.05,0.01,0.3,2.35,0.19,0.29,0.39,0.16,0.04,0.25,0.14,0.03,0.05,0.1,0.01,1.45,0.42,0.13,0.04,0.03,0.48,0.19,1.21,3.79,0.04,0.14,0.03,,,2025-06-01,34.24,96.63,176.34,97.58 +2025-07-01,134.02,156.11,118.93,106.2,136.62,101.12,4.02,16568.0,3.83,8144,136.99,102.86,78.15,100.26,159.54,132.01,0.39,0.04,1.92,0.48,0.11,1.2,0.72,0.36,0.02,0.12,0.17,0.1,0.39,0.08,0.0,0.9,0.02,0.65,0.11,0.32,0.0,0.09,0.71,1.62,0.05,0.03,0.13,0.36,1.8,0.24,0.31,0.35,0.1,0.16,0.11,0.09,0.01,0.1,0.11,0.02,1.39,0.21,0.12,0.14,0.01,0.36,0.11,1.21,3.16,0.05,0.1,0.06,0.0,0.07,0.12,0.04,0.21,0.02,0.0,0.7,0.0,0.44,0.1,0.25,0.05,0.04,0.53,0.72,0.04,0.01,0.06,0.31,1.22,0.09,0.25,0.27,0.06,0.15,0.06,0.09,0.0,0.07,0.06,0.01,0.92,0.14,0.11,0.15,0.0,0.26,0.12,0.76,2.69,0.05,0.07,0.0,,,2025-07-01,-39.73,45.05,174.02,85.66 +2025-08-01,138.56,160.42,120.88,119.71,179.55,92.08,4.16,15640.0,4.32,7873,163.31,115.87,84.53,102.26,193.91,148.39,0.53,0.03,2.71,0.42,0.2,1.33,0.32,0.39,0.02,0.22,0.19,0.11,0.45,0.04,0.01,0.81,0.04,0.91,0.06,0.29,0.0,0.27,0.97,1.71,0.07,0.12,0.03,0.47,1.52,0.33,0.28,0.27,0.1,0.03,0.06,0.1,0.02,0.04,0.17,0.03,1.7,0.18,0.11,0.03,0.01,0.25,0.1,1.57,3.39,0.08,0.1,0.09,0.01,0.19,0.14,0.11,0.19,0.04,0.0,0.55,0.05,0.6,0.03,0.3,0.11,0.25,0.8,0.88,0.03,0.09,0.01,0.46,1.04,0.24,0.25,0.15,0.08,0.03,0.05,0.05,0.01,0.01,0.15,0.01,1.28,0.18,0.06,0.04,0.0,0.22,0.09,1.21,2.96,0.1,0.09,0.06,,,2025-08-01,3.39,-1.71,164.99,88.08 +2025-09-01,125.87,141.81,114.79,113.95,161.89,91.92,3.78,15310.0,4.11,8101,168.33,106.07,85.25,93.06,234.97,159.94,0.58,0.04,2.17,0.33,0.31,1.21,0.41,0.43,0.01,0.25,0.27,0.09,0.41,0.03,0.0,1.01,0.09,0.68,0.12,0.28,0.0,0.1,0.9,1.44,0.03,0.22,0.05,0.4,1.38,0.32,0.19,0.24,0.19,0.03,0.09,0.12,0.01,0.04,0.46,0.1,1.43,0.25,0.1,0.03,0.02,0.28,0.12,1.2,3.11,0.22,0.08,0.08,0.0,0.15,0.1,0.1,0.2,0.02,0.0,0.62,0.11,0.47,0.09,0.21,0.15,0.07,0.67,0.74,0.01,0.12,0.01,0.23,1.02,0.16,0.2,0.17,0.23,0.0,0.1,0.1,0.01,0.05,0.28,0.06,0.93,0.2,0.09,0.04,0.02,0.26,0.09,0.77,2.74,0.3,0.11,0.07,,,2025-09-01,-9.16,-3.44,132.82,82.22 +2025-10-01,154.51,168.0,151.55,132.36,165.64,122.54,4.63,15989.0,4.77,8210,178.21,118.42,91.19,106.61,236.2,171.55,0.58,0.1,2.25,0.29,0.35,1.34,0.6,0.77,0.04,0.21,0.26,0.13,0.27,0.04,0.03,0.94,0.29,0.54,0.21,0.57,0.0,0.05,0.57,1.41,0.12,0.31,0.08,0.29,1.49,0.18,0.29,0.33,0.29,0.1,0.15,0.18,0.02,0.05,0.28,0.02,1.51,0.23,0.14,0.11,0.02,0.51,0.19,1.21,3.75,0.53,0.04,0.1,0.02,0.13,0.17,0.11,0.09,0.0,0.04,0.63,0.35,0.23,0.11,0.33,0.16,0.0,0.35,0.45,0.06,0.27,0.04,0.22,0.91,0.1,0.19,0.3,0.33,0.12,0.1,0.1,0.01,0.06,0.16,0.0,0.85,0.12,0.05,0.07,0.01,0.29,0.17,0.76,3.2,0.62,0.02,0.09,,,2025-10-01,22.76,18.23,139.65,93.13 +2025-11-01,104.34,118.68,88.69,90.52,119.1,77.96,3.13,15913.0,3.27,7717,133.55,95.64,70.88,89.74,184.78,133.71,0.45,0.04,1.71,0.25,0.18,0.79,0.31,0.63,0.04,0.07,0.23,0.09,0.3,0.08,0.02,0.65,0.22,0.55,0.06,0.19,0.0,0.04,0.55,1.0,0.04,0.11,0.09,0.19,0.58,0.11,0.16,0.2,0.23,0.04,0.06,0.12,0.01,0.03,0.25,0.04,1.29,0.2,0.06,0.04,0.01,0.31,0.14,0.99,2.66,0.46,0.05,0.25,0.04,0.04,0.1,0.06,0.18,0.03,0.01,0.51,0.26,0.32,0.05,0.18,0.17,0.03,0.39,0.41,0.04,0.06,0.08,0.22,0.4,0.08,0.12,0.21,0.23,0.03,0.03,0.08,0.03,0.05,0.06,0.04,0.88,0.18,0.03,0.04,0.0,0.19,0.13,0.52,2.16,0.51,0.08,0.09,,,2025-11-01,-32.47,-19.06,128.24,66.67 +2025-12-01,131.39,145.27,122.23,112.33,142.11,99.59,3.94,15250.0,4.05,7527,150.71,111.45,82.47,95.77,218.36,170.89,0.52,0.08,2.02,0.2,0.27,0.89,0.4,0.97,0.08,0.42,0.3,0.09,0.19,0.05,0.03,1.0,0.16,0.7,0.11,0.16,0.0,0.1,0.67,1.29,0.14,0.14,0.03,0.31,0.66,0.15,0.26,0.2,0.1,0.07,0.14,0.19,0.01,0.14,0.24,0.01,1.67,0.15,0.15,0.1,0.01,0.24,0.26,1.35,3.23,0.71,0.03,0.04,0.05,0.21,0.16,0.12,0.08,0.04,0.03,0.81,0.15,0.5,0.07,0.07,0.04,0.07,0.56,0.53,0.05,0.09,0.03,0.2,0.44,0.19,0.2,0.15,0.08,0.08,0.12,0.15,0.01,0.09,0.27,0.0,1.22,0.16,0.12,0.13,0.0,0.16,0.23,0.88,2.87,0.57,0.04,0.04,,,2025-12-01,25.93,-7.71,130.08,84.44 +2026-01-01,167.8,219.48,99.39,128.07,198.12,70.97,5.03,16074.0,4.62,7922,159.57,128.76,96.79,121.54,227.16,182.66,0.96,0.03,2.68,0.45,0.15,0.61,0.42,0.56,0.16,0.11,0.21,0.18,0.67,0.41,0.12,1.5,0.34,0.66,0.52,0.2,0.0,0.11,0.93,1.88,0.09,0.11,0.07,0.32,1.16,0.27,0.32,0.21,0.34,0.05,0.14,0.47,0.05,0.05,0.18,0.02,1.89,0.34,0.15,0.04,0.02,0.37,0.2,1.18,4.55,1.93,0.02,0.06,0.15,0.1,0.14,0.16,0.28,0.38,0.05,1.02,0.25,0.54,0.34,0.15,0.19,0.09,0.67,0.76,0.05,0.09,0.1,0.34,0.81,0.24,0.21,0.14,0.33,0.06,0.1,0.25,0.06,0.06,0.16,0.03,1.31,0.24,0.1,0.08,0.03,0.3,0.15,0.86,3.4,1.44,0.01,0.01,,,2026-01-01,27.71,48.19,134.51,95.35 +2026-02-01,121.62,158.19,82.99,108.26,159.08,74.48,3.65,15160.0,3.91,6555,144.91,115.89,77.22,103.59,197.72,136.04,0.85,0.05,1.98,0.87,0.11,0.88,0.46,0.31,0.09,0.16,0.09,0.09,0.41,0.18,0.02,0.88,0.05,0.46,0.14,0.23,0.0,0.06,0.56,1.19,0.05,0.09,0.04,0.44,1.13,0.14,0.2,0.23,0.28,0.03,0.09,0.09,0.01,0.04,0.13,0.01,1.3,0.32,0.11,0.05,0.0,0.37,0.13,0.9,3.12,0.56,0.06,0.05,0.12,0.15,0.06,0.12,0.21,0.21,0.03,0.55,0.08,0.34,0.2,0.32,0.18,0.05,0.58,0.49,0.02,0.11,0.08,0.35,0.98,0.08,0.18,0.23,0.31,0.03,0.08,0.06,0.0,0.02,0.11,0.02,0.93,0.31,0.09,0.08,0.0,0.32,0.15,0.72,2.87,0.67,0.11,0.02,,,2026-02-01,-27.52,-11.21,140.27,80.81 +2026-03-01,297.27,293.39,404.05,251.38,282.04,312.33,8.92,15668.0,9.07,7642,293.68,227.77,119.33,142.94,411.87,333.81,1.88,0.05,3.08,0.98,0.29,5.61,0.9,0.52,0.05,0.47,0.33,0.17,0.87,0.2,0.04,1.55,0.13,1.21,0.19,0.63,0.0,0.1,1.77,3.56,0.15,0.12,0.11,0.93,6.1,0.56,0.86,0.7,0.26,0.06,0.26,0.33,0.03,0.11,0.13,0.03,2.34,2.23,0.11,0.18,0.0,0.82,0.31,1.9,8.39,1.05,0.25,0.07,0.03,0.24,0.35,0.12,0.39,0.09,0.03,1.54,0.14,0.79,0.18,0.48,0.18,0.09,1.39,1.35,0.14,0.13,0.16,0.88,4.87,0.37,0.96,0.68,0.29,0.09,0.18,0.26,0.01,0.12,0.13,0.04,2.03,1.91,0.07,0.26,0.0,0.58,0.37,1.5,7.03,1.07,0.3,0.04,,,2026-03-01,144.43,70.93,195.56,98.59 diff --git a/Data/1_Bronze_Raw/News_Scrapes/2026-04-08/Full_text/full_text_asset_precious_metals_spot.jsonl b/Data/1_Bronze_Raw/News_Scrapes/2026-04-08/Full_text/full_text_asset_precious_metals_spot.jsonl new file mode 100644 index 0000000..99daa7d --- /dev/null +++ b/Data/1_Bronze_Raw/News_Scrapes/2026-04-08/Full_text/full_text_asset_precious_metals_spot.jsonl @@ -0,0 +1,5 @@ +{"url": "https://www.illawarramercury.com.au/story/9217560/everything-you-need-to-know-about-flying-with-pets-in-cabin/", "title": "Everything you need to know about flying with pets in cabin | Illawarra Mercury", "publish_date": "2026-04-09T01:22:35Z", "full_text": "In this article\n\nWhich routes are available?\n\nHow many pets can be booked on each flight?\n\nWhich pets are allowed?\n\nDo pets need to go in a carrier?\n\nHow will security work?\n\nCan pets go to the toilet during the flight?\n\nWhere will you be seated?\n\nWhat if you are allergic to pets - should you fly on these services?\n\nHow much are the services?\n\nDoes this replace your carry-on baggage allowance?"} +{"url": "https://www.itbear.com.cn/html/2026-04/1264928.html", "title": "逆境中破局前行 , 埃安换标推新高端品牌引领行业新变革 - 智能汽车 - ITBear比尔科技", "publish_date": "2026-04-09T01:22:35Z", "full_text": "新能源汽车赛道再掀波澜,埃安品牌近日以一系列大动作引发行业高度关注。继冲刺科创板新能源汽车第一股的消息传出后,这家企业又于9月15日举办全新品牌发布会,通过品牌升级、技术突破与产品创新,向市场投下三枚重磅\"炸弹\"。\n\n发布会上最直观的变革来自品牌视觉系统。埃安正式启用全新\"AI神箭\"LOGO,以极具张力的弓箭造型诠释科技向上的品牌理念。这一设计不仅与航天领域形成视觉呼应,更通过动态线条传递出突破边界的进取姿态。品牌负责人表示,新标识象征着埃安从传统车企向科技企业转型的决心,也预示着品牌将开启高端化发展的新篇章。\n\n在产品矩阵层面,埃安推出全新高端品牌Hyper昊铂,剑指全球智能纯电市场制高点。该品牌首款车型Hyper SSR的亮相堪称全场焦点——这款中国首台量产超跑以1.9秒破百的加速性能刷新行业认知,其搭载的AI轨迹牵引系统、双电机四驱技术等12项核心专利,均实现100%自主知识产权。更值得关注的是,整车采用航天级碳纤维材料与低风阻设计,在性能与美学间达成完美平衡。\n\n此次品牌焕新被业界视为埃安混改进程的关键节点。从启动A轮引战增资到筹备科创板上市,从电池技术突破到超跑量产落地,埃安正通过\"技术+资本\"双轮驱动构建竞争壁垒。行业分析师指出,Hyper昊铂品牌的推出不仅完善了埃安的产品梯度,更通过超跑这类技术标杆产品,为品牌注入高端基因,这种战略布局与特斯拉通过Model S树立品牌形象有着异曲同工之妙。\n\n随着中国航天合作项目的深入,埃安的科技属性持续强化。从电池热失控防护技术到星灵电子电气架构,从弹匣电池到超跑级电驱系统,这家成立仅5年的企业已构建起覆盖\"三电\"核心领域的专利矩阵。此次发布的Hyper品牌,或将通过航天级标准的严苛验证,推动中国新能源汽车产业向更高维度突破。"} +{"url": "https://www.163.com/dy/article/KQ2DKDEO05198UNI.html", "title": "无惧地缘逆风 ! 高盛 : AI支出浪潮汹涌 , 布局 卖铲人 正当时|人工智能", "publish_date": "2026-04-09T01:22:35Z", "full_text": "特别声明:以上内容(如有图片或视频亦包括在内)为自媒体平台“网易号”用户上传并发布,本平台仅提供信息存储服务。\n\nNotice: The content above (including the pictures and videos if any) is uploaded and posted by a user of NetEase Hao, which is a social media platform and only provides information storage services."} +{"url": "https://www.finanznachrichten.de/nachrichten-2026-04/68152259-alkane-resources-limited-march-2026-quarter-production-update-399.htm", "title": "Alkane Resources Limited : March 2026 Quarter Production Update", "publish_date": "2026-04-09T01:22:35Z", "full_text": "Quarterly Production of 45,776 oz AuEq1\n\nClosing cash and bullion $362 million - $130 million increase from December\n\nQuarterly gold production of 45,776 AuEq1 oz, comprised of:\n\nMine Group Q3\n\n(1 Jan - 31 Mar 2026) Group YTD2\n\n(1 Jul - 31 March 2026) Production Tomingley 21,652 Au oz 62,076 Au oz Costerfield 10,584 Au oz\n\n377 Sb t\n\n11,691 AuEq oz 29,986 Au oz\n\n842 Sb t\n\n32,869 AuEq oz Björkdal 12,433 Au oz 30,901 Au oz Consolidated 44,669 Au oz\n\n377 Sb t\n\n45,776 AuEq oz 122,963 Au oz\n\n842 Sb t\n\n125,846 AuEq oz Sales Consolidated 42,550 Au oz\n\n280 Sb t\n\n43,373 AuEq oz 119,596 Au oz\n\n829 Sb t\n\n122,416 AuEq oz\n\nCash, bullion and listed investment balance of $374 million. Increase of $128 million from the previous quarter. Alkane has cash & bullion of $362 million, and pro forma liquidity of $472 million when including an undrawn $110 million revolving credit facility (subject to satisfaction of conditions precedent, expected June 2026). The company is debt free except for equipment finance of $20 million at 31 March 2026.\n\nSales of 42,550 ounces of gold and 280 tonnes of antimony.\n\nFY2026 Group Guidance of 160,000 to 175,000 AuEq 1 oz production at an AISC of A$2,600 - $2,900 per AuEq oz remains unchanged. 3\n\nOperations have not been interrupted by diesel supply. Alkane has contracts in place with diesel suppliers for regular fuel deliveries, our suppliers have not indicated any disruptions. Diesel represents a small portion of total costs, as we have three underground mines and power is provided from grid suppliers in Australia and Sweden.\n\nPERTH, Australia, April 08, 2026 (GLOBE NEWSWIRE) -- Alkane Resources Ltd ('Alkane') (ASX:ALK, TSX:ALK, OTC:ALKRY) has produced 45,776 ounces of gold equivalent1 over the period from 1 January 2026 to 31 March 2026. Cash ($328m), bullion ($34m) and listed investments ($12m) totaled A$374 million at the end of the quarter. During the quarter hedging of 8,700 ounces of gold was filled and tax instalments of $15 million were made. Further details will be available in the full March 2026 Quarterly Report later this month.\n\nAlkane Managing Director & CEO, Nic Earner, said:\n\n\"Alkane has had an excellent quarter's production from our three operating mines which together produced 44,669 ounces of gold and 377 tonnes of antimony (45,776 ounces of gold equivalent) over the quarter. We have a very strong balance sheet with A$374 million in cash, bullion and listed investments at quarter end and total liquidity of $472 million including undrawn revolving credit facility.\"\n\nThis document has been authorised for release to the market by Nic Earner, Managing Director & CEO.\n\nABOUTALKANE-alkres.com - ASX:ALK | TSX: ALK | OTCQX: ALKRY\n\nAlkane Resources (ASX:ALK; TSX:ALK; OTCQX:ALKRY) is an Australia-based gold and antimony producer with a portfolio of three operating mines across Australia and Sweden. The Company has a strong balance sheet and is positioned for further growth.\n\nAlkane's wholly owned producing assets are the Tomingley open pit and underground gold mine southwest of Dubbo in Central West New South Wales, the Costerfield gold and antimony underground mining operation northeast of Heathcote in Central Victoria, and the Björkdal underground gold mine northwest of Skellefteå in Sweden (approximately 750km north of Stockholm). Ongoing near-mine regional exploration continues to grow resources at all three operations.\n\nAlkane also owns the very large gold-copper porphyry Boda-Kaiser Project in Central West New South Wales and has outlined an economic development pathway in a Scoping Study. The Company has ongoing exploration within the surrounding Northern Molong Porphyry Project and is confident of further enhancing eastern Australia's reputation as a significant gold, copper and antimony production region.\n\nInteractive Analyst Centre\n\nComprehensive financial, operational, resource and reserve information for Alkane Resources is available through the Interactive Analyst Centre located in the Investors section of our website at alkres.com.\n\nCautionary Note Regarding Forward-Looking Information and Statements\n\nThis announcement contains certain forward-looking information and forward-looking statements within the meaning of applicable securities legislation and may include future-oriented financial information or financial outlook information (collectively \"Forward-Looking Information\"). Actual results and outcomes may vary materially from the amounts set out in any Forward-Looking Information. As well, Forward-Looking Information may relate to: future outlook and anticipated events; expectations regarding exploration potential; production capabilities and future financial or operating performance, including AISC, investment returns, margins and share price performance; production and cost guidance and the timing thereof; issuing updated resources and reserves estimate and the timing thereof; the potential of the Company to meet industry targets, public profile and expectations; and future plans, projections, objectives, estimates and forecasts and the timing related thereto. Forward-Looking Information is generally identified by the use of words like \"will\", \"create\", \"enhance\", \"improve\", \"potential\", \"expect\", \"upside\", \"growth\" and similar expressions and phrases or statements that certain actions, events or results \"may\", \"could\", or \"should\", or the negative connotation of such terms, are intended to identify Forward-Looking Information. Although Alkane believes that the expectations reflected in the Forward-Looking Information are reasonable, undue reliance should not be placed on Forward-Looking Information since no assurance can be provided that such expectations will prove to be correct. Forward-Looking Information is based on information available at the time those statements are made and/or good faith belief of the officers and directors of Alkane as of that time with respect to future events and are subject to risks and uncertainties that could cause actual results to differ materially from those expressed in or suggested by the Forward-Looking Information. Forward-Looking Information involves numerous risks and uncertainties. Such factors include, without limitation: risks relating to changes in the gold and antimony price. Forward-Looking Information is designed to help readers understand Alkane's views as of that time with respect to future events and speak only as of the date they are made. Except as required by applicable law, Alkane assumes no obligation to update or to publicly announce the results of any change to any forward-looking statement contained or incorporated by reference herein to reflect actual results, future events or developments, changes in assumptions or changes in other factors affecting the Forward-looking Information. If Alkane updates any one or more forward-looking statements, no inference should be drawn that the company will make additional updates with respect to those or other Forward-looking Information. All Forward-Looking Information contained in this announcement is expressly qualified in its entirety by this cautionary statement.\n\nDisclaimer\n\nAlkane has prepared this announcement based on information available to it. No representation or warranty, express or implied, is made as to the fairness, accuracy, completeness or correctness of the information, opinions or conclusions contained in this announcement. To the maximum extent permitted by law, none of Alkane, its directors, officers, employees, associates, advisers and agents, nor any other person accepts any liability, including, without limitation, any liability arising from fault or negligence on the part of any of them or any other person, for any loss arising from the use of this announcement or its contents or otherwise arising in connection with it. This announcement is not an offer, invitation, solicitation, or other recommendation with respect to the subscription for, purchase or sale of any security, and neither this announcement nor anything in it shall form the basis of any contract or commitment whatsoever.\n\nCONTACT: NIC EARNER, MANAGING DIRECTOR & CEO, ALKANE RESOURCES LTD, TEL +61 8 9227 5677\n\nINVESTORS & MEDIA: NATALIE CHAPMAN, CORPORATE COMMUNICATIONS MANAGER, TEL +61 418 642 556\n\n\n\n1 Gold equivalent ounces calculated by multiplying quantities of gold and antimony in period by respective average market price of commodities in period, adding the two amounts to get \"total contained value based on market price,\" and dividing total contained value by average market price of gold in period. I.e., AuEq = ((Au Produced x Au $/oz) + (Sb Produced pre-payability x 70% payability x Sb $/t)) / (Au $/oz). Average market prices for gold and antimony sourced respectively from LMBA daily PM price (www.lmba.org.uk) and Shanghai Metal Market Price (www.metal.com). Average market prices for March quarter were A$7,015/oz Au and A$29,449/t Sb, average market prices for December quarter were A$6,299/oz Au and A$30,245/t Sb and for September quarter A$5,283/oz Au and A$33,508/t Sb using an AUD: USD exchange rate of 0.6946, 0.6565 and 0.6544 respectively.\n\n2 Group YTD Production calculated on basis of 100% contribution from Tomingley, Costerfield and Björkdal for relevant period. As the merger with Mandalay Resources completed on 5 August 2025, Alkane's FY2026 statutory reported production will reflect production from Costerfield and Björkdal only from that date. See ALK announcement dated 9 Sep 2025 and titled 'Alkane Announces Financial Year 2026 Guidance'.\n\n3 See ALK Announcement dated 9 Sep 2025 and titled 'Alkane Announces Financial Year 2026 Guidance' for calculation of Au Eq ounces and definition of Group Guidance. Production guidance on a statutory reported basis ('Attributable Guidance') is 155,000 - 168,000 AuEq ounces for FY2026. Note AISC is a non-IFRS measure and does not have a standardised meaning under IFRS and might not be comparable to similar financial measures disclosed by other companies. Refer to \"Non-IFRS Performance Measures\" at the end of this announcement."} +{"url": "https://www.163.com/dy/article/KQ2E94OS05118O8G.html", "title": "早报|B站推出播放页暂停广告 / GoPro启动大规模裁员 / Meta时隔9个月再发大模型 , 被指 「 图表造假 」 ", "publish_date": "2026-04-09T01:22:35Z", "full_text": "特别声明:以上内容(如有图片或视频亦包括在内)为自媒体平台“网易号”用户上传并发布,本平台仅提供信息存储服务。\n\nNotice: The content above (including the pictures and videos if any) is uploaded and posted by a user of NetEase Hao, which is a social media platform and only provides information storage services."} diff --git a/Data/1_Bronze_Raw/News_Scrapes/2026-04-08/Full_text/full_text_macro_central_banks.jsonl b/Data/1_Bronze_Raw/News_Scrapes/2026-04-08/Full_text/full_text_macro_central_banks.jsonl new file mode 100644 index 0000000..d74f819 --- /dev/null +++ b/Data/1_Bronze_Raw/News_Scrapes/2026-04-08/Full_text/full_text_macro_central_banks.jsonl @@ -0,0 +1,9 @@ +{"url": "https://www.clactonandfrintongazette.co.uk/news/national/26005807.rising-mortgage-costs-dent-buyer-demand-amid-housing-market-mood-shift/", "title": "Rising mortgage costs dent buyer demand amid housing market mood shift ", "publish_date": "2026-04-09T01:19:11Z", "full_text": "The Royal Institution of Chartered Surveyors (Rics) said the housing market was losing momentum in March as rising borrowing costs and wider geopolitical uncertainty weighed heavily on buyer confidence and sales activity.\n\nA net balance of 39% of professionals saw new buyer inquiries falling rather than rising, deteriorating from a balance of 29% who saw this in February.\n\nThis was the weakest reading since August 2023, as housing market optimism seen earlier in the year faded.\n\nAgreed sales also deteriorated, with a net balance of 34% of professionals seeing falls, down from a balance of 13% who saw this the previous month.\n\nRics said the report points to a market increasingly pressured by inflationary concerns and higher mortgage costs.\n\nA net balance of 33% of professionals expect sales activity to weaken further over the next few months.\n\nLooking 12 months ahead, a net balance of just 1% of professionals expect sales to weaken, indicating a broadly flat market.\n\nA balance of 23% of professionals saw house prices falling rather than rising in March.\n\nPrice expectations for the next three months also weakened, with a net balance of 43% of professionals expecting falls. Looking a year ahead, a balance of 2% of professionals expect price increases, pointing to little overall price growth over the year ahead.\n\nLooking across the UK, London, East Anglia, the South East and the South West all posted weaker price readings than the national average, while Scotland and Northern Ireland continued to report rising prices.\n\n(PA Graphics)\n\nOn the supply side, new instructions to sell remained subdued and the amount of unsold stock on estate agents’ books rose to an average of 47 properties, up from around 45 at the start of the year.\n\nIn the lettings market, a mismatch between demand and supply continued, with demand for homes from tenants rising while landlord instructions continued to decrease, Rics said.\n\nTarrant Parsons, Rics head of market research and analysis, said: “The mood across the UK housing market has shifted markedly over the past couple of months.\n\n“What had been a cautiously improving picture for activity has been knocked off course by the wider macro fallout from the Middle East conflict, as the renewed deterioration in the mortgage rate outlook has proved particularly challenging.\n\n“Indeed, with average fixed rates climbing back above 5% according to some sources, it is unsurprising that buyer demand has softened.\n\n“The path ahead hinges on whether or not recent surges in oil and energy costs begin to reverse in what remains a highly uncertain geopolitical environment.”\n\nOn Wednesday, financial information website Moneyfacts said mortgage rates are likely to remain higher for “some time yet” despite some signs of the upward pressure easing.\n\nGlobal stock markets have been recovering after the US and Iran agreed a two-week ceasefire, and Moneyfacts said that calming markets should have a stabilising impact on the mortgage market.\n\nAdam French, head of consumer finance at Moneyfacts, said: “The longer the ceasefire holds and markets calm, the more the mortgage market will stabilise, and rates could even begin to edge lower.\n\n“But for now, it’s more likely to slow or pause increases rather than trigger any sharp falls.”\n\nJinesh Vohra, chief executive of mortgage app Sprive, said: “Strategies like regular overpayments or reducing your balance earlier can have an outsized impact – potentially saving homeowners thousands over the term of their mortgage.\n\n“In today’s environment, it’s not just about getting on the ladder, but managing the cost of staying on it.”"} +{"url": "https://www.northwichguardian.co.uk/news/national/26005807.rising-mortgage-costs-dent-buyer-demand-amid-housing-market-mood-shift/", "title": "Rising mortgage costs dent buyer demand amid housing market mood shift ", "publish_date": "2026-04-09T01:19:11Z", "full_text": "The Royal Institution of Chartered Surveyors (Rics) said the housing market was losing momentum in March as rising borrowing costs and wider geopolitical uncertainty weighed heavily on buyer confidence and sales activity.\n\nA net balance of 39% of professionals saw new buyer inquiries falling rather than rising, deteriorating from a balance of 29% who saw this in February.\n\nThis was the weakest reading since August 2023, as housing market optimism seen earlier in the year faded.\n\nAgreed sales also deteriorated, with a net balance of 34% of professionals seeing falls, down from a balance of 13% who saw this the previous month.\n\nRics said the report points to a market increasingly pressured by inflationary concerns and higher mortgage costs.\n\nA net balance of 33% of professionals expect sales activity to weaken further over the next few months.\n\nLooking 12 months ahead, a net balance of just 1% of professionals expect sales to weaken, indicating a broadly flat market.\n\nA balance of 23% of professionals saw house prices falling rather than rising in March.\n\nPrice expectations for the next three months also weakened, with a net balance of 43% of professionals expecting falls. Looking a year ahead, a balance of 2% of professionals expect price increases, pointing to little overall price growth over the year ahead.\n\nLooking across the UK, London, East Anglia, the South East and the South West all posted weaker price readings than the national average, while Scotland and Northern Ireland continued to report rising prices.\n\n(PA Graphics)\n\nOn the supply side, new instructions to sell remained subdued and the amount of unsold stock on estate agents’ books rose to an average of 47 properties, up from around 45 at the start of the year.\n\nIn the lettings market, a mismatch between demand and supply continued, with demand for homes from tenants rising while landlord instructions continued to decrease, Rics said.\n\nTarrant Parsons, Rics head of market research and analysis, said: “The mood across the UK housing market has shifted markedly over the past couple of months.\n\n“What had been a cautiously improving picture for activity has been knocked off course by the wider macro fallout from the Middle East conflict, as the renewed deterioration in the mortgage rate outlook has proved particularly challenging.\n\n“Indeed, with average fixed rates climbing back above 5% according to some sources, it is unsurprising that buyer demand has softened.\n\n“The path ahead hinges on whether or not recent surges in oil and energy costs begin to reverse in what remains a highly uncertain geopolitical environment.”\n\nOn Wednesday, financial information website Moneyfacts said mortgage rates are likely to remain higher for “some time yet” despite some signs of the upward pressure easing.\n\nGlobal stock markets have been recovering after the US and Iran agreed a two-week ceasefire, and Moneyfacts said that calming markets should have a stabilising impact on the mortgage market.\n\nAdam French, head of consumer finance at Moneyfacts, said: “The longer the ceasefire holds and markets calm, the more the mortgage market will stabilise, and rates could even begin to edge lower.\n\n“But for now, it’s more likely to slow or pause increases rather than trigger any sharp falls.”\n\nJinesh Vohra, chief executive of mortgage app Sprive, said: “Strategies like regular overpayments or reducing your balance earlier can have an outsized impact – potentially saving homeowners thousands over the term of their mortgage.\n\n“In today’s environment, it’s not just about getting on the ladder, but managing the cost of staying on it.”"} +{"url": "https://www.dunya.com/kose-yazisi/gunde-ortalama-18-milyar-tl/820965", "title": "Günde ortalama 18 milyar TL - Naki BAKIR", "publish_date": "2026-04-09T01:19:11Z", "full_text": "Devletin ana gelir ve harcamalarına ait nakit dengesi bu yıl ilk çeyrekte geçen yıla göre daha düşük bir açık verdi. Ancak, bu açığın finansmanının yanı sıra vadesi gelen eski borçların yüksek orandaki geri ödeme yükü, Hazine’nin brüt borçlanmasını geçen yıla göre bir kata yakın büyüttü.\n\nHazine ve Maliye Bakanlığı’nın açıkladığı verilere göre ocak-mart döneminde Hazine’nin nakit bazda gelirleri önceki yıla göre yüzde 64,9 artışla 3 trilyon 995,3 milyar liraya ulaşırken, harcamaları yüzde 38,4 artışla 4 trilyon 614,6 milyar lira oldu. Böylece Hazine nakit dengesi ilk üç ayda 618,3 milyar lira açıkla bağlandı. Nakit açığı geçen yılın aynı dönemindekinin yüzde 31,4 altında gerçekleşti. İlk çeyrekler itibarıyla 2022 yılında sadece 23,1 milyar lira olan Hazine nakit açığı, 2023’te 257,9 milyar, 2024’te 570,4 milyar ve 2025 yılında 901,6 milyar lira ile yüksek düzeylere ulaşmıştı. Buna göre ilk çeyrekler bazında büyümesi görece hız kesmekle birlikte açık yüksek düzeyini korudu.\n\nFaiz ödemelerinde hızlı artış\n\nİlk çeyrekte verilen yüksek nakit açığında yüklü faiz ödemeleri etkili oldu. Hazine’nin bu dönemdeki nakit harcamalarının 3 trilyon 747 milyarını önceki yıla göre yüzde 28,9 artan faiz dışı harcamalar oluştururken, faiz ödemeleri yüzde 103’lük artışla 867,7 milyar liraya ulaştı.\n\nAncak faiz yükündeki büyüme de önceki yıllara göre ivme kazandı. Faiz ödemeleri 2025 yılı ilk çeyrekte önceki yılın aynı dönemine göre yüzde 89,8 artışla 427,4 milyar lira olmuştu. İlk çeyrekler itibarıyla faiz ödemelerinin nakit bazda toplam giderler içindeki payı yüzde 12,8’den yüzde 18,8’e yükseldi.\n\nİç borçta itfa yükü 7 kat arttı\n\nÖnceki yıllarda bütçe açıkları ve borç çevirme ihtiyacı dolayısıyla yüksek faizle gidilen ve esas olarak içeriden yapılan yoğun borçlanmaların mirası olarak Hazine bu yıl ilk çeyreğe yığılmış rekor düzeyde bir itfa yükü ile karşı karşıya kaldı.\n\nHazine ilk üç ayda vadesi gelen iç borçlar dolayısıyla 918,3 milyar ve dış borçlar için de 178,7 milyar lira olmak üzere toplam 1 trilyon 97 milyar liralık borç geri ödemesi gerçekleştirdi. Dış borç geri ödemeleri geçen yılın ilk çeyreğindekinin yüzde 22,4 altında kalırken, iç borç geri ödemelerinde yüzde 684,3’le adeta patlama yaşandı. Böylece toplam geri ödeme miktarı geçen yılın ilk çeyreğine göre yüzde 215,8 oranında bir artış kaydetti.\n\nÜç ayda 1,6 trilyonluk borçlanma\n\nHazine, ilk çeyrekteki nakit açığın finansmanı ve vadesi gelen borçların çevrilmesi için brüt 1 trilyon 630 milyar liralık yeni borçlanmaya gitti. Bunun da yine büyük bölümü iç borçlanma şeklinde gerçekleşti. Brüt borçlanma tutarı geçen yılın eş dönemine göre yüzde 91,4’le yaklaşık bir kat büyüdü. Geçen yıl ilk çeyrekte günlük ortalaması 9,4 milyar lira olan Hazine brüt borçlanması, bu yıl aynı dönemde 18,1 milyar lira ile ikiye katlandı.\n\nOcak-mart dönemindeki brüt borçlanmanın 1 trilyon 376,9 milyar liralık bölümü devlet iç borçlanma senedi (DİBS) ihraçları yoluyla iç borçlanma şeklinde yapıldı. Üç aylık iç borçlanma geçen yıla göre yüzde 82 arttı. Aynı dönemdeki itfalardan sonra Hazine’nin üç aylık net iç borçlanması 458,6 milyar lira ile geçen yılın aynı dönemindekinin yüzde 28,3 altında gerçekleşti.\n\nAynı dönemde dış borç geri ödemesi geçen yılın altında kalan Hazine, 178,7 milyar lira ile geçen yıla göre yüzde 172,5 daha fazla dış borç kullanımına gitti. Böylece Hazine ilk üç aydaki net dış borçlanması 74,4 milyar lira olarak gerçekleşti. Bu gelişmelerle Hazine’nin üç aydaki iç ve dış toplam borçlanması, başka deyişle geri ödemeler sonrası kasasında kalan net miktar 533 milyar lira olarak gerçekleşti.\n\nHazine, ilk çeyrekteki finansmanın büyük bölümünü toplam net borçlanmadan elde ederken, net borçlanmanın üstüne kasasından 50,3 milyar liralık kullanım, Tasarruf Mevduatı Sigorta Fonu’ndan (TMSF) gelen 33,9 milyar liralık aktarım ve devirli-garantili borçlardan 1 milyar lira civarındaki bir geri dönüşle nakit açığını finanse etti. Kur farklarından gelen 31,4 milyar liralık gelir sayesinde Hazine’nin kasa-banka bakiyesi 31,4 milyar lira oldu."} +{"url": "https://www.fnnews.com/news/202604090630516306", "title": "경기 불황에 카드 돌려막기 6개월 만에 반등 … 연체율도 20년새 최고", "publish_date": "2026-04-09T01:19:11Z", "full_text": "\n\n\n\n(서울=뉴스1) 정지윤 기자 = '카드 돌려막기'를 의미하는 대환대출 잔액이 지난해 8월 이후 6개월 만에 1조 5000억 원을 넘어선 것으로 나타났다. 일반은행의 신용카드 대출 연체율도 20년 8개월 만에 최고치를 경신했다. 경기 불황에 은행권 신용대출 문턱까지 높아지며 급전이 필요한 수요가 카드론으로 이동한 것으로 풀이된다.8일 여신금융협회에 따르면 국내 8개 전업 카드사(신한·삼성·현대·KB국민·롯데·우리·하나·BC카드)의 2월 카드론 대환대출 잔액은 1조 5001억 원을 기록했다.이는 카드론 대환대출 잔액이 1조 5404억 원을 기록했던 지난해 8월 이후 가장 높은 수준이다.지난 9월 1조 3214억 원을 기록했던 것과 비교하면 5개월 새 13.5% 증가했다.카드론 대환대출은 카드론 차주들이 대출 만기 전 빌린 돈을 갚지 못할 상황에 놓일 경우 카드사에 다시 심사를 신청해 대출을 받는 '돌려막기'를 의미한다. 금리가 낮은 상품으로 갈아타는 은행의 일반적인 대환대출과는 다르게 만기를 연장하는 성격이 강하다.카드론 대환대출을 이용할 경우 만기가 늘어나긴 하지만 신용이 재평가되면서 신용등급이 떨어지고 기존 대출보다 높은 금리를 감당해야 한다. 이 때문에 금융권에서는 카드론 대환대출 확대를 서민경제에 적신호로 해석한다.최근 카드론 대환대출은 경기 불황과 은행권 대출 규제와 수요 변화가 맞물리며 늘어난 것으로 해석된다. 은행 창구가 좁아지면서 신용대출이 막히자 급히 자금이 필요한 차주들이 카드론으로 이동했고 대출 상환 부담이 컸던 차주들이 이를 제때 갚지 못하면서 다시 대환대출로 이어지는 악순환이 형성됐다는 분석이다.이 같은 대환대출 증가는 차주의 상환 능력 저하를 보여주는 지표로도 해석돼 이러한 흐름이 계속 이어질 경우 연체율 증가로 이어질 가능성이 크다.실제로 한국은행에 따르면 지난 1월 말 기준 일반은행의 신용카드 대출 연체율은 4.1%를 기록하며 전월 대비 무려 0.9%포인트(p) 상승했다. 이는 약 20년 8개월 만에 최고치로, 카드 사태가 있던 지난 2005년 5월(5.0%) 이후 가장 높은 수준이다.카드 결제대금을 이월하는 리볼빙 잔액도 증가 추세다.리볼빙은 결제 금액 일부를 다음 달로 넘기는 방식으로 대출과는 다르지만 상환 부담을 뒤로 미룬다는 점에서 카드론 대환대출과 비슷하다.지난 2월 8개 카드사의 리볼빙 잔액은 6조 7336억 원을 기록했다.리볼빙 잔액이 6조 7000억 원대로 다시 올라선 건 지난해 하반기부터 줄곧 6조 6000억 원대를 기록해온 이후 8개월 만이다.\n\n※ 저작권자 ⓒ 뉴스1코리아, 무단전재-재배포 금지"} +{"url": "https://newsradio1290wtks.iheart.com/content/2026-04-08-stocks-close-the-day-higher-as-oil-prices-plummet-over-iran-war-cease-fire/", "title": "Stocks Close The Day Higher As Oil Prices Plummet Over Iran War Cease Fire", "publish_date": "2026-04-09T01:19:11Z", "full_text": "Stocks surged and oil prices plunged Wednesday (April 8) after a fragile two-week ceasefire between the United States and Iran took effect, raising hopes for renewed oil shipments through the Strait of Hormuz and easing global market fears. The S&P 500 soared 2.5%, the Dow Jones Industrial Average jumped 1,325 points, and the Nasdaq composite rallied 2.8% after President Donald Trump announced the temporary ceasefire.\n\nBenchmark U.S. crude oil prices dropped more than 16%, falling below $95 per barrel, while Brent crude also saw a sharp decline. The drop reversed some of the increases that came after five weeks of conflict, which had blocked the vital oil passage and pushed prices above $119 per barrel at their peak. Iran’s foreign minister stated that oil tankers would be allowed to pass for the next two weeks under Iranian military supervision.\n\nAirline and travel stocks rebounded strongly, with United Airlines up 7.9% and Carnival cruise lines climbing 9.6%. Delta Air Lines reported better-than-expected quarterly results, citing continued strong demand despite recent fuel price hikes. The positive momentum also spread globally, with Asia’s Nikkei 225 and Kospi indexes soaring over 5%, and major European markets such as Germany’s DAX and France’s CAC 40 rising over 4% each.\n\nDespite the optimism, analysts urged caution. The ceasefire remains fragile, with continued attacks reported in Iran, Israel, and Lebanon. The market’s upbeat response faded somewhat later in the day as questions lingered about whether the truce would hold and if shipping through the Strait of Hormuz would fully normalize.\n\nIn the bond market, Treasury yields fell, reflecting hopes that lower oil prices could allow the Federal Reserve to resume interest rate cuts later in the year. The yield on the 10-year Treasury note slipped to 4.29% from 4.33%."} +{"url": "https://www.watfordobserver.co.uk/news/national/26005807.rising-mortgage-costs-dent-buyer-demand-amid-housing-market-mood-shift/", "title": "Rising mortgage costs dent buyer demand amid housing market mood shift ", "publish_date": "2026-04-09T01:19:11Z", "full_text": "The Royal Institution of Chartered Surveyors (Rics) said the housing market was losing momentum in March as rising borrowing costs and wider geopolitical uncertainty weighed heavily on buyer confidence and sales activity.\n\nA net balance of 39% of professionals saw new buyer inquiries falling rather than rising, deteriorating from a balance of 29% who saw this in February.\n\nThis was the weakest reading since August 2023, as housing market optimism seen earlier in the year faded.\n\nAgreed sales also deteriorated, with a net balance of 34% of professionals seeing falls, down from a balance of 13% who saw this the previous month.\n\nRics said the report points to a market increasingly pressured by inflationary concerns and higher mortgage costs.\n\nA net balance of 33% of professionals expect sales activity to weaken further over the next few months.\n\nLooking 12 months ahead, a net balance of just 1% of professionals expect sales to weaken, indicating a broadly flat market.\n\nA balance of 23% of professionals saw house prices falling rather than rising in March.\n\nPrice expectations for the next three months also weakened, with a net balance of 43% of professionals expecting falls. Looking a year ahead, a balance of 2% of professionals expect price increases, pointing to little overall price growth over the year ahead.\n\nLooking across the UK, London, East Anglia, the South East and the South West all posted weaker price readings than the national average, while Scotland and Northern Ireland continued to report rising prices.\n\n(PA Graphics)\n\nOn the supply side, new instructions to sell remained subdued and the amount of unsold stock on estate agents’ books rose to an average of 47 properties, up from around 45 at the start of the year.\n\nIn the lettings market, a mismatch between demand and supply continued, with demand for homes from tenants rising while landlord instructions continued to decrease, Rics said.\n\nTarrant Parsons, Rics head of market research and analysis, said: “The mood across the UK housing market has shifted markedly over the past couple of months.\n\n“What had been a cautiously improving picture for activity has been knocked off course by the wider macro fallout from the Middle East conflict, as the renewed deterioration in the mortgage rate outlook has proved particularly challenging.\n\n“Indeed, with average fixed rates climbing back above 5% according to some sources, it is unsurprising that buyer demand has softened.\n\n“The path ahead hinges on whether or not recent surges in oil and energy costs begin to reverse in what remains a highly uncertain geopolitical environment.”\n\nOn Wednesday, financial information website Moneyfacts said mortgage rates are likely to remain higher for “some time yet” despite some signs of the upward pressure easing.\n\nGlobal stock markets have been recovering after the US and Iran agreed a two-week ceasefire, and Moneyfacts said that calming markets should have a stabilising impact on the mortgage market.\n\nAdam French, head of consumer finance at Moneyfacts, said: “The longer the ceasefire holds and markets calm, the more the mortgage market will stabilise, and rates could even begin to edge lower.\n\n“But for now, it’s more likely to slow or pause increases rather than trigger any sharp falls.”\n\nJinesh Vohra, chief executive of mortgage app Sprive, said: “Strategies like regular overpayments or reducing your balance earlier can have an outsized impact – potentially saving homeowners thousands over the term of their mortgage.\n\n“In today’s environment, it’s not just about getting on the ladder, but managing the cost of staying on it.”"} +{"url": "https://newsradiowkcy.iheart.com/content/2026-04-08-stocks-close-the-day-higher-as-oil-prices-plummet-over-iran-war-cease-fire/", "title": "Stocks Close The Day Higher As Oil Prices Plummet Over Iran War Cease Fire | NewsRadio WKCY", "publish_date": "2026-04-09T01:19:11Z", "full_text": "Stocks surged and oil prices plunged Wednesday (April 8) after a fragile two-week ceasefire between the United States and Iran took effect, raising hopes for renewed oil shipments through the Strait of Hormuz and easing global market fears. The S&P 500 soared 2.5%, the Dow Jones Industrial Average jumped 1,325 points, and the Nasdaq composite rallied 2.8% after President Donald Trump announced the temporary ceasefire.\n\nBenchmark U.S. crude oil prices dropped more than 16%, falling below $95 per barrel, while Brent crude also saw a sharp decline. The drop reversed some of the increases that came after five weeks of conflict, which had blocked the vital oil passage and pushed prices above $119 per barrel at their peak. Iran’s foreign minister stated that oil tankers would be allowed to pass for the next two weeks under Iranian military supervision.\n\nAirline and travel stocks rebounded strongly, with United Airlines up 7.9% and Carnival cruise lines climbing 9.6%. Delta Air Lines reported better-than-expected quarterly results, citing continued strong demand despite recent fuel price hikes. The positive momentum also spread globally, with Asia’s Nikkei 225 and Kospi indexes soaring over 5%, and major European markets such as Germany’s DAX and France’s CAC 40 rising over 4% each.\n\nDespite the optimism, analysts urged caution. The ceasefire remains fragile, with continued attacks reported in Iran, Israel, and Lebanon. The market’s upbeat response faded somewhat later in the day as questions lingered about whether the truce would hold and if shipping through the Strait of Hormuz would fully normalize.\n\nIn the bond market, Treasury yields fell, reflecting hopes that lower oil prices could allow the Federal Reserve to resume interest rate cuts later in the year. The yield on the 10-year Treasury note slipped to 4.29% from 4.33%."} +{"url": "https://www.stourbridgenews.co.uk/news/national/26005807.rising-mortgage-costs-dent-buyer-demand-amid-housing-market-mood-shift/", "title": "Rising mortgage costs dent buyer demand amid housing market mood shift ", "publish_date": "2026-04-09T01:19:11Z", "full_text": "The Royal Institution of Chartered Surveyors (Rics) said the housing market was losing momentum in March as rising borrowing costs and wider geopolitical uncertainty weighed heavily on buyer confidence and sales activity.\n\nA net balance of 39% of professionals saw new buyer inquiries falling rather than rising, deteriorating from a balance of 29% who saw this in February.\n\nThis was the weakest reading since August 2023, as housing market optimism seen earlier in the year faded.\n\nAgreed sales also deteriorated, with a net balance of 34% of professionals seeing falls, down from a balance of 13% who saw this the previous month.\n\nRics said the report points to a market increasingly pressured by inflationary concerns and higher mortgage costs.\n\nA net balance of 33% of professionals expect sales activity to weaken further over the next few months.\n\nLooking 12 months ahead, a net balance of just 1% of professionals expect sales to weaken, indicating a broadly flat market.\n\nA balance of 23% of professionals saw house prices falling rather than rising in March.\n\nPrice expectations for the next three months also weakened, with a net balance of 43% of professionals expecting falls. Looking a year ahead, a balance of 2% of professionals expect price increases, pointing to little overall price growth over the year ahead.\n\nLooking across the UK, London, East Anglia, the South East and the South West all posted weaker price readings than the national average, while Scotland and Northern Ireland continued to report rising prices.\n\n(PA Graphics)\n\nOn the supply side, new instructions to sell remained subdued and the amount of unsold stock on estate agents’ books rose to an average of 47 properties, up from around 45 at the start of the year.\n\nIn the lettings market, a mismatch between demand and supply continued, with demand for homes from tenants rising while landlord instructions continued to decrease, Rics said.\n\nTarrant Parsons, Rics head of market research and analysis, said: “The mood across the UK housing market has shifted markedly over the past couple of months.\n\n“What had been a cautiously improving picture for activity has been knocked off course by the wider macro fallout from the Middle East conflict, as the renewed deterioration in the mortgage rate outlook has proved particularly challenging.\n\n“Indeed, with average fixed rates climbing back above 5% according to some sources, it is unsurprising that buyer demand has softened.\n\n“The path ahead hinges on whether or not recent surges in oil and energy costs begin to reverse in what remains a highly uncertain geopolitical environment.”\n\nOn Wednesday, financial information website Moneyfacts said mortgage rates are likely to remain higher for “some time yet” despite some signs of the upward pressure easing.\n\nGlobal stock markets have been recovering after the US and Iran agreed a two-week ceasefire, and Moneyfacts said that calming markets should have a stabilising impact on the mortgage market.\n\nAdam French, head of consumer finance at Moneyfacts, said: “The longer the ceasefire holds and markets calm, the more the mortgage market will stabilise, and rates could even begin to edge lower.\n\n“But for now, it’s more likely to slow or pause increases rather than trigger any sharp falls.”\n\nJinesh Vohra, chief executive of mortgage app Sprive, said: “Strategies like regular overpayments or reducing your balance earlier can have an outsized impact – potentially saving homeowners thousands over the term of their mortgage.\n\n“In today’s environment, it’s not just about getting on the ladder, but managing the cost of staying on it.”"} +{"url": "https://www.dunya.com/kose-yazisi/fiyat-artisini-ihracat-kisitlamasi-ile-onlemenin-verdigi-zarar/820975", "title": "Fiyat artışını ihracat kısıtlaması ile önlemenin verdiği zarar … ", "publish_date": "2026-04-09T01:19:11Z", "full_text": "Arz yetersizliği nedeniyle, bazı ürünlerde ihracatı kısıtlıyoruz…\n\nAncak…\n\nİhracatı kısıtlamanın, rakiplerimize avantaj sağladığını, büyük çaba ile kazanılan pazarların “bu nedenle” kaybedildiğini/kaybedilebileceğini unutuyoruz…\n\n★★★\n\nYanı sıra…\n\nİhracat kısıtlamasıyla, düşük kapasite ile üretime kapı aralıyoruz…\n\nZaten yüksek olan üretim maliyetlerinin “bu nedenle” daha da yükseldiğini/yükselebileceğini de unutuyoruz…\n\n★★★\n\nYok mu; hem üretimi, hem ihracatı “birlikte” artırabilmenin yolu?\n\nYok mu; üreterek, ithalatı ve dolayısıyla ortaya çıkan döviz açığını ve dolayısıyla ortaya çıkan borçlanma ihtiyacını ve dolayısıyla ortaya çıkan yüksek faizleri düşürebilmenin yolu?\n\n★★★\n\nÖrneğin krediler…\n\n“Enflasyonu yükseltir” kaygısı ile sınırlıyoruz…\n\nHaklı olarak, “geçmiş deneyimlerin korkusu”, “üretim için kredi kullananların, tüketimi tetikleme alışkanlıkları” gibi nedenlerle bu kısıtlamaya gidiyoruz…\n\n★★★\n\nAncak…\n\nBu yolla, sermaye yetersizliği yaşayan “gerçek üreticilerin” geliştirmelerini, üretimini, ihracatını artırabilmesini de engelliyoruz…\n\nVe…\n\nEnflasyonla mücadelenin, kalkınmanın, yüksek refahın tek adresi olan “verimli üreticilerimizi” de, üretimden/geliştirmeden uzaklaştırıyoruz…\n\nKurunun yanında yaşı da yakıyoruz…\n\nVELHASIL\n\nYok mu, verilen kredileri doğru kullandırmanın yolu?\n\n★★★\n\nÇimento, Cam, Seramik ve Toprak Ürünleri İhracatçıları Birliği Başkanı Erdem Çenesiz, o yollardan birini anlattı:\n\n“Üretim kapasitelerimizi korumak, yatırımlarımızı sürdürmek ve pazardaki yerimizi kaybetmemek için ihracatçımızın uygun maliyetli finansmana erişimi reeskont ihracat kredisi ile sağlanabilir…\n\nBu kredi tipinde vadelerinin uzatılması ve faizlerinin düşürülmesi, enflasyonu tetiklemeden yatırımların, üretimin ve ihracatın artmasına vesile olur…”\n\n★★★\n\nYüzde 82’lik yerlilik payı ve ekonomiye sağladığı yüksek katma değer ile geçtiğimiz yıl 5 milyar dolarlık ihracat rakamına ulaşan;\n\nKonut açığı nedeniyle, düşük maliyetle, daha fazla üretimine ihtiyaç duyduğumuz;\n\nVe savaşların sona ermesiyle, komşu ülkelerden talep patlaması yaşayacak bir sektörü ve diğerlerini harekete geçirecek politikalara öncelik vermeliyiz…"} diff --git a/Data/1_Bronze_Raw/News_Scrapes/2026-04-08/Full_text/full_text_macro_inflation_employment.jsonl b/Data/1_Bronze_Raw/News_Scrapes/2026-04-08/Full_text/full_text_macro_inflation_employment.jsonl new file mode 100644 index 0000000..9a1eb35 --- /dev/null +++ b/Data/1_Bronze_Raw/News_Scrapes/2026-04-08/Full_text/full_text_macro_inflation_employment.jsonl @@ -0,0 +1,6 @@ +{"url": "https://finance.yahoo.com/markets/stocks/articles/why-carnival-ccl-stock-soaring-000547814.html", "title": "Why Is Carnival ( CCL ) Stock Soaring Today", "publish_date": "2026-04-09T01:20:13Z", "full_text": "What Happened?\n\nShares of cruise ship company Carnival (NYSE:CCL) jumped 10.3% in the afternoon session after President Trump's Truth Social post confirmed a suspension of military action in Iran for two weeks.\n\nThis breakthrough, coupled with a 17% plunge in oil prices, sent cruise operator stocks surging. The sector had been heavily suppressed by the conflict, but the prospect of a negotiated settlement and safer maritime passage triggered a powerful relief rally. Cruise lines benefit immensely from lower \"bunker\" fuel costs, which spiked due to the war.\n\nAdditionally, the ceasefire eases travel concerns regarding safety on Mediterranean and Middle Eastern itineraries, which are high-margin routes for the industry. With the U.S. also discussing sanctions relief for Iran, the broader macro environment for global tourism appeared far more stable.\n\nIs now the time to buy Carnival? Access our full analysis report here, it’s free.\n\nWhat Is The Market Telling Us\n\nCarnival’s shares are very volatile and have had 21 moves greater than 5% over the last year. But moves this big are rare even for Carnival and indicate this news significantly impacted the market’s perception of the business.\n\nThe previous big move we wrote about was 1 day ago when the stock dropped 4.3% on the news that geopolitical tensions spiked following a strict deadline set for Iran.\n\nPresident Trump set a high-stakes deadline for Iran to reopen the Strait of Hormuz, a vital oil shipping route. Investors were worried about a potential military strike if deadline passes without a deal. The tension also pushed oil prices to their highest levels in years. This could increase costs for businesses, trigger inflation and slow down global growth.\n\nCarnival is down 9.5% since the beginning of the year, and at $27.98 per share, it is trading 17.7% below its 52-week high of $33.99 from February 2026. Investors who bought $1,000 worth of Carnival’s shares 5 years ago would now be looking at only $979.83.\n\nONE MORE THING: The $21 AI Application Stock Wall Street Forgot. While Wall Street obsesses over who’s building AI, one company is already using it to print money. And nobody’s paying attention.\n\nAI chip stocks trade at ridiculous valuations. This company processes a trillion consumer signals monthly using AI and trades at a third of the price. The gap won’t last. The institutions will figure it out. You need to see this first. Read the FREE Report Before They Notice."} +{"url": "https://www.fnnews.com/news/202604090857326831", "title": "호르무즈 계속 막은 이란 … 하루 통과 10여척으로 제한 계획 ", "publish_date": "2026-04-09T01:20:13Z", "full_text": "암호화폐·중국 위안화로 통행료 지급해야…\"혁명수비대 승인 필수\" 통행량 하루 135척→한 자릿수 급감…원유 공급망·물가 압박 우려 확산\n\n\n\n\n\n호르무즈 계속 막은 이란…\"하루 통과 10여척으로 제한 계획\"암호화폐·중국 위안화로 통행료 지급해야…\"혁명수비대 승인 필수\"통행량 하루 135척→한 자릿수 급감…원유 공급망·물가 압박 우려 확산(서울=연합뉴스) 김승욱 기자 = 이란이 미국과의 휴전 합의 후에도 세계 핵심 에너지 수송로인 호르무즈 해협 통제를 유지하면서 하루 통과 선박 수를 약 10여척 수준으로 제한하는 방안을 추진 중인 것으로 전해졌다.월스트리트저널(WSJ)은 8일(현지시간) 아랍권 중재자들을 인용해 이란이 최근 체결된 2주간의 휴전 기간에도 이 같이 선박 통행을 엄격히 제한하고 통행료를 부과할 계획을 밝혔다고 보도했다.보도에 따르면 이란은 호르무즈 해협을 지나는 선박이 자국 정예 군사조직인 이슬람혁명수비대(IRGC)와 사전 조율을 거치도록 요구하고 있다. 통과 선박은 사전에 통행료를 협의한 뒤 암호화폐나 중국 위안화로 비용을 지급해야 한다.호르무즈 해협 통행량은 지난 2월 28일 전쟁 개시 이후 급감했다.에너지 정보업체 S&P 글로벌 마켓 인텔리전스에 따르면 휴전 선언 직후인 이날도 호르무즈 해협을 통과한 선박은 4척에 불과해, 전쟁 이전 하루 약 135척이 오가던 것과 비교할 수 없다.전격적인 휴전 합의로 호르무즈를 둘러싼 긴장이 완화되는 듯했지만, 발표 후에도 이스라엘의 레바논 공습 지속과 이란 측의 '보복 검토' 소식이 전해지면서 해협 통행은 다시 중단된 상태라고 현지 매체들은 전했다.전쟁 기간 이란은 허가 없이 통과하려는 선박을 공격하면서 해협에 대한 사실상의 통제권을 확보했으며, 이번 휴전 국면에서는 이를 아예 제도화하려는 움직임을 보인다.특히 이란은 자국 또는 우호국 선박에는 통행을 허용하거나 낮은 비용을 부과하는 반면, 미국이나 이스라엘과 연계된 국가 선박은 차단하는 차등 체계를 구축 중인 것으로 알려졌다.선박 운항 경로도 제한된다. 통과가 허용된 선박들은 기존 항로 대신 이란 게슘섬과 라라크섬 사이, 이란 연안을 따라 오만만으로 빠져나가는 좁은 통로를 이용해야 한다.통행료는 선박 규모에 따라 차등 적용되며, 초대형 유조선의 경우 최대 200만 달러(약 30억 원)에 이를 수 있다는 게 해운업계 전언이다.이란 의회도 통행 승인과 수수료 부과를 포함한 새로운 해협 관리 방안을 승인한 것으로 전해졌다. 이란은 통행료 수익을 오만과 분담하는 방안도 제시했지만, 오만은 아직 동의하지 않은 상태라고 WSJ은 전했다.이란의 이 같은 조치는 국제사회에 큰 파장을 낳고 있다.호르무즈 해협은 세계 원유·LNG 공급 물량의 약 20%가 지나는 요충지다. 이란이 통제권을 행사할 경우 글로벌 에너지 시장과 물가에 직접적인 충격이 불가피하다는 우려가 나온다.미국은 여전히 '자유로운 항행'을 요구하고 있지만, 이란은 물러설 기미를 보이지 않고 있다. 실제로 이란은 무선 교신을 통해 혁명수비대 승인 없이 해협을 통과할 경우 공격 대상이 될 수 있다고 경고한 것으로 전해졌다.이란이 통과 선박들이 혁명수비대 승인을 받아야 하는 이유 중 하나로 내세우는 건 자국이 설치한 기뢰다. 기뢰를 피하기 위해서는 이란군과 조율해 안내를 받아야 한다는 게 이란 측 입장이다.하지만 이란의 해협 통제는 국제법 위반이라는 지적이 나온다. 자연 해협에 해당하는 호르무즈는 운하와 달리 통행료 부과가 허용되지 않는다는 점에서 이란의 조치는 유엔해양법협약(UNCLOS)에 위반된다는 것이다.중동 산유국들과 주요 에너지 수입국들은 강하게 반발하고 있다.특히 일부 통행료가 위안화로 부과되는 점은 서방의 원유 시장 영향력 약화를 초래할 수 있다는 점에서 우려를 키우고 있다고 WSJ은 짚었다.전문가들은 휴전이 유지되더라도 이란이 명확한 안전 보장 방안을 제시하지 않는 한 선박 운항이 정상화되기까지는 상당한 시간이 걸릴 것으로 보고 있다.해운업계 관계자는 \"현재로서는 선박별로 허가 여부가 달라지는 상황이라 사실상 원유 수송 흐름이 거의 멈춘 상태\"라며 \"불확실성이 해소되기 전까지 선사들이 운항 재개를 주저할 수밖에 없다\"고 말했다.ksw08@yna.co.kr(끝)<저작권자(c) 연합뉴스, 무단 전재-재배포, AI 학습 및 활용 금지>\n\n※ 저작권자 ⓒ 연합뉴스, 무단전재-재배포 금지"} +{"url": "https://baotintuc.vn/thi-truong-tien-te/gia-dau-giam-manh-khi-ky-vong-khoi-thong-eo-bien-hormuz-gia-tang-20260409072028597.htm", "title": "Giá dầu giảm mạnh khi kỳ vọng khơi thông eo biển Hormuz gia tăng", "publish_date": "2026-04-09T01:20:13Z", "full_text": "Tháp khoan dầu tại Luling, Texas, Mỹ. Ảnh: THX/TTXVN\n\nDiễn biến này thắp lên hy vọng khôi phục hoàn toàn dòng chảy năng lượng qua eo biển Hormuz - nơi trung chuyển khoảng 20% lượng dầu toàn cầu - và giúp xoa dịu đáng kể những lo ngại về lạm phát tăng cao cho kinh tế thế giới.\n\nTheo đó, giá dầu Brent giao kỳ hạn sụt giảm 14,52 USD (tương đương 13,29%) và chốt phiên ở mức 94,75 USD/thùng. Giá dầu thô ngọt nhẹ Mỹ (WTI) lao dốc 18,54 USD (16,41%) xuống mức 94,41 USD/thùng.\n\nGiới chuyên gia phân tích nhận định đà giảm sốc này xuất phát từ tâm lý lạc quan rằng nguồn cung năng lượng toàn cầu sẽ sớm được khơi thông, sau thông báo về thỏa thuận ngừng bắn kéo dài 2 tuần giữa phía Mỹ và Iran. Phía Mỹ xác nhận một phái đoàn ngoại giao sẽ tới Pakistan vào cuối tuần này để tiến hành đàm phán với phía Iran.\n\nTuy nhiên, giới giao dịch vẫn duy trì sự thận trọng nhất định trước những rủi ro đổ vỡ thỏa thuận. Công ty nghiên cứu Capital Economics nhận định vấn đề then chốt đối với thị trường hiện nay vẫn là tình trạng thực tế tại eo biển Hormuz. Dù khuôn khổ thỏa thuận cho phép tàu chở dầu lưu thông, các điều khoản bảo đảm an toàn vẫn chưa rõ ràng, khiến nhiều hãng vận tải ngần ngại."} +{"url": "http://www.californiatelegraph.com/news/278972410/frp-holdings-inc-announces-release-date-for-its-2025-fourth-quarter-and-full-year-earnings-and-details-for-the-earnings-conference-call", "title": "FRP Holdings , Inc . Announces Release Date for Its 2025 Fourth Quarter and Full Year Earnings and Details for the Earnings Conference Call", "publish_date": "2026-04-09T01:20:13Z", "full_text": "On March 31, 2026, FRP Holdings, Inc. (NASDAQ:FRPH) announced that it had filed a Form 12b-25, Notification of Late Filing, with the Securities and Exchange Commission in connection with its Annual Report on Form 10-K for the fiscal year ended December 31, 2025. The Company and its independent auditors needed the additional time to complete the year end audit process and the delay in filing was not the result of any disagreements with the Company's independent auditors on any matter of accounting principles or practices, financial statement disclosure, or auditing scope or procedure.\n\nToday the Company announces that it anticipates issuing its fourth quarter and full year earnings results on Friday, April 10, 2026, and that it will file its Annual Report on Form 10-K for the fiscal year ended December 31, 2025 on or before April 15, 2026.\n\nThe Company will host a conference call on Friday, April 10, 2026, at 4:30 p.m. (ET). Analysts, stockholders and other interested parties may access the teleconference live by calling 1-888-506-0062 (passcode 751153) within the United States or by joining the webcast here. International callers may dial 1-973-528-0011 (passcode 751153). Webcast replay will be available until April 10, 2027, by accessing it here. The webcast replay will also be available on the Company's investor relations page (https://www.frpdev.com/investor-relations/) following the call.\n\nFRP Holdings, Inc. is a holding company engaged in the real estate business, namely (i) leasing and management of commercial properties owned by the Company, (ii) leasing and management of mining royalty land owned by the Company, (iii) real property acquisition, entitlement, development and construction primarily for apartment, retail, warehouse, and office, (iv) leasing and management of residential apartment buildings.\n\nInvestors are cautioned that any statements in this press release which relate to the future are, by their nature, subject to risks and uncertainties that could cause actual results and events to differ materially from those indicated in such forward-looking statements. These include, but are not limited to: the possibility that we may be unable to find appropriate investment opportunities; levels of construction activity in the markets served by our mining properties; demand for flexible warehouse/office facilities in the Baltimore- Washington-Northern Virginia area; demand for apartments in Washington D.C. and Greenville, South Carolina; our ability to obtain zoning and entitlements necessary for property development; the impact of lending and capital market conditions on our liquidity; our ability to finance projects or repay our debt; general real estate investment and development risks; vacancies in our properties; risks associated with developing and managing properties in partnership with others; competition; our ability to renew leases or re-lease spaces as leases expire; illiquidity of real estate investments; bankruptcy or defaults of tenants; the impact of restrictions imposed by our credit facility; the level and volatility of interest rates; environmental liabilities; inflation risks; cybersecurity risks; as well as other risks listed from time to time in our SEC filings; including but not limited to; our annual and quarterly reports. We have no obligation to revise or update any forward-looking statements, other than as imposed by law, as a result of future events or new information. Readers are cautioned not to place undue reliance on such forward-looking statements.\n\nContact: Matthew C. McNulty, Chief Financial Officer\n\n(904) 858-9100\n\nSOURCE: FRP Holdings, Inc."} +{"url": "https://africanmanager.com/wall-street-cloture-en-nette-hausse-soulagee-par-le-cessez-le-feu-en-iran/", "title": "Wall Street clôture en nette hausse , soulagée par le cessez - le - feu en Iran", "publish_date": "2026-04-09T01:20:13Z", "full_text": "La Bourse de New York a clôturé en franche hausse mercredi, les investisseurs continuant de saluer l’annonce d’un cessez-le-feu de deux semaines entre les Etats-Unis et l’Iran.\n\nLe Dow Jones a gagné 2,85%, l’indice Nasdaq a progressé de 2,80% et l’indice élargi S&P 500 s’est octroyé 2,51%.\n\n« Un sentiment de soulagement traverse le marché », commente auprès de l’AFP Angelo Kourkafas, analyste d’Edward Jones.\n\nWashington et Téhéran se sont accordés dans la nuit de mardi à mercredi pour une trêve de deux semaines qui laisse espérer une reprise du trafic dans le détroit d’Ormuz, par où transite habituellement un cinquième du brut mondial.\n\nLes prix du pétrole ont décroché dans la foulée, repassant sous le « seuil psychologique » des 100 dollars le baril. Cela « contribue à apaiser les craintes de récession, à revoir à la hausse les prévisions de croissance mondiale et à réduire les anticipations d’inflation », résume un analyste d’Interactive Brokers, d’où l’optimisme de Wall Street.\n\nSur le marché obligataire, après s’être détendu en début de séance, le rendement à dix ans des emprunts de l’Etat américain restait finalement stable. Vers 20H15 GMT, il évoluait autour de 4,29%.\n\nA la cote, le secteur de l’énergie s’est replié, entraîné par la chute des cours du pétrole.\n\nLe géant pétrolier Chevron a perdu 4,34%, ConocoPhillips a reculé de 4,93% et EOG Resources, de 3,61%.\n\nAutre grand nom du secteur des hydrocarbures, ExxonMobil a lâché 4,70% à 156,21 dollars. Le groupe a indiqué mercredi que les perturbations causées par la guerre au Moyen-Orient allaient réduire d’environ 6% sa production mondiale de pétrole au premier trimestre, par rapport au trimestre précédent.\n\nA l’inverse, les entreprises grandes consommatrices de pétrole ont soufflé."} +{"url": "https://www.lavanguardia.com/participacion/cartas/20260409/11508990/actualitzar-l-irpf.html", "title": "Actualitzar lIRPF", "publish_date": "2026-04-09T01:20:13Z", "full_text": "Ara que la inflació ha baixat i que la recaptació de l’Estat s’ha incrementat notablement, per què el Govern espanyol no abaixa l’impost de la renda, que no s’ha actualitzat des del 2007? Una baixada, encara que fos petita, ajudaria els consumidors i el gruix de la població a millorar el seu poder adquisitiu. Caldria que, abans d’emprendre una reforma global de l’IRPF, s’apliqués com a mesura transitòria una baixada d’aquest impost. Penso que seria bo per a tothom.\n\nRosa Martí Conill\n\nSubscriptora Parets del Vallès"} diff --git a/Data/1_Bronze_Raw/News_Scrapes/2026-04-08/Full_text/full_text_macro_yields_dollar.jsonl b/Data/1_Bronze_Raw/News_Scrapes/2026-04-08/Full_text/full_text_macro_yields_dollar.jsonl new file mode 100644 index 0000000..ffa495a --- /dev/null +++ b/Data/1_Bronze_Raw/News_Scrapes/2026-04-08/Full_text/full_text_macro_yields_dollar.jsonl @@ -0,0 +1,10 @@ +{"url": "https://lasillarota.com/hidalgo/estado/2026/4/8/encuentro-nacional-de-bordado-reune-mas-de-cien-artesanos-en-tenango-de-doria-593743.html", "title": "Encuentro Nacional de Bordado reúne a más de cien artesanos en Tenango de Doria", "publish_date": "2026-04-09T01:21:11Z", "full_text": "Comparta este artículo\n\nTenango.— Con la participación de más de un centenar de expositores provenientes de estados como Sinaloa, Querétaro, Puebla, Guerrero, Oaxaca e Hidalgo, Tenango de Doria fue cede del Encuentro Nacional de Bordadoras y Bordadores, que inició este miércoles 8, Día del Tenango, y concluirá el viernes 10 de abril.\n\nEn la Plaza de Armas, en la cabecera municipal de Tenango, se instalaron más de cien expositores, con una oferta variada de textiles bordados desde blusas, vestidos camisas en distintas técnicas, y cincuenta espacios destinados a cocineras y cocineros tradicionales de Hidalgo y los estados invitados.\n\nCrédito: Jessica Manilla\n\nLa secretaria de Turismo de Hidalgo, Elizabeth Quintanar Gómez, recordó que los bordados de tenangos son piezas elaboradas por manos de artesanas otomí-tepehua que han logrado posicionarse a nivel internacional, e insistió en que aún es necesario reforzar su denominación de origen.\n\nCrédito: Jessica Manilla\n\n“Ese bordado multicolor nació en Tenango de Doria, y es fundamental que el mundo lo sepa. Es una expresión que cuenta la historia de nuestros antepasados y representa la riqueza viva de nuestras comunidades”.\n\nCrédito: Jessica Manilla\n\nExpuso que el encuentro de bordadores y bordadoras permite generar enlace entre artesanos de distintas regiones del país, quienes comparten técnicas, historias y significados detrás de cada pieza, dignificando el trabajo artesanal.\n\nCrédito: Jessica Manilla\n\nLa presidenta municipal, Martha López Patricio, celebró que el encuentro se realizara en el marco de la conmemoración del Día del Tenango. “Hoy es un día especial porque mostramos al mundo la grandeza de nuestras artesanas y artesanos, quienes con sus manos crean verdaderas obras de arte que nos dan identidad”.\n\nCrédito: Jessica Manilla\n\nA lo largo de tres días, los asistentes podrán adquirir piezas únicas, participar en actividades culturales y conocer de cerca el proceso creativo detrás del bordado tradicional, con un programa que se complementa con presentaciones de danza, música, conferencias, conversatorios con artesanas, pasarelas, demostraciones.\n\n“Debemos sentirnos muy orgullosos de lo que se crean en las localidades del municipio; debemos celebrar el talento, la creatividad y todo aquello que nos da identidad. Todos son bienvenidos a vivir esta fiesta de color, en la tierra del donde se borda y se toma café. ¡Que viva el arte que nos da identidad! ¡Viva Los Bordados Tenangos! ¡Bienvenidos todos!”.\n\nsjl"} +{"url": "https://africanmanager.com/wall-street-cloture-en-nette-hausse-soulagee-par-le-cessez-le-feu-en-iran/", "title": "Wall Street clôture en nette hausse , soulagée par le cessez - le - feu en Iran", "publish_date": "2026-04-09T01:21:11Z", "full_text": "La Bourse de New York a clôturé en franche hausse mercredi, les investisseurs continuant de saluer l’annonce d’un cessez-le-feu de deux semaines entre les Etats-Unis et l’Iran.\n\nLe Dow Jones a gagné 2,85%, l’indice Nasdaq a progressé de 2,80% et l’indice élargi S&P 500 s’est octroyé 2,51%.\n\n« Un sentiment de soulagement traverse le marché », commente auprès de l’AFP Angelo Kourkafas, analyste d’Edward Jones.\n\nWashington et Téhéran se sont accordés dans la nuit de mardi à mercredi pour une trêve de deux semaines qui laisse espérer une reprise du trafic dans le détroit d’Ormuz, par où transite habituellement un cinquième du brut mondial.\n\nLes prix du pétrole ont décroché dans la foulée, repassant sous le « seuil psychologique » des 100 dollars le baril. Cela « contribue à apaiser les craintes de récession, à revoir à la hausse les prévisions de croissance mondiale et à réduire les anticipations d’inflation », résume un analyste d’Interactive Brokers, d’où l’optimisme de Wall Street.\n\nSur le marché obligataire, après s’être détendu en début de séance, le rendement à dix ans des emprunts de l’Etat américain restait finalement stable. Vers 20H15 GMT, il évoluait autour de 4,29%.\n\nA la cote, le secteur de l’énergie s’est replié, entraîné par la chute des cours du pétrole.\n\nLe géant pétrolier Chevron a perdu 4,34%, ConocoPhillips a reculé de 4,93% et EOG Resources, de 3,61%.\n\nAutre grand nom du secteur des hydrocarbures, ExxonMobil a lâché 4,70% à 156,21 dollars. Le groupe a indiqué mercredi que les perturbations causées par la guerre au Moyen-Orient allaient réduire d’environ 6% sa production mondiale de pétrole au premier trimestre, par rapport au trimestre précédent.\n\nA l’inverse, les entreprises grandes consommatrices de pétrole ont soufflé."} +{"url": "https://newsradio1290wtks.iheart.com/content/2026-04-08-stocks-close-the-day-higher-as-oil-prices-plummet-over-iran-war-cease-fire/", "title": "Stocks Close The Day Higher As Oil Prices Plummet Over Iran War Cease Fire", "publish_date": "2026-04-09T01:21:11Z", "full_text": "Stocks surged and oil prices plunged Wednesday (April 8) after a fragile two-week ceasefire between the United States and Iran took effect, raising hopes for renewed oil shipments through the Strait of Hormuz and easing global market fears. The S&P 500 soared 2.5%, the Dow Jones Industrial Average jumped 1,325 points, and the Nasdaq composite rallied 2.8% after President Donald Trump announced the temporary ceasefire.\n\nBenchmark U.S. crude oil prices dropped more than 16%, falling below $95 per barrel, while Brent crude also saw a sharp decline. The drop reversed some of the increases that came after five weeks of conflict, which had blocked the vital oil passage and pushed prices above $119 per barrel at their peak. Iran’s foreign minister stated that oil tankers would be allowed to pass for the next two weeks under Iranian military supervision.\n\nAirline and travel stocks rebounded strongly, with United Airlines up 7.9% and Carnival cruise lines climbing 9.6%. Delta Air Lines reported better-than-expected quarterly results, citing continued strong demand despite recent fuel price hikes. The positive momentum also spread globally, with Asia’s Nikkei 225 and Kospi indexes soaring over 5%, and major European markets such as Germany’s DAX and France’s CAC 40 rising over 4% each.\n\nDespite the optimism, analysts urged caution. The ceasefire remains fragile, with continued attacks reported in Iran, Israel, and Lebanon. The market’s upbeat response faded somewhat later in the day as questions lingered about whether the truce would hold and if shipping through the Strait of Hormuz would fully normalize.\n\nIn the bond market, Treasury yields fell, reflecting hopes that lower oil prices could allow the Federal Reserve to resume interest rate cuts later in the year. The yield on the 10-year Treasury note slipped to 4.29% from 4.33%."} +{"url": "https://newsradiowkcy.iheart.com/content/2026-04-08-stocks-close-the-day-higher-as-oil-prices-plummet-over-iran-war-cease-fire/", "title": "Stocks Close The Day Higher As Oil Prices Plummet Over Iran War Cease Fire | NewsRadio WKCY", "publish_date": "2026-04-09T01:21:11Z", "full_text": "Stocks surged and oil prices plunged Wednesday (April 8) after a fragile two-week ceasefire between the United States and Iran took effect, raising hopes for renewed oil shipments through the Strait of Hormuz and easing global market fears. The S&P 500 soared 2.5%, the Dow Jones Industrial Average jumped 1,325 points, and the Nasdaq composite rallied 2.8% after President Donald Trump announced the temporary ceasefire.\n\nBenchmark U.S. crude oil prices dropped more than 16%, falling below $95 per barrel, while Brent crude also saw a sharp decline. The drop reversed some of the increases that came after five weeks of conflict, which had blocked the vital oil passage and pushed prices above $119 per barrel at their peak. Iran’s foreign minister stated that oil tankers would be allowed to pass for the next two weeks under Iranian military supervision.\n\nAirline and travel stocks rebounded strongly, with United Airlines up 7.9% and Carnival cruise lines climbing 9.6%. Delta Air Lines reported better-than-expected quarterly results, citing continued strong demand despite recent fuel price hikes. The positive momentum also spread globally, with Asia’s Nikkei 225 and Kospi indexes soaring over 5%, and major European markets such as Germany’s DAX and France’s CAC 40 rising over 4% each.\n\nDespite the optimism, analysts urged caution. The ceasefire remains fragile, with continued attacks reported in Iran, Israel, and Lebanon. The market’s upbeat response faded somewhat later in the day as questions lingered about whether the truce would hold and if shipping through the Strait of Hormuz would fully normalize.\n\nIn the bond market, Treasury yields fell, reflecting hopes that lower oil prices could allow the Federal Reserve to resume interest rate cuts later in the year. The yield on the 10-year Treasury note slipped to 4.29% from 4.33%."} +{"url": "https://whp580.iheart.com/content/2026-04-08-stocks-close-the-day-higher-as-oil-prices-plummet-over-iran-war-cease-fire/", "title": "Stocks Close The Day Higher As Oil Prices Plummet Over Iran War Cease Fire", "publish_date": "2026-04-09T01:21:11Z", "full_text": "Stocks surged and oil prices plunged Wednesday (April 8) after a fragile two-week ceasefire between the United States and Iran took effect, raising hopes for renewed oil shipments through the Strait of Hormuz and easing global market fears. The S&P 500 soared 2.5%, the Dow Jones Industrial Average jumped 1,325 points, and the Nasdaq composite rallied 2.8% after President Donald Trump announced the temporary ceasefire.\n\nBenchmark U.S. crude oil prices dropped more than 16%, falling below $95 per barrel, while Brent crude also saw a sharp decline. The drop reversed some of the increases that came after five weeks of conflict, which had blocked the vital oil passage and pushed prices above $119 per barrel at their peak. Iran’s foreign minister stated that oil tankers would be allowed to pass for the next two weeks under Iranian military supervision.\n\nAirline and travel stocks rebounded strongly, with United Airlines up 7.9% and Carnival cruise lines climbing 9.6%. Delta Air Lines reported better-than-expected quarterly results, citing continued strong demand despite recent fuel price hikes. The positive momentum also spread globally, with Asia’s Nikkei 225 and Kospi indexes soaring over 5%, and major European markets such as Germany’s DAX and France’s CAC 40 rising over 4% each.\n\nDespite the optimism, analysts urged caution. The ceasefire remains fragile, with continued attacks reported in Iran, Israel, and Lebanon. The market’s upbeat response faded somewhat later in the day as questions lingered about whether the truce would hold and if shipping through the Strait of Hormuz would fully normalize.\n\nIn the bond market, Treasury yields fell, reflecting hopes that lower oil prices could allow the Federal Reserve to resume interest rate cuts later in the year. The yield on the 10-year Treasury note slipped to 4.29% from 4.33%."} +{"url": "https://lecourrier.vn/wall-street-cloture-en-nette-hausse-soulagee-par-le-cessez-le-feu-en-iran/1345035.html", "title": "Wall Street clôture en nette hausse , soulagée par le cessez - le - feu en Iran", "publish_date": "2026-04-09T01:21:11Z", "full_text": "Wall Street clôture en nette hausse, soulagée par le cessez-le-feu en Iran\n\nLa Bourse de New York a clôturé en franche hausse mercredi 8 avril, les investisseurs continuant de saluer l'annonce d'un cessez-le-feu de deux semaines entre les États-Unis et l'Iran.\n\n>> Wall Street termine en hausse, espère une fin du conflit au Moyen-Orient\n\n>> Wall Street termine sans direction claire après les propos de Trump sur l'Iran\n\n>> Wall Street termine en hausse, espère une trêve entre Washington et Téhéran\n\nPhoto : AFP/VNA/CVN\n\nLe Dow Jones a gagné 2,85%, l'indice Nasdaq a progressé de 2,80% et l'indice élargi S&P 500 s'est octroyé 2,51%.\n\n\"Un sentiment de soulagement traverse le marché\", commente auprès de l'AFP, Angelo Kourkafas, analyste d'Edward Jones.\n\nWashington et Téhéran se sont accordés dans la nuit de mardi 7 avril à mercredi 8 avril pour une trêve de deux semaines qui laisse espérer une reprise du trafic dans le détroit d'Ormuz, par où transite habituellement un cinquième du brut mondial.\n\nLes prix du pétrole ont décroché dans la foulée, repassant sous le \"seuil psychologique\" des 100 dollars le baril, remarque Kourkafas.\n\nCela \"contribue à apaiser les craintes de récession, à revoir à la hausse les prévisions de croissance mondiale et à réduire les anticipations d'inflation\", résume Jose Torres, d'Interactive Brokers, d'où l'optimisme de Wall Street.\n\nMalgré l'annonce d'une réouverture du détroit d'Ormuz, rares étaient les navires mercredi 8 avril à se risquer dans ce passage, signe d'une prudence encore extrême sur la suite du conflit.\n\n\"En fonction des gros titres (...) la volatilité pourrait revenir\" sur la place new-yorkaise, estime Angelo Kourkafas.\n\n\"Wall Street n'est pas encore tirée d'affaire\", abonde Jose Torres.\n\nSur le marché obligataire, après s'être détendu en début de séance, le rendement à dix ans des emprunts de l'Etat américain restait finalement stable. Vers 20h15 GMT, il évoluait autour de 4,29%.\n\nÀ la cote, le secteur de l'énergie s'est replié, entraîné par la chute des cours du pétrole.\n\nLe géant pétrolier Chevron a perdu 4,34%, ConocoPhillips a reculé de 4,93% et EOG Resources, de 3,61%.\n\nAutre grand nom du secteur des hydrocarbures, ExxonMobil a lâché 4,70% à 156,21 dollars. Le groupe a indiqué mercredi 8 avril que les perturbations causées par le conflit au Moyen-Orient allaient réduire d'environ 6% sa production mondiale de pétrole au premier trimestre, par rapport au trimestre précédent.\n\nÀ l'inverse, les entreprises grandes consommatrices de pétrole ont soufflé.\n\nParticulièrement malmenées ces dernières semaines, les compagnies aériennes ont été recherchées, à l'image de Delta Air Lines (+3,78%), American Airlines (+5,55%) ou Alaska Air Group (+8,11%).\n\nLe croisiériste Carnival a été propulsé de 11,23% et son concurrent Royal Caribbean a gagné 4,38%.\n\nLes groupes de livraison de plis et de colis (FedEx +4,59%, UPS +2,94%), également minés par le conflit, ont aussi pris de la vitesse mercredi 8 avril.\n\nDans un contexte d'appétit pour le risque, les valeurs liées au secteur des cryptomonnaies ont profité du rebond du bitcoin.\n\nLa plateforme d'échange Robinhood a pris 3,13% à 71,83 dollars et le \"mineur\" (créateur de monnaie numérique) Riot Platforms s'est envolé de 13,53% à 16,11 dollars.\n\nAFP/VNA/CVN"} +{"url": "https://www.dailyexcelsior.com/rupee-likely-to-stabilise-at-92-93-level-eac-pm-chairman/", "title": "Rupee likely to stabilise at 92 - 93 level : EAC - PM chairman", "publish_date": "2026-04-09T01:21:11Z", "full_text": "KOLKATA, Apr 8 : Chairman of the Economic Advisory Council to the Prime Minister (EAC-PM), S Mahendra Dev, on Wednesday said that Indian Rupee is expected to stabilise at the 92-93 level against the US dollar and expressed optimism that foreign investment flows will improve in the near future as geopolitical tensions ease and macroeconomic fundamentals remain strong.\n\nDev said the currency had faced pressure due to global uncertainties, including the recent conflict between the United States and Iran, and the withdrawal of foreign institutional investors (FII).\n\nHis remarks come after a temporary ceasefire between the US and Iran has helped calm global markets, easing fears of supply disruptions in the oil market and reducing volatility in currencies, including the Rupee.\n\n“Rupee is stabilising at 92-93. Because of global war-related headwinds and FII withdrawals, there was pressure. But despite these odds, Rupee will stabilise at these levels. One should not worry,” Dev said on the sidelines of the Bharat Chamber of Commerce interactive session.\n\nRupee had recently crossed more than 95 against the US dollar.\n\nThe chairman of the EAC-PM noted that India’s economic resilience and sound macroeconomic fundamentals provide the capacity to absorb external shocks.\n\n“The resilience of the Indian economy is strong. Our macro fundamentals are good, and we have fiscal space to absorb shocks. Many countries do not have that advantage,” he said.\n\nAccording to Dev, India’s fiscal position allows continued spending on infrastructure and welfare even during global uncertainty.\n\n“We can continue capital expenditure and social spending, which many countries cannot do. Our fiscal management is also good,” he said.\n\nHe also highlighted structural factors such as improvements in the debt-to-GDP ratio, ongoing economic reforms and technological advancements as elements that would encourage private sector investment and support higher growth.\n\nDev added that the current account deficit could go up to 2 per cent of the GDP, and our present level is about 1.3 per cent, so that is not posing a major concern.\n\nThe current account deficit can go up to around 2 per cent from the current level of 1.3 per cent, and “so we have headroom”, he said.\n\nHe also described the decision of the Reserve Bank of India’s Monetary Policy Committee (MPC) to keep policy rates unchanged as appropriate in the current economic environment.\n\nOn growth prospects, Dev said he remains optimistic that India will achieve 6.9 per cent and even 7 per cent growth in 2026-27 despite global uncertainties.\n\nWhile the RBI has projected growth at 6.9 per cent, the chairman of the EAC-PM said he was “more positive” about the outlook.\n\n“I am more positive. I was saying we can achieve even 7 per cent growth,” he said, citing recent economic performance as evidence of sustained momentum as India moves towards its goal of becoming a developed nation by 2047. (PTI)"} +{"url": "https://1019bigwaax.iheart.com/content/2026-04-08-stocks-close-the-day-higher-as-oil-prices-plummet-over-iran-war-cease-fire/", "title": "Stocks Close The Day Higher As Oil Prices Plummet Over Iran War Cease Fire", "publish_date": "2026-04-09T01:21:11Z", "full_text": "Stocks surged and oil prices plunged Wednesday (April 8) after a fragile two-week ceasefire between the United States and Iran took effect, raising hopes for renewed oil shipments through the Strait of Hormuz and easing global market fears. The S&P 500 soared 2.5%, the Dow Jones Industrial Average jumped 1,325 points, and the Nasdaq composite rallied 2.8% after President Donald Trump announced the temporary ceasefire.\n\nBenchmark U.S. crude oil prices dropped more than 16%, falling below $95 per barrel, while Brent crude also saw a sharp decline. The drop reversed some of the increases that came after five weeks of conflict, which had blocked the vital oil passage and pushed prices above $119 per barrel at their peak. Iran’s foreign minister stated that oil tankers would be allowed to pass for the next two weeks under Iranian military supervision.\n\nAirline and travel stocks rebounded strongly, with United Airlines up 7.9% and Carnival cruise lines climbing 9.6%. Delta Air Lines reported better-than-expected quarterly results, citing continued strong demand despite recent fuel price hikes. The positive momentum also spread globally, with Asia’s Nikkei 225 and Kospi indexes soaring over 5%, and major European markets such as Germany’s DAX and France’s CAC 40 rising over 4% each.\n\nDespite the optimism, analysts urged caution. The ceasefire remains fragile, with continued attacks reported in Iran, Israel, and Lebanon. The market’s upbeat response faded somewhat later in the day as questions lingered about whether the truce would hold and if shipping through the Strait of Hormuz would fully normalize.\n\nIn the bond market, Treasury yields fell, reflecting hopes that lower oil prices could allow the Federal Reserve to resume interest rate cuts later in the year. The yield on the 10-year Treasury note slipped to 4.29% from 4.33%."} +{"url": "https://santamariatimes.com/ap/business/oil-plunges-below-95-as-the-dow-surges-1-300-in-a-worldwide-rally-following/article_a54e11c8-bfe7-4866-8e05-38da805d67ae.html", "title": "Oil plunges below $95 as the Dow surges 1 , 300 in a worldwide rally following a ceasefire with Iran", "publish_date": "2026-04-09T01:21:11Z", "full_text": "Copyright 2026 The Associated Press. All rights reserved. This material may not be published, broadcast, rewritten or redistributed without permission."} +{"url": "https://www.gobankingrates.com/taxes/refunds/suze-orman-best-ways-use-large-tax-refund-to-become-financially-secure/", "title": "Suze Orman : 6 Best Ways To Use Tax Refund", "publish_date": "2026-04-09T01:21:11Z", "full_text": "Suze Orman: 6 Best Ways To Use a Large Tax Refund To Become Financially Secure\n\nMediapunch / Shutterstock.com\n\nCommitment to Our Readers GOBankingRates' editorial team is committed to bringing you unbiased reviews and information. We use data-driven methodologies to evaluate financial products and services - our reviews and ratings are not influenced by advertisers. You can read more about our editorial guidelines and our products and services review methodology. 20 Years\n\nHelping You Live Richer Reviewed\n\nby Experts Trusted by\n\nMillions of Readers\n\nTax refunds hit differently this year. Financial expert Suze Orman said that economists expect households to receive significantly larger refunds than usual due to new tax rules Congress passed last year.\n\nThe average federal tax refund of around $3,000 might rise by another $1,000 or more, according to some estimates. Orman’s concern is that people will spend the windfall rather than strengthen their financial position.\n\n“I want you to use any tax refund as an opportunity to build financial security, not just buy things,” Orman wrote in a recent blog post. She called the advice “extra important right now” given economic stress signals including slowed job growth and businesses increasingly using artificial intelligence for jobs previously requiring human staff.\n\nOrman recommended six specific uses for an unexpectedly large tax refund.\n\n1. Emergency Savings Gets Priority\n\nBuilding emergency reserves ranks first on Orman’s list. “Every dollar here gives you peace of mind and protection,” she said.\n\nThe recommendation makes particular sense given current economic uncertainty. Job security concerns have risen across multiple industries as companies explore AI replacements for human workers. An emergency fund covering three to six months of expenses provides breathing room if employment situations change suddenly.\n\nHigh-yield savings accounts currently offer around 4% to 5% annual percentage yields, meaning a $4,000 tax refund deposit immediately starts earning $160 to $200 yearly in interest while remaining accessible for emergencies.\n\nLearn More: Maximize Your Tax Refund by Avoiding This Common Mistake\n\n2. Attack Credit Card Debt Strategically\n\nOrman suggested paying down high-interest credit card debt but added an important qualifier. “First, see if you qualify for a zero-rate balance transfer credit card offer, then attack that balance,” she said.\n\nBalance transfer cards typically offer 0% APR for 12 to 21 months on transferred balances. Moving a $4,000 balance from a card charging 22% interest to a 0% promotional card saves approximately $880 in interest over a year while the entire payment goes toward principal.\n\nThe strategy requires discipline to pay off the balance before the promotional period ends. Missing that deadline means facing deferred interest charges or high ongoing rates.\n\n3. Maintenance Spending That Saves Money\n\nCar and home maintenance made Orman’s list as smart refund uses. “Avoiding costly repairs and extending the life of your current car means not having to deal with today’s insanely expensive new and used-car market,” she wrote.\n\nThe math supports this approach. Regular maintenance like oil changes, tire rotations and brake inspections costs hundreds of dollars but prevents thousands in major repairs. New car prices average over $48,000 while used cars that would have cost $20,000 a few years ago now run $30,000 or more.\n\nHome maintenance follows similar logic. “It not only can mean avoiding bigger repair costs down the line, but it also keeps the value of your home stronger,” Orman said. A $500 roof repair now prevents a $15,000 roof replacement later.\n\n4. Retirement Account Contributions\n\nBoosting retirement savings made the list with specific numbers. “For 2026, the Roth IRA contribution limit has increased to $7,500 ($8,600 if you’re 50 or older),” Orman noted.\n\nA $4,000 tax refund deposited into a Roth IRA grows tax-free for decades. Assuming 7% average annual returns, that $4,000 becomes approximately $31,000 in 30 years without any additional contributions. The Roth structure means withdrawals in retirement come out completely tax-free.\n\nThe strategy works particularly well for younger workers who have time for compound growth to work its magic. Someone in their 30s depositing tax refunds annually into a Roth IRA builds substantial tax-free retirement wealth.\n\n5. Invest In Skills\n\nOrman’s final recommendation addressed job security concerns directly. “If you are worried about job security, especially in a field where artificial intelligence is already being used, consider how to make your resume as up-to-date as possible,” she said.\n\nShe suggested online courses or community college classes if current employers don’t cover continuing education costs. Spending $1,000 from a tax refund on professional certifications or skill development can mean the difference between staying employed or facing job searches in competitive markets.\n\nFields facing AI disruption including customer service, data entry, basic accounting and content creation all require workers to develop higher-level skills that complement rather than compete with automation.\n\n6. The Need Versus Want Question\n\nOrman wrapped her advice with a philosophical challenge. “Is this a need, or a want?” she asked readers to consider before spending refunds.\n\n“If there is any part of your financial life that gnaws at you right now, the kindest and smartest move you can make today is to limit your spending–be it a tax refund or your regular income–on wants,” Orman wrote. She emphasized that financial peace of mind represents the greatest need.\n\nThe discipline to direct windfall money toward security rather than consumption separates those who build wealth from those who perpetually struggle financially. Tax refunds represent found money that doesn’t appear in monthly budgets, making them psychologically easier to save or invest rather than spend.\n\nOrman’s hope is simple: “I hope you prove them wrong” about economists’ expectations that households will simply spend larger refunds this year."} diff --git a/Data/1_Bronze_Raw/News_Scrapes/2026-04-08/Raw/raw_gdelt_asset_precious_metals_spot.jsonl b/Data/1_Bronze_Raw/News_Scrapes/2026-04-08/Raw/raw_gdelt_asset_precious_metals_spot.jsonl new file mode 100644 index 0000000..aa1946e --- /dev/null +++ b/Data/1_Bronze_Raw/News_Scrapes/2026-04-08/Raw/raw_gdelt_asset_precious_metals_spot.jsonl @@ -0,0 +1,10 @@ +{"url": "https://www.nbd.com.cn/articles/2026-04-08/4329502.html", "url_mobile": "https://m.nbd.com.cn/articles/2026-04-08/4329502.html", "title": "4月以来公募基金调研超500次 ; 社保组合 、 养老金产品最新持仓曝光", "seendate": "20260409T010000Z", "socialimage": "", "domain": "nbd.com.cn", "language": "Chinese", "sourcecountry": "China"} +{"url": "https://www.cqnews.net/web/content_1491699358938636288.html", "url_mobile": "", "title": "生态优势转为发展胜势 - 华龙网", "seendate": "20260409T010000Z", "socialimage": "", "domain": "cqnews.net", "language": "Chinese", "sourcecountry": "China"} +{"url": "https://baijiahao.baidu.com/s?id=1861950725418214601", "url_mobile": "", "title": "黄金白银 , 大幅波动 ! 水贝市场 , 新变化→", "seendate": "20260409T010000Z", "socialimage": "", "domain": "baijiahao.baidu.com", "language": "Chinese", "sourcecountry": "China"} +{"url": "https://www.illawarramercury.com.au/story/9217560/everything-you-need-to-know-about-flying-with-pets-in-cabin/", "url_mobile": "", "title": "Everything you need to know about flying with pets in cabin | Illawarra Mercury", "seendate": "20260409T010000Z", "socialimage": "https://www.illawarramercury.com.au/images/transform/v1/crop/frm/QQwHRnUv9qYdvjDNLdqaup/896b97f1-f66e-4b4f-8523-cb5c1ac83776.jpg/r0_562_7952_4737_w1200_h630_fmax.jpg", "domain": "illawarramercury.com.au", "language": "English", "sourcecountry": "Australia"} +{"url": "https://finance.sina.com.cn/stock/hyyj/2026-04-09/doc-inhtwaie2175693.shtml", "url_mobile": "", "title": "中信建投 : 继续看好AI板块 尤其是光通信环节", "seendate": "20260409T004500Z", "socialimage": "https://n.sinaimg.cn/spider20260409/341/w800h341/20260409/4045-7cce34c97a4d09d83eb60e5509314cd5.jpg", "domain": "finance.sina.com.cn", "language": "Chinese", "sourcecountry": "China"} +{"url": "https://www.itbear.com.cn/html/2026-04/1264928.html", "url_mobile": "", "title": "逆境中破局前行 , 埃安换标推新高端品牌引领行业新变革 - 智能汽车 - ITBear比尔科技", "seendate": "20260409T004500Z", "socialimage": "", "domain": "itbear.com.cn", "language": "Chinese", "sourcecountry": "China"} +{"url": "https://www.163.com/dy/article/KQ2DKDEO05198UNI.html", "url_mobile": "https://m.163.com/dy/article/KQ2DKDEO05198UNI.html", "title": "无惧地缘逆风 ! 高盛 : AI支出浪潮汹涌 , 布局 卖铲人 正当时|人工智能", "seendate": "20260409T004500Z", "socialimage": "", "domain": "163.com", "language": "Chinese", "sourcecountry": "China"} +{"url": "https://news.ycwb.com/ikimvkotkb/content_54054001.htm", "url_mobile": "", "title": "广州发布专业市场转型升级三年行动方案 508家专业市场将焕新", "seendate": "20260409T004500Z", "socialimage": "https://www.ycwb.com/images/jyw_QQWeChat_transmit.jpg", "domain": "news.ycwb.com", "language": "Chinese", "sourcecountry": "China"} +{"url": "https://www.finanznachrichten.de/nachrichten-2026-04/68152259-alkane-resources-limited-march-2026-quarter-production-update-399.htm", "url_mobile": "", "title": "Alkane Resources Limited : March 2026 Quarter Production Update", "seendate": "20260409T004500Z", "socialimage": "https://ml.globenewswire.com/media/ZTYzMjdhMWUtZGVhNC00N2U4LThjYTAtZWUyN2M1NThjMjEwLTEzMTU5NzYtMjAyNi0wNC0wOC1lbg==/tiny/Alkane-Resources-Limited.png", "domain": "finanznachrichten.de", "language": "English", "sourcecountry": "Germany"} +{"url": "https://www.163.com/dy/article/KQ2E94OS05118O8G.html", "url_mobile": "https://m.163.com/dy/article/KQ2E94OS05118O8G.html", "title": "早报|B站推出播放页暂停广告 / GoPro启动大规模裁员 / Meta时隔9个月再发大模型 , 被指 「 图表造假 」 ", "seendate": "20260409T004500Z", "socialimage": "", "domain": "163.com", "language": "Chinese", "sourcecountry": "China"} diff --git a/Data/1_Bronze_Raw/News_Scrapes/2026-04-08/Raw/raw_gdelt_macro_central_banks.jsonl b/Data/1_Bronze_Raw/News_Scrapes/2026-04-08/Raw/raw_gdelt_macro_central_banks.jsonl new file mode 100644 index 0000000..4b28808 --- /dev/null +++ b/Data/1_Bronze_Raw/News_Scrapes/2026-04-08/Raw/raw_gdelt_macro_central_banks.jsonl @@ -0,0 +1,10 @@ +{"url": "https://www.zonebourse.com/actualite-bourse/royaume-uni-les-acheteurs-immobiliers-marquent-le-pas-face-a-la-remontee-des-taux-selon-la-rics-ce7e50dbda8ef124", "url_mobile": "", "title": "Royaume - Uni : les acheteurs immobiliers marquent le pas face à la remontée des taux , selon la RICS", "seendate": "20260409T010000Z", "socialimage": "https://cdn.zonebourse.com/static/resize/0/0/images/reuters/2026-04/2026-04-08T230420Z_1_LYNXMPEM371CY_RTROPTP_4_BRITAIN-ECONOMY.JPG", "domain": "zonebourse.com", "language": "French", "sourcecountry": "France"} +{"url": "https://www.clactonandfrintongazette.co.uk/news/national/26005807.rising-mortgage-costs-dent-buyer-demand-amid-housing-market-mood-shift/", "url_mobile": "", "title": "Rising mortgage costs dent buyer demand amid housing market mood shift ", "seendate": "20260409T010000Z", "socialimage": "https://www.clactonandfrintongazette.co.uk/resources/images/20763503.jpg?type=og-image", "domain": "clactonandfrintongazette.co.uk", "language": "English", "sourcecountry": "United Kingdom"} +{"url": "https://www.northwichguardian.co.uk/news/national/26005807.rising-mortgage-costs-dent-buyer-demand-amid-housing-market-mood-shift/", "url_mobile": "", "title": "Rising mortgage costs dent buyer demand amid housing market mood shift ", "seendate": "20260409T010000Z", "socialimage": "https://www.northwichguardian.co.uk/resources/images/20763503.jpg?type=og-image", "domain": "northwichguardian.co.uk", "language": "English", "sourcecountry": "United Kingdom"} +{"url": "https://www.dunya.com/kose-yazisi/gunde-ortalama-18-milyar-tl/820965", "url_mobile": "", "title": "Günde ortalama 18 milyar TL - Naki BAKIR", "seendate": "20260409T004500Z", "socialimage": "https://image.dunya.com/rcman/Cw1280h720q95gc/storage/files/images/2026/02/26/para-kiq6_cover.jpg", "domain": "dunya.com", "language": "Turkish", "sourcecountry": "Turkey"} +{"url": "https://www.fnnews.com/news/202604090630516306", "url_mobile": "https://www.fnnews.com/ampNews/202604090630516306", "title": "경기 불황에 카드 돌려막기 6개월 만에 반등 … 연체율도 20년새 최고", "seendate": "20260409T004500Z", "socialimage": "https://image.fnnews.com/resource/media/image/2026/04/09/202604090630489611_l.jpg", "domain": "fnnews.com", "language": "Korean", "sourcecountry": "South Korea"} +{"url": "https://newsradio1290wtks.iheart.com/content/2026-04-08-stocks-close-the-day-higher-as-oil-prices-plummet-over-iran-war-cease-fire/", "url_mobile": "", "title": "Stocks Close The Day Higher As Oil Prices Plummet Over Iran War Cease Fire", "seendate": "20260409T004500Z", "socialimage": "https://i.iheart.com/v3/re/assets.getty/69d6cabbab0909491c4ab0bc?ops=gravity(%22north%22),fit(1200,675),quality(65)", "domain": "newsradio1290wtks.iheart.com", "language": "English", "sourcecountry": "United States"} +{"url": "https://www.watfordobserver.co.uk/news/national/26005807.rising-mortgage-costs-dent-buyer-demand-amid-housing-market-mood-shift/", "url_mobile": "", "title": "Rising mortgage costs dent buyer demand amid housing market mood shift ", "seendate": "20260409T004500Z", "socialimage": "https://www.watfordobserver.co.uk/resources/images/20763503.jpg?type=og-image", "domain": "watfordobserver.co.uk", "language": "English", "sourcecountry": "United Kingdom"} +{"url": "https://newsradiowkcy.iheart.com/content/2026-04-08-stocks-close-the-day-higher-as-oil-prices-plummet-over-iran-war-cease-fire/", "url_mobile": "", "title": "Stocks Close The Day Higher As Oil Prices Plummet Over Iran War Cease Fire | NewsRadio WKCY", "seendate": "20260409T004500Z", "socialimage": "https://i.iheart.com/v3/re/assets.getty/69d6cabbab0909491c4ab0bc?ops=gravity(%22north%22),fit(1200,675),quality(65)", "domain": "newsradiowkcy.iheart.com", "language": "English", "sourcecountry": "United States"} +{"url": "https://www.stourbridgenews.co.uk/news/national/26005807.rising-mortgage-costs-dent-buyer-demand-amid-housing-market-mood-shift/", "url_mobile": "", "title": "Rising mortgage costs dent buyer demand amid housing market mood shift ", "seendate": "20260409T004500Z", "socialimage": "https://www.stourbridgenews.co.uk/resources/images/20763503.jpg?type=og-image", "domain": "stourbridgenews.co.uk", "language": "English", "sourcecountry": "United Kingdom"} +{"url": "https://www.dunya.com/kose-yazisi/fiyat-artisini-ihracat-kisitlamasi-ile-onlemenin-verdigi-zarar/820975", "url_mobile": "", "title": "Fiyat artışını ihracat kısıtlaması ile önlemenin verdiği zarar … ", "seendate": "20260409T004500Z", "socialimage": "https://img.dunya.com/rcman/Cw685h350q95gc/storage/files/images/2024/11/18/ferit-parlak-vahy.jpg", "domain": "dunya.com", "language": "Turkish", "sourcecountry": "Turkey"} diff --git a/Data/1_Bronze_Raw/News_Scrapes/2026-04-08/Raw/raw_gdelt_macro_inflation_employment.jsonl b/Data/1_Bronze_Raw/News_Scrapes/2026-04-08/Raw/raw_gdelt_macro_inflation_employment.jsonl new file mode 100644 index 0000000..1c7568c --- /dev/null +++ b/Data/1_Bronze_Raw/News_Scrapes/2026-04-08/Raw/raw_gdelt_macro_inflation_employment.jsonl @@ -0,0 +1,10 @@ +{"url": "https://baijiahao.baidu.com/s?id=1861950725418214601", "url_mobile": "", "title": "黄金白银 , 大幅波动 ! 水贝市场 , 新变化→", "seendate": "20260409T010000Z", "socialimage": "", "domain": "baijiahao.baidu.com", "language": "Chinese", "sourcecountry": "China"} +{"url": "https://www.ambito.com/economia/alfonso-prat-gay-no-hay-ningun-programa-economico-que-enamore-si-no-genera-empleo-y-produccion-n6264545", "url_mobile": "", "title": "Alfonso Prat Gay : No hay ningún programa económico que enamore si no genera empleo y producción", "seendate": "20260409T004500Z", "socialimage": "https://media.ambito.com/p/2ba11f6bb70b9497baf7f7b908f63c60/adjuntos/239/imagenes/043/288/0043288098/1200x675/smart/alfonso-prat-gay.jpeg", "domain": "ambito.com", "language": "Spanish", "sourcecountry": "Argentina"} +{"url": "https://finance.yahoo.com/markets/stocks/articles/why-carnival-ccl-stock-soaring-000547814.html", "url_mobile": "", "title": "Why Is Carnival ( CCL ) Stock Soaring Today", "seendate": "20260409T004500Z", "socialimage": "https://s.yimg.com/ny/api/res/1.2/ngn388ko3b08d06tsw2YWQ--/YXBwaWQ9aGlnaGxhbmRlcjt3PTEyMDA7aD02MDA-/https://media.zenfs.com/en/stockstory_922/2b1804a23038eb5d248e624fd4368dea", "domain": "finance.yahoo.com", "language": "English", "sourcecountry": "United States"} +{"url": "https://www.fnnews.com/news/202604090857326831", "url_mobile": "https://www.fnnews.com/ampNews/202604090857326831", "title": "호르무즈 계속 막은 이란 … 하루 통과 10여척으로 제한 계획 ", "seendate": "20260409T004500Z", "socialimage": "https://image.fnnews.com/resource/media/image/2026/04/09/202604090857299888_l.jpg", "domain": "fnnews.com", "language": "Korean", "sourcecountry": "South Korea"} +{"url": "https://baotintuc.vn/thi-truong-tien-te/gia-dau-giam-manh-khi-ky-vong-khoi-thong-eo-bien-hormuz-gia-tang-20260409072028597.htm", "url_mobile": "", "title": "Giá dầu giảm mạnh khi kỳ vọng khơi thông eo biển Hormuz gia tăng", "seendate": "20260409T004500Z", "socialimage": "https://cdnmedia.baotintuc.vn/Upload/YZmStSDTjb0M07hFJ2gA/files/2026/04/01/dau-070426-1.jpg", "domain": "baotintuc.vn", "language": "Vietnamese", "sourcecountry": "Vietnam"} +{"url": "http://www.californiatelegraph.com/news/278972410/frp-holdings-inc-announces-release-date-for-its-2025-fourth-quarter-and-full-year-earnings-and-details-for-the-earnings-conference-call", "url_mobile": "", "title": "FRP Holdings , Inc . Announces Release Date for Its 2025 Fourth Quarter and Full Year Earnings and Details for the Earnings Conference Call", "seendate": "20260409T004500Z", "socialimage": "", "domain": "californiatelegraph.com", "language": "English", "sourcecountry": "United States"} +{"url": "https://africanmanager.com/wall-street-cloture-en-nette-hausse-soulagee-par-le-cessez-le-feu-en-iran/", "url_mobile": "", "title": "Wall Street clôture en nette hausse , soulagée par le cessez - le - feu en Iran", "seendate": "20260409T004500Z", "socialimage": "https://cdnfr.africanmanager.com/wp-content/uploads/2022/12/wall.jpg", "domain": "africanmanager.com", "language": "French", "sourcecountry": "Tunisia"} +{"url": "https://www.kompas.com/tren/read/2026/04/09/063000865/rupiah-tembus-rp-17.100-per-dollar-as-ini-penyebab-pelemahannya-menurut", "url_mobile": "https://amp.kompas.com/tren/read/2026/04/09/063000865/rupiah-tembus-rp-17.100-per-dollar-as-ini-penyebab-pelemahannya-menurut", "title": "Rupiah Tembus Rp 17 . 100 per Dollar AS , Ini Penyebab Pelemahannya Menurut Ekonom", "seendate": "20260409T004500Z", "socialimage": "https://asset.kompas.com/crops/ASaxsAOxNSzkzhQ9fII4PNmEFnI=/0x0:1279x853/1200x675/filters:watermark(data/photo/2026/01/30/697c818d0ca91.png,0,-0,1)/data/photo/2026/03/03/69a634cd41d23.jpg", "domain": "kompas.com", "language": "Indonesian", "sourcecountry": "Indonesia"} +{"url": "https://www.lavanguardia.com/participacion/cartas/20260409/11508990/actualitzar-l-irpf.html", "url_mobile": "https://www.lavanguardia.com/participacion/cartas/20260409/11508990/actualitzar-l-irpf.amp.html", "title": "Actualitzar lIRPF", "seendate": "20260409T004500Z", "socialimage": "https://www.lavanguardia.com/images/default.jpg?b", "domain": "lavanguardia.com", "language": "Catalan", "sourcecountry": "Spain"} +{"url": "https://www.losandes.com.ar/agroindustria/cosechar-la-incertidumbre-la-preocupacion-el-valle-uco-que-obliga-repensar-el-modelo-productivo-n5986673", "url_mobile": "", "title": "Cosechar en la incertidumbre : la preocupación en el Valle de Uco que obliga a repensar el modelo productivo", "seendate": "20260409T004500Z", "socialimage": "https://media.losandes.com.ar/p/3858ec77baa8f4056a9d4f962673683f/adjuntos/368/imagenes/100/185/0100185618/1200x675/smart/vista-vinedos-del-valle-uco-el-final-del-otono-claudio-gutierrez.jpg", "domain": "losandes.com.ar", "language": "Spanish", "sourcecountry": "Argentina"} diff --git a/Data/1_Bronze_Raw/News_Scrapes/2026-04-08/Raw/raw_gdelt_macro_yields_dollar.jsonl b/Data/1_Bronze_Raw/News_Scrapes/2026-04-08/Raw/raw_gdelt_macro_yields_dollar.jsonl new file mode 100644 index 0000000..79380d8 --- /dev/null +++ b/Data/1_Bronze_Raw/News_Scrapes/2026-04-08/Raw/raw_gdelt_macro_yields_dollar.jsonl @@ -0,0 +1,10 @@ +{"url": "https://lasillarota.com/hidalgo/estado/2026/4/8/encuentro-nacional-de-bordado-reune-mas-de-cien-artesanos-en-tenango-de-doria-593743.html", "url_mobile": "", "title": "Encuentro Nacional de Bordado reúne a más de cien artesanos en Tenango de Doria", "seendate": "20260409T004500Z", "socialimage": "https://lasillarota.com/u/fotografias/m/2026/4/8/f1280x720-850385_982060_5050.jpeg", "domain": "lasillarota.com", "language": "Spanish", "sourcecountry": "Mexico"} +{"url": "https://africanmanager.com/wall-street-cloture-en-nette-hausse-soulagee-par-le-cessez-le-feu-en-iran/", "url_mobile": "", "title": "Wall Street clôture en nette hausse , soulagée par le cessez - le - feu en Iran", "seendate": "20260409T004500Z", "socialimage": "https://cdnfr.africanmanager.com/wp-content/uploads/2022/12/wall.jpg", "domain": "africanmanager.com", "language": "French", "sourcecountry": "Tunisia"} +{"url": "https://newsradio1290wtks.iheart.com/content/2026-04-08-stocks-close-the-day-higher-as-oil-prices-plummet-over-iran-war-cease-fire/", "url_mobile": "", "title": "Stocks Close The Day Higher As Oil Prices Plummet Over Iran War Cease Fire", "seendate": "20260409T004500Z", "socialimage": "https://i.iheart.com/v3/re/assets.getty/69d6cabbab0909491c4ab0bc?ops=gravity(%22north%22),fit(1200,675),quality(65)", "domain": "newsradio1290wtks.iheart.com", "language": "English", "sourcecountry": "United States"} +{"url": "https://newsradiowkcy.iheart.com/content/2026-04-08-stocks-close-the-day-higher-as-oil-prices-plummet-over-iran-war-cease-fire/", "url_mobile": "", "title": "Stocks Close The Day Higher As Oil Prices Plummet Over Iran War Cease Fire | NewsRadio WKCY", "seendate": "20260409T004500Z", "socialimage": "https://i.iheart.com/v3/re/assets.getty/69d6cabbab0909491c4ab0bc?ops=gravity(%22north%22),fit(1200,675),quality(65)", "domain": "newsradiowkcy.iheart.com", "language": "English", "sourcecountry": "United States"} +{"url": "https://whp580.iheart.com/content/2026-04-08-stocks-close-the-day-higher-as-oil-prices-plummet-over-iran-war-cease-fire/", "url_mobile": "", "title": "Stocks Close The Day Higher As Oil Prices Plummet Over Iran War Cease Fire", "seendate": "20260409T004500Z", "socialimage": "https://i.iheart.com/v3/re/assets.getty/69d6cabbab0909491c4ab0bc?ops=gravity(%22north%22),fit(1200,675),quality(65)", "domain": "whp580.iheart.com", "language": "English", "sourcecountry": "United States"} +{"url": "https://lecourrier.vn/wall-street-cloture-en-nette-hausse-soulagee-par-le-cessez-le-feu-en-iran/1345035.html", "url_mobile": "", "title": "Wall Street clôture en nette hausse , soulagée par le cessez - le - feu en Iran", "seendate": "20260409T004500Z", "socialimage": "https://image.lecourrier.vn/MediaUpload/Medium/2026/04/09/062407-1.webp", "domain": "lecourrier.vn", "language": "French", "sourcecountry": "Vietnam"} +{"url": "https://www.dailyexcelsior.com/rupee-likely-to-stabilise-at-92-93-level-eac-pm-chairman/", "url_mobile": "", "title": "Rupee likely to stabilise at 92 - 93 level : EAC - PM chairman", "seendate": "20260409T004500Z", "socialimage": "https://www.dailyexcelsior.com/wp-content/uploads/2025/11/S-Mahendra-Dev.jpg", "domain": "dailyexcelsior.com", "language": "English", "sourcecountry": "India"} +{"url": "https://1019bigwaax.iheart.com/content/2026-04-08-stocks-close-the-day-higher-as-oil-prices-plummet-over-iran-war-cease-fire/", "url_mobile": "", "title": "Stocks Close The Day Higher As Oil Prices Plummet Over Iran War Cease Fire", "seendate": "20260409T004500Z", "socialimage": "https://i.iheart.com/v3/re/assets.getty/69d6cabbab0909491c4ab0bc?ops=gravity(%22north%22),fit(1200,675),quality(65)", "domain": "1019bigwaax.iheart.com", "language": "English", "sourcecountry": "United States"} +{"url": "https://santamariatimes.com/ap/business/oil-plunges-below-95-as-the-dow-surges-1-300-in-a-worldwide-rally-following/article_a54e11c8-bfe7-4866-8e05-38da805d67ae.html", "url_mobile": "", "title": "Oil plunges below $95 as the Dow surges 1 , 300 in a worldwide rally following a ceasefire with Iran", "seendate": "20260409T004500Z", "socialimage": "https://bloximages.chicago2.vip.townnews.com/santamariatimes.com/content/tncms/assets/v3/editorial/a/54/a54e11c8-bfe7-4866-8e05-38da805d67ae/69d6e225ab7df.preview.jpg?crop=1024%2C538%2C0%2C72", "domain": "santamariatimes.com", "language": "English", "sourcecountry": "United States"} +{"url": "https://www.gobankingrates.com/taxes/refunds/suze-orman-best-ways-use-large-tax-refund-to-become-financially-secure/", "url_mobile": "", "title": "Suze Orman : 6 Best Ways To Use Tax Refund", "seendate": "20260409T003000Z", "socialimage": "https://cdn.gobankingrates.com/wp-content/uploads/2023/12/Suze-Orman_shutterstock_editorial_4231729g-1.jpg", "domain": "gobankingrates.com", "language": "English", "sourcecountry": "United States"} diff --git a/Data/1_Bronze_Raw/News_Scrapes/2026-04-10/Full_text/full_text_asset_metals_derivatives.jsonl b/Data/1_Bronze_Raw/News_Scrapes/2026-04-10/Full_text/full_text_asset_metals_derivatives.jsonl new file mode 100644 index 0000000..11a84fa --- /dev/null +++ b/Data/1_Bronze_Raw/News_Scrapes/2026-04-10/Full_text/full_text_asset_metals_derivatives.jsonl @@ -0,0 +1,6 @@ +{"url": "https://wpdh.com/ixp/854/p/the-4-best-classic-diners-in-new-york-state/", "title": "The Best Classic Diners In New York State", "publish_date": "2026-04-10T19:51:20Z", "full_text": "New York doesn’t mess around when it comes to diners. These are the very best classic diners in the Empire State.\n\nFrom chrome railcars to neighborhood staples that haven’t changed in decades, the Empire State might have the deepest diner culture in the country.\n\nNow, a new breakdown is highlighting the classic diners that stand above the rest.\n\n#1: Historic Village Diner, Red Hook, New York\n\nGoogle Google loading...\n\nThis isn’t just a great diner. It’s a piece of American history. Located along Route 9 in Red Hook, the Historic Village Diner dates back to the 1920s and is a classic Silk City dining car.\n\nIt was originally called the “Halfway Diner” because it sat right between New York City and Albany, and that original name is still painted right on the building.\n\nFor all the news that the Hudson Valley is sharing, make sure to follow Hudson Valley Post on Facebook, and download the Hudson Valley Post Mobile App\n\nGoogle Google loading...\n\nIn 1988, it became the first diner in New York and just the fourth in the entire country to be listed on the National Register of Historic Places. That alone puts it in a different category.\n\nThis eatery is considered the gold standard of New York diner authenticity, a true living landmark.\n\n#2: Tom's Restaurant, New York City\n\nGoogle Google loading...\n\nIf this place looks familiar, there’s a reason.\n\nTom’s Restaurant sits at Broadway and West 112th Street in Manhattan’s Morningside Heights and has been around since the 1940s. It’s been run by the same Greek-American family for decades, which is becoming rare in New York City.\n\nPop culture helped make it famous. The exterior was used as the stand-in for Monk’s Café on Seinfeld, and it also inspired Suzanne Vega’s song “Tom’s Diner.”\n\nBut beyond the pop culture glory, it’s still a real diner. It remains a no-frills, working neighborhood diner that New Yorkers have relied on for generations.\n\n#3: Manory's Restaurant, Troy, New York\n\nGoogle Google loading...\n\nIf you want history, Manory’s delivers. This Troy staple first opened in 1913, making it the oldest restaurant in the city. More than a century later, it’s still doing what it’s always done.\n\nLocated in downtown Troy at Congress and 4th Streets, Manory’s feels like a true neighborhood spot. Nothing flashy, nothing over the top. The menu covers classic American comfort food with beloved signatures like grilled cinnamon rolls and milkshakes.\n\n#4: Cutchogue Diner, Long Island\n\nGoogle Google loading...\n\nOut on Long Island’s North Fork, the Cutchogue Diner feels like stepping into another era.\n\nThis one dates back to 1941 and still operates out of an original Kullman diner car. The structure itself is part of the experience. Chrome exterior, compact layout, and that unmistakable mid-century diner feel.\n\n#5 Eveready Diner, Hyde Park, New York\n\nGoogle Google loading...\n\nThe Eveready Diner in Hyde Park features a retro feeling, an expansive menu, milkshakes made the old-fashioned way, and a drive-thru.\n\nThe family-run business on Route 9 in FDR country was featured on the Food Network's hit show Diners, Drive-Ins and Dives.\n\nHow the Research Was Done\n\nGoogle Google loading...\n\nThis list with a deep dive into travel guides, food shows, historic records, and diner diehards.\n\nFrom there, each spot had to prove it was the real deal. We’re talking legit diner cars or true classic builds, decades of history, and a reputation that goes beyond just locals grabbing coffee.\n\nThe list was based on Roadfood references, Food Network features, Atlas Obscura entries, the National Register of Historic Places, and coverage from regional outlets.\n\nThese diners had to matter to their communities, not just exist in them. And just as important, this couldn’t turn into a New York City-only list. A real statewide “Big 4” had to stretch across the map.\n\n5 Hudson Valley Diners With The Best Portions\n\n5 Hudson Valley Diners With The Best Portions Whether we want something for breakfast, lunch or dinner, we can rely on diners in the Hudson Valley to have all of these options. Their prices, portions and relaxed environment makes it a space that we enjoy returning to.\n\nLet's see if you've been to these fan favorite diners in the Hudson Valley that are known for their best portions. Gallery Credit: Allison Kay, Facebook\n\nThe 10 Most Underrated Places To Live In New York"} +{"url": "https://www.oneidadispatch.com/2026/04/10/strawberry-pots/", "title": "Strawberry pot window make for striking , efficient displays", "publish_date": "2026-04-10T19:51:20Z", "full_text": "By JESSICA DAMIANO\n\nYou’ve seen them — those odd planters that look like buildings with windows and balconies on their sides. Maybe you’ve planted strawberries in them. Or maybe you’ve just never understood them.\n\nTypically made of terracotta, the pots are usually tall and urn-shaped, but shorter, wider options are also available.\n\nThey are, in fact, strawberry pots, and those windows are intended to hold soil and strawberries, keeping them off the ground as they grow and, therefore, protecting them from rotting. But think outside the pot, and you’ll find they make lovely (and efficient) displays for other plants, too.\n\nStriking yet practical displays\n\nThe fenestrated containers can be planted with succulents like hens and chicks. Consider the orange and yellow ‘Gold Nugget’ or the silver-haired ‘Cobweb’ varieties for an eye-catching display. In colder areas, the whole pot can be brought indoors for winter; just ensure the succulents get ample sunlight, and avoid overwatering.\n\nOr create a space-saving culinary herb garden by filling the “balcony” pockets with cooking essentials like parsley, sage, thyme, mint and oregano, placing the smaller species at the bottom of the pot and larger ones higher up. Then plant a tall herb like rosemary or basil in the opening at the top and — voila! — you’ve created an instant centerpiece. You might even incorporate a few dwarf marigolds for color.\n\nHerbs, too, can be brought indoors and grown (and used!) in the kitchen over winter.\n\nColorful trailing florals and vines\n\nTrailing flowers and vines make a statement as they spill from the containers’ openings. Keep it monochrome, or plant a rainbow of colors for a dazzling display.\n\nTrailing geraniums, petunias, and chartreuse or purple sweet potato vines can be alternated around the sides of the pot. A dramatic grass, like Cordyline ‘Festival,’ can be planted at the top of larger planters, black mondo grass in smaller ones.\n\nNasturtiums, million bells, trailing verbena and sweet alyssum also lend themselves nicely to the pots. Green ivies provide a more understated aesthetic.\n\nIf you don’t have a lot of sunlight, consider combining different varieties of caladium and coleus for a colorful display.\n\nKeeping it sufficiently watered\n\nRegardless of what you’re planting, ensuring water reaches the roots of every plant in a strawberry pot can pose a bit of a challenge — but there’s an easy solution.\n\nCut a piece of PVC piping slightly longer than the pot’s height, then drill holes 2 inches (5 centimeters) apart along its sides.\n\nAt planting time, add potting mix up to the pot’s bottom openings, then position the pipe vertically in the center. Insert plants through the holes (from the inside out), add more potting mix to reach the next level of openings and add more plants. Repeat until you reach the top of the pot, packing the soil tightly as you go.\n\nWater and fertilize through the pipe, which will be hidden as the centerpiece plant grows.\n\nStrawberry pots are available in various materials, but the traditional versions are made of clay, which can crack in freezing temperatures. If your area experiences cold winters, bring them indoors in autumn, either emptied of their annuals, cleaned and stored, or still housing tropicals, evergreens or herbs, and treat them as houseplants over winter.\n\nJessica Damiano writes regular gardening columns for The Associated Press. She publishes the award-winning Weekly Dirt Newsletter. Sign up here for weekly gardening tips and advice.\n\nFor more AP gardening stories, go to https://apnews.com/hub/gardening."} +{"url": "https://www.newsday.com/business/healthgrades-long-island-hospitals-patient-safety-ez30ovxf", "title": "Eight Long Island hospitals rank among the nation best for patient safety", "publish_date": "2026-04-10T19:51:20Z", "full_text": "Eight Long Island hospitals ranked among the best in the country for patient safety, according to a new report.\n\nThose Long Island hospitals represented the majority of the 12 New York State hospitals ranked by Healthgrades, a Denver, Colorado-based health care information company. The firm gave 438 hospitals over 40 states patient safety excellence awards based on the infrequency of preventable patient complications, according to Healthgrades.\n\nOf the eight hospitals who won the annual awards, six are in Northwell Health’s network: Plainview and Huntington hospitals, Long Island Jewish Medical Center, North Shore University Hospital, Mather and Glen Cove hospitals. This year was the first time Mather and Glen Cove Hospitals were awarded a patient safety award.\n\nThis year’s list also included Long Island Community Hospital, which is a part of NYU-Langone and was renamed NYU Langone Hospital — Suffolk last year, and, for the first time, Mount Sinai South Nassau hospital based in Oceanside.\n\nThe awards come amid high demand for health care on Long Island. These awards and other rankings can help patients evaluate a hospital, but, experts said, patients should look at multiple hospital rankings and consider their own needs when evaluating their options.\n\nSign up for the Daily Business newsletter Stay in the know on jobs, retail and all things business across Long Island. By clicking Sign up, you agree to our privacy policy.\n\nHealthgrades' ranking methodology\n\nHealthgrades used federal Medicaid and Medicare data from October 2021 through September 2024 to predict the number of patient safety incidents likely to occur at a particular hospital, such as death during surgery, ulcers, or a fall on hospital grounds, according to the company.\n\nHealthgrades tracks 13 different patient safety indicators, said David Bromall, vice president of quality solutions for Healthgrades. Among those is tracking whether foreign objects — like gauze or sponges — are left inside a person during a surgery. Any hospital where that happened in the three-year time frame Healthgrades analyzes is not considered for an award, Bromall said.\n\nThe company gives out its awards to the 10% of roughly 4,400 hospitals with the lowest rate of patient safety incidents, Bromall said.\n\nPeter Silver, chief quality officer and a senior vice president for Northwell Health, credited the health system’s awards to its care practices, which evaluate patients for fall risk to avoid accidental trips and encourage patient mobility to mitigate bed sores, for example.\n\nThe patient safety awards should not be the only criteria a patient uses to pick a hospital, but “part of that assessment process,” Bromall said.\n\nPatients should certainly be focused on safety, said Elisabeth Benjamin, vice president for health initiatives at the Community Service Society of New York. But she encouraged patients to look at other, independent review platforms, such as Leap Frog’s ratings, which she said offered more robust data.\n\n“I’m a big advocate of patients thinking about safety first,” Benjamin. But patients should also ask “who is in network? Do you have health insurance?”\n\nNeed for safety amid high demand\n\nDemand for health care on Long Island has grown on Long Island and nationally as the Baby Boomer generation has aged. As of 2020, those 65 and older represented 16.8% of the population of the U.S., or 55.8 million people, according to the U.S. Census.\n\nEmployment in the health care and social assistance sector has risen as well, to 263,611 people in the third quarter of 2025, the most recent period data is available, according to data from the New York State Department of Labor. That’s a 37% increase from the same period in 2010, 15 years ago.\n\nPatient safety has always been important, but hospital focus on safety has grown, particularly in the wake of the pandemic, Bromall said.\n\nAs demand continues to rise, hospitals need to have procedures in place to keep patients safe, no matter how busy they are, Silver said."} +{"url": "https://www.investorideas.com/news/2026/main/04101-cpi-inflation-energy-surge-market-impact.asp", "title": "March CPI Surges to 3 . 3 % as Iran War Drives Energy Costs Higher ; What It Means for Investors", "publish_date": "2026-04-10T19:51:20Z", "full_text": "March CPI Surges to 3.3% as Iran War Drives Energy Costs Higher; What It Means for Investors Share (Investorideas.com Newswire) a go-to platform for big investing ideas, including gold and silver stocks issues market commentary from deVere. This morning's inflation numbers came in about where most economists expected, and that alone was enough to keep stocks from selling off. The Bureau of Labor Statistics reported that consumer prices jumped 0.9% in March from the prior month — the biggest single-month move since 2022 — pushing the annual rate to 3.3%. Strip out food and energy and the picture is actually calmer: core CPI rose just 0.2% for the month and 2.6% year-over-year, both coming in a tick below what analysts had penciled in. None of this is a mystery. Oil prices ran past $100 a barrel multiple times in March after the Strait of Hormuz effectively shut down. Gas crossed $4 a gallon. Those costs hit household budgets fast and they hit businesses just as hard through transportation and logistics. The gap between headline and core inflation this month is essentially the Iran war showing up in the data. How Markets Are Taking It The Dow, S&P 500, and Nasdaq each opened up around 0.3% after the report dropped. The market's reaction says a lot — investors had already braced for a bad number, so meeting expectations passed as good news. The S&P 500 is now on pace for eight straight winning sessions after weeks of war-driven volatility. The 10-year Treasury yield is sitting around 4.3%. Gold pulled back a bit in early trading after three straight weeks of gains. The Fed Isn't Moving Anytime Soon The Fed has a problem. Headline inflation at 3.3% gives them no cover to cut rates, but core coming in soft means there's no real pressure to hike either. So they sit. Futures markets are pricing roughly a 45% chance of at least one cut before year-end — but that number moves up or down almost entirely based on what happens with the ceasefire and oil. The two-week ceasefire announced earlier this week knocked crude back down near $98. If that holds and the Strait reopens, energy prices ease, inflation cools, and the Fed gets room to act. If it falls apart over the weekend, all of that goes the other way fast. Where Investors Are Looking Energy stocks, gold, and anything commodity-linked have been the obvious plays in this environment, and today's data doesn't change that. Producers are still benefiting from elevated oil prices even with the ceasefire pullback. Gold has had a strong run with central banks buying steadily in the background, and that demand doesn't go away when geopolitical risk eases — it just changes character. For investors watching the broader market, the bigger question now shifts to earnings. JPMorgan, Wells Fargo, Citigroup, Goldman Sachs, and BlackRock all report next week. That's when we find out how much of this year's turbulence actually showed up in corporate results.\n\n\n\nExploring Mining Podcast with Investorideas - get mining stock news from TSX, TSXV, CSE, ASX, NASDAQ, NYSE companies plus interviews with CEO's and leading experts Check out the Exploring Mining podcast at Investorideas.com with host Cali Van Zant for the latest mining stock news and insightful interviews with top industry experts Latest episode: https://www.youtube.com/watch?v=iCe7YVAtHaU About Investorideas.com - Big Investing Ideas Investorideas.com is the go-to platform for big investing ideas. From breaking stock news to top-rated investing podcasts, we cover it all. Our original branded content includes podcasts such as Exploring Mining, Cleantech, Crypto Corner, Cannabis News, and the AI Eye. We also create free investor stock directories for sectors including mining, crypto, renewable energy, gaming, biotech, tech, sports and more. Public companies within the sectors we cover can use our news publishing and content creation services to help tell their story to interested investors. Paid content is always disclosed. Learn more about our news, PR and social media, podcast and content services at Investorideas.com https://www.investorideas.com/Investors/Services.asp Follow us on X @investorideas @stocknewsbites\n\nFollow us on Facebook https://www.facebook.com/Investorideas\n\nFollow us on YouTube https://www.youtube.com/c/Investorideas\n\n\n\nContact Investorideas.com\n\n800 665 0411\n\n\n\nDisclaimer/Disclosure: https://www.investorideas.com/About/Disclaimer.asp\n\nOur site does not make recommendations for the purchase or sale of stocks, services, or products. Nothing on our sites should be construed as an offer or solicitation to buy or sell products or securities. All investing involves risk and possible losses. This site is currently compensated for news publication and distribution, social media and marketing, content creation, and more. Disclosure is posted for each compensated news release and content published /created if required, but otherwise the news was not compensated for and was published for the sole interest of our readers and followers. Contact management and IR of each company directly regarding specific questions. More disclaimer info: More disclaimer and disclosure info is available at https://www.investorideas.com/ About/Disclaimer.asp Global investors must adhere to regulations of each country. Please read Investorideas.com's privacy policy."} +{"url": "https://www.penarthtimes.co.uk/news/26009421.major-airlines-cut-flights-hike-fares-fuel-costs-rise/", "title": "Major airlines cut flights and hike fares as fuel costs rise", "publish_date": "2026-04-10T19:51:20Z", "full_text": "The ongoing conflict in the Middle East between the US, Israel, and Iran has resulted in a recent spike in fuel prices.\n\nSeveral major airlines have already responded to this spike by increasing fares, adding or increasing fuel surcharges, and cutting flights.\n\nUK airline Skybus announced last week it had ceased all flights between Cornwall and London due to \"the huge rise in the global cost of fuel\" and \"a significant drop in new passenger bookings\".\n\nRyanair CEO Michael O'Leary also warned Brits to book their summer holidays “as quickly as you can” to avoid rising costs, due to the ongoing Middle East conflict.\n\nMore major airlines cut flights and increase prices amid rising fuel costs\n\nThree more major airlines have now cut flights and increased prices due to the rising cost of fuel caused by the ongoing conflict in the Middle East:\n\nAir India\n\nAir India this week announced it was increasing its fuel surcharge on domestic and international flights.\n\nThese revised fees came into effect for UK flights on Friday (April 10), although the airline assured passengers who have already booked tickets will be unaffected by the change.\n\nAir India said: \"For the avoidance of doubt, tickets that have already been issued prior to the above times will not attract the new surcharge unless customers seek date or itinerary changes that require a recalculation of the fare.\n\n\"Air India will review its surcharges periodically and make appropriate adjustments as the situation requires.\"\n\nAir India announced this week it was increasing its fuel surcharge. (Image: Getty Images)\n\nAir India usually operates more than 60 weekly flights between India and the UK, connecting cities like Delhi, Mumbai, Bengaluru, Ahmedabad, and Amritsar to London (Heathrow and Gatwick) and Birmingham.\n\nAir New Zealand\n\nAir New Zealand has been forced to cancel more flights due to the conflict in the Middle East, with routes in and out of Auckland, Wellington, and Christchurch impacted, according to the BBC .\n\nAirlines cut flights and hike fares as fuel prices surge https://t.co/p1uad5gOHk — BBC News (UK) (@BBCNews) April 7, 2026\n\nThese flight cancellations follow several others made by the airline last month.\n\nHowever, Air New Zealand said earlier this week that the \"vast majority\" of its customers affected by the cancellations were being offered alternative flights on the same day.\n\nAn airline spokesperson, via the BBC, said: \"Like airlines globally, we're experiencing jet fuel prices that are more than double what they would usually be.\"\n\nAir New Zealand serves the UK through a combination of codeshare partner flights and booking options from Heathrow and Manchester.\n\nIt works with partner airlines, including Singapore Airlines, British Airways, and United Airlines, to connect passengers via major hubs.\n\nDelta Airlines\n\nDelta Airlines also announced this week that it was cutting back the number of seats on its flights due to the rising fuel costs, The Independent reported.\n\nThe Airline, which operates numerous daily nonstop flights from London Heathrow (LHR), London Gatwick (LGW), and Edinburgh (EDI) to various US destinations, has already increased the price of its checked bag fee by US$10 (£7.45).\n\nNow, reduced seat numbers on Delta flights could result in airfare prices rising.\n\nThe 3 airlines that have entered liquidation or administration in 2026 (so far)\n\nSeveral airlines entered liquidation in 2025, according to the UK Civil Aviation Authority , including:\n\nBlue Islands Limited (UK) - November\n\nAir Kilroe Limited t/a Eastern Airways (UK) - November\n\nPlay Airlines (Iceland) - September\n\nThree airlines have entered administration or liquidation in 2026 (so far), resulting in the cancellation of more than 4,000 flights:\n\nMeanwhile, fellow chartered carrier Legend Airlines (Romania) has reportedly shut down.\n\nThe Street reported the airline has \"officially gone dormant\" after retiring two of its A340 planes.\n\nUK travel companies that have closed in 2026 (so far)\n\nFour UK travel companies have also ceased trading in 2026, resulting in the cancellation of flights and holiday packages to destinations around the world.\n\nThe four UK travel companies that have closed down in 2026 (so far) are:\n\nRegen Central Ltd\n\nGold Crest Holidays\n\nAsiara UK Ltd\n\nSimply Florida Travel Ltd\n\nAll four have ceased trading, according to Companies House, and have lost their Air Travel Organiser's Licence (ATOL).\n\nHave you been impacted by the recent flight cancellations or airfare price hikes caused by increased fuel prices? Let us know in the poll above or in the comments below."} +{"url": "https://wrco.com/news/2026/04/10/utilities-seek-federal-pause-on-grid-bidding-amid-ai-driven-power-demand", "title": "Utilities seek federal pause on grid bidding amid AI - driven power demand - WRCO", "publish_date": "2026-04-10T19:51:20Z", "full_text": "A coalition of electrical utilities, including two major players in Wisconsin’s power supply, is seeking federal intervention to pause competitive bidding for transmission projects needed to meet the vast energy needs of the data center boom.\n\nThe coalition filed a complaint with the Federal Energy Regulatory Commission (FERC) on Tuesday asking the agency to exempt at least some major grid upgrades from bidding, arguing “bureaucratic red tape” can tack months onto project timelines and strain the country’s ability to “achieve dominance” in artificial intelligence.\n\n“This complaint is about whether our country will seize, or squander, a generational chance to own the next century,” the utilities wrote.\n\nAmong the companies behind the complaint are Xcel Energy, owner of Northern States Power Company-Wisconsin, and American Transmission Company (ATC), which owns and operates transmission lines across much of Wisconsin.\n\nNational and statewide ratepayer advocacy groups reacted with alarm, casting the utilities’ request as a recipe for higher electricity bills.\n\n“Utilities rushing to catch a ride on the AI investment gold rush need to slow down and think about the impact their proposals are having,” wrote Wisconsin Citizens Utility Board Executive Director Tom Content, as customers “wake up like Groundhog Day to rate hikes well above the cost of living.”\n\nThe complaint and the pushback it prompted mark the latest phase in a long-standing fight over the benefits of opening the transmission market to competition.\n\nStiff competition\n\nFERC first introduced competitive bidding for regional transmission projects in 2011 after ratepayer advocates lobbied for change, arguing that the earlier process — allowing local monopolies to control all projects within their territories — all but guaranteed inflated costs.\n\nThe shift set off a race between developers angling for a piece of the action. When a developer wins a transmission project, it also picks up a new revenue stream: Regulators pre-approve developers’ “return on equity,” or profit on each dollar invested.\n\nDozens of developers have lined up for a piece of the action since the Midcontinent Independent System Operator (MISO), a nonprofit that manages the wholesale electricity market and grid for much of the Midwest, approved more than $10 billion in new transmission projects in 2022. A new round of projects approved in December 2024 added about $22 billion to the total, and the list of prospective bidders grew once again.\n\nConstruction is ongoing at the 350-plus-acre Beaver Dam Commerce Park where a Meta data center is being built, Jan. 20, 2026, in Beaver Dam, Wis. Some experts predict that data center electricity demand could reach up to 25% of the country’s total energy use within the next five years. (Joe Timmerman / Wisconsin Watch)\n\nSome are local utilities hoping to maintain control of their territory; others are powerful national utilities venturing outside of their turf, international developers wading into the U.S. market, and startup transmission developers backed by private equity firms.\n\nWhile the data center rush had already begun in the Midwest by the time MISO approved the latest set of transmission projects in 2024, the approved projects often couldn’t account for the scale and breakneck pace of the data center developments that emerged in the region soon after. With the boom now in full swing, the tenor of competition for transmission projects is changing.\n\nDebate over bidding benefits\n\nMISO, which is also responsible for picking a developer for each project, has favored lower-cost bids with more substantial “cost containment” measures designed to shield customers from budget overruns. Ratepayer advocates say the lower bids are proof the bidding requirements are working, pushing even major national utilities to underbid competitors.\n\nIn their complaint to FERC, the coalition of utilities — which calls itself the “Grid Acceleration Coalition” — argued the benefits of competition are “unproven.”\n\nProjects entirely within one utility’s territory aren’t subject to competitive bidding; those projects routinely exceed initial budgets by millions of dollars. While cheaper bids tend to win competitive projects, the utility group argued that even those projects aren’t immune to budget overruns.\n\nBut the core of the utilities’ case is about time, not money. They argue the bidding process adds months to project timelines without clear benefits.\n\nIn their view, those delays harm customers, in part by slowing the construction of transmission lines that could expand access to cheaper electricity and prevent blackouts, and pose national security risks.\n\n“These projects — expressways for power — are as critical to meeting today’s challenges as the Eisenhower interstate highway system was to prevailing in the Cold War,” the coalition argued in its complaint. “China has devoted itself to overtaking America as the world’s AI leader and is just months behind.”\n\nThe utilities pointed to a recent example in Wisconsin: Last month, MISO reversed its decision to award three substations in Fond du Lac, Ozaukee and Sheboygan counties to private-equity-backed startup Viridon, instead handing the projects to ATC.\n\nATC’s initial bid was more expensive than Viridon’s, but the company successfully argued it alone could build the substations in time to serve the nearby Vantage data center campus in Port Washington.\n\nMISO’s initial plans set a goal to complete the substations by 2033; the Port Washington data center plans to come online in early 2028. Though ATC emerged victorious, it told FERC that the 15-month delay between MISO’s initial approval of the substations and the reversal was “completely unnecessary.”\n\nRatepayer advocates and other observers, however, quickly pointed out that even noncompetitive projects run into delays. ATC’s Cardinal-Hickory Creek transmission line in southwest Wisconsin, for instance, came online in 2024 — more than a decade after MISO approved it — following prolonged legal battles with conservation groups.\n\n“All developers can experience construction delays,” said Claire Wayner, a senior associate with the clean energy nonprofit Rocky Mountain Institute. “It’s not like there’s a silver bullet.”\n\nOpponents also underscored that two competitively bid projects in the Southwest met their in-service date goals last year.\n\n“Competitive transmission projects have been shown to have a better track record of adhering to cost containment and completion schedules than noncompetitive projects,” said Paul Cicio, chair of the national Electricity Transmission Competition Coalition. “A moratorium would move us backward at precisely the wrong time.”\n\nThe back-and-forth over the merits of competition is nothing new, Wayner noted. “The tricky thing with transmission competition is that there are stories of projects from both sides of the aisle that support their positions.”\n\nThe push to pause competition\n\nThe utility group proposed two options to FERC: Allow MISO and a Southwestern regional grid operator to exempt projects from competitive bidding on a case-by-case basis or suspend competition entirely for the next five years — “a period pegged to when our country must begin building the infrastructure that will decide which nation wins the AI race.”\n\nThe utilities added that they don’t intend to “claw back” other projects already awarded or interrupt ongoing bidding processes.\n\nDuring that five-year period, national forecasts estimate data center electricity demand could reach up to 25% of the country’s total energy use. MISO alone projects that it may need to double its current pace of generation growth to avoid shortfalls in the near future.\n\nMISO’s territory, stretching from the Upper Midwest to Louisiana, has seen by far the most dramatic increase in data center capacity since 2020 relative to other regional grid networks.\n\nThe right of first refusal fight\n\nAfter FERC introduced competitive bidding in 2011, utility groups turned to state legislatures. The result: right-of-first-refusal (ROFR) laws that give established local utilities first dibs on transmission projects in their territories, including those planned by regional grid operators like MISO.\n\nUtilities prevailed in Minnesota and Michigan; Iowa’s Supreme Court struck down its ROFR law in 2023 after a national transmission developer challenged its constitutionality, and Illinois Gov. J.B. Pritzker vetoed an ROFR bill the same year.\n\nBut similar efforts have failed in Wisconsin. State lawmakers have consistently rejected ROFR proposals, including a 2025 bill sponsored by Assembly Speaker Robin Vos, R-Rochester.\n\nThe former site of the WE Energies power plant on Nov. 13, 2025, in Pleasant Prairie, Wis. As electric utilities race to build transmission to accommodate the data center boom, consumer advocates worry about affordability and the risk of stranded assets if the boom goes bust. (Joe Timmerman / Wisconsin Watch)\n\nWisconsin ratepayer advocates see the FERC complaint as a work-around. “It is another effort by the utilities to defeat competition,” Todd Stuart, executive director of the Wisconsin Industrial Energy Group, wrote in an email to Wisconsin Watch. “When they lose in state legislatures and then lose out on competitive bids,” he added, “they go back to FERC.”\n\nIn the utilities’ complaint, Xcel Energy cited Wisconsin’s lack of an ROFR law, and the resulting bidding process for projects in the state, as posing a risk of delaying upgrades needed to serve a data center across the border in Minnesota.\n\nThe company wouldn’t comment about the parallels between the options utilities suggested in the FERC complaint and ROFR laws. Instead, spokesman Kevin Coss pointed to permitting reforms in Minnesota — a 2024 law streamlining permitting for clean energy projects — as another example of the company’s efforts to “speed the buildout of critical infrastructure across our systems.” Xcel did not bid on any of the competitive projects in Wisconsin.\n\nIn a statement to Wisconsin Watch, ATC argued the options its coalition suggested to FERC “would not operate as a substitute” for an ROFR law, “even temporarily or on a case-by-case basis.”\n\nBuildout costs fall to ratepayers\n\nRegardless of who builds a transmission line, ratepayers cover the construction and maintenance costs through their electricity bills. We Energies estimates that transmission-related costs account for about 10% of customers’ bills.\n\nCustomers across the Upper Midwest share the costs of MISO-designed projects across multiple states, spreading costs among a larger number of ratepayers.\n\nBut billing practices vary. In some cases, utilities can only bill ratepayers for the costs of building a transmission project after it comes online. When ATC builds a transmission line, FERC allows the developer to begin billing customers while the line is still under construction.\n\nATC says this approach saves customers money in the long term by reducing interest on construction costs.\n\nRatepayer advocates see it differently. “Consumers are paying for projects without receiving the benefits,” Cicio said. Transmission projects take years to complete, and short-term increases in monthly electricity bills don’t square well with concerns about affordability and the risk of stranded assets if the AI boom goes bust.\n\nAdding to the frustration: a planned 9.2% electricity rate increase for We Energies customers in eastern Wisconsin over the next two years. That rate hike in part reflects the addition of generators, including new natural gas plants in Milwaukee and Kenosha counties, needed to meet data center demands.\n\nWisconsin’s Public Service Commission will soon decide how to divvy up costs of powering We Energies-served data centers — a decision that could set a statewide precedent."} diff --git a/Data/1_Bronze_Raw/News_Scrapes/2026-04-10/Full_text/full_text_macro_central_banks.jsonl b/Data/1_Bronze_Raw/News_Scrapes/2026-04-10/Full_text/full_text_macro_central_banks.jsonl new file mode 100644 index 0000000..e2d01d9 --- /dev/null +++ b/Data/1_Bronze_Raw/News_Scrapes/2026-04-10/Full_text/full_text_macro_central_banks.jsonl @@ -0,0 +1,8 @@ +{"url": "https://hitsfm.net/business/9a906e8ed2f1be1191aa6d7dc2574e4c", "title": "Business - HITS FM", "publish_date": "2026-04-10T19:48:06Z", "full_text": "A view of the vessels passing through the Strait of Hormuz following the two-week temporary ceasefire reached between the United States and Iran on the condition that the strait be reopened, seen in Oman, April 8, 2026. (Anadolu via Getty Images)\n\n(NEW YORK) -- Inflation surged in March after an oil shock triggered by the U.S.-Israeli war with Iran, government data showed on Friday. The inflation report matched economists' expectations.\n\nPrices rose 3.3% in March compared to a year earlier, marking a steep rise from a year-over-year inflation rate of 2.4% in the prior month. Annual inflation jumped to its highest level in two years, U.S. Bureau of Labor Statistics (BLS) data showed.\n\nThe jump in prices owed in large part to a sharp rise in costs for products impacted by the oil shortage. Gasoline prices were 25% higher in March than February, the BLS report said. Overall, energy prices jumped almost 12% from a month earlier.\n\nAirline fares increased 3.4% in March from February, the data showed.\n\nThe rapid acceleration of price increases could complicate interest rate policy at the Federal Reserve, which may be reluctant to lower borrowing costs as inflation climbs.\n\nThe Middle East conflict prompted Iran's effective closure of the Strait of Hormuz, a critical waterway that facilitates the transport of about one-fifth of the global supply of oil and natural gas.\n\nThat energy shortage sent oil and gasoline prices surging worldwide. Gasoline prices in the U.S. stood at $4.15 on average per gallon on Friday, marking a leap of $1.17 since the start of the war, AAA data showed.\n\nThe BLS collected price data over the entire month of March. The inflation report, in turn, reflected prices for 31 of the first 32 days of war, excluding the outbreak of hostilities on Feb. 28. The ceasefire announced on Tuesday came after 40 days of fighting.\n\nAs part of a two-week U.S.-Iran ceasefire announced on Tuesday, Iran says it will allow tankers passage through the Strait of Hormuz as long as they coordinate with the nation's military.\n\nThe resumption of tanker traffic remains uncertain, however. Tanker traffic was suspended on Wednesday after Israeli attacks on Lebanon, Iran's semi-official Fars News Agency reported.\n\nCrude prices fell after the ceasefire announcement but remained highly elevated. U.S. oil prices topped $98 a barrel as of Thursday, standing nearly 50% higher than their pre-war level.\n\nA surge in consumer prices could pose difficulty for the Fed as it weathers a slowdown of economic performance over recent months.\n\nIf the Fed opts to lower borrowing costs, it could spur growth but risk higher inflation. On the other hand, the choice to raise interest rates may slow price increases but raises the likelihood of a cooldown in economic performance.\n\nLast month, Federal Reserve Chairman Jerome Powell said that despite rising energy prices and the potential impact on inflation, he doesn't think the central bank needs to raise interest rates.\n\nPowell noted that central bankers often look past shocks -- such as sudden oil-price increases -- since the upward pressure on consumer prices usually proves temporary.\n\n\"We feel like our policy is in a good place for us to wait and see how that turns out,\" Powell said.\n\nThe benchmark interest rate stands at a level between 3.5% and 3.75%. That figure marks a significant drop from a recent peak attained in 2023, but borrowing costs remain well above a 0% rate established at the outset of the COVID-19 pandemic.\n\nThe Fed will announce its next rate decision on April 29. Investors overwhelmingly expect the Fed to leave rates unchanged, according to the CME FedWatch Tool, a measure of market sentiment.\n\nThe tool pegs a roughly 70% chance that the Fed will maintain interest rates at current levels for the remainder of the year.\n\nCopyright © 2026, ABC Audio. All rights reserved."} +{"url": "https://www.kacu.org/2026-04-10/inflation-surges-to-highest-level-in-nearly-2-years-as-energy-costs-spike", "title": "Inflation surges to highest level in nearly 2 years as energy costs spike", "publish_date": "2026-04-10T19:48:06Z", "full_text": "The U.S. war with Iran and the resulting spike in energy prices have pushed inflation to its highest level in nearly two years.\n\nA report from the Labor Department Friday showed consumer prices in March were up 3.3% from a year ago. That's the biggest annual increase since May of 2024. Prices jumped 0.9% between February and March, with higher gasoline prices accounting for nearly three-quarters of that increase.\n\nGas prices have jumped by more than a dollar a gallon, on average, since the U.S. and Israel launched their attack on Iran. Pump prices have remained high this week, despite a tentative ceasefire.\n\nHigher jet fuel prices also contributed to a jump in the cost of airline tickets last month, although food prices were flat, as rising costs for restaurant meals offset a decline in grocery prices.\n\nExcluding volatile food and energy prices, so-called \"core\" inflation was 2.6% in March.\n\nLoading...\n\nInflation spike reverses stabilizing trend\n\nAlthough inflation is nowhere near the four-decade high it reached in 2022, following Russia's invasion of Ukraine, progress on stabilizing prices fizzled out last year, partly as a result of President Trump's tariffs. The wartime jump in energy prices has pushed inflation even higher.\n\n\"We were making progress, making progress. Then we kind of stalled out and now it's been inching itself up the other way,\" Chicago Federal Reserve Bank President Austan Goolsbee told the Detroit Economic Club this week.\n\nGoolsbee worries that the longer inflation stays above the Federal Reserve's 2% target, the greater the risk that high inflation becomes baked into the economy. But a survey from the New York Fed this week showed that even though people expect higher inflation in the short run, they still believe it will come down in the long run.\n\nFed policymakers try not to overreact to a spike in gasoline prices, which are notorious for bouncing up and down. But core inflation has also been climbing, which is likely to make the central bank cautious about any quick cuts in interest rates.\n\nThe Fed is also keeping a close eye on the job market, which showed some signs of life in March when employers added 178,000 jobs, after cutting workers the previous month. While employers have not been adding a lot of jobs, they've been reluctant to lay people off as well.\n\n\"I think it's from uncertainty,\" Goolsbee said. \"I think that's what happens when businesses are uncertain and they say we're just going to sit on our hands until we figure out, is the war going to be a temporary shock?\"\n\nCopyright 2026 NPR"} +{"url": "https://wgme.com/news/nation-world/trump-summons-banking-chiefs-for-a-closed-door-meeting-about-an-ai-model-report-jerome-powell-scott-bessent", "title": "Trump summons banking chiefs for a closed - door meeting about an AI model : report", "publish_date": "2026-04-10T19:48:06Z", "full_text": "Bank executives have been summoned by President Donald Trump for a meeting about an artificial intelligence model that its makers are worried will breach national defense firewalls.\n\nEarlier this week, Treasury Secretary Scott Bessent and Federal Reserve Chair Jerome Powell convened the session at Treasury Headquarters to address the model called Mythos, according to the Daily Mail.\n\nBloomberg reported that the meeting was classified as “systematically important” but it was short notice.\n\nThose in attendance included Ted Pick from Morgan Stanley, David Solomon from Goldman Sachs and Jane Fraser from Citigroup.\n\nSo far only 40 firms have access to Mythos.\n\nWhen testing was taking place, Anthropic said Mythos found “thousands of high–severity vulnerabilities, including some in every major operating system and web browser.”\n\nSome of the security concerns reportedly went unnoticed by researchers and hackers.\n\n“AI models have reached a level of coding capability where they can surpass all but the most skilled humans at finding and exploiting software vulnerabilities,” Anthropic said in a blog post."} +{"url": "http://www.em.com.br/economia/2026/04/7394973-por-que-governo-trump-voltou-a-atacar-o-pix-e-o-que-eua-podem-fazer-contra-ele.html", "title": "Por que governo Trump voltou a atacar o Pix ( e o que EUA podem fazer contra ele )? ", "publish_date": "2026-04-10T19:48:06Z", "full_text": "Quase dez meses depois de abrirem uma investigação comercial contra o Pix, os Estados Unidos voltaram a alfinetar o sistema de pagamentos instantâneo brasileiro, reacendendo a discussão sobre as investidas do governo Trump contra ele e as possíveis medidas de efeito prático que pode tomar nesse sentido.\n\nO Pix foi mencionado em um relatório de 31 de março em que os EUA listam o que consideram barreiras comerciais de mais de 60 países contra empresas americanas.\n\nO documento foi elaborado pelo Escritório do Representante Comercial dos Estados Unidos (Office of the United States Trade Representative, USTR), a mesma agência que em julho do ano passado abriu um inquérito para apurar se considera o Pix uma \"prática desleal\", que fere a competitividade do setor produtivo americano.\n\nO Pix é citado três vezes nas mais de 500 páginas do National Trade Estimate Report de 2026, em apenas um parágrafo:\n\n\"O Banco Central do Brasil criou, detém, opera e regula o Pix, uma plataforma de pagamentos instantâneos. Partes interessadas dos EUA expressaram preocupação com o fato de o Banco Central do Brasil conceder tratamento preferencial ao pix, o que prejudica os fornecedores de serviços de pagamento eletrônico dos EUA. O Banco Central exige o uso do pix por instituições financeiras com mais de 500.000 contas.\"\n\nO governo brasileiro reagiu e o presidente Luiz Inácio Lula da Silva (PT) voltou a afirmar que o \"o Pix é do Brasil\". \"Ninguém vai fazer a gente mudar o Pix\", ele declarou em entrevista na semana passada.\n\nAté o presidente da Colômbia saiu em defesa do sistema de pagamentos brasileiro. Na segunda-feira (6/4), Gustavo Petro elogiou o modelo e, em uma longa publicação nas redes sociais, pediu que o sistema fosse estendido a seu país.\n\nA investigação da USTR ainda está em andamento e não tem data fechada para ser concluída. Enquanto se aguarda o desfecho, uma das perguntas que surgem no debate em torno do caso é: o que os EUA podem fazer de concreto contra o sistema de pagamentos brasileiro?\n\nGetty Images Especialistas apontam que o pix contraria interesses de big techs e de empresas de cartão\n\nAs armas dos EUA\n\nOs especialistas em comércio exterior e regulação econômica ouvidos pela reportagem frisaram que os EUA não têm jurisdição para agir diretamente contra o Pix.\n\nAs ferramentas à disposição dos americanos se concentram no âmbito comercial e estão descritas na própria legislação que foi usada para abrir a investigação contra o Brasil, a seção 301 do Trade Act de 1974.\n\nVão desde a suspensão de benefícios e acordos comerciais à restrição de importações de produtos e serviços ou imposição de tarifas sobre esses bens e serviços.\n\nOu seja, os EUA poderiam, por exemplo, dar início a um novo tarifaço sobre as exportações brasileiras com destino aos portos americanos ou retirar o Brasil do Sistema Geral de Preferências (SGP), um programa de benefícios tarifários instituído nos anos 1970 para países em desenvolvimento.\n\n\"Trata-se, portanto, mais de um mecanismo de pressão externa e econômica sobre o Estado brasileiro do que um poder regulatório sobre a infraestrutura de pagamentos em si\", destaca Camila Villard Duran, especialista em direito econômico e regulação do mercado monetário.\n\nDuran destaca que no novo relatório do USTR a linguagem usada no capítulo do Brasil é semelhante à que descreve supostas \"práticas desleais\" no setor de pagamentos em diversos outros países que também são criticados pelos EUA.\n\n\"O caso brasileiro, nesse sentido, não é isolado, mas integrado a uma estratégia política mais ampla de contestação de práticas nacionais em serviços financeiros digitais\", diz ela, que é professora associada de direito da ESSCA School of Management, na França, e cofundadora do Instituto Mulheres na Regulação.\n\n\"Assim, a consequência mais plausível não é uma medida direcionada tecnicamente ao Pix, mas sim alguma forma de retaliação comercial mais ampla\", avalia Duran.\n\nNesse sentido, uma fonte brasileira próxima às negociações diz ser difícil arriscar o que exatamente viria, caso a investigação de fato concluísse que as acusações contra o Brasil são pertinentes.\n\nHistoricamente, pondera a fonte, os EUA pouco usaram o instrumento da seção 301 do Trade Act de 1974 e, no caso específico da investigação contra o Brasil, o escopo de temas analisados pelo USTR é amplo e vai bem além do Pix.\n\nTambém inclui, por exemplo, as tarifas a que os produtores de etanol americanos estão submetidos para acessar o mercado brasileiro e até o desmatamento ilegal, acusado de dar vantagem competitiva injusta às exportações agrícolas brasileiras.\n\nRenê Medrado, sócio do escritório Pinheiro Neto Advogados, faz avaliação semelhante e exemplifica: ainda que os EUA por ventura optassem por uma retaliação comercial ampla, é difícil estimar se as eventuais tarifas seriam colocadas para uma lista ampla de produtos ou se seriam seletivas.\n\n\"E tem isso de que o governo americano às vezes fala que vai [fazer alguma coisa], depois volta atrás…\", ele acrescenta, ao comentar sobre o desafio de se traçar possíveis cenários.\n\n\"Agora, o ponto é: o ambiente hoje é bom\", completa Medrado, referindo-se ao estado das relações entre os governos Lula e Trump.\n\nDesde que os dois presidentes se cruzaram nos bastidores da assembleia-geral da ONU em Nova York em setembro do ano passado, há um diálogo bilateral maior entre Brasil e EUA e uma expectativa de que um encontro presencial formal entre os dois aconteça.\n\n\"O alcance dessas medidas dependerá muito mais da dinâmica da política bilateral e da eficácia da diplomacia brasileira\", comenta a professora Camila Villard Duran.\n\nO que está em jogo\n\nPor que então os EUA voltaram a alfinetar o Pix? No relatório do USTR de março do ano passado, o sistema de pagamentos instantâneo brasileiro não havia nem sido mencionado diretamente, ao contrário do que aconteceu no deste ano.\n\nMesmo no documento em que formalizou a investigação contra o Brasil, a agência não citou o Pix nominalmente, apesar de ter feito referência indireta a ele (\"O Brasil também parece se envolver em uma série de práticas desleais com relação a serviços de pagamento eletrônico, incluindo mas não se limitando a favorecer seus serviços de pagamento eletrônico desenvolvidos pelo governo\", diz o texto).\n\nA fonte ouvida pela BBC News Brasil que tem proximidade com as negociações comenta que uma das hipóteses para o endurecimento no tom agora foi o desfecho de uma reunião recente da Organização Mundial do Comércio (OMC) em que o Brasil bloqueou uma proposta dos EUA e outros países para estender a moratória de tarifas aduaneiras sobre transmissões eletrônicas, que inclui serviços digitais como streamings, softwares e jogos.\n\nE há ainda a grande derrota que o tarifaço de Trump sofreu no judiciário americano em fevereiro deste ano, quando a Suprema Corte considerou que o instrumento que vinha sendo usado para embasar as medidas (a Lei de Poderes Econômicos de Emergência Internacional, ou IEEPA, na sigla em inglês), na verdade não autorizava o governo americano a instituir as tarifas.\n\nEm um artigo de março deste ano, duas analistas do centro de pesquisas americano Brookings Institute pontuaram que, diante desse revés, a Seção 301, usada na investigação contra o Brasil, pode entrar no cardápio do governo americano como opção para voltar a taxar seus parceiros comerciais.\n\nDo lado do setor financeiro, a jurista Camila Villard Duran chama atenção para a expansão do Pix no Brasil, \"que altera diretamente o equilíbrio competitivo para empresas americanas, como Visa e Mastercard\", mas especialmente para o fenômeno mais amplo no qual ele está inserido, de transformação estrutural e reorganização da ordem monetária e financeira internacional.\n\n\"O Pix já não é apenas um sistema de pagamentos eficiente. Ele representa um modelo de infraestrutura pública, que reduz a dependência de redes privadas estrangeiras e concentra, no âmbito doméstico, o controle jurisdicional sobre dados e fluxos financeiros\", destaca Duran.\n\nA professora aponta que, no relatório do USTR, os EUA fazem críticas semelhantes às feitas ao Brasil a países como Índia, Tailândia e Paquistão, \"onde políticas públicas nacionais promovem sistemas domésticos de pagamento, impõem requisitos de localização de dados ou criam barreiras regulatórias à atuação de empresas estrangeiras\".\n\n\"Em todos esses casos, o argumento dos EUA é semelhante: tais medidas seriam discriminatórias e restringiriam o acesso de empresas americanas a mercados nacionais\", completa.\n\nReprodução/X/Governo Federal Post do governo federal de julho de 2025: gestão Lula tem procurado usar episódios para tentar melhorar imagem\n\nDa economia à política\n\nDiante desse panorama, Duran avalia que a pressão sobre o Pix e sobre sistemas de pagamentos de outros países também está ligada a uma questão ainda mais ampla, de soberania.\n\nO que está em jogo, diz ela, já não é apenas a concorrência entre empresas, \"mas o controle sobre infraestruturas consideradas como críticas\".\n\n\"Nas minhas pesquisas, tanto sobre a criação do euro digital como sobre os projetos de plataformas alternativas para transações financeiras transfronteiriças, noto que a ideia de 'soberania monetária' está se deslocando muito rapidamente da autonomia da política monetária para o controle jurisdicional sobre as infraestruturas de pagamento e dos dados monetários que elas geram\", afirma Duran.\n\n\"A moeda, na economia digital, torna-se cada vez mais informação e, nesse contexto, o controle jurisdicional sobre esses dados passa a ser um elemento central do poder monetário estatal.\"\n\nIsso ajuda a explicar porque as polêmicas em torno do Pix também mobilizam a arena da política.\n\nDesde o início dos ataques do governo Trump ao sistema de pagamentos a gestão Lula tem procurado usar os episódios para melhorar sua imagem apostando em um discurso focado justamente na soberania nacional.\n\nMembros do governo também têm buscado usar a polêmica para atingir adversários políticos, especialmente aqueles ligados ao bolsonarismo, que têm um histórico de proximidade com a gestão Trump.\n\nApós a divulgação do último relatório do USTR, o deputado federal Lindbergh Farias (PT-RJ) criticou o \"silêncio\" de Flávio Bolsonaro (PL-RJ), dizendo que o senador \"prefere bater palma para americano do que defender o que facilita a vida de milhões de brasileiros\" e que acabaria com Pix.\n\nDiversos vídeos e conteúdos anônimos compartilhados nos últimos dias também faziam afirmações nesse sentido.\n\nFlávio, que é pré-candidato à presidência, chegou a se pronunciar sobre o assunto e negou qualquer intenção de acabar com o sistema de pagamentos.\n\nO assunto promete estar entre os temas de discussão da eleição presidencial de 2026.\n\nSiga nosso canal no WhatsApp e receba notícias relevantes para o seu dia"} +{"url": "https://1037qcountry.com/news/030030-soaring-gas-prices-leads-to-biggest-monthly-inflation-spike-in-four-years-in-march/", "title": "Soaring gas prices leads to biggest monthly inflation spike in four years in March", "publish_date": "2026-04-10T19:48:06Z", "full_text": "By CHRISTOPHER RUGABER AP Economics Writer\n\nWASHINGTON (AP) — The largest monthly jump in gas prices in six decades caused a sharp spike in inflation in March, creating major challenges for the inflation-fighters at the Federal Reserve and heightening the political challenges of rising costs for the White House.\n\nConsumer prices rose 3.3% in March from a year earlier, the Labor Department said Friday, up sharply from just 2.4% in February and the biggest yearly increase since May 2024. On a monthly basis, prices rose 0.9% in March from February, the largest such increase in nearly four years.\n\nIt’s the first read on inflation to capture the effects of the Iran war.\n\nExcluding the volatile food and energy categories, core prices rose 2.6% in March from a year earlier, up from 2.5% in February. But last month core prices rose a modest 0.2%, suggesting that rising gas prices haven’t yet spread to many other categories.\n\nThe gas price shock stemming from the Iran war has shifted inflation’s trajectory, from a slow, gradual decline to a sharp increase further away from the Fed’s 2% target. As a result, the central bank will almost certainly postpone any cut in interest rates for months and many Fed officials have said a rate hike may be needed if inflation doesn’t cool. Gas prices are also a highly visible cost that has outsize impacts on consumer confidence and political sentiment.\n\nHigher gas prices sap consumers’ ability to spend on other goods and services and as a result could also slow economic growth. At least in the short run, many Americans can only make limited changes to their daily driving habits, which are largely determined by where they live, shop, and work. As a result, most people will pay higher prices for gas, and potentially cut back elsewhere.\n\nGas prices averaged $4.15 a gallon nationwide Friday, up from $2.98 on the day before the war began, according to motor club AAA.\n\nThe big question for consumers and the economy is whether the surge in oil and gas prices will create a sustained, broader inflation shock, similar to what occurred in the aftermath of the pandemic in 2021-2022. Inflation reached a peak of 9.1% in June 2022, as COVID-19 snarled supply chains and several rounds of stimulus checks pushed up consumer demand. Prices soared for groceries, furniture, restaurant meals and many other goods and services.\n\nThis time, economists say the job market and consumer spending are weaker, and there are no large government stimulus checks being issued to spur demand. The unemployment rate is low, at 4.3%, but companies aren’t scrambling to hire the way they were when the economy emerged from the pandemic, which led many firms to offer sharp pay increases to attract and keep workers.\n\nRapid pay increases and solid income growth helped consumers weather the higher prices that resulted from the pandemic’s supply chain disruptions, and fueled spikes in demand that led many companies to raise prices further.\n\n“That’s where this really differs, is that we aren’t seeing anywhere near the strength of demand,” Alan Detmeister, an economist at UBS, said. In 2021 and 2022, income growth “was increasing really strongly. We aren’t seeing that now,” he added.\n\nDetmeister thinks the better comparison will likely be to 1990-91, when higher oil and gas prices stemming from Iraq’s invasion of Kuwait contributed to a recession, but didn’t lead to a jump in inflation, in part because of weaker consumer spending.\n\nThe gas price spike’s impact on inflation is, in some ways, similar to President Donald Trump’s tariffs, in that their effect will depend largely on the size and duration of the increase.\n\nFor now, economists expect that in March and April the impact will largely be confined to energy-intensive industries, such as airlines, package delivery services and public transportation. Overall, the U.S. economy is much less dependent on oil and gas than it was in previous decades.\n\nStill, the large jump in inflation — which is almost certain to continue for several months — has already shifted the debate at the Federal Reserve, which began the year expecting to cut its key interest rate at least a couple of times. But a growing number of Fed officials are now willing to consider hiking rates instead if core inflation doesn’t cool noticeably.\n\nMost officials are almost certain to support keeping the Fed’s key interest rate unchanged in the coming months, at about 3.6%, as they evaluate how the economy evolves. Investors now don’t expect the Fed to cut rates until late 2027.\n\nHigher gas prices are tricky for the Fed because they can also slow growth by weighing on consumer spending, potentially causing layoffs. The Fed would typically cut its rate to encourage more spending if unemployment rises, while it raises rates to combat inflation.\n\nMore expensive oil and gas will also likely lift grocery prices, creating more pain for consumers who have already absorbed a roughly 25% jump in food costs since the pandemic. Nearly all groceries are shipped by diesel-fueled trucks, and diesel fuel prices have risen even more than those for regular gas. Still, analysts don’t expect food prices to accelerate for another month or two."} +{"url": "https://www.elsiglodetorreon.com.mx/noticia/2026/precio-del-dolar-hoy-viernes-10-de-abril-peso-mexicano-perfila-su-mejor-semana-en-un-ano.html", "title": "Precio del dólar hoy viernes 10 de abril : peso mexicano perfila su mejor semana en un año", "publish_date": "2026-04-10T19:48:06Z", "full_text": "El precio del dólar hoy en México, viernes 10 de abril de 2026, mantiene una tendencia a la baja, mientras el peso mexicano se fortalece y se encamina a cerrar su mejor semana en más de un año, apoyado por un entorno internacional más favorable.\n\nDe acuerdo con datos de Bloomberg, el tipo de cambio interbancario inicia la jornada en 17.34 pesos por dólar, con una caída de 0.09 por ciento para la divisa estadounidense.\n\nPeso mexicano liga su mejor racha en meses\n\nLa moneda mexicana continúa con su avance y cotiza alrededor de 17.29 unidades por dólar, lo que representa una apreciación de 0.36 por ciento en la jornada.\n\nCon este desempeño, el peso suma seis sesiones consecutivas de ganancias y acumula un avance semanal superior al 3 por ciento, perfilando su mejor resultado desde abril de 2025.\n\nOptimismo global impulsa al peso\n\nEl fortalecimiento del peso ocurre en medio de un cambio en el ánimo de los mercados internacionales. Los inversionistas han comenzado a reducir su exposición al dólar, considerado un activo refugio, ante la expectativa de que se mantenga el alto al fuego en Medio Oriente.\n\nEste escenario ha abierto la posibilidad de una reanudación en los envíos petroleros, lo que ha contribuido a estabilizar los mercados y disminuir la presión inflacionaria global.\n\nAdemás, se espera que durante el fin de semana se lleven a cabo las primeras conversaciones entre Estados Unidos e Irán desde el inicio del conflicto, lo que podría reforzar el optimismo en los mercados.\n\n¿Por qué está subiendo el peso mexicano?\n\nUn análisis de Banco Base señala que el peso inicia la sesión con una apreciación de 0.34 por ciento, equivalente a 5.9 centavos, cotizando alrededor de 17.31 pesos por dólar.\n\nDurante las primeras horas del día, el tipo de cambio ha oscilado entre un máximo de 17.40 y un mínimo de 17.30 pesos, reflejando estabilidad con sesgo positivo.\n\nEn este periodo, el peso acumula un avance de 3.17 por ciento, impulsado por el debilitamiento del dólar, que retrocede ligeramente en su índice ponderado.\n\nInflación en Estados Unidos y política monetaria\n\nEn el frente económico, se dio a conocer que los precios al consumidor en Estados Unidos registraron en marzo su mayor incremento en casi cuatro años, aunque el dato estuvo en línea con las expectativas del mercado.\n\nEste indicador mantiene la atención de la Reserva Federal, que evalúa el ritmo de futuros ajustes en la tasa de interés.\n\nAsí cerró el peso mexicano la jornada anterior\n\nEl jueves 9 de abril, el peso mexicano cerró con una ganancia de 0.45 por ciento, al ubicarse en 17.36 pesos por dólar, extendiendo la racha positiva observada en días previos.\n\nLos mercados se mantienen cautelosos, aunque con un sesgo optimista, atentos a la evolución del alto al fuego en Medio Oriente y a posibles avances diplomáticos."} +{"url": "https://www.risk.net/markets/7963346/the-swap-futures-comeback", "title": "The swap futures comeback - Risk . net", "publish_date": "2026-04-10T19:48:06Z", "full_text": "On March 27, a single directional block trade worth $1.5 billion in notional printed in an interest rate contract that, just two years earlier, few outside a handful of Chicago-based proprietary trading firms were actively quoting.\n\nThe following week on March 31, two more directional block trades hit the logs, with notionals of $500 million and $1 billion, respectively. It helped March become a"} +{"url": "https://abc30.com/post/prices-surged-march-oil-shock-set-off-iran-war/18865879/", "title": "Prices surged in March after oil shock set off by Iran war", "publish_date": "2026-04-10T19:48:06Z", "full_text": "The Middle East conflict triggered one of the largest oil shocks in decades.\n\nPrices surged in March after oil shock set off by Iran war\n\nInflation surged in March after an oil shock triggered by the U.S.-Israeli war with Iran, government data showed on Friday. The inflation report matched economists' expectations.\n\nPrices rose 3.3% in March compared to a year earlier, marking a steep rise from a year-over-year inflation rate of 2.4% in the prior month. Annual inflation jumped to its highest level in two years, U.S. Bureau of Labor Statistics (BLS) data showed.\n\nThe rapid acceleration of price increases could complicate interest rate policy at the Federal Reserve, which may be reluctant to lower borrowing costs as inflation climbs.\n\nThe Middle East conflict prompted Iran's effective closure of the Strait of Hormuz, a critical waterway that facilitates the transport of about one-fifth of the global supply of oil and natural gas.\n\nThat energy shortage sent oil and gasoline prices surging worldwide. Gasoline prices in the U.S. stood at $4.15 on average per gallon on Friday, marking a leap of $1.17 since the start of the war, AAA data showed.\n\nThe BLS collected price data over the entire month of March. The inflation report, in turn, reflected prices for 31 of the first 32 days of war, excluding the outbreak of hostilities on Feb. 28. The ceasefire announced on Tuesday came after 40 days of fighting.\n\nAs part of a two-week U.S.-Iran ceasefire announced on Tuesday, Iran says it will allow tankers passage through the Strait of Hormuz as long as they coordinate with the nation's military.\n\nThe resumption of tanker traffic remains uncertain, however. Tanker traffic was suspended on Wednesday after Israeli attacks on Lebanon, Iran's semi-official Fars News Agency reported.\n\nCrude prices fell after the ceasefire announcement but remained highly elevated. U.S. oil prices topped $98 a barrel as of Thursday, standing nearly 50% higher than their pre-war level.\n\nA surge in consumer prices could pose difficulty for the Fed as it weathers a slowdown of economic performance over recent months.\n\nIf the Fed opts to lower borrowing costs, it could spur growth but risk higher inflation. On the other hand, the choice to raise interest rates may slow price increases but raises the likelihood of a cooldown in economic performance.\n\nLast month, Federal Reserve Chairman Jerome Powell said that despite rising energy prices and the potential impact on inflation, he doesn't think the central bank needs to raise interest rates.\n\nPowell noted that central bankers often look past shocks -- such as sudden oil-price increases -- since the upward pressure on consumer prices usually proves temporary.\n\n\"We feel like our policy is in a good place for us to wait and see how that turns out,\" Powell said.\n\nThe benchmark interest rate stands at a level between 3.5% and 3.75%. That figure marks a significant drop from a recent peak attained in 2023, but borrowing costs remain well above a 0% rate established at the outset of the COVID-19 pandemic.\n\nThe Fed will announce its next rate decision on April 29. Investors overwhelmingly expect the Fed to leave rates unchanged, according to the CME FedWatch Tool, a measure of market sentiment.\n\nThe tool pegs a roughly 70% chance that the Fed will maintain interest rates at current levels for the remainder of the year."} diff --git a/Data/1_Bronze_Raw/News_Scrapes/2026-04-10/Full_text/full_text_macro_geopolitics_risk.jsonl b/Data/1_Bronze_Raw/News_Scrapes/2026-04-10/Full_text/full_text_macro_geopolitics_risk.jsonl new file mode 100644 index 0000000..04c1024 --- /dev/null +++ b/Data/1_Bronze_Raw/News_Scrapes/2026-04-10/Full_text/full_text_macro_geopolitics_risk.jsonl @@ -0,0 +1,7 @@ +{"url": "https://www.sunstar.com.ph/davao/vp-sara-questions-pbbm-on-aid-amid-energy-crisis", "title": "VP Sara Challenges Marcos on Aid Amid 2026 Energy Crisis", "publish_date": "2026-04-10T19:50:08Z", "full_text": "VICE President Sara Duterte on Thursday questioned what President Ferdinand “Bongbong” Marcos Jr. is doing to assist vulnerable Filipinos affected by the ongoing energy crisis.\n\n“Ano ba ang ginagawa niya para tulungan ang mga kababayan natin na tinatamaan or nahihirapan dahil dito sa epekto ng crisis sa Middle East (What is he doing to help our fellow Filipinos who are affected or struggling because of the Middle East crisis?),” Duterte said during a media interview on April 9, 2026, at the Veterans Memorial Monument in Davao City.\n\nShe said fuel prices could ease once tensions in the Middle East subside or if the Philippines secures alternative fuel sources outside the region. Otherwise, she said, oil prices will continue to rise.\n\nShe added that the Office of the Vice President (OVP) will continue its Libreng Sakay program, citing the growing need for free rides among commuters affected by higher fuel costs.\n\nThe OVP launched the program in 2022 to help the public manage daily expenses, Duterte said.\n\nAmid the fuel crisis, Marcos has ordered government agencies to adopt energy-saving measures, including reducing power and fuel consumption by limiting air-conditioning, lighting, and the use of office equipment.\n\nThe president also declared a State of National Energy Emergency through an executive order to address the situation. RGP"} +{"url": "https://hitsfm.net/business/9a906e8ed2f1be1191aa6d7dc2574e4c", "title": "Business - HITS FM", "publish_date": "2026-04-10T19:50:08Z", "full_text": "A view of the vessels passing through the Strait of Hormuz following the two-week temporary ceasefire reached between the United States and Iran on the condition that the strait be reopened, seen in Oman, April 8, 2026. (Anadolu via Getty Images)\n\n(NEW YORK) -- Inflation surged in March after an oil shock triggered by the U.S.-Israeli war with Iran, government data showed on Friday. The inflation report matched economists' expectations.\n\nPrices rose 3.3% in March compared to a year earlier, marking a steep rise from a year-over-year inflation rate of 2.4% in the prior month. Annual inflation jumped to its highest level in two years, U.S. Bureau of Labor Statistics (BLS) data showed.\n\nThe jump in prices owed in large part to a sharp rise in costs for products impacted by the oil shortage. Gasoline prices were 25% higher in March than February, the BLS report said. Overall, energy prices jumped almost 12% from a month earlier.\n\nAirline fares increased 3.4% in March from February, the data showed.\n\nThe rapid acceleration of price increases could complicate interest rate policy at the Federal Reserve, which may be reluctant to lower borrowing costs as inflation climbs.\n\nThe Middle East conflict prompted Iran's effective closure of the Strait of Hormuz, a critical waterway that facilitates the transport of about one-fifth of the global supply of oil and natural gas.\n\nThat energy shortage sent oil and gasoline prices surging worldwide. Gasoline prices in the U.S. stood at $4.15 on average per gallon on Friday, marking a leap of $1.17 since the start of the war, AAA data showed.\n\nThe BLS collected price data over the entire month of March. The inflation report, in turn, reflected prices for 31 of the first 32 days of war, excluding the outbreak of hostilities on Feb. 28. The ceasefire announced on Tuesday came after 40 days of fighting.\n\nAs part of a two-week U.S.-Iran ceasefire announced on Tuesday, Iran says it will allow tankers passage through the Strait of Hormuz as long as they coordinate with the nation's military.\n\nThe resumption of tanker traffic remains uncertain, however. Tanker traffic was suspended on Wednesday after Israeli attacks on Lebanon, Iran's semi-official Fars News Agency reported.\n\nCrude prices fell after the ceasefire announcement but remained highly elevated. U.S. oil prices topped $98 a barrel as of Thursday, standing nearly 50% higher than their pre-war level.\n\nA surge in consumer prices could pose difficulty for the Fed as it weathers a slowdown of economic performance over recent months.\n\nIf the Fed opts to lower borrowing costs, it could spur growth but risk higher inflation. On the other hand, the choice to raise interest rates may slow price increases but raises the likelihood of a cooldown in economic performance.\n\nLast month, Federal Reserve Chairman Jerome Powell said that despite rising energy prices and the potential impact on inflation, he doesn't think the central bank needs to raise interest rates.\n\nPowell noted that central bankers often look past shocks -- such as sudden oil-price increases -- since the upward pressure on consumer prices usually proves temporary.\n\n\"We feel like our policy is in a good place for us to wait and see how that turns out,\" Powell said.\n\nThe benchmark interest rate stands at a level between 3.5% and 3.75%. That figure marks a significant drop from a recent peak attained in 2023, but borrowing costs remain well above a 0% rate established at the outset of the COVID-19 pandemic.\n\nThe Fed will announce its next rate decision on April 29. Investors overwhelmingly expect the Fed to leave rates unchanged, according to the CME FedWatch Tool, a measure of market sentiment.\n\nThe tool pegs a roughly 70% chance that the Fed will maintain interest rates at current levels for the remainder of the year.\n\nCopyright © 2026, ABC Audio. All rights reserved."} +{"url": "https://www.novosti.rs/planeta/svet/1596010/uskoro-cemo-saznati-tramp-otkrio-kad-biti-poznato-pregovori-sad-irana-biti-uspesni-punimo-brodove-najboljim-oruzjem", "title": " USKORO ĆEMO SAZNATI Tramp otkrio kad će biti poznato da li će pregovori SAD i Irana biti uspešni : Mi punimo brodove najboljim oružjem", "publish_date": "2026-04-10T19:50:08Z", "full_text": "AMERIČKI predsednik Donald Tramp izjavio je danas da će se za 24 sata znati da li će pregovori Sjedinjenih Američkih Država i Irana, koji se za vikend održavaju u Pakistanu, biti uspešni.\n\nFoto: Tanjug/AP Photo/Julia Demaree Nikhinson\n\nTramp je za Njujork post rekao da se američki ratni brodovi ponovo pune \"najboljom municijom\", kako bi nastavili napade na Iran, ako mirovni pregovori u Pakistanu propadnu.\n\n- Saznaćemo za oko 24 sata. Uskoro ćemo saznati - rekao je Tramp u telefonskom intervjuu, odgovarajući na pitanje da li smatra da će razgovori biti uspešni.\n\nOn je kazao da se sprema da vojska ponovo otvori moreuz, ako Iran ne bude poštovao primirje.\n\n- U toku je resetovanje. Ali mi punimo brodove. Punimo brodove najboljim oružjem ikada napravljenim, čak na višem nivou nego što smo to činili da bismo izvršili potpuno desetkovanje (Irana). A ako ne postignemo dogovor, koristićemo ih, i koristićemo ih veoma efikasno - kazao je Tramp.\n\nPotrpedsednik SAD Džej Di Vens predvodi američku delegaciju u Islamabadu, u kojoj su i američki specijalni izaslanik Stiv Vitkof i Trampov zet Džared Kušner, koji će tokom vikenda pregovarati o postizanju trajnog mira, nakon što je u utorak postignut sporazum o dvonedeljnom prekidu vatre sa Iranom.\n\nOčekuje se da će Iran u pakistanskoj prestonici predstavljati ministar spoljnih poslova Abas Arakči i predsednik iranskog parlamenta Mohamed Bager Kalibaf. Tramp je stavio do znanja da je ponovno otvaranje Ormuskog moreuza za slobodan prolaz brodova od strane Irana ključna komponenta svakog sporazuma, a očekuje se da će tema pregovora biti i okončanje iranske podrške militantnim grupama u regionu, status iranskog programa balističkih raketa i zahtev Teherana za ukidanje američkih sankcija.\n\n(Tanjug)\n\nBONUS VIDEO:\n\nGORI BLISKI ISTOK: Eksplozije širom Irana, Izraela, Emirata, Katara..."} +{"url": "http://www.shanghainews.net/news/278975895/china-sees-solid-rise-in-cross-border-travel-in-q1-with-foreign-national-trips-surging", "title": "China sees solid rise in cross - border travel in Q1 , with foreign national trips surging", "publish_date": "2026-04-10T19:50:08Z", "full_text": "BEIJING, April 10 (Xinhua) -- China recorded steady growth in cross-border entries and exits in the first quarter of 2026, with trips by foreign nationals surging amid measures aimed at facilitating inbound travel.\n\nBorder authorities handled 185 million cross-border trips from January to March, up 13.5 percent year on year, the National Immigration Administration announced on Friday.\n\nDuring this period, foreign nationals made 21.33 million border crossings, up 22.3 percent year on year. Visa-free entries for foreign nationals reached 8.32 million, making up 77.9 percent of all inbound foreign trips, up 29.3 percent year on year.\n\nMainland residents took 91.66 million cross-border trips, an increase of 14.2 percent year on year. Residents of Hong Kong, Macao and Taiwan made 72.49 million crossings, up 10.3 percent from the same period last year.\n\nThis growth shows that authorities are continuing to relax entry policies and make travel more convenient for visitors.\n\nIn Xiamen, a coastal city in eastern Fujian province, streamlined customs procedures have helped speed up the arrival process for travelers. \"It's very convenient to come to China,\" said Kate, an Australian tourist traveling with her family. \"After submitting our entry information online, we cleared customs quickly. China is open and welcoming.\"\n\nMeanwhile, in Hainan, a tropical island province and free trade hub, expanded visa-free policies now cover passport holders from 86 countries.\n\n\"The number of inbound and outbound tourists has gone up significantly since the launch of island-wide special customs operations. Russia, Malaysia, Indonesia, Kazakhstan and other countries are major sources of foreign visitors,\" said Rao Jun, a border inspection officer.\n\nIn 2025, China received more than 150 million inbound tourist visits, up over 17 percent year on year, with inbound travelers spending more than 130 billion U.S. dollars, according to the Ministry of Culture and Tourism. Visa-free entries by foreign nationals surpassed 30 million.\n\nBy February this year, China had expanded its unilateral visa-free access to citizens of 50 countries.\n\nBetter infrastructure and services are also encouraging foreign visitors to stay longer and engage more deeply with the country. High-speed rail trips, drone light shows and traditional Chinese medicine massages are among the most popular activities for foreign tourists.\n\nBuilding on this momentum, authorities rolled out measures in March to further boost inbound tourist spending, including refining transit visa-free arrangements and enhancing departure tax refund services. Efforts are also being made to make payment more accessible and strengthen foreign-language services at key venues."} +{"url": "https://udn.com/news/story/7270/9433920", "title": "亞洲最新隱奢海島誕生 ! Club Med沙巴度假村開訂 4天3夜2萬起全包 | 流行消費 | 生活", "publish_date": "2026-04-10T19:50:08Z", "full_text": "全球全包式度假品牌Club Med宣布,全新據點「Club Med Borneo」即日起正式開放預訂,並預計於2026年11月16日迎接首批旅客。度假村座落於馬來西亞沙巴瓜拉潘尤(Kuala Penyu)海岸,被視為近年崛起的「隱奢海島秘境」,開幕同步推出限時優惠,4天3夜食宿全包假期每人最低20,200元起。\n\n隨著疫後旅遊型態轉變,旅客逐漸從城市觀光轉向自然探索與深度度假。Club Med台灣表示,沙巴近年成為亞洲海島新焦點,台灣旅客赴沙巴人次持續成長,品牌因此選擇在婆羅洲打造亞洲重要新據點。\n\n全新度假村占地約17公頃,擁有長達4公里白色沙灘與完整原始海岸線,結合紅樹林濕地、生態雨林與野生動物棲地,被形容為「近距離感受亞馬遜等級的自然場域」。建築設計靈感源自婆羅洲原住民長屋文化,以低密度開發融入環境,並朝亞太首座取得BREEAM永續建築認證的濱海度假村目標邁進。\n\n度假村共規劃400間客房,其中39間「謐境探索系列」套房提供獨立泳池、專屬酒吧與禮賓服務,主打高隱私度與靜奢體驗,鎖定高端度假市場。\n\n除了全包式餐飲與娛樂,旅客也可參與紅樹林獨木舟、生態教育導覽、匹克球運動等活動,或搭乘遊船探索克里亞斯河生態,觀察長鼻猴與螢火蟲奇景;深入文化體驗則可造訪在地村落與原住民族文化聚落。\n\nClub Med指出,全包式假期涵蓋住宿、美食、酒水、運動與娛樂,一價全含的旅遊模式持續受到家庭與自由行旅客青睞,此次婆羅洲新據點將進一步強化品牌在亞洲海島市場的布局。\n\n相關資訊可查:https://www.clubmed.com.tw/。\n\n※ 提醒您:禁止酒駕 飲酒過量有礙健康\n\n造訪Mari-Mari文化村,透過多元互動體驗,品嘗在地竹筒料理。圖/Club Med提供\n\n全包式度假品牌Club Med宣布,全新度假村「馬來西亞沙巴婆羅洲」正式開放預訂。圖/Club Med提供\n\nClub Med全新度假村「馬來西亞沙巴婆羅洲」正式開放預訂,可近距離探索媲美亞馬遜的紅樹林生態與豐富野生動物。圖/Club Med提供"} +{"url": "https://www.bankingnews.gr/diethni/articles/867952/synexizoun-na-eksoplizoun-tous-egklimaties-i-germania-paredose-5-tethorakismena-oximata-mediguard-stin-ethnofroura-tis-oukranias", "title": "Συνεχίζουν να εξοπλίζουν τους εγκληματίες - Η Γερμανία παρέδωσε 5 τεθωρακισμένα οχήματα MEDIGUARD στην Εθνοφρουρά της Ουκρανίας", "publish_date": "2026-04-10T19:50:08Z", "full_text": "Το MEDIGUARD παράγεται από κοινού από τρεις εταιρείες από την Ουκρανία και τη Γερμανία\n\nπαρέδωσε πέντε θωρακισμένα ιατρικά οχήματα MEDIGUARD ουκρανο-γερμανικής παραγωγής στην Εθνοφρουρά της Ουκρανίας.Η γερμανική πρεσβεία στηνΔιπλωμάτες σημείωσαν ότι αυτή είναι η πρώτη παρτίδα οχημάτων στο πλαίσιο μιας νέας, μεγαλύτερης σύμβασης που χρηματοδοτείται πλήρως από τη Γερμανία.Η μεταφορά της προηγούμενης παρτίδας αναφέρθηκε τον Οκτώβριο του 2025.Εκείνη την εποχή, σημειώθηκε ότι τέσσερα τεθωρακισμένα ασθενοφόρα εργάζονταν ήδη στο μέτωπο για τη διάσωση Ουκρανού στρατιωτικού προσωπικού.Αναφέρθηκε ότι η νέα παρτίδα δημιουργήθηκε λαμβάνοντας υπόψη την πολεμική εμπειρία του ουκρανικού στρατού.Έτσι, ένα από τα προηγουμένως μεταφερθέντα οχήματα άντεξε τα χτυπήματα από τρία ρωσικά drones στο μέτωπο. Η καμπίνα παρέμεινε άθικτη και το πλήρωμα δεν υπέστη σοβαρούς τραυματισμούς.Επιπλέον, μπορεί να σημειωθεί ότι, σε αντίθεση με τα οχήματα που παραδόθηκαν τον Οκτώβριο του 2025, η παρτίδα του Απριλίου είναι άμεσα εξοπλισμένη με δίχτυα κατά των drones για προστασία από τα FPV.Το MEDIGUARD παράγεται από κοινού από τρεις εταιρείες από τηνκαι η συναρμολόγηση πραγματοποιείται στην Ουκρανία με χρηματοδότηση από τη γερμανική κυβέρνηση.Υπενθυμίζεται ότι στα τέλη Μαρτίου 2026,Αυτό αναφέρθηκε στον Στρατό από εκπροσώπους αρκετών κατασκευαστών τεθωρακισμένων οχημάτων της Ουκρανίας.www.bankingnews.gr"} +{"url": "https://www.cravenherald.co.uk/news/national/26012377.airports-warn-systemic-jet-fuel-shortage-strait-hormuz-stays-closed/", "title": "Airports warn of systemic jet fuel shortage if Strait of Hormuz stays closed", "publish_date": "2026-04-10T19:50:08Z", "full_text": "Airports Council International (ACI), which represents more than 600 airports, wrote a letter to the European commissioners for energy and transport and tourism.\n\nThe body’s director-general Olivier Jankovec wrote in the letter: “At this stage, we understand that if the passage through the Strait of Hormuz does not resume in any significant and stable way within the next three weeks, systemic jet fuel shortage is set to become a reality for the EU.\n\n“The fact that we are entering the peak summer season… is only adding to those concerns.”\n\nSupplies of jet fuel – which is used to fly planes – from the Middle East have been disrupted since the US-Israel’s war with Iran because of Iran’s effective closure of the Strait of Hormuz, a critical international shipping route.\n\nThis has led to soaring prices and warnings that flights could be affected because of Europe’s reliance on fuel imports from around the world.\n\nAnalysts have also said higher jet fuel prices can be quicker to pass through to airfares than road fuel and household energy costs.\n\nRyanair’s boss Michael O’Leary said earlier this month that if the war continues, then there was a risk of “disruptions in Europe in May and June”, adding that “maybe 10%, 20%, 25% of our supplies might be at risk”.\n\nSir Keir Starmer has been visiting allies in the Gulf for talks on how to support what he described as a “fragile” ceasefire between the US and Iran, which was agreed this week.\n\nHe spoke to US President Donald Trump about the need for a “practical plan” to get shipping going through the Strait of Hormuz amid suggestions Tehran wants to charge vessels for passage.\n\nIn its letter, the ACI says jet fuel supply for the next six months needs to be urgently monitored by the European Commission, including identifying action that can be taken to increase production within the EU.\n\nIt also asks them to consider temporarily lifting restrictions and regulations that limit the ability to import jet fuel.\n\n“This crisis has exposed the reduced refining capacity of the EU for jet fuel production, and its acute dependence on imports from other world regions,” Mr Jankovec warned on behalf of the body.\n\nSusannah Streeter, chief investment strategist for Wealth Club, said: “Carriers have had to deal with a more than doubling of fuel costs since the conflict erupted and the threat of shortages lingers.\n\n“As the war has put a chokehold on supplies from the Middle East, it has caused other nations which produce jet fuel to impose export bans, causing trade to seize up further.\n\n“It will take time to unwind panic positions, and for jet fuel prices to stabilise, so airlines are likely to continue to pass on the cost to passengers for the foreseeable future.”"} diff --git a/Data/1_Bronze_Raw/News_Scrapes/2026-04-10/Full_text/full_text_macro_yields_dollar.jsonl b/Data/1_Bronze_Raw/News_Scrapes/2026-04-10/Full_text/full_text_macro_yields_dollar.jsonl new file mode 100644 index 0000000..3575178 --- /dev/null +++ b/Data/1_Bronze_Raw/News_Scrapes/2026-04-10/Full_text/full_text_macro_yields_dollar.jsonl @@ -0,0 +1,6 @@ +{"url": "https://www.finanzen.net/nachricht/rohstoffe/rohstoffpreise-am-freitagabend-15604785", "title": "Rohstoffpreise am Freitagabend", "publish_date": "2026-04-10T19:49:15Z", "full_text": "Gold, Öl & Co. aktuell\n\nSo bewegen sich derzeit Goldpreis, Erdgaspreis & Co.\n\nDer Goldpreis ist am Abend geklettert. Um 20:40 Uhr legte der Goldpreis um 0,13 Prozent auf 4.772,40 US-Dollar zu, nachdem er am Vortag noch bei 4.766,02 US-Dollar gehandelt worden war.\n\nWerbung Werbung\n\nDaneben präsentiert sich der Silberpreis mit einem Kursgewinn. Um 20:40 Uhr notiert der Silberpreis 1,80 Prozent stärker bei 76,46 US-Dollar. Am Vortag lag der Preis bei 75,11 US-Dollar.\n\nNach 2.107,00 US-Dollar am Vortag ist der Platinpreis am Freitagabend um -2,18 Prozent auf 2.061,00 US-Dollar gesunken.\n\nZudem zeigt sich der Palladiumpreis im Sinkflug. Um 20:38 Uhr gibt der Palladiumpreis um -2,14 Prozent auf 1.528,50 US-Dollar ab, nachdem am Tag zuvor noch ein Preis von 1.562,00 US-Dollar gemeldet wurde.\n\nInzwischen fällt der Ölpreis (Brent) um -1,39 Prozent auf 95,07 US-Dollar. Am tags zu vor lag der Ölpreis (Brent) bei 96,41 US-Dollar.\n\nDaneben wertet der Ölpreis (WTI) um 20:41 Uhr ab. Es geht -1,88 Prozent auf 96,03 US-Dollar nach unten, nachdem der Preis tags zuvor bei 97,87 US-Dollar stand.\n\nDerweil notiert der Baumwolle bei 0,73 US-Dollar. Im Vergleich zum Vortag (0,73 US-Dollar) ist das ein Abschlag von -0,05 Prozent.\n\nMit dem Haferpreis geht es indes nordwärts. Der Haferpreis gewinnt 0,38 Prozent auf 3,34 US-Dollar hinzu, nachdem gestern noch 3,33 US-Dollar an der Tafel standen.\n\nWährenddessen legt der Kaffeepreis um 2,18 Prozent auf 3,00 US-Dollar zu. Gestern war der Kaffeepreis noch 2,94 US-Dollar wert.\n\nMit dem Lebendrindpreis geht es indes nordwärts. Der Lebendrindpreis gewinnt 0,84 Prozent auf 2,52 US-Dollar hinzu, nachdem gestern noch 2,50 US-Dollar an der Tafel standen.\n\nZudem zeigt sich der Maispreis im Sinkflug. Um 20:20 Uhr gibt der Maispreis um -0,73 Prozent auf 4,41 US-Dollar ab, nachdem am Tag zuvor noch ein Preis von 4,44 US-Dollar gemeldet wurde.\n\nDaneben wertet der Mastrindpreis um 20:05 Uhr auf. Es geht 0,36 Prozent auf 3,74 US-Dollar nach oben, nachdem der Preis am Vortag bei 3,73 US-Dollar stand.\n\nWährenddessen zeigt sich der Orangensaftpreis im Plus. Im Vergleich zum Vortag (1,94 US-Dollar) geht es um 1,88 Prozent auf 1,97 US-Dollar nach oben.\n\nZeitgleich verstärkt sich der Sojabohnenpreis um 0,79 Prozent auf 11,75 US-Dollar. Einen Tag zuvor lag der Preis bei 11,65 US-Dollar.\n\nZudem zeigt sich der Sojabohnenmehlpreis im Aufwind. Um 20:20 Uhr zieht der Sojabohnenmehlpreis um 4,60 Prozent auf 332,20 US-Dollar an, nachdem am Tag zuvor noch ein Wert von 317,60 US-Dollar gemeldet wurde.\n\nWährenddessen verliert der Sojabohnenölpreis um -0,89 Prozent auf 0,67 US-Dollar. Gestern stand der Sojabohnenölpreis noch bei 0,68 US-Dollar.\n\nZeitgleich verringert sich der Zuckerpreis um -1,22 Prozent auf 0,14 US-Dollar. Einen Tag zuvor lag der Preis bei 0,14 US-Dollar.\n\nIndessen reduziert sich der Erdgaspreis - Natural Gas um -0,94 Prozent auf 2,65 US-Dollar. Am Vortag notierte der Erdgaspreis - Natural Gas bei 2,67 US-Dollar.\n\nIn der Zwischenzeit verbucht der Mageres Schwein Preis Abschläge in Höhe von -0,06 Prozent auf 0,91 US-Dollar. Am Tag zuvor lag der Mageres Schwein Preis bei 0,91 US-Dollar.\n\nWährenddessen wird der Milchpreis bei 17,03 US-Dollar gehandelt. Das bedeutet einen Abschlag von -0,06 Prozent im Vergleich zum Vortag (17,04 US-Dollar).\n\nZudem fällt der Heizölpreis. Um -4,82 Prozent reduziert sich der Heizölpreis um 20:40 Uhr auf 99,06 US-Dollar, nachdem der Heizölpreis am Vortag noch bei 104,08 US-Dollar lag.\n\nWährenddessen wird der Kohlepreis bei 104,85 US-Dollar gehandelt. Das bedeutet einen Abschlag von -0,80 Prozent im Vergleich zum Vortag (105,70 US-Dollar).\n\nWährenddessen zeigt sich der Reispreis im Minus. Im Vergleich zum Vortag (10,91 US-Dollar) geht es um -1,10 Prozent auf 10,79 US-Dollar nach unten.\n\nDerweil geht es für den Holzpreis südwärts. Der Holzpreis sinkt -0,26 Prozent auf 579,50 US-Dollar, nach 581,00 US-Dollar am Vortag.\n\nWährenddessen verliert der Erdgaspreis - TTF um -3,29 Prozent auf 44,19 Euro. Gestern stand der Erdgaspreis - TTF noch bei 45,70 Euro.\n\nRedaktion finanzen.net"} +{"url": "https://www.ilgiorno.it/varese/cronaca/arcisate-malore--guida-trattore-79enne-condizioni-disperate-764da021", "title": "Arcisate , ha un malore mentre guida il trattore nei campi : 79enne in condizioni disperate", "publish_date": "2026-04-10T19:49:15Z", "full_text": "Arcisate (Varese), 10 aprile 2026 – Un pomeriggio come tanti, tra i campi ai margini del paese. Il rumore lento del trattore, il lavoro quotidiano, la normalità. Poi, all’improvviso, qualcosa si spezza. Un malore, la perdita di controllo, l’impatto. E la quiete della campagna che si trasforma in tragedia.\n\nÈ accaduto oggi, 10 aprile, poco prima delle 15, in via Donizetti ad Arcisate, lungo la strada che conduce a Velmaio. Qui, in una zona fatta di terreni coltivati e case sparse, un uomo di 79 anni stava lavorando, quando è stato colpito da un improvviso malore mentre era alla guida del suo trattore. Le sue condizioni sono gravissime.\n\nLo schianto e i soccorsi\n\nIl mezzo, ormai fuori controllo, ha proseguito la sua corsa per pochi metri, finendo contro un muretto di confine. Un urto secco, violento. I primi a rendersi conto della gravità della situazione hanno lanciato l’allarme. In pochi minuti la zona si è riempita di sirene: soccorsi in codice rosso, quello della massima urgenza. Sul posto sono arrivati l’automedica, un’ambulanza della Croce Rossa Valceresio, i vigili del fuoco, la polizia locale e i carabinieri.\n\nI soccorritori si sono trovati davanti a una scena drammatica. L’anziano era in condizioni critiche. Le operazioni per stabilizzarlo sono state complesse, svolte direttamente sul posto, sotto gli occhi di chi assisteva con apprensione. Poi la corsa in ospedale. Il 79enne è stato trasportato d’urgenza al Circolo di Varese."} +{"url": "https://www.pressdemocrat.com/2026/04/09/keyboards-and-keyboard-covers-that-make-typing-with-long-nails-a-breeze/", "title": "Keyboards and keyboard covers that make typing with long nails a breeze", "publish_date": "2026-04-10T19:49:15Z", "full_text": "Because typing with long nails can be a nightmare\n\nI love having long nails. There’s something so elegant about lengthy claws, and they really elevate an ensemble. I don’t, however, love typing with long nails. If you’ve ever tried to type quickly and accurately with a fresh set of acrylics or press-ons, you know the struggle of having your fingers slip all over the place and hit the wrong keys.\n\nBut there’s good news for us manicure loyalists: Certain keyboards are designed to make typing with long nails easier than others. The key is in the keys, which are raised to give your nails more space and minimize the chances of them accidentally hitting the wrong letter. Oftentimes, these keyboards have circular keys instead of square ones, which allows for bigger gaps between the keys. If you’re partial to a keyboard you already own, you can also invest in a keyboard cover that fits over your keyboard and provides elevated keys.\n\nIn this article: Camiysn Typewriter-Style Mechanical Gaming Keyboard, UBOTIE Colorful Computer Wireless Keyboard Mouse Combos and HUO JI E-Yooso Z-88 Wired Typewriter-Style Mechanical Gaming Keyboard\n\nWhat people say about typing with special keyboards for long nails\n\nThere are a number of keyboards available on Amazon that are designed to make typing easier for people with long nails. One of the more popular products is the Camiysn Typewriter-Style Mechanical Gaming Keyboard, which has circular, elevated keys.\n\n“If you like that old-school typewriter sound, this is the keyboard for you,” one customer raved in a review. “I also have natural long nails and this keyboard makes typing with them a pure pleasure. So kudos for the ergonomic design and the price is a great value for the money spent.”\n\nAnother happy customer wrote: “I worked in customer service for about six years and I would say this is the best keyboard I’ve ever purchased. It’s great [for] women who wear long nails because the keys poke out to you. I love the typing sound that it makes because it allows my customers to hear the work that I’m doing for them, the LED lights are super cute and help [me] see my keys better when working late nights.”\n\nBest keyboards for typing with long nails\n\nCamiysn Typewriter-Style Mechanical Gaming Keyboard\n\nThis long nail-friendly keyboard is loaded with features such as backlit keys, a detachable magnetic wrist rest, adjustable rear feet and round raised keycaps. The keyboard, which comes in seven fun colors, is plugged in via a USB cable.\n\nUBOTIE Colorful Computer Wireless Keyboard Mouse Combos\n\nIf you prefer all your computer accessories to match, consider this wireless mouse and keyboard combo. The keyboard has retro-style round and raised keypads to make typing with long nails easier. It comes in 10 different colors with a matching colorful mouse.\n\nGEEZER Wireless Keyboard Mouse Combo\n\nFor even more color combinations, try this wireless keyboard and mouse set, which is available in 25 different hues. Both the keyboard and mouse are connected to your computer via a single wireless USB, which allows them to connect at a range of up to 33 feet. The keys on the keyboard are even detachable to make them easier to clean.\n\nTypewriter Style Mechanical Gaming Keyboard\n\nAnother great backlit option, this typewriter-style keyboard has rounded, elevated keys, which are easier on acrylic nails. When you type, it responds with audible clicks, which many users enjoy. The stepped layout offers an ergonomic angle and the concave keycap design allows for more comfortable typing.\n\nHUO JI E-Yooso Z-88 Wired Typewriter-Style Mechanical Gaming Keyboard\n\nAlthough this may look like a simple black or white keyboard when it’s off, powering up the backlights yields a fun surprise: The keys become illuminated with a rainbow backlight. The wired keyboard is equipped with mechanical keys that have medium resistance, an audible clicky sound and tactile feedback.\n\nAULA F99 Wireless Mechanical Keyboard\n\nIf you prefer raised keys with a standard square shape, consider this wireless model. Customers report a comfortable experience using this device with long nails. The gray-and-white keyboard can be connected to up to five devices at a time, including a computer, gaming console, tablet and more.\n\nYUNZII X71 Transparent Mechanical Keyboard with Clear Keycaps\n\nThis Bluetooth-equipped wireless keyboard is crafted from a high-transparency polycarbonate material, which allows you to see the inner workings of the device. Perfect for gaming, this keyboard is outfitted with colorful LED backlights that make it easier to type in the dark.\n\nTrueque Wireless Keyboard and Mouse Combo with Retro Round Keycaps and Phone Holder\n\nThis full-size keyboard has a slot across the top that you can use to hold your smartphone or tablet upright while you type. Both the wireless keyboard and the included mouse feature power switches and automatic sleep mode, which activates after 10 minutes of inactivity to help extend battery life.\n\nHiground Crystal Opal Basecamp 65% Mechanical USB Wired Gaming Keyboard\n\nPeople with long nails report that the raised keys on this wireless keyboard contribute to a more comfortable typing experience than flatter keyboards. The backlit keyboard has customizable RGB lighting, which gives a modern look but also adds convenience for gamers. The letters are printed on the sides of the keys rather than the top, which prevents fading.\n\nYUNZII X98 QMK/VIA Wireless Mechanical Gaming Keyboard with Knob\n\nThis super versatile gaming keyboard offers a multifunction knob to adjust volume and RGB effects, a tri-mode connection, nonslip stand and 2.4gHz wireless dongle. It’s RGB backlit for gorgeous rainbow colored lighting and features shortcuts to change RGB settings.\n\nPrices listed reflect time and date of publication and are subject to change.\n\nCheck out our Daily Deals for the best products at the best prices and sign up here to receive the BestReviews weekly newsletter full of shopping inspo and sales.\n\nBestReviews spends thousands of hours researching, analyzing and testing products to recommend the best picks for most consumers. BestReviews and its newspaper partners may earn a commission if you purchase a product through one of our links."} +{"url": "https://www.wallstreet-online.de/nachricht/20716512-schwellenlaender-rallye-voraus-trotz-krieg-indiens-aktienfonds-kapital-anziehen", "title": "Schwellenländer - Rallye voraus ?: Trotz Krieg : Warum Indiens Aktienfonds jetzt plötzlich Kapital anziehen | wallstreetONLINE", "publish_date": "2026-04-10T19:49:15Z", "full_text": "Wie Bloomberg unter Berufung auf Daten der Association of Mutual Funds in India berichtet, lagen die Nettozuflüsse in aktienorientierte Fonds bei 404,5 Milliarden Rupien. Im Februar waren es noch 259,8 Milliarden Rupien. Trotz eskalierender geopolitischer Spannungen und heftiger Schwankungen an den Märkten griffen Anleger also beherzt zu.\n\nMitten in Krieg, Börsenstress und globaler Nervosität setzen Indiens Privatanleger ein überraschendes Signal: Im März haben sich die Zuflüsse in indische Aktienfonds deutlich beschleunigt.\n\nDies ist umso bemerkenswerter, da der NSE Nifty 50, Indiens Leitindex, im März um mehr als elf Prozent einbrach. Es war der stärkste Monatsverlust seit sechs Jahren. Gleichzeitig zogen globale Investoren laut Bloomberg 14 Milliarden US-Dollar ab – ein Rekordwert.\n\nDoch genau hier liegt der brisante Punkt: Während ausländische Anleger sich zurückzogen, stemmten sich heimische Investoren und Institutionen gegen den Ausverkauf. Vor allem Aktienfonds halfen dabei, einen großen Teil des Abgabedrucks aufzufangen.\n\nFür den Markt ist das ein wichtiges Signal. Die Daten zeigen nämlich, dass die inländische Nachfrage nach Aktien in Indien selbst in einer Phase extremer Unsicherheit nicht zusammenbricht. Das reicht zwar noch nicht aus, um die anhaltenden Abflüsse aus dem Ausland komplett auszugleichen. Es zeigt jedoch, wo derzeit die eigentliche Stütze des Marktes sitzt: im Inland.\n\nDie entscheidende Frage lautet nun: Handelt es sich dabei um Trotz-Käufe in einem Crash oder ist dies der Beginn einer neuen Stärkephase am indischen Aktienmarkt?\n\nKeine Lust auf hohe Order- und Depotgebühren? Dann schnell zu SMARTBROKER+ wechseln: Alle nachfolgend vorgestellten Aktien handeln Sie über gettex ab 0 Euro*.\n\n*ab 500 Euro Ordervolumen, zzgl. marktüblicher Spreads und Zuwendungen Dann schnell zuAlle nachfolgend vorgestellten Aktien handeln Sie über gettex ab 0 Euro*.*ab 500 Euro Ordervolumen, zzgl. marktüblicher Spreads und Zuwendungen\n\n\n\nAutor: Ferdinand Hammer, wallstreetONLINE Redaktion\n\nDer NIFTY 50 HKD Index Indicative Net Asset Values wird zum Zeitpunkt der Veröffentlichung der Nachricht mit einem Plus von +1,27 % und einem Kurs von 1.934PKT auf Stuttgart (10. April 2026, 09:52 Uhr) gehandelt.\n\n\n\n"} +{"url": "https://www.wallstreet-online.de/nachricht/20718345-konter-anthropic-ki-wettrennen-eskaliert-openai-rivalen-druck", "title": "Konter gegen Anthropic : KI - Wettrennen eskaliert : OpenAI setzt Rivalen unter Druck | wallstreetONLINE", "publish_date": "2026-04-10T19:49:15Z", "full_text": "Laut einem von Bloomberg eingesehenen Schreiben habe OpenAI seine Kapazitäten \"schnell und kontinuierlich\" erhöht. Das verschaffe dem Unternehmen Vorteile in einer Phase stark wachsender Nachfrage nach KI-Anwendungen.\n\nIm Wettbewerb der KI-Giganten verschärft sich der Ton. OpenAI hat Investoren mitgeteilt, dass der Konzern seinem Rivalen Anthropic bei der entscheidenden Ressource Rechenleistung deutlich voraus sei. Grundlage sei ein früher und aggressiver Ausbau der Infrastruktur.\n\n\"Compute ist der Engpass\"\n\nOpenAI macht die strategische Bedeutung klar. \"Diese Lücke ist von Bedeutung, da die Rechenleistung mittlerweile eine Produktbeschränkung darstellt\", heißt es in dem Memo. Das Unternehmen sieht darin einen zentralen Faktor für die Skalierung seiner Software.\n\nHintergrund ist die wachsende Konkurrenz durch Anthropic, das mit neuen Modellen Marktanteile gewinnt und einen Börsengang prüft. Gleichzeitig kämpfte das Unternehmen zuletzt mit Ausfällen, ausgelöst durch hohe Nachfrage.\n\nZahlen zeigen wachsende Differenz\n\nOpenAI beziffert seine verfügbare Leistung für 2025 auf 1,9 Gigawatt. Das entspricht etwa der Stromversorgung von rund 750.000 Haushalten in den USA. Für 2026 erwartet der Konzern eine Kapazität im niedrigen zweistelligen Gigawatt-Bereich. Bis 2030 sollen es rund 30 Gigawatt werden.\n\nAnthropic liegt laut Schätzung von OpenAI zurück. Demnach erreichte der Rivale 2025 etwa 1,4 Gigawatt und könnte 2026 zwischen 7 und 8 Gigawatt liegen. \"Selbst am oberen Ende dieses Bereichs liegt unsere Steigerungsrate deutlich vorn und baut ihren Vorsprung weiter aus“, schreibt OpenAI.\n\nAnthropic kontert mit Milliardenoffensive\n\nAnthropic investiert ebenfalls massiv. Das Unternehmen plant Ausgaben von 50 Milliarden US-Dollar für Rechenzentren in den USA. Zudem sicherte sich die Firma zusätzliche Kapazitäten über Kooperationen mit Broadcom und Google. Ab 2027 sollen so etwa 3,5 Gigawatt verfügbar sein.\n\nFinanzchef Krishna Rao erklärte: \"Diese bahnbrechende Partnerschaft mit Google und Broadcom ist eine Fortsetzung unseres konsequenten Ansatzes beim Ausbau der Infrastruktur.\"\n\nStreit über Strategie verschärft sich\n\nWährend OpenAI auf Tempo setzt, galt Anthropic lange als vorsichtiger Investor. CEO Dario Amodei sagte dazu: \"Wir als Unternehmen versuchen, so verantwortungsbewusst wie möglich zu wirtschaften.\" Zugleich kritisierte er indirekt Wettbewerber: \"Und dann gibt es meiner Meinung nach einige Akteure, die nach dem Motto ['You only live once'] handeln.\"\n\nOpenAI weist diese Sicht zurück. Rückblickend wirke die Zurückhaltung des Rivalen \"weniger wie Disziplin, sondern eher wie eine Unterschätzung dessen, wie schnell die Nachfrage steigen würde\".\n\nAutorin: Saskia Reh, wallstreetONLINE Redaktion\n\nKeine Lust auf hohe Order- und Depotgebühren? Dann schnell zu SMARTBROKER+ wechseln: Alle nachfolgend vorgestellten Aktien handeln Sie über gettex ab 0 Euro*.\n\n*ab 500 Euro Ordervolumen, zzgl. marktüblicher Spreads und Zuwendungen Dann schnell zuAlle nachfolgend vorgestellten Aktien handeln Sie über gettex ab 0 Euro*.*ab 500 Euro Ordervolumen, zzgl. marktüblicher Spreads und Zuwendungen"} +{"url": "https://www.zazoom.it/2026-04-10/palermo-morti-due-operai-caduti-da-una-gru/18980070/", "title": "Palermo morti due operai caduti da una gru", "publish_date": "2026-04-10T19:49:15Z", "full_text": "Palermo morti due operai caduti da una gru\n\nA Palermo, due operai sono deceduti dopo essere caduti da una gru durante un intervento lavorativo. Un altro operaio è riuscito a salvarsi ed è rimasto illeso. La notizia è stata riportata da Pierluigi Vito. Le autorità stanno indagando sulle circostanze dell’incidente.\n\nDue operai sono morti dopo essere caduti da una gru; un terzo è rimasto illeso. Servizio di Pierluigi Vito TG2000. 🔗 Leggi su Tv2000.it © Tv2000.it - Palermo, morti due operai caduti da una gru Tragedia a Palermo, morti due operai caduti da una gru(Adnkronos) – Dramma a Palermo, dove due operai sono morti dopo essere precipitati da una gru. Leggi anche: Incidente sul lavoro a Palermo, due operai morti caduti da una gru Palermo, morti due operai caduti da una gru Temi più discussi: Incidente sul lavoro a Palermo, morti due operai caduti da una gru; Cadono da una gru, morti due operai a Palermo; Incidente sul lavoro a Palermo, morti due operai caduti da una gru; Incidenti sul lavoro: morti un vigile del fuoco in Veneto e due operai in Sicilia, feriti tra Lombardia, Emilia-Romagna e Piemonte. Incidente sul lavoro a Palermo, morti due operai caduti da una gruLa tragedia è avvenuta in via Ruggero Marturano. Un terzo operaio si sarebbe salvato finendo sui copertoni di un negozio di ricambio pneumatici ... tg24.sky.it VIDEO| Tragedia sul lavoro a Palermo, crolla il cestello di una gru: morti due operaiTragedia del lavoro a Palermo, dove due operai sono morti a seguito del crollo di un cestello per lavori edili in via Ruggero Marturano ... dire.it Segui con La Sicilia la diretta testuale di Frosinone-Palermo, calcio d'inizio alle 20.30! - facebook.com facebook Cede il 'braccio' di una gru: morti due operai a Palermo x.com"} diff --git a/Data/1_Bronze_Raw/News_Scrapes/2026-04-10/Raw/raw_gdelt_asset_metals_derivatives.jsonl b/Data/1_Bronze_Raw/News_Scrapes/2026-04-10/Raw/raw_gdelt_asset_metals_derivatives.jsonl new file mode 100644 index 0000000..58a01d5 --- /dev/null +++ b/Data/1_Bronze_Raw/News_Scrapes/2026-04-10/Raw/raw_gdelt_asset_metals_derivatives.jsonl @@ -0,0 +1,7 @@ +{"url": "https://wpdh.com/ixp/854/p/the-4-best-classic-diners-in-new-york-state/", "url_mobile": "", "title": "The Best Classic Diners In New York State", "seendate": "20260410T193000Z", "socialimage": "https://townsquare.media/site/854/files/2026/04/attachment-mixcollage-10-apr-2026-08-08-am-2689.jpg?&q=75&format=natural", "domain": "wpdh.com", "language": "English", "sourcecountry": "United States"} +{"url": "https://www.vermilionstandard.com:443/life/food/new-air-canada-cafe-yvr", "url_mobile": "", "title": "New Air Canada Café at YVR taps into West Coast inspiration", "seendate": "20260410T190000Z", "socialimage": "", "domain": "vermilionstandard.com", "language": "English", "sourcecountry": "Canada"} +{"url": "https://www.oneidadispatch.com/2026/04/10/strawberry-pots/", "url_mobile": "", "title": "Strawberry pot window make for striking , efficient displays", "seendate": "20260410T190000Z", "socialimage": "https://www.oneidadispatch.com/wp-content/uploads/2026/04/Gardening_-_Strawberry_Pots_3_628-1.jpg", "domain": "oneidadispatch.com", "language": "English", "sourcecountry": "United States"} +{"url": "https://www.newsday.com/business/healthgrades-long-island-hospitals-patient-safety-ez30ovxf", "url_mobile": "", "title": "Eight Long Island hospitals rank among the nation best for patient safety", "seendate": "20260410T190000Z", "socialimage": "https://cdn.newsday.com/ace/c:ZjlkYjA5NjktNWM0YS00:ZGI0ZTI4YTQtNjFkZi00/landscape/1280", "domain": "newsday.com", "language": "English", "sourcecountry": "United States"} +{"url": "https://www.investorideas.com/news/2026/main/04101-cpi-inflation-energy-surge-market-impact.asp", "url_mobile": "", "title": "March CPI Surges to 3 . 3 % as Iran War Drives Energy Costs Higher ; What It Means for Investors", "seendate": "20260410T190000Z", "socialimage": "https://www.investorideas.com/images/investorideas-socialmedia.jpg", "domain": "investorideas.com", "language": "English", "sourcecountry": "United States"} +{"url": "https://www.penarthtimes.co.uk/news/26009421.major-airlines-cut-flights-hike-fares-fuel-costs-rise/", "url_mobile": "", "title": "Major airlines cut flights and hike fares as fuel costs rise", "seendate": "20260410T190000Z", "socialimage": "https://www.penarthtimes.co.uk/resources/images/20768302.jpg?type=og-image&xType=0&yType=0", "domain": "penarthtimes.co.uk", "language": "English", "sourcecountry": "United Kingdom"} +{"url": "https://wrco.com/news/2026/04/10/utilities-seek-federal-pause-on-grid-bidding-amid-ai-driven-power-demand", "url_mobile": "", "title": "Utilities seek federal pause on grid bidding amid AI - driven power demand - WRCO", "seendate": "20260410T190000Z", "socialimage": "https://civicmedia.us/wp-content/uploads/2026/04/asseGrant-County-Data-Centers2.jpg", "domain": "wrco.com", "language": "English", "sourcecountry": "United States"} diff --git a/Data/1_Bronze_Raw/News_Scrapes/2026-04-10/Raw/raw_gdelt_macro_central_banks.jsonl b/Data/1_Bronze_Raw/News_Scrapes/2026-04-10/Raw/raw_gdelt_macro_central_banks.jsonl new file mode 100644 index 0000000..e62b63f --- /dev/null +++ b/Data/1_Bronze_Raw/News_Scrapes/2026-04-10/Raw/raw_gdelt_macro_central_banks.jsonl @@ -0,0 +1,10 @@ +{"url": "https://hitsfm.net/business/9a906e8ed2f1be1191aa6d7dc2574e4c", "url_mobile": "", "title": "Business - HITS FM", "seendate": "20260410T190000Z", "socialimage": "https://s3.amazonaws.com/syndication.abcaudio.com/files/2026-04-10/Getty_Strait-of-hormuz_041026.jpg", "domain": "hitsfm.net", "language": "English", "sourcecountry": "United States"} +{"url": "https://www.koratdaily.com/blog.php?id=18542", "url_mobile": "", "title": "3 องค์กรเอกชนโคราชตั้งวงหารือ ยื่นข้อเสนอพยุงธุรกิจ ลดภาระ ปชช . หลังเผชิญวิกฤตพลังงาน | KORATDAILY ONLINE | หนังสือพิมพ์โคราชคนอีสาน", "seendate": "20260410T190000Z", "socialimage": "https://www.koratdaily.com/images-upload/1775844159.jpg", "domain": "koratdaily.com", "language": "Thai", "sourcecountry": "Thailand"} +{"url": "https://globalpunjabtv.com/the-center-agreed-to-the-demand-of-chief-minister-bhagwant-singh-maan/", "url_mobile": "", "title": "ਕੇਂਦਰ ਨੇ ਮੁੱਖ ਮੰਤਰੀ ਭਗਵੰਤ ਸਿੰਘ ਮਾਨ ਦੀ ਮੰਗ ਤੇ ਸਹਿਮਤ ਪ੍ਰਗਟਾਈ - Global Punjab Tv punjabi news", "seendate": "20260410T190000Z", "socialimage": "https://globalpunjabtv.com/wp-content/uploads/2026/04/press-note-image-2-5.jpeg", "domain": "globalpunjabtv.com", "language": "Punjabi", "sourcecountry": "India"} +{"url": "https://www.kacu.org/2026-04-10/inflation-surges-to-highest-level-in-nearly-2-years-as-energy-costs-spike", "url_mobile": "https://www.kacu.org/2026-04-10/inflation-surges-to-highest-level-in-nearly-2-years-as-energy-costs-spike?_amp=true", "title": "Inflation surges to highest level in nearly 2 years as energy costs spike", "seendate": "20260410T190000Z", "socialimage": "http://npr-brightspot.s3.amazonaws.com/8a/88/04f517584d3c86cbe59e03de8829/gettyimages-2270119940.jpg", "domain": "kacu.org", "language": "English", "sourcecountry": "United States"} +{"url": "https://wgme.com/news/nation-world/trump-summons-banking-chiefs-for-a-closed-door-meeting-about-an-ai-model-report-jerome-powell-scott-bessent", "url_mobile": "", "title": "Trump summons banking chiefs for a closed - door meeting about an AI model : report", "seendate": "20260410T190000Z", "socialimage": "https://wgme.com/resources/media2/16x9/5891/1320/0x307/90/4ed63352-c617-44a9-b145-b1935fcd281e-GettyImages2270096602.jpg", "domain": "wgme.com", "language": "English", "sourcecountry": "United States"} +{"url": "http://www.em.com.br/economia/2026/04/7394973-por-que-governo-trump-voltou-a-atacar-o-pix-e-o-que-eua-podem-fazer-contra-ele.html", "url_mobile": "https://www.em.com.br/economia/2026/04/amp/7394973-por-que-governo-trump-voltou-a-atacar-o-pix-e-o-que-eua-podem-fazer-contra-ele.html", "title": "Por que governo Trump voltou a atacar o Pix ( e o que EUA podem fazer contra ele )? ", "seendate": "20260410T190000Z", "socialimage": "https://midias.em.com.br/_midias/jpg/2026/04/10/0dc74ec0-3436-11f1-9d5c-8ba507d7dbde-66013210.jpg", "domain": "em.com.br", "language": "Portuguese", "sourcecountry": "Brazil"} +{"url": "https://1037qcountry.com/news/030030-soaring-gas-prices-leads-to-biggest-monthly-inflation-spike-in-four-years-in-march/", "url_mobile": "", "title": "Soaring gas prices leads to biggest monthly inflation spike in four years in March", "seendate": "20260410T190000Z", "socialimage": "https://news.sagacom.com/wp-content/blogs.dir/3/files/2026/04/AP26098003992706-620x400.jpg", "domain": "1037qcountry.com", "language": "English", "sourcecountry": "United States"} +{"url": "https://www.elsiglodetorreon.com.mx/noticia/2026/precio-del-dolar-hoy-viernes-10-de-abril-peso-mexicano-perfila-su-mejor-semana-en-un-ano.html", "url_mobile": "", "title": "Precio del dólar hoy viernes 10 de abril : peso mexicano perfila su mejor semana en un año", "seendate": "20260410T190000Z", "socialimage": "https://tecolotito.elsiglodetorreon.com.mx/i/2026/04/2000143.jpeg", "domain": "elsiglodetorreon.com.mx", "language": "Spanish", "sourcecountry": "Mexico"} +{"url": "https://www.risk.net/markets/7963346/the-swap-futures-comeback", "url_mobile": "", "title": "The swap futures comeback - Risk . net", "seendate": "20260410T190000Z", "socialimage": "https://www.risk.net/sites/default/files/styles/metatag_image_large_webp/public/2026-04/Eris-comeback-GettyImages-516173866.jpg.webp?itok=VlcNj_xH", "domain": "risk.net", "language": "English", "sourcecountry": "United Kingdom"} +{"url": "https://abc30.com/post/prices-surged-march-oil-shock-set-off-iran-war/18865879/", "url_mobile": "", "title": "Prices surged in March after oil shock set off by Iran war", "seendate": "20260410T190000Z", "socialimage": "https://cdn.abcotvs.com/dip/images/18856581_LA-Gas-Prices-img.png", "domain": "abc30.com", "language": "English", "sourcecountry": "United States"} diff --git a/Data/1_Bronze_Raw/News_Scrapes/2026-04-10/Raw/raw_gdelt_macro_geopolitics_risk.jsonl b/Data/1_Bronze_Raw/News_Scrapes/2026-04-10/Raw/raw_gdelt_macro_geopolitics_risk.jsonl new file mode 100644 index 0000000..e52d366 --- /dev/null +++ b/Data/1_Bronze_Raw/News_Scrapes/2026-04-10/Raw/raw_gdelt_macro_geopolitics_risk.jsonl @@ -0,0 +1,9 @@ +{"url": "https://www.zonebourse.com/actualite-bourse/le-dollar-s-affaiblit-avec-l-anticipation-de-pourparlers-sur-le-moyen-orient-ce7e50d9db8dfe23", "url_mobile": "", "title": "Le dollar saffaiblit avec lanticipation de pourparlers sur le Moyen - Orient", "seendate": "20260410T190000Z", "socialimage": "https://www.zonebourse.com/images/twitter_ZB_fdblanc.png", "domain": "zonebourse.com", "language": "French", "sourcecountry": "France"} +{"url": "https://mignews.com/news/technology/severnaya-koreya-sozdala-elektromagnitnuyu-bombu.html", "url_mobile": "", "title": "Северная Корея создала электромагнитную бомбу | MigNews - Новости Израиля и Мира на русском языке", "seendate": "20260410T190000Z", "socialimage": "https://mignews.com/media/cache/c3/c7/c3c77070ff24a6d343469d6f9f3a459a.jpg", "domain": "mignews.com", "language": "Russian", "sourcecountry": ""} +{"url": "https://www.sunstar.com.ph/davao/vp-sara-questions-pbbm-on-aid-amid-energy-crisis", "url_mobile": "https://www.sunstar.com.ph/amp/story/davao/vp-sara-questions-pbbm-on-aid-amid-energy-crisis", "title": "VP Sara Challenges Marcos on Aid Amid 2026 Energy Crisis", "seendate": "20260410T190000Z", "socialimage": "https://media.assettype.com/sunstar%2F2026-04-10%2Ftg1rk4ba%2FInspire-Inclusion-1.png?&ar=40%3A21&auto=format%2Ccompress&ogImage=true&mode=crop&enlarge=true&overlay=false&overlay_position=bottom&overlay_width=100", "domain": "sunstar.com.ph", "language": "English", "sourcecountry": "Philippines"} +{"url": "https://hitsfm.net/business/9a906e8ed2f1be1191aa6d7dc2574e4c", "url_mobile": "", "title": "Business - HITS FM", "seendate": "20260410T190000Z", "socialimage": "https://s3.amazonaws.com/syndication.abcaudio.com/files/2026-04-10/Getty_Strait-of-hormuz_041026.jpg", "domain": "hitsfm.net", "language": "English", "sourcecountry": "United States"} +{"url": "https://www.novosti.rs/planeta/svet/1596010/uskoro-cemo-saznati-tramp-otkrio-kad-biti-poznato-pregovori-sad-irana-biti-uspesni-punimo-brodove-najboljim-oruzjem", "url_mobile": "https://www.novosti.rs/amp/planeta/svet/1596010/uskoro-cemo-saznati-tramp-otkrio-kad-biti-poznato-pregovori-sad-irana-biti-uspesni-punimo-brodove-najboljim-oruzjem", "title": " USKORO ĆEMO SAZNATI Tramp otkrio kad će biti poznato da li će pregovori SAD i Irana biti uspešni : Mi punimo brodove najboljim oružjem", "seendate": "20260410T190000Z", "socialimage": "https://www.novosti.rs/data/images/2026-04-07/687584_tan2026-04-0622453721-5_f.jpg", "domain": "novosti.rs", "language": "Serbian", "sourcecountry": "Serbia"} +{"url": "http://www.shanghainews.net/news/278975895/china-sees-solid-rise-in-cross-border-travel-in-q1-with-foreign-national-trips-surging", "url_mobile": "", "title": "China sees solid rise in cross - border travel in Q1 , with foreign national trips surging", "seendate": "20260410T190000Z", "socialimage": "https://image.chitra.live/api/v1/wps/41e8625/84e7f982-1d32-48b3-a136-2c318225db5a/0/XxjwshE000114-20260410-CBMFN0A001-600x315.jpg", "domain": "shanghainews.net", "language": "English", "sourcecountry": "China"} +{"url": "https://udn.com/news/story/7270/9433920", "url_mobile": "https://udn.com/news/amp/story/7270/9433920", "title": "亞洲最新隱奢海島誕生 ! Club Med沙巴度假村開訂 4天3夜2萬起全包 | 流行消費 | 生活", "seendate": "20260410T190000Z", "socialimage": "https://uc.udn.com.tw/photo/t3/2026/04/10/34843622.jpg", "domain": "udn.com", "language": "Chinese", "sourcecountry": "Taiwan"} +{"url": "https://www.bankingnews.gr/diethni/articles/867952/synexizoun-na-eksoplizoun-tous-egklimaties-i-germania-paredose-5-tethorakismena-oximata-mediguard-stin-ethnofroura-tis-oukranias", "url_mobile": "", "title": "Συνεχίζουν να εξοπλίζουν τους εγκληματίες - Η Γερμανία παρέδωσε 5 τεθωρακισμένα οχήματα MEDIGUARD στην Εθνοφρουρά της Ουκρανίας", "seendate": "20260410T190000Z", "socialimage": "https://www.bankingnews.gr/media/k2/items/cache/68360f82a059c51093305359b4a5ece3_XL.jpg", "domain": "bankingnews.gr", "language": "Greek", "sourcecountry": "Greece"} +{"url": "https://www.cravenherald.co.uk/news/national/26012377.airports-warn-systemic-jet-fuel-shortage-strait-hormuz-stays-closed/", "url_mobile": "", "title": "Airports warn of systemic jet fuel shortage if Strait of Hormuz stays closed", "seendate": "20260410T190000Z", "socialimage": "https://www.cravenherald.co.uk/resources/images/20771955.jpg?type=og-image", "domain": "cravenherald.co.uk", "language": "English", "sourcecountry": "United Kingdom"} diff --git a/Data/1_Bronze_Raw/News_Scrapes/2026-04-10/Raw/raw_gdelt_macro_yields_dollar.jsonl b/Data/1_Bronze_Raw/News_Scrapes/2026-04-10/Raw/raw_gdelt_macro_yields_dollar.jsonl new file mode 100644 index 0000000..93b44d6 --- /dev/null +++ b/Data/1_Bronze_Raw/News_Scrapes/2026-04-10/Raw/raw_gdelt_macro_yields_dollar.jsonl @@ -0,0 +1,9 @@ +{"url": "https://www.saultstar.com:443/opinion/iran-ceasefire-brings-relief-not-resolution", "url_mobile": "", "title": "Iran ceasefire brings relief , not resolution", "seendate": "20260410T190000Z", "socialimage": "", "domain": "saultstar.com", "language": "English", "sourcecountry": "Canada"} +{"url": "https://baijiahao.baidu.com/s?id=1861955604405523399", "url_mobile": "", "title": "产教融合背景下AI赋能产业创新人才培养新路径探析", "seendate": "20260410T190000Z", "socialimage": "", "domain": "baijiahao.baidu.com", "language": "Chinese", "sourcecountry": "China"} +{"url": "https://www.elmorrocotudo.cl/noticia/deporte/nicolas-jarry-arrasa-en-madrid-no-cede-sets-y-ya-esta-en-semifinales-del-challenger", "url_mobile": "", "title": "Nicolás Jarry arrasa en Madrid : no cede sets y ya está en semifinales del Challenger", "seendate": "20260410T190000Z", "socialimage": "https://cdn.elmorrocotudo.cl/sites/elmorrocotudo.cl/files/imagecache/opengraph/imagen_noticia/jarry_challenger_edit_v2.png", "domain": "elmorrocotudo.cl", "language": "Spanish", "sourcecountry": "Chile"} +{"url": "https://www.finanzen.net/nachricht/rohstoffe/rohstoffpreise-am-freitagabend-15604785", "url_mobile": "", "title": "Rohstoffpreise am Freitagabend", "seendate": "20260410T190000Z", "socialimage": "https://images.finanzen.net/mediacenter/unsortiert/oelpreis-gopixa-0069.jpg", "domain": "finanzen.net", "language": "German", "sourcecountry": "Germany"} +{"url": "https://www.ilgiorno.it/varese/cronaca/arcisate-malore--guida-trattore-79enne-condizioni-disperate-764da021", "url_mobile": "", "title": "Arcisate , ha un malore mentre guida il trattore nei campi : 79enne in condizioni disperate", "seendate": "20260410T190000Z", "socialimage": "https://www.ilgiorno.it/image-service/view/acePublic/alias/contentid/ZGNhZTVhM2UtMDEyZC00/0/il-trattore-contro-il-mure-di-confine-l-uomo-e-gravissimo-in-ospedale.jpg?f=16:9", "domain": "ilgiorno.it", "language": "Italian", "sourcecountry": "Italy"} +{"url": "https://www.pressdemocrat.com/2026/04/09/keyboards-and-keyboard-covers-that-make-typing-with-long-nails-a-breeze/", "url_mobile": "", "title": "Keyboards and keyboard covers that make typing with long nails a breeze", "seendate": "20260410T190000Z", "socialimage": "https://www.pressdemocrat.com/wp-content/uploads/2026/04/keyboards-keyboard-covers-for-long-nails-new-ajkshdb-46a21b.jpg", "domain": "pressdemocrat.com", "language": "English", "sourcecountry": "United States"} +{"url": "https://www.wallstreet-online.de/nachricht/20716512-schwellenlaender-rallye-voraus-trotz-krieg-indiens-aktienfonds-kapital-anziehen", "url_mobile": "", "title": "Schwellenländer - Rallye voraus ?: Trotz Krieg : Warum Indiens Aktienfonds jetzt plötzlich Kapital anziehen | wallstreetONLINE", "seendate": "20260410T190000Z", "socialimage": "https://assets.wallstreet-online.de/_media/22490/size_645/585472229.webp", "domain": "wallstreet-online.de", "language": "German", "sourcecountry": "Germany"} +{"url": "https://www.wallstreet-online.de/nachricht/20718345-konter-anthropic-ki-wettrennen-eskaliert-openai-rivalen-druck", "url_mobile": "", "title": "Konter gegen Anthropic : KI - Wettrennen eskaliert : OpenAI setzt Rivalen unter Druck | wallstreetONLINE", "seendate": "20260410T190000Z", "socialimage": "https://assets.wallstreet-online.de/_media/22490/symbolbilder/size_645/554045489.webp", "domain": "wallstreet-online.de", "language": "German", "sourcecountry": "Germany"} +{"url": "https://www.zazoom.it/2026-04-10/palermo-morti-due-operai-caduti-da-una-gru/18980070/", "url_mobile": "", "title": "Palermo morti due operai caduti da una gru", "seendate": "20260410T190000Z", "socialimage": "https://www.tv2000.it/tg2000/wp-content/uploads/sites/16/2026/04/0-145.jpg", "domain": "zazoom.it", "language": "Italian", "sourcecountry": "Italy"} diff --git a/Data/1_Bronze_Raw/News_Scrapes/2026-04-12/Full_text/full_text_asset_metals_derivatives.jsonl b/Data/1_Bronze_Raw/News_Scrapes/2026-04-12/Full_text/full_text_asset_metals_derivatives.jsonl new file mode 100644 index 0000000..0283e80 --- /dev/null +++ b/Data/1_Bronze_Raw/News_Scrapes/2026-04-12/Full_text/full_text_asset_metals_derivatives.jsonl @@ -0,0 +1,6 @@ +{"url": "https://tech.ifeng.com/c/8sGYfvCKmod", "title": "DeepSeek , 该卸下扫地僧的枷锁了", "publish_date": "2026-04-12T14:43:52Z", "full_text": "我每次翻《天龙八部》,翻到少林寺藏经阁那一段,都要停下来。\n\n萧远山、萧峰父子对上慕容博、慕容复父子,鸠摩智再从旁搅局,三十年的血海深恨搅在一处,眼看就要分出生死。就在这当口,一个枯瘦的扫地僧走了出来。\n\n萧峰的降龙十八掌打在他身上,他虽受内伤吐血,却以浑厚内力生生受之;他举手投足间让慕容博陷入「假死」复又救活,这种生死由心的境界,令在场一众顶尖高手莫不震慑失语。\n\n这一刻,谁强谁弱,答案不言而喻。\n\nAI 圈最近几年,流行把 DeepSeek(深度求索)比作这位老僧。在所有人眼里,AI 赛道的格局早已注定,海外有御三家,国内有大厂和彼时风头正盛的 AI 六小虎,轮不到旁人来置喙。\n\n结果一家做量化交易出身的中国公司,悄没声儿地走出来,用一套从天而降的招法,在各项核心评测上与这帮人正面交手,打得有来有回。\n\n只是,扫地僧出场,是《天龙八部》行将收尾的时刻。他的使命是终结纷争、化解戾气,然后全书走向尾声。可大模型的故事,没有尾声,也没有终章,只有下一回,还有下下一回。\n\n把 DeepSeek 比作扫地僧,是对它过去的最高赞誉,但如果这三个字正在慢慢变成困住它的枷锁,我倒觉得,赞誉和催命符,有时候只在一念之间。\n\n扫地僧是怎么练成的\n\n金庸写扫地僧,从来不正面写他的功夫。他写的是别人的反应,萧峰愣了,慕容复愣了,旁观的人也愣了。高手的境界,要从旁人失语的瞬间才能传递出来。\n\nDeepSeek 的故事,也暗合这个逻辑。\n\n作为杭州的一家对冲基金,外人提到幻方量化,第一反应是期货、是算法交易、是数学天才们盯着屏幕上跳动的数字。这和 AI 大模型,八竿子打不着,却悄悄把一批工程师和研究员聚在一起做大模型。\n\n2023 年 11 月,他们发布首个开源代码大模型 DeepSeek Coder,后续拿出了一个 67B 的语言模型。在官方给出的多项评测中,67B 超过了 LLaMA2 70B,67B Chat 在部分中文和开放式评测中优于 GPT 3.5。只是,圈内少数几个消息灵通的人注意到了,大多数人没注意到。扫地僧还在扫地,少林寺的人都在忙着练少林长拳。\n\n让其开始崭露头角,是 2024 年 5 月 7 日发布的 V2。V2 用的是 MoE(混合专家)架构,总参数 2360 亿,但每次推理实际激活的只有 210 亿。与此同时,V2 首次采用了 MLA(多头潜在注意力)机制,大幅压缩了推理时的显存占用。\n\n两相叠加,让模型在同等效果下,跑得更快,花得更少。用金庸的话来说,这叫以柔克刚,以精妙的内功路数,弥补了真气总量上的不足。\n\n但砸出最大水花的,是定价。V2 的 API 定价,每百万 token 输入 1 元,输出 2 元。GPT-4 Turbo 当时是它的七十倍,Meta 的 Llama3 70B 是它的七倍。一块钱,一百万个 token,大约相当于一本《三国演义》的字数。\n\n这个价格摆出来,让整个国内大模型市场为之色变。当月,字节、阿里、百度、腾讯、讯飞、智谱,一家接一家跳出来宣布降价,最高降幅 97%,部分轻量级模型直接免费开放。\n\n一场持续了大半年的价格战,就这么被 DeepSeek 的一句定价点燃了。那时候,业内给 DeepSeek 送了个外号,价格屠夫。\n\n美国的半导体咨询公司 SemiAnalysis 在那段时间写了一篇分析,说这家公司有可能成为 OpenAI 的对手,也有可能碾压其他开源大模型。当时读到这句话的人,大概有一半觉得是危言耸听。一年多以后回头看,没有人再觉得是危言耸听了。\n\n2024 年末的 V3 和 2025 年初的 R1,则是连续出手的两招,把对手打得目瞪口呆。DeepSeek 用极低的投入,打出了旗鼓相当的效果。\n\n更让人震惊的是参与人数,139 名工程师和研究人员完成了这个项目,而 OpenAI 同期有 1200 名研究人员,Anthropic 有 500 名。Meta 超级智能实验室负责人亚历山大·王后来说了一句被广泛流传的话,当美国人休息时,他们在工作,而且以更便宜、更快、更强的产品追上我们。\n\n紧接着便是是 R1,主打深度推理,数学、代码、逻辑,在相当多的测试维度上与 OpenAI o1 不落下风,训练方法用的是 GRPO 强化学习,靠让模型自己想清楚来提升推理能力。\n\n最要紧的一步是开源。\n\nR1 的开源,被广泛解读为一种慷慨。模型权重、技术论文、训练细节全部公开,全球开发者共享成果。这套叙事里,DeepSeek 是那个敞开藏经阁大门的人,路不拾遗,人人可进。\n\n武功秘籍直接摆桌上,谁想学谁来拿的这一手,也打破了少数几家巨头对前沿模型的垄断,让全球数以万计的中小开发者有了和顶尖模型掰手腕的资格。\n\n金庸写扫地僧,主要抓住几样东西,出身边缘、多年隐匿、一鸣惊人、技法精绝、胸怀坦荡。DeepSeek V2 的价格屠刀、V3 的成本奇迹、R1 的开源普惠,也让人们在 DeepSeek 身上,真真切切地看见了那个老僧的影子。\n\n枷锁,以及枷锁之后\n\n但武侠小说是会结束的,AI 赛道不会。\n\n每次我写 DeepSeek 的文章,底下的评论区都像藏经阁又打了一场架。有人说它安安静静做产品,不收费、不立人设,能用就用,这才是正道。有人说它连国产其他巨头都未必打得过,已经无法搅局。\n\n有人替它抱不平,有人觉得它早就该被淘汰。更有人说,「我们一直以来都没把 DeepSeek 当作优等生,而是当作扫地僧,真心希望它能如我们所愿」,这句话说得又期待,又带着一丝说不清楚的悲凉。\n\n意见如此撕裂,本身就说明了一件事。DeepSeek 所受到的关注,早已超出了一家普通 AI 公司应有的体量。捧它的人把它捧上神坛,骂它的人把它踩进泥里,没有几家公司能在舆论场里同时承受这两种极端。\n\n这篇文章大概也逃不过同样的命运,有人会说这是黑稿,有人会说这是 PR 稿,落个两头不讨好。但这无所谓,舆论从来都是这样,藏经阁里打架,不管谁赢,总有人不服。\n\n说回正题,扫地僧出场那一幕,是《天龙八部》收尾的信号。他出手,纷争平息,故事逐渐走向终章。这个叙事结构,似乎天然就带着一种大结局的气息,英雄横空出世,一招定乾坤,从此江湖太平。\n\n根据《创智记》援引知情人士消息称,按照创始人梁文锋在内部透露的时间,DeepSeek V4 将于四月下旬正式发布。\n\n爽文里的主角,每一章都要有突破,读者翻到下一页,期待的永远是更大的惊喜。\n\nV3 和 R1 用四两拨千斤的逻辑征服了世界,大众于是开始把它当成 DeepSeek 的固定输出,每一次出手都必须让硅谷巨头血溅千里,都必须让英伟达的股价抖一抖。V4 也应当如此。\n\n可在这等待一年多的时间里,外界等得有些躁动,各路声音都出来了,说一拖再拖,是不是黔驴技穷了,扫地僧要不行了?说这话的人认为 DeepSeek 理应每次出手都是奇迹,一旦慢了半拍,便是江郎才尽。\n\n慢,自然有慢的原因。\n\n3 月 29 日,DeepSeek 的服务器崩了将近十三个小时,创下网页端和 App 平台上线以来最长中断纪录。连续的服务事故暴露了 DeepSeek 在运维监控、应急预案和灾备机制上的明显短板,也给整个 AI 行业敲响警钟。\n\n当然,综合各家报道来看,V4 一再推迟的原因,还藏在芯片层面。\n\nV3 和 R1 的成功,一定程度上建立在成熟的英伟达 CUDA 生态上,DeepSeek 的工程师们在工具完备、文档详尽、社区活跃的环境里,把算法效率一点一点榨到了极限,每一步都踩得踏实。\n\nV4 要做的事,是把这套功夫移植到国产 AI 芯片上。工具链还在快速迭代,底层接口和 CUDA 差异巨大,分布式训练框架几乎需要从头重构。\n\nDeepSeek 交出的答卷,如果是在受限条件下做出来的,这让它的每一分成绩,都带着额外的含金量。哪怕梁文锋愿意为这件事多拖几个月,也是一笔非常划算的决策。\n\n至于 V4 本身,《创智记》报道称,技术重心据悉落在了 LTM(长期记忆)能力的突破上,同时将原生多模态从底层融入架构,文字和视觉在预训练阶段就融合在一起。\n\n另一个值得关注的变化,是梁文锋本人的注意力在悄悄转移。尽管在过去的一年里,包括 R1 的核心作者郭达雅在内的部分 DeepSeek 核心骨干陆续离职,不过根据《晚点 LatePost》的观察,DeepSeek 的人才基本盘依然稳固,并未出现大规模的人才流失现象。\n\n进入 2025 年下半年,梁文锋也愈发看重技术的商业落地与产品化进程,积极招募负责 Agent 领域的策略产品经理。与此同时,他正在为公司启动估值,给员工的期权一个明确的锚点,让团队对未来有更清晰的预期。\n\n综合上述种种动向不难得出一个结论:曾经心无旁骛盯着 AGI 的 DeepSeek 也得开始面对一家成熟科技公司必须面对的那些现实:商业闭环、生态建设、可持续的收入来源。\n\n扫地僧可以几十年不问江湖俗事,守着藏经阁一扫到底,一家公司,没有这个选项。\n\n《笑傲江湖》里的令狐冲凭着独孤九剑可以破尽天下武功,但当他真正坐镇恒山派,每天迎来送往,护佑门人,一招鲜远远不够,他需要的是内政、是人心、是香火代代相传的根基。奇招,解决不了日常的柴米油盐。\n\n因此,我们应该主动帮 DeepSeek 卸下「扫地僧」这个名号。这三个字是对过去的最高褒奖,却是对未来的过重负担。即便 V4 发布时没有断崖式的领先,只是一款 LTM 扎实、多模态原生融合、各项指标均衡的水桶机。\n\n从产业的角度看,这依然是巨大的成功,成功在于它或许将证明 DeepSeek 有能力从一个创造奇迹的挑战者,变成一个稳定交付的基础设施提供者。\n\n有意思的是,这件事或许本来就是双向的。《晚点 LatePost》此前的报道里,DeepSeek 对外的沟通姿态明显比以往克制,既没有大张旗鼓地预热,也没有放出足以吊足胃口的技术信号。\n\n这种低调,很难说是无意为之。\n\n他们比任何人都清楚,扫地僧这三个字背后悬着什么。每一次出手若不能再掀翻整张牌桌,舆论的落差就会被无限放大。这是一种预期管理,也是一种自我解绑——他们同样不想再背着这个包袱走下去。\n\n▲AI 模型的世界,已经从少数几家机构的专属游戏,变成了全球开发者共同参与的基础设施建设,而且这个趋势还在加速。\n\n而话说回来,当舆论都在一窝蜂盯着 DeepSeek,却少有人往旁边多看一眼。\n\n这片江湖里,国内每一家 AI 都在苦修内功,押注多模态、Agent 生态、算力布局,也都在各自的赛道上走出了自己的路数。\n\nDeepSeek 固然是那个最让人心跳加速的名字,但把眼光只锁死在它一家身上,未免看窄了这个时代。真正让天龙八部成为天龙八部的,是那一整代人各有来路,各有绝学,彼此激荡,才撑起了那个波澜壮阔的时代。\n\n扫地僧的传说,止于藏经阁那一战,藏经阁外,才是真的江湖。"} +{"url": "https://www.swindonadvertiser.co.uk/news/26014087.major-airlines-cut-flights-hike-fares-fuel-costs-rise/", "title": "Major airlines cut flights and hike fares as fuel costs rise", "publish_date": "2026-04-12T14:43:52Z", "full_text": "The ongoing conflict in the Middle East between the US, Israel, and Iran has resulted in a recent spike in fuel prices.\n\nSeveral major airlines have already responded to this spike by increasing fares, adding or increasing fuel surcharges, and cutting flights.\n\nUK airline Skybus announced last week it had ceased all flights between Cornwall and London due to \"the huge rise in the global cost of fuel\" and \"a significant drop in new passenger bookings\".\n\nRyanair CEO Michael O'Leary also warned Brits to book their summer holidays “as quickly as you can” to avoid rising costs, due to the ongoing Middle East conflict.\n\nMore major airlines cut flights and increase prices amid rising fuel costs\n\nThree more major airlines have now cut flights and increased prices due to the rising cost of fuel caused by the ongoing conflict in the Middle East:\n\nAir India\n\nAir India this week announced it was increasing its fuel surcharge on domestic and international flights.\n\nThese revised fees came into effect for UK flights on Friday (April 10), although the airline assured passengers who have already booked tickets will be unaffected by the change.\n\nAir India said: \"For the avoidance of doubt, tickets that have already been issued prior to the above times will not attract the new surcharge unless customers seek date or itinerary changes that require a recalculation of the fare.\n\n\"Air India will review its surcharges periodically and make appropriate adjustments as the situation requires.\"\n\nAir India announced this week it was increasing its fuel surcharge. (Image: Getty Images)\n\nAir India usually operates more than 60 weekly flights between India and the UK, connecting cities like Delhi, Mumbai, Bengaluru, Ahmedabad, and Amritsar to London (Heathrow and Gatwick) and Birmingham.\n\nAir New Zealand\n\nAir New Zealand has been forced to cancel more flights due to the conflict in the Middle East, with routes in and out of Auckland, Wellington, and Christchurch impacted, according to the BBC .\n\nAirlines cut flights and hike fares as fuel prices surge https://t.co/p1uad5gOHk — BBC News (UK) (@BBCNews) April 7, 2026\n\nThese flight cancellations follow several others made by the airline last month.\n\nHowever, Air New Zealand said earlier this week that the \"vast majority\" of its customers affected by the cancellations were being offered alternative flights on the same day.\n\nAn airline spokesperson, via the BBC, said: \"Like airlines globally, we're experiencing jet fuel prices that are more than double what they would usually be.\"\n\nAir New Zealand serves the UK through a combination of codeshare partner flights and booking options from Heathrow and Manchester.\n\nIt works with partner airlines, including Singapore Airlines, British Airways, and United Airlines, to connect passengers via major hubs.\n\nDelta Airlines\n\nDelta Airlines also announced this week that it was cutting back the number of seats on its flights due to the rising fuel costs, The Independent reported.\n\nThe Airline, which operates numerous daily nonstop flights from London Heathrow (LHR), London Gatwick (LGW), and Edinburgh (EDI) to various US destinations, has already increased the price of its checked bag fee by US$10 (£7.45).\n\nNow, reduced seat numbers on Delta flights could result in airfare prices rising.\n\nThe 3 airlines that have entered liquidation or administration in 2026 (so far)\n\nSeveral airlines entered liquidation in 2025, according to the UK Civil Aviation Authority , including:\n\nBlue Islands Limited (UK) - November\n\nAir Kilroe Limited t/a Eastern Airways (UK) - November\n\nPlay Airlines (Iceland) - September\n\nThree airlines have entered administration or liquidation in 2026 (so far), resulting in the cancellation of more than 4,000 flights:\n\nMeanwhile, fellow chartered carrier Legend Airlines (Romania) has reportedly shut down.\n\nThe Street reported the airline has \"officially gone dormant\" after retiring two of its A340 planes.\n\nUK travel companies that have closed in 2026 (so far)\n\nFour UK travel companies have also ceased trading in 2026, resulting in the cancellation of flights and holiday packages to destinations around the world.\n\nThe four UK travel companies that have closed down in 2026 (so far) are:\n\nRegen Central Ltd\n\nGold Crest Holidays\n\nAsiara UK Ltd\n\nSimply Florida Travel Ltd\n\nAll four have ceased trading, according to Companies House, and have lost their Air Travel Organiser's Licence (ATOL).\n\nHave you been impacted by the recent flight cancellations or airfare price hikes caused by increased fuel prices? Let us know in the poll above or in the comments below."} +{"url": "http://www.prnewswire.com/news-releases/earth-day-sale-15-off-organic-mattresses-and-bedding-at-my-green-mattress-302736499.html", "title": "Earth Day Sale : 15 % Off Organic Mattresses and Bedding at My Green Mattress", "publish_date": "2026-04-12T14:43:52Z", "full_text": "CHICAGO, April 8, 2026 /PRNewswire/ -- In celebration of Earth Day, My Green Mattress is offering 15% off sitewide from April 10 through April 28. With no exclusions, customers can save on organic mattresses, bedding, mattress toppers, mattress protectors, and more—making it the perfect time to invest in healthier, more sustainable sleep.\n\nNo code is needed; the discount is automatically applied at checkout. Shop the sale.\n\n15% Discount on Organic Mattresses\n\nMy Green Mattress crafts each product using certified GOTS organic cotton and wool, along with GOLS certified organic latex, creating a sleep surface that is breathable, temperature-regulated, and free from harmful chemicals. Their signature 7-zone pocketed coil system provides targeted support, enhanced contouring, and reinforced edge support for a more restorative night's sleep.\n\nFrom adults looking to upgrade their sleep to parents seeking safer options for their children, My Green Mattress offers a full range of organic sleep solutions for the entire family—including crib mattresses, kids mattresses, and luxury options for master bedrooms. See their full range of organic mattress options.\n\nWhy Choose My Green Mattress?\n\nMade in the USA: Every mattress is handcrafted in the USA using high-quality materials and responsible manufacturing practices.\n\nEvery mattress is handcrafted in the USA using high-quality materials and responsible manufacturing practices. Certified organic & non-toxic: Products are GOTS and GOLS certified, MadeSafe® certified, and Greenguard Gold certified—free from harmful chemicals, flame retardants, and VOCs.\n\nProducts are GOTS and GOLS certified, MadeSafe® certified, and Greenguard Gold certified—free from harmful chemicals, flame retardants, and VOCs. Sustainable materials: My Green Mattresses are built with renewable, responsibly sourced materials that are better for both you and the environment.\n\nMy Green Mattresses are built with renewable, responsibly sourced materials that are better for both you and the environment. 365-night risk-free trial: Try it for a full year with confidence. If it's not the right fit, return it for a full refund.\n\nThis Earth Day, small choices can make a big impact. Switching to an organic mattress is one of the simplest ways to reduce your exposure to toxins while supporting more sustainable manufacturing practices. With 15% off sitewide, there's never been a better time to make the change.\n\nSOURCE My Green Mattress"} +{"url": "https://www.etftrends.com/tactical-allocation-content-hub/gold-volatility-amid-geopolitical-crises-history-tells/", "title": "Gold Volatility Amid Geopolitical Crises : What History Tells Us", "publish_date": "2026-04-12T14:43:52Z", "full_text": "Volatility in a Crisis Is Not Unusual\n\nGold’s March performance surprised many investors. Despite a sharp escalation in geopolitical tensions, gold prices pulled back after briefly retesting record highs. That kind of price action may seem counterintuitive, but it is not unusual in periods of crisis.\n\nGold reached an all-time high of $5,595 per ounce on January 29. Prices pulled back below $5,000 in February but were poised to retest those highs in March as the U.S. and Israel attacked Iran. The attack came on a Saturday and early the following Monday gold moved above $5,400. At that point, it looked like gold was on track to fulfill its role as a safe-haven asset.\n\nHowever, $5,418 marked the monthly high on March 2. What followed was a sharp selloff, gold plummeted $1,319 to a monthly low of $4,099 on March 23 before finishing March at $4,668.06, down $611, or 11.6% for the month. It appears the bottom may be forming, though volatility remains elevated.\n\nWhy Does Gold Fall During Global Uncertainty?\n\nWe understand why investors would be disappointed with gold’s performance during a month of global turmoil. Selling pressure overwhelmed safe-haven demand and central bank buying. That said, this type of price action is not unusual when viewed in a historical context.\n\nGold fell sharply at the onset of the financial crisis in 2008 and again during the early stages of the pandemic in 2020. In both cases, the initial reaction was driven by liquidity needs, rising rates and a stronger U.S. dollar. A similar dynamic was observed after Russia invaded Ukraine in 2022. Crude oil rose above $100 per barrel, contributing to higher interest rates and a stronger dollar, and after a short rally, gold declined by roughly 18%.\n\nWhile each of these periods was shaped by different underlying conditions, they illustrate that gold can experience volatility during the early stages of major global disruptions.\n\nOil, Rates and the Dollar Remain Key Drivers\n\nThe current crisis introduces another oil shock and a new level of geopolitical risk. Higher oil prices have raised inflation concerns and contributed to rising interest rates, a more hawkish Federal Reserve outlook and a stronger U.S. dollar. These forces tend to weigh on gold, particularly in the short term, and can be amplified by systematic and algorithm-driven trading.\n\nAt the same time, gold has delivered strong gains since 2024, so some degree of profit taking should not be surprising. Heavy outflows from bullion ETFs suggest that investors are locking in gains or raising liquidity, and gold can often serve as a source of liquidity during periods of broader market stress.\n\nCentral banks have been an important driver of gold demand, although activity likely slowed during the recent turmoil. Some countries may prioritize liquidity in times of stress. Turkey, for example, reportedly sold or swapped gold in March to support its currency. Several Gulf States have also been among the largest buyers in recent years, and their activity may fluctuate in the near term.\n\nOnce conditions stabilize, central bank demand is likely to normalize. In the meantime, the World Gold Council reports continued buying from countries such as Indonesia, Guatemala and Malaysia, including both new and returning participants. The broader trend of reserve diversification, particularly away from the U.S. dollar, remains intact.\n\nWe find it encouraging that the $4,000 level held despite rising rates, a stronger dollar, ETF outflows and uncertainty around central bank activity. Even after the March selloff, gold remains up $349, or 8.0% year to date.\n\nLooking ahead, once the current conflict runs its course, the global backdrop is likely to return to a familiar baseline of uncertainty. The U.S. continues to face elevated deficits and rising debt service costs, while efforts by many countries to reduce reliance on the dollar are ongoing. Higher oil prices also present risks to economic growth. In that context, the longer-term case for gold remains intact."} +{"url": "https://www.eastbaytimes.com/2026/04/12/horoscopes-april-12-2026-claire-danes-the-timing-is-right-to-branch-out/", "title": "Horoscopes April 12 , 2026 : Claire Danes , the timing is right to branch out", "publish_date": "2026-04-12T14:43:52Z", "full_text": "CELEBRITIES BORN ON THIS DAY: Saoirse Ronan, 32; Claire Danes, 47; David Letterman, 79; Ed O’Neill, 80.\n\nHappy Birthday: Pay attention. Emotional manipulation is apparent and may rob you of your money, reputation or goals if you are compliant. Stand up for yourself, your rights and your abilities. Keep an open mind, but don’t neglect to voice your opinion and to make choices that suit your needs. The timing is right to branch out and to take charge. Follow your heart, set your course and leave regret behind you. Your numbers are 1, 17, 23, 27, 35, 43, 48.\n\nARIES (March 21-April 19): You hold the power of choice. Reach out and take what’s yours, and head in a direction that will soothe your soul and make you feel good about the contributions you make and the outcomes you achieve. Don’t pay for others’ mistakes; choose to use intelligence, not cash, to win your battles, and you’ll far exceed your expectations. 4 stars\n\nTAURUS (April 20-May 20): Refrain from sharing personal or financial information. Someone will monopolize your time and take advantage of you if you let them. Look through every lens and listen intensely. Question what’s possible and get what you want in writing before you commit. Choose your battles wisely. Charm is your weapon; use it fairly and with intelligence. 2 stars\n\nGEMINI (May 21-June 20): Be first to stand up for what’s right. Truth is paramount if you want to maintain your position and reputation. Walk away from gossip and those who tempt you to indulge in excessive behavior. Look for solutions that benefit those in need, and you’ll pave your way to a higher position. Leave nothing to chance or unfinished. 5 stars\n\nCANCER (June 21-July 22): Stop before things get out of hand or run amok. Use your intelligence to navigate your way through conversations that can influence how others perceive you. Check out what’s possible, and put more energy into bringing about positive change. Recognition will be yours if you stand up for others. Speak from the heart. 3 stars\n\nLEO (July 23-Aug. 22): You can’t please everyone, but you can offer validity and tell the truth. Let your voice lead the way, and your passion shine through. An opportunity to share your story or to bring light to a situation will soothe your soul. Gather knowledge and experience, and support will be the byproduct of doing the right thing. 3 stars\n\nVIRGO (Aug. 23-Sept. 22): A change will be uplifting. Take time to clear your mind and assess what’s happening around you. Join forces with like-minded people, and someone you connect with will bring out the best in you. Trust your instincts, and your words and actions will help you bring about positive change. Romance is on the rise. 3 stars\n\nLIBRA (Sept. 23-Oct. 22): What’s familiar is in your best interest. Keep life simple and affordable, and surround yourself with those who support your interests. A partnership will encourage strength and the backup you require to get things done on time. Gauge what’s doable and what isn’t. Put your energy into learning, exploring and incorporating what aids you most into your daily routine. 5 stars\n\nSCORPIO (Oct. 23-Nov. 21): Emotions and impulse will clash if you aren’t careful. Choose your words carefully, and let your wisdom and experience lead the way. Opportunity is apparent, and time is on your side. Be gracious, humble and alert, and you’ll bypass any problems or interference that might cramp your style. Choose peace and progress over uncertainty and chaos. 2 stars\n\nSAGITTARIUS (Nov. 22-Dec. 21): A change of heart will point you in a different direction. Look inward, assess and confront your health, wealth and contractual ties. A change will help clear your head and reframe your future. Home is where the heart is, and comfort will help you find your way forward. Stick to what feels right and works best for you. 4 stars\n\nCAPRICORN (Dec. 22-Jan. 19): Keep your plans simple and affordable. Conversations will carry weight but also give rise to temptation, uncertainty and stress. Step back and consider how you can participate without jeopardizing your health, reputation or emotional well-being. A change of scenery or social networking will offer a unique perspective. Make comfort and peace of mind your goal. 3 stars\n\nAQUARIUS (Jan. 20-Feb. 18): Choose peace. Get your financials on track and a plan in place. Refuse to let your emotions and desires take precedence when it comes to spending and saving. Put your energy into positive change, decluttering your space and life, and discovering what it’s like to live a peaceful, mindful life in an emotionally and financially safe place. 3 stars\n\nPISCES (Feb. 19-March 20): Intelligence and smart moves will save the day. Don’t share too much information or give others a reason to question you. A chance meeting with someone at a social event will lift your spirits and offer insight into options you had yet to consider. Collect your thoughts, rearrange your plans and follow the protocol necessary to forge ahead. 3 stars\n\nBirthday Baby: You are dedicated, loyal and personable. You are passionate and visionary.\n\nStar Ratings Key:\n\n1 star: Avoid conflicts; work behind the scenes.\n\nAvoid conflicts; work behind the scenes. 2 stars: You can accomplish, but don’t rely on others.\n\nYou can accomplish, but don’t rely on others. 3 stars: Focus and you’ll reach your goals.\n\nFocus and you’ll reach your goals. 4 stars: Aim high; start new projects.\n\nAim high; start new projects. 5 stars: Nothing can stop you; go for gold.\n\nVisit Eugenialast.com, or join Eugenia on Instagram/Facebook/LinkedIn.\n\nWant a link to your daily horoscope delivered directly to your inbox each weekday morning? Sign up for our free Coffee Break newsletter at mercurynews.com/newsletters or eastbaytimes.com/newsletters."} +{"url": "https://www.iltempo.it/personaggi/2026/04/12/news/luigi-bisignani-rai-poteri-riforma-governance-lobby-logge-giampaolo-rossi-47241443/", "title": "Rai , in onda il risiko dei poteri tra Bruxelles e Palazzo", "publish_date": "2026-04-12T14:43:52Z", "full_text": "Foto: Il Tempo\n\nLuigi Bisignani 12 aprile 2026 a\n\na\n\na\n\nCaro direttore, finché c’è proroga c’è speranza. Questa volta a beneficiarne potrebbe essere il «piccolo mondo antico» della Rai, il nostro personale Stretto di Hormuz. L’incubo di Viale Mazzini ha un nome e un cognome: European Media Freedom Act. Il regolamento europeo — direttamente applicabile in quanto atto erga omnes — è entrato in vigore l’8 agosto 2025. Ciò significa che l’Italia si trova già in una condizione di ritardo, soprattutto sul fronte della riforma della governance Rai. Il Cda in carica nasce infatti dall’impianto della «legge Renzi», che ha rafforzato il peso del governo nelle nomine e nei conti. Per questo sono in corso trattative riservate tra il governo italiano e Bruxelles, con l’obiettivo di guadagnare ancora tempo ed evitare uno scontro, e si ragiona già su un possibile riassetto normativo — con il coinvolgimento dell’Agcom — per riallineare il sistema ai criteri fissati a livello europeo. Se l’adeguamento non arriverà rapidamente potrebbero aprirsi scenari nefasti anche per gli attuali vertici. In caso di inadempienza, la Commissione europea può avviare una procedura di infrazione, con sanzioni economiche, come già accaduto, ad esempio, per l’Ungheria di Viktor Orbán.\n\nNon è solo una questione di governance. C’è anche un altro nodo: il finanziamento, ai sensi dell’articolo 5. Il regolamento europeo impone che le risorse al servizio pubblico siano assegnate con criteri trasparenti e su base pluriennale, riaprendo così anche il dibattito sul canone. Ed è proprio in queste ore di incertezza che, nello Stretto di Hormuz della Rai — tra Saxa Rubra e via Teulada — si incrociano, come sempre, potere, visibilità, carriere, appalti e storie personali che alimentano, complicano e agitano la giungla del potere nei palazzi romani. E non solo: dalle logge più riservate del Vaticano fino alle grandi aziende pubbliche e a Piazza Dante, affollato condominio di DIS, AISE e AISI, dove le variazioni d’umore di Saxa Rubra sembrano talvolta pesare più di scenari ben più incandescenti. Intuendo la tempesta, ai piani alti c’è chi tenta di definire i palinsesti autunnali prima di un possibile scioglimento, così da «blindare» personaggi e programmi di riferimento almeno fino a gennaio 2027. L’amministratore delegato Giampaolo Rossi, in difficoltà anche per la mancata costruzione di una proposta informativa efficace sui referendum — soprattutto se confrontata con quella, martellante, di La7 — prova a muoversi prima che arrivi il ciclone, tanto da avviare anche una corte serrata per riportare in veste del «figliol prodigo» Nicola Porro in prime time su Rai Uno da Mediaset. Si sussurra che stia immaginando anche una sua possibile via di fuga: una Rai 2 «allargata», capace di accorpare cinema, fiction e documentari in un polo da oltre 500 milioni di euro, di fatto una seconda Rai costruita attorno alla sua figura. Un’ipotesi che però troverebbe forti resistenze sia in Cda — dove lo scontro più acceso è sempre quello tra i due leghisti, il deus ex machina Antonio Marano e Alessandro Morelli, sotto lo sguardo divertito di Simona Agnes — sia in Commissione di Vigilanza, presieduta da Barbara Floridia.\n\nNel frattempo, mentre Rossi valuta le sue opzioni, resta salda la direzione del Tg1 di Gian Marco Chiocci, al netto delle voci che lo vorrebbero a Palazzo Chigi alla guida dell’informazione del governo. Le autocandidature che continuano a circolare — da Francesco Verderami del Corriere della Sera, grande fan della premier, a Incoronata Boccia, considerata vicinissima all’Ad, fino a un grande professionista come Nicola Rao — restano, per ora, senza possibilità di approdo all’ammiraglia Rai, a meno che Chiocci, forte di un gradimento trasversale, non approdi in tempi brevi al vertice aziendale, come già avvenuto con Mario Orfeo. In questo clima, anche pesci più piccoli si agitano in cerca di una nuova collocazione. Al centro del risiko c’è Stefano Coletta: il coordinamento dei generi che guida assomiglia sempre più a una sorta di «DIS» interno, una cabina di regia che tutto vede e tutto controlla, capace di orientare scelte e palinsesti trasversalmente. Non a caso, attorno a lui si immagina un ulteriore rafforzamento del presidio sul prime time, anche a costo di uno spostamento di Williams Di Liberatore verso il daytime. Un prime time che, sotto la sua gestione, ha brillato solo a tratti: tra le eccezioni, Affari tuoi, Stasera tutto è possibile con Stefano De Martino e il franchise The Voice di Antonella Clerici, capace di tenere testa a Maria De Filippi.\n\nSmottamenti anche a Rai Cultura, dove si fa strada Angelo Mellone, finora responsabile del daytime e molto attivo anche sul versante del suo night time, impegnato in una frenetica attività di eventi di ogni tipo. Sul fronte dell’offerta, Rai Italia resta guidata da Maria Rita Grieco, ma cresce l’idea che serva un profilo più orientato al prodotto: tra i nomi circola quello di Gianfranco Zinzilli, oggi alla guida di Rai Radio Digital con risultati solidi. Tra gli outsider si muove Andrea Assenza, vice di Mellone e fedelissimo dell’Ad, che punta alla direzione dei contenuti digitali e transmediali, oggi affidata ad interim a Marcello Ciannamea, tra i dirigenti più solidi per risultati e affidabilità, recentemente investito anche della distribuzione. Solo a valle di questi movimenti si avverte l’agitazione più minuta nelle redazioni — e in particolare a RaiNews24 — dove i pesci piccoli inseguono occasioni e visibilità, in un clima reso più teso dal monitoraggio del Cdr. Emblematico è il caso del vicedirettore Luigi Monfredi: in passato molto aiutato da Paolo Petrecca — finito al centro delle polemiche per il disastro nella giornata inaugurale delle Olimpiadi — al quale, secondo i consueti spifferi interni, avrebbe poi voltato le spalle. Oggi tenta di ritagliarsi spazio riallacciando vecchie relazioni nel centrodestra e in ambienti vaticani ormai fuori gioco, nel tentativo di scalzare Antonio Preziosi, direttore del Tg2 penalizzato negli ascolti. Ed è lo stesso Preziosi a far filtrare l’ipotesi di un possibile approdo in Vaticano come prefetto del Dicastero per la Comunicazione, accreditando — secondo i consueti spifferi — una supposta benedizione del segretario di Stato Pietro Parolin, ma all’insaputa di Papa Leone, con l’obiettivo di scalzare la «coppia d’oro» formata da Paolo Ruffini e Andrea Tornielli.\n\nAnche a RaiSport non si placa il malumore: Giulio Delfino e Riccardo Pescante non si danno ancora pace per la nomina, arrivata con anni di ritardo, di Marco Lollobrigida dopo il tracollo della gestione precedente. Lollobrigida, volto storico e riconosciuto, verrà ratificato nel prossimo, infuocato Cda di giovedì. Ma quando si parla di Rai non si può prescindere dai grandi volti. Come Mara Venier, che a ogni fine stagione torna a evocare l’addio a Domenica In, alimentando le manovre attorno alla sua successione e le tensioni tra gli agenti più influenti, da Caschetto a Presta. Last but not least, Sigfrido Ranucci, da sempre spina nel fianco di tutti i governi da «tele-Renzi» a «tele-Meloni»: per lui si profila una norma che potrebbe costringerlo a smaltire subito le ferie arretrate, mettendo di fatto a rischio il suo ruolo in Report. Intanto si prepara anche la grande rentrée di Piero Marrazzo con «Le verità nascoste», dal titolo tutto un programma in arrivo su Rai3. La sensazione è quella di una Rai in continuo movimento, dove tutto cambia perché nulla cambi davvero. O forse sì."} diff --git a/Data/1_Bronze_Raw/News_Scrapes/2026-04-12/Full_text/full_text_asset_precious_metals_spot.jsonl b/Data/1_Bronze_Raw/News_Scrapes/2026-04-12/Full_text/full_text_asset_precious_metals_spot.jsonl new file mode 100644 index 0000000..0cf2842 --- /dev/null +++ b/Data/1_Bronze_Raw/News_Scrapes/2026-04-12/Full_text/full_text_asset_precious_metals_spot.jsonl @@ -0,0 +1,7 @@ +{"url": "https://www.tgrthaber.com/ekonomi/islam-memisten-altin-ve-konut-icin-pazartesi-uyarisi-artik-zamani-geldi-3294009", "title": "İslam Memiş ten altın ve konut için pazartesi uyarısı ! Artık zamanı geldi", "publish_date": "2026-04-12T14:42:33Z", "full_text": "İSLAM MEMİŞ'TEN ORTA DOĞÜU EKSENİNDE ALTIN YORUMU\n\n\"İki ihtimal vardı. Ya savaşa devam ya tamam. Artık 15 günlük bir ateşkes süreci haberi geldi. Piyasalarda beklenen o tabii ve doğal fiyatlamalar da gerçekleşti.\n\nÖzel Özellikle petrol ve dolar endeksi gerilerken altın, gümüş, euro, Bitcoin, borsalar toparlandı.\n\nAncak haftanın son işlem gününe baktığımız zaman da bu gerilimin halen devam ettiğini, piyasalarda bir rahatlama döneminin olmadığını, biraz daha sakin bir seyirde, yatay bir seyirde kendini beklediğini gözlemliyoruz."} +{"url": "https://www.dostor.org/5503201", "title": "بكام جرام الذهب ؟.. أسعار الذهب اليوم الأحد 12 إبريل 2026", "publish_date": "2026-04-12T14:42:33Z", "full_text": "تستمر أسعار الذهب في مصر في التحرك داخل نطاقات سعرية محدودة، وسط ترقب من المتعاملين لأي تغيرات في الأسواق العالمية أو في سعر صرف الدولار محليًا، ويُعد الذهب من أهم السلع التي تعكس الحالة الاقتصادية بشكل مباشر، حيث يتأثر سعره بعدة عوامل أبرزها سعر الأونصة عالميًا وحركة العملات الأجنبية.\n\nوتشير البيانات الحالية إلى استقرار نسبي في الأعيرة المختلفة مثل 24 و21 و18، مع بقاء الجنيه الذهب عند مستويات مرتفعة. ويظل الذهب الخيار الأول للمواطنين الباحثين عن حفظ القيمة والادخار الآمن في ظل الظروف الاقتصادية المتغيرة.\n\nأسعار الذهب اليوم الأحد 12 إبريل 2026\n\nسعر الذهب عيار 24: شراء 8177 جنيه — بيع 8143 جنيه\n\nسعر الذهب عيار 22: شراء 7496 جنيه — بيع 7464 جنيه\n\nسعر الذهب عيار 21: شراء 7155 جنيه — بيع 7125 جنيه\n\nسعر الذهب عيار 18: شراء 6133 جنيه — بيع 6107 جنيه\n\nسعر الذهب عيار 12: شراء 4088 جنيه — بيع 4072 جنيه\n\nسعر الجنيه الذهب اليوم\n\nالجنيه الذهب: شراء 57240 جنيه — بيع 57000 جنيه\n\nسعر أونصة الذهب اليوم\n\nسعر أونصة الذهب اليوم الأحد: شراء 254333 جنيه — بيع 253276 جنيه\n\nسعر الدولار في البنوك والصاغة اليوم\n\nسعر الدولار اليوم في البنوك: 53.20 جنيه\n\nسعر دولار الصاغة اليوم: 53.54 جنيه\n\nالفرق بين البنك والصاغة: 0.34 جنيه\n\nسعر الفضة: 136.62 جنيه\n\nاقرأ أيضًا\n\nأسعار الذهب اليوم الخميس في السوق المحلي والعالمي (تحديث فوري)\n\nسعر الذهب الآن في السوق المصري؟ تعرف على آخر التفاصيل\n\nسعر الذهب الآن.. سعر الذهب في السوق المصري اليوم\n\nسعر الجنيه الذهب اليوم 11 أبريل 2026.. سعر جرام عيار 21"} +{"url": "https://www.latercera.com/pulso/noticia/quienes-son-los-toesca-los-protagonistas-del-momento-en-sanhattan/", "title": "Quiénes son los Toesca : Los protagonistas del momento en Sanhattan", "publish_date": "2026-04-12T14:42:33Z", "full_text": "Si algo llama la atención de quienes visitan Toesca es que buscan las oficinas de los dueños y no las encuentran. Porque no tienen. Su espacio de trabajo, en plantas libres, es el mismo que el de sus colaboradores.\n\n“La comunicación, la cercanía, el ambiente que se da...Los jóvenes lo aprecian mucho”, cuenta un socio.\n\nFue una de las “buenas prácticas” que se trajeron los fundadores de esta administradora general de fondos (AGF) especializada en activos alternativos, de cuando trabajaban en BTG Pactual, antes Celfin, su cuna financiera.\n\nPor estos días Toesca S.A. Administradora de Fondos de Inversión parece vivir sus minutos de fama. Una saga de adquisiciones, incluyendo el ingreso como socio de un histórico del mundo de la inversión institucional, la han fijado en la retina de muchos que sabían de su existencia, pero que no habían calibrado lo relevantes que se han hecho con menos de una década de existencia.\n\nEste año partió de hecho con su primera gran operación. El mismo 1 de enero anunció la compra de la AGF Frontal Trust y sólo 20 días después, los socios de Toesca se unieron al fondo norteamericano TC Latin America Partners para comprar el 90% del factoring Primus Capital.\n\nEntre ambas operaciones, el 20 de enero, sumaron a un histórico hombre de las AFP, Alejandro Bezanilla, ex gerente general de AFP Habitat, como socio.\n\nY en marzo volvieron a la carga para negociar una posible fusión con otra AGF similar en tamaño, Ameris Capital, la que en todo caso todavía no se cierra. “Podría avanzar o caerse”, dice una fuente conocedora de la negociación.\n\nAunque en su historia Toesca ha levantado un total de US$2.500 millones en inversiones, actualmente gestiona en torno a los US$1.500 millones en 25 fondos. Trabajan con 55 personas y Frontal aportará una treintena adicional. Sus ingresos son de unos US$12 millones al año.\n\nAlejandro Reyes ITALO ARRIAZA +56983956683 PHOTO.CL\n\nUn antiguo origen\n\nLa Toesca de hoy nació oficialmente el 4 de noviembre de 2016, con dos socios: Alejandro Reyes y Carlos Saieh.\n\nReyes, ingeniero civil industrial de la Universidad de Concepción, estuvo 15 años en Celfin. Allí creó el área de administración de activos, con énfasis en gestión de patrimonio. Llegó a ser socio hasta que BTG Pactual adquirió el banco de inversión local en 2012, pero se quedó en su puesto hasta abril de 2016, cuando renunció.\n\nSu dimisión, así como la de sus colegas que terminaron siendo sus socios, se produjo sólo meses después de la crisis que sufriera BTG con la detención de su presidente ejecutivo, André Esteve, en Brasil, por acusaciones de corrupción vinculadas al caso Lava Jato. Esto provocó una fuga de inversionistas y una consecuente salida de ejecutivos.\n\nSaieh, ingeniero civil industrial de la U. Católica (UC) con un MBA en Wharton School de la Universidad de Pensilvania, venía de estar a cargo del área de activos alternativos en Celfin Capital, primero, y luego en BTG, donde se quedó hasta agosto de 2016. Su carrera la había iniciado en 2003 como analista de inversiones y luego subgerente de inversiones en Consorcio.\n\nCarlos Saieh, Toesca ITALO ARRIAZA +56983956683 PHOTO.CL\n\nPero la marca Toesca existía desde antes. Es más, su origen se remonta a 1990, cuando fue creada por la aseguradora estadounidense Aetna como su administradora de fondos de inversión (AFI). En 2001, después que el gigante neerlandés ING adquiriera Aetna en el mundo, pasó a denominarse ING AFI.\n\nRecién en mayo de 2003, tomó su actual nombre. Fue el que le puso Moneda Asset Management -hoy Moneda Patria Investments- cuando la adquirió. Pero al cabo de 13 años, sus resultados como AGF de activos alternativos no fueron los mejores, así que la puso en venta.\n\nEn paralelo, Reyes y Saieh, recién dimitidos de BTG, decidieron en octubre de 2016 armar un AGF juntos: arrendaron una pequeña oficina en El Golf 50 y contrataron a un gerente de operaciones, un administrador y un encargado de software. Pero hacerlo desde cero tardaría de 6 meses a un año, por lo que aprovecharon la opción de Moneda y le compraron Toesca con la idea de cambiarle el nombre. Nunca lo hicieron. Lo que sí hicieron fue inyectarle dinero fresco.\n\nSegún documentación pública, pasó de contar con un capital de $524 millones en diciembre de 2016 a $13.700 millones en febrero de 2017. “Pusimos toda la plata que teníamos”, contó Saieh en el podcast Millions: El Arte de Invertir.\n\nRodrigo Rojas ITALO ARRIAZA +56983956683 PHOTO.CL\n\nAunque a fines de 2016 habían conseguido refuerzos. Se les habían unido Rodrigo Rojas y Arturo Irarrázaval, quienes lideraban el negocio de acciones en BTG, con todo su equipo. Irarrázaval, ingeniero comercial de la U. Católica y master en finanzas de la escuela de negocios ESE de la U. de Los Andes, había trabajado como analista de inversiones de dos AFP y como gestor de inversiones en renta variable en BTG. Rojas, a su vez, ingeniero civil y MBA en la UC, fue analista y director de inversiones en acciones de FIT Research entre 2001 y 2003, mismo cargo que asumió en Celfin Capital -luego BTG- para después ser gerente de portafolio de acciones hasta 2016.\n\nEste equipo fue el que creó el primer fondo de la firma, que no fue de activos alternativos, como era la idea: fue el Fondo Mutuo de Acciones Chile Equities, que partió el 30 de diciembre del 2016. Y como la plantilla se duplicó en seis meses, tuvieron que ubicar alguna oficina más adecuada: encontraron una planta libre en el actual edificio del BICE en Apoquindo. Eran sólo 10 personas más algunas mesas en 400 metros cuadrados.\n\nArturo Irarrázaval ITALO ARRIAZA +56983956683 PHOTO.CL\n\nEse mismo mes migró otro más desde BTG: Augusto Rodríguez, ingeniero comercial de la U. de Los Andes, quien manejaba la división inmobiliaria, también heredada de su desempeño en Celfin, aunque su carrera la había iniciado como analista de riesgo en ABN Amro en 2003.\n\nLuego de un verano incierto, en marzo de 2017 arribó Max Vial, quien presidía la corredora de bolsa de BTG y había sido director de gestión de patrimonio. Vial, ingeniero comercial con estudios de posgrado en finanzas y marketing, había llegado en 1997 a Celfin, cuando esta firma compró la corredora de bolsa Gardeweg, de la cual era socio.\n\nEse mismo marzo levantaron el primer fondo de activos alternativos en infraestructura: compraron el 49% de la Ruta del Algarrobo, la autopista que une La Serena y Vallenar y que controlaba con un 51% la española Sacyr. Los inversionistas que suscribieron el fondo eran fundamentalmente compañías de seguros.\n\nAugusto Rodríguez ITALO ARRIAZA +56983956683 PHOTO.CL\n\nY durante el primer semestre de ese año, lanzaron también su primer fondo de rentas inmobiliarias, con el que compraron un strip center en Machalí, y el primero en crédito privado, para invertir en el negocio del factoring de segundo piso, factorizando a otros factoring. Los fondos de la carretera y del strip center los vendieron el año pasado y el de factoring, lo liquidaron poco después.\n\nPero en menos de nueve meses ya habían lanzado fondos en sus cuatro estrategias principales: infraestructura, inmobiliario y crédito privado en activos alternativos, y acciones. En 2017 habían experimentado un crecimiento explosivo.\n\nMax Vial ITALO ARRIAZA +56983956683 PHOTO.CL\n\nEn ese contexto convencieron a Alejandro Montero, su exjefe en BTG, que vivía su tercer año sabático en París con su familia, a que se integrara. Montero, ingeniero comercial de la UC con un MBA en Wharton, había iniciado su carrera como analista en 1993 en Celfin y llegó a ser gerente general en Celfin y la primera etapa de BTG.\n\nLos años siguientes fueron de acelerada expansión. Ya a inicios de 2019 habían levantado el primer billion de activos administrados: US$1.000 millones.\n\nDespués de eso, vino una meseta, que coincidió con el estallido social, la salida de capitales del país y la pandemia.\n\nEse freno en la expansión se relaciona, según quienes conocen a Toesca, con varios factores que se confabularon. En sus primeros años recibieron un gran volumen de dinero fresco y que fue su principal motor de crecimiento, con una alta rentabilidad. Pero luego sobrevino la incertidumbre local, afectada por la salida de capitales de personas naturales, sumada a una reducción de la caja de las compañías de seguros, dado un descenso en su venta de rentas vitalicias, y un cambio regulatorio en la inversión de las AFP en 2020, que “secó” los fondos a activos alternativos nacionales, favoreciendo a los extranjeros. “Nunca más fluyó plata de las AFP a estos activos en Chile”, reclama un conocedor.\n\nAlejandro Montero ITALO ARRIAZA +56983956683 PHOTO.CL\n\nEn estos años más débiles, abrieron una nueva estrategia relacionada con campos agrícolas. Levantaron un fondo llamado Permanent Crops, con la idea de comprar campos para producir fruta. Y en plena pandemia entró el único de los socios que no venía del “universo BTG”: Manuel Ossa. Ingeniero comercial de la UC con un MBA en la escuela Booth de la U, de Chicago, había sido asesor del Ministerio de Vivienda en la primera administración Piñera, para luego trabajar como analista y gerente de portafolio en Inversiones Arizona, el family office de la familia Luksic.\n\nManuel Ossa ITALO ARRIAZA +56983956683 PHOTO.CL\n\nEl repunte y la visión\n\nEl negocio empezó a levantar cabeza en 2023, repuntó firmemente en 2024 y el 2025 fue incluso mejor que el anterior.\n\nEste mejor momento coincidió con una reducción en las tasas de interés, que se habían disparado para contener a la galopante inflación, pues cuando las tasas están altas, los inversores prefieren la seguridad de la renta fija en vez de apostar por activos de riesgo.\n\nCon el impulso de esta nueva primavera de la inversión, Toesca se decidió a crecer tanto orgánica como inorgánicamente. En su área de farmland, por ejemplo, se asociaron en 2024 con la gestora inglesa Astarte para ampliar su cartera de campos: hoy tienen uno de 300 hectáreas en Rapel para paltos y cítricos, otro del mismo tamaño en Molina para cerezas y carozos, y otro en Ñuble para avellanos.\n\nY en enero pasado se robaron la agenda del mercado con las adquisiciones de Frontal Trust y Primus. La primera, que gestiona del orden de los US$600 millones y dado que cuenta con estrategias similares de negocios, debiera integrarse fácilmente. La segunda, seguirá trabajando como un factoring normal, aparte del AGF.\n\nAlejandro Bezanilla ITALO_ARRIAZA WWW.PHOTO.CL\n\nEn el noticioso enero, Alejandro Bezanilla, ingeniero civil de la UC y exgerente de inversiones y gerente general de AFP Habitat, donde trabajó casi 20 años, se integró como socio y director ejecutivo. Su misión: darle un marco más institucional a la firma, que le permita trascender en el tiempo, y al mismo tiempo aprovechar su buen nombre en el mundo institucional para que apoye al equipo comercial en la captación de inversores.\n\nTodo con el objetivo de ir acercándose a una meta que comparten los socios y que ya no es sólo administrar dinero de chilenos en activos chilenos, sino ir a buscar plata al mundo para que invierta en activos regionales."} +{"url": "https://www.sun-sentinel.com/2026/04/12/ask-ira-time-for-nba-to-cook-the-books-in-heat-favor-after-hornets-rozier-fiasco/", "title": "Should the NBA do next do right by the Miami Heat ? ", "publish_date": "2026-04-12T14:42:33Z", "full_text": "Q: Ira, please tell me the Heat are not satisfied with a second-round pick for the Terry Rozier drama and that there is still some recourse. The NBA failed to provide the Heat with any information on the gambling investigation, and apparently their own internal NBA investigation was suspect, at best, and turned the other cheek, at worst, ignoring the facts. I’m hoping the Heat bring a formal lawsuit against the NBA which would be bolstered should Rozier be found guilty at trial or he pleads out. There is no excuse for what has transpired and the Heat deserve to have their first-round pick restored and the money paid to Rozier back, as well. This could be, for the Heat at least, two high first-round picks and could change the trajectory of the franchise without gutting the team for a whale, and set them up for years with a payroll that could add talent as needed. – Brian, Fort Lauderdale.\n\nA: Except NBA teams don’t sue the league (unless it is a certain owner in a very large market that has aired such grievances publicly, but that’s another story). In accepting the compromise of a second-round pick this June from the Hornets in the Terry Rozier matter, the Heat effectively signed off on the matter being closed. Now, if you are of the conspiracy ilk, perhaps Adam Silver can turn in some lottery chicanery (if the Heat are in the lottery) and get the Heat the type of lottery remuneration that the Mavericks wound up with in Cooper Flagg after trading Luka Doncic. At worst, how about sending Ray Acosta, Derrick Collins and Eric Dalen as the officiating crew for the Heat-Hornets play-in game? The Heat this season went a combined 14-3 with those three officiating their games this season.\n\nQ: Ira, why win on Sunday when it would only hurt the lottery odds, since the Hornets are winning in New York with the Knicks with nothing to play for? – Sammie.\n\nA: Which is why the NBA scheduled all of those East games for 6 p.m., so teams can’t play the scoreboard as freely. But, yes, the Hornets certainly have a better draw on Sunday than the Heat, with Atlanta with plenty to play for in their visit to Kaseya Center. The reality well could be that the Heat try to win, and like so many recent games, aren’t good enough. But remember, even with a loss and a 42-40 final record, making the playoffs would mean no lottery. So Sunday isn’t as important to those with lottery visions as what follows the rest of the week.\n\nQ: Will Erik Spoelstra pull another rabbit out of the hat? – Hal.\n\nA: Well, has there ever been a better play-in puppeteer?"} +{"url": "https://tech.ifeng.com/c/8sGYfvCKmod", "title": "DeepSeek , 该卸下扫地僧的枷锁了", "publish_date": "2026-04-12T14:42:33Z", "full_text": "我每次翻《天龙八部》,翻到少林寺藏经阁那一段,都要停下来。\n\n萧远山、萧峰父子对上慕容博、慕容复父子,鸠摩智再从旁搅局,三十年的血海深恨搅在一处,眼看就要分出生死。就在这当口,一个枯瘦的扫地僧走了出来。\n\n萧峰的降龙十八掌打在他身上,他虽受内伤吐血,却以浑厚内力生生受之;他举手投足间让慕容博陷入「假死」复又救活,这种生死由心的境界,令在场一众顶尖高手莫不震慑失语。\n\n这一刻,谁强谁弱,答案不言而喻。\n\nAI 圈最近几年,流行把 DeepSeek(深度求索)比作这位老僧。在所有人眼里,AI 赛道的格局早已注定,海外有御三家,国内有大厂和彼时风头正盛的 AI 六小虎,轮不到旁人来置喙。\n\n结果一家做量化交易出身的中国公司,悄没声儿地走出来,用一套从天而降的招法,在各项核心评测上与这帮人正面交手,打得有来有回。\n\n只是,扫地僧出场,是《天龙八部》行将收尾的时刻。他的使命是终结纷争、化解戾气,然后全书走向尾声。可大模型的故事,没有尾声,也没有终章,只有下一回,还有下下一回。\n\n把 DeepSeek 比作扫地僧,是对它过去的最高赞誉,但如果这三个字正在慢慢变成困住它的枷锁,我倒觉得,赞誉和催命符,有时候只在一念之间。\n\n扫地僧是怎么练成的\n\n金庸写扫地僧,从来不正面写他的功夫。他写的是别人的反应,萧峰愣了,慕容复愣了,旁观的人也愣了。高手的境界,要从旁人失语的瞬间才能传递出来。\n\nDeepSeek 的故事,也暗合这个逻辑。\n\n作为杭州的一家对冲基金,外人提到幻方量化,第一反应是期货、是算法交易、是数学天才们盯着屏幕上跳动的数字。这和 AI 大模型,八竿子打不着,却悄悄把一批工程师和研究员聚在一起做大模型。\n\n2023 年 11 月,他们发布首个开源代码大模型 DeepSeek Coder,后续拿出了一个 67B 的语言模型。在官方给出的多项评测中,67B 超过了 LLaMA2 70B,67B Chat 在部分中文和开放式评测中优于 GPT 3.5。只是,圈内少数几个消息灵通的人注意到了,大多数人没注意到。扫地僧还在扫地,少林寺的人都在忙着练少林长拳。\n\n让其开始崭露头角,是 2024 年 5 月 7 日发布的 V2。V2 用的是 MoE(混合专家)架构,总参数 2360 亿,但每次推理实际激活的只有 210 亿。与此同时,V2 首次采用了 MLA(多头潜在注意力)机制,大幅压缩了推理时的显存占用。\n\n两相叠加,让模型在同等效果下,跑得更快,花得更少。用金庸的话来说,这叫以柔克刚,以精妙的内功路数,弥补了真气总量上的不足。\n\n但砸出最大水花的,是定价。V2 的 API 定价,每百万 token 输入 1 元,输出 2 元。GPT-4 Turbo 当时是它的七十倍,Meta 的 Llama3 70B 是它的七倍。一块钱,一百万个 token,大约相当于一本《三国演义》的字数。\n\n这个价格摆出来,让整个国内大模型市场为之色变。当月,字节、阿里、百度、腾讯、讯飞、智谱,一家接一家跳出来宣布降价,最高降幅 97%,部分轻量级模型直接免费开放。\n\n一场持续了大半年的价格战,就这么被 DeepSeek 的一句定价点燃了。那时候,业内给 DeepSeek 送了个外号,价格屠夫。\n\n美国的半导体咨询公司 SemiAnalysis 在那段时间写了一篇分析,说这家公司有可能成为 OpenAI 的对手,也有可能碾压其他开源大模型。当时读到这句话的人,大概有一半觉得是危言耸听。一年多以后回头看,没有人再觉得是危言耸听了。\n\n2024 年末的 V3 和 2025 年初的 R1,则是连续出手的两招,把对手打得目瞪口呆。DeepSeek 用极低的投入,打出了旗鼓相当的效果。\n\n更让人震惊的是参与人数,139 名工程师和研究人员完成了这个项目,而 OpenAI 同期有 1200 名研究人员,Anthropic 有 500 名。Meta 超级智能实验室负责人亚历山大·王后来说了一句被广泛流传的话,当美国人休息时,他们在工作,而且以更便宜、更快、更强的产品追上我们。\n\n紧接着便是是 R1,主打深度推理,数学、代码、逻辑,在相当多的测试维度上与 OpenAI o1 不落下风,训练方法用的是 GRPO 强化学习,靠让模型自己想清楚来提升推理能力。\n\n最要紧的一步是开源。\n\nR1 的开源,被广泛解读为一种慷慨。模型权重、技术论文、训练细节全部公开,全球开发者共享成果。这套叙事里,DeepSeek 是那个敞开藏经阁大门的人,路不拾遗,人人可进。\n\n武功秘籍直接摆桌上,谁想学谁来拿的这一手,也打破了少数几家巨头对前沿模型的垄断,让全球数以万计的中小开发者有了和顶尖模型掰手腕的资格。\n\n金庸写扫地僧,主要抓住几样东西,出身边缘、多年隐匿、一鸣惊人、技法精绝、胸怀坦荡。DeepSeek V2 的价格屠刀、V3 的成本奇迹、R1 的开源普惠,也让人们在 DeepSeek 身上,真真切切地看见了那个老僧的影子。\n\n枷锁,以及枷锁之后\n\n但武侠小说是会结束的,AI 赛道不会。\n\n每次我写 DeepSeek 的文章,底下的评论区都像藏经阁又打了一场架。有人说它安安静静做产品,不收费、不立人设,能用就用,这才是正道。有人说它连国产其他巨头都未必打得过,已经无法搅局。\n\n有人替它抱不平,有人觉得它早就该被淘汰。更有人说,「我们一直以来都没把 DeepSeek 当作优等生,而是当作扫地僧,真心希望它能如我们所愿」,这句话说得又期待,又带着一丝说不清楚的悲凉。\n\n意见如此撕裂,本身就说明了一件事。DeepSeek 所受到的关注,早已超出了一家普通 AI 公司应有的体量。捧它的人把它捧上神坛,骂它的人把它踩进泥里,没有几家公司能在舆论场里同时承受这两种极端。\n\n这篇文章大概也逃不过同样的命运,有人会说这是黑稿,有人会说这是 PR 稿,落个两头不讨好。但这无所谓,舆论从来都是这样,藏经阁里打架,不管谁赢,总有人不服。\n\n说回正题,扫地僧出场那一幕,是《天龙八部》收尾的信号。他出手,纷争平息,故事逐渐走向终章。这个叙事结构,似乎天然就带着一种大结局的气息,英雄横空出世,一招定乾坤,从此江湖太平。\n\n根据《创智记》援引知情人士消息称,按照创始人梁文锋在内部透露的时间,DeepSeek V4 将于四月下旬正式发布。\n\n爽文里的主角,每一章都要有突破,读者翻到下一页,期待的永远是更大的惊喜。\n\nV3 和 R1 用四两拨千斤的逻辑征服了世界,大众于是开始把它当成 DeepSeek 的固定输出,每一次出手都必须让硅谷巨头血溅千里,都必须让英伟达的股价抖一抖。V4 也应当如此。\n\n可在这等待一年多的时间里,外界等得有些躁动,各路声音都出来了,说一拖再拖,是不是黔驴技穷了,扫地僧要不行了?说这话的人认为 DeepSeek 理应每次出手都是奇迹,一旦慢了半拍,便是江郎才尽。\n\n慢,自然有慢的原因。\n\n3 月 29 日,DeepSeek 的服务器崩了将近十三个小时,创下网页端和 App 平台上线以来最长中断纪录。连续的服务事故暴露了 DeepSeek 在运维监控、应急预案和灾备机制上的明显短板,也给整个 AI 行业敲响警钟。\n\n当然,综合各家报道来看,V4 一再推迟的原因,还藏在芯片层面。\n\nV3 和 R1 的成功,一定程度上建立在成熟的英伟达 CUDA 生态上,DeepSeek 的工程师们在工具完备、文档详尽、社区活跃的环境里,把算法效率一点一点榨到了极限,每一步都踩得踏实。\n\nV4 要做的事,是把这套功夫移植到国产 AI 芯片上。工具链还在快速迭代,底层接口和 CUDA 差异巨大,分布式训练框架几乎需要从头重构。\n\nDeepSeek 交出的答卷,如果是在受限条件下做出来的,这让它的每一分成绩,都带着额外的含金量。哪怕梁文锋愿意为这件事多拖几个月,也是一笔非常划算的决策。\n\n至于 V4 本身,《创智记》报道称,技术重心据悉落在了 LTM(长期记忆)能力的突破上,同时将原生多模态从底层融入架构,文字和视觉在预训练阶段就融合在一起。\n\n另一个值得关注的变化,是梁文锋本人的注意力在悄悄转移。尽管在过去的一年里,包括 R1 的核心作者郭达雅在内的部分 DeepSeek 核心骨干陆续离职,不过根据《晚点 LatePost》的观察,DeepSeek 的人才基本盘依然稳固,并未出现大规模的人才流失现象。\n\n进入 2025 年下半年,梁文锋也愈发看重技术的商业落地与产品化进程,积极招募负责 Agent 领域的策略产品经理。与此同时,他正在为公司启动估值,给员工的期权一个明确的锚点,让团队对未来有更清晰的预期。\n\n综合上述种种动向不难得出一个结论:曾经心无旁骛盯着 AGI 的 DeepSeek 也得开始面对一家成熟科技公司必须面对的那些现实:商业闭环、生态建设、可持续的收入来源。\n\n扫地僧可以几十年不问江湖俗事,守着藏经阁一扫到底,一家公司,没有这个选项。\n\n《笑傲江湖》里的令狐冲凭着独孤九剑可以破尽天下武功,但当他真正坐镇恒山派,每天迎来送往,护佑门人,一招鲜远远不够,他需要的是内政、是人心、是香火代代相传的根基。奇招,解决不了日常的柴米油盐。\n\n因此,我们应该主动帮 DeepSeek 卸下「扫地僧」这个名号。这三个字是对过去的最高褒奖,却是对未来的过重负担。即便 V4 发布时没有断崖式的领先,只是一款 LTM 扎实、多模态原生融合、各项指标均衡的水桶机。\n\n从产业的角度看,这依然是巨大的成功,成功在于它或许将证明 DeepSeek 有能力从一个创造奇迹的挑战者,变成一个稳定交付的基础设施提供者。\n\n有意思的是,这件事或许本来就是双向的。《晚点 LatePost》此前的报道里,DeepSeek 对外的沟通姿态明显比以往克制,既没有大张旗鼓地预热,也没有放出足以吊足胃口的技术信号。\n\n这种低调,很难说是无意为之。\n\n他们比任何人都清楚,扫地僧这三个字背后悬着什么。每一次出手若不能再掀翻整张牌桌,舆论的落差就会被无限放大。这是一种预期管理,也是一种自我解绑——他们同样不想再背着这个包袱走下去。\n\n▲AI 模型的世界,已经从少数几家机构的专属游戏,变成了全球开发者共同参与的基础设施建设,而且这个趋势还在加速。\n\n而话说回来,当舆论都在一窝蜂盯着 DeepSeek,却少有人往旁边多看一眼。\n\n这片江湖里,国内每一家 AI 都在苦修内功,押注多模态、Agent 生态、算力布局,也都在各自的赛道上走出了自己的路数。\n\nDeepSeek 固然是那个最让人心跳加速的名字,但把眼光只锁死在它一家身上,未免看窄了这个时代。真正让天龙八部成为天龙八部的,是那一整代人各有来路,各有绝学,彼此激荡,才撑起了那个波澜壮阔的时代。\n\n扫地僧的传说,止于藏经阁那一战,藏经阁外,才是真的江湖。"} +{"url": "https://www.express.co.uk/celebrity-news/2192212/liverpool-boy-band-who-made-history", "title": "Liverpool band made history - but theyre not the Beatles | Celebrity News | Showbiz & TV", "publish_date": "2026-04-12T14:42:33Z", "full_text": "Two members of the Liverpool band who made history in 1976\n\nFifty years ago this month a song was recorded which would become the soundtrack to the UK’s long, hot summer of 1976. The track in question felt like it had been beamed into Britain from another world. Or, at the very least, from Philadelphia, the unofficial global capital of soul music during the 1970s.\n\nIt was joyous, it was uplifting, it was romantic, and it sold in lorry-loads, climbing to the top of the singles charts in the days when a record had to sell hundreds of thousands of copies to reach number one. Even now, You To Me Are Everything by The Real Thing remains a guaranteed dance floor filler splicing good time vibes with that unmistakable “Philly Sound”. Article continues below ADVERTISEMENT\n\nExcept You To Me Are Everything didn’t actually come from Philadelphia, or Los Angeles, or Detroit, or any of the other hotbeds of the US music industry. That’s because The Real Thing, like The Beatles before then, hailed from an English city built largely on its trade links with America, namely Liverpool.\n\nWhen You To Me Are Everything went to number one, The Real Thing became the first British all-black group to top the UK singles chart. That’s not a bad claim to fame for four lads who sounded every bit as Scouse as John, Paul, George and Ringo, if not more so\n\nDave Smith and Chris Amoo of The Real Thing perform on stage during the Cambridge Club Festival in 2023\n\n“We’ve got a song called Hometown that goes, ‘Liverpool is who I am, where I grew into a man’,” says Chris Amoo, now in his sixth decade as lead singer of The Real Thing. “Nowadays, when we’re playing to a packed audience, I make it my business to say ‘There’s no Americans in this band!’ And everyone will laugh because right the way through our career people have automatically thought we’re American. In actual fact we’re from that part of Liverpool called Toxteth. And I’m proud of that.” Article continues below ADVERTISEMENT\n\nOriginally formed by Chris and his childhood friend Dave Smith, The Real Thing – or Vocal Perfection as they were initially known – came together at a time when the UK music industry, according to Chris, “didn’t really know what to do with or how to market black British artists”. Article continues below ADVERTISEMENT\n\nDespite appearing on the TV show Opportunity Knocks, the 1970s equivalent of The X Factor, the group – which also featured Chris’ older brother Eddie and Ray Lake on backing vocals – struggled to break through until Tony Hall, the renowned compere, DJ, record promoter and producer, took them in hand as their manager.\n\nInspired by an advertisement he’d seen in London’s Piccadilly Circus branding Coca-Cola as “the real thing”, Hall changed their name, got them work supporting Seventies heartthrob David Essex, and introduced the group to up-and-coming songwriters Ken Gold and Micky Denne.\n\nOne of the earliest songs Gold and Denne had written was You To Me Are Everything, which Gold thought would be perfect for The Real Thing. The song needed a home and the band needed a breakthrough hit. The rest, as they say, is history.\n\n“When I first heard it, I thought it was great,” says Chris. “It actually reminded me of the Johnny Bristol song Hang On In There Baby which I’ve always loved.\n\n“But here’s the thing – when we recorded it, I didn’t like it. I thought that the demo was better. Ken said to Tony, ‘I’ve heard Chris singing better than this – let’s go in and do it again.’ I was all ‘Cor, who do they think they are?’ but I went along with it.\n\n“The next day we started again with a clear tape, doing it exactly the way Ken and Micky saw it because they were the ones who wrote the song. They didn’t want me changing lines just because I thought it felt good. They wanted it sung the way they’d written it. And when I heard it back I thought ‘Umm, I see what they mean’. I still prefer my first version, but they showed us how to put a record down properly.”\n\nThe original line-up of The Real Thing pictured in 1976\n\nA few days later Chris took an acetate copy of the disc (often referred to in music industry circles as the white label) to The Timepiece nightclub in Liverpool, a local Mecca for lovers of black music. It was midweek and the dancefloor was empty – until, that is, the resident DJ Les Spaine put You To Me Are Everything on the turntable. Nobody had heard it before, yet within seconds the dancefloor was packed.\n\nIn May 1976 the single was released, going into the UK top 40. The following week it was at number 22. The week after that it had climbed to number five. Seven days later it reached number one, staying there for three weeks. At one point You To Me Are Everything was selling 25,000 copies a day at a time when the UK was experiencing a period of unusually hot weather. Even now, the summer of 1976 remains a benchmark for heatwaves in the UK.\n\n“When it comes to a hit record, everything surrounding that record becomes important,” says Chris. “People go and buy records when they want to feel good about something, and people were feeling bloody good about things that summer. That song suited the whole atmosphere of the Seventies, and 1976 in particular. People had their windows and front doors open for weeks on end, it was that hot, and the sound you heard coming through those windows and doors was You To Me Are Everything.”\n\nThe Real Thing supported Seventies heartthrob David Essex on tour as one of their first major gigs\n\nIn the months and years that followed The Real Thing continued to release hit singles, including Can’t Get By Without You and Can You Feel The Force, while their 1977 album 4 From 8 remains arguably the grittiest soul album ever released by a British group, inspired as it was by their formative years spent in the Liverpool 8 post code. And yet You To Me Are Everything remains the band’s calling card, overshadowing to an extent the rest of the band’s catalogue.\n\nNot that Chris Amoo has any regrets about that. As far as he’s concerned the song was more of a blessing than a curse, helping inadvertently to shape the band’s subsequent career.\n\n“We never felt that it was an albatross around our necks, but we knew it was something we would have to be very careful with, otherwise that was going to be the only song we’d record,” he says. “It helped us go in other directions, for better or for worse, but that’s something you have to do otherwise you’ll never find that creative fulfilment.\n\n“Believe you me though, I never dreamt I’d be sat here 50 years later talking about You To Me Are Everything. Even when it was number one, I thought ‘OK, it’s number one. This is great, just great’. Then it goes out of the charts, and other number ones come along, and future generations arrive with their own number ones which take precedence.\n\n“A standard though is a number one that goes through every generation. Off the top of my head, I can’t think of another number one from that time like You To Me Are Everything. As soon as you hear it, you just know. Not many people, no matter what genre of music you’re in, get the chance to record something like that.”\n\nAlthough Ray Lake and Eddie Amoo died in 2000 and 2018 respectively, The Real Thing continue to record and tour with Chris Amoo and Dave Smith at the helm. And if you should go to see them at some point in 2026, rest assured, they most definitely will perform You To Me Are Everything.\n\nCelebrity news and gossip plus selected offers and competitions Subscribe Invalid email We use your sign-up to provide content in ways you've consented to and to improve our understanding of you. This may include adverts from us and 3rd parties based on our understanding. You can unsubscribe at any time. Read our Privacy Policy\n\n“When we go on now, and we sing it, the reaction is out of this world,” says Chris. “Wherever we go – on tour, or recording, or in TV studios – people look at you with respect. And they smile. That song makes them smile. What more can you possibly ask for than that?”"} +{"url": "https://www.boerse-express.com/news/articles/wisdomtree-silver-3x-etc-bestaende-brechen-ein-891172", "title": "WisdomTree Silver 3x ETC : Bestände brechen ein ! ", "publish_date": "2026-04-12T14:42:33Z", "full_text": "Der Silbermarkt steuert auf ein sechstes Angebotsdefizit zu, während physische Lagerbestände schrumpfen. Dieses fundamentale Ungleichgewicht stützt den Preis und befeuert gehebelte Anlageinstrumente.\n\nDer Silbermarkt steuert im Jahr 2026 auf das sechste Angebotsdefizit in Folge zu. Während die industrielle Nachfrage aus der Solar- und Elektronikbranche ungebremst wächst, leeren sich die physischen Lagerbestände zusehends. Diese fundamentale Knappheit trifft nun auf einen schwächelnden US-Dollar und befeuert gehebelte Anlageprodukte.\n\nIn der vergangenen Handelswoche verzeichnete das Edelmetall einen spürbaren Aufwind. Haupttreiber für das wöchentliche Plus von rund 4,6 Prozent beim Spot-Preis war ein deutlicher Rücksetzer der US-Währung. Der Dollar erlitt den stärksten wöchentlichen Einbruch seit Januar. Diese Währungsschwäche glich den Druck der hartnäckigen US-Inflation von 3,3 Prozent mühelos aus. Gleichzeitig stützen die anhaltenden diplomatischen Verhandlungen in Islamabad und ein fragiler regionaler Waffenstillstand den Status von Silber als sicheren Hafen.\n\nLeere Lager und hohe Nachfrage\n\nDie fundamentalen Daten des Silver Institute untermauern die aktuelle Aufwärtsbewegung. Für das laufende Jahr wird ein physisches Marktdefizit von 67 Millionen Unzen prognostiziert. Das Angebot wächst voraussichtlich nur marginal um 1,5 Prozent, während die physische Investmentnachfrage um beachtliche 20 Prozent anziehen soll.\n\nBesonders brisant ist die Lage an der Rohstoffbörse COMEX. Die registrierten Silberbestände sind auf 76 Millionen Unzen gefallen. Damit decken sie nur noch 13,4 Prozent der offenen Kontrakte ab. Diese Verknappung der physischen Reserven zieht einen soliden Boden unter den Preis, auch wenn das historische Rekordhoch vom Januar bei über 121 US-Dollar noch ein Stück entfernt liegt.\n\nHebelwirkung und wichtige Marken\n\nDer WisdomTree Silver 3x ETC profitiert als dreifach gehebeltes Produkt überproportional von diesem positiven Momentum und schloss am Freitag bei 168,39 Euro. Anleger müssen bei dem 286 Millionen Euro schweren Instrument jedoch die tägliche Anpassung der Swaps im Blick behalten. In Seitwärtsphasen führt dieser Mechanismus unweigerlich zu spürbaren Abweichungen vom regulären Silberpreis.\n\nFür die am Montag beginnende Handelswoche rücken klare charttechnische Marken in den Fokus. Auf der Oberseite muss der ETC das Freitags-Tageshoch von 171,20 Euro überwinden, um den aktuellen Trend zu bestätigen. Fällt der zugrundeliegende Silberpreis hingegen unter die wichtige Unterstützung bei 74,63 US-Dollar, droht ein kurzfristiger Rücksetzer in Richtung der 72-Dollar-Marke."} diff --git a/Data/1_Bronze_Raw/News_Scrapes/2026-04-12/Full_text/full_text_macro_central_banks.jsonl b/Data/1_Bronze_Raw/News_Scrapes/2026-04-12/Full_text/full_text_macro_central_banks.jsonl new file mode 100644 index 0000000..57068d7 --- /dev/null +++ b/Data/1_Bronze_Raw/News_Scrapes/2026-04-12/Full_text/full_text_macro_central_banks.jsonl @@ -0,0 +1,9 @@ +{"url": "https://www.govtech.com/blogs/lohrmann-on-cybersecurity/why-anthropics-mythos-is-a-systemic-shift-for-global-cybersecurity", "title": "Why Anthropic Mythos Is a Systemic Shift for Global Cybersecurity", "publish_date": "2026-04-12T14:39:07Z", "full_text": "Dan Lohrmann BIO\n\nCONTACT\n\nRSS\n\nCreating robust government solutions demands fresh perspectives, inventive approaches and diligent effort. From fortifying cybersecurity defenses and leveraging AI to optimizing cloud infrastructure and securing mobile platforms, Dan offers practical ways to \"get to yes\" securely."} +{"url": "https://finance.yahoo.com/markets/options/articles/45k-debt-invest-ira-pay-125503481.html", "title": "I Have $45K in Debt . Should I Invest in an IRA or Pay the Bills First ? ", "publish_date": "2026-04-12T14:39:07Z", "full_text": "Quick Read\n\nIt’s a common question: Should I be investing if I’m carrying debt?\n\nMany advisers think you should pay off your debt (not counting a mortgage) before investing.\n\nPaying off non-mortgage debt frees up monthly cash flow that can fund a Roth IRA or other investment.\n\nA recent study identified one single habit that doubled Americans’ retirement savings and moved retirement from dream, to reality. Read more here.\n\nA 32-year-old with $45,000 in non-mortgage debt recently called into The Ramsey Show to ask: \"Would it be smart for me to open up a Roth IRA now even though I'm still in debt , or should I wait till I get all my debt off of me first?\" Host Dave Ramsey quickly advised the caller to focus on the debt first.\n\n\"The fastest way to become a millionaire, the fastest way to build substantial investments, is to first get out of debt because your most powerful wealth-building tool is your income,\" he said. The caller's annual income fluctuates between $100,000 and $150,000. Ramsey suggested she work overtime to earn $150,000, and live on $100,000. That $45,000 could be gone in a year.\n\nRead: I Review Investing Platforms for a Living, And SoFi Crypto Finally Changed My Mind\n\nI’ve spent years reviewing investing platforms across stocks, options, ETFs, and now crypto. Most crypto platforms fall into one of two categories: fast-moving exchanges with regulatory uncertainty, or traditional financial firms that treat crypto like an afterthought. SoFi Crypto is one of the very few platforms that breaks that mold.\n\nSeparating the Mortgage From Other Types of Debt\n\nThe caller also has a mortgage of $255,000, presumably at a reasonable interest rate. The $45,000 includes higher-rate student loans, a car loan and personal borrowing. Ramsey's advice: \"Pay the $45K off and then open the Roth IRA.\"\n\nRamsey was blunt with the caller: \"You've been a little sloppy. That's how we got here. That doesn't make you bad. It just makes you normal, but normal sucks. We don't want to be normal.\"\n\nEvery dollar going toward debt payments is a dollar that cannot be invested. Once the $45,000 is gone, the monthly cash that was servicing those loans becomes available to fund a Roth IRA and taxable accounts simultaneously. At her income level, she can contribute up to $7,500 annually to a Roth IRA, but she could also stack additional savings into a brokerage account. She has roughly 30 years of compounding before a traditional retirement age, which should set her up nicely.\n\n$45,000 in Debt Isn't As Bad As It Sounds\n\nRamsey's framework works well for someone in exactly this caller's position: high income, manageable non-mortgage debt, and a timeline short enough that delaying Roth contributions by one year costs very little in compounding. A 32-year-old losing one year of Roth contributions is a small sacrifice compared to the freedom of eliminating $45,000 in debt payments."} +{"url": "https://tribunaonline.com.br/economia/trabalhador-podera-sacar-ate-20-do-fgts-para-pagar-dividas-diz-ministro-298957", "title": "Trabalhador poderá sacar até 20 % do FGTS para pagar dívidas , diz ministro | Tribuna Online", "publish_date": "2026-04-12T14:39:07Z", "full_text": "Dario Durigan afirma que o atual governo deixa uma situação equilibrada na economia e nas finanças públicas | Foto: José Cruz/Agência Brasil\n\nNo comando do Ministério da Fazenda há menos de um mês, Dario Durigan disse em entrevista à Folha que trabalhadores com renda de até cinco salários mínimos (R$ 8.105) poderão sacar até 20% de seu saldo no FGTS (Fundo de Garantia por Tempo de Serviço) para quitar dívidas.\n\nContinue Lendo\n\nA medida deve liberar mais R$ 7 bilhões e será um dos elementos de um programa de renegociação que prevê também um desconto mínimo concedido pelos bancos e uma garantia do governo para refinanciar o saldo restante, com taxa de juros pactuada ou limitada.\n\nO pacote, uma demanda do presidente Lula (PT), deve contar também com linhas para caminhoneiros, motoristas de aplicativos e taxistas, e apoio a setores como construção civil e fertilizantes. Ele nega que as medidas sejam eleitoreiras. \"A gente está lidando com os problemas concretos.\"\n\nDurigan afirma que o atual governo deixa uma situação equilibrada na economia e nas finanças públicas, quadro distinto do \"descalabro\" ocorrido em 2022, quando Jair Bolsonaro (PL) tentou a reeleição. \"Não estamos deixando nenhuma bomba amarrada.\"\n\nFolha - A pauta do governo no momento são as medidas para reduzir o endividamento. O cenário é preocupante?\n\nDario Durigan - Depois do primeiro Desenrola, teve o começo de corte da Selic, em agosto de 2023, e uma queda do endividamento. No fim de 2024 e durante 2025, a relação é diretamente proporcional entre o aumento da taxa de juros e o endividamento das famílias, dos informais, das pequenas empresas e das grandes.\n\nO importante para as pessoas é que elas tomem crédito sustentável. A expectativa é que a gente dê um estímulo agora nessa virada de chave e deixe medidas estruturantes. Vai ter uma limitação na possibilidade de essa pessoa continuar jogando nas bets, uma espécie de quarentena para quem aderir.\n\nFolha - Por quanto tempo?\n\nDario Durigan - O presidente vai arbitrar. A gente tem trabalhado com um prazo de seis meses.\n\nFolha - Quais serão as ferramentas de estímulo?\n\nDario Durigan - Não há gasto público direto. A ideia é que as próprias instituições financeiras façam uma redução da dívida e haja um refinanciamento com uma taxa de juros menor. E aí entra o governo garantindo a inadimplência eventual nessa segunda operação.\n\nO governo não vai pagar a dívida das pessoas, mas vai garantir [o crédito] de modo que os bancos façam uma taxa de juros menor. E a gente vai usar o FGO [Fundo de Garantia de Operações] para isso.\n\nFolha - As pessoas também vão poder fazer um saque extraordinário no FGTS para pagar dívidas mais caras. Como vai funcionar?\n\nDario Durigan - Tem duas discussões. O ministro [do Trabalho, Luiz] Marinho identificou uma interpretação inconsistente da Caixa em relação à devolução que já foi feita para as pessoas demitidas e que fizeram a opção do saque-aniversário com consignado. Para corrigir essa interpretação, seria uma devolução de R$ 7 bilhões.\n\nA segunda medida envolve um saque limitado do FGTS. O que estamos discutindo? Quanto a gente pode limitar esse saque sem comprometer a sustentabilidade do fundo.\n\nFolha - Esse 'quanto' está em que faixa?\n\nDario Durigan - A gente tem trabalhado com um limite de 20% de saque da conta individual. É o número que está sendo discutido e que tem um impacto contido no fundo.\n\nFolha - Todos os trabalhadores terão acesso?\n\nDario Durigan - Os trabalhadores que ganhem até cinco salários mínimos e que fizerem jus às demais regras. Quem ganha até cinco salários mínimos representa 92% dos brasileiros. Acima disso, tem muito menos gente e dívidas maiores. Não deveríamos mobilizar fundos ou opções de saque para esses casos, o que não impede as instituições de oferecerem refinanciamento.\n\nFolha - O desconto vai ser de quanto?\n\nDario Durigan - Espero que de até 90%. Um exemplo: tem uma dívida de R$ 10 mil a juros de 8% ao mês. É impagável. Dá-se um desconto de 90%, fica com uma dívida de R$ 1.000. E, com a garantia da FGO, essa dívida pode ser rolada a 2% ou 2,5% ao mês. Muito menor e pagável.\n\nVamos ter que exigir um desconto mínimo. Estamos calibrando, mas espero que chegue a 90%.\n\nFolha - Vai ter limite de juros?\n\nDario Durigan - Como vai ter garantia pública, acho importante ter um juro pactuado ou limitado.\n\nFolha - Seriam esses 2,5%?\n\nDario Durigan - É um exemplo do que a gente tem perseguido, mas em diálogo com o sistema financeiro.\n\nFolha - Quantas pessoas serão atendidas?\n\nDario Durigan - Temos uma expectativa de atender a mais de 30 milhões de pessoas.\n\nFolha - Quanto vai tirar do fundo? Setores de habitação e de infraestrutura veem os saques com preocupação.\n\nDario Durigan - A gente não vai comprometer a sustentabilidade nem as políticas financiadas pelo fundo. Vamos fazer de maneira bem limitada e opcional.\n\nFolha - Falam em saque entre R$ 7 bilhões e R$ 10 bilhões.\n\nDario Durigan - Nossa estimativa é por aí. Mais para R$ 7 [bilhões].\n\nFolha - Após o Desenrola, houve aumento de 9 milhões de pessoas inadimplentes. O programa fracassou?\n\nDario Durigan - Não, ao contrário. O Desenrola cumpriu seu papel. Havia uma expectativa no começo de 2024 de que houvesse cortes na taxa de juros, a gente não viu isso. O que a gente viu foi um novo endividamento a partir de 2025.\n\nComo de novo estamos na expectativa de um corte da taxa de juros, é preciso que as famílias também possam viver com uma taxa de juros mais razoável nas dívidas pessoais.\n\nFolha - E para as empresas?\n\nDario Durigan - O programa tem três grandes frentes. Estamos falando das famílias. Os trabalhadores informais devem ter uma linha garantida também, porque tomam dívida mais cara. E as empresas vão poder tomar créditos, mas é uma coisa menor, focalizada para pequenas e MEIs [microempreendedores individuais].\n\nFolha - Como será a linha para informais?\n\nDario Durigan - Vamos refinanciar dívidas dos informais, que não têm garantia de salário, muitas vezes não têm patrimônio, um faturamento sólido e recorrente. O FGO também vai entrar para diminuir a taxa de juros.\n\nFolha - O FGI [Fundo Garantidor para Investimentos] pode ter aumento para as linhas do Peac [programa de crédito para micro, pequenas e médias empresas]?\n\nDario Durigan - Estamos discutindo outras medidas na economia, que não são de estímulo ao consumo. Visam a endereçar questões pontuais de alguns setores. Depende de um aporte do governo para capitalizar o FGI.\n\nAs linhas que já são previstas dentro do Fundo Clima, do Fundo Social, podem também ser mobilizadas. Pode ter uma linha de estímulo à construção civil. Podemos ter uma linha como foi a de financiamento de caminhões no fim do ano, estendida para motoristas de aplicativos e taxistas.\n\nFolha - Qual é a bússola nessas discussões? É o temor de desaceleração da economia, ou um cenário eleitoral mais desafiador para o presidente Lula?\n\nDario Durigan - É uma avaliação econômica do que pode estar disfuncional no país. O endividamento das famílias é preocupante, e estamos endereçando isso. No caso dos setores específicos, existem alguns que sofrem mais com os juros ou com a questão geopolítica. O tema dos fertilizantes, por exemplo, pode ser objeto de uma dessas linhas.\n\nFolha - Há receio no mercado de que seja o início de um saco de bondades do presidente em ano eleitoral.\n\nDario Durigan - Não se trata de uma questão eleitoral. A gente está lidando com problemas concretos. Não vamos deixar de atender à questão da guerra nos combustíveis e o endividamento das pessoas, questões fundamentais para a economia do país.\n\nFolha - Nos combustíveis, preveem alguma nova medida?\n\nDario Durigan - Não. Vamos aguardar até o fim de maio para uma reavaliação.\n\nFolha - O imposto de exportação foi suspenso. Era a fonte de compensação de todas as medidas. Como vão fazer?\n\nDario Durigan - O juiz que deferiu a liminar cita supostos dispositivos da medida provisória que não existem. É uma medida absurda. A gente recorreu ao Tribunal de Justiça do Rio, que negou o efeito que a União pediu, mas sem entrar na discussão. É inadmissível.\n\nFolha - Vão ao Supremo Tribunal Federal?\n\nDario Durigan - Até onde for preciso. Se isso não for corrigido, tem que buscar outras receitas.\n\nFolha - O Congresso avançou na discussão de projetos considerados pautas-bomba. A questão dos agentes comunitários, o novo mínimo da assistência social. Vê ímpeto eleitoral?\n\nDario Durigan - Tenho dito a todos os líderes, ao presidente Hugo [Motta, da Câmara], ao presidente Davi [Alcolumbre, do Senado], que estamos enfrentando uma situação de guerra. Estamos fazendo um esforço fiscal para proteger o país. Esse esforço não pode ser desvirtuado ou desviado em outras questões que não nos interessam agora.\n\nTenho pedido a sensibilidade do Congresso. Reforço aqui o pedido para que a gente não avance nessas pautas problemáticas.\n\nFolha - A guerra é um fator de incerteza, e o Banco Central diminuiu o ritmo de corte dos juros. Como vê a decisão?\n\nDario Durigan - A parte da Fazenda, a gente vem fazendo. Adotar medidas que garantam a neutralidade fiscal e que minimizem o aumento de preço no país ajuda a tomada de direção do BC.\n\nFolha - O BC fala em cautela.\n\nDario Durigan - Eu falo também. Não vamos deixar pauta-bomba do Executivo para as próximas gestões, como aconteceu em 2022. Não vamos repetir esse cenário para 2027.\n\nNão estamos empurrando para frente o tema dos precatórios, um [aumento no] Fundeb [fundo da educação básica]. Eu não estou tirando IPI ou IOF do próximo governo. Nós recompusemos a estrutura fiscal do país. Tudo isso colabora com a política monetária.\n\nFolha - Mas como avalia a política do presidente do BC, Gabriel Galípolo?\n\nDario Durigan - Eu não vou comentar o papel do BC porque tem a sua competência. O que estou dizendo é, do lado da Fazenda, com todas as dificuldades políticas, são várias decisões que a gente está colocando na mesa. Reforma tributária, rever o Perse [programa de benefícios para o setor de eventos], corte linear de 10% nos benefícios tributários. Isso tudo fortalece o fiscal.\n\nFolha - O fiscal não seria um motivo para o BC colocar o pé no freio?\n\nDario Durigan - O fiscal não é motivo.\n\nFolha - Há duas indicações abertas na diretoria do BC. Já levou algum nome para o presidente?\n\nDario Durigan - Não tive a oportunidade de tratar com o presidente Lula sobre isso.\n\nFolha - O governo pode fazer algum ajuste para o BRB não quebrar?\n\nDario Durigan - A orientação é que não deve haver ajuda federal. Os bancos federais, atuando como bancos, podem avaliar o interesse em comprar carteira, operação, imóvel. Os bancos privados estão avaliando. O que a gente não pode perder de vista é que a responsabilidade é do governo do Distrito Federal, acionista do BRB.\n\nFolha - O governo encaminhará o PLDO [Projeto de Lei de Diretrizes Orçamentárias] de 2027, primeiro ano do próximo presidente. Qual será a sinalização?\n\nDario Durigan - De estabilidade. Isso vale para além da questão orçamentária e econômica, vale para a questão política. O ano de 2022 é um exemplo negativo para o país.\n\nDigo para quem me procura do mercado: é estranho o mercado apoiar tanto as forças políticas que estavam governando em 2022, porque foi um ano de descalabro nas contas públicas. Estou falando seja do ponto de vista econômico, seja da mensagem de falta de respeito institucional, de se namorar com o golpe de Estado.\n\nO ano de 2026 vai ser diferente. Vamos deixar as contas públicas em ordem, para que em 2027 não haja sustos como a gente tomou em 2023.\n\nFolha - Vai ter um escrutínio de comparação. A oposição está catalogando números, o próprio ex-ministro Paulo Guedes vai lançar um livro.\n\nDario Durigan - É bem-vinda a comparação. Não estamos deixando nenhuma bomba amarrada dentro do governo para o próximo. Vamos respeitar as instituições. É um trabalho muito diferente. Não teve populismo em conta pública. A gente tem um limite de gasto que controlou as despesas e tivemos uma recomposição da receita.\n\nFolha - Há ceticismo em relação ao arcabouço, e a Fazenda já reconheceu que precisará reforçá-lo.\n\nDario Durigan - Se o próximo governo fizer um ajuste de 2% do PIB, como a gente fez, vai chegar no fim do próximo ciclo com uma situação muito melhor.\n\nÉ preciso limitar as despesas obrigatórias. Isso vai precisar avançar, sem ficar empurrando o problema para frente, com discurso que divide o país, mas trazendo todo mundo para a mesa, chegando a acordos.\n\nFolha - É limitar o BPC [Benefício de Prestação Continuada], ou mexer nos pisos de saúde e educação?\n\nDario Durigan - Vários debates têm que ser enfrentados, como a gente fez no fim de 2024. As alterações feitas pelo governo Bolsonaro em 2021 [flexibilização das regras] tiraram o BPC de uma boa política eficiente. É preciso rever isso. Estamos agora discutindo o seguro-defeso [benefício para pescadores artesanais] no Congresso.\n\nFolha - Na hipótese de reeleição do presidente Lula, há chance de discutir a unificação dos programas sociais?\n\nDario Durigan - Existe essa possibilidade, sim, de racionalizar, trazer eficiência, diminuir a burocracia. Quando a gente discute biometria, acompanhamento dos cadastros, mais filtros, isso só não basta. Mas isso precisa ser feito. Não dá para acontecer como no governo passado, de repente desliga a máquina pública, desliga os controles e olha só para a questão eleitoral. Isso não será feito.\n\nRAIO-X\n\nDario Durigan, 41\n\nFormado em direito pela USP (Universidade de São Paulo). Atuou como assessor na subchefia de Assuntos Jurídicos da Casa Civil no governo Dilma Rousseff (PT). Foi diretor de políticas públicas do WhatsApp entre 2020 e 2023, quando assumiu a secretaria-executiva do Ministério da Fazenda. Desde 20 de março, é ministro da Fazenda, sucedendo Fernando Haddad."} +{"url": "https://www.tinnhanhchungkhoan.vn/co-phieu-can-quan-tam-ngay-134-post388652.html", "title": "Cổ phiếu cần quan tâm ngày 13 / 4", "publish_date": "2026-04-12T14:39:07Z", "full_text": "(ĐTCK) Báo Đầu tư Chứng khoán trích báo cáo phân tích một số cổ phiếu cần quan tâm trước phiên 13/4 của các công ty chứng khoán.\n\nKhuyến nghị mua dành cho cổ phiếu GEX\n\nCTCK BIDV (BSC)\n\nTriển vọng kinh doanh 2026-2027 đối với Công ty cổ phần Tập đoàn Gelex (GEX – sàn HOSE): mảng thiết bị điện (GEE) dư địa tăng thị phần lớn, hưởng lợi mạnh từ chính sách nội địa hóa; mảng vật liệu xây dựng (VGC) biên lợi nhuận gộp hồi phục và tái cấu trúc hướng đến tối ưu; mảng BĐS KCN (VGC, PXL, Titan Hải Phòng) hạ tầng và chính sách tạo cơ hội thu hút FDI.\n\nNăm 2026, doanh thu và lợi nhuận sau thuế - cổ đông thiểu số dự phóng lần lượt đạt 43.081 tỷ đồng (tăng trưởng 9%) và 1.201 tỷ đồng, giảm 19% và giảm 7% nếu loại bỏ khoản bất thường trong năm 2025.\n\nNăm 2027, doanh thu và lợi nhuận sau thuế - cổ đông thiểu số dự phóng đạt 45,844 tỷ đồng (tăng trưởng 6%), 1.296 tỷ đồng (tăng trưởng 8%). Chúng tôi điều chỉnh giảm 19% dự phóng lợi nhuận sau thuế - cổ đông thiểu số năm 2026 so với báo cáo trước do: Dự án khách sạn Fairmont hoạt động sớm hơn dự kiến 1 năm, làm tăng chi phí lãi vay và khấu hao. Công ty đã vay thêm 200 triệu USD trong quý I/2026, trực tiếp tăng chi phí lãi vay và lỗ tỷ giá.\n\nChúng tôi giảm 8% giá mục tiêu năm 2026 từ mức 53.200 đồng/CP xuống mức 48.800 đồng/CP với các giả định sau: Điều chỉnh tăng WACC từ 10.7% lên mức 11,6% và các BĐS đầu tư có mức cap rate từ 6% lên 9% do môi trường lãi suất đã tăng cao hơn so với năm 2025;\n\nĐịnh giá mảng vật liệu xây dựng tăng 50% định giá từ 8.300 tỷ đồng lên 12.482 tỷ đồng, với giả định thuế chống bán phá giá kính xây dựng giúp tăng biên gộp mảng này 2 điểm % và tái cơ cấu doanh nghiệp giúp giảm 0,7 điểm% tỷ lệ SGA/doanh thu;\n\nBổ sung 2.800 tỷ đồng giá trị sổ sách của 2 công ty con là Titan Hải Phòng (BĐS KCN) và FIH (dự án nhà ở thương mại 226 Lê Lai, Hải Phòng). Trong quý I/2026, GEL hoàn thành huy động 2.800 tỷ đồng từ IPO để góp vốn 2 công ty kể trên.\n\nTuy nhiên, trong đợt tăng IPO tăng vốn của GEL diễn ra quý IV/2025, GEX không đăng ký mua dẫn đến tỷ lệ sở hữu tại GEL giảm từ 80% xuống mức 70%.\n\nMặc dù điều chỉnh giảm 8% định giá, tuy nhiên, giá cổ phiếu cũng đã giảm 38% từ đỉnh gần nhất mở ra cơ hội mua cổ phiếu GEX với giá mục tiêu năm 2026 đạt 48.800 đồng/CP, upside 23% (so với giá tham chiếu ngày 10/04/2026) dựa trên phương pháp định giá từng phần. Dự phóng lợi nhuận sau thuế - cổ đông thiểu số 2026 đạt 1.201 tỷ đồng (giảm 19%), cổ phiếu đang giao dịch ở mức P/E FW 2026 là 30.2x, tương đương với trung bình 2021 – 2025.\n\nKhuyến nghị tăng tỷ trọng dành cho cổ phiếu MSR\n\nCTCK Agriseco (AGR)\n\nCTCP Masan High-Tech Materials (UPCOM: MSR) mới đây đã công bố tài liệu ĐHCĐ thường niên 2026 với nhiều thông tin đáng chú ý. Theo đó, MSR đặt kế hoạch kinh doanh với 2 kịch bản. Trong kịch bản thấp, doanh thu thuần dự kiến đạt 16.000 tỷ đồng, lợi nhuận sau thuế đạt 1.700 tỷ đồng. Trong kịch bản cao, doanh thu thuần dự kiến đạt 20.300 tỷ đồng và lợi nhuận sau thuế đạt 2.500 tỷ đồng. Các kịch bản đề ra đều tăng trưởng mạnh so với kết quả thực hiện 2025. Công ty giữ nguyên lợi nhuận sau thuế cổ đông công ty mẹ không chia cổ tức và dự kiến phát hành gần 11 triệu cổ phiếu ESOP với mức giá 15.000 đồng/cp.\n\nTriển vọng các mảng kinh doanh của MSR: Mảng vonfram: Đây hiện là mảng kinh doanh chủ lực của MSR, đóng góp khoảng 60% tổng doanh thu. Triển vọng thị trường duy trì tích cực khi nhu cầu toàn cầu gia tăng, đặc biệt từ các ngành công nghệ cao, trong khi nguồn cung bị thắt chặt do Trung Quốc – quốc gia chi phối phần lớn sản lượng – siết chặt kiểm soát xuất khẩu. Giá vonfram hiện tại đã tăng hơn gấp đôi so với đầu năm, dao động quanh ngưỡng 2.000 USD/MTU và dự kiến duy trì ở mức cao trong thời gian tới. Với vị thế là một trong những nhà cung cấp lớn ngoài Trung Quốc, MSR được kỳ vọng hưởng lợi từ xu hướng giá và sự thiếu hụt nguồn cung.\n\nMảng đồng: Giá bán đồng hiện tại tăng khoảng 20%. Đà tăng này đến từ nguồn cung gián đoạn kéo dài và hoạt động đầu cơ tại thị trường Mỹ. Theo dự báo của Goldman Sachs, giá đồng vẫn duy trì cao trong nửa đầu năm 2026, trước khi có thể hạ nhiệt khi Mỹ làm rõ chính sách nhập khẩu đồng. Chúng tôi kỳ vọng lãi gộp mảng đồng năm 2026 tăng khoảng 25% so với năm trước nhờ giá cao và sản lượng phục hồi.\n\nMảng florit: Giá florit bình quân năm 2025 duy trì xu hướng đi ngang, trong khi mặt bằng giá hiện tại đã tăng khoảng 4% so với cuối năm. Trong ngắn hạn, giá được kỳ vọng vận động theo xu hướng tăng nhẹ nhờ nguồn cung tiếp tục bị kiểm soát chặt từ Trung Quốc, trong khi nhu cầu duy trì ổn định, đặc biệt từ các ngành hóa chất và sản xuất vật liệu phục vụ chuỗi giá trị xe điện.\n\nKế hoạch chuyển sàn từ UPCoM lên HOSE: Năm 2026, MSR cũng lên kế hoạch hủy đăng ký giao dịch cổ phiếu trên sàn UPCoM để niêm yết trên sàn HOSE. Tập đoàn Masan cũng đã công bố nghị quyết về việc thoái tối đa 5% vốn tại MSR nhằm tăng tỷ lệ cổ phiếu tự do chuyển nhượng, giúp MSR đủ điều kiện trở thành công ty đại chúng và chuẩn bị cho quá trình chuyển sàn. Điều này sẽ giúp MSR cải thiện tính minh bạch, gia tăng thanh khoản và mở rộng tệp nhà đầu tư, đặc biệt là dòng vốn tổ chức và nhà đầu tư nước ngoài.\n\nKết quả kinh doanh của MSR ghi nhận sự cải thiện rõ rệt trong năm 2025. Bước sang năm 2026, doanh nghiệp đặt kế hoạch tăng trưởng tích cực cùng kỳ vọng niêm yết cổ phiếu trên sàn HOSE. Agriseco Research khuyến nghị tăng tỷ trọng cổ phiếu với giá mục tiêu là 56.000 đồng/cp (upside 16% so với giá hiện tại).\n\nPVS và PVT là 2 cổ phiếu thích hợp để đầu tư giai đoạn này\n\nCTCK MB (MBS)\n\nGiá dầu được kỳ vọng sẽ chuyển sang trạng thái biến động cao theo thông tin đàm phán, với mặt bằng giá duy trì ở mức cao tương đối trong ngắn hạn, thay vì quay trở lại vùng thấp trước xung đột. Với giá dầu neo cao, chúng tôi dự phóng hầu hết các doanh nghiệp dầu khí nội địa đều sẽ hưởng lợi trong quý I/2026 với lượng backlog dự án và giá bán sản phẩm tăng cao.\n\nChúng tôi ưu tiên lựa chọn các doanh nghiệp dầu khí có (1) định giá thấp và tiềm năng tăng giá còn nhiều, (2) hưởng lợi từ giá dầu tăng cao và (3) không bị ảnh hưởng quá lớn từ gián đoạn nguồn cung dầu. Dựa trên 3 yếu tố trên, chúng tôi đánh giá PVS và PVT là 2 cổ phiếu thích hợp để đầu tư giai đoạn này.\n\n>> Tải báo cáo\n\nKhuyến nghị mua dành cho cổ phiếu MCH\n\nCTCK Phú Hưng (PHS)\n\nSau khi chứng kiến mức sụt giảm về kết quả kinh doanh do gián đoạn chung của kênh GT trong năm 2025, kết quả kinh doanh 2 tháng đầu năm 2026 của CTCP Hàng tiêu dùng Masan (MCH – sàn HOSE) đã ghi nhận mức phục hồi rõ rệt, cho thấy hiệu quả ban đầu của mô hình Retail Supreme.\n\nCụ thể, doanh thu tăng 15,2% đạt 5.160 tỷ đồng, mức tăng trưởng được đóng góp bởi ngành hóa mỹ phẩm (tăng trưởng 27,7%), gia vị (tăng trưởng 22,8%) và thực phẩm tiện lợi (tăng trưởng 10,3%).\n\nMCH là doanh nghiệp dẫn đầu ngành hàng tiêu dùng tại Việt Nam, sở hữu hệ sinh thái thương hiệu mạnh, thị phần dẫn đầu, danh mục sản phẩm đa dạng đáp ứng mọi nhu cầu thiết yếu. Chúng tôi kỳ vọng MCH sẽ tiếp tục duy trì đà tăng trưởng bền vững và vượt trội so với ngành, nhờ hệ thống phân phối độc nhất, năng lực R&D, quảng bá thương hiệu mạnh mẽ cùng với chiến lược cao cấp hóa sản phẩm và mở rộng ra thị trường quốc tế.\n\nViệc niêm yết lên HOSE vào tháng 12/2025 sẽ mở ra cơ hội bổ sung vào các rổ chỉ số, thu hút dòng vốn mới; cùng với chính sách chi trả cổ tức cao cũng là yếu tố hấp dẫn cho các nhà đầu tư.\n\nCho năm 2026F/2027F, chúng tôi dự phóng MCH sẽ ghi nhận doanh thu thuần lần lượt tăng 11,2%/8,7% đạt 33.977/36.934 tỷ đồng. Sử dụng phương pháp DCF và P/E, chúng tôi ước tính giá hợp lý đối với MCH là 177.200 đồng/cổ phiếu. Do đó, chúng tôi đưa ra khuyến nghị mua với mức tăng giá tiềm năng là 25%"} +{"url": "https://baomoi.com/truy-to-nhom-dieu-hanh-bankland-lua-gan-500-ty-dong-cua-hon-5-300-bi-hai-c54920488.epi", "title": "Truy tố nhóm điều hành Bankland lừa gần 500 tỷ đồng của hơn 5 . 300 bị hại", "publish_date": "2026-04-12T14:39:07Z", "full_text": "Lập công ty huy động vốn để chiếm đoạt tiền\n\nNgày 12/4, Viện KSND TP Hà Nội vừa hoàn thành cáo trạng truy tố bị can Vũ Đức Tĩnh (SN 1981, ở phường Cát Lái, TP HCM) về tội \"Lừa đảo chiếm đoạt tài sản\".\n\nBị truy tố cùng tội danh với Tĩnh còn 9 người khác, trong đó có Nguyễn Thị Thanh Vân (34 tuổi, ở xã Phú Hội, tỉnh Lâm Đồng).\n\nTheo cáo buộc, để có tiền sử dụng vào mục đích cá nhân, từ tháng 10/2021 - 11/2022, Vũ Đức Tĩnh đã chỉ đạo thành lập 3 pháp nhân gồm: Công ty Bankland, Công ty Cawiho, Công ty GBF. Thực tế, 3 công ty này không hoạt động sản xuất kinh doanh, chỉ hoạt động theo hình thức đa cấp, huy động tiền của các nhà đầu tư sau để trả lãi cho nhà đầu tư trước.\n\nBị can Vũ Đức Tĩnh không đứng tên trong danh sách cổ đông các công ty, nhưng ông ta tự nhận là cố vấn cấp cao, chỉ đạo, điều hành hoạt động của cả 3 công ty này.\n\nĐối với Công ty Bankland, Vũ Đức Tĩnh phân công Quản Văn Dương giữ chức chủ tịch HĐQT, Nguyễn Thị Như giữ chức tổng giám đốc; Công ty Cawiho, Tĩnh phân công Tạ Văn Cương giữ chức chủ tịch HĐQT, Ninh Đại Dương quản lý, cập nhật thông tin và số tiền đầu tư của khách hàng trên trang web của công ty; còn Công ty GBF, Tĩnh phân công Vũ Hồng Quân giữ chức chủ tịch HĐQT và Kiều Văn Hoạch làm giám đốc.\n\nRiêng bị can Nguyễn Thị Thanh Vân được Tĩnh phân công là kế toán trưởng của 3 công ty trên.\n\nSau khi thành lập, Tĩnh chỉ đạo chủ tịch HĐQT và giám đốc của 3 công ty tổ chức hội nghị, hội thảo, cung cấp thông tin sai sự thật về các hình thức đầu tư nhằm kêu gọi góp vốn, mua cổ phiếu chưa niêm yết.\n\nTheo đó, tại Công ty Bankland, từ tháng 12/2021 - 9/2022, cơ quan truy tố xác định bị can Vũ Đức Tĩnh và đồng phạm đã chiếm đoạt được tổng số hơn 479 tỷ đồng của 5.291 bị hại, thông qua hình thức huy động vốn với lãi suất cao, bán cổ phiếu chưa được niêm yết và bán các dự án không có thật. Số tiền trên, nhóm Tĩnh cho nhà đầu tư hơn 28 tỷ đồng, còn chiếm đoạt hơn 451 tỷ đồng.\n\nCông ty Cawiho, từ tháng 11/2021 - 8/2022, các bị can đã chiếm đoạt hơn 88 tỷ đồng của 59 bị hại, thông qua hình thức huy động vốn với lãi suất cao và bán cổ phiếu chưa được niêm yết. Nhóm đã trả cho bị hại tổng số hơn 45 tỷ đồng, còn chiếm đoạt hơn 42 tỷ đồng.\n\nCòn tại Công ty GBF, từ tháng 8/2022 - 12/2022, nhóm của Tĩnh đã chiếm đoạt hơn 4,3 tỷ đồng của 18 bị hại cũng với chiêu thức tương tự. Đã trả lại cho bị hại gần 1 tỷ đồng, chiếm đoạt hơn 3,3 tỷ đồng.\n\nCơ quan truy tố quy kết, bị can Vũ Đức Tĩnh là người chỉ đạo, còn Nguyễn Thị Thanh Vân là kế toán trưởng. Hai bị can và đồng phạm được phân công làm lãnh đạo 3 công ty, đã chiếm đoạt của 5.368 bị hại số tiền hơn 572 tỷ đồng; đã trả hơn 75 tỷ đồng, còn chiếm đoạt hơn 497 tỷ đồng.\n\nHai bị can Quản Văn Dương, Nguyễn Thị Như trong vụ án.\n\nKhông thực hiện yêu cầu của cơ quan điều tra\n\nVề số tiền huy động được, các bị can chia nhau hưởng lợi theo mức khác nhau. Riêng Vũ Đức Tĩnh khai sử dụng để mua bất động sản ở nhiều địa phương, như Quảng Ninh và đặc khu kinh tế Phú Quốc.\n\nKết quả xác minh đối với bất động sản tại phường Hạ Long, tỉnh Quảng Ninh, cho thấy, các bị can mua 4 căn hộ từ Công ty TNHH Mặt trời Phú Quốc: Căn hộ S41210 do Nguyễn Thị Thanh Vân đứng tên giá trị vốn tự có là hơn 821 triệu đồng, vay ngân hàng hơn 5,7 tỷ đồng, tổng giá trị hơn 6,5 tỷ đồng; căn M639 do Nguyễn Thị Thanh Vân đứng tên giá trị vốn tự có hơn 2,8 tỷ đồng, không vay vốn ngân hàng; căn hộ S380 do Nguyễn Đức Minh đứng tên với vốn tự có là hơn 11,7 tỷ đồng, không vay vốn ngân hàng; căn hộ M637 do Nguyễn Văn Minh đứng tên với vốn tự có hơn 3 tỷ đồng, cũng không vay ngân hàng.\n\nCơ quan Cảnh sát điều tra Công an TP Hà Nội đã đề nghị Công ty TNHH Mặt trời Phú Quốc phối hợp làm thủ tục thanh lý hợp đồng mua bán và chuyển tiền sau khi thanh lý đến tài khoản của Công an TP Hà Nội để xử lý theo quy định của pháp luật. Tuy nhiên, cáo trạng thể hiện đến nay, Công ty TNHH Mặt trời Phú Quốc chưa trả lời yêu cầu trên của Công an TP Hà Nội.\n\nNgoài các bất động sản trên, bị can Vũ Đức Tĩnh còn nhờ lái xe của mình đứng tên các căn hộ số V502 và C132 tại một dự án ở Hạ Long. Cụ thể, tại căn C132 của dự án, tổng số tiền đã được thanh toán là gần 2,6 tỷ đồng, sau khi hai bên thỏa thuận thống nhất thanh lý hợp đồng, Công ty CP Bất động sản Mặt trời 2 phải trả cho lái xe của Tĩnh số tiền 3 tỷ đồng và doanh nghiệp này đã chuyển tiền vào tài khoản của Công an TP Hà Nội. Đối với căn V502, tổng số tiền đã thanh toán là gần 7,5 tỷ đồng, sau khi hai bên thỏa thuận thống nhất thanh lý hợp đồng, Công ty CP Bất động sản Mặt trời 2 phải trả cho lái xe của Tĩnh hơn 8,6 tỷ đồng.\n\nTrong các ngày 24/4/2024 và 28/11/2024, Cơ quan điều tra yêu cầu Công ty CP Bất động sản Mặt trời 2 chuyển toàn bộ số tiền trên đến tài khoản của Công an TP Hà Nội nhưng đến nay, doanh nghiệp này chưa thực hiện."} +{"url": "https://www.reflector.com/news/national/lessons-learned-in-70s-have-made-the-us-and-world-economies-less-vulnerable-to-oil/article_889e87a7-70fd-5892-8f19-f669048a2cd2.html", "title": "Lessons learned in 70s have made the US and world economies less vulnerable to oil shocks", "publish_date": "2026-04-12T14:39:07Z", "full_text": "State Alabama Alaska Arizona Arkansas California Colorado Connecticut Delaware Florida Georgia Hawaii Idaho Illinois Indiana Iowa Kansas Kentucky Louisiana Maine Maryland Massachusetts Michigan Minnesota Mississippi Missouri Montana Nebraska Nevada New Hampshire New Jersey New Mexico New York North Carolina North Dakota Ohio Oklahoma Oregon Pennsylvania Rhode Island South Carolina South Dakota Tennessee Texas Utah Vermont Virginia Washington Washington D.C. West Virginia Wisconsin Wyoming Puerto Rico US Virgin Islands Armed Forces Americas Armed Forces Pacific Armed Forces Europe Northern Mariana Islands Marshall Islands American Samoa Federated States of Micronesia Guam Palau Alberta, Canada British Columbia, Canada Manitoba, Canada New Brunswick, Canada Newfoundland, Canada Nova Scotia, Canada Northwest Territories, Canada Nunavut, Canada Ontario, Canada Prince Edward Island, Canada Quebec, Canada Saskatchewan, Canada Yukon Territory, Canada\n\nZip Code"} +{"url": "https://www.prnewswire.com/news-releases/the-conference-board-employment-trends-index-eti-declined-in-march-302734697.html", "title": "The Conference Board Employment Trends Index™ ( ETI ) Declined in March", "publish_date": "2026-04-12T14:39:07Z", "full_text": "NEW YORK, April 6, 2026 /PRNewswire/ -- The Conference Board Employment Trends Index™ (ETI) declined to 105.72 in March, from an upwardly revised 105.84 in February. The Employment Trends Index is a leading composite index for payroll employment. When the Index increases, employment is likely to grow as well, and vice versa. Turning points in the Index indicate that a change in the trend of job gains or losses is about to occur in the coming months.\n\n\"Job seekers continue to face a challenging market,\" said Mitchell Barnes, Economist at The Conference Board. \"This is evident in the ETI as several components moderated in March. Overall, the US economy has remained surprisingly resilient, but rising geopolitical uncertainty may contribute to ongoing employer hesitancy to add more workers.\"\n\nThe share of consumers who report \"jobs are hard to get\"—an ETI component from the Consumer Confidence Survey®—climbed to 21.5% in March and reflects a 5-percentage point rise since March 2025. The share of small firms reporting that jobs are 'not able to be filled right now' declined by 1 percentage point in March to reach 32%. The share of involuntary part-time workers rose in March to 16.5%, but that measure declined from 19.4% in December.\n\nInitial claims for unemployment insurance declined to 207,800 in March, reflecting a steady decline in jobless claims from the 2025 average of 226,450. Employment in the temporary help services industry rose marginally in March and in three of the last five months. Industrial production and real manufacturing and trade sales were also steady in their most recent data releases.\n\nMarch's decrease in the Employment Trends Index was a result of negative contributions from five of its eight components: the Ratio of Involuntarily Part-time to All Part-time Workers, the Percentage of Firms with Positions Not Able to Fill Right Now, the Percentage of Respondents Who Say They Find 'Jobs Hard to Get, Industrial Production, and Real Manufacturing and Trade Sales. Three components contributed positively: Initial Claims for Unemployment Insurance, Job Openings, and the Number of Employees Hired by the Temporary-Help Industry.\n\nThe eight leading indicators of employment aggregated into the Employment Trends Index include:\n\nPercentage of Respondents Who Say They Find \"Jobs Hard to Get\" (The Conference Board Consumer Confidence Survey ® )\n\n) Initial Claims for Unemployment Insurance (U.S. Department of Labor)\n\nPercentage of Firms with Positions Not Able to Fill Right Now (© National Federation of Independent Business Research Foundation)\n\nNumber of Employees Hired by the Temporary-Help Industry (U.S. Bureau of Labor Statistics)\n\nRatio of Involuntarily Part-time to All Part-time Workers (BLS) ⴕ\n\nJob Openings (BLS)**\n\nIndustrial Production (Federal Reserve Board)*\n\nReal Manufacturing and Trade Sales (U.S. Bureau of Economic Analysis)***\n\n*Statistical imputation for the recent month\n\n**Statistical imputation for two most recent months (due to data release delays)\n\n***Statistical imputation for three most recent months (due to data release delays)\n\nⴕ Note missing October 2025 value for Ratio of Involuntarily Part-time Workers estimated using linear interpolation\n\nThe Conference Board publishes the Employment Trends Index monthly, at 10 a.m. ET, on the Monday that follows each Friday release of the Bureau of Labor Statistics Employment Situation report. The technical notes to this series are available on The Conference Board website: http://www.conference-board.org/data/eti.cfm.\n\nAbout The Conference Board\n\nThe Conference Board is the member-driven think tank that delivers trusted insights for what's ahead. Founded in 1916, we are a non-partisan, not-for-profit entity holding 501 (c) (3) tax-exempt status in the United States. www.conference-board.org.\n\nEmployment Trends Index (ETI)™ 2026 Publication Schedule Index Release Date (10 AM ET) Data for the Month Monday, February 9th 2026 January 2025 Monday, March 9th February Monday, April 6th March Monday, May 11th April Monday, June 8th May Monday, July 6th June Monday, August 10th July Tuesday, September 8th August Monday, October 5th September Monday, November 9th October Monday, December 7th November Monday, January 11th 2027 December\n\n\n\n\n\nSOURCE The Conference Board"} +{"url": "https://www.sozcu.com.tr/30-yildir-ilk-kez-yasaniyor-merkez-bankalari-dolardan-kacip-altina-sigindi-p309549", "title": "30 yıldır ilk kez yaşanıyor : Merkez bankaları dolardan kaçıp altına sığındı", "publish_date": "2026-04-12T14:39:07Z", "full_text": "Merkez bankalarının altına yönelmesi ile küresel rezerv dengelerinde tarihi bir eşik aşıldı. Bloomberg verilerine göre merkez bankalarının altın stokları, son 30 yılda ilk kez ABD Hazine tahvillerinin önüne geçti.\n\nMerkez bankalarının toplam altın rezervi 30 yıldır ilk kez, ABD hazine tahvillerini geride bıraktı. Analistlere göre bu, ülkelerin dolar cinsi varlıklardan bilinçli ve hızlı uzaklaşmasını yansıtan kritik dönüm noktası oldu.\n\nABD TAHVİLLERİNİ SOLLADI\n\nBloomberg verilerine göre, altın artık küresel merkez bankası rezervlerinin yüzde 24'ünü oluştururken, ABD hazine tahvillerinin rezervlerdeki payı ise yüzde 21 seviyesine geriledi. Toplam altın rezervleri yaklaşık 4 trilyon dolara yükselirken ABD tahvillerinin payını 3,9 trilyon dolar civarında olduğu değerlendiriliyor.\n\n2015'in son çeyreğinde merkez bankalarının rezervlerinde ABD hazine tahvilleri yüzde 33, altın ise yüzde 9 seviyesindeydi.\n\nMERKEZ BANKALARI İÇİN STRATEJİK ALTERNATİF\n\nAnalistlere göre rezervlerdeki denge değişimi Rusya'nın Ukrayna'yı işgalinden sonra döviz varlıklarının dondurulması ile başladı. 2022'de ABD ve müttefikleri Rus Merkez Bankası varlıklarından yaklaşık 300 milyar doları dondurmuş, bu hamle dolar cinsinden varlıklara el konulabileceği gerçeğini gözler önüne sermişti.\n\nYaptırımlardan muaf olan ve risk taşımayan altın ise bu süre zarfında merkez bankaları için stratejik alternatif haline geldi.\n\nDÜNYA ALTIN KONSEYİ AÇIKLADI\n\nDünya Altın Konseyi verilerine göre, merkez bankaları 2025'te toplam altın fiyatlarındaki yükselişe rağmen 863 ton altın alımı gerçekleştirdi. Bu miktar, kayıtlardaki en yüksek dördüncü yıllık artış olarak öne çıkarken son on yıl ortalamasının neredeyse iki katına ulaştı.\n\nBu süreçte en fazla alımı ise Polonya Merkez Bankası gerçekleştirdi. Banka, rezervlerine 102 ton daha altın ekleyerek toplam rezervlerini 550 tona çıkardı.\n\nÇin Halk Bankası da bu süreçte resmi olarak 27 tonluk alım açıklasa da Dünya Altın Konseyi, geçen yılki toplam alımların yaklaşık yüzde 57'sinin bildirilmediğini ve gerçek birikimin önemli ölçüde daha yüksek olduğunu belirtiyor.\n\nALIMLAR SÜRECEK\n\nDiğer yandan Dünya Altın Konseyi'nin 2025 Merkez Bankası Altın Rezervleri Anketine göre merkez bankaları önümüzdeki yıllarda da altın alımına devam edeceğinin sinyalini veriyor. Katılımcılar altın rezervlerini azaltma niyetinde olmadığını belirtirken, doların da küresel rezervlerdeki payının 5 yıl sonra daha düşük olmasını bekliyor.\n\nABD doları küresel ticarette, emtia fiyatlamasında ve finansal sözleşmelerdeki baskın konumunu korusa da küresel rezervlerdeki payı yüzde 72 seviyesinden yüzde 58'e düştü. Bu düşüş ise ABD'de mali açıkların düşük faizle finanse edilmesini giderek zorlaştırıyor.\n\nAynı zamanda altın, 2025 yılını yaklaşık yüzde 70’lik yükselişle tamamlayarak 1979'den beri en güçlü yıllık performansını gösterdi. Bu yükselişi destekleyen kurumsal alımların da hız kesmeden sürdüğü görülüyor.\n\n*BU HABERDE YER ALAN İFADELER YATIRIM TAVSİYESİ DEĞİLDİR."} +{"url": "https://www.tinnhanhchungkhoan.vn/tien-re-co-quay-lai-chung-khoan-sang-cua-but-pha-post388709.html", "title": "Tiền rẻ có quay lại , chứng khoán sáng cửa bứt phá ? ", "publish_date": "2026-04-12T14:39:07Z", "full_text": "(ĐTCK) Mặt bằng lãi suất hạ nhiệt cùng kỳ vọng nâng hạng thị trường đang kích hoạt dòng tiền quay lại chứng khoán. Trong bối cảnh đó, các nhóm xây dựng, vật liệu, bán lẻ và ngân hàng nổi lên như những điểm đến tiềm năng của dòng vốn trong giai đoạn tới.\n\nTrong bối cảnh thị trường đang dao động trong vùng sideway và chịu tác động đan xen từ thông tin nâng hạng cũng như yếu tố địa chính trị, liệu VN-Index trong tuần tới sẽ tiếp tục mở rộng nhịp hồi hướng tới vùng 1.800 điểm hay quay lại kiểm định vùng hỗ trợ quanh 1.700–1.720 điểm để tích lũy lại trước khi xác lập xu hướng rõ ràng hơn, theo ông/bà?\n\nÔng Lâm Gia Khang, Trưởng bộ phận phân tích thị trường, CTCK Vietinbank (CTS)\n\nVới việc FTSE đã chính thức công nhận thị trường đạt tiêu chuẩn của thị trường mới nổi, Chính phủ tiếp tục giữ nguyên mục tiêu tăng trưởng GDP năm 2026 ở mức 10%, dòng tiền bắt đầu chảy mạnh trở lại vào thị trường với thanh khoản trung bình mỗi phiên đạt trên 24.000 tỷ đồng, dự kiến chỉ số VN-Index sẽ tiếp tục duy trì xu hướng tăng điểm và áp sát kháng cự 1.800 điểm trong tuần tới, dù vẫn chịu tác động từ yếu tố bất định từ kết quả đàm phán tại Islamabad giữa Mỹ và Iran liên quan đến các vấn đề eo biển Hormuz, chương trình hạt nhân Iran, sự hiện diện của các căn cứ quân sự của Mỹ ở khu vực Trung Đông.\n\nÔng Nguyễn Thế Minh, Giám đốc Khối Nghiên cứu và phát triển - Công ty Chứng khoán Yuanta Việt Nam\n\nTôi cho rằng chỉ số VN-Index có thể sẽ hướng tới thử thách mức 1.800 điểm trong tuần giao dịch tới, nhưng thị trường có thể xuất hiện nhịp điều chỉnh khi chạm mức kháng cự này. Nhìn chung, rủi ro địa chính trị đã giảm đáng kể và xu hướng ngắn hạn vẫn đang trong xu hướng tăng cho nên tôi kỳ vọng thị trường sẽ duy trì đà tăng trong tuần giao dịch tới, nhưng đà tăng này sẽ di chuyển theo hướng zig zag với các phiên tăng giảm đan xen.\n\nBà Châu Thiên Trúc Quỳnh - Giám đốc Điều hành khối Tư vấn đầu tư Vietcap\n\nQuan điểm kỹ thuật: Diễn biến hiện tại cho thấy lực mua tại vùng giá cao vẫn duy trì trên thị trường, tập trung rõ hơn ở nhóm có tính dẫn dắt cao là Ngân hàng. Do đó, chúng tôi cho rằng trở ngại tại đường MA50 (1.750 điểm) mang tính ngắn hạn, tuy nhiên, với những diễn biến của tình hình chính trị thế giới, nếu nhịp điều chỉnh xuất hiện trong phiên 13/04, nhiều khả năng sẽ được giới hạn bởi vùng hỗ trợ gần tại 1.725 điểm trước khi xác lập xu hướng rõ ràng hơn.\n\nÔng Trần Thái Bình - CFA, Giám đốc Cấp cao Khối Phân tích OCBS\n\nTrong bối cảnh thị trường đang tích lũy trong biên độ hẹp với các yếu tố địa chính trị còn khó lường, tôi nghiêng về kịch bản VN-Index sẽ cần những nhịp kiểm định quanh vùng hiện tại trước khi có đủ động lực chinh phục các ngưỡng cao hơn. Thị trường sẽ phân hóa mạnh hơn khi bước vào mùa báo cáo quý I sắp đến. Việc hướng tới mốc trên 1.800 điểm là hoàn toàn khả thi trong trung hạn nhờ kỳ vọng nâng hạng.\n\nTuy nhiên, trong ngắn hạn, sẽ xuất hiện nhiều nhịp rung lắc để thay máu dòng tiền sẽ giúp xu hướng tăng trưởng bền vững hơn. Sự thận trọng ở đây là cần thiết để hấp thụ hết các áp lực chốt lời và những phản ứng tâm lý từ tin tức quốc tế. Nói cách khác, giai đoạn này thiên về tích lũy sức mạnh hơn là bứt phá ngay lập tức.\n\nVới kỳ vọng nâng hạng thị trường và dòng vốn ETF có thể lên tới hàng tỷ USD trong giai đoạn tới, đâu sẽ là nhóm ngành thực sự hưởng lợi bền vững, thay vì chỉ tăng theo hiệu ứng tâm lý ngắn hạn?\n\nÔng Lâm Gia Khang, Trưởng bộ phận phân tích thị trường, CTCK Vietinbank (CTS)\n\nĐể đạt được mục tiêu tăng trưởng GDP ở mức 10% trong khi hoạt động xuất khẩu - vốn là một trong ba lực đẩy chính của nền kinh tế tiếp tục bị ảnh hưởng tiêu cực bởi xu hướng bảo hộ thị trường nội địa của các quốc gia cùng tình hình địa chính trị phức tạp, hoạt động đầu tư công dự kiến sẽ tích cực được đẩy mạnh trong phần còn lại của năm 2026. Điều này sẽ mở ra nhiều cơ hội thuận lợi cho các doanh nghiệp ngành xây dựng hạ tầng và vật liệu xây dựng như đá, xi măng, nhựa đường, thép.\n\nNgoài ra, nhóm cổ phiếu bán lẻ cũng là nhóm có nhiều kỳ vọng khi Chính phủ nhiều khả năng sẽ thực hiện nhiều chính sách kích cầu nội địa nhằm bù đắp dư địa tăng trưởng bị co hẹp lại của hoạt động xuất khẩu. Theo dữ liệu từ Tổng Cục Thống kê, tổng mức bán lẻ hàng hóa và doanh thu dịch vụ tiêu dùng trong quý I/2026 tăng 10,9% so với cùng kỳ năm trước.\n\nBên cạnh đó, nhà đầu tư cũng có thể cân nhắc giải ngân vào nhóm cổ phiếu ngân hàng khi đây là kênh dẫn vốn quan trọng góp phần đẩy nhanh tiến độ các dự án đầu tư công. Bên cạnh đó, riêng các ngân hàng quốc doanh cũng dự kiến sẽ tiến hành bơm 1 triệu tỷ đồng ra nền kinh tế trong năm 2026 để thúc đẩy tăng trưởng.\n\nÔng Nguyễn Thế Minh, Giám đốc Khối Nghiên cứu và phát triển - Công ty Chứng khoán Yuanta Việt Nam\n\nKhi TTCK Việt Nam được nâng hạng thì các cổ phiếu có quy mô vốn hóa càng lớn và có tỷ lệ room ngoại còn lại càng cao thì càng hưởng lợi. Do đó, các nhà đầu tư có thể nên chú ý vào các nhóm cổ phiếu vốn hóa lớn, đặc biệt trong VN30 để đầu tư theo chu kỳ nâng hạng. Tuy nhiên, tôi lưu ý hiệu ứng nâng hạng thị trường thường chỉ tác động tích cực trong thời gian ngắn hạn và sau đó thị trường sẽ thường chịu tác động bởi các nền tảng vĩ mô và cơ bản.\n\nBà Châu Thiên Trúc Quỳnh - Giám đốc Điều hành khối Tư vấn đầu tư Vietcap\n\nViệc nâng hạng của thị trường sẽ có hiệu lực từ thứ Hai, ngày 21/09/2026. Các quỹ chỉ số sẽ thực hiện mua cổ phiếu Việt Nam theo lộ trình 4 đợt như sau: 21/09/2026 (tỷ trọng 10%), 22/03/2027 (20%), 21/06/2027 (35%) và 20/09/2027 (35%). Các cổ phiếu Việt Nam đáp ứng các tiêu chí để có thể được đưa vào chỉ số FTSE Global All Cap bao gồm: HPG, VCB, BID, VHM, VIC, MSN, SAB, FPT, VNM, SSI, DPM, KBC, HUT, SHB, DIG, EIB, DXG, KDH, VIX, VND, PDR, DGC, NVL, VJC, VCI, VRE, GEX, FRT, GEE, BSR, KDC, STB. FTSE Russell sàng lọc các cổ phiếu dựa trên nhiều tiêu chí như tỷ lệ sở hữu nhà đầu tư nước ngoài còn lại, quy mô vốn hóa, thanh khoản và tỷ lệ cổ phiếu tự do chuyển nhượng (free float).\n\nDựa trên những yếu tố đó cho thấy danh mục chủ yếu nhóm cổ phiếu trong VN30, nhóm mid- cap mạnh. Nếu xét về phân loại ngành thì là ngân hàng, tiêu dùng bán lẻ, bất động sản, chứng khoán, sản xuất… và thời gian giải ngân còn khá xa. Do vậy, chúng ta nên hướng tới những cổ phiếu còn nền tảng vững chắc , thay vì hiệu ứng tâm lý ngắn hạn.\n\nÔng Trần Thái Bình - CFA, Giám đốc Cấp cao Khối Phân tích OCBS\n\nKhi dòng vốn ETF và các quỹ ngoại quy mô lớn đổ vào, họ sẽ ưu tiên các tiêu chí về vốn hóa, thanh khoản và quản trị doanh nghiệp. Thay vì các nhóm tăng nóng theo tin đồn, hai nhóm ngành tiêu biểu sẽ hưởng lợi thực chất bao gồm nhóm Ngân hàng với tỷ trọng vốn hóa lớn nhất, đây vẫn là nhóm chiếm tỷ trọng lớn trong chỉ số và có tính đại diện cao cho nền kinh tế. Những ngân hàng có hệ số CAR cao và tỷ lệ nợ xấu được kiểm soát tốt sẽ là lựa chọn hàng đầu. Nhóm chứng khoán được hưởng lợi trực tiếp từ thanh khoản thị trường gia tăng và sự mở rộng của nhà đầu tư nước ngoài.\n\nNgoài ra, các doanh nghiệp đầu ngành có free-float lớn trong các lĩnh vực như bất động sản, bán lẻ, tiêu dùng, hạ tầng hoặc công nghệ sẽ được ưu tiên lựa chọn. Những nhóm này không chỉ tăng theo tâm lý mà sẽ được khối ngoại mua ròng thực chất vì đáp ứng tiêu chí FTSE về vốn hóa, thanh khoản và tỷ lệ tự do chuyển nhượng. Ngược lại, các cổ phiếu nhỏ, thanh khoản kém chỉ hưởng lợi ngắn hạn và dễ đảo chiều mạnh.\n\nTrong góc nhìn của ông/bà, việc mặt bằng lãi suất huy động giảm và định hướng nới lỏng chính sách tiền tệ có đủ để kích hoạt dòng tiền quay lại thị trường chứng khoán trong ngắn hạn, đặc biệt với các nhóm nhạy cảm như bất động sản và chứng khoán?\n\nÔng Lâm Gia Khang, Trưởng bộ phận phân tích thị trường, CTCK Vietinbank (CTS)\n\nViệc mặt bằng lãi suất huy động hạ nhiệt sẽ khiến hoạt động gửi tiền tại các ngân hàng trở nên kém hấp dẫn hơn, qua đó kích hoạt dòng tiền chảy mạnh hơn vào các kênh đầu tư có mức độ rủi ro cao hơn như bất động sản và chứng khoán. Bên cạnh đó, định hướng nới lỏng chính sách tiền tệ cũng sẽ tạo điều kiện thuận lợi cho các doanh nghiệp niêm yết cải thiện hoạt động kinh doanh, giúp định giá thị trường trở nên hấp dẫn hơn và thu hút sự tham gia mạnh của dòng vốn đầu tư trong nước và quốc tế.\n\nÔng Nguyễn Thế Minh, Giám đốc Khối Nghiên cứu và phát triển - Công ty Chứng khoán Yuanta Việt Nam\n\nThanh khoản hệ thống đã hồi phục trở lại, cùng với đó là rủi ro lạm phát có thể sớm hạ nhiệt dần khi giá dầu cũng đã bắt đầu bước vào xu hướng giảm ngắn hạn cho nên tôi kỳ vọng lãi suất có thể sớm hạ nhiệt trong thời gian tới, điều này có thể tác động tích cực lên các nhóm Ngân hàng, chứng khoán và bất động sản trong bối cảnh các nhóm cổ phiếu này đang có mức định giá thấp.\n\nBà Châu Thiên Trúc Quỳnh - Giám đốc Điều hành khối Tư vấn đầu tư Vietcap\n\nViệc mặt bằng lãi suất huy động giảm và định hướng nới lỏng chính sách sẽ giúp tâm lý thị trường bình tĩnh trở lại, ổn định được xu hướng, không bán tháo các cổ phiếu nhóm bất động sản, chứng khoán cũng như ổn định chính sách margin (lãi suất đầu ra) của các công ty chứng khoán.\n\nTuy nhiên, để kích hoạt dòng tiền quay trở lại với các nhóm ngành trên hoặc với thị trường chứng khoán ngay trong ngắn hạn cần thêm thời gian thẩm thấu chính sách cũng như nhà đầu tư gửi tiết kiệm với lãi suất cao trước đó không thể rút ra nhanh được để chuyển đổi.\n\nÔng Trần Thái Bình - CFA, Giám đốc Cấp cao Khối Phân tích OCBS\n\nViệc mặt bằng lãi suất huy động duy trì ở mức thấp và định hướng chính sách tiền tệ theo hướng hỗ trợ tăng trưởng rõ ràng là yếu tố tích cực đối với thị trường chứng khoán. Khi chi phí vốn giảm, dòng tiền có xu hướng tìm kiếm kênh sinh lời cao hơn, và chứng khoán thường là một trong những lựa chọn tự nhiên. Khi lãi suất tiết kiệm giảm, khoảng cách giữa lãi suất huy động và lợi suất cổ phiếu sẽ thu hẹp, khiến dòng tiền từ gửi tiết kiệm và trái phiếu chuyển sang các kênh khác trong đó có kênh chứng khoán.\n\nNhóm bất động sản và chứng khoán sẽ là những nhóm phản ứng nhanh nhất. Tuy nhiên, tôi thận trọng lưu ý: hiệu ứng này cần thời gian hàng tháng để lan tỏa, và chỉ thực sự mạnh khi kinh tế tăng trưởng bền vững và lạm phát được kiểm soát tốt. Nếu địa chính trị bất ổn, dòng tiền có thể vẫn chọn phòng thủ thay vì đổ mạnh vào rủi ro cao. Nhà đầu tư còn cân nhắc nhiều yếu tố khác như triển vọng lợi nhuận doanh nghiệp, rủi ro toàn cầu và tâm lý thị trường.\n\nTrong ngắn hạn, các nhóm ngành này có thể phản ứng khá nhạy với thông tin lãi suất, nhưng để hình thành một xu hướng tăng bền vững vẫn cần nhiều yếu tố kết hợp và hỗ trợ.\n\nTrong bối cảnh thị trường chưa hình thành xu hướng rõ ràng và vẫn vận động sideway, nhà đầu tư nên ưu tiên chiến lược trading ngắn hạn theo nhịp điều chỉnh hay tích lũy trung hạn ở các cổ phiếu có nền tảng tốt và định giá hấp dẫn, theo ông/bà?\n\nÔng Lâm Gia Khang, Trưởng bộ phận phân tích thị trường, CTCK Vietinbank (CTS)\n\nNhà đầu tư ngắn hạn được khuyến nghị tận dụng diễn biến điều chỉnh và rung lắc của thị trường để tiến hành giải ngân vào các cổ phiếu thuộc các nhóm ngành được kỳ vọng tiếp tục duy trì đà tăng trưởng đã được đề cập ở trên. Việc giải ngân nên được tiến hành từng phần và đòi hỏi tuân thủ chặt chẽ kỷ luật giao dịch, tiến hành cắt lỗ khi thị giá giảm hơn 7% kể từ vùng giá tiến hành mua vào.\n\nÔng Nguyễn Thế Minh, Giám đốc Khối Nghiên cứu và phát triển - Công ty Chứng khoán Yuanta Việt Nam\n\nTôi cho rằng nhà đầu tư có thể tận dụng nhịp điều chỉnh ngắn hạn để mua vào cho các chiến lược trading ngắn hạn vì tôi đánh giá cơ hội ngắn hạn đang gia tăng. Đồng thời, xu hướng trong dài hạn vẫn đang tăng cho nên các nhà đầu tư có thể tích lũy trong nhịp điều chỉnh để gia tăng tỷ trọng cổ phiếu.\n\nÔng Trần Thái Bình - CFA, Giám đốc Cấp cao Khối Phân tích OCBS\n\nTrong bối cảnh thị trường chưa xác lập xu hướng rõ ràng, tôi cho rằng chiến lược linh hoạt là phù hợp nhất. Nhà đầu tư ngắn hạn có thể tận dụng các nhịp điều chỉnh về vùng hỗ trợ để trading, đặc biệt ở những cổ phiếu có chất lượng tốt đang hình thành nền giá tích lũy. Song song đó, với tầm nhìn trung hạn, đây cũng là giai đoạn phù hợp để tích lũy từng phần các cổ phiếu có nền tảng cơ bản tốt, định giá hợp lý và triển vọng tăng trưởng rõ ràng.\n\nKhi thị trường bước sang chu kỳ tăng mới - đặc biệt nếu câu chuyện nâng hạng trở thành hiện thực - những cổ phiếu này thường là nhóm dẫn dắt xu hướng thay vì chỉ tăng theo hiệu ứng tâm lý ngắn hạn. Thị trường hiện nay giống như một chiếc lò xo đang được nén lại: có thể chưa bật mạnh ngay, nhưng càng tích lũy đủ lâu thì khi xu hướng hình thành, biên độ tăng trưởng thường sẽ đáng kể."} diff --git a/Data/1_Bronze_Raw/News_Scrapes/2026-04-12/Full_text/full_text_macro_geopolitics_risk.jsonl b/Data/1_Bronze_Raw/News_Scrapes/2026-04-12/Full_text/full_text_macro_geopolitics_risk.jsonl new file mode 100644 index 0000000..4d04831 --- /dev/null +++ b/Data/1_Bronze_Raw/News_Scrapes/2026-04-12/Full_text/full_text_macro_geopolitics_risk.jsonl @@ -0,0 +1,5 @@ +{"url": "https://www.readingchronicle.co.uk/news/national/26014084.russia-ukraine-trade-blame-violating-orthodox-easter-ceasefire/", "title": "Russia and Ukraine trade blame for violating Orthodox Easter ceasefire", "publish_date": "2026-04-12T14:41:52Z", "full_text": "Russian President Vladimir Putin on Thursday called a 32-hour ceasefire over the Orthodox Easter weekend, ordering Russian forces to halt hostilities from 4pm on Saturday until the end of Sunday.\n\nUkrainian President Volodymyr Zelensky promised to abide by the ceasefire, but warned there would be a swift military response to any violations.\n\nThe General Staff of Ukraine’s Armed Forces said in a statement on Sunday it had recorded 2,299 ceasefire violations by 7am local time, including assaults, shelling and small drone launches.\n\nAn Easter bread with a candle in it was found covered by dust by Ukrainian emergency services following a Russian drone strike on Sumy on Saturday (Ukrainian Emergency Service/AP)\n\nIt said the use of long-range drones, missiles, or guided bombs had not been reported.\n\nA Ukrainian military officer had said on Saturday that Russian forces had continued to attack their positions.\n\nRussia’s Defence Ministry, meanwhile, said on Sunday it had recorded 1,971 ceasefire violations by Ukrainian forces, including drone strikes on Russia’s Kursk and Belgorod regions that injured civilians.\n\nPrevious attempts to secure ceasefires have had little or no impact, with the two sides blaming each other for violations.\n\nMr Putin unilaterally declared a 30-hour ceasefire last Easter, but each side accused the other of breaking it."} +{"url": "https://www.bordertelegraph.com/news/national/26014105.starmer-urges-us-iran-to-find-way-through-peace-talks-fail/", "title": "Starmer urges US and Iran to find a way through after peace talks fail", "publish_date": "2026-04-12T14:41:52Z", "full_text": "The Prime Minister also called for the fragile ceasefire to continue and warned against any further escalation.\n\nBut the US president cast fresh uncertainty over any hope of a fast resolution to the conflict as he lambasted Iran for failing to release its grip on the vital oil and gas shipping lane and commit to giving up its nuclear ambitions.\n\nIn a lengthy post on his Truth Social platform after the peace talks ended without a deal, Mr Trump said the US would “immediately” start “BLOCKADING any and all Ships trying to enter, or leave, the Strait of Hormuz”.\n\nHe added that the US navy would also “seek and interdict every vessel in International Waters that has paid a toll to Iran. No one who pays an illegal toll will have safe passage on the high seas”.\n\nHe added, without elaborating: “Other Countries will be involved with this Blockade.”\n\nHe said talks in Pakistan involving US Vice-President JD Vance “went well, most points were agreed to, but the only point that really mattered, NUCLEAR, was not”.\n\nSir Keir discussed Washington and Tehran’s negotiations with the Sultan of Oman after the two sides’ 21-hour session ended without an agreement in the early hours of Sunday.\n\nIn a readout of Sir Keir’s call with His Majesty Sultan Haitham bin Tarik al Said, a Downing Street spokeswoman said: “They discussed the peace talks held in Pakistan over the weekend and urged both sides to find a way through.\n\n(PA Graphics)\n\n“It was vital there was a continuation of the ceasefire, and that all parties avoided any further escalation, the leaders agreed.”\n\nThey also discussed efforts to reopen the Strait of Hormuz, which has been throttled by Iran, sending energy prices soaring.\n\nBritain will host further talks on reopening the maritime pinch-point with a coalition of countries next week.\n\nAccording to the call readout: “His majesty updated on the situation in the Strait of Hormuz, and the Prime Minister thanked him for Oman’s efforts to rescue sailors from vessels in distress in the region.\n\n“Reflecting on international efforts to co-ordinate safe passage for shipping in the region, the Prime Minister said that following meetings convened by the Foreign Secretary and British military planners, partners continued to work towards restoring freedom of navigation for the long term.”\n\nThe meeting next week is expected to look for ways to support a sustainable end to the conflict and focus on increasing international diplomatic pressure on Iran to reopen the strait, according to an official with knowledge of the planning.\n\nThis includes exploring co-ordinated economic and political measures, such as sanctions, and working with the International Maritime Organisation to secure the release of thousands of ships and sailors trapped in the strait.\n\nWes Streeting said ministers have learned to draw a distinction between what Donald Trump ‘says and what he does’ (Jeff Overs/BBC)\n\nIt would be the third meeting hosted by Britain regarding the issue this month, following a virtual meeting of more than 40 nations convened by the Foreign Secretary and a gathering of allied military officers.\n\nThe Prime Minister visited allies in the Gulf this week for talks on how to support what he described as a “fragile” ceasefire.\n\nGulf nations have borne the brunt of Tehran’s retaliation for the US-Israeli campaign against it, with thousands of Iranian missiles and drones targeting US military sites and energy infrastructure there.\n\nMr Trump agreed a two-week ceasefire earlier this week, with the reopening of the Strait of Hormuz a key condition, shortly after warning Iran that “a whole civilisation will die” if it did not meet his demands.\n\nHealth Secretary Wes Streeting criticised Mr Trump’s “incendiary, provocative, outrageous” language, and said ministers had learned to draw a distinction between what the American leader “says and what he does”.\n\nDisagreements over the Iran war, Greenland and the Chagos Islands, as well as the US president’s repeated jibes against the UK, had “undoubtedly strained” UK-US relations, the senior minister added."} +{"url": "https://article.wn.com/view/2026/04/12/China_to_reinstate_some_Taiwan_ties_after_opposition_leaders/", "title": "China to reinstate some Taiwan ties after opposition leader visit", "publish_date": "2026-04-12T14:41:52Z", "full_text": "China said Sunday it would resume some suspended ties with Taiwan, including direct flights and imports of aquaculture products, following a visit by a Beijing-friendly opposition ...... read full story"} +{"url": "https://www.muensterschezeitung.de/nachrichten/schlagzeilen/ukraine-krieg-tausende-verstoesse-bei-osterwaffenruhe-beklagt-3530354", "title": "Ukraine - Krieg : Tausende Verste bei Osterwaffenruhe beklagt", "publish_date": "2026-04-12T14:41:52Z", "full_text": "Die von Kremlchef Putin angeordnete Waffenruhe zum orthodoxen Osterfest ist erwartungsgemäß brüchig. Aber zumindest sind Hunderte Kriegsgefangene wieder in Freiheit. Wie geht es im Krieg weiter?\n\nKremlchef Wladimir Putin hat zum orthodoxen Osterfest eine Waffenruhe in seinem Angriffskrieg gegen die Ukraine angeordnet.\n\nDie Ukraine und Russland haben sich bei ihrer vereinbarten Waffenruhe zum orthodoxen Osterfest gegenseitig Tausende Verstöße vorgeworfen. Allerdings gab es anders als sonst nach Angaben des Generalstabs in Kiew keine Angriffe mit russischen Raketen und Gleitbomben und damit insgesamt auch weniger Opfer und Zerstörung als an üblichen Tagen des Moskauer Angriffskrieges. Russland wiederum verzeichnete ebenfalls keine ukrainischen Angriffe auf die für die Kriegswirtschaft wichtige Ölindustrie.\n\nKremlchef Wladimir Putin hatte verfügt, dass für 32 Stunden die Waffen bis Mitternacht (23.00 Uhr MESZ) am Sonntag schweigen sollen, damit die Menschen in Russland und in der Ukraine in Ruhe Ostern feiern können. Die orthodoxen Christen feiern in diesem Jahr eine Woche nach den westlichen Kirchen Ostern.\n\nEinen echten Osterfrieden gab es zwar nicht. Allerdings tauschten die Kriegsparteien kurz vor Beginn der Feierlichkeiten Hunderte Gefangene aus - jeweils 175 Militärangehörige und 7 Zivilisten. Beide Seiten kündigten an, dass die immer wieder vollzogenen Austausche fortgesetzt werden sollen.\n\nGespannte Lage an der Front\n\nDie Lage an der Front blieb indes gespannt. Die Kriegsparteien hatten bereits im vorher ihr Misstrauen gegenüber der geplanten Waffenruhe bekundet, weil es schon bei vorübergehenden Feuerpausen in der Vergangenheit immer wieder Verstöße gab. Deshalb drohten beide Seiten wiederholt, auf Angriffe des Gegners zu reagieren.\n\nDer ukrainische Generalstab registrierte 2.299 Verletzungen der seit Samstag geltenden Waffenruhe. Konkret gab es demnach unter anderem 479 Fälle von Beschuss und rund 1.800 Angriffe mit kleineren Drohnen. «Schläge mit Raketen, Gleitbomben und Drohnen vom Typ Shahed gab es nicht», teilte der Generalstab weiter mit.\n\nVerletzte im Gebiet Charkiw\n\nAuch die ukrainischen Luftstreitkräfte bestätigten, dass es für sie eine Pause von 18 Stunden gegeben habe. Am Morgen habe es allerdings im Gebiet Sumy einen für die Flugabwehr relevanten russischen Drohnenangriff gegeben. Im Gebiet Charkiw im Osten der Ukraine meldeten die Behörden nach einem russischen Drohnenangriff während der Waffenruhe zwei Verletzte in einem Lebensmittelgeschäft.\n\nKurz vor Beginn des orthodoxen Osterfests tauschen die Ukraine und Russland erneut Gefangene aus. Foto: Efrem Lukatsky/AP/dpa\n\nDas russische Verteidigungsministerium warf der Ukraine gezielte Angriffe vor. «Insgesamt wurden im Zeitraum vom 11. April, 16.00 Uhr, bis zum 12. April, 8.00 Uhr, 1.971 Verstöße gegen den Waffenstillstand durch Einheiten der ukrainischen Streitkräfte registriert», teilte das Ministerium in Moskau mit. Die ukrainische Armee habe trotz des Osterfriedens russische Stellungen unter anderem im Raum Pokrowsk im Gebiet Donezk sowie im Gebiet Dnipropetrowsk angegriffen. «Alle Attacken wurden abgewehrt», hieß es.\n\nSelenskyj scheitert mit Vorschlag zur Verlängerung der Waffenruhe\n\nSelenskyj erneuerte auch seinen Vorschlag, aus der Waffenruhe einen dauerhaften Waffenstillstand zu machen. Kremlsprecher Dmitri Peskow bekräftige im russischen Staatsfernsehen, dass die Kampfhandlungen nach Ablauf wieder aufgenommen würden, wenn Selenskyj keine Entscheidung treffe, sich auf die russischen Bedingungen für einen Frieden einzulassen.\n\nPeskow erklärte, dass Russland einen «nachhaltigen Frieden» und keine einfache Waffenruhe wolle. Er meint damit, dass Kiew seine Truppen aus dem Gebiet Donezk zurückziehen solle, wo nach seiner Darstellung noch etwa 18 Prozent unter ukrainischer Kontrolle sind. Die Ukraine kontrolliert dort ihre strategisch wichtigen Städte Kramatorsk und Slowjansk. Selenskyj lehnt es kategorisch ab, solche Gebietsabtretungen als Geschenk an die russischen Besatzer zu machen.\n\nSelenskyj würdigt Standhaftigkeit der Ukrainer\n\nIn seiner Osterbotschaft würdigte Selenskyj den Mut und die Standhaftigkeit seiner Landsleute. Das Land habe gerade den schwersten Winter seiner Geschichte überstanden, sagte er mit Blick. «Wir vertrauen nicht nur auf die himmlischen Mächte, sondern auch auf unsere Sicherheits- und Verteidigungskräfte», sagte Selenskyj.\n\nDer ukrainsche Präsident Wolodymyr Selenskyj und seine Frau Olena würdigten zum orthodoxen Osterfest die Standhaftigkeit ihrer Landsleute im Kampf gegen den russischen Angriffskrieg. (Archivbild) Foto: Präsidialamt der Ukraine/ZUMA Wire/dpa\n\nDie Ukraine verteidige sich unerschütterlich. «Damit auf das fünfte Osterfest in Kriegszeiten das erste friedliche Osterfest folgt. In unserem ganzen Land, für alle unsere Menschen», sagte Selenskyj, der mit seiner Frau Olena in der Sophienkathedrale in Kiew die Videobotschaft aufnahm.\n\nKämpfe gehen weiter - Treffen im «Ramstein»-Format geplant\n\nRussland hat bereits angekündigt, die Kampfhandlungen nach Ablauf der Waffenruhe wieder aufzunehmen - nach Darstellung von Kremlsprecher Peskow bis Moskaus Kriegsziele erreicht sind. Die Verhandlungen unter US-Vermittlung über eine Beendigung des Krieges pausieren nach seinen Angaben, weil die Unterhändler Washingtons im Iran-Krieg beschäftigt seien.\n\nDer ukrainische Verteidigungsminister Mychajlo Fedorow kündigte nach einem Telefonat mit seinem deutschen Amtskollegen Boris Pistorius (SPD) für kommenden Mittwoch ein neues Treffen im sogenannten Ramstein-Format an. Bei den Gesprächen der Ukraine-Kontaktgruppe solle es darum gehen, wie Russland zu einem Frieden gezwungen werden könne, teilte das Ministerium in Kiew mit."} +{"url": "https://www.diariocritico.com/internacional/trump-anuncia-bloqueo-estrecho-ormuz-paguen-a-iran", "title": "Trump anuncia un bloqueo del Estrecho de Ormuz para todos aquellos que paguen a Irán", "publish_date": "2026-04-12T14:41:52Z", "full_text": "Trump anuncia un bloqueo del Estrecho de Ormuz para todos aquellos que paguen a Irán\n\ndomingo 12 de abril de 2026 , 15:42h\n\nEl presidente de Estados Unidos, Donald Trump, ha informado este domingo que ha ordenado a la Armada estadounidense el inicio de un cierre perimetral del estrecho de Ormuz, en estos momentos bajo control de Irán, y ha dejado claro que va a interceptar \"en aguas internacionales\" a cualquier buque que decida pagar a Irán para cruzar este estratégico paso.\n\n\"Con efecto inmediato la Armada de Estados Unidos (...) comenzará el proceso para bloquear todos y cada uno de los buques que intenten entrar o salir del estrecho de Ormuz\", ha indicado Trump en un mensaje publicado en redes sociales en la que ha sido su primera reacción al fracaso de las conversaciones de este sábado entre Estados Unidos e Irán en Islamabad (Pakistán).\n\nTrump ha cargado contra lo que considera la \"extorsión mundial\" impuesta por las autoridades iraníes con el cierre de Ormuz y ha alertado al resto del mundo de que los buques de guerra estadounidenses \"buscarán e interceptarán cualquier barco en aguas internacionales que haya pagado un peaje a Irán\".\n\nPutin respalda a Irán tras el fracaso de las negociaciones\n\nPor otra parte, el presidente de Rusia, Vladimir Putin, ha mantenido este domingo una charla telefónica con su homólogo iraní, Masud Pezeshkian, en la que le ha mandado todo el respaldo de Moscú ante el fracaso de las conversaciones de paz mantenidas en la víspera entre las delegaciones de alto nivel entre Estados Unidos e Irán.\n\nIrán y Rusia habían firmado el año pasado un nuevo acuerdo estratégico de defensa que se había traducido, por ejemplo, en las nuevas partidas de drones iraníes al Ejército ruso en medio de la guerra de Ucrania.\n\nDurante su conversación con Pezeshkian, Putin ha \"subrayado además la disposición de Moscú para seguir facilitando la búsqueda de una solución política y diplomática al conflicto\". \"Con este fin, Rusia mantendrá contactos activos con todos sus socios en la región\", ha asegurado el presidente ruso antes de volver a afirmar \"el compromiso mutuo de seguir fortaleciendo las relaciones de buena vecindad\"."} diff --git a/Data/1_Bronze_Raw/News_Scrapes/2026-04-12/Full_text/full_text_macro_inflation_employment.jsonl b/Data/1_Bronze_Raw/News_Scrapes/2026-04-12/Full_text/full_text_macro_inflation_employment.jsonl new file mode 100644 index 0000000..8270a08 --- /dev/null +++ b/Data/1_Bronze_Raw/News_Scrapes/2026-04-12/Full_text/full_text_macro_inflation_employment.jsonl @@ -0,0 +1,8 @@ +{"url": "https://www.ringblad.no/enighet-med-fellesforbundet-i-frontfagsoppgjoret-parat-fortsatt-i-mekling/s/5-45-2209025", "title": "Lønnsforhandlinger , Arbeidsliv | Enighet med Fellesforbundet i frontfagsoppgjøret – Parat fortsatt i mekling", "publish_date": "2026-04-12T14:40:26Z", "full_text": "– Dette lønnsoppgjøret sikrer en solid forbedring for både økonomien, forutsigbarheten og tryggheten til norske arbeidsfolk, sier leder i Fellesforbundet Christian Justnes i en pressemelding.\n\nEtter å ha sittet 13 timer på overtid ble altså de enige. Det bekrefter også Riksmekleren på sin nettside.\n\nMen Parat sitter fortsatt i mekling.\n\n– Til tross for meldinger om avklaring for Fellesforbundet sitter Parat fortsatt ved meklerens bord. Utfallet for de 1242 medlemmene som er omfattet av oppgjøret, er foreløpig usikkert, skriver Parat i en pressemelding.\n\nEnighet\n\nFellesforbundet og Norsk Industri er enige om et generelt tillegg på 6,50 kroner, som gir alle en lønnsøkning på godt over 1000 kroner i måneden, står det i Fellesforbundets pressemelding.\n\nI tillegg har de lavest lønte på industrioverenskomsten fått ytterligere 4 kroner i tillegg. Partene er enige om en lønnsramme på 4,4 prosent.\n\nFellesforbundet hadde varslet streik for 33.237 medlemmer, men for disse er altså streiken avverget.\n\nMeklet på overtid\n\nTirsdag ble det brudd i den frivillige meklingen mellom Fellesforbundet, Parat og Norsk Industri. Siden onsdag har partene møttes til tvungen mekling på Riksmeklerens kontor.\n\nHovedkravene i årets forhandlinger besto av reallønnsvekst, forskuttering av sykepenger og en oppfølging av Industriens Kompetansefond for å sikre ansatte muligheter til faglig påfyll.\n\n– Etter flere år med kraftig prisstigning og høye renter er kravet om reallønnsvekst ufravikelig, uttalte Parats forhandlingsleder, Kjell Morten Aune, da det ble kjent at forhandlingene gikk til tvungen mekling.\n\n35.000 medlemmer\n\nFør enigheten ble det varslet at Fellesforbundet og Parat var villige til å ta ut til sammen nesten 35.000 medlemmer i streik, fordelt på over 1000 bedrifter.\n\nFellesforbundets leder Christian Justnes uttalte tidligere at forbundet ville ta ut nesten samtlige av sine medlemmer allerede i første uttak om det skulle bli streik.\n\nKun deler av forsvarsindustrien og bedrifter som produserer nødvendig sykehusutstyr var unntatt streikevarselet.\n\n(©NTB)"} +{"url": "https://www.moonofalabama.org/2026/04/war-on-iran-loser-tries-setting-terms-the-strange-idea-of-blockading-blockaders.html/comment-page-2", "title": "War On Iran : – Loser Tries Setting Terms – The Strange Idea Of Blockading Blockaders – Moon of Alabama", "publish_date": "2026-04-12T14:40:26Z", "full_text": "April 12, 2026\n\nWar On Iran: – Loser Tries Setting “Terms” – The Strange Idea Of Blockading Blockaders\n\nThe first round of talks between the U.S. and Iran has failed to achieve any progress.\n\nThe U.S. negotiators thoroughly misjudged their positions and tried to set terms (archived):\n\nMr. Vance said little about what took place during more than 21 hours of negotiations, suggesting he had handed the Iranians a take-it-or-leave-it proposal to forever terminate their nuclear program, and they left it.\n\n“We’ve made very clear what our red lines are,” Mr. Vance told reporters, “what things we’re willing to accommodate them on.” He added, “They have chosen not to accept our terms.”\n\nThe U.S. has so far lost the war. None of its war aims has been achieved. Its attempts to steal Iran’s enriched Uranium ended with the biggest air force losses since the Vietnam War era. It is not in a position to set any terms:\n\nIn that respect, this negotiation appears to have differed little from the one that ended in deadlock in Geneva in late February, … Mr. Trump’s chief leverage now comes in his ability to threaten to resume major combat operations. After all, the fragile two-week cease-fire ends on April 21. But while the threat of resuming combat operations may be invoked in coming days, it not a particularly viable political choice for Mr. Trump — and the Iranians know it. Mr. Trump declared the cease-fire last week in large part to stem the pain from the loss of 20 percent of the world’s oil supplies, which was sending the price of gasoline soaring, creating shortages of fertilizer and, among other critical supplies, helium for the production of semiconductors. Markets rose on the prospect of an agreement, even an incomplete or unsatisfactory one. Should the war resume, the markets would likely decline, the shortages would worsen and inflation — already up to 3.3 percent — would almost inevitably rise. And that leaves the most urgent issue: the reopening of the Strait of Hormuz.\n\nAfter the end of the negotiations a tweet by Donald Trump pointed to a piece which asserts that his best next move to reopen the Strait of Hormuz is to blockade Iran:\n\nThe Trump card the president holds if Iran won’t bend: a naval blockade: https://justthenews.com/government/sec…\n\n(TS: 12 Apr 00:16 ET)\n\nThe piece in question – The Trump card the president holds if Iran won’t bend: a naval blockade – is by John Solomon, a lawyer, and remarkable for its ignorance:\n\nIf Iran refuses to accept the final deal the United States offered Saturday, Trump could bomb Tehran back to the “Stone Ages” as he vowed. Or he might just reprise his successful blockade strategy to choke an already teetering Iranian economy and ratchet up diplomatic pressure on China and India by cutting them off one of their key sources of oil. Ironically, the massive USS Gerald Ford carrier that led the Venezuelan blockade is now in the Persian Gulf after a brief hiatus for repairs and crew rest after a deadly fire. And now it joins the USS Abraham Lincoln and other major naval assets.\n\nThe USS Gerald Ford, with broken toilets and a burned out laundry, is in the Mediterranean. It would have to pass the Suez Canal, the Bab al Mandeb Strait and the Strait of Hormuz to reach the Persian Gulf. Bab al Mandeb is controlled by the Houthi, Hormuz by Iran. Good luck passing either …\n\nThe idea of lifting Iran’s blockade of the Strait of Hormuz by blockading Iran is not from John Solomon but from the crazed neoconservative Jack Keene:\n\nThe idea of a naval blockade was first suggested last week by retired Gen. Jack Keane, one of the nation’s top military strategists. “If the war resumes and after we degrade Iran’s remaining military assets sufficiently, the US military could choose to occupy Kharg — or to destroy it,” Keane wrote it a New York Post column. “Alternatively, the US Navy could set up a blockade, shutting down Tehran’s export lifeline.” If we preserve Kharg’s infrastructure but take physical control, we’d have a chokehold over Iran’s oil and its economy,” he added. “That’s the ultimate leverage we’d need to seize its ‘nuclear dust,’ or stores of enriched uranium, and to eliminate its enrichment facilities.”\n\nKharg does not matter as much for Iranian exports as the DC nutters assume. During the eight years of the Iran-Iraq war Kharg was kept closed while oil exports from Iran continued to flow.\n\nAny attempt to blocked Iran would necessitate the use of force to prevent Indian, Chinese and Russian ships from entering Iranian harbors.\n\nIt would also mean less oil supplies for the global markets. Historically sea blockades take many months and even years to show effects. That is more time than Trump has to politically survive.\n\n—\n\nIt is costing a lot of time, and money, to run Moon of Alabama. Please consider to contribute."} +{"url": "https://www.thestandard.co.zw/business/article/200053827/zimbabwes-lenders-hedge-against-global-shocks", "title": "Zimbabwe lenders hedge against global shocks", "publish_date": "2026-04-12T14:40:26Z", "full_text": "CBZ Holdings Limited chairman Luxon Zembe said the domestic economy was expected to grow on the back of strong agricultural output, stable exchange rates and firm mineral prices.\n\nZIMBABWE’S banks are cautiously positioning for growth in 2026, buoyed by improving economic fundamentals and relative policy stability, while tightening risk management frameworks to shield themselves from currency pressures and global shocks.\n\nInsights from chairpersons and executives of major lenders, contained in financial statements for the year ended December 31, 2025, show a sector cautiously optimistic about the outlook.\n\nThe confidence is anchored on projected economic expansion of around 5% and improving stability in key macroeconomic indicators.\n\nCBZ Holdings Limited chairman Luxon Zembe said the domestic economy was expected to grow on the back of strong agricultural output, stable exchange rates and firm mineral prices.\n\n“These fundamentals are expected to provide a supportive platform for economic activity across key sectors,” Zembe said.\n\nHowever, he warned of risks emanating from global instability, particularly in the Gulf region and parts of Europe, adding that the group would rely on “prudent risk governance” and operational efficiencies to navigate the environment.\n\nBanks are aligning growth strategies with stronger capital positions, digital transformation and partnerships aimed at unlocking new revenue streams.\n\nAt TN CyberTech Bank, chief executive officer Tawanda Nyambirai said the institution would drive growth through a “hyperintegration strategy” focused on partnerships.\n\nAt TN CyberTech Bank, chief executive officer Tawanda Nyambirai\n\n“Looking ahead, the bank will continue to pursue its hyperintegration strategy, which seeks to grow its customer base, unlock new revenue streams and enhance shareholder value,” Nyambirai said.\n\nZB Financial Holdings Limited chairperson Agnes Makamure echoed the positive outlook.\n\n“Zimbabwe’s economy is projected to register positive growth of 5,0% in 2026,” she said.\n\nBut Makamure flagged significant downside risks, including foreign currency shortages, energy constraints and infrastructure gaps, alongside global headwinds such as geopolitical tensions and trade uncertainty.\n\nShe added that monetary authorities were likely to maintain tight policies to preserve stability, even as policymakers face the delicate task of balancing growth and inflation control.\n\nStability in inflation, interest rates and exchange rates is seen as critical to sustaining momentum after years of volatility that eroded confidence and disrupted financial intermediation.\n\nFBC Holdings Limited chairman Herbert Nkala said the group was encouraged by a stable operating environment and would leverage its diversified model to grow shareholder value.\n\nSimilarly, NMB Bank chairman Pearson Gowero said growth would be anchored on stable macroeconomic indicators and enhanced access to credit lines.\n\nHe added that the bank would prioritise operational efficiency and digital innovation to deliver more accessible and cost-effective financial services.\n\nAt First Capital Bank Zimbabwe, chairman Patrick Devenish said the institution had strengthened its capital base, liquidity and governance frameworks to support long-term growth.\n\n“The board is confident that First Capital Bank is strategically primed to navigate 2026 and the years beyond,” Devenish said, highlighting plans to invest in customer-centric innovation and enhance operational resilience.\n\nThe cautious optimism expressed by Zimbabwe’s financial leaders comes after a decade defined by extreme macroeconomic volatility.\n\nFor years, the sector struggled with hyperinflation and rapid currency depreciation that eroded capital bases and disrupted traditional financial intermediation.\n\nThe current focus on stability in inflation, interest rates, and exchange rates is seen as the critical foundation for sustaining the current momentum.\n\nThe projected 5% growth rate for 2026 is largely dependent on the performance of the “green” and “extractive” sectors.\n\nAs highlighted by CBZ, the recovery of agricultural productivity and the maintenance of high global prices for minerals such as gold and platinum remain the primary engines for the domestic economy.\n\nBanks are increasingly looking to anchor their growth on these stable indicators while expanding access to credit lines for these productive sectors.\n\nWith traditional brick-and-mortar models facing high overheads, the sector is undergoing a massive shift toward digital innovation.\n\nNMB Bank and First Capital Bank have both signaled that their 2026 strategies prioritise operational efficiency and “customer-centric innovation”.\n\nBy leveraging digital platforms, lenders aim to deliver more cost-effective services to a wider demographic, effectively bypass infrastructure gaps, and build “operational resilience” against local and global shocks."} +{"url": "http://www.newstribune.com/news/2026/apr/12/in-rural-missouri-immigration-crackdown-reaches-beyond-the-workplace/", "title": "In rural Missouri , immigration crackdown reaches beyond the workplace", "publish_date": "2026-04-12T14:40:26Z", "full_text": "Eliseo Affholter noticed a car following him, moving slowly as he walked through the streets of Milan, Missouri.\n\nWalking was his wind-down routine after work at a Kraft Heinz plant, where on Feb. 24, he had just finished a 12-hour overnight shift.\n\nAs he walked along East Grand Avenue, he saw flashing lights and vehicles lined up behind a stopped car, including patrol cars, an SUV and a pickup truck.\n\nAs Affholter stepped closer, he raised his phone to record.\n\nOne agent identified himself as an officer with U.S. Immigration and Customs Enforcement (ICE) and asked in Spanish what country Affholter was a citizen of. “From here,” Affholter replied.\n\n“Do you have papers? … Are you legally in the United States?” the agent asked, as two others stood nearby.\n\nHe stopped recording when an officer grabbed the phone from his hand, according to Affholter.\n\nWhen he asked why he was being detained, he said one agent responded in English: “We have the right to assume that you’re an illegal alien.”\n\nThat same day, federal immigration agents arrested three people in Milan, including two men from Senegal and another from Guatemala.\n\nDuring the past year, President Donald Trump’s deportation campaign has reached deep into agricultural regions that rely heavily on immigrant labor, including raids on farms and at meat-packing facilities.\n\nMilan, a north Missouri town of about 1,800, is home to a large Smithfield Foods pork processing plant. The Kraft Heinz plant, where Affholter worked, is 33 miles east in Kirksville.\n\nBut the February arrests in Milan did not take place inside the local meatpacking plant; they occurred along nearby roads and in residential areas where workers live and travel to and from their shifts.\n\n“They may not be going into the plant, but they’re in the community,” said Axel Fuentes, executive director of the Rural Community Workers Alliance, a worker advocacy organization that supports immigrant and refugee food industry workers in rural Missouri.\n\nAny immigration enforcement expansion within agricultural communities could have been aided by a September 2025 U.S. Supreme Court decision that broadened the scope of what agents can consider “reasonable suspicion.” Arrests appeared to increase after the decision, which allowed agents to consider a mix of factors, including apparent race or ethnicity, language or accent, location, and type of work, when making stops.\n\n“Some would say that the Supreme Court, in effect, encouraged ICE to engage in racial profiling in immigration enforcement,” said Kevin R. Johnson, a law professor at the University of California, Davis School of Law. “The truth of the matter is, I think that’s accurate.”\n\nJohnson said such practices have long been permitted under Supreme Court precedent. In a 1975 decision, United States v. Brignoni-Ponce, the Supreme Court ruled that immigration agents cannot stop someone based solely on “Mexican appearance,” but may consider it as one factor among others.\n\nAffholter, 36, is a U.S. citizen of Mayan descent, born in Guatemala. He arrived in the United States at 13 and was later adopted by a white American man. He has lived here for most of his life.\n\nIn a statement, an ICE spokesperson said Affholter “deliberately interfered” with a federal operation and “verbally” assaulted agents, prompting officers to question him about his immigration status and request identification.\n\n“I feel like I’m an animal, like I’m worthless,” Affholter said. “Like I don’t deserve to be here … because of my skin color, because of the language I speak. I speak Spanish, English and Mayan.” Affholter was referring to Mam, an Indigenous Mayan language spoken in the western highlands of Guatemala and the state of Chiapas, Mexico.\n\nAcross Milan, residents told Investigate Midwest that there is fear immigration enforcement will not only target workplaces but also neighborhoods and streets.\n\nIn the first months of his presidency, Trump sent federal agents to farms and agricultural operations, drawing backlash from some supporters who said the actions made it harder to hire undocumented workers, who make up 44 percent of all farm workers, according to U.S. government surveys.\n\nTrump announced a temporary pause on raids in the agriculture and meat-processing sectors, only to reverse the decision days later.\n\nBy early February 2026, more than 68,000 immigrants were being held in ICE detention nationwide, according to the Transactional Records Access Clearinghouse at Syracuse University. Most were arrested by ICE, and nearly three-quarters had no criminal conviction, often only minor offenses like traffic violations.\n\nAlthough there is no publicly stated directive establishing a formal shift in strategy, advocates and residents say enforcement is increasingly occurring outside plants.\n\n“Since last year, we’ve seen arrests following routine court appearances, such as for traffic violations, where people are then transferred into federal custody,” Fuentes said.\n\nA family divided and displaced\n\nOne of the people arrested by ICE in Milan was Victorino Martínez-Chávez, 46, a Guatemalan national, who worked a cleaning shift at the Smithfield meat-processing plant, the town’s largest employer, according to state workforce data.\n\nIn a statement, an ICE spokesperson said Martínez-Chavez, who had previously been deported, was arrested during a targeted enforcement operation and had “refused to obey lawful commands to exit his vehicle, threatening officer safety and forcing officers to remove him from the vehicle.” The spokesperson added that Martínez-Chavez had previously been deported and reentered the United States, which is a felony offense.\n\nAffholter’s video of the arrest, which was reviewed by Investigate Midwest, shows the driver’s side window of Martínez-Chávez’s vehicle already broken when ICE agents left the scene.\n\nTwo other men — Serigne Ciss, 33, and Thierno Amar, 33, both from Senegal — were also arrested, according to ICE. The agency said they had entered the United States after crossing the “border illegally” during the Biden administration, according to an ICE email.\n\nMinutes before his arrest, Martínez-Chávez had dropped off his daughter and other children at school.\n\nAt home, his wife, who asked not to be identified for fear of retaliation, was waiting for him to return home when she received a call from her stepdaughter, who said Martínez-Chávez had been detained.\n\n“I started crying,” the wife, 42, recalled. “Who’s going to take care of me now?”\n\nMartínez-Chávez was the sole breadwinner. His wife does not work outside the home and cares for the three youngest children, including one who is just 18 months old. She does not speak English and speaks limited Spanish; her primary language is Mam.\n\nThe wife moved to the United States three years ago to join her husband, who was already living in the community. That morning, beyond the fear, they faced immediate uncertainty: a pending paycheck and a week of vacation time they were unsure would be honored.\n\nDays before the arrest, Martínez-Chávez’s wife learned she was pregnant. Although she wants to return to Guatemala to reunite with her husband, who has already been deported, an error on her baby’s birth certificate has prevented her from obtaining a passport to take him out of the country, leaving her effectively trapped.\n\nA workplace under pressure\n\nDuring the past several decades, the meatpacking industry has shifted from major urban centers to smaller rural communities closer to livestock production, driven by larger-scale plants and changing supply-chain economics. Access to labor remains critical everywhere.\n\nThere are more than 7,000 inspected meat, poultry, and egg processing plants operating across the country, with more than one-fifth in rural and nonmetropolitan areas, according to the U.S. Department of Agriculture. Missouri ranks 14th among states in the number of meatpacking plants.\n\nThis shift has brought new economic life to many small towns, including Milan.\n\nThe Smithfield facility in Milan is classified as a large plant, employing at least 500 workers, a workforce equivalent to more than a quarter of the town’s residents.\n\nNearly half of residents identify as Hispanic, and more than a quarter were born outside the United States, more than double the rate in Missouri.\n\nNationwide, nearly half of meat-processing workers are foreign-born workers, according to a 2022 report by the American Immigration Council.\n\n“The American economy, and particularly the American food system, is entirely dependent on various forms of immigration, both legal and not so legal,” said Elizabeth Cullen Dunn, a geography professor at Indiana University who studies migration and labor.\n\nShe said enforcement actions are often designed to be visible without disrupting production.\n\n“They don’t want to shut the meatpacking plants down,” she said. “That would cost the meatpacking companies millions of dollars a day.”\n\nWhile Milan’s Smithfield plant was not raided in February, the effects of area arrests were felt the following day.\n\nRay Atkinson, senior director of external affairs at Smithfield, said in an email that “there was no interruption to our business on Tuesday and we have not had any staffing issues,” referring to the day of the ICE arrests.\n\nWorkers described a different reality.\n\nFour plant workers, who asked not to be identified for fear of retaliation, said operations began later than usual on Wednesday because several overnight sanitation workers failed to report for work. Some were afraid to leave their homes after the arrests, according to the workers.\n\nThe burden shifted onto those who showed up.\n\nA man in his 50s who has worked at the Smithfield plant for about two decades said the pace of repetitive hand movements had increased, raising the risk of injury.\n\n“With the faster pace, you could cause an accident or cut a coworker. … Our hands are constantly moving, and we’re working with knives.”\n\nA woman in her late 40s said that with fewer workers, breaks have become harder to take. She said employees are typically allowed to use the bathroom twice per shift.\n\nAtkinson did not respond to a follow-up email seeking comment on the reported disruptions.\n\nWhile the workers described short-term disruption, the company has warned investors about broader labor shortages, particularly in rural areas where some of its operations are located.\n\nIn its latest annual filing, Smithfield said that new immigration legislation could increase the costs of recruiting, training and retaining employees, as well as compliance costs related to reviewing workers’ immigration status, and could lead to employee shortages. The company also said that increased enforcement of existing immigration laws by government authorities could disrupt portions of its workforce or operations.\n\nIn poultry plants, workers may process as many as 140 birds per minute, said Navina Khanna, executive director of the HEAL Food Alliance, a national coalition that works with food system workers. In pork processing facilities, workers can repeat the same cut up to 9,000 times a day.\n\nThe risks are not new, but they can intensify when fewer workers are on the line. A recent study by the U.S. Department of Agriculture found that 81 percent of poultry-processing workers and 46 percent of pork-processing workers face an increased risk of musculoskeletal disorders, conditions typically characterized by pain and limitations in mobility and dexterity, that can limit a person’s ability to work and participate in daily life.\n\nConcerns about working conditions in meatpacking plants have surfaced in other parts of the country. Last month, at a JBS beef plant in Greeley, Colorado, workers went on strike, citing unsafe conditions, fast line speeds and limited breaks, according to The Associated Press.\n\nWith fewer workers on the line, there is less oversight to ensure “any kind of safety,” forcing employees to work “faster” and “longer,” Khanna said, adding that the combination of staffing shortages and increased line speeds is making conditions “more dangerous” for workers.\n\nEconomic effects in a rural town\n\nIn many rural communities, immigrant workers are not only part of the labor force but also a key source of economic stability. Research shows they contribute more in taxes than they receive in public benefits and help offset population decline, a trend that has become especially important in small towns across the Midwest.\n\nIn congressional testimony in 2023, David Bier of the Cato Institute, a Washington-based public policy research organization, said immigrants “generate, in inflation-adjusted terms, nearly $1 trillion in state, local, and federal taxes, almost $300 billion more than they receive in government benefits.”\n\nAt the center of Milan is the courthouse. On the surrounding four blocks, at least one business on each corner is tied to the town’s Latino community.\n\nMilan, in north-central Sullivan County, is a community shaped in part by immigration. About 46 percent of residents identify as Latino, and more than 28 percent were born outside the United States.\n\n“It’s very, very difficult,” said an immigrant from Guatemala who has lived in Milan for nearly two decades. “It makes my stomach turn to think that you keep fighting and fighting, and the problems don’t go away.”\n\nThe woman, who asked not to be identified for fear of her immigration status, owns a restaurant and a small grocery store that operate out of the same space. She said she started her own business so she would not have to rely on false documents to work and so she could contribute to the town’s economy.\n\nShe said fear in the community over current immigration policies has hurt her business.\n\n“They’re pushing us into a corner,” she said. “You feel like sooner or later, it’s your turn.”\n\nOn a good day, she said, she used to make about $1,000. Now, her sales can sometimes drop to around $100.\n\nShe also operates a money-transfer service. She said weekly money transfers, called remittances, once reached about $40,000, but dropped to roughly $6,000 in the last week of February.\n\nShe said the decline in sales began in 2025 and has forced her to reduce inventory. She used to travel to Kansas four or five times a month to restock products. Now she goes twice, sometimes only once.\n\nAt another store in downtown Milan, money-transfer services have dropped by about half. The owner said she now carries about 15 percent of the goods she once stocked.\n\n“You can’t start rounding up and deporting people, and terrorizing, and getting people to self-deport, when they make up about 20 percent of the workforce without expecting major negative impacts on the economy,” said Daniel Costa, director of immigration law and policy research at the Economic Policy Institute, a Washington-based think tank.\n\nMeat and poultry processing employs about 560,000 workers nationwide, with a combined payroll of $30 billion, underscoring how deeply local economies depend on the industry, according to the Economic Policy Institute.\n\nThe economic effects extend beyond daily routines and local businesses.\n\nAnother woman, who also asked not to be identified because of her immigration status, said fear has reshaped even the most routine parts of her family’s life.\n\nShe avoids going to Walmart on weekends, she said, because the nearest store is a 45-minute drive — and she worries she could be stopped along the way.\n\nShe has two children, ages 7 and 9. The younger child is autistic. Weekend outings, once a regular activity, have largely stopped. The family used to go to Pizza Hut, something the children looked forward to.\n\nHer older daughter has begun to grasp the situation.\n\n“She says that when she grows up, she hopes she’ll be able to fix our papers so we don’t have to live with this fear all the time,” the woman said.\n\nAffholter, the Kraft Heinz employee temporarily held in Milan, has lived in the U.S. for roughly two-thirds of his life. But the possibility of being stopped on the street because of his appearance has made him question his place in a country he considers his own.\n\n“What I am experiencing now is not normal. I can’t accept that this is normal,” he said. “Because that’s not the America I know.”\n\nAsked what he meant, he paused.\n\n“That we are all equal,” he said. “That we are all free. No matter your roots, no matter your color, no matter what language you speak.”\n\nInvestigate Midwest is an independent, nonprofit newsroom. Our mission is to serve the public interest by exposing dangerous and costly practices of influential agricultural corporations and institutions through in-depth and data-driven investigative journalism. Visit us online at www.investigatemidwest.org.\n\n\n\n"} +{"url": "https://news.shm.com.cn/2026-04/12/content_5482767.htm", "title": "中国游记 | 春色不负万里客 ! 老外爱上 春日中国行 - 水母网", "publish_date": "2026-04-12T14:40:26Z", "full_text": "中国游记 | 春色不负万里客!老外爱上“春日中国行”\n\n一朵牡丹,值得飞越万里。近期,马达加斯加姑娘嘉德为一朵牡丹“打飞的”来华,在上海古猗园沉浸式体验花神民俗文化,拍中国古风写真。“我的头饰绣上了牡丹,是一千年前的流行款!”嘉德满意地说。\n\n\n\n\n\n马达加斯加姑娘嘉德(左)在上海古猗园内沉浸式赏花 图源 上观新闻\n\n在这个春天,越来越多的海外游客像嘉德一样,正透过这样的“春日限定”体验,感受到中国蓬勃的生机与深厚的文化。\n\n以花为桥 在中国春色里唤起情感共鸣\n\n\n\n\n\n外交部发言人账号转发贵州春日短片\n\n在贵州贵安,70万株樱花汇成粉色的海洋,让远道而来的海外游客沉醉其中。“我从来没见过这么美的景色,成片的粉色,眼睛都看饱了。”马来西亚游客王燕萍兴奋地说道。“中国外交部发言人”官方账号在海外社媒平台X上转发贵州春日短片,将贵州的烂漫花海推向世界。\n\n\n\n\n\n美国博主“Craig也叫快克”置身于盛开的油菜花中\n\n在江西婺源,金黄的油菜花与山水交织成画,让自驾来此的美国博主“Craig也叫快克”在视频中赞叹不已,“有花、有梯田,还有山……一路开过来,我已经看入迷了。”\n\n杏花、樱花、海棠、迎春花……繁花盛放,海外游客为了中国春色奔赴而来。社交网络将中国的绝美春光推进海外网友的屏幕里,便利的免签政策让他们来得更容易、游得更轻松。据旅游平台数据,3月使用非中国护照预订国内航班的数量同比增长21%,多城跻身热门目的地。其中,西藏林芝的桃花带动海外游客赴游量增长6.3倍,山西大同的杏花与古建组合更让海外游客机票预订量暴涨超9倍,新疆喀什、伊宁的高原与杏花海也迎来超3.5倍的海外游客增长。\n\n海外游客在桃花树下驻足、在杏花海中漫步,本质上是在共赴一场跨越文化的“春日之约”。春日繁花象征的新生与希望,是中外共通的情感寄托,而中国“花与古建共生”的独特图景,更赋予春色别样的韵味。这份对美好事物的共同热爱,突破了文化隔阂界限,构建起了最朴素的情感连接。\n\nN种玩法在体验里感受中国式浪漫\n\n在刚刚过去的清明节假期,外国人出入境84.3万人次,较去年同期增长20.9%。入境外国人中,适用免签政策入境31.9万人次,较去年同期增长30.7%。\n\n\n\n\n\n海外游客打卡上海复兴思南年宵花市图源 上观新闻\n\n从冰雪游、过春节,到“打飞的”来中国赏花踏青,四季常新的体验和玩法,让海外游客在深度游的慢节奏里感受鲜活、浪漫而又真实的中国。品一杯春茶、尝一口春菜,用舌尖体会中国人“顺应天时、感受当下”的生活哲学;打卡非遗项目、乘坐无人驾驶车,感受古今交融的东方智慧……对海外游客而言,这些丰富的体验让“春日中国行”不再只是看花拍照,更是一场为花事、茶香、非遗与科技专程而来的深度奔赴。在一次次驻足、品味与对话中,他们触摸到的不仅是一个国家的风景,更是这片土地上绵延千年的生活智慧与面向未来的澎湃活力。\n\n人在往来中相知,文明在相遇中互鉴。如今,这条以文旅为桥、以交流为路的新纽带,正带动起“春日中国行”的热潮。这股热潮不仅见证了入境游市场的蓬勃发展,更为世界了解中国打开了一扇满含春日诗意的窗口——这里有满目春色,也有文明交融的无限风景。\n\n\n\n"} +{"url": "https://www.jalopnik.com/2142415/how-to-check-vehicle-tires-how-often/", "title": "Here How ( And How Often ) To Inspect Your Vehicle Tires", "publish_date": "2026-04-12T14:40:26Z", "full_text": "We may receive a commission on purchases made from links.\n\nThe tires of your vehicle take a lot of abuse. And, as you probably know, they aren't impervious to age, punctures, and damage caused by worn-out parts. The National Highway Traffic Safety Administration recommends inspecting all tires at least once a month or before taking a road trip. You'll want to keep an eye on any damage or wear, as well as the depth of your treads — but you'll want to start your inspection by focusing on the tire's pressure.\n\nWhile it might seem excessive, it's not a bad idea to check and correct the tire pressure as often as once every week. The reason is simple: tires will gradually lose some air pressure whether you drive the vehicle or not, and they can lose air when impacted by potholes or curbs. Why wait a month when you can do it once a week? Proper inflation can extend the life of any tire, and maintaining the correct air pressure can save a few cents per gallon on fuel. It doesn't sound like much, but it makes a difference in today's world of unstable oil prices.\n\nIt's a bad idea to inflate any tire to its maximum PSI, and it's relatively unwise to go over the recommended tire pressures for the front and rear, which you can easily find on a placard in the driver's side door jamb. Grab a tire pressure gauge, confirm the air pressure, and add or remove air when necessary. Also double-check it when the mercury drastically falls overnight, as the tire pressure will typically drop by a couple of PSI for every 10-degree Fahrenheit drop in temperature."} +{"url": "https://www.latercera.com/pulso/noticia/quienes-son-los-toesca-los-protagonistas-del-momento-en-sanhattan/", "title": "Quiénes son los Toesca : Los protagonistas del momento en Sanhattan", "publish_date": "2026-04-12T14:40:26Z", "full_text": "Si algo llama la atención de quienes visitan Toesca es que buscan las oficinas de los dueños y no las encuentran. Porque no tienen. Su espacio de trabajo, en plantas libres, es el mismo que el de sus colaboradores.\n\n“La comunicación, la cercanía, el ambiente que se da...Los jóvenes lo aprecian mucho”, cuenta un socio.\n\nFue una de las “buenas prácticas” que se trajeron los fundadores de esta administradora general de fondos (AGF) especializada en activos alternativos, de cuando trabajaban en BTG Pactual, antes Celfin, su cuna financiera.\n\nPor estos días Toesca S.A. Administradora de Fondos de Inversión parece vivir sus minutos de fama. Una saga de adquisiciones, incluyendo el ingreso como socio de un histórico del mundo de la inversión institucional, la han fijado en la retina de muchos que sabían de su existencia, pero que no habían calibrado lo relevantes que se han hecho con menos de una década de existencia.\n\nEste año partió de hecho con su primera gran operación. El mismo 1 de enero anunció la compra de la AGF Frontal Trust y sólo 20 días después, los socios de Toesca se unieron al fondo norteamericano TC Latin America Partners para comprar el 90% del factoring Primus Capital.\n\nEntre ambas operaciones, el 20 de enero, sumaron a un histórico hombre de las AFP, Alejandro Bezanilla, ex gerente general de AFP Habitat, como socio.\n\nY en marzo volvieron a la carga para negociar una posible fusión con otra AGF similar en tamaño, Ameris Capital, la que en todo caso todavía no se cierra. “Podría avanzar o caerse”, dice una fuente conocedora de la negociación.\n\nAunque en su historia Toesca ha levantado un total de US$2.500 millones en inversiones, actualmente gestiona en torno a los US$1.500 millones en 25 fondos. Trabajan con 55 personas y Frontal aportará una treintena adicional. Sus ingresos son de unos US$12 millones al año.\n\nAlejandro Reyes ITALO ARRIAZA +56983956683 PHOTO.CL\n\nUn antiguo origen\n\nLa Toesca de hoy nació oficialmente el 4 de noviembre de 2016, con dos socios: Alejandro Reyes y Carlos Saieh.\n\nReyes, ingeniero civil industrial de la Universidad de Concepción, estuvo 15 años en Celfin. Allí creó el área de administración de activos, con énfasis en gestión de patrimonio. Llegó a ser socio hasta que BTG Pactual adquirió el banco de inversión local en 2012, pero se quedó en su puesto hasta abril de 2016, cuando renunció.\n\nSu dimisión, así como la de sus colegas que terminaron siendo sus socios, se produjo sólo meses después de la crisis que sufriera BTG con la detención de su presidente ejecutivo, André Esteve, en Brasil, por acusaciones de corrupción vinculadas al caso Lava Jato. Esto provocó una fuga de inversionistas y una consecuente salida de ejecutivos.\n\nSaieh, ingeniero civil industrial de la U. Católica (UC) con un MBA en Wharton School de la Universidad de Pensilvania, venía de estar a cargo del área de activos alternativos en Celfin Capital, primero, y luego en BTG, donde se quedó hasta agosto de 2016. Su carrera la había iniciado en 2003 como analista de inversiones y luego subgerente de inversiones en Consorcio.\n\nCarlos Saieh, Toesca ITALO ARRIAZA +56983956683 PHOTO.CL\n\nPero la marca Toesca existía desde antes. Es más, su origen se remonta a 1990, cuando fue creada por la aseguradora estadounidense Aetna como su administradora de fondos de inversión (AFI). En 2001, después que el gigante neerlandés ING adquiriera Aetna en el mundo, pasó a denominarse ING AFI.\n\nRecién en mayo de 2003, tomó su actual nombre. Fue el que le puso Moneda Asset Management -hoy Moneda Patria Investments- cuando la adquirió. Pero al cabo de 13 años, sus resultados como AGF de activos alternativos no fueron los mejores, así que la puso en venta.\n\nEn paralelo, Reyes y Saieh, recién dimitidos de BTG, decidieron en octubre de 2016 armar un AGF juntos: arrendaron una pequeña oficina en El Golf 50 y contrataron a un gerente de operaciones, un administrador y un encargado de software. Pero hacerlo desde cero tardaría de 6 meses a un año, por lo que aprovecharon la opción de Moneda y le compraron Toesca con la idea de cambiarle el nombre. Nunca lo hicieron. Lo que sí hicieron fue inyectarle dinero fresco.\n\nSegún documentación pública, pasó de contar con un capital de $524 millones en diciembre de 2016 a $13.700 millones en febrero de 2017. “Pusimos toda la plata que teníamos”, contó Saieh en el podcast Millions: El Arte de Invertir.\n\nRodrigo Rojas ITALO ARRIAZA +56983956683 PHOTO.CL\n\nAunque a fines de 2016 habían conseguido refuerzos. Se les habían unido Rodrigo Rojas y Arturo Irarrázaval, quienes lideraban el negocio de acciones en BTG, con todo su equipo. Irarrázaval, ingeniero comercial de la U. Católica y master en finanzas de la escuela de negocios ESE de la U. de Los Andes, había trabajado como analista de inversiones de dos AFP y como gestor de inversiones en renta variable en BTG. Rojas, a su vez, ingeniero civil y MBA en la UC, fue analista y director de inversiones en acciones de FIT Research entre 2001 y 2003, mismo cargo que asumió en Celfin Capital -luego BTG- para después ser gerente de portafolio de acciones hasta 2016.\n\nEste equipo fue el que creó el primer fondo de la firma, que no fue de activos alternativos, como era la idea: fue el Fondo Mutuo de Acciones Chile Equities, que partió el 30 de diciembre del 2016. Y como la plantilla se duplicó en seis meses, tuvieron que ubicar alguna oficina más adecuada: encontraron una planta libre en el actual edificio del BICE en Apoquindo. Eran sólo 10 personas más algunas mesas en 400 metros cuadrados.\n\nArturo Irarrázaval ITALO ARRIAZA +56983956683 PHOTO.CL\n\nEse mismo mes migró otro más desde BTG: Augusto Rodríguez, ingeniero comercial de la U. de Los Andes, quien manejaba la división inmobiliaria, también heredada de su desempeño en Celfin, aunque su carrera la había iniciado como analista de riesgo en ABN Amro en 2003.\n\nLuego de un verano incierto, en marzo de 2017 arribó Max Vial, quien presidía la corredora de bolsa de BTG y había sido director de gestión de patrimonio. Vial, ingeniero comercial con estudios de posgrado en finanzas y marketing, había llegado en 1997 a Celfin, cuando esta firma compró la corredora de bolsa Gardeweg, de la cual era socio.\n\nEse mismo marzo levantaron el primer fondo de activos alternativos en infraestructura: compraron el 49% de la Ruta del Algarrobo, la autopista que une La Serena y Vallenar y que controlaba con un 51% la española Sacyr. Los inversionistas que suscribieron el fondo eran fundamentalmente compañías de seguros.\n\nAugusto Rodríguez ITALO ARRIAZA +56983956683 PHOTO.CL\n\nY durante el primer semestre de ese año, lanzaron también su primer fondo de rentas inmobiliarias, con el que compraron un strip center en Machalí, y el primero en crédito privado, para invertir en el negocio del factoring de segundo piso, factorizando a otros factoring. Los fondos de la carretera y del strip center los vendieron el año pasado y el de factoring, lo liquidaron poco después.\n\nPero en menos de nueve meses ya habían lanzado fondos en sus cuatro estrategias principales: infraestructura, inmobiliario y crédito privado en activos alternativos, y acciones. En 2017 habían experimentado un crecimiento explosivo.\n\nMax Vial ITALO ARRIAZA +56983956683 PHOTO.CL\n\nEn ese contexto convencieron a Alejandro Montero, su exjefe en BTG, que vivía su tercer año sabático en París con su familia, a que se integrara. Montero, ingeniero comercial de la UC con un MBA en Wharton, había iniciado su carrera como analista en 1993 en Celfin y llegó a ser gerente general en Celfin y la primera etapa de BTG.\n\nLos años siguientes fueron de acelerada expansión. Ya a inicios de 2019 habían levantado el primer billion de activos administrados: US$1.000 millones.\n\nDespués de eso, vino una meseta, que coincidió con el estallido social, la salida de capitales del país y la pandemia.\n\nEse freno en la expansión se relaciona, según quienes conocen a Toesca, con varios factores que se confabularon. En sus primeros años recibieron un gran volumen de dinero fresco y que fue su principal motor de crecimiento, con una alta rentabilidad. Pero luego sobrevino la incertidumbre local, afectada por la salida de capitales de personas naturales, sumada a una reducción de la caja de las compañías de seguros, dado un descenso en su venta de rentas vitalicias, y un cambio regulatorio en la inversión de las AFP en 2020, que “secó” los fondos a activos alternativos nacionales, favoreciendo a los extranjeros. “Nunca más fluyó plata de las AFP a estos activos en Chile”, reclama un conocedor.\n\nAlejandro Montero ITALO ARRIAZA +56983956683 PHOTO.CL\n\nEn estos años más débiles, abrieron una nueva estrategia relacionada con campos agrícolas. Levantaron un fondo llamado Permanent Crops, con la idea de comprar campos para producir fruta. Y en plena pandemia entró el único de los socios que no venía del “universo BTG”: Manuel Ossa. Ingeniero comercial de la UC con un MBA en la escuela Booth de la U, de Chicago, había sido asesor del Ministerio de Vivienda en la primera administración Piñera, para luego trabajar como analista y gerente de portafolio en Inversiones Arizona, el family office de la familia Luksic.\n\nManuel Ossa ITALO ARRIAZA +56983956683 PHOTO.CL\n\nEl repunte y la visión\n\nEl negocio empezó a levantar cabeza en 2023, repuntó firmemente en 2024 y el 2025 fue incluso mejor que el anterior.\n\nEste mejor momento coincidió con una reducción en las tasas de interés, que se habían disparado para contener a la galopante inflación, pues cuando las tasas están altas, los inversores prefieren la seguridad de la renta fija en vez de apostar por activos de riesgo.\n\nCon el impulso de esta nueva primavera de la inversión, Toesca se decidió a crecer tanto orgánica como inorgánicamente. En su área de farmland, por ejemplo, se asociaron en 2024 con la gestora inglesa Astarte para ampliar su cartera de campos: hoy tienen uno de 300 hectáreas en Rapel para paltos y cítricos, otro del mismo tamaño en Molina para cerezas y carozos, y otro en Ñuble para avellanos.\n\nY en enero pasado se robaron la agenda del mercado con las adquisiciones de Frontal Trust y Primus. La primera, que gestiona del orden de los US$600 millones y dado que cuenta con estrategias similares de negocios, debiera integrarse fácilmente. La segunda, seguirá trabajando como un factoring normal, aparte del AGF.\n\nAlejandro Bezanilla ITALO_ARRIAZA WWW.PHOTO.CL\n\nEn el noticioso enero, Alejandro Bezanilla, ingeniero civil de la UC y exgerente de inversiones y gerente general de AFP Habitat, donde trabajó casi 20 años, se integró como socio y director ejecutivo. Su misión: darle un marco más institucional a la firma, que le permita trascender en el tiempo, y al mismo tiempo aprovechar su buen nombre en el mundo institucional para que apoye al equipo comercial en la captación de inversores.\n\nTodo con el objetivo de ir acercándose a una meta que comparten los socios y que ya no es sólo administrar dinero de chilenos en activos chilenos, sino ir a buscar plata al mundo para que invierta en activos regionales."} +{"url": "https://www.sun-sentinel.com/2026/04/12/haitians-cut-back-on-already-scarce-food-and-ask-how-theyll-survive-rising-fuel-prices/", "title": "Haitians cut back on already scarce food and ask how theyll survive rising fuel prices – Sun Sentinel", "publish_date": "2026-04-12T14:40:26Z", "full_text": "By EVENS SANON and DÁNICA COTO\n\nPORT-AU-PRINCE, Haiti (AP) — For a factory worker in Haiti, the war in distant Iran means he now has to walk two hours to work and the same distance home each day, because he can no longer afford public transportation.\n\nOn a recent morning, Alexandre Joseph, 35, fretted about his family’s future in a loud voice, attracting the attention of passersby in Port-au-Prince, Haiti’s capital.\n\n“The government raised the prices of gasoline, diesel and kerosene, hitting my family. I now am unable to feed my two children on the salary I have,” he said.\n\nThe conflict in Iran has caused oil prices in Haiti to surge, disrupting critical supply chains, doubling transportation costs and forcing millions of undernourished people to cut back on already scarce meals.\n\nHaiti, the most impoverished country in the Western Hemisphere, has been hit the hardest by rising oil prices that experts warn will deepen a spiraling humanitarian crisis.\n\n‘One of the most fragile countries in the world’\n\nOn April 2, Haiti’s government announced a 37% increase in the cost of diesel and a 29% increase in the cost of gasoline.\n\n“The consequences are huge,” said Erwan Rumen, deputy country director for the United Nations World Food Program in Haiti. “It’s one of the most fragile countries in the world.”\n\nAlmost half of Haiti’s nearly 12 million inhabitants already face high levels of acute food insecurity. In recent months, Rumen noted, about 200,000 people dropped from the emergency phase to the acute one, a significant milestone.\n\n“What is a bit frightening is to see that so many efforts could be basically wiped out by things that are completely out of our control,” he said. “This part of the population is extremely fragile. They’re on the verge of collapsing completely.”\n\nGang violence has exacerbated hunger, with armed men controlling key roads and disrupting the transportation of goods. An increase in food prices will only worsen hunger in a country where gangs easily recruit children whose families need food and money.\n\nEmmline Toussaint, main coordinator of Mary’s Meals’ BND school-feeding program in Haiti, said that gas stations in some regions are selling fuel 25% to 30% higher than even what the government stipulated because of gang violence and difficulties with trucks trying to access certain areas.\n\nShe said the U.S.-based nonprofit is forced to use boats and take longer and multiple roads to feed the 196,000 children they serve across Haiti to avoid armed groups.\n\n“The humanitarian crisis that we’re facing right now is at its worst,” she said. “So far, we are doing our best not to step back. Now, more than ever, the kids need us. … Most of them, it’s the only meal they receive.”\n\n‘Everything will go up’\n\nFedline Jean-Pierre, a soft-spoken mother of a 7-year-old boy, sat under the shade of a tattered beach umbrella as she mulled increasing the prices of carrots, tomatoes and other produce she sells at an outdoor market in Port-au-Prince.\n\n“People are not buying now because they don’t have money,” she said, noting she likely won’t have a choice but to increase prices to survive. “I have a child to feed.”\n\nThe 35-year-old mother said she and her son have lived for two years in a cramped and unsanitary shelter, among the record 1.4 million Haitians displaced by gang violence in recent years.\n\n“The government doesn’t do anything for me,” she said. “Gas is up now, meaning everything will go up.”\n\nStreet vendor Maxime Poulard buys charcoal from suppliers to resell at a higher price. Occasionally he sells two bags of charcoal a day, but he thinks he soon will only be able to afford to buy half a bag to resell.\n\n“Traveling is expensive; eating is expensive; everything is expensive,” he said. “I’m not sure if I will be able to hold on much more.”\n\nNearly 40% of Haitians are surviving on less than $2.15 a day, according to the World Bank. Meanwhile, Haiti’s economy contracted for the seventh consecutive year, with inflation reaching 32% at the end of fiscal year 2025.\n\nJoseph, the factory worker, said he plans to sell soft drinks at night out of his home to try and earn more money, but even then, that won’t be enough: “We’re also going to reduce the way we normally eat.”\n\n‘Impossible tradeoffs’\n\nOn April 6, Haitians dragged burning tires and other debris to block streets and protest the increase in fuel prices in Port-au-Prince, of which an estimated 90% is controlled by gangs.\n\nLocal media reported gunfire as some Haitians forced the drivers of small colorful buses known as tap-taps to disembark their passengers.\n\nMarc Jean-Louis, a 29-year-old tap-tap driver, said passengers are increasingly bartering fares, but he can’t afford to offer discounts.\n\n“All the money is going toward gas,” he said as he called on the government to reduced prices “so that everyone can breathe.”\n\nHaitians fear more violence as the country’s poverty and hunger deepens.\n\nRumen, with the U.N.’s World Food Program, said they’ve been unable to reach 60,000 people in Haiti’s central region who are awaiting aid. A powerful gang recently attacked the area, killing more than 70 people, according to the U.N.\n\n“We’re going to have more needs and less resources,” he warned.\n\nAllen Joseph, program manager for Mercy Corps in Haiti, said rising oil prices are crushing the country’s fragile economy: “The families already spending most of their income on food will face impossible tradeoffs.”\n\nHe warned the increase will affect access to basic services, including potable water.\n\n“This is not an abstract inflation,” he warned. “It will directly impact survival.”\n\n___\n\nCoto reported from San Juan, Puerto Rico."} diff --git a/Data/1_Bronze_Raw/News_Scrapes/2026-04-12/Raw/raw_gdelt_asset_metals_derivatives.jsonl b/Data/1_Bronze_Raw/News_Scrapes/2026-04-12/Raw/raw_gdelt_asset_metals_derivatives.jsonl new file mode 100644 index 0000000..341667f --- /dev/null +++ b/Data/1_Bronze_Raw/News_Scrapes/2026-04-12/Raw/raw_gdelt_asset_metals_derivatives.jsonl @@ -0,0 +1,9 @@ +{"url": "https://www.bursadabugun.com/haber/efsane-modellere-veda-turkiye-nin-en-cok-tercih-edilen-iki-otomobili-icin-yolun-sonu-gorundu-1911714.html", "url_mobile": "https://m.bursadabugun.com/haber/amp-efsane-modellere-veda-turkiye-nin-en-cok-tercih-edilen-iki-otomobili-icin-yolun-sonu-gorundu-1911714.html", "title": "Efsane modellere veda : Türkiyenin en çok tercih edilen iki otomobili için yolun sonu göründü", "seendate": "20260412T141500Z", "socialimage": "https://images.bursadabugun.com/haber/2026/04/12/1911714-efsane-modellere-veda-turkiye-nin-en-cok-tercih-edilen-iki-otomobili-icin-yolun-sonu-gorundu-69db8b845cddb.webp", "domain": "bursadabugun.com", "language": "Turkish", "sourcecountry": "Turkey"} +{"url": "https://tech.ifeng.com/c/8sGYfvCKmod", "url_mobile": "", "title": "DeepSeek , 该卸下扫地僧的枷锁了", "seendate": "20260412T133000Z", "socialimage": "https://x0.ifengimg.com/ucms/2026_16/C2E0500EBC6EE7A545C80B1511AF3B6636C38823_size77_w1035_h582.jpg", "domain": "tech.ifeng.com", "language": "Chinese", "sourcecountry": "China"} +{"url": "https://vancouversun.com:443/opinion/columnists/the-bookless-club-cook-with-alcohol-tips", "url_mobile": "", "title": "The Bookless Club : Do you cook with alcohol ? Any tips ? ", "seendate": "20260412T133000Z", "socialimage": "", "domain": "vancouversun.com", "language": "English", "sourcecountry": "Canada"} +{"url": "https://www.swindonadvertiser.co.uk/news/26014087.major-airlines-cut-flights-hike-fares-fuel-costs-rise/", "url_mobile": "", "title": "Major airlines cut flights and hike fares as fuel costs rise", "seendate": "20260412T133000Z", "socialimage": "https://www.swindonadvertiser.co.uk/resources/images/20768302.jpg?type=og-image&xType=0&yType=0", "domain": "swindonadvertiser.co.uk", "language": "English", "sourcecountry": "United Kingdom"} +{"url": "http://www.prnewswire.com/news-releases/earth-day-sale-15-off-organic-mattresses-and-bedding-at-my-green-mattress-302736499.html", "url_mobile": "", "title": "Earth Day Sale : 15 % Off Organic Mattresses and Bedding at My Green Mattress", "seendate": "20260412T133000Z", "socialimage": "", "domain": "prnewswire.com", "language": "English", "sourcecountry": "United States"} +{"url": "https://www.etftrends.com/tactical-allocation-content-hub/gold-volatility-amid-geopolitical-crises-history-tells/", "url_mobile": "https://www.etftrends.com/tactical-allocation-content-hub/gold-volatility-amid-geopolitical-crises-history-tells/amp/", "title": "Gold Volatility Amid Geopolitical Crises : What History Tells Us", "seendate": "20260412T124500Z", "socialimage": "https://www.etftrends.com/wp-content/uploads/2026/04/shutterstock_2373961713.jpg", "domain": "etftrends.com", "language": "English", "sourcecountry": "China"} +{"url": "https://www.huxiu.com/article/4849844.html", "url_mobile": "https://m.huxiu.com/article/4849844.html", "title": "也许是时候想想几个月之后的事情 - 虎嗅网", "seendate": "20260412T124500Z", "socialimage": "https://img.huxiucdn.com/ai/ai-general-cover/202604/12/16978-prod-jm-general-1-1775988736153.png?imageView2/1/w/788/h/444/%7CimageMogr2/strip/interlace/1/quality/85/format/png", "domain": "huxiu.com", "language": "Chinese", "sourcecountry": "China"} +{"url": "https://www.eastbaytimes.com/2026/04/12/horoscopes-april-12-2026-claire-danes-the-timing-is-right-to-branch-out/", "url_mobile": "https://www.eastbaytimes.com/2026/04/12/horoscopes-april-12-2026-claire-danes-the-timing-is-right-to-branch-out/amp/", "title": "Horoscopes April 12 , 2026 : Claire Danes , the timing is right to branch out", "seendate": "20260412T121500Z", "socialimage": "https://www.eastbaytimes.com/wp-content/uploads/2026/04/AP26060822063006.jpg", "domain": "eastbaytimes.com", "language": "English", "sourcecountry": "United States"} +{"url": "https://www.iltempo.it/personaggi/2026/04/12/news/luigi-bisignani-rai-poteri-riforma-governance-lobby-logge-giampaolo-rossi-47241443/", "url_mobile": "https://www.iltempo.it/personaggi/2026/04/12/news/luigi-bisignani-rai-poteri-riforma-governance-lobby-logge-giampaolo-rossi-47241443/amp/", "title": "Rai , in onda il risiko dei poteri tra Bruxelles e Palazzo", "seendate": "20260412T121500Z", "socialimage": "https://img.iltempo.it/images/2026/04/12/102019232-807b67ac-327f-4306-9ab7-22fe6166d009.jpg", "domain": "iltempo.it", "language": "Italian", "sourcecountry": "Italy"} diff --git a/Data/1_Bronze_Raw/News_Scrapes/2026-04-12/Raw/raw_gdelt_asset_precious_metals_spot.jsonl b/Data/1_Bronze_Raw/News_Scrapes/2026-04-12/Raw/raw_gdelt_asset_precious_metals_spot.jsonl new file mode 100644 index 0000000..05b1fa4 --- /dev/null +++ b/Data/1_Bronze_Raw/News_Scrapes/2026-04-12/Raw/raw_gdelt_asset_precious_metals_spot.jsonl @@ -0,0 +1,10 @@ +{"url": "https://www.jagonews24.com/international/news/1109820", "url_mobile": "https://www.jagonews24.com/amp/1109820", "title": "ক্ষেপণাস্ত্র প্রতিরক্ষা সংকটে যুক্তরাষ্ট্র , একমাত্র ভরসা চীন ? ", "seendate": "20260412T141500Z", "socialimage": "https://cdn.jagonews24.com/media/og-image/2026/04/12/og_1776001524_69dba1f463738.jpeg", "domain": "jagonews24.com", "language": "Bengali", "sourcecountry": "Bangladesh"} +{"url": "https://www.tgrthaber.com/ekonomi/islam-memisten-altin-ve-konut-icin-pazartesi-uyarisi-artik-zamani-geldi-3294009", "url_mobile": "", "title": "İslam Memiş ten altın ve konut için pazartesi uyarısı ! Artık zamanı geldi", "seendate": "20260412T141500Z", "socialimage": "https://i.tgrthaber.com/images/2026/4/12/islam-memisten-altin-ve-konut-icin-pazartesi-uyarisi-artik-zamani-geldi-3294009.jpg", "domain": "tgrthaber.com", "language": "Turkish", "sourcecountry": ""} +{"url": "https://www.bursadabugun.com/haber/efsane-modellere-veda-turkiye-nin-en-cok-tercih-edilen-iki-otomobili-icin-yolun-sonu-gorundu-1911714.html", "url_mobile": "https://m.bursadabugun.com/haber/amp-efsane-modellere-veda-turkiye-nin-en-cok-tercih-edilen-iki-otomobili-icin-yolun-sonu-gorundu-1911714.html", "title": "Efsane modellere veda : Türkiyenin en çok tercih edilen iki otomobili için yolun sonu göründü", "seendate": "20260412T141500Z", "socialimage": "https://images.bursadabugun.com/haber/2026/04/12/1911714-efsane-modellere-veda-turkiye-nin-en-cok-tercih-edilen-iki-otomobili-icin-yolun-sonu-gorundu-69db8b845cddb.webp", "domain": "bursadabugun.com", "language": "Turkish", "sourcecountry": "Turkey"} +{"url": "https://www.dostor.org/5503201", "url_mobile": "", "title": "بكام جرام الذهب ؟.. أسعار الذهب اليوم الأحد 12 إبريل 2026", "seendate": "20260412T141500Z", "socialimage": "", "domain": "dostor.org", "language": "Arabic", "sourcecountry": "Egypt"} +{"url": "https://www.latercera.com/pulso/noticia/quienes-son-los-toesca-los-protagonistas-del-momento-en-sanhattan/", "url_mobile": "https://www.latercera.com/pulso/noticia/quienes-son-los-toesca-los-protagonistas-del-momento-en-sanhattan/?outputType=base-amp-type", "title": "Quiénes son los Toesca : Los protagonistas del momento en Sanhattan", "seendate": "20260412T140000Z", "socialimage": "https://www.latercera.com/resizer/v2/JDYL2FMD4BH5PK2CJOKLG457JQ.jpeg?auth=118390cdb73aa2f6de87f5e4feba50889db11a0f8d8ca4b50457a9f7bdc39a4c&smart=true", "domain": "latercera.com", "language": "Spanish", "sourcecountry": "Chile"} +{"url": "https://www.sun-sentinel.com/2026/04/12/ask-ira-time-for-nba-to-cook-the-books-in-heat-favor-after-hornets-rozier-fiasco/", "url_mobile": "", "title": "Should the NBA do next do right by the Miami Heat ? ", "seendate": "20260412T140000Z", "socialimage": "https://www.sun-sentinel.com/wp-content/uploads/2024/01/Bulls-Hornets-Basketball.jpg", "domain": "sun-sentinel.com", "language": "English", "sourcecountry": "United States"} +{"url": "https://jd.zol.com.cn/1162/11629095.html", "url_mobile": "https://m.zol.com.cn/article/11629095.html", "title": "BRAUN 8517S电动剃须刀秘境银Pro版热卖 ! ", "seendate": "20260412T140000Z", "socialimage": "", "domain": "jd.zol.com.cn", "language": "Chinese", "sourcecountry": "China"} +{"url": "https://tech.ifeng.com/c/8sGYfvCKmod", "url_mobile": "", "title": "DeepSeek , 该卸下扫地僧的枷锁了", "seendate": "20260412T133000Z", "socialimage": "https://x0.ifengimg.com/ucms/2026_16/C2E0500EBC6EE7A545C80B1511AF3B6636C38823_size77_w1035_h582.jpg", "domain": "tech.ifeng.com", "language": "Chinese", "sourcecountry": "China"} +{"url": "https://www.express.co.uk/celebrity-news/2192212/liverpool-boy-band-who-made-history", "url_mobile": "https://www.express.co.uk/celebrity-news/2192212/liverpool-boy-band-who-made-history/amp", "title": "Liverpool band made history - but theyre not the Beatles | Celebrity News | Showbiz & TV", "seendate": "20260412T133000Z", "socialimage": "https://cdn.images.express.co.uk/img/dynamic/79/1200x630/6855175.jpg", "domain": "express.co.uk", "language": "English", "sourcecountry": "United Kingdom"} +{"url": "https://www.boerse-express.com/news/articles/wisdomtree-silver-3x-etc-bestaende-brechen-ein-891172", "url_mobile": "", "title": "WisdomTree Silver 3x ETC : Bestände brechen ein ! ", "seendate": "20260412T133000Z", "socialimage": "https://www.boerse-express.com/assets/588056a0d5/wisdomtree-silver-3x-etc-bestaende-brechen-ein-891172__FillWzEyMDAsMTIwMF0.jpg", "domain": "boerse-express.com", "language": "German", "sourcecountry": "Austria"} diff --git a/Data/1_Bronze_Raw/News_Scrapes/2026-04-12/Raw/raw_gdelt_macro_central_banks.jsonl b/Data/1_Bronze_Raw/News_Scrapes/2026-04-12/Raw/raw_gdelt_macro_central_banks.jsonl new file mode 100644 index 0000000..f0da0b6 --- /dev/null +++ b/Data/1_Bronze_Raw/News_Scrapes/2026-04-12/Raw/raw_gdelt_macro_central_banks.jsonl @@ -0,0 +1,10 @@ +{"url": "https://www.govtech.com/blogs/lohrmann-on-cybersecurity/why-anthropics-mythos-is-a-systemic-shift-for-global-cybersecurity", "url_mobile": "", "title": "Why Anthropic Mythos Is a Systemic Shift for Global Cybersecurity", "seendate": "20260412T141500Z", "socialimage": "http://erepublic-brightspot.s3.us-west-2.amazonaws.com/14/56/19411bfc4f7393edf3c68c17b85f/adobestock-679761570.jpeg", "domain": "govtech.com", "language": "English", "sourcecountry": "United States"} +{"url": "https://finance.yahoo.com/markets/options/articles/45k-debt-invest-ira-pay-125503481.html", "url_mobile": "", "title": "I Have $45K in Debt . Should I Invest in an IRA or Pay the Bills First ? ", "seendate": "20260412T133000Z", "socialimage": "https://s.yimg.com/ny/api/res/1.2/K7RApAvnURB22baje1xlIw--/YXBwaWQ9aGlnaGxhbmRlcjt3PTEyMDA7aD03Njc-/https://media.zenfs.com/en/24_7_wall_st__718/12706665d52ca94b935a88fa9a051e7c", "domain": "finance.yahoo.com", "language": "English", "sourcecountry": "United States"} +{"url": "https://aninews.in/news/business/no-increase-in-interest-rates-125-bps-repo-cut-benefit-passed-to-customers-pnb-ceo20260412175534/", "url_mobile": "/news/business/no-increase-in-interest-rates-125-bps-repo-cut-benefit-passed-to-customers-pnb-ceo20260412175534?amp=1", "title": " No increase in interest rates , 125 bps repo cut benefit passed to customers : PNB CEO", "seendate": "20260412T133000Z", "socialimage": "https://d3lzcn6mbbadaf.cloudfront.net/media/details/ANI-20260412122515.jpg", "domain": "aninews.in", "language": "English", "sourcecountry": "India"} +{"url": "https://tribunaonline.com.br/economia/trabalhador-podera-sacar-ate-20-do-fgts-para-pagar-dividas-diz-ministro-298957", "url_mobile": "https://tribunaonline.com.br/economia/trabalhador-podera-sacar-ate-20-do-fgts-para-pagar-dividas-diz-ministro-298957?_=amp", "title": "Trabalhador poderá sacar até 20 % do FGTS para pagar dívidas , diz ministro | Tribuna Online", "seendate": "20260412T133000Z", "socialimage": "https://cdn2.tribunaonline.com.br/img/Artigo-Destaque/290000/Trabalhador-podera-sacar-ate-20-do-FGTS-para-pagar0029895700202604120956.jpg?xid=1399473", "domain": "tribunaonline.com.br", "language": "Portuguese", "sourcecountry": "Brazil"} +{"url": "https://www.tinnhanhchungkhoan.vn/co-phieu-can-quan-tam-ngay-134-post388652.html", "url_mobile": "https://m.tinnhanhchungkhoan.vn/co-phieu-can-quan-tam-ngay-134-post388652.amp", "title": "Cổ phiếu cần quan tâm ngày 13 / 4", "seendate": "20260412T133000Z", "socialimage": "https://image.tinnhanhchungkhoan.vn/1200x630/Uploaded/2026/cqjwqcqdh/2025_08_05/mch-385-8228.jpg", "domain": "tinnhanhchungkhoan.vn", "language": "Vietnamese", "sourcecountry": "Vietnam"} +{"url": "https://baomoi.com/truy-to-nhom-dieu-hanh-bankland-lua-gan-500-ty-dong-cua-hon-5-300-bi-hai-c54920488.epi", "url_mobile": "", "title": "Truy tố nhóm điều hành Bankland lừa gần 500 tỷ đồng của hơn 5 . 300 bị hại", "seendate": "20260412T133000Z", "socialimage": "", "domain": "baomoi.com", "language": "Vietnamese", "sourcecountry": "Vietnam"} +{"url": "https://www.reflector.com/news/national/lessons-learned-in-70s-have-made-the-us-and-world-economies-less-vulnerable-to-oil/article_889e87a7-70fd-5892-8f19-f669048a2cd2.html", "url_mobile": "", "title": "Lessons learned in 70s have made the US and world economies less vulnerable to oil shocks", "seendate": "20260412T133000Z", "socialimage": "https://bloximages.newyork1.vip.townnews.com/reflector.com/content/tncms/assets/v3/editorial/7/18/718227f8-338f-55a7-9d71-03402a1ad4d1/69bc41e01ffe6.image.jpg?crop=1763%2C926%2C0%2C124", "domain": "reflector.com", "language": "English", "sourcecountry": "United States"} +{"url": "https://www.prnewswire.com/news-releases/the-conference-board-employment-trends-index-eti-declined-in-march-302734697.html", "url_mobile": "", "title": "The Conference Board Employment Trends Index™ ( ETI ) Declined in March", "seendate": "20260412T133000Z", "socialimage": "", "domain": "prnewswire.com", "language": "English", "sourcecountry": "United States"} +{"url": "https://www.sozcu.com.tr/30-yildir-ilk-kez-yasaniyor-merkez-bankalari-dolardan-kacip-altina-sigindi-p309549", "url_mobile": "https://www.sozcu.com.tr/amp/30-yildir-ilk-kez-yasaniyor-merkez-bankalari-dolardan-kacip-altina-sigindi-p309549", "title": "30 yıldır ilk kez yaşanıyor : Merkez bankaları dolardan kaçıp altına sığındı", "seendate": "20260412T133000Z", "socialimage": "https://sozcu01.sozcucdn.com/sozcu/production/uploads/images/2026/4/altinrez3jpg-cp0On19hi0SzVtFT6NSGKg.jpg?&mode=crop&scale=both", "domain": "sozcu.com.tr", "language": "Turkish", "sourcecountry": "Turkey"} +{"url": "https://www.tinnhanhchungkhoan.vn/tien-re-co-quay-lai-chung-khoan-sang-cua-but-pha-post388709.html", "url_mobile": "https://m.tinnhanhchungkhoan.vn/tien-re-co-quay-lai-chung-khoan-sang-cua-but-pha-post388709.amp", "title": "Tiền rẻ có quay lại , chứng khoán sáng cửa bứt phá ? ", "seendate": "20260412T133000Z", "socialimage": "https://image.tinnhanhchungkhoan.vn/1200x630/Uploaded/2026/sotnza/2021_03_31/dsc-4988-7827.jpg", "domain": "tinnhanhchungkhoan.vn", "language": "Vietnamese", "sourcecountry": "Vietnam"} diff --git a/Data/1_Bronze_Raw/News_Scrapes/2026-04-12/Raw/raw_gdelt_macro_geopolitics_risk.jsonl b/Data/1_Bronze_Raw/News_Scrapes/2026-04-12/Raw/raw_gdelt_macro_geopolitics_risk.jsonl new file mode 100644 index 0000000..c73d446 --- /dev/null +++ b/Data/1_Bronze_Raw/News_Scrapes/2026-04-12/Raw/raw_gdelt_macro_geopolitics_risk.jsonl @@ -0,0 +1,8 @@ +{"url": "https://www.readingchronicle.co.uk/news/national/26014084.russia-ukraine-trade-blame-violating-orthodox-easter-ceasefire/", "url_mobile": "", "title": "Russia and Ukraine trade blame for violating Orthodox Easter ceasefire", "seendate": "20260412T141500Z", "socialimage": "https://www.readingchronicle.co.uk/resources/images/20777447.jpg?type=og-image", "domain": "readingchronicle.co.uk", "language": "English", "sourcecountry": "United Kingdom"} +{"url": "https://www.jagonews24.com/international/news/1109820", "url_mobile": "https://www.jagonews24.com/amp/1109820", "title": "ক্ষেপণাস্ত্র প্রতিরক্ষা সংকটে যুক্তরাষ্ট্র , একমাত্র ভরসা চীন ? ", "seendate": "20260412T141500Z", "socialimage": "https://cdn.jagonews24.com/media/og-image/2026/04/12/og_1776001524_69dba1f463738.jpeg", "domain": "jagonews24.com", "language": "Bengali", "sourcecountry": "Bangladesh"} +{"url": "https://www.hindustantimes.com/world-news/when-trump-said-iran-never-lost-a-negotiation-old-post-returns-as-talks-fail-101775996913412.html", "url_mobile": "https://www.hindustantimes.com/world-news/when-trump-said-iran-never-lost-a-negotiation-old-post-returns-as-talks-fail-101775996913412-amp.html", "title": "When Trump said Iran never lost a negotiation : His old post returns as Islamabad talks fail", "seendate": "20260412T141500Z", "socialimage": "https://www.hindustantimes.com/ht-img/img/2026/04/12/550x309/Trump-Never-Loses-0_1775997253691_1775997276489.jpg", "domain": "hindustantimes.com", "language": "English", "sourcecountry": "India"} +{"url": "https://www.bordertelegraph.com/news/national/26014105.starmer-urges-us-iran-to-find-way-through-peace-talks-fail/", "url_mobile": "", "title": "Starmer urges US and Iran to find a way through after peace talks fail", "seendate": "20260412T141500Z", "socialimage": "https://www.bordertelegraph.com/resources/images/20777455.jpg?type=og-image", "domain": "bordertelegraph.com", "language": "English", "sourcecountry": "United Kingdom"} +{"url": "https://article.wn.com/view/2026/04/12/China_to_reinstate_some_Taiwan_ties_after_opposition_leaders/", "url_mobile": "", "title": "China to reinstate some Taiwan ties after opposition leader visit", "seendate": "20260412T141500Z", "socialimage": "", "domain": "article.wn.com", "language": "English", "sourcecountry": "United States"} +{"url": "https://www.tanjug.rs/region/politika/244331/viktor-orban-ukrajina-ce-pustiti-naftovod-druzba-cim-pobedimo-odmah-ujutru/vest", "url_mobile": "https://www.tanjug.rs/region/politika/244331/viktor-orban-ukrajina-ce-pustiti-naftovod-druzba-cim-pobedimo-odmah-ujutru/amp", "title": "Viktor Orban : Ukrajina će pustiti naftovod Družba čim pobedimo", "seendate": "20260412T141500Z", "socialimage": "https://www.tanjug.rs/data/images/2026-04-12/377971_hungary-election_s.jpg", "domain": "tanjug.rs", "language": "Croatian", "sourcecountry": "Serbia"} +{"url": "https://www.muensterschezeitung.de/nachrichten/schlagzeilen/ukraine-krieg-tausende-verstoesse-bei-osterwaffenruhe-beklagt-3530354", "url_mobile": "", "title": "Ukraine - Krieg : Tausende Verste bei Osterwaffenruhe beklagt", "seendate": "20260412T141500Z", "socialimage": "https://asc-images.forward-publishing.io/2026/04/12/01cd0b3e-0f89-4152-85d9-03a099f8216d.jpg?rect=0%2C0%2C2048%2C1365&auto=compress%2Cformat", "domain": "muensterschezeitung.de", "language": "German", "sourcecountry": "Germany"} +{"url": "https://www.diariocritico.com/internacional/trump-anuncia-bloqueo-estrecho-ormuz-paguen-a-iran", "url_mobile": "", "title": "Trump anuncia un bloqueo del Estrecho de Ormuz para todos aquellos que paguen a Irán", "seendate": "20260412T141500Z", "socialimage": "https://www.diariocritico.com/fotos/1/380993_donald-trump.jpg", "domain": "diariocritico.com", "language": "Spanish", "sourcecountry": "Spain"} diff --git a/Data/1_Bronze_Raw/News_Scrapes/2026-04-12/Raw/raw_gdelt_macro_inflation_employment.jsonl b/Data/1_Bronze_Raw/News_Scrapes/2026-04-12/Raw/raw_gdelt_macro_inflation_employment.jsonl new file mode 100644 index 0000000..53f643b --- /dev/null +++ b/Data/1_Bronze_Raw/News_Scrapes/2026-04-12/Raw/raw_gdelt_macro_inflation_employment.jsonl @@ -0,0 +1,10 @@ +{"url": "https://www.ringblad.no/enighet-med-fellesforbundet-i-frontfagsoppgjoret-parat-fortsatt-i-mekling/s/5-45-2209025", "url_mobile": "", "title": "Lønnsforhandlinger , Arbeidsliv | Enighet med Fellesforbundet i frontfagsoppgjøret – Parat fortsatt i mekling", "seendate": "20260412T141500Z", "socialimage": "https://g.acdn.no/obscura/API/dynamic/r1/ece5/tr_2000_2000_s_f/1775995163000/ring/2026/4/12/13/cueres_scp-mangler_navn_9D2iQ17g1MU.jpg?chk=022ED1", "domain": "ringblad.no", "language": "Norwegian", "sourcecountry": "Norway"} +{"url": "https://www.moonofalabama.org/2026/04/war-on-iran-loser-tries-setting-terms-the-strange-idea-of-blockading-blockaders.html/comment-page-2", "url_mobile": "", "title": "War On Iran : – Loser Tries Setting Terms – The Strange Idea Of Blockading Blockaders – Moon of Alabama", "seendate": "20260412T141500Z", "socialimage": "", "domain": "moonofalabama.org", "language": "English", "sourcecountry": "Syria"} +{"url": "https://finance.sina.com.cn/tech/roll/2026-04-12/doc-inhufzfw3094116.shtml", "url_mobile": "", "title": "数码回收网 : 2026年3月废旧手机回收价暴跌30 % ", "seendate": "20260412T141500Z", "socialimage": "", "domain": "finance.sina.com.cn", "language": "Chinese", "sourcecountry": "China"} +{"url": "https://www.elobservador.com.uy/espana/impacto-global/fracasa-la-negociacion-eeuu-e-iran-islamabad-y-vuelven-sonar-los-tambores-guerra-n6040452", "url_mobile": "", "title": "Fracasa la negociación entre EEUU e Irán en Islamabad y vuelven a sonar los tambores de guerra", "seendate": "20260412T141500Z", "socialimage": "https://media.elobservador.com.uy/p/e1b68ea2f4b44771ca627bb9220c6a40/adjuntos/364/imagenes/100/732/0100732019/1200x675/smart/69db384836aec7-31436707r_d1619-765-4267.webp", "domain": "elobservador.com.uy", "language": "Spanish", "sourcecountry": "Uruguay"} +{"url": "https://www.thestandard.co.zw/business/article/200053827/zimbabwes-lenders-hedge-against-global-shocks", "url_mobile": "https://www.newsday.co.zw/thestandard/amp/business/article/200053827/zimbabwes-lenders-hedge-against-global-shocks", "title": "Zimbabwe lenders hedge against global shocks", "seendate": "20260412T141500Z", "socialimage": "", "domain": "thestandard.co.zw", "language": "English", "sourcecountry": "Zimbabwe"} +{"url": "http://www.newstribune.com/news/2026/apr/12/in-rural-missouri-immigration-crackdown-reaches-beyond-the-workplace/", "url_mobile": "", "title": "In rural Missouri , immigration crackdown reaches beyond the workplace", "seendate": "20260412T141500Z", "socialimage": "https://wehco.media.clients.ellingtoncms.com/img/photos/2026/04/12/2-27-26__2026_March_Milan_17-scaled-1-e1775821936280-1536x846_t1200.jpeg?57a0c2296240c280e9492005c3cad63e7cbe80f4", "domain": "newstribune.com", "language": "English", "sourcecountry": "United States"} +{"url": "https://news.shm.com.cn/2026-04/12/content_5482767.htm", "url_mobile": "", "title": "中国游记 | 春色不负万里客 ! 老外爱上 春日中国行 - 水母网", "seendate": "20260412T140000Z", "socialimage": "", "domain": "news.shm.com.cn", "language": "Chinese", "sourcecountry": "China"} +{"url": "https://www.jalopnik.com/2142415/how-to-check-vehicle-tires-how-often/", "url_mobile": "", "title": "Here How ( And How Often ) To Inspect Your Vehicle Tires", "seendate": "20260412T140000Z", "socialimage": "https://www.jalopnik.com/img/gallery/heres-how-and-how-often-to-inspect-your-vehicles-tires/l-intro-1775583371.jpg", "domain": "jalopnik.com", "language": "English", "sourcecountry": "United States"} +{"url": "https://www.latercera.com/pulso/noticia/quienes-son-los-toesca-los-protagonistas-del-momento-en-sanhattan/", "url_mobile": "https://www.latercera.com/pulso/noticia/quienes-son-los-toesca-los-protagonistas-del-momento-en-sanhattan/?outputType=base-amp-type", "title": "Quiénes son los Toesca : Los protagonistas del momento en Sanhattan", "seendate": "20260412T140000Z", "socialimage": "https://www.latercera.com/resizer/v2/JDYL2FMD4BH5PK2CJOKLG457JQ.jpeg?auth=118390cdb73aa2f6de87f5e4feba50889db11a0f8d8ca4b50457a9f7bdc39a4c&smart=true", "domain": "latercera.com", "language": "Spanish", "sourcecountry": "Chile"} +{"url": "https://www.sun-sentinel.com/2026/04/12/haitians-cut-back-on-already-scarce-food-and-ask-how-theyll-survive-rising-fuel-prices/", "url_mobile": "", "title": "Haitians cut back on already scarce food and ask how theyll survive rising fuel prices – Sun Sentinel", "seendate": "20260412T140000Z", "socialimage": "https://www.sun-sentinel.com/wp-content/uploads/2026/04/Haiti_Gas__6723-1.jpg", "domain": "sun-sentinel.com", "language": "English", "sourcecountry": "United States"} diff --git a/Data/1_Bronze_Raw/News_Scrapes/2026-04-14/Full_text/full_text_asset_precious_metals_spot.jsonl b/Data/1_Bronze_Raw/News_Scrapes/2026-04-14/Full_text/full_text_asset_precious_metals_spot.jsonl new file mode 100644 index 0000000..d3d4192 --- /dev/null +++ b/Data/1_Bronze_Raw/News_Scrapes/2026-04-14/Full_text/full_text_asset_precious_metals_spot.jsonl @@ -0,0 +1,7 @@ +{"url": "https://thoibaotaichinhvietnam.vn/ngay-154-gia-bac-trong-nuoc-va-the-gioi-bat-tang-manh-195669.html", "title": "Ngày 15 / 4 : Giá bạc trong nước và thế giới bật tăng mạnh", "publish_date": "2026-04-15T03:32:11Z", "full_text": "Giá bạc hôm nay vượt 80 triệu/kg. Ảnh minh họa\n\nCập nhật lúc 8h30h sáng 15/4, giá bạc miếng Phú Quý 999 tại Tập đoàn Vàng bạc Đá quý Phú Quý hiện niêm yết ở mức 3.018.000 đồng/lượng (mua vào) và 3.111.000 đồng/lượng (bán ra), tăng so với mức 2.852.000 đồng/lượng (mua vào) và 2.940.000 đồng/lượng (bán ra) niêm yết sáng hôm qua.\n\nTrong khi đó, bạc các thương hiệu khác niêm yết trên Phú Quý cũng tăng so với trước. Cụ thể, bạc 999 10 lượng, 5 lượng ở mức 3.018.000 đồng/lượng (mua vào) và 3.111.000 đồng/lượng (bán ra); đồng bạc mỹ nghệ Phú Quý 999 ở mức 3.018.000 đồng/lượng (mua vào) và 3.551.000 đồng/lượng (bán ra); bạc thỏi Phú Quý 999 1Kilo ở mức 80.479.000 đồng/lượng (mua vào) và 82.959.793 đồng/lượng (bán ra); bạc 999 (miếng - thanh - thỏi) ở mức 2.554.000 đồng/lượng (mua vào) và 3018.000 đồng/lượng (bán ra).\n\nCập nhật bảng giá bạc mới nhất tại Tập đoàn Vàng bạc Đá quý Phú Quý ngày 15/4/2026:\n\nTrên thị trường thế giới, giá bạc phục hồi mạnh vượt mốc 80 USD/ounce. Diễn biến này diễn ra trong bối cảnh Mỹ và Iran phát tín hiệu sẵn sàng nối lại đàm phán, hướng tới một thỏa thuận ngừng bắn dài hạn trước khi lệnh đình chiến hai tuần hiện tại hết hiệu lực. Cập nhật lúc 8h45h sáng 15/4, giá bạc thế giới tăng mạnh. Giá bạc giao ngay hiện đang ở mức 80,470 USD/ounce, tăng 1,11% so với hôm qua.\n\nĐà tăng của bạc trong những phiên gần nhất được đánh giá là tín hiệu tích cực sau giai đoạn điều chỉnh. Thị trường đã nhanh chóng phục hồi, cho thấy lực cầu vẫn đang đóng vai trò chủ đạo, đặc biệt khi giá giảm về vùng hấp dẫn.\n\nMột trong những điểm đáng chú ý trong diễn biến giá bạc hôm nay là sự quay trở lại mạnh mẽ của dòng tiền bắt đáy. Khi giá giảm về vùng thấp trong các phiên trước, nhiều nhà đầu tư đã tận dụng cơ hội để gia tăng vị thế mua.\n\nĐiều này giúp thị trường nhanh chóng lấy lại đà tăng và duy trì trạng thái ổn định, thay vì rơi vào xu hướng giảm sâu. Thực tế cho thấy bạc vẫn là kênh đầu tư hấp dẫn trong bối cảnh nhiều biến động kinh tế toàn cầu./."} +{"url": "https://www.163.com/dy/article/KQI4EG8P0519DDQ2.html", "title": "具身智能百日内 吸金 超345亿元|融资|算法|模态|机器人", "publish_date": "2026-04-15T03:32:11Z", "full_text": "声明:包含AI生成内容\n\n特别声明:以上内容(如有图片或视频亦包括在内)为自媒体平台“网易号”用户上传并发布,本平台仅提供信息存储服务。\n\nNotice: The content above (including the pictures and videos if any) is uploaded and posted by a user of NetEase Hao, which is a social media platform and only provides information storage services."} +{"url": "https://baomoi.com/gia-vang-ngay-15-4-bang-gia-tai-cac-cong-ty-vang-bac-da-quy-c54939126.epi", "title": "Giá vàng ngày 15 / 4 : Bảng giá tại các công ty vàng bạc đá quý", "publish_date": "2026-04-15T03:32:11Z", "full_text": "Vàng trang sức. (Ảnh: Phan Phương/TTXVN)\n\nGiá vàng thế giới tăng khoảng 2% lên 4.831,78 USD/ounce nhờ đồng USD yếu và kỳ vọng các cuộc đàm phán Mỹ-Iran sẽ được nối lại.\n\nChuyên gia Bob Haberkorn tại RJO Futures nhận định nhà đầu tư đang chuyển hướng quay lại kim loại quý thay vì giữ tiền mặt như giai đoạn đầu xung đột.\n\nCác nhà phân tích tại Commerzbank cho rằng chừng nào Cục Dự trữ Liên bang Mỹ (Fed) chưa có dấu hiệu tăng lãi suất, giá vàng sẽ rất khó giảm sâu. Hiện các nhà giao dịch dự báo chỉ có khoảng 33% khả năng Fed sẽ cắt giảm lãi suất trong năm nay, một con số thấp hơn nhiều so với kỳ vọng trước khi diễn ra xung đột tại Trung Đông.\n\nTại Việt Nam, vào sáng 15/4, công ty Vàng bạc đá quý Sài Gòn niêm yết giá vàng SJC tại thị trường Hà Nội ở mức 173,00-175,50 triệu đồng/lượng (mua vào-bán ra).\n\nDưới đây là bảng giá vàng tại một số công ty vàng bạc đá quý trong nước sáng 15/4:\n\nGiá vàng tại Công ty Trách nhiệm hữu hạn Một thành viên Vàng bạc đá quý Sài Gòn (SJC):\n\nGiá vàng tại Công ty Cổ phần Đầu tư vàng Phú Quý:"} +{"url": "http://www.elpuntavui.cat/politica/article/17-politica/2635259-pisos-turistics-les-cases-per-als-veins-i-els-turistes-als-hotels.html", "title": " Pisos turístics ? Les cases , per als veïns i els turistes , als hotels ", "publish_date": "2026-04-15T03:32:11Z", "full_text": "E\n\nl PP i Vox han aprovat els pressupostos per a 2026. Com valoreu els comptes?\n\nAquests pressupostos són els més elevats de la història, però, així i tot, reflecteixen una realitat preocupant: la inversió als barris ha caigut a mínims històrics, amb només 20 milions d’euros destinats a aquestes partides. A més, l’execució del pressupost per part de l’equip de govern és ineficient, ja que amb prou faenes executen 3 de cada 10 euros pressupostats. Aquesta falta de capacitat de gestió provoca que la resta dels fons acaben sistemàticament en el romanent de tresoreria, un fet que situa Alacant a la cua d’inversió per habitant en comparació amb altres capitals. L’aprovació d’aquests comptes ha estat condicionada per una sèrie de concessions que el PP ha fet a Vox i que es tradueixen en projectes sense competències ni utilitat real. Per exemple, una Oficina Antiocupació, que és una infraestructura buida, sense personal policial ni competències i que té un pressupost que es limita pràcticament a la placa de la porta: uns 30 euros. També l’Oficina del Cuidador: un recurs sense funcions clares ni sistema de cites que, a la pràctica, només ofereix atenció psicològica a les famílies afectades per les mancances del sistema. I, finalment, el que ells en diuen Oficina de la Maternitat, és a dir, l’Oficina Antiavortaments, una iniciativa de dubtosa legalitat que duplica serveis i que no té base competencial. D’altra banda, als comptes també hi ha projectes destinats principalment al turisme, com la instal·lació de fonts, zones wifi per als creueristes o instal·lació puntual de tendals, que no responen a les necessitats estructurals de la ciutadania. Així, mentre s’inauguren aquestes oficines, la realitat és que Alacant és una de les ciutats amb el menor índex de municipalització. S’està externalitzant pràcticament tot i s’han tancat recursos vitals, com el Centre de Dia de la plaça d’Amèrica, l’únic de gestió municipal. Resulta paradoxal que els 400.000 euros destinats a aquest centre s’hagen derivat a l’Oficina del Cuidador: primer es desmantella el sistema públic de cures i, posteriorment, s’ofereix un psicòleg a la família sobrecarregada pel col·lapse d’aquest mateix sistema.\n\nAlacant és una ciutat amb una greu crisi d’habitatge.\n\nPrecisament, l’àrea d’Habitatge ha tingut una retallada del 30%, la qual cosa implica renunciar de facto a la construcció d’habitatge públic. N’és un exemple clar la promoció de 32 habitatges al carrer de Ceuta. En 2021, aquesta iniciativa es va projectar com a habitatge totalment públic, gràcies a l’esforç per aconseguir fons del Consell i del govern d’Espanya. Ara bé, actualment, el govern municipal ha rebutjat una subvenció d’un milió i mig d’euros i ha eliminat la partida pressupostària original. Aquests immobles passaran a ser habitatges de protecció pública (HPP) amb preus que oscil·len entre els 250.000 i els 316.000 euros, imports totalment inaccessibles per a la joventut i les famílies treballadores. Cal dir, a més, que el decret aprovat pel Consell de Mazón en setembre de 2024 ha eliminat els mecanismes de control i transparència en matèria d’habitatge. Amb la baixada dels barems econòmics i la falta d’inspectors, s’ha liberalitzat el sòl públic per a fer-lo atractiu a les constructores. Aquesta flexibilització permet que les mateixes empreses decidisquen qui accedeix als habitatges, i el control per part de l’administració és mínim. En definitiva, s’està utilitzant el sòl de la ciutat com un solar per a l’especulació, mercadejant amb un dret bàsic, mentre es buiden de contingut les institucions públiques.\n\nTanmateix, a la ciutat afecta també especialment l’habitatge turístic.\n\nEn aquest cas, proposem una mesura dràstica per a l’any 2028: no concedir ni renovar cap llicència d’apartament turístic a la ciutat. No es tracta de fer moratòries temporals, sinó d’extingir aquest model en l’àmbit de l’habitatge residencial. L’objectiu és que milers d’immobles destinats actualment al turisme tornen al mercat de lloguer habitual. El turisme ha d’allotjar-se en hotels, aparthotels o edificis dedicats exclusivament a eixa activitat, però les comunitats de veïns han de recuperar la seua funció original: servir per a viure-hi.\n\nQuines propostes més en matèria d’habitatge feu a Compromís?\n\nPer a revertir la situació actual d’emergència residencial, és imprescindible intervindre en el mercat. És absurd confiar que només amb la construcció de nous immobles baixaran els preus, quan la demanda és aclaparadora: hi ha 141 persones esperant per cada habitatge disponible. Així, doncs, la primera mesura urgent és declarar Alacant com a ciutat tensionada. Sense aquesta intervenció administrativa, els preus continuaran disparats. Ara com ara, hi ha unes 20.000 cases buides a la ciutat. Per a traure-les al mercat de lloguer, proposem un sistema de doble incentiu. D’una banda, per als xicotets propietaris, proposem que l’Ajuntament actue com a avalador i hi oferisca garanties jurídiques, patrimonials i econòmiques. Si un propietari lloga sa casa a través d’aquest programa, el consistori garanteix el cobrament de les rendes i la devolució de l’immoble en perfecte estat, quan finalitze el contracte. D’una altra, per als grans tenidors, aquests que posseïsquen més de cinc habitatges, s’hi ha d’aplicar una pressió fiscal dissuasiva, que faça que els isca més a compte traure’ls al mercat de lloguer: proposem duplicar la taxa de fem i triplicar l’IBI per a aquells que mantinguen els immobles tancats i obligar-los, així, a posar-los per a llogar. A diferència d’altres models, més conservadors i que pensem que no resoldrien el problema, nosaltres advoquem perquè l’Ajuntament exercisca el seu dret de tanteig i retracte. Davant l’operació de venda d’una finca sencera, per exemple, l’administració hi ha d’intervindre per interés general, bloquejar l’operació privada i adquirir l’immoble. Comprar edificis ja construïts és una via molt més àgil i efectiva que la construcció des de zero, que sol ser un procediment molt més llarg i complex. De fet, la construcció d’habitatge públic o protegit que s’està fent ara ha de canviar de paradigma: mai ha de passar a ser propietat de particulars. L’Ajuntament ha de mantindre el control permanent del parc públic i blindar-lo. I, és clar, s’han de revertir les modificacions normatives del Consell de Mazón, que faciliten l’especulació.\n\nCom es finançarien totes aquestes iniciatives?\n\nD’una banda, com hem vist, amb una gestió més eficient dels comptes públics, ja que el govern del PP, amb el suport de Vox, no fa inversions: la seua ineficiència fa que els diners necessaris per a fer polítiques públiques es queden en el romanent de tresoreria. D’una banda, amb una taxa turística municipal. És a dir, si el govern del PP amb el suport de Vox al Consell continua bloquejant una taxa turística autonòmica, el que ha de fer l’Ajuntament d’Alacant és actuar en tot allò en què té competències. Per exemple, el govern municipal té competències per a cobrar entrades per accedir als espais turístics: tothom que puge al castell, per exemple, que pague una taxa. Amb aquests diners, projectaríem habitatges, milloraríem els serveis públics, apostaríem per obrir centres de dia, biblioteques, centres comunitaris… Faríem la Revolució Alacant, ja que, en aquests últims vuit anys, els governs del PP no han fet res. Han sigut dos mandats perduts: ni un centre de salut ni una escola. Ho han bloquejat tot. No han fet res de res. Han sigut uns anys de gestió pèssima i de pagar diners als bancs. Hem arribat als 200 milions d’euros de romanent perquè no s’hi ha fet res. I per això els barris estan com estan: totalment abandonats.\n\nA més, hi ha hagut l’escàndol de les adjudicacions en la promoció d’habitatge públic de Les Naus, a la plata de Sant Joan.\n\nAquest cas és d’una obscenitat absoluta. Ens trobem davant una situació en què la mateixa regidora d’Urbanisme és l’encarregada de revisar tècnicament un expedient en el qual tant ella com el seu entorn directe hi tenen interessos. La llista de beneficiaris de la promoció és alarmant: arquitectes municipals, caps de servei, la cap de contractació, la directora general —qui ja va elegir una HPP anteriorment—, així com fills de regidors de Sant Vicent del Raspeig i d’altres municipis. Es tracta de persones vinculades al poder i molt ben posicionades en la ciutat. El canvi en la normativa, fet pel Consell de Mazón, que comentava adés, ha estat la clau per a convertir aquest procés en un colador, ja que s’hi ha eliminat qualsevol mecanisme de transparència, concurs o vigilància. Les conseqüències econòmiques per a la ciutat són nefastes. Per exemple, s’ha venut una parcel·la altament cotitzada per 6 milions d’euros, quan el seu valor de mercat podria haver arribat als 15 milions. A més, encara que el PP no vulga reconèixer-ho, aquests habitatges estan subvencionats: és impossible adquirir un habitatge en la Platja de Sant Joan amb pistes de pàdel, piscina, garatge i traster per 210.000 euros, quan en les promocions veïnes, amb menys serveis, els preus superen els 400.000 euros. El model imposat pel Partit Popular consisteix a cedir sòl públic amb la condició de construir habitatge protegit, però amb trampa, ja que hi ha, d’una banda, arbitrarietat: la constructora té la potestat de triar els beneficiaris; d’una altra, tenim la desregulació: es rebaixen els requisits d’accés per a facilitar que persones de l’entorn polític s’hi puguen beneficiar. I, finalment, el sistema permet els tripijocs posteriors, com la venda en negre, els canvis de titularitat irregulars o el lloguer fraudulent, tal com ja està ocorrent amb les HPP de Les Naus. Des de Compromís, per contra, defensem una transformació radical del model. Proposem que l’habitatge construït sobre sòl públic es mantinga sempre sota titularitat pública o es destine a lloguer assequible, per a garantir, així, que mai passe a mans privades per a l’especulació. Lamentablement, l’equip de govern no té intenció d’aprendre dels errors. Fa només uns dies, com deia, van tornar a modificar el format de la promoció del carrer de Ceuta, al barri de Sant Blai, per a transformar-la novament en HPP i continuar amb aquest sistema de venda de sòl públic al servei de l’especulació."} +{"url": "https://www.stcn.com/article/detail/3750646.html", "title": "永辉超市38亿追款获胜 , 王健林等承担连带保证责任", "publish_date": "2026-04-15T03:32:11Z", "full_text": "时隔一年有余,永辉超市(601933.SH)针对大连御锦贸易有限公司(简称“大连御锦”)未按约支付万达商管股份转让款而进行的追款申请,获终局裁决支持。\n\n4月14日晚间,永辉超市发布公告称,近日收到上海国际经济贸易仲裁委员会(上海国际仲裁中心)(简称“上国仲”)送达的裁决书。根据裁决,第一被申请人大连御锦需向永辉超市支付剩余股份转让价款和加速到期违约金等共计38.57亿元。第二被申请人王健林、第三被申请人孙喜双、第四被申请人大连一方集团对上述债务承担连带保证责任。\n\n公开资料显示,大连御锦的大股东为一方集团,孙喜双为一方集团实际控制人。孙喜双是王健林多年好友,他和一方集团经常出现在王健林的公司股东名单中。\n\n2018年,为了拓展优质物业,永辉超市以35.3亿元,从一方集团手中买下大连万达商管约3.9亿股股权。随着永辉超市业绩出现下滑,以至连年亏损,永辉超市又将其转让。\n\n2023年12月,永辉超市向大连御锦出售所持有的约3.9亿股大连万达商管股份。标的股份对应的股份转让价款超过45亿元,由大连御锦分八期支付。永辉超市称,本次交易目的是为了盘活公司资产,符合公司缩小投资规模战略。\n\n2024年7月26日,永辉超市与大连御锦、王健林、孙喜双、一方集团签订上述股份转让协议的补充协议。补充协议约定,本次转股的剩余股份转让价款合计38.39亿元,共分八期支付。其中,第四期股份转让价款的约定付款时间为2024年9月30日,约定付款金额为3亿元。王健林、孙喜双、一方集团将为剩余转让价款的支付提供担保。由此,王健林成为此次交易的“保人”之一。\n\n图片来源:界面图库\n\n但是大连御锦未按约定履行付款义务,王健林、孙喜双、一方集团也未承担担保责任,为此永辉超市向上国仲提起仲裁申请。\n\n\n\n永辉超市公告显示,经审理,上海国际经济贸易仲裁委员会仲裁庭作出裁决:大连御锦需向永辉超市支付剩余股份转让价款约36.39亿元,支付加速到期违约金2.18亿元,并支付律师费等,合计超过38.57亿元。\n\n永辉超市表示,本裁决为终局裁决,自作出之日起生效。但截至本公告披露日被申请人尚未履行相关义务,暂时无法确定本次仲裁事项对公司本期或期后利润的影响。公司将根据案件的后续进展及结果,依据有关会计准则的要求和实际情况进行相应的会计处理,对公司损益的影响以会计师年度审计确认后的结果为准。\n\n目前,永辉超市业绩承压。永辉超市发布的2025年业绩快报公告显示,报告期内,公司实现营业收入535.08亿元,较上年同期下降20.82%;归属于上市公司股东的净亏损为25.50亿元,较上年同期增亏74.01%;归属于上市公司股东的扣除非经常性损益的净亏损33.99亿元,较上年同期增亏41.00%。\n\n截至2025年底,永辉超市总资产304.82亿元,较报告期初减少28.70%;归属于上市公司股东的所有者权益18.59亿元,较报告期初减少58.13%。\n\n为了尽快盘活资产、回笼资金、聚焦主业,永辉超市仍在继续出售相关资产。3月23日,永辉超市发布公告称,董事会同意公司按与上海派慧科技有限公司协议约定的交易方案,以总价8000万元向其转让云金科技28.095%的股权。本次交易完成后,永辉超市不再持有云金科技的股权。目前该交易协议已生效。\n\n此次永辉超市38亿元追债获得裁决支持,在被申请人履行完相关义务后,有助于其进一步回笼资金。\n\n4月15日开盘,永辉超市股价为3.98元/股,涨幅为1.79%,市值为361.19亿元。"} +{"url": "https://china.qianlong.com/2026/0415/8654785.shtml", "title": "开局之年看中国 · 开放自贸港 : 从 机场流量 迈向 经济增量 - 千龙网 · 中国首都网", "publish_date": "2026-04-15T03:32:11Z", "full_text": "海南自贸港临空产业通过“航空特货超级运营人”项目,打造1公里内完成通关、查验、仓储、加工、离港的高效物流闭环,并依托免税政策、第七航权开放等制度优势,推动飞机维修、航空物流、低空经济等产业集聚发展,实现从“机场流量”向“经济增量”的实质性跃升。\n\n在海南自贸港绿色低碳国际合作示范项目启动区内,一片约800亩的土地正悄然改变区域航空物流格局。\n\n这里紧邻海口美兰国际机场未来三期跑道,规划建设一条400米地下通道,将园区与机场跑道直接相连——货物抵港后,一公里内即可完成通关、查验、仓储、加工、离港全流程。这是海南临空产业发展集团有限公司打造的“航空特货超级运营人”项目,也是临空经济新模式的试验场。\n\n“超级运营人”重塑物流效率\n\n何为“超级运营人”?航空特货超级运营人项目负责人张昊鹏14日接受中新网记者采访时给出明确答案:核心不在于仓库体量,而在于对特殊货物的全面统筹能力。项目聚焦“大、重、危、冷”特货——从航空发动机等超大尺寸货物,到锂电池、高度酒类等危险品,再到冰鲜水产品、重型货物,做到全品类货物的高效通关统筹。\n\n以进口三文鱼、金枪鱼为例,张昊鹏说,目前海南市场上的冰鲜产品多经广东转口,时效与成本不占优势。为此,该项目与美兰机场形成监管场地联动,未来冰鲜与肉类可直接在临空园区完成通关、集散、加工。\n\n园区将建设海南省首个前置货站,让货物在园区完成安检、查验、打板后,通过封闭货车直送停机坪,无需重复查验。“未来将通过下穿通道直连机场跑道,货物在抵港后1公里内,即可完成通关、查验、仓储、加工、离港的全部作业流程,实现‘机场里建园区’。”张昊鹏说。\n\n在冷链物流领域,挪威三文鱼、澳洲冰鲜牛肉未来可在园区完成通关查验和加工后,零关税进入内地市场。“我们的目标是让全球货物运进来、全国货物运出去,为海南打开一扇面向世界的窗口。”海南临空产业发展集团有限公司董事长、海口空港飞机维修工程有限公司董事长兼总经理王海烨说。\n\n产业链加速集聚\n\n海南临空产业的快速集聚,得益于自贸港开放政策的持续加持。航材和自用进口设备免关税、第七航权开放、86国免签等政策,使飞机维修产业的竞争优势从“单点优惠”转向“系统红利”。\n\n过去四年,美兰机场的飞机维修产业规模从80亩扩大至500亩,境外维修业务在2023年至2025年间增长了9倍。王海烨说,目前飞机维修客户覆盖泰国、越南、菲律宾等东南亚及中东市场,飞机喷漆业务订单已排满一年,大型机位满负荷运转。\n\n王海烨给记者算了一笔账:以飞机核心部件APU(辅助动力装置)维修为例,企业在海南采购进口设备,可节省7%的关税和13%的进口环节增值税,综合成本降低20.9%,单台设备节省约60万美元。\n\n在航空科技研发基地,中国民航科学技术研究院、民航二所、鹰之航集团等头部机构已率先入驻,围绕“临空+航空”“临空+低空”打造孵化创新与成果转化空间。\n\n临空产业链加速成型\n\n从“机场里建园区”到“下穿通道直连跑道”,从单台发动机维修节省数十万美元的成本账到境外业务增长9倍的开放账……海南临空产业正用一个个具体场景,诠释自贸港政策的含金量。\n\n王海烨表示,园区正打造涵盖绿色基础设施、绿色产业和绿色服务体系的低碳示范项目,重点发展飞机维修、航空物流、科技研发与高端制造、临空商贸、低空经济、航空配套服务等产业。\n\n截至目前,海南自贸港一站式飞机维修产业基地已累计完成约2800架次的飞机维修,境外业务覆盖20多个国家和地区。这片连接跑道与世界的试验田,正加速从“机场流量”迈向“经济增量”。(完)"} +{"url": "https://thanhtra.com.vn/doanh-nghiep-70CE54C31/phat-trien-nguon-nhan-luc-cong-nghiep-ban-dan-san-sang-cho-tuong-lai-7632e8f4b.html", "title": "Phát triển nguồn nhân lực công nghiệp bán dẫn , sẵn sàng cho tương lai", "publish_date": "2026-04-15T03:32:11Z", "full_text": "(Thanh tra) - Trước làn sóng dịch chuyển chuỗi cung ứng toàn cầu, Việt Nam đang đẩy mạnh đổi mới tư duy quản trị nguồn nhân lực chất lượng cao để nắm bắt cơ hội bứt phá trong ngành bán dẫn. Đây được xem là nền tảng quan trọng để Việt Nam phát triển các công nghệ chiến lược và nâng cao năng lực cạnh tranh quốc gia.\n\nNhu cầu về nhân lực bán dẫn có tay nghề cao đang tăng nhanh (Ảnh minh họa: TNI).\n\nBán dẫn là xương sống của nền kinh tế kỹ thuật số hiện đại, đóng vai trò quan trọng trong mọi quy trình, từ điện thoại thông minh, xe điện đến hệ thống năng lượng tái tạo. Không đứng ngoài xu hướng này, Việt Nam xác định công nghiệp bán dẫn là một trong những lĩnh vực ưu tiên trong phát triển kinh tế.\n\nNhu cầu về nhân lực bán dẫn có tay nghề cao đang tăng vọt, đặc biệt khi nhiều công ty sản xuất chip quốc tế lớn có kế hoạch tăng cường sự hiện diện của mình tại Việt Nam. Tuy vậy, đứng trước cơ hội vàng này, Việt Nam lại đang đối mặt với một khoảng trống lớn trong nhân lực có tay nghề.\n\nViệt Nam hiện đang có nhiều chính sách thiết thực để hiện thực hóa cam kết phát triển lực lượng lao động ngành bán dẫn. Quyết định số 1017/QĐ-TTg của Thủ tướng Chính phủ đề ra Chương trình phát triển nguồn nhân lực ngành công nghiệp bán dẫn đến năm 2030, tầm nhìn đến năm 2050.\n\nGần đây, Nghị quyết 71 - được Bộ Chính trị thông qua vào tháng 8 năm 2025, công nhận vai trò quan trọng của giáo dục nghề nghiệp (GDNN) trong việc trang bị cho lực lượng lao động của Việt Nam các kỹ năng cần thiết, đáp ứng nhu cầu chuyển đổi xanh và chuyển đổi số của nền kinh tế.\n\nNghị quyết này cũng nhấn mạnh việc cần cải thiện chất lượng các chương trình đào tạo hiện tại để nâng tầm vị thế của đào tạo nghề Việt Nam trên trường quốc tế.\n\nThời gian qua, chúng ta liên tục đón nhận các dự án có vốn đầu tư lớn từ những tập đoàn công nghệ hàng đầu thế giới như Intel, Samsung, Amkor, Hana Micron... Đã có hơn 50 doanh nghiệp quốc tế tham gia thị trường, tiêu biểu như Intel, Amkor, Hana Micron (đóng gói, kiểm thử); Marvell, Synopsys, Cadence (thiết kế chip)...\n\nBên cạnh đó, các doanh nghiệp trong nước như Viettel, FPT, VNChip… cũng đã tham gia. Việt Nam đang dồn sức cho ngành công nghệ bán dẫn, được coi là “xương sống” của kinh tế số với trọng tâm là phát triển nguồn nhân lực.\n\nTuy nhiên, ngành công nghiệp bán dẫn vẫn còn khá mới mẻ với Việt Nam, chủ yếu thực hiện khâu thiết kế, kiểm thử và đóng gói chip, chưa có nhà máy chế tạo quy mô lớn. Để hiện thực hóa mục tiêu trở thành mắt xích quan trọng trong hệ sinh thái công nghệ cao, việc giải quyết bài toán thiếu hụt nguồn nhân lực chất lượng cao và khắc phục sự chênh lệch về kỹ năng đang trở thành yêu cầu cấp thiết hơn bao giờ hết.\n\nTrước thực tế này, Chính phủ đặt mục tiêu đào tạo 50 nghìn kỹ sư vi mạch từ nay đến năm 2030. Trong số này, khoảng 15 nghìn người sẽ phục vụ cho thiết kế vi mạch, 35 nghìn người sẽ đảm trách các lĩnh vực sản xuất, đóng gói và kiểm thử sản phẩm.\n\nNgoài ra, sẽ có thêm 5.000 chuyên gia trí tuệ nhân tạo (AI) để hỗ trợ và nâng tầm lĩnh vực bán dẫn, cùng 1.300 giảng viên tại các trường đại học và viện nghiên cứu được bồi dưỡng chuyên sâu, tạo nên đội ngũ giảng dạy tinh hoa, sẵn sàng đưa Việt Nam vươn lên trong cuộc đua công nghệ toàn cầu.\n\nHàng loạt trường đại học mở ngành mới, nhiều chính sách ưu đãi được triển khai, thu hút sinh viên. Đây được xem là cơ hội vàng cho cả người học lẫn cơ sở đào tạo.\n\nTheo Bộ GD&ĐT, có khoảng 35 cơ sở giáo dục đại học đã và đang tham gia đào tạo lĩnh vực này, dự kiến số lượng sẽ tăng đáng kể trong 2-3 năm tới khi các trường cao đẳng nghề, các dự án hợp tác đào tạo với doanh nghiệp cùng lúc vào cuộc.\n\nBa trường thuộc Đại học Quốc gia TPHCM (Trường đại học Bách khoa, Trường đại học Công nghệ thông tin và Trường đại học Khoa học tự nhiên) chính thức mở nhóm ngành công nghệ vi mạch bán dẫn, dự kiến đến năm 2027 đào tạo thêm 1 nghìn kỹ sư, nâng tổng số sinh viên ngành liên quan lên khoảng 6 nghìn người.\n\nDù vậy, khoảng cách giữa kỳ vọng và thực tại vẫn còn khá lớn, nguồn cung hiện tại vẫn chưa thể đáp ứng nhu cầu ngày càng tăng của các doanh nghiệp. Ông Felix Weidenkaff, Chuyên gia Chính sách thị trường lao động và việc làm của Tổ chức Lao động Quốc tế (ILO), nhận định, đối với ngành công nghiệp bán dẫn, chương trình đào tạo tại nhiều cơ sở giáo dục vẫn tồn tại khoảng cách so với thực tế thị trường.\n\nSinh viên thường thiếu hụt các kỹ năng thực hành chuyên sâu trong thiết kế vi mạch, nghiên cứu và phát triển (R&D) hay vận hành dây chuyền sản xuất hiện đại. Điều này dẫn đến tình trạng doanh nghiệp phải mất thêm thời gian và chi phí để đào tạo lại sau tuyển dụng.\n\nViệt Nam đang đối mặt với một khoảng trống lớn về nhân lực ngành bán dẫn có tay nghề (Ảnh minh họa: TNI).\n\nĐể giải quyết bài toán nhân lực, các chuyên gia khẳng định không thể chỉ dựa vào nỗ lực đơn lẻ của từng đơn vị mà cần một chiến lược quản trị nguồn nhân lực bài bản và đồng bộ. Ông Nguyễn Phúc Vinh, Giám đốc kỹ thuật Synopsys Việt Nam cho rằng: “Nhu cầu tuyển dụng kỹ sư thiết kế vi mạch rất lớn, nguồn cung hiện tại chưa đáp ứng đủ. Thực tế, ngay cả sinh viên năm thứ 3 cũng đã được các doanh nghiệp săn đón về làm việc, nhất là ở lĩnh vực thiết kế vật lý và kiểm thử chip. Tuy nhiên, cơ hội rộng mở nhưng ngành vi mạch bán dẫn cũng đòi hỏi rất cao ở người học về năng lực và tố chất”.\n\nTS. Chử Đức Hoàng, Chánh Văn phòng Quỹ Đổi mới Công nghệ Quốc gia, Bộ KH&CN cho rằng, Việt Nam muốn phát triển ngành công nghiệp bán dẫn cần xây dựng hệ sinh thái đầy đủ, không chỉ về nhân lực mà còn cả hạ tầng, logistics và chuỗi cung ứng. Mục tiêu đào tạo 50.000 kỹ sư bán dẫn trong vòng 5 đến 10 năm tới là thách thức lớn nếu thiếu nền tảng chiến lược và hành động cụ thể ngay từ bây giờ.\n\nVì vậy, theo các chuyên gia, Chính phủ tiếp tục ban hành chính sách đặc thù thu hút, hỗ trợ nhân tài; các bộ, ngành cụ thể hóa bằng các văn bản hướng dẫn, trong khi doanh nghiệp cần tham gia sâu vào quá trình đào tạo và phát triển nguồn nhân lực."} diff --git a/Data/1_Bronze_Raw/News_Scrapes/2026-04-14/Full_text/full_text_macro_central_banks.jsonl b/Data/1_Bronze_Raw/News_Scrapes/2026-04-14/Full_text/full_text_macro_central_banks.jsonl new file mode 100644 index 0000000..8644aac --- /dev/null +++ b/Data/1_Bronze_Raw/News_Scrapes/2026-04-14/Full_text/full_text_macro_central_banks.jsonl @@ -0,0 +1,6 @@ +{"url": "https://baomoi.com/gia-vang-ngay-15-4-bang-gia-tai-cac-cong-ty-vang-bac-da-quy-c54939126.epi", "title": "Giá vàng ngày 15 / 4 : Bảng giá tại các công ty vàng bạc đá quý", "publish_date": "2026-04-15T03:28:27Z", "full_text": "Vàng trang sức. (Ảnh: Phan Phương/TTXVN)\n\nGiá vàng thế giới tăng khoảng 2% lên 4.831,78 USD/ounce nhờ đồng USD yếu và kỳ vọng các cuộc đàm phán Mỹ-Iran sẽ được nối lại.\n\nChuyên gia Bob Haberkorn tại RJO Futures nhận định nhà đầu tư đang chuyển hướng quay lại kim loại quý thay vì giữ tiền mặt như giai đoạn đầu xung đột.\n\nCác nhà phân tích tại Commerzbank cho rằng chừng nào Cục Dự trữ Liên bang Mỹ (Fed) chưa có dấu hiệu tăng lãi suất, giá vàng sẽ rất khó giảm sâu. Hiện các nhà giao dịch dự báo chỉ có khoảng 33% khả năng Fed sẽ cắt giảm lãi suất trong năm nay, một con số thấp hơn nhiều so với kỳ vọng trước khi diễn ra xung đột tại Trung Đông.\n\nTại Việt Nam, vào sáng 15/4, công ty Vàng bạc đá quý Sài Gòn niêm yết giá vàng SJC tại thị trường Hà Nội ở mức 173,00-175,50 triệu đồng/lượng (mua vào-bán ra).\n\nDưới đây là bảng giá vàng tại một số công ty vàng bạc đá quý trong nước sáng 15/4:\n\nGiá vàng tại Công ty Trách nhiệm hữu hạn Một thành viên Vàng bạc đá quý Sài Gòn (SJC):\n\nGiá vàng tại Công ty Cổ phần Đầu tư vàng Phú Quý:"} +{"url": "http://www.europesun.com/news/278983984/producer-prices-rise-sharply-on-energy-surge-from-iran-war", "title": "Producer prices rise sharply on energy surge from Iran war", "publish_date": "2026-04-15T03:28:27Z", "full_text": "WASHINGTON, D.C.: Rising energy costs linked to the Iran war pushed U.S. wholesale prices sharply higher in March, adding to inflation concerns and complicating the Federal Reserve's policy outlook.\n\nOn Tuesday, the Labor Department said its producer price index (PPI), which tracks inflation before it reaches consumers, rose 0.5 percent from February and 4 percent from a year earlier, the largest annual increase in more than three years.\n\nEnergy prices surged 8.5 percent over the month, driving much of the increase.\n\nExcluding volatile food and energy components, core producer prices rose a more modest 0.1 percent from February and 3.8 percent year-on-year. Overall gains were smaller than economists had expected.\n\nThe data adds pressure on Federal Reserve policymakers, who are already grappling with persistent inflation and calls from President Donald Trump to cut interest rates. Some officials, however, are considering rate hikes as rising energy costs threaten to keep inflation elevated.\n\nFood prices offered some relief, falling 0.3 percent in March after a sharp 2.4 percent increase in February.\n\nWholesale prices are closely watched as an early indicator of consumer inflation. Economists also track them because some components, including healthcare and financial services, feed into the Fed's preferred inflation gauge, the personal consumption expenditures (PCE) price index.\n\n\"The decline in food prices is overdue, and welcome news for everyone,\" said Carl Weinberg, chief economist at High Frequency Economics. \"Food price increases are at the core of political arguments over affordability.\"\n\nRecent consumer data has already pointed to mounting inflation pressures. The Labor Department reported last week that consumer prices rose 3.3 percent in March from a year earlier, the biggest annual increase since May 2024, while monthly prices jumped 0.9 percent, the largest gain in nearly four years.\n\nThe broader energy shock is also reshaping global demand patterns. The International Energy Agency said the war in Iran could lead to an annual decline in oil demand for the first time since the COVID-19 pandemic.\n\nThe agency forecast demand would fall by 80,000 barrels per day this year, a sharp reversal from its earlier projection of an 850,000-barrel-per-day increase before the conflict began.\n\nDemand dropped particularly sharply in March due to attacks on energy infrastructure and the closure of the Strait of Hormuz, with the IEA expecting a 1.5 million barrels per day decline in the current quarter.\n\nWhile the initial drop has been concentrated in the Middle East and Asia-Pacific, the agency said that weakening demand is likely to spread as higher prices and supply constraints weigh on consumption."} +{"url": "https://zetatijuana.com/2026/04/banamex-tacha-de-erraticos-los-pronosticos-de-banxico-y-la-shcp-sobre-crecimiento-e-inflacion/", "title": "Banamex tacha de erráticos los pronósticos de Banxico y la SHCP sobre crecimiento e inflación", "publish_date": "2026-04-15T03:28:27Z", "full_text": "El área de Estudios Económicos de Banamex calificó el 14 de abril de 2026 como “erráticos” los pronósticos del Banco de México (Banxico) y la Secretaría de Hacienda y Crédito Público (SHCP) respecto al crecimiento económico del país y la tasa esperada de inflación, y sostuvo que ningún analista del mercado les otorga credibilidad.\n\nSergio Kurczyn, director de Estudios Económicos de Banamex, afirmó durante el foro Diálogos Banamex que Banxico no logra reducir las tasas de interés en el momento adecuado ni con la metodología correcta para ejecutar una política anticíclica efectiva. Según Kurczyn, los análisis de riesgos de la institución y la forma en que utiliza sus proyecciones son incorrectos. “Nadie le cree a Banxico sus pronósticos más allá de seis meses, nosotros tampoco”, señaló el directivo, quien agregó que la medición del grado de holgura —es decir, el PIB potencial frente al PIB observado— también presenta inconsistencias.\n\nPublicidad\n\nEl analista sostuvo que Banxico incurrió en un error al recortar su tasa de referencia a 6.75 por ciento en su más reciente decisión de política monetaria. Según Kurczyn, si la institución tiene como objetivo alcanzar una inflación de 3 por ciento —meta que mantiene desde hace dos décadas sin concretarla—, no debió haber reducido la tasa y debió mantenerla en 10 por ciento. “Desde hace 15 años su verdadero objetivo no es 3 sino 4, entonces más allá de los detalles de exactamente cuánto baja la tasa, ése es el costo de que la credibilidad de este Banxico y de los otros Banxicos de antes, que no logran bajar las tasas de interés cuando se debe, como se debe, para hacer verdadera política anticíclica”, recalcó.\n\nRespecto al crecimiento económico, Banamex descartó que México alcance en 2026 la expansión de 3 por ciento proyectada por la SHCP, y estimó en cambio una tasa de 1.6 por ciento para ese año. Iván Arias, director de Estudios Económicos de la misma institución, advirtió que la previsión de recorte al gasto programable para 2027 también será difícil de ejecutar. Según Arias, la SHCP calcula un crecimiento de 2.4 por ciento para 2027, el Fondo Monetario Internacional (FMI) estima 2.2 por ciento, mientras que Banamex sitúa su proyección en 1.6 por ciento para ese mismo ejercicio fiscal.\n\nPublicidad\n\nArias señaló que el recorte al gasto programable equivalente a 1.6 por ciento del Producto Interno Bruto (PIB) planteado por la SHCP para 2027 es “muy fuerte” y de difícil cumplimiento, dado el volumen de compromisos de gasto vigentes y los reducidos márgenes de ajuste disponibles. Según el directivo, bajo los supuestos de Banamex, el recorte efectivo oscilaría entre 0.8 y 0.9 por ciento del PIB, cifra significativamente menor a la meta oficial."} +{"url": "https://baotintuc.vn/kinh-te/gia-vang-sang-154-dong-loat-tang-manh-20260415082802323.htm", "title": "Giá vàng hôm nay 15 / 4 đồng loạt tăng mạnh", "publish_date": "2026-04-15T03:28:27Z", "full_text": "Lúc 9 giờ, Công ty TNHH MTV Vàng bạc đá quý Sài Gòn SJC niêm yết vàng miếng ở mức 173 - 175,5 triệu đồng/lượng (mua vào - bán ra), tăng 2,5 triệu đồng/lượng ở cả hai chiều mua vào, bán ra.\n\nTương tự, các thương hiệu lớn ở Hà Nội như Bảo Tín Minh Châu, DOJI cũng niêm yết giá vàng miếng SJC ở mức này. Trong khi đó, Phú Quý giao dịch vàng miếng SJC ở mức 172,5 - 175,5 triệu đồng/lượng (mua vào - bán ra).\n\nĐối với vàng nhẫn tròn trơn 9999, Bảo Tín Minh Châu niêm yết ở mức 172 - 175 triệu đồng/lượng (mua vào - bán ra), tăng 2,3 triệu đồng/lượng ở cả hai chiều mua vào, bán ra. Phú Quý cũng niêm yết giá vàng nhẫn ở mức này.\n\nTại DOJI, vàng nhẫn 9999 giao dịch ở mức 172,5 - 175,5 triệu đồng/lượng (mua vào - bán ra). Giá vàng trong nước hiện vẫn đang bám sát xu hướng của giá thế giới.\n\nSản phẩm vàng nhẫn tròn trơn 9999 được người tiêu dùng ưa chuộng.\n\nCùng thời điểm, giá vàng thế giới giao dịch quanh mức 4.850 USD/ounce tăng gần 100 USD so với sáng 14/4. Nếu quy đổi theo tỷ giá Vietcombank, mỗi lượng vàng thế giới có giá khoảng 154 triệu đồng. Trong phiên, giá vàng thế giới dao động trong khoảng 4.751 USD/ounce đến 4.871 USD/ounce.\n\nĐà tăng của giá vàng thế giới được hỗ trợ bởi sự suy yếu của đồng USD khi kỳ vọng về khả năng nối lại đàm phán giữa Mỹ và Iran gia tăng. Đồng bạc xanh đã giảm xuống mức thấp nhất trong khoảng 6 tuần, trong khi giá dầu cũng hạ nhiệt so với các phiên trước, góp phần làm dịu bớt áp lực lạm phát và cải thiện tâm lý đối với kim loại quý.\n\nTuy vậy, đà tăng của kim loại quý vẫn phần nào bị hạn chế khi triển vọng chính sách tiền tệ của Cục Dự trữ Liên bang Mỹ (Fed) chưa rõ ràng. Dù một số dữ liệu lạm phát như chỉ số giá sản xuất (PPI) thấp hơn kỳ vọng, thị trường vẫn nghiêng về khả năng Fed duy trì lãi suất ở mức cao trong thời gian dài, trong bối cảnh rủi ro lạm phát liên quan đến giá năng lượng vẫn hiện hữu."} +{"url": "https://www.thestar.com.my/business/insight/2026/04/15/oil-shock-is-here-are-businessesprepared", "title": "Oil shock is here : Are businesses prepared ? ", "publish_date": "2026-04-15T03:28:27Z", "full_text": "OVER the past one month, escalation in the Middle East conflict sent shockwaves through global energy markets, driving oil prices higher, increasing operational costs and causing disruption to supply chains.\n\nThe biggest risks that the current geopolitical environment-inflicted soaring energy prices pose to businesses are shocks, volatility and uncertainty.\n\nRising oil prices have threatened micro, small and medium enterprises’ (MSMEs) viability.\n\nThe surge in global oil prices towards US$120 per barrel and petrol as well as diesel prices are placing enormous operating cost pressures on businesses, especially SMEs.\n\nSignificant increase in fuel prices cascade through the entire economy – freight, logistics, construction materials, high-energy manufacturing, retail supply chains and hospitality.\n\nThe ripple effects are unavoidable: fuel affects production, logistics, and raw materials, amplifies existing vulnerabilities in supply chains, and all of these influence costs, margins and profitability as well as business planning budgets.\n\nBeneath this operational pressures lie a deeper and more uncomfortable question: Is there a way out? How to build business resilience?\n\nBusinesses are facing five simultaneous pressures as follows:\n\n> Direct and indirect cost shocks. Rising fuel costs increase operating costs across the logistics, construction, manufacturing, retail and hospitality sectors.\n\nIndirect costs are escalating due to severely disrupted maritime traffic, carriers rerouting and extending transit times, cancellation of bookings, and significant increase in freight surcharges, causing “cascading” effects on global supply chains. Suppliers’ price increases quickly erode businesses’ already thin margins.\n\n> Rising raw material costs. Increasing fuel prices are significantly driving up raw material costs, causing a ripple effect in many industries such as contractors, construction, manufacturing, food processing, and heavy machinery, as well as services-related tourism and hospitality sectors.\n\nThe surge in diesel prices increases transport and logistical costs, while also boosting production costs for materials with high embedded energy like cement, steel, chemical products, and machinery operations.\n\n> “Stagflation” squeeze. While businesses have incurred increased operating costs, consumers’ discretionary spending will weaken as households cope with high living costs.\n\nThat means businesses face higher cost expenses at the same time revenue growth slows.\n\n> Margin compression. Rising fuel costs can squeeze business margins as companies cannot fully pass on increasing input costs to consumers, often due to low market power, fierce competition, or long-term fixed-price contracts.\n\nSome companies preserve their margin through small, incremental rate adjustments without causing severe sticker shock for customers.\n\n> Cash flow tightness. Many MSMEs facing rising fuel costs and increasing operating costs will experience cash flow tightness and may face difficulty servicing their loans.\n\nUncertainty has significantly clouded business visibility in the current intense geopolitical landscape.\n\nAmong the dampening factors are surging fuel costs, transportation/logistic costs, raw material costs due to the supply chains disruption, shipping costs and air freight rates.\n\nRaw materials and inputs prices are a critical consideration for firms when making production and pricing decisions.\n\nHeightened uncertainties concerning the supply of raw materials and input prices, the scale and duration of the oil shock, as well as supply chain disruptions have resulted in both suppliers and manufacturers taking a cautious stance in committing to ordering and purchasing.\n\nThere are cases of suppliers being unable to provide pricing of raw materials due to cost fluctuations on a weekly basis, and hence, not taking new orders, pending more clarity.\n\nSome suppliers have sent new price increase notices to their customers while some have already increased prices.\n\nSome manufacturers have adopted a “wait and see” approach, not committing to large purchases, and a just-in-time inventory as they do not want to lock in raw materials at higher prices and be caught with high-cost inventory.\n\nThey are hoping that the war would de-escalate and can purchase new deliveries at lower wholesale prices.\n\nSMEs’ viability is being shaped by cumulative cost pressures. In 2024 to 2025, they were already operating on tight margins, dealing with rising business costs, including wages, new taxes, regulatory and compliance costs.\n\nFuel is another critical input layered on top of that. When multiple cost pressures such as rising fuel prices, raw materials, transportation, including shipping and insurance costs move at once, it reduces the SMEs’ buffer to absorb shocks.\n\nMany are already absorbing higher costs, passing cost increases through where they can. When those costs rise quickly, the pressure flows directly into MSMEs’ margins.\n\nWhen these pressures compound, it can delay investments and reduce hiring. And, in some cases, it can push otherwise viable businesses into cash flow and financial distress.\n\nThe Associated Chinese Chambers of Commerce and Industry of Malaysia’s Quick Take Survey noted 51.2% of the respondents indicated that total cost will increase between 6% and 20%, and 20.2% will experience cost increases by more than 20%.\n\nClose to 46.3% of total respondents will experience “moderate and significant deterioration” in their cash flow. The overall impact on a company’s profitability varies between a slight decrease (as indicated by 31% of respondents), a moderate decrease (33%) and a significant decrease (26.6%).\n\nMost respondents have perceived “moderate to significant deterioration” of business outlook over the next three to six months if the oil shock persists.\n\nThe results indicated that 31% of total respondents can maintain their business operations between three and six months before requiring structural downsizing or seeking additional financing.\n\nThe reality is MSMEs have limited ability to manage soaring fuel prices and supply chains disruption on their own.\n\nUnlike larger corporations with strong balance sheets that can hedge fuel costs or absorb supply chain shocks, smaller operators and SMEs often feel the impact within weeks.\n\nBusiness survivability is indeed crucial. For many enterprises, particularly MSMEs which had suffered sustained increases in operational costs over the past two years, the primary goal is to avoid financial distress or closure.\n\nThe current period of global uncertainty and challenging situation highlights the need for a more stable and supportive operating environment.\n\nBusinesses need lower costs, simpler compliance and the confidence in the government’s ability to navigate this oil shock through a mixture of targeted subsidies, and strengthening structural resilience.\n\nMeasures that can help to ease business costs burden and relieve cash flow include:\n\n> Targeted Repayment Assistance Programme, including loans restructuring for affected MSMES for a specific period.\n\n> Lower service tax rate (currently at between 6% and 8%) imposed on the expanded services (rental/leasing, and professional fees, construction, private healthcare, and education) for a period of three months, subject to review every three months depending on the prevailing situation.\n\n> Lower the current 85% minimum of the estimated tax for the preceding year (CP204) to 50%, suspend the 10% penalty if the final tax exceeds the threshold by more than 30%.\n\nIn addition, to allow any overpaid tax to be offset against the current year’s liabilities, given that businesses have limited visibility on their current performance.\n\n> Review time of use (ToU) electricity tariffs and raise higher the eligibility threshold under the energy efficiency incentive to at least 600kWh from 200kWh to encourage broader energy savings for MSMEs.\n\nThe government should provide targeted support for SMEs to adopt energy-efficient machinery through tax incentives and soft loans, aiming to reduce dependence on fossil fuels and lower operational costs, supporting long-term structural transformation. Other measures to consider are:\n\n> Reducing sales and service tax (SST) on energy products, or implementing “green levies” tax breaks.\n\nThese include electrical equipment, pumps, compressors, boilers, converters, and furnaces used in manufacturing processes, which are subject to a 5% to 10% sales tax.\n\n> A full SST waiver on solar equipment.\n\n> Provide accelerated depreciation, which allows firms to deduct the full cost of energy-efficient equipment from their taxable income in the year of purchase.\n\n> Provide soft interest rate loans for firms to invest in energy-efficient machinery and equipment, automation technology, and advanced motors.\n\nBusinesses can adopt the following strategies for managing fuel price fluctuations:\n\n> Implement a well-structured fuel surcharge formula based on fuel price variations to be reviewed regularly, protecting profit margins while communicating surcharge clearly to customers to maintain transparency.\n\n> Optimise efficient route planning to minimise fuel consumption by reducing unnecessary mileage and idle time.\n\n> Tracking and analysing fuel usage to identify inefficiencies and opportunities for cost reduction.\n\n> Investing in fuel efficiency technology, fuel-efficient vehicles and alternative fuel technologies to help reduce dependency on fluctuating fuel prices.\n\n> Implement strategic pricing which entails small, incremental rate adjustments to offset rising expenses without causing severe sticker shock for customers.\n\n> Renegotiate supplier terms, consolidating orders or exploring new supply chains to minimise disruptions and yield cost efficiencies.\n\nLee Heng Guie is the executive director of the Socio-Economic Research Centre. The views expressed here are the writer’s own."} +{"url": "https://market.bisnis.com/read/20260415/93/1966735/rupiah-hari-ini-154-dibuka-menguat-ke-rp17126-per-dolar-as", "title": "Rupiah Hari Ini ( 15 / 4 ) Dibuka Menguat ke Rp17 . 126 per dolar AS", "publish_date": "2026-04-15T03:28:27Z", "full_text": "Rupiah menguat ke Rp17.126 per dolar AS pada 15 April 2026, didorong pelemahan dolar AS akibat sentimen eksternal dan optimisme pasar.\n\nBisnis.com, JAKARTA — Nilai tukar rupiah terhadap dolar AS hari ini, Rabu (15/4/2026) dibuka menguat pada level Rp17.126 sejalan dengan kombinasi tekanan eksternal yang mendorong pelemahan dolar AS.\n\nBerdasarkan data analis Doo Financial Futures pada pukul 09.10 WIB, nilai tukar rupiah dibuka menguat tipis sebesar 0,01% menuju level Rp17.126.\n\nPenguatan mata uang Garuda terhadap dolar AS juga diikuti baht Thailand yang terapresiasi sebesar 0,37%, peso Filipina terhadap dolar AS menguat 0,05%, ringgit Malaysia menguat sebesar 0,18%.\n\nWon Korea terhadap dolar AS ikut naik sebesar 0,05%, dolar Taiwan juga naik 0,06%, dan dolar Singapura naik 0,02%.\n\nNamun demikian sejumlah mata uang Asia lainnya terpantau melemah. Rupee India terhadap dolar AS turun 0,79%, diikuti mata uang yen Jepang terhadap dolar AS melemah 0,08%, yuan China melemah 0,02%.\n\nSementara itu, dolar Hong Kong terhadap dolar AS juga terpantau masih melemah 0,04%.\n\nAnalis Doo Financial Futures, Lukman Leong mengatakan nilai tukar rupiah diperkirakan berpotensi menguat terhadap dolar Amerika Serikat (AS) pada perdagangan hari ini, seiring tekanan yang masih membayangi mata uang Negeri Paman Sam di pasar global.\n\nPelemahan dolar AS dipicu oleh kombinasi sentimen eksternal, mulai dari turunnya harga minyak mentah dunia hingga meningkatnya optimisme pasar terhadap peluang meredanya tensi geopolitik.\n\nHarapan bahwa AS dan Iran akan kembali melanjutkan perundingan damai mendorong sikap risk-on di kalangan investor, sehingga aset-aset berisiko seperti mata uang negara berkembang menjadi lebih menarik.\n\nSelain itu, data inflasi produsen (producer price index/PPI) AS yang tercatat lebih rendah dari ekspektasi turut menekan dolar AS. Kondisi ini memperkuat ekspektasi bahwa tekanan inflasi di AS mulai mereda, yang berpotensi memengaruhi arah kebijakan moneter ke depan.\n\nMeski demikian, penguatan rupiah diperkirakan tidak akan berlangsung signifikan. Sentimen domestik yang masih cenderung lemah menjadi faktor penahan laju apresiasi.\n\nPelaku pasar juga memilih untuk bersikap hati-hati sambil menunggu hasil Rapat Dewan Gubernur Bank Indonesia (RDG BI) yang akan diumumkan sore ini.\n\nDengan berbagai sentimen tersebut, rupiah diproyeksikan bergerak dalam kisaran Rp17.050 hingga Rp17.200 per dolar AS pada perdagangan hari ini."} diff --git a/Data/1_Bronze_Raw/News_Scrapes/2026-04-14/Full_text/full_text_macro_geopolitics_risk.jsonl b/Data/1_Bronze_Raw/News_Scrapes/2026-04-14/Full_text/full_text_macro_geopolitics_risk.jsonl new file mode 100644 index 0000000..294e22e --- /dev/null +++ b/Data/1_Bronze_Raw/News_Scrapes/2026-04-14/Full_text/full_text_macro_geopolitics_risk.jsonl @@ -0,0 +1,6 @@ +{"url": "https://radaronline.com/p/trump-assassination-fears-pope-conflict-iran-war/", "title": "Trump Bible - Thumper Assassination Fears Explode Amid Bust - Up With Pope", "publish_date": "2026-04-15T03:31:19Z", "full_text": "Trump, however, has continued to criticize the pontiff in increasingly personal terms. He described Leo as \"weak on crime and terrible on foreign policy\" and rejected calls to moderate his tone.\n\nThe president also dismissed backlash over his AI Christ image, claiming it had been misinterpreted and was intended to show him as a healer rather than a religious figure.\n\nHe said: \"I did post it and I thought it was me as a doctor and had to do with the Red Cross. It's supposed to be me as a doctor, making people better. And I do make people better. I make people a lot better.\"\n\nThe controversy has left swathes of Trump's conservative Christian base deeply unsettled, despite them historically being a cornerstone of his political support. Religious commentators and clergy have also slammed the imagery and rhetoric, with some describing it as offensive and inappropriate.\n\nAnalysts said the situation is unusual in its intensity, marking a rare public breakdown between a sitting US president and the head of the Catholic Church. The feud has also drawn international attention, with political and religious figures weighing in on both sides.\n\nVice President JD Vance, a Catholic convert, defended Trump's position, suggesting disagreements between political and religious leaders were not uncommon. But the unholy row brewing over Trump's messiah comparison is continuing to fuel concern among observers about its broader implications.\n\nThe dispute comes as Pope Leo continues to advocate for an end to the Iran conflict, warning against what he has described as a \"delusion of omnipotence\" driving global tensions, while Trump has maintained a hardline stance on foreign policy and national security."} +{"url": "https://www.whtimes.co.uk/news/national/26021871.half-households-energy-credit-end-winter---poll/", "title": "More than half of households in energy credit at end of winter – poll", "publish_date": "2026-04-15T03:31:19Z", "full_text": "Energy suppliers are holding £3 billion of households’ money built up by direct debit but not used over the winter, a survey for comparison site Uswitch found.\n\nThe average home that is in credit has built up almost £200 with their supplier, according to the poll.\n\nOverall, credit is £179 million higher than last year, which Uswitch said could be due to a milder winter than expected and direct debits not changing as quickly as energy rates.\n\nHouseholds should ideally end the winter with little to no credit, having used it during the colder months.\n\nThey should re-build their credit during the spring and summer when energy usage is generally lower.\n\nHowever, 16 million households (57%) have credit with their energy supplier at the end of this winter, according to the survey.\n\nUswitch said 63% of households on fixed deals were currently in credit, compared with 56% of those on standard variable tariffs.\n\nOne in 10 consumers (12%) have balances over £300, and 4% are more than £500 in credit.\n\nThree in 10 households with credit (31%) intend to ask for some or all of it to be refunded, but 63% plan to leave the money with their supplier to try to reduce their monthly payments.\n\nJust 7% will ask their supplier to return their full balance, while a quarter (24%) will ask their supplier to return some of it, the poll suggests.\n\nUswitch said it advised consumers to keep around two months of average monthly payments as credit in their energy account to guard against higher costs in the coldest months of the year.\n\nIt also urged households without a working smart meter to regularly supply meter readings to keep their account balance and direct debit level accurate to avoid overpaying.\n\nHousehold energy prices fell by 7% from April 1 in a “short-lived respite” for households already braced for a predicted 18% hike from July.\n\nOfgem’s price cap dropped from £1,758 to £1,641 – a reduction of £117 or around £10 a month for the average household using both electricity and gas.\n\nThis is an 11% fall year on year, but still £600 more than bills were in the winter of 2020 to 2021.\n\nThe reduction is lower than the average £150 cut to bills pledged by the Chancellor in November, when she moved 75% of the cost of the renewables obligation from household bills onto general taxation and scrapped the energy company obligation (Eco) scheme.\n\nAnd it comes amid increasing concern about the amount energy bills could rise by from July as a result of the Middle East conflict, with latest predictions from Cornwall Insight suggesting this could be 18% or £288 a year – to almost £900 above pre-crisis levels.\n\nUswitch energy spokesman Ben Gallizzi said: “More than half of UK households are coming out of the coldest time of year with credit in their energy accounts.\n\n“At this time of year households should generally have used up most of their credit over the colder winter months. However, it is advisable to keep about two months’ worth of payments in energy credit to cover higher winter bills ahead.\n\n“With energy prices predicted to rise in July, households with more than two months of energy credit could consider leaving some of it with their supplier to take some of the sting out of winter bills later this year.”\n\nOpinium surveyed 2,021 energy bill-payers between March 24-30."} +{"url": "https://www.wharfedaleobserver.co.uk/news/national/26021877.chancellor-hold-talks-us-counterpart-strong-criticism-iran-war/", "title": "Chancellor to hold talks with US counterpart after strong criticism of Iran war", "publish_date": "2026-04-15T03:31:19Z", "full_text": "The comments by US treasury secretary Scott Bessent put him at odds with the Chancellor, who has gone public with her anger and frustration at the “folly” of America’s actions in the Middle East and its financial fallout on families.\n\nThe pair were due to hold face-to-face talks in Washington DC on Wednesday during the spring meetings of the International Monetary Fund, which will be dominated by the ongoing crisis in the Gulf, which has inflicted a global economic shock and sent energy prices soaring.\n\nUS treasury secretary Scott Bessent (James Manning/PA)\n\nPrior to the Chancellor heading stateside, the influential financial body slashed Britain’s economic growth forecast as a result of the conflict and warned a worldwide recession could be a “close call” in a severe scenario.\n\nHowever, despite the “large” jolt to the global economy, Bank of England governor Andrew Bailey said the UK was much better placed to deal with it because of its resilient banking system, forged in the wake of the 2007-09 financial crisis.\n\nMeanwhile, President Donald Trump has said a second round of talks between the US and Iran could happen “over the next two days”, after negotiations at the weekend collapsed.\n\nTehran’s nuclear ambitions were a key sticking point.\n\nDiplomats have been working behind the scenes as the US imposed its blockade of Iranian ports and Tehran threatened retaliatory strikes across the region, amid a shaky ceasefire.\n\nAt the same time Prime Minister Sir Keir Starmer is seeking to co-ordinate international efforts to ensure the strategic Strait of Hormuz can remain open to shipping after hostilities end.\n\nThe critical waterway, used to move one fifth of the world’s oil and gas supplies, has become a major flashpoint in the conflict, with its effective closure by Iran hiking the cost of fuel, food and other basic goods.\n\nHowever, responding to the spike in prices, Mr Bessent said “a small bit of economic pain for a few weeks is worth taking off the incalculable tail risk of either a nuclear Iran or a nuclear Iran that uses that weapon”.\n\n(PA Graphics)\n\nHe insisted “there is nothing more transient than what we are seeing now”, and added: “So the conflict will end, prices will come down, and then headline inflation will come down, and with that, gasoline prices will come down.”\n\nMr Bessent made his remarks after Ms Reeves told the Mirror newspaper: “I feel very frustrated and angry that the US went into this war without a clear exit plan, without a clear idea of what they were trying to achieve.”\n\nShe branded it a “folly” that impacted households in the UK and around the world.\n\nMr Trump has defended the blockade aimed at putting pressure on Iran, arguing its control of the strait amounted to blackmail and extortion.\n\nHe has warned that any hostile Iranian boats approaching American warships would be “immediately eliminated”.\n\nUS Central Command, which directs military operations in the Middle East, said no vessels have so far run the blockade.\n\nAmong those ships being barred include Chinese tankers.\n\nIn response, the country’s president Xi Jinping said nations should “oppose the world’s retrogression to the law of the jungle”."} +{"url": "https://hotair.com/ed-morrissey/2026/04/14/centcom-24-hours-and-alls-well-on-the-blockade-front-n3813891", "title": "CENTCOM : 24 Hours And All Well On the Blockade Front ( Updated ) ", "publish_date": "2026-04-15T03:31:19Z", "full_text": "But for how long? That question doesn't apply to military resources or effort. It might apply to geopolitical will.\n\nAs far as US Central Command (CENTCOM) goes, the first day of the blockade on Iran's ports succeeded on all measures. No ships made it to the open sea, and no ships entered into the exclusion zone. Six vessels tested the waters, literally as well as figuratively, but did not test the US Navy's will to fight:\n\nAdvertisement\n\nMore than 10,000 U.S. Sailors, Marines, and Airmen along with over a dozen warships and dozens of aircraft are executing the mission to blockade ships entering and departing Iranian ports. During the first 24 hours, no ships made it past the U.S. blockade and 6 merchant vessels… pic.twitter.com/dpWAAknzQp — U.S. Central Command (@CENTCOM) April 14, 2026\n\nThe U.S. Central Command said Tuesday no ships from Iranian ports have gone through the U.S. blockade within its first 24 hours. Meanwhile, six merchant vessels obeyed direction from U.S. forces to reverse course and re-enter an Iranian port on the Gulf of Oman, according to Centcom. More than 10,000 U.S. sailors, marines and airmen were involved in the mission, as well as more than a dozen warships and aircraft, Centcom said. Warships involved include the USS Abraham Lincoln aircraft carrier, the USS Tripoli amphibious assault ship and several guided-missile destroyers. U.S. forces began Monday morning a blockade of all vessels entering or leaving Iranian ports, according to Centcom. The blockade doesn’t stop ships from traveling through the Strait of Hormuz but is designed to prevent vessels entering and leaving Iran’s port and coastline.\n\nOn the other side of the picket line, shipping that had been bottled up began to move through the Strait of Hormuz. The numbers are still small, but the momentum has begun to move in the right direction:\n\nSeveral commercial ships have sailed or started to travel through the Strait of Hormuz since the U.S. blockade of Iranian ports began. Tanker Rich Starry was heading out through the waterway on Tuesday, according to financial-data provider LSEG. The ship, built to carry chemicals and oil products, is owned by a Chinese company and flies a false Malawian flag, according to maritime database Equasis. The U.S. barred Americans from dealing with the tanker in February 2023 under its Iranian sanctions program. The U.S. hasn’t said it would target sanctioned vessels, promising only to act against ships entering and leaving Iranian ports in response to Iran’s effective closure of the strait to Western shipping.\n\nAdvertisement\n\nThree Iranian-linked vessels have transited the strait, but not on behalf of Tehran. Reuters notes that their ports of call are in other Gulf states, and their destinations are also outside of the Persian Gulf. The three ships have been sanctioned in the past for helping Iran evade sanctions, but CENTCOM has already said that the naval blockade would not enforce previous sanctions. It will remain focused solely on the blockade of shipping originating in or traveling to Iranian ports. That would allow China to conduct its merchant traffic with other Gulf states, although it would also force Beijing to pay market rates for oil for the first time in several years.\n\nClearly, a lot more work remains to be done before shippers fully restart operations through the strait. However, the US Navy's blockade forces Iran to suffer from their threats to that traffic for the first time. That may well provide enough pressure to force the IRGC to give up its claims of control over the passage. If not, the missile destroyers and other assets will make those claims moot anyway.\n\nThe question of political will remains, however, and its source may be surprising. The Saudis have reportedly gone wobbly over concerns about escalation from the Houthis:\n\nSaudi Arabia is pressing the U.S. to drop its blockade of the Strait of Hormuz and return to the negotiating table, fearing President Trump’s move to close it off could lead Iran to escalate and disrupt other important shipping routes, Arab officials said. The blockade is aimed at raising the pressure on Iran’s already crippled economy. But the officials said Saudi Arabia has warned Iran might retaliate by closing the Bab al-Mandeb—a Red Sea chokepoint crucial for the kingdom’s remaining oil exports. The pushback is a sign of the risks and limitations of U.S. efforts to pry open the Strait of Hormuz, which Iran shut early in the war by attacking ships in the waterway, cutting off around 13 million barrels a day in oil exports and sending futures prices above $100 a barrel.\n\nAdvertisement\n\nThat is an understandable concern. However, the alternative would be to allow Iran to impose their Mullahgeld on the Strait of Hormuz, putting themselves at the mercy of the lunatics in Tehran. The actual solution to this predicament would be for the Saudis to deal with the Houthis directly in Yemen, as they tried to do initially, but got pushed in a different direction by Joe Biden almost immediately after taking office. If the Saudis want to join the effort to contain Iran, the Houthis might be their most logical target, especially considering the risks to their oil exports in both directions.\n\nMeanwhile, Trump believes the blockade will produce diplomatic movement, he told the New York Post today. However, Trump warned that his redline on nuclear weapons and Iran's highly enriched uranium remain in place:\n\nAdditional US-Iran peace talks “could be happening over next two days” in Pakistan’s capital, President Trump told The Post on Tuesday. In an initial phone interview, Trump had claimed that discussions were “happening, but, you know, a little bit slow” before indicating that a second round of direct negotiations to end the seven-week war would likely happen somewhere in Europe. ... Trump did not say who would represent the US in a potential second round of talks, but confirmed he would not take part. The president also indicated he was not pleased with reports that the US had asked Iran to suspend its uranium enrichment program for at least two decades during this past weekend’s unsuccessful talks. “I’ve been saying they can’t have nuclear weapons” he said, “so I don’t like the 20 years.” Asked about proponents suggesting a moratorium may encourage Iran make an agreement, Trump answered: “I don’t want them [Iran] to feel like they have a win.”\n\nAdvertisement\n\nThe blockade won't feel like a win for the IRGC, especially if the US Navy succeeds in restoring shipping through the strait. The longer the blockade lasts, the worse it gets for the regime remnants and the economic damage they have created. They may need to give Trump a win just to survive ... if they can.\n\nUpdate: This is good analysis of the strategic advantages for the US in this blockade:\n\nI’m going to make many of you spitting mad at me for pointing this out, but now that we have started the naval blockade, Iran’s strategic position (which was already hopeless) has become terminal. They are soon going to run out of storage space for their oil. And we haven’t even… — Ken Gardner (@KenGardner11) April 13, 2026\n\nAnd we haven’t even yet taken Kharg Island. This will force them to shut down current oil production, which itself is a drastic step that will further wreck their economy. Without their oil money, they’re finished. And no one is coming to save them, either. Nobody wants to mess with the two best militaries on the planet. Meanwhile, pretty much the entire rest of the globe is demanding that Iran reopen the strait. And because markets always adjust, the Gulf states are already adopting workarounds in order to avoid this same problem in the future. When the history of this war is written, it will be recorded that the regime’s decision to close the strait was a colossal miscalculation that relied too heavily on short term consequences (a hike in the price of oil, coupled with the belief that nations would unite against us rather than them). In chess, there is a famous quote to the effect that the threat is always stronger than the execution. Here, the threat to close the strait was stronger, especially with Trump and with countries in Europe and the Far East. The decision to close the strait was never going to work as long as we refused to budge. And it has greatly weakened Iran’s position.\n\nAdvertisement\n\nBe sure to read it all. Ken also emphasized the need for American “persistence” to fully succeed. This is abouy geopolitical will, and Ken also remarks that a new round of negotiation may be the greatest threat to success.\n\nEditor's Note: For decades, former presidents have been all talk and no action. Now, Donald Trump is eliminating the threat from Iran once and for all.\n\nHelp us report the truth about the Trump administration’s decisive actions to keep Americans safe and bring peace to the world. Join Hot Air VIP and use promo code FIGHT to get 60% off your membership!"} +{"url": "https://baomoi.com/gia-vang-ngay-15-4-bang-gia-tai-cac-cong-ty-vang-bac-da-quy-c54939126.epi", "title": "Giá vàng ngày 15 / 4 : Bảng giá tại các công ty vàng bạc đá quý", "publish_date": "2026-04-15T03:31:19Z", "full_text": "Vàng trang sức. (Ảnh: Phan Phương/TTXVN)\n\nGiá vàng thế giới tăng khoảng 2% lên 4.831,78 USD/ounce nhờ đồng USD yếu và kỳ vọng các cuộc đàm phán Mỹ-Iran sẽ được nối lại.\n\nChuyên gia Bob Haberkorn tại RJO Futures nhận định nhà đầu tư đang chuyển hướng quay lại kim loại quý thay vì giữ tiền mặt như giai đoạn đầu xung đột.\n\nCác nhà phân tích tại Commerzbank cho rằng chừng nào Cục Dự trữ Liên bang Mỹ (Fed) chưa có dấu hiệu tăng lãi suất, giá vàng sẽ rất khó giảm sâu. Hiện các nhà giao dịch dự báo chỉ có khoảng 33% khả năng Fed sẽ cắt giảm lãi suất trong năm nay, một con số thấp hơn nhiều so với kỳ vọng trước khi diễn ra xung đột tại Trung Đông.\n\nTại Việt Nam, vào sáng 15/4, công ty Vàng bạc đá quý Sài Gòn niêm yết giá vàng SJC tại thị trường Hà Nội ở mức 173,00-175,50 triệu đồng/lượng (mua vào-bán ra).\n\nDưới đây là bảng giá vàng tại một số công ty vàng bạc đá quý trong nước sáng 15/4:\n\nGiá vàng tại Công ty Trách nhiệm hữu hạn Một thành viên Vàng bạc đá quý Sài Gòn (SJC):\n\nGiá vàng tại Công ty Cổ phần Đầu tư vàng Phú Quý:"} +{"url": "http://www.europesun.com/news/278984446/eu-country-suspends-defense-agreement-with-israel", "title": "EU country suspends defense agreement with Israel", "publish_date": "2026-04-15T03:31:19Z", "full_text": "Italian Prime Minister Giorgia Meloni criticizes Israels military campaign in Lebanon\n\nItalian Prime Minister Giorgia Meloni has announced the suspension of a defense agreement with Israel amid tensions over the war in the Middle East.\n\nItaly, whose right-wing government had been seen as one of Israel's closest allies in the EU, has become increasingly critical of the ongoing military campaign in Lebanon, where 2,124 people have been killed in Israeli airstrikes since early March.\n\nSpeaking on Tuesday in Verona, Meloni said her government had decided to \"suspend the automatic renewal\" of the agreement \"in light of the current situation.\"\n\n\"When there are things we don't agree with, we act accordingly,\" Meloni said, according to Reuters.\n\nThe agreement, ratified in 2005 and previously renewed every five years, includes cooperation in the defense industry and procurement policy, military equipment imports and exports, technical data exchanges, and personnel training.\n\nLast week, Italian Foreign Minister Antonio Tajani summoned the Israeli ambassador to Rome, Jonathan Peled, after Israeli troops fired warning shots at an Italian peacekeeping convoy outside Beirut. Meloni described the incident as \"completely unacceptable.\"\n\nOn Monday, Tajani condemned the \"unacceptable attacks by Israel against the civilian population\" in Lebanon, to which the Israeli Foreign Ministry responded by summoning the Italian envoy.\n\nSeveral European countries have formally recognized Palestinian statehood and imposed full or partial embargoes on weapons sales to Israel since 2023. Last year, Spain canceled a number of contracts with Israeli arms manufacturers reportedly totaling $1.18 billion. Spanish Prime Minister Pedro Sanchez described the Israeli campaign in Gaza as genocide, a claim Israel denied.\n\nIsraeli Prime Minister Benjamin Netanyahu has argued that his country is \"defending Europe\" by waging wars against Iran, Hamas, and the Lebanon-based pro-Palestinian armed group Hezbollah. In a speech on Tuesday, Netanyahu accused European countries of \"deep moral weakness\" for not supporting Israel.\n\n(RT.com)"} diff --git a/Data/1_Bronze_Raw/News_Scrapes/2026-04-14/Full_text/full_text_macro_inflation_employment.jsonl b/Data/1_Bronze_Raw/News_Scrapes/2026-04-14/Full_text/full_text_macro_inflation_employment.jsonl new file mode 100644 index 0000000..b00cf2d --- /dev/null +++ b/Data/1_Bronze_Raw/News_Scrapes/2026-04-14/Full_text/full_text_macro_inflation_employment.jsonl @@ -0,0 +1,7 @@ +{"url": "https://www.wharfedaleobserver.co.uk/news/national/26021877.chancellor-hold-talks-us-counterpart-strong-criticism-iran-war/", "title": "Chancellor to hold talks with US counterpart after strong criticism of Iran war", "publish_date": "2026-04-15T03:29:41Z", "full_text": "The comments by US treasury secretary Scott Bessent put him at odds with the Chancellor, who has gone public with her anger and frustration at the “folly” of America’s actions in the Middle East and its financial fallout on families.\n\nThe pair were due to hold face-to-face talks in Washington DC on Wednesday during the spring meetings of the International Monetary Fund, which will be dominated by the ongoing crisis in the Gulf, which has inflicted a global economic shock and sent energy prices soaring.\n\nUS treasury secretary Scott Bessent (James Manning/PA)\n\nPrior to the Chancellor heading stateside, the influential financial body slashed Britain’s economic growth forecast as a result of the conflict and warned a worldwide recession could be a “close call” in a severe scenario.\n\nHowever, despite the “large” jolt to the global economy, Bank of England governor Andrew Bailey said the UK was much better placed to deal with it because of its resilient banking system, forged in the wake of the 2007-09 financial crisis.\n\nMeanwhile, President Donald Trump has said a second round of talks between the US and Iran could happen “over the next two days”, after negotiations at the weekend collapsed.\n\nTehran’s nuclear ambitions were a key sticking point.\n\nDiplomats have been working behind the scenes as the US imposed its blockade of Iranian ports and Tehran threatened retaliatory strikes across the region, amid a shaky ceasefire.\n\nAt the same time Prime Minister Sir Keir Starmer is seeking to co-ordinate international efforts to ensure the strategic Strait of Hormuz can remain open to shipping after hostilities end.\n\nThe critical waterway, used to move one fifth of the world’s oil and gas supplies, has become a major flashpoint in the conflict, with its effective closure by Iran hiking the cost of fuel, food and other basic goods.\n\nHowever, responding to the spike in prices, Mr Bessent said “a small bit of economic pain for a few weeks is worth taking off the incalculable tail risk of either a nuclear Iran or a nuclear Iran that uses that weapon”.\n\n(PA Graphics)\n\nHe insisted “there is nothing more transient than what we are seeing now”, and added: “So the conflict will end, prices will come down, and then headline inflation will come down, and with that, gasoline prices will come down.”\n\nMr Bessent made his remarks after Ms Reeves told the Mirror newspaper: “I feel very frustrated and angry that the US went into this war without a clear exit plan, without a clear idea of what they were trying to achieve.”\n\nShe branded it a “folly” that impacted households in the UK and around the world.\n\nMr Trump has defended the blockade aimed at putting pressure on Iran, arguing its control of the strait amounted to blackmail and extortion.\n\nHe has warned that any hostile Iranian boats approaching American warships would be “immediately eliminated”.\n\nUS Central Command, which directs military operations in the Middle East, said no vessels have so far run the blockade.\n\nAmong those ships being barred include Chinese tankers.\n\nIn response, the country’s president Xi Jinping said nations should “oppose the world’s retrogression to the law of the jungle”."} +{"url": "https://www.penzcentrum.hu/gazdasag/20260415/kiderult-a-meztelen-igazsag-az-euro-magyarorszagi-bevezeteserol-nagyon-rafazhat-aki-a-2030-as-datumban-remenykedett-1196964", "title": "Kiderült a meztelen igazság az euró magyarországi bevezetéséről : nagyon ráfázhat , aki a 2030 - as dátumban reménykedett", "publish_date": "2026-04-15T03:29:41Z", "full_text": "A GKI Gazdaságkutató Zrt. megvizsgálta az euró magyarországi bevezetésének realitását, feltételeit és várható gazdasági hatásait. Az elemzés elkészítésekor figyelembe vettük mind a maastrichti kritériumok teljesítésének jelenlegi helyzetét, mind a közvélemény várakozásait. Az alábbiakban részletesen bemutatjuk a legfontosabb összefüggéseket.\n\nA választásokon győztes Tisza Párt programja és kommunikációja alapján az euró bevezetéséhez szükséges feltételek 2030–as elérését tűzte ki célul. A célkitűzés vizsgálata során kiemelt figyelmet igényelnek a bevezetés feltételei, illetve annak gazdasági hatásai, a sikeres bevezetés tényezői. Az Eurobarometer 2025-ös felmérése szerint a magyar lakosság 75 százaléka teljes mértékben támogatja az euró bevezetését, azonban a válaszadók 72 százaléka úgy gondolja, hogy nem állunk készen a bevezetésre. A lakosság értékelése reális, ugyanis az euróövezethez való csatlakozás maastrichti kritériumai alapján az elmúlt években távolodtunk a valutaövezethez való csatlakozási lehetőségtől.\n\nA csatlakozáshoz öt fő kritériumnak kell megfelelni, amelyek a következők:\n\nÁrstabilitás: az inflációs ráta nem haladhatja meg 1,5 százalékpontnál többel a három legjobb teljesítményt nyújtó tagállam átlagát.\n\nÁllamháztartási hiány: a költségvetési hiány nem lehet több a GDP 3%-ánál,\n\nÁllamadósság/GDP arány: főszabály szerint közelítenie kell a GDP 60%-ához (ha azt meghaladja).\n\nHosszú távú kamatlábak: a hosszú távú hitelek kamata legfeljebb 2 százalékponttal lehet magasabb a három legalacsonyabb inflációval rendelkező tagország átlagos hitel kamatánál. Ezt a mutatót az EKB a hosszútávú (10 éves vagy azt megközelítő) állampapírok éves hozamával közelíti.\n\nÁrfolyam-stabilitás: legalább két évet kell eltölteni az ERM II. rendszerben, amely egy fix értéken rögzíti a forint-euró árfolyamot, amelytől csak +/- 15%-kal térhet el az árfolyam.\n\nAz árstabilitás szempontjából a magyar fogyasztói árindex 2025-ben 4,4% volt. Az Európai Unió három legalacsonyabb mutatójával rendelkező tagállamának – Ciprus (0,8%), Franciaország (0,9%) és Olaszország (1,6%) – átlaga 1,1%-ot tett ki. Mindezek alapján az árstabilitási kritérium 2,6%-os referenciaértékét – a kormányzati beavatkozások (pl. rezsicsökkentés, hatósági árak) ellenére – jelentős mértékben meghaladta a hazai infláció.\n\nA hosszú távú kamatszintek tekintetében Magyarország továbbra is kiemelkedően magas értékeket mutat az Európai Unión belül. Az ECB adatai alapján a hosszú távú hitelek kamata hazánkban átlagosan 6,9% volt 2025-ben. Mivel az EKB adatbázisa szerinti 2025-ös évre vonatkozó referenciaérték 4,8% lenne, Magyarország ezen a téren sem felelt meg a követelményeknek. Bár a választásokat követően jelentősen hozamcsökkenés ment végbe, jelenleg 6,1%-os a 10 éves hozamszint.\n\nA GDP arányos államháztartási hiány az előzetes adatok alapján 4,7% volt 2025-ben. A magyar költségvetés 2020 óta nem tudta a 3%-os küszöbérték alá szorítani a deficitet, s ez 2026-ban sem várható. A GKI várakozása alapján az államháztartási hiány 6% körül alakul idén.\n\nA bruttó államadósság/GDP értéke 2025-ben 74,6% körül alakult Magyarországon az MNB előzetes pénzügyi számla adatai alapján. Ez az érték emelkedést jelent a 2024-es 73,5%-os szinthez képest, és egyben távolodást a 60%-os küszöbértéktől."} +{"url": "https://sixactualites.fr/retraites/demain-jarrete-quel-montant-faut-il-vraiment-avoir-en-banque-pour-tout-quitter-et-vivre-libre/106597/", "title": " « Demain , jarrête ! » : quel montant faut - il vraiment avoir en banque pour tout quitter et vivre libre ? ", "publish_date": "2026-04-15T03:29:41Z", "full_text": "Indépendance financière et liberté financière ne se réduisent pas à un chiffre : elles exigent un cadre clair, une épargne disciplinée et une gestion financière qui tient la route pour financer un coût de la vie maîtrisé, un montant en banque capable de soutenir l’arrêt du travail et une retraite anticipée qui ne vous laisse pas sur le bas-côté, afin de vivre une vie libre.\n\nTrain de vie mensuel (€) Âge de départ Rendement estimé Capital nécessaire (approx.) 2 000 45 ans 3 % 800 000 € 3 000 45 ans 3 % 1 200 000 € 4 000 45 ans 3 % 1 600 000 €\n\nComprendre les chiffres: combien faut-il vraiment pour arrêter ?\n\nPour beaucoup, l’objectif est limpide, mais les chiffres s’emmêlent vite. La règle des 4 % est la boussole la plus citée dans la communauté FIRE, mais elle prend ses distances avec la réalité française. En pratique, le retrait annuel ne peut pas être figé sur 4 % lorsque les rendements moyens diffèrent et que l’inflation érode le pouvoir d’achat. Je me rappelle d’un entretien avec un conseiller qui me disait: “ici, on ne parle pas de scénarios idéalisés.”\n\nEn clair, la formule est simple à énoncer, mais elle dépend de trois facteurs cruciaux : votre train de vie mensuel, votre espérance de vie restante et le rendement moyen de votre épargne. Si vous dépensez 2 000 € par mois, vous visez théoriquement 600 000 € avec une règle des 25 (4 %). Mais en pratique, avec des rendements plus modérés en France, il faut souvent viser 3 % ou même 3,5 % pour rester prudent, ce qui remodèle le montage financier.\n\nPour 2 000 € par mois, un retrait de 3 % suppose environ 800 000 € de capital. Pour 3 000 €, on tourne autour de 1,2 à 1,3 million selon les hypothèses. Et pour 4 000 €, on franchit facilement le cap du million. Ces chiffres ne sont pas des miracles : ils résument l’enjeu d’aligner épargne, inflation et rendement. J’ai vu des couples qui, en avançant en âge, ajustent progressivement leur train de vie pour rester dans des marges réalistes et préserver une certaine marge de sécurité.\n\nLe coût de la vie, l’inflation et la fiscalité jouent des rôles déterminants. En France, le Livret A tourne autour de 2,5 % en moyenne et l’assurance-vie en fonds euros se situe autour de 2,5 à 3 %. Les actions, même diversifiées, ne garantissent pas 7 % nets sans risque sur 20 ou 30 ans. C’est pourquoi les experts préconisent souvent d’ajuster le taux de retrait dans une fourchette plus prudente, autour de 3 % à 3,5 %. La conséquence est simple : le capital initial nécessaire grimpe et peut remettre en cause l’idée “d’un million suffisant pour tout quitter” sans être prudent.\n\nEt l’inflation dans tout ça ?\n\nL’inflation n’est pas un concept abstrait : elle dévore le pouvoir d’achat. Si vos dépenses restent constantes, 2 000 € aujourd’hui valent moins demain. Sur une inflation moyenne de 2,5 % sur 15 à 20 ans, votre budget réel fonde et le capital doit croître pour compenser. Ce raisonnement pousse certains à démarrer tôt et à adopter une épargne plus agressive, même dès 25 ans, afin d’éviter les fameux ajustements douloureux plus tard.\n\nLe timing et les choix: partir jeune ou partir autrement ?\n\nLa question de l’âge de départ change tout. Si vous quittez à 45 ans, vous devez financer près de 19 années sans revenu salarié avant une éventuelle pension partielle. À 55 ans, vous n’avez plus qu’environ 9 années à couvrir. Cette différence peut être décisive pour le plan financier et les choix de vie. Je me rappelle d’un ami qui a pris le pari de continuer une activité partielle qui lui plaisait, tout en accumulant du capital. Son objectif était clair : ne pas sacrifier le sens, mais préserver sa liberté.\n\nNe pas négliger le coût de la mutuelle : en attendant, la couverture santé peut peser entre 100 et 250 € par mois selon l’âge et les garanties.\n\n: en attendant, la couverture santé peut peser entre 100 et 250 € par mois selon l’âge et les garanties. Intégrer la fiscalité des retraits : les prélèvements et les plus-values peuvent fortement réduire le produit net.\n\n: les prélèvements et les plus-values peuvent fortement réduire le produit net. Privilégier des scénarios mixtes : travail à mi-temps ou activité indépendante peut réduire le capital nécessaire.\n\nPour approfondir certains aspects opérationnels autour du cumul emploi-retraite et des outils disponibles, je cites des ressources pratiques comme ce guide sur le cumul emploi-retraite et d’autres analyses utiles.\n\nLe seuil de liberté: où commencer selon votre réalité\n\nLes experts s’accordent sur un seuil indicatif, surtout pour une vie calme en province : autour de 600 000 à 800 000 € de patrimoine financier net hors résidence principale. En île-de-france ou dans les grandes métropoles, où le coût de la vie est plus élevé, ce seuil peut s’établir entre 1 et 1,5 million d’euros. Beaucoup de personnes qui franchissent ce cap ont soit été cadres ou entrepreneurs, avec une épargne soutenue pendant deux décennies environ. D’autres adoptent une approche progressive : ne pas couper totalement, mais passer à une activité choisie — freelance, temps partiel, projet monétisé. Le capital nécessaire chute alors, car il faut uniquement combler l’écart entre le revenu et les dépenses réelles.\n\nDans ce cadre, voici un conseil concret : si vous parvenez à dégager 1 000 € de revenus complémentaires mensuels, le capital requis pour atteindre l’objectif peut être divisé par deux environ. C’est une alternative réaliste pour beaucoup qui veulent préserver une qualité de vie sans couper brutalement les ponts avec le monde du travail.\n\nUn autre avertissement utile : la santé et la mutuelle restent des postes à planifier avec précision, tout comme la fiscalité. Une assurance santé privée adaptée peut représenter une charge régulière, et les impôts sur les revenus retirés de l’épargne ne doivent pas être sous-estimés. Pour ceux qui veulent aller plus loin, ce contenu de référence peut donner des axes complémentaires.\n\nEt après ? vivre libre ne signifie pas tout abandonner d’un coup\n\nLe vrai luxe, finalement, n’est peut-être pas d’arrêter de travailler à tout prix, mais d’avoir le choix. Vous pouvez opter pour une vie libre sans renoncer à des projets qui donnent du sens. Pour certains, cela se traduit par des activités salariées qui restent épanouissantes; pour d’autres, par des missions ponctuelles ou des activités entrepreneuriales. Dans tous les cas, l’objectif est d’aligner les dépenses avec les ressources, en tenant compte du coût de la vie et des aléas économiques.\n\nPour aller plus loin, j’invite à découvrir des analyses sur l’indépendance financière et les plans de retraite en (re)visitant ces ressources utiles et actualisées : une réflexion sur les pensions et les scénarios 2026 et un séminaire clé pour comprendre la retraite des 20-40 ans.\n\nEn fin de compte, atteindre un niveau de sécurité qui vous donne une vraie vie libre repose sur une chose simple et efficace : la gestion financière et une épargne régulière qui soutiennent votre revenu passif et vous donnent le choix face au coût de la vie. Le chemin peut être long et sinueux, mais le but reste clair: une indépendance financière durable qui vous permet d’arrêter le travail selon vos propres termes, sans compromis.\n\nAutres articles qui pourraient vous intéresser"} +{"url": "https://www.padovanews.it/2026/04/15/confcom-crescita-03-nel-2026-e-rischio-stagnazione/", "title": "Confcom , crescita +0 , 3 % nel 2026 e rischio stagnazione – Padovanews", "publish_date": "2026-04-15T03:29:41Z", "full_text": "ROMA (ITALPRESS) – Prima del conflitto, l’economia italiana mostrava segnali positivi: inflazione all’1,5%, consumi e PIL in aumento e occupazione ai massimi (oltre 24 milioni da luglio 2024). Tuttavia, le tensioni energetiche legate alla guerra rischiano di ridurre reddito disponibile e consumi. E’ quanto emerge dall’analisi dell’Ufficio Studi di Confcommercio, “La scommessa della crescita per superare la crisi”, presentata al Forum Confcom (la nuova denominazione della confederazione) di Villa Miani.\n\nIl presidente Carlo Sangalli ha evidenziato come le tensioni internazionali alimentino l’incertezza, frenino la domanda e colpiscano soprattutto le imprese più legate ai consumi delle famiglie: quando questi si fermano, si arresta anche il motore dell’economia. Da qui la necessità di una nuova capacità di reazione.\n\nNello scenario peggiore, la crescita si fermerebbe allo 0,3% nel 2026 e allo 0,4% nel 2027. Il quadro resta segnato da forte incertezza e preoccupazione: senza interventi strutturali su fisco, lavoro e competenze, il rischio è un nuovo decennio di stagnazione, con effetti duraturi su crescita, occupazione e coesione sociale.\n\nSecondo il direttore dell’Ufficio Studi, Mariano Bella, con il petrolio a 100 dollari fino a febbraio 2027 l’inflazione potrebbe raggiungere il 6% a fine 2026. Ciò comporterebbe minori consumi e PIL, con un’economia vicina alla recessione e una crescita più che dimezzata rispetto allo scenario base. Nel biennio 2026-2027, la perdita arriverebbe fino a 963 euro per famiglia.\n\nIl rallentamento italiano, però, non dipende solo dagli shock internazionali, ma da criticità strutturali di lungo periodo. Dopo il boom economico, la crescita è progressivamente calata: dal 3,7% tra il 1966 e il 1980 all’1,8% tra il 1981 e il 2007, fino a stagnare negli ultimi vent’anni. Parallelamente, la pressione fiscale è salita dal 25,3% al 42,2%, comprimendo investimenti e sviluppo. La cosiddetta “fiscocrazia” – eccesso di tasse e burocrazia – penalizza l’innovazione e riduce la propensione al rischio.\n\nA ciò si aggiungono tre fattori strutturali: minore capitale per occupato, riduzione dell’offerta di lavoro e calo delle competenze. Sul piano demografico, il Paese ha perso circa 9 milioni di under 30 dagli anni Ottanta, con effetti diretti sulla capacità produttiva. Una leva fondamentale è l’aumento dell’occupazione femminile: un allineamento agli standard europei porterebbe circa 290 mila occupate in più all’anno nel prossimo decennio.\n\nConta anche la qualità del lavoro: le competenze crescono meno della domanda delle imprese e l’obsolescenza professionale riduce produttività e capacità di adattamento. Il terziario di mercato resta il principale motore dell’economia, con quasi 4 milioni di posti di lavoro creati tra il 1995 e il 2025, a fronte di un calo nell’industria e nella PA.\n\nIl settore è però indebolito dal dumping contrattuale: circa 154 mila lavoratori sono impiegati con contratti meno tutelanti, con perdite fino a 8 mila euro annui, assenza di welfare e ricadute negative su concorrenza e produttività. Il fenomeno comporta anche minori entrate per lo Stato, stimate in circa 560 milioni nel 2025, e per le imprese coinvolte significa minori investimenti in formazione, bassa produttività e maggior rischio di chiusura.\n\n-foto xi2/Italpress –\n\n(ITALPRESS)."} +{"url": "http://www.europesun.com/news/278983984/producer-prices-rise-sharply-on-energy-surge-from-iran-war", "title": "Producer prices rise sharply on energy surge from Iran war", "publish_date": "2026-04-15T03:29:41Z", "full_text": "WASHINGTON, D.C.: Rising energy costs linked to the Iran war pushed U.S. wholesale prices sharply higher in March, adding to inflation concerns and complicating the Federal Reserve's policy outlook.\n\nOn Tuesday, the Labor Department said its producer price index (PPI), which tracks inflation before it reaches consumers, rose 0.5 percent from February and 4 percent from a year earlier, the largest annual increase in more than three years.\n\nEnergy prices surged 8.5 percent over the month, driving much of the increase.\n\nExcluding volatile food and energy components, core producer prices rose a more modest 0.1 percent from February and 3.8 percent year-on-year. Overall gains were smaller than economists had expected.\n\nThe data adds pressure on Federal Reserve policymakers, who are already grappling with persistent inflation and calls from President Donald Trump to cut interest rates. Some officials, however, are considering rate hikes as rising energy costs threaten to keep inflation elevated.\n\nFood prices offered some relief, falling 0.3 percent in March after a sharp 2.4 percent increase in February.\n\nWholesale prices are closely watched as an early indicator of consumer inflation. Economists also track them because some components, including healthcare and financial services, feed into the Fed's preferred inflation gauge, the personal consumption expenditures (PCE) price index.\n\n\"The decline in food prices is overdue, and welcome news for everyone,\" said Carl Weinberg, chief economist at High Frequency Economics. \"Food price increases are at the core of political arguments over affordability.\"\n\nRecent consumer data has already pointed to mounting inflation pressures. The Labor Department reported last week that consumer prices rose 3.3 percent in March from a year earlier, the biggest annual increase since May 2024, while monthly prices jumped 0.9 percent, the largest gain in nearly four years.\n\nThe broader energy shock is also reshaping global demand patterns. The International Energy Agency said the war in Iran could lead to an annual decline in oil demand for the first time since the COVID-19 pandemic.\n\nThe agency forecast demand would fall by 80,000 barrels per day this year, a sharp reversal from its earlier projection of an 850,000-barrel-per-day increase before the conflict began.\n\nDemand dropped particularly sharply in March due to attacks on energy infrastructure and the closure of the Strait of Hormuz, with the IEA expecting a 1.5 million barrels per day decline in the current quarter.\n\nWhile the initial drop has been concentrated in the Middle East and Asia-Pacific, the agency said that weakening demand is likely to spread as higher prices and supply constraints weigh on consumption."} +{"url": "https://shipandbunker.com/news/world/571889-prospects-of-iran-playing-ball-with-us-causes-oil-to-plunge-by-nearly-8", "title": "Prospects Of Iran Playing Ball With U . S . Causes Oil To Plunge By Nearly 8 % ", "publish_date": "2026-04-15T03:29:41Z", "full_text": "Prospects Of Iran Playing Ball With U.S. Causes Oil To Plunge By Nearly 8%\n\nby Ship & Bunker News Team\n\nHowever, unlikely, the oil market is buoyed by expectations for a de-escalation of hostilities: File Image/Pixabay\n\nHope continued to inform oil trading on Tuesday, supported by reports that Iran was considering pausing shipments through the Strait of Hormuz to avoid spoiling the chance of a new round of peace talks – and accordingly, Brent fell 4.6 percent to settle at $94.79 per barrel.\n\nWest Texas Intermediate, which in the previous session climbed $2.51 to $99.08 per barrel, tumbled by over 7 percent to settle at $91.28 per barrel.\n\nRachel Ziemba, a senior fellow at the Center for a New American Security, said, “If Iran does indeed pause shipments, it would be a sign its government too seeks de-escalation and to avoid the resumption of the hot war.\n\n“ Global markets would likely focus on the possibility of an agreement, not the short-term outage Rachel Ziemba, Center for a New American Security\n\n“Pausing shipping would add to the oil market outages temporarily, though global markets would likely focus on the possibility of an agreement, not the short-term outage.”\n\nPeter Tuz, president of Chase Investment Counsel Corp, said markets were looking at \"temporary risks which will be overcome in fairly short order, as opposed to being the start of a new ... regime of higher inflation, higher energy prices, higher interest rates; because if that were the new regime, there is very little reason to believe the market would be as strong as it is right now.\"\n\nIt fell upon the International Energy Agency to offer a more sobering perspective of the U.S./Iran war’s impact on oil; in its latest monthly report it stated, “Oil demand is expected to contract by 80 kb/d this year, as the Iran war upends our global outlook...this is 730 kb/d less than in last month’s Report and a forecast 1.5 mb/d 2Q26 decline would be the sharpest since Covid-19 slashed fuel consumption.”\n\nThe IEA added, “Initially, the deepest cuts in oil use have come in the Middle East and Asia Pacific, mainly for naphtha, LPG and jet fuel; however, demand destruction will spread as scarcity and higher prices persist.”\n\nIn other oil news on Tuesday, the American Petroleum Institute estimated that U.S. crude inventories rose 6.1 million barrels in the week ending April 10 compared to expectations for a 1.3 million barrel draw; also gasoline inventories rose by 626,000 barrels after plummeting by 4 million barrels the week prior.\n\nInventories in the Strategic Petroleum Reserve continue to draw down, to the tune of 4.1 million barrels during the same time frame, in order to alleviate the pressure on prices."} +{"url": "https://www.noticiasrcn.com/economia/makro-anuncio-nuevo-remate-de-productos-1012163", "title": "Supermercado en Colombia sigue pisando fuerte y lanzó nuevos remates en productos : de esto se trata", "publish_date": "2026-04-15T03:29:41Z", "full_text": "El sector retail en Colombia busca alternativas creativas y directas para incentivar el consumo. Bajo esta premisa, la cadena mayorista Makro ha decidido fortalecer su presencia en el mercado nacional mediante la consolidación de su campaña “Precios Felices”, una iniciativa diseñada específicamente para dinamizar la economía doméstica a través de descuentos agresivos en productos de primera necesidad.\n\nLa estrategia no solo busca aumentar el flujo de clientes en sus tiendas, sino que se posiciona como un salvavidas financiero frente a la inflación de alimentos.\n\nRELACIONADO Reconocido supermercado hizo impactante cambio y será competencia dura de D1 y Ara\n\nEl eje central de esta propuesta es la democratización del ahorro, permitiendo que tanto familias como pequeños negocios accedan a productos de alta calidad sin comprometer su presupuesto mensual.\n\nEstos son los descuentos que tiene esta reconocida cadena\n\nUno de los pilares más robustos de esta campaña se encuentra en la sección de perecederos. Conscientes de que las frutas y verduras representan una de las categorías con mayor fluctuación de precios y mayor peso en el gasto diario, la compañía ha implementado descuentos que alcanzan hasta el 50 %.\n\nEsta reducción del costo impacta directamente en productos básicos de la dieta local, tales como:\n\nVegetales de base: Lechuga y tomate chonto.\n\nFrutas y acompañamientos: Papaya, aguacate, guineo y manzanas.\n\nCarbohidratos esenciales: Plátano verde.\n\nAl reducir a la mitad el valor de estos insumos, la cadena facilita que los consumidores mantengan una dieta equilibrada y nutritiva, un aspecto que suele sacrificarse cuando los precios del mercado tienden al alza.\n\nLa campaña también extiende sus beneficios a la categoría de proteínas, un rubro crítico para la seguridad alimentaria. Las ofertas en este segmento están diseñadas para ofrecer variedad y conveniencia, con rebajas que oscilan entre el 20 % y el 30 %.\n\nEn el sector de pescados y mariscos, los clientes pueden encontrar ahorros significativos en filetes de tilapia, trucha y mezclas de mariscos, ideales para quienes buscan opciones saludables. De igual manera, los productos congelados —que incluyen desde vegetales listos para consumir hasta cazuelas y mojarra— presentan reducciones similares, ofreciendo una solución práctica para el ritmo de vida moderno.\n\nPor otro lado, para los amantes de las carnes blancas y cortes tradicionales, la iniciativa incluye descuentos cercanos al 20 % en pechuga de pollo, nuggets y cortes especializados como el churrasco."} diff --git a/Data/1_Bronze_Raw/News_Scrapes/2026-04-14/Raw/raw_gdelt_asset_precious_metals_spot.jsonl b/Data/1_Bronze_Raw/News_Scrapes/2026-04-14/Raw/raw_gdelt_asset_precious_metals_spot.jsonl new file mode 100644 index 0000000..3d55526 --- /dev/null +++ b/Data/1_Bronze_Raw/News_Scrapes/2026-04-14/Raw/raw_gdelt_asset_precious_metals_spot.jsonl @@ -0,0 +1,10 @@ +{"url": "https://thoibaotaichinhvietnam.vn/ngay-154-gia-bac-trong-nuoc-va-the-gioi-bat-tang-manh-195669.html", "url_mobile": "", "title": "Ngày 15 / 4 : Giá bạc trong nước và thế giới bật tăng mạnh", "seendate": "20260415T030000Z", "socialimage": "https://thoibaotaichinhvietnam.vn/stores/news_dataimages/2026/042026/15/08/in_social/ngay-154-gia-bac-trong-nuoc-va-the-gioi-dong-loat-bat-tang-manh-20260415085256.jpg?randTime=1776221142", "domain": "thoibaotaichinhvietnam.vn", "language": "Vietnamese", "sourcecountry": "Vietnam"} +{"url": "http://bank.cnfol.com/yinhangyeneidongtai/20260415/32144374.shtml", "url_mobile": "", "title": "四年征集项目超6200个 兴火 · 燎原 创新马拉松大赛推动 创新之火渐成燎原之势 _ 银行业内动态 _ 银行 _ 中金在线", "seendate": "20260415T030000Z", "socialimage": "", "domain": "bank.cnfol.com", "language": "Chinese", "sourcecountry": "China"} +{"url": "https://www.163.com/dy/article/KQI4EG8P0519DDQ2.html", "url_mobile": "https://m.163.com/dy/article/KQI4EG8P0519DDQ2.html", "title": "具身智能百日内 吸金 超345亿元|融资|算法|模态|机器人", "seendate": "20260415T030000Z", "socialimage": "", "domain": "163.com", "language": "Chinese", "sourcecountry": "China"} +{"url": "https://baomoi.com/gia-vang-ngay-15-4-bang-gia-tai-cac-cong-ty-vang-bac-da-quy-c54939126.epi", "url_mobile": "", "title": "Giá vàng ngày 15 / 4 : Bảng giá tại các công ty vàng bạc đá quý", "seendate": "20260415T030000Z", "socialimage": "", "domain": "baomoi.com", "language": "Vietnamese", "sourcecountry": "Vietnam"} +{"url": "http://mp.cnfol.com/32111/article/1776215336-142360699.html", "url_mobile": "", "title": "4月15日周三早间市场信息 _ 中金在线财经号", "seendate": "20260415T030000Z", "socialimage": "", "domain": "mp.cnfol.com", "language": "Chinese", "sourcecountry": "China"} +{"url": "http://www.elpuntavui.cat/politica/article/17-politica/2635259-pisos-turistics-les-cases-per-als-veins-i-els-turistes-als-hotels.html", "url_mobile": "", "title": " Pisos turístics ? Les cases , per als veïns i els turistes , als hotels ", "seendate": "20260415T030000Z", "socialimage": "https://www.elpuntavui.cat/imatges/64/42/4x3/780_0008_6442303_e0d1fc48573b6b2b5b64ca89efa14bc1ver4.jpg", "domain": "elpuntavui.cat", "language": "Catalan", "sourcecountry": "Spain"} +{"url": "https://k.sina.com.cn/article_1747383115_6826f34b02003f5fg.html", "url_mobile": "", "title": "旗舰再进阶 : 吉利银河M9黑金智曜版发布 , 从空间到智驾的 大家之选 - 新浪汽车", "seendate": "20260415T030000Z", "socialimage": "http://n.sinaimg.cn/default/feedbackpics/transform/116/w550h366/20180509/qZpQ-haichqy9477165.png", "domain": "k.sina.com.cn", "language": "Chinese", "sourcecountry": "China"} +{"url": "https://www.stcn.com/article/detail/3750646.html", "url_mobile": "", "title": "永辉超市38亿追款获胜 , 王健林等承担连带保证责任", "seendate": "20260415T030000Z", "socialimage": "", "domain": "stcn.com", "language": "Chinese", "sourcecountry": "China"} +{"url": "https://china.qianlong.com/2026/0415/8654785.shtml", "url_mobile": "", "title": "开局之年看中国 · 开放自贸港 : 从 机场流量 迈向 经济增量 - 千龙网 · 中国首都网", "seendate": "20260415T030000Z", "socialimage": "", "domain": "china.qianlong.com", "language": "Chinese", "sourcecountry": "China"} +{"url": "https://thanhtra.com.vn/doanh-nghiep-70CE54C31/phat-trien-nguon-nhan-luc-cong-nghiep-ban-dan-san-sang-cho-tuong-lai-7632e8f4b.html", "url_mobile": "", "title": "Phát triển nguồn nhân lực công nghiệp bán dẫn , sẵn sàng cho tương lai", "seendate": "20260415T030000Z", "socialimage": "https://media.thanhtra.com.vn/public/uploads/2026/04/14/69de6d49120a9057632e8f4c.jpg", "domain": "thanhtra.com.vn", "language": "Vietnamese", "sourcecountry": "Vietnam"} diff --git a/Data/1_Bronze_Raw/News_Scrapes/2026-04-14/Raw/raw_gdelt_macro_central_banks.jsonl b/Data/1_Bronze_Raw/News_Scrapes/2026-04-14/Raw/raw_gdelt_macro_central_banks.jsonl new file mode 100644 index 0000000..d7ad2f1 --- /dev/null +++ b/Data/1_Bronze_Raw/News_Scrapes/2026-04-14/Raw/raw_gdelt_macro_central_banks.jsonl @@ -0,0 +1,9 @@ +{"url": "https://baomoi.com/gia-vang-ngay-15-4-bang-gia-tai-cac-cong-ty-vang-bac-da-quy-c54939126.epi", "url_mobile": "", "title": "Giá vàng ngày 15 / 4 : Bảng giá tại các công ty vàng bạc đá quý", "seendate": "20260415T030000Z", "socialimage": "", "domain": "baomoi.com", "language": "Vietnamese", "sourcecountry": "Vietnam"} +{"url": "https://stockbiz.vn/tin-tuc/bo-truong-tai-chinh-my-ung-ho-cat-giam-lai-suat/39474711", "url_mobile": "", "title": "Bộ trưởng Tài chính Mỹ ủng hộ cắt giảm lãi suất", "seendate": "20260415T030000Z", "socialimage": "https://static.fireant.vn/posts/image/3772534", "domain": "stockbiz.vn", "language": "Vietnamese", "sourcecountry": "Vietnam"} +{"url": "https://stockbiz.vn/tin-tuc/ngan-hang-trung-uong-chau-au-than-trong-truoc-ap-luc-lam-phat/39474981", "url_mobile": "", "title": "Ngân hàng Trung ương châu Âu thận trọng trước áp lực lạm phát", "seendate": "20260415T030000Z", "socialimage": "https://static.fireant.vn/posts/image/3772576", "domain": "stockbiz.vn", "language": "Vietnamese", "sourcecountry": "Vietnam"} +{"url": "http://www.europesun.com/news/278983984/producer-prices-rise-sharply-on-energy-surge-from-iran-war", "url_mobile": "", "title": "Producer prices rise sharply on energy surge from Iran war", "seendate": "20260415T030000Z", "socialimage": "https://image.chitra.live/api/v1/wps/7128320/613e15d0-2e38-49ee-a7dc-4c61a22f31a0/1/supermarket-shopping-600x315.jpg", "domain": "europesun.com", "language": "English", "sourcecountry": "Russia"} +{"url": "https://zetatijuana.com/2026/04/banamex-tacha-de-erraticos-los-pronosticos-de-banxico-y-la-shcp-sobre-crecimiento-e-inflacion/", "url_mobile": "", "title": "Banamex tacha de erráticos los pronósticos de Banxico y la SHCP sobre crecimiento e inflación", "seendate": "20260415T030000Z", "socialimage": "https://zetatijuana.com/wp-content/uploads/2026/04/ECONOMIA.jpg", "domain": "zetatijuana.com", "language": "Spanish", "sourcecountry": "Mexico"} +{"url": "https://www.dailynews.co.th/news/5782451/", "url_mobile": "", "title": "ราคาทองวันนี้ 15 เม . ย . 69 ขึ้นพรวดเดียว 700 บาท", "seendate": "20260415T030000Z", "socialimage": "https://www.dailynews.co.th/wp-content/uploads/2026/04/2-26.jpg", "domain": "dailynews.co.th", "language": "Thai", "sourcecountry": "Thailand"} +{"url": "https://baotintuc.vn/kinh-te/gia-vang-sang-154-dong-loat-tang-manh-20260415082802323.htm", "url_mobile": "", "title": "Giá vàng hôm nay 15 / 4 đồng loạt tăng mạnh", "seendate": "20260415T030000Z", "socialimage": "https://cdnmedia.baotintuc.vn/Upload/DUU6RrxzRxC3rhmuFd3A/files/2026/02/gia-vang-24-2.jpg", "domain": "baotintuc.vn", "language": "Vietnamese", "sourcecountry": "Vietnam"} +{"url": "https://www.thestar.com.my/business/insight/2026/04/15/oil-shock-is-here-are-businessesprepared", "url_mobile": "", "title": "Oil shock is here : Are businesses prepared ? ", "seendate": "20260415T030000Z", "socialimage": "https://apicms.thestar.com.my/uploads/images/2026/04/15/3860181.jpeg", "domain": "thestar.com.my", "language": "English", "sourcecountry": "Malaysia"} +{"url": "https://market.bisnis.com/read/20260415/93/1966735/rupiah-hari-ini-154-dibuka-menguat-ke-rp17126-per-dolar-as", "url_mobile": "", "title": "Rupiah Hari Ini ( 15 / 4 ) Dibuka Menguat ke Rp17 . 126 per dolar AS", "seendate": "20260415T030000Z", "socialimage": "https://images.bisnis.com/posts/2026/04/15/1966735/03032025-bi-bio-24-rupiah_dolar_5_1740996814.JPG", "domain": "market.bisnis.com", "language": "Indonesian", "sourcecountry": "Indonesia"} diff --git a/Data/1_Bronze_Raw/News_Scrapes/2026-04-14/Raw/raw_gdelt_macro_geopolitics_risk.jsonl b/Data/1_Bronze_Raw/News_Scrapes/2026-04-14/Raw/raw_gdelt_macro_geopolitics_risk.jsonl new file mode 100644 index 0000000..ea83ce3 --- /dev/null +++ b/Data/1_Bronze_Raw/News_Scrapes/2026-04-14/Raw/raw_gdelt_macro_geopolitics_risk.jsonl @@ -0,0 +1,10 @@ +{"url": "https://radaronline.com/p/trump-assassination-fears-pope-conflict-iran-war/", "url_mobile": "", "title": "Trump Bible - Thumper Assassination Fears Explode Amid Bust - Up With Pope", "seendate": "20260415T030000Z", "socialimage": "https://media.radaronline.com/brand-img/WtV5aEYvB/1200x628/trump-assassination-fears-pope-conflict-1776201667533.jpg", "domain": "radaronline.com", "language": "English", "sourcecountry": "United States"} +{"url": "https://www.kompas.com/tren/read/2026/04/15/093000765/rusia-dan-ukraina-kembali-lancarkan-serangan-usai-saling-tuduh-langgar", "url_mobile": "https://amp.kompas.com/tren/read/2026/04/15/093000765/rusia-dan-ukraina-kembali-lancarkan-serangan-usai-saling-tuduh-langgar", "title": "Rusia dan Ukraina Kembali Lancarkan Serangan Usai Saling Tuduh Langgar Gencatan Senjata", "seendate": "20260415T030000Z", "socialimage": "https://asset.kompas.com/crops/_Cjf6tGgx90y6yAtfy2dK39dkWk=/0x0:2000x1333/1200x675/filters:watermark(data/photo/2026/01/30/697c818d0ca91.png,0,-0,1)/data/photo/2025/10/22/68f900e9d9235.jpg", "domain": "kompas.com", "language": "Indonesian", "sourcecountry": "Indonesia"} +{"url": "https://www.whtimes.co.uk/news/national/26021871.half-households-energy-credit-end-winter---poll/", "url_mobile": "", "title": "More than half of households in energy credit at end of winter – poll", "seendate": "20260415T030000Z", "socialimage": "https://www.whtimes.co.uk/resources/images/20789458.jpg?type=og-image", "domain": "whtimes.co.uk", "language": "English", "sourcecountry": "United Kingdom"} +{"url": "https://www.wharfedaleobserver.co.uk/news/national/26021877.chancellor-hold-talks-us-counterpart-strong-criticism-iran-war/", "url_mobile": "", "title": "Chancellor to hold talks with US counterpart after strong criticism of Iran war", "seendate": "20260415T030000Z", "socialimage": "https://www.wharfedaleobserver.co.uk/resources/images/20658940.jpg?type=og-image", "domain": "wharfedaleobserver.co.uk", "language": "English", "sourcecountry": "United Kingdom"} +{"url": "https://hotair.com/ed-morrissey/2026/04/14/centcom-24-hours-and-alls-well-on-the-blockade-front-n3813891", "url_mobile": "https://hotair.com/ed-morrissey/2026/04/14/centcom-24-hours-and-alls-well-on-the-blockade-front-n3813891/amp", "title": "CENTCOM : 24 Hours And All Well On the Blockade Front ( Updated ) ", "seendate": "20260415T030000Z", "socialimage": "https://media.townhall.com/cdn/hodl/2026/98/b743b04a-5533-4916-ade0-54f7937e2177.jpg", "domain": "hotair.com", "language": "English", "sourcecountry": "United States"} +{"url": "http://bank.cnfol.com/yinhangyeneidongtai/20260415/32144374.shtml", "url_mobile": "", "title": "四年征集项目超6200个 兴火 · 燎原 创新马拉松大赛推动 创新之火渐成燎原之势 _ 银行业内动态 _ 银行 _ 中金在线", "seendate": "20260415T030000Z", "socialimage": "", "domain": "bank.cnfol.com", "language": "Chinese", "sourcecountry": "China"} +{"url": "http://hkstock.cnfol.com/shichangfenxi/20260415/32144515.shtml", "url_mobile": "", "title": "浙商证券 : 维持中国宏桥 ( 01378 ) 买入 评级 高分红投资价值突出 _ 市场分析 _ 港股 _ 中金在线", "seendate": "20260415T030000Z", "socialimage": "", "domain": "hkstock.cnfol.com", "language": "Chinese", "sourcecountry": "China"} +{"url": "https://baomoi.com/gia-vang-ngay-15-4-bang-gia-tai-cac-cong-ty-vang-bac-da-quy-c54939126.epi", "url_mobile": "", "title": "Giá vàng ngày 15 / 4 : Bảng giá tại các công ty vàng bạc đá quý", "seendate": "20260415T030000Z", "socialimage": "", "domain": "baomoi.com", "language": "Vietnamese", "sourcecountry": "Vietnam"} +{"url": "http://mp.cnfol.com/32111/article/1776215336-142360699.html", "url_mobile": "", "title": "4月15日周三早间市场信息 _ 中金在线财经号", "seendate": "20260415T030000Z", "socialimage": "", "domain": "mp.cnfol.com", "language": "Chinese", "sourcecountry": "China"} +{"url": "http://www.europesun.com/news/278984446/eu-country-suspends-defense-agreement-with-israel", "url_mobile": "", "title": "EU country suspends defense agreement with Israel", "seendate": "20260415T030000Z", "socialimage": "https://image.chitra.live/api/v1/wps/01d310c/19dc0ca9-84b9-419e-a676-b0886b902998/0/ZjEwZDJiN2EtNTU-600x315.jpg", "domain": "europesun.com", "language": "English", "sourcecountry": "Russia"} diff --git a/Data/1_Bronze_Raw/News_Scrapes/2026-04-14/Raw/raw_gdelt_macro_inflation_employment.jsonl b/Data/1_Bronze_Raw/News_Scrapes/2026-04-14/Raw/raw_gdelt_macro_inflation_employment.jsonl new file mode 100644 index 0000000..ef37ddd --- /dev/null +++ b/Data/1_Bronze_Raw/News_Scrapes/2026-04-14/Raw/raw_gdelt_macro_inflation_employment.jsonl @@ -0,0 +1,10 @@ +{"url": "https://www.wharfedaleobserver.co.uk/news/national/26021877.chancellor-hold-talks-us-counterpart-strong-criticism-iran-war/", "url_mobile": "", "title": "Chancellor to hold talks with US counterpart after strong criticism of Iran war", "seendate": "20260415T030000Z", "socialimage": "https://www.wharfedaleobserver.co.uk/resources/images/20658940.jpg?type=og-image", "domain": "wharfedaleobserver.co.uk", "language": "English", "sourcecountry": "United Kingdom"} +{"url": "https://www.penzcentrum.hu/gazdasag/20260415/kiderult-a-meztelen-igazsag-az-euro-magyarorszagi-bevezeteserol-nagyon-rafazhat-aki-a-2030-as-datumban-remenykedett-1196964", "url_mobile": "https://www.penzcentrum.hu/gazdasag/20260415/kiderult-a-meztelen-igazsag-az-euro-magyarorszagi-bevezeteserol-nagyon-rafazhat-aki-a-2030-as-datumban-remenykedett-1196964/amp", "title": "Kiderült a meztelen igazság az euró magyarországi bevezetéséről : nagyon ráfázhat , aki a 2030 - as dátumban reménykedett", "seendate": "20260415T030000Z", "socialimage": "https://cdn.penzcentrum.hu/images/articles/lead/2026/04/1776184225-b5hikrjMc_lg.jpg", "domain": "penzcentrum.hu", "language": "Hungarian", "sourcecountry": "Hungary"} +{"url": "https://sixactualites.fr/retraites/demain-jarrete-quel-montant-faut-il-vraiment-avoir-en-banque-pour-tout-quitter-et-vivre-libre/106597/", "url_mobile": "", "title": " « Demain , jarrête ! » : quel montant faut - il vraiment avoir en banque pour tout quitter et vivre libre ? ", "seendate": "20260415T030000Z", "socialimage": "https://sixactualites.fr/wp-content/uploads/2026/04/Demain-jarrete-quel-montant-faut-il-vraiment-avoir-en-banque-pour-tout-quitter-et-vivre-libre-.jpg", "domain": "sixactualites.fr", "language": "French", "sourcecountry": "France"} +{"url": "https://stockbiz.vn/tin-tuc/bo-truong-tai-chinh-my-ung-ho-cat-giam-lai-suat/39474711", "url_mobile": "", "title": "Bộ trưởng Tài chính Mỹ ủng hộ cắt giảm lãi suất", "seendate": "20260415T030000Z", "socialimage": "https://static.fireant.vn/posts/image/3772534", "domain": "stockbiz.vn", "language": "Vietnamese", "sourcecountry": "Vietnam"} +{"url": "https://stockbiz.vn/tin-tuc/ngan-hang-trung-uong-chau-au-than-trong-truoc-ap-luc-lam-phat/39474981", "url_mobile": "", "title": "Ngân hàng Trung ương châu Âu thận trọng trước áp lực lạm phát", "seendate": "20260415T030000Z", "socialimage": "https://static.fireant.vn/posts/image/3772576", "domain": "stockbiz.vn", "language": "Vietnamese", "sourcecountry": "Vietnam"} +{"url": "https://news.china.com/socialgd/10000169/20260415/49416933.html", "url_mobile": "", "title": "美股迅速收复伊朗战事失地 市场分化显著 _ 新闻频道 _ 中华网", "seendate": "20260415T030000Z", "socialimage": "", "domain": "news.china.com", "language": "Chinese", "sourcecountry": "China"} +{"url": "https://www.padovanews.it/2026/04/15/confcom-crescita-03-nel-2026-e-rischio-stagnazione/", "url_mobile": "", "title": "Confcom , crescita +0 , 3 % nel 2026 e rischio stagnazione – Padovanews", "seendate": "20260415T030000Z", "socialimage": "", "domain": "padovanews.it", "language": "Italian", "sourcecountry": "Italy"} +{"url": "http://www.europesun.com/news/278983984/producer-prices-rise-sharply-on-energy-surge-from-iran-war", "url_mobile": "", "title": "Producer prices rise sharply on energy surge from Iran war", "seendate": "20260415T030000Z", "socialimage": "https://image.chitra.live/api/v1/wps/7128320/613e15d0-2e38-49ee-a7dc-4c61a22f31a0/1/supermarket-shopping-600x315.jpg", "domain": "europesun.com", "language": "English", "sourcecountry": "Russia"} +{"url": "https://shipandbunker.com/news/world/571889-prospects-of-iran-playing-ball-with-us-causes-oil-to-plunge-by-nearly-8", "url_mobile": "", "title": "Prospects Of Iran Playing Ball With U . S . Causes Oil To Plunge By Nearly 8 % ", "seendate": "20260415T030000Z", "socialimage": "https://shipandbunker.cdn.speedyrails.net/a/img/_mt_d6afe34881134d19842789dd7a5fe7d4.jpg", "domain": "shipandbunker.com", "language": "English", "sourcecountry": "Singapore"} +{"url": "https://www.noticiasrcn.com/economia/makro-anuncio-nuevo-remate-de-productos-1012163", "url_mobile": "https://amp.noticiasrcn.com/economia/makro-anuncio-nuevo-remate-de-productos-1012163", "title": "Supermercado en Colombia sigue pisando fuerte y lanzó nuevos remates en productos : de esto se trata", "seendate": "20260415T030000Z", "socialimage": "https://imagenes.noticiasrcn.com/cms/2025/07/16172632/supermercado-quiebra.webp?&r=1_1", "domain": "noticiasrcn.com", "language": "Spanish", "sourcecountry": "Colombia"} diff --git a/Data/1_Bronze_Raw/News_Scrapes/2026-04-16/Full_text/full_text_asset_metals_derivatives.jsonl b/Data/1_Bronze_Raw/News_Scrapes/2026-04-16/Full_text/full_text_asset_metals_derivatives.jsonl new file mode 100644 index 0000000..ec1cc5a --- /dev/null +++ b/Data/1_Bronze_Raw/News_Scrapes/2026-04-16/Full_text/full_text_asset_metals_derivatives.jsonl @@ -0,0 +1,6 @@ +{"url": "https://www.eastbaytimes.com/2026/04/15/oral-b-water-flosser-vs-burst-water-flosser/", "title": "Oral - B water flosser vs . Burst water flosser", "publish_date": "2026-04-16T12:32:28Z", "full_text": "Which is the better water flosser?\n\nOften referred to as oral irrigators, water flossers provide an alternative to traditional flossing. They use pressure to send out a constant stream of water that dislodges and removes bacteria and plaque. When used alongside a good brushing routine, this can also help improve bad breath and prevent bleeding gums.\n\nOral-B and Burst both have a line of water flossers that perform a similar function. However, the overall design and way they do this differ between the two brands. When deciding which to go with, consider the cleaning power, effectiveness and any additional features.\n\nOral-B water flosser\n\nPart of Procter & Gamble, Oral-B was founded around 1949 by Dr. Robert W. Hutson. He designed the first Oral-B toothbrush and named the different versions based on the number of nylon bristles they had. Nowadays, the brand has everything from electric toothbrushes to toothpaste to water flossers.\n\nOral-B water flossers are larger than others. They come with innovative jet streams and have three settings: sensitive, medium and intense. They also have a button that lets you trigger a burst of water to flush out any food debris or loosened plaque. These oral tools also come with Oxyjet Technology, which incorporates tiny bubbles of air into the water stream to better remove particles and clean the teeth and gums.\n\nThe oral irrigators also have different nozzles, such as the Aquafloss nozzle and the Precision Jet nozzle, so you can customize how you use them. Similar to other water flossers, they come with a refillable water reservoir and a rechargeable station.\n\nThe average cost of an Oral-B water flosser is $90-$200.\n\nOral-B water flosser pros\n\nIt comes with Oxyjet technology to help eliminate plaque, resulting in healthier teeth and gums.\n\nThe different streams and intensity settings make for a more customized cleaning experience.\n\nThere are three flossing modes, as well as an on-demand button.\n\nThe nozzle is replaceable, so you don’t need to buy a new water flosser.\n\nIt has a convenient charging station and a long-lasting battery.\n\nDespite being large, it’s lightweight.\n\nThe device is easy to use.\n\nOral-B water flosser cons\n\nIt can feel clunky or too big, especially for those with smaller hands or mouths.\n\nThe nozzle design can make it difficult to position the device.\n\nThe different models are all relatively similar, despite some being at a higher price point.\n\nSome don’t have the most durable construction.\n\nBest Oral-B water flossers\n\nOral-B Water Flosser Advanced With Two Nozzles\n\nThis cordless device comes with a charging station and is portable, making it convenient to use at home or while traveling. It has an Aquafloss and a Precision Jet nozzle for targeted cleaning. It also has three flossing modes.\n\nOral-B Water Flosser Advanced With Three Nozzles\n\nWith three jet stream options and three intensity levels, this cordless oral irrigator is an effective tool that helps keep the gums and teeth clean. It comes with two Aquafloss nozzles and a precision jet nozzle. It also has an on-demand button for those who want to target specific areas. Plus, it has Oxyjet technology to reduce plaque and get rid of food particles.\n\nBurst water flosser\n\nBurst was founded in 2017 by Brittany Stewart and Hamish Khayat. The company’s mission is to make oral hygiene devices, such as electric toothbrushes and water flossers, more accessible to the public. Burst collaborates directly with dentists and hygienists to create high-end tools that help with people’s dental health. The brand has a direct-to-consumer and uses a subscription service for many of its devices.\n\nBurst’s line of water flossers is colorful and modern-looking. Each one has tips that can rotate 360 degrees. They also have different pressure modes, such as Turbo, Standard and Pulse, for a targeted clean.\n\nThe water flossers cost $60-$100. With a subscription service, you can also receive regular replacement nozzles for $6 a month.\n\nBurst water flosser pros\n\nDepending on the pressure mode, you can do a basic or a deep clean.\n\nThe rotating nozzles make it easier to reach back into your mouth.\n\nModern and stylish, each one is designed to be convenient to use.\n\nIt has a long battery life and is rechargeable.\n\nThe flosser can turn itself off after a few seconds of inactivity.\n\nThe tips are interchangeable, so you don’t have to replace the base often.\n\nThey’re durable and have a textured grip for added comfort.\n\nWhen you order one, you get a decorative travel bag.\n\nThe subscription service is convenient, inexpensive and innovative.\n\nBurst water flosser cons\n\nIt can be somewhat loud and messy.\n\nCapable of holding 110 milliliters, the water reservoir is a little small.\n\nIt can turn off automatically, which can be inconvenient.\n\nThe main difference between each model is the color.\n\nBest Burst water flossers\n\nBurst Cordless Water Flosser\n\nThis portable water flosser comes in black and has three pressure modes. It’s cordless and water-resistant, making it perfect for use in the shower or while traveling. The tip rotates 360 degrees for a more thorough clean.\n\nBurst Water Flosser Rose Gold\n\nThis chic oral irrigator comes in rose gold. It has three pressure settings: pulse, standard and turbo. It’s also comfortable to hold and durable.\n\nShould you get an Oral-B or a Burst water flosser?\n\nOral-B and Burst both offer reliable water flossers that let you thoroughly clean your teeth and gums and remove food debris and plaque you might have missed with regular brushing. They both have several pressure settings and nozzle types, so there’s something for everyone. Burst is a good option if you want something compact, sleek and modern at a competitive price point. Oral-B, meanwhile, is better if you have a larger mouth and don’t want to pay a monthly subscription.\n\nPrices listed reflect time and date of publication and are subject to change.\n\nCheck out our Daily Deals for the best products at the best prices and sign up here to receive the BestReviews weekly newsletter full of shopping inspo and sales.\n\nBestReviews spends thousands of hours researching, analyzing and testing products to recommend the best picks for most consumers. BestReviews and its newspaper partners may earn a commission if you purchase a product through one of our links."} +{"url": "https://www.finanznachrichten.de/nachrichten-2026-04/68216726-formation-metals-durchteuft-1-8-g-t-au-auf-21-9-m-oestlich-von-1-75-g-t-au-auf-30-4-m-auf-fortgeschrittenem-goldprojekt-n2-bohrungen-bestaetigen-bestae-248.htm", "title": "Formation Metals durchteuft 1 , 8 g / t Au auf 21 , 9 m , östlich von 1 , 75 g / t Au auf 30 , 4 m auf fortgeschrittenem Goldprojekt N2 : Bohrungen bestätigen Beständigkeit von 300 m innerhalb von 5 km entlang von mineralisiertem Streichen", "publish_date": "2026-04-16T12:32:28Z", "full_text": "Höhepunkte:\n\n- N2-25-004: 0,83 g/t Au auf 40,4 m, beginnend in einer Bohrlochtiefe von 180,0 m, 147,4 m vertikal.\n\n- N2-25-006: 1,8 g/t Au auf 21,9 m, beginnend in einer Bohrlochtiefe von 154,4 m, 133,7 m vertikal.\n\n- N2-25-009: 1,37 g/t Au auf 24,0 m, beginnend in einer Bohrlochtiefe von 168,9 m, 146,3 m vertikal.\n\n- N2-25-004, -006 und -009 bestätigen die strukturelle Beständigkeit sowie die Beständigkeit der Gehalte auf einer Streichlänge von 300 m, bauen auf N2-25-007, -008 und -010 auf, die 0,95 g/t Au auf 61,1 m enthielten, und befinden sich neigungsabwärts von 1,75 g/t Au auf 30,4 m in N2-25-005.\n\n- Angesichts dieser Ergebnisse geht das Unternehmen davon aus, dass die A-Zone ein solides mineralisiertes Erzgangsystem beherbergt, das zwischen 20 und 61 m schwankt, mindestens 100 m breit ist und sich über eine Streichlänge von 1,5 km erstreckt. Die A-Zone ist nach wie vor in mehrere Richtungen offen, insbesondere entlang des Streichens (Ost-West) und neigungsabwärts bzw. in die Tiefe (Süden) innerhalb eines 5 km langen strukturellen Korridors, der bereits bebohrt wurde und sich als mineralisiert erwiesen hat.\n\n- Bis dato wurden 48 Bohrlöcher auf insgesamt 15.291 m abgeschlossen, wobei die Analyseergebnisse für 35 Bohrlöcher noch ausstehend sind, was für das gesamte zweite Quartal eine kontinuierliche Reihe bevorstehender Katalysatoren verheißt.\n\n- Das Unternehmen verfügt über ein Working Capital von etwa 10,5 Millionen CAD und ist schuldenfrei.\n\nVancouver, British Columbia / 16. April 2026 / IRW-Press / Formation Metals Inc. (\"Formation\" oder das \"Unternehmen\") (CSE: FOMO) (FWB: VF1) (OTCQB: FOMTF), ein nordamerikanisches Mineralakquisitions- und Explorationsunternehmen, freut sich, die Ergebnisse der Bohrungen N2-25-001, N2-25-002, N2-25-003, N2-25-004, N2-25-006 und N2-25-009 bekannt zu geben, die im Rahmen seines laufenden, vollständig finanzierten 30.000-Meter-Bohrprogramms in seinem Vorzeige-Goldkonzessionsgebiet N2 (\"N2\" oder das \"Konzessionsgebiet\") niedergebracht wurden.\n\nDas 25 km südlich von Matagami (Quebec) gelegene Konzessionsgebiet N2 beherbergt eine globale historische Ressource von ca. 871.000 Unzen, bestehend aus 18 Mio. Tonnen Gestein mit einem Gehalt von 1,4 g/t Au (ca. 810.000 Unzen Au) in vier Zonen (A, Ost, RJ-East und Central)2,3 und 243.000 Tonnen Gestein mit einem Gehalt von 7,82 g/t Au (ca. 61.000 Unzen Au) in der Zone RJ2,4.\n\nDas laufende Bohrprogramm des Unternehmens hat die Erwartungen übertroffen und die geologische Beständigkeit bestätigt, wobei in den Bohrlöchern N2-25-004, N2-25-006 und N2-25-009 solide und durchgehende Goldabschnitte erzielt wurden, die folgende bedeutsame Abschnitte identifizierten:\n\n- N2-25-004: 0,83 g/t Au auf 40,4 m, beginnend in einer Bohrlochtiefe von 180,0 m, 147,4 m vertikal Das bedeutsamste Intervall beinhaltet 1,36 g/t Au auf 9,0 m mit einem Gesamtmetallindex von 38,48.\n\n- N2-25-006: 1,8 g/t Au auf 21,9 m, beginnend in einer Bohrlochtiefe von 154,4 m, 133,7 m vertikal Das bedeutsamste Intervall beinhaltet 3,4 g/t Au auf 4,8 m mit einem Gesamtmetallindex von 79,56.\n\n- N2-25-009: 1,37 g/t Au auf 24,0 m, beginnend in einer Bohrlochtiefe von 168,9 m, 146,3 m vertikal Das bedeutsamste Intervall beinhaltet 2,05 g/t Au auf 13,3 m mit einem Gesamtmetallindex von 81,89.\n\nEine vergleichende Analyse zeigt eine starke Übereinstimmung zwischen dem Phase-1-Datensatz und den historischen Bohrungen auf über 55.000 m, was wesentliche Geologie- und Bergbauparameter bestätigt und das Vertrauen in die bestehende Datenbank stärkt.\n\nDeepak Varshney, CEO von Formation Metals, sagte: \"Die Ergebnisse von Phase 1 übertreffen weiterhin unsere Erwartungen, wobei N2-25-004, N2-25-006 und N2-25-009 zeigen, dass die A-Zone ein bedeutsames Tagebauziel darstellt. Die Ergebnisse bestätigen weiterhin die historischen Bohrungen auf über 55.000 m, wobei die Bohrungen nicht nur die historischen Erkenntnisse hinsichtlich Lithologie, Mineralisierung, Alteration, Erzgänge und struktureller Merkmale bestätigen, sondern auch eine höhere Konsistenz, längere goldhaltige Mischproben sowie wertvollere Mineralisierungsprofile liefern, was das Konzept einer Tagebaulagerstätte bei N2 untermauert.\"\n\nAbbildung 1 - Standorte der Bohrlöcher von 2025 (A-Zone), Phase 1.\n\nDie Bohrungen wurden so konzipiert, dass sie auf Mineralisierungen in verschiedenen Horizonten südlich und unterhalb von N2-25-005 und N2-25-012 abzielen (siehe Pressemitteilung vom 12. Februar 2026), wo das Unternehmen die folgenden mächtigen, kontinuierlichen, oberflächennahen Abschnitte identifiziert hat:\n\n- N2-25-005: 0,91 g/t Au über 42,3 Meter ab 14,0 Metern Bohrlochtiefe, 9,9 Meter vertikale Tiefe. Zu den herausragenden Abschnitten zählen 8,1 Meter mit 2,04 g/t Au bzw. 11,4 Meter mit 1,31 g/t Au mit einem Gesamtmetallindex von 38,36.\n\n- N2-25-012: 1,75 g/t Au über 30,4 Meter ab 64,1 Metern Bohrlochtiefe, 45,3 Meter vertikale Tiefe. Zu den herausragenden Abschnitten zählen 10,5 Meter mit 3,51 g/t Au bzw. 0,51 Meter mit 19,2 g/t Au mit einem Gesamtmetallindex von 62,43.\n\nDiese Bohrlöcher wurden auch konzipiert, um die westliche Erweiterung des Streichens des durch die Bohrlöcher N2-25-007, N2-25-008 und N2-25-010 (siehe Pressemitteilung vom 24. Februar 2026) ermittelten mineralisierten Horizonts zu testen, wo das Unternehmen die folgenden zusätzlichen mächtigen, soliden oberflächennahen Abschnitte identifiziert hat:\n\n- N2-25-007: 1,3 g/t Au über 22,2 Meter, beginnend bei 139,9 Metern Bohrlochtiefe, 121,2 Meter vertikal. Der hervorgehobene Abschnitt umfasst 2,36 g/t Au über 10,5 Meter mit einem Gesamtmetallindex von 51,07.\n\n- N2-25-008: 0,95 g/t Au über 61,1 Meter, beginnend bei 109 Metern Bohrlochtiefe, 94,4 Meter vertikal. Der hervorgehobene Abschnitt umfasst 1,68 g/t Au über 26,5 Meter mit einem Gesamtmetallindex von 67,97.\n\n- N2-25-010: 1,43 g/t Au über 19,4 Meter, beginnend bei 117,5 Metern Bohrlochtiefe, 101,8 Meter vertikal. Der hervorgehobene Abschnitt umfasst 2,23 g/t Au über 7,0 Meter mit einem Gesamtmetallindex von 38,49.\n\nDer Abstand von etwa 55 m zwischen den Bohrlöchern N2-25-004, N2-25-006 und N2-25-009 bestätigt die Beständigkeit eines bedeutsamen Bulk-Tonnage-Systems in der Tiefe. Diese Ergebnisse validieren historische Bohrdaten, stärken das Vertrauen in das geologische 3D-Modell und verringern das technische Risiko für die bevorstehenden Erschließungsphasen.\n\nDie geologische Interpretation, die auf der Beständigkeit des Streichens der Mineralisierung zwischen den beiden Bohrlochsätzen (N2-25-007, N2-25-008 und N2-25-010 sowie N2-25-004, N2-25-006 und N2-25-009) basiert, lässt einen konsistenten, 300 m langen goldhaltigen Korridor erkennen. Dieser Abschnitt weist stark auf beträchtliches Bulk-Tonnage-Potenzial in Oberflächennähe entlang einer Streichlänge von 8 km hin.\n\nDiese Bohrlochreihe bestätigte insbesondere nicht nur die Beständigkeit der primären Zielerzgänge, sondern durchschnitt auch parallel verlaufende, sekundäre und tertiäre Erzgangsysteme, wodurch das potenzielle mineralisierte Profil oberhalb und unterhalb der Hauptzone erheblich erweitert wurde, wo N2-25-004 0,4 g/t Au auf 4,6 m und 0,41 g/t Au auf 4,0 m oberhalb, N2-25-006 0,66 g/t Au auf 38,6 m oberhalb und 0,67 g/t Au auf 22,2 m unterhalb durchteufte und N2-25-009 0,61 g/t Au auf 42,1 m oberhalb und 0,96 g/t Au auf 21,7 m unterhalb durchteufte. Die identifizierte Beständigkeit dieser Bohrlochreihen über eine Strecke von 300 m mit Erweiterungspotenzial über die gesamte Streichlänge von 8 km würde erhebliche positive Auswirkungen auf einen zukünftigen Tagebau haben, wobei sich der potenzielle Abbaubereich deutlich auf eine gesamte mineralisierte Mächtigkeit von bis zu etwa 93 m in der Tiefe des Bohrlochs und eine Mächtigkeit von etwa 100 m erweitern würde.\n\nBis dato hat Formation ein Phase-1-Programm mit 46 Bohrlöchern auf insgesamt 14.466 m erfolgreich abgeschlossen. Da die Analyseergebnisse für 39 Bohrlöcher zurzeit noch ausstehend sind, erwarten wir einen kontinuierlichen Nachrichtenfluss, der als primärer Bewertungskatalysator wirken wird, wobei die Bohrungen voraussichtlich Ende Mai fortgesetzt werden.\n\nDeepak Varshney, CEO von Formation Metals, sagte außerdem: \"Da die historische Ressource eine Streichlänge von nur 1,5 km im nördlichen Korridor umfasst, haben wir über 6 km auf einem Projekt zu bohren, auf dem wir nun nachgewiesen haben, dass die Hauptzone mindestens 20 m mächtig und etwa 95 m breit ist. Über die Bestätigung der durchgehenden Beständigkeit unseres Hauptziels hinaus sind diese Bohrergebnisse insofern von großer Bedeutung, als sie übereinanderliegende oder parallel verlaufende, sekundäre und tertiäre Erzgangsysteme verdeutlichen, die den potenziellen mineralisierten Bereich erheblich erweitern und unseren Spielraum für ein umfassendes, mehrere Erzgänge umfassendes Abbaukonzept vergrößern.\n\nSollte sich diese Beständigkeit über die gesamte Streichlänge von 8 km erstrecken, steht uns eine erhebliche Erweiterung des potenziellen Tagebaugebiets bevor - möglicherweise auf eine Mächtigkeit von etwa 93 m und eine Breite von 100 m in der Tiefe des Bohrlochs. Die vergleichende Analyse unserer jüngsten Phase-1-Bohrungen mit historischen Daten hat unsere Erwartungen übertroffen und eine starke Übereinstimmung sowohl hinsichtlich der geologischen Struktur als auch des Mineralisierungsgehalts aufgezeigt. Diese hohe Wiederholbarkeit validiert unser geologisches Modell und belegt die erhebliche Beständigkeit der Lagerstätte.\"\n\nDas 15.000 Meter umfassende Bohrprogramm der Phase 1 von Formation ist konzipiert für:\n\n- Steigerung des Vertrauensniveaus und Konversion der Ressource: Schließen oberflächennaher Lücken, um das Vertrauensniveau der oberflächennahen Mineralisierung zu steigern.\n\n- Ressourcenwachstum: Überprüfung von Erweiterungen in Fallrichtung und Step-outs im Streichen sowohl nach Osten als auch nach Westen über die historischen Ressourcengrenzen hinaus.\n\n- Metallurgie: Entnahme repräsentativer Bohrkerne zur Bestätigung der metallurgischen Reaktion und Validierung der Gewinnungsraten.\n\nDa die vollständige Finanzierung gesichert ist, treibt Formation ein 30.000 m umfassendes Bohrprogramm voran, dessen Schwerpunkt auf der Abgrenzung einer oberflächennahen Tagebauressource liegt, um eine beträchtliche Tonnage aufzubauen und die Wirtschaftlichkeit des Projekts zu verbessern. Der Schwerpunkt der Explorationsarbeiten liegt zurzeit darauf, das Potenzial eines 8 km langen Korridors zu erschließen, wobei zwei Bohrgeräte in den Zonen \"A\" und \"RJ\" im Einsatz sind. Der Abschluss dieser Phase-1-Bohrungen wird zur Veröffentlichung einer ersten Mineralressourcenschätzung (MRE) im dritten Quartal führen.\n\nIn den kommenden Monaten plant das Unternehmen ein fokussiertes und vielversprechendes Explorationsprogramm bei N2, das die vielfältigen Möglichkeiten des Projekts widerspiegelt und nachhaltige, disziplinierte Explorationsaktivitäten über die aktuelle Bohrphase hinaus unterstützt.\n\nTabelle 1 - Bedeutende Abschnitte aus der A-Zone: N2-25-004, N2-25-006 und N2-25-009\n\nBohrloch-Nr. Au (g/t) Von Bis Länge (m) Metallindex N2-25-004 1,03 14,3 15,6 1,3 1,34 0,41 77,0 79,5 2,5 1,03 0,29 96,0 102,1 6,1 1,77 0,4 129,0 133,6 4,6 1,84 0,29 145,5 148,2 2,7 0,78 0,83 180,0 220,4 40,4 33,53 einschließlich 1,36 180,0 189,0 9 und 1,08 195,3 202,2 6,9 und 1,18 210,0 220,4 10,4 N2-25-006 0,66 69,4 108,0 38,6 25,48 einschließlich 8,85 87,0 88,1 1,1 und 3,66 104,2 106,2 2 1,8 154,4 175,5 21,1 37,98 einschließlich 3,6 154,4 159,2 4,8 und 1,34 161,0 166,7 5,7 und 2,41 168,0 173,0 5 1,6 197,6 199,3 1,7 2,72 0,67 231,0 253,1 22,1 14,81 einschließlich 1,01 231,0 234,1 3,1 und 1,1 243,0 249,8 6,8 N2-25-009 0,61 86,7 128,8 42,1 25,74 einschließlich 1,04 113,3 126,7 13,4 0,34 156,5 159,4 2,9 0,99 1,37 168,9 192,9 24,0 32,88 einschließlich 2,05 177,8 191,1 13,3 und 3,02 177,8 181,1 3,3 und 4,02 185,5 186,7 1,2 2,23 198,7 199,8 1,1 2,45 0,96 207,8 231,0 23,2 22,27 einschließlich 2,98 207,8 211,8 4,0\n\nTabelle 2 - Bedeutende Abschnitte aus der RJ-Zone: N2-25-001, N2-25-002 und N2-25-003\n\nBohrloch-Nr. Au (g/t) Von Bis Länge (m) Metallindex N2-25-001 0,23 261,7 268,3 6,6 1,52 einschließlich 1,28 266,5 267,1 0,6 0,11 271,5 281,7 10,2 1,12 N2-25-002 0,24 98,5 102 3,5 0,84 einschließlich 1,58 99,3 99,8 0,5 0,34 183,1 207,5 24,4 8,30 einschließlich 0,89 183,1 187,9 4,8 und 1,54 186,0 187,9 1,9 und 0,3 196,6 208,5 11,9 0,54 289,3 290,3 1,0 0,54 N2-25-003 3,0 23,1 27,6 4,5 13,50 einschließlich 14,06 23,1 24 0,9 0,6 52,9 64,7 11,8 7,08 einschließlich 1,28 59,6 63,7 4,1 0,76 110 112 2,0 1,52\n\nAnmerkung 1: Die dargestellten Mineralisierungsabschnitte sind nicht direkt repräsentativ für die wahre Mächtigkeit. Basierend auf der Interpretation des Abschnittswinkels entspricht die geschätzte wahre Mächtigkeit der mineralisierten Linse im Allgemeinen 87 % der erbohrten Kernlänge.\n\nAnmerkung 2: Die gemeldeten Abschnitte wurden unter Verwendung eines Mindestgehalts von 0,2 g/t Au für höhergradige Abschnitte zusammengesetzt.\n\nTabelle 3 - Informationen zu den Bohrlöchern von Zone-A\n\nTabelle 4 - Informationen zu den Bohrlöchern von Zone-RJ\n\nÜberblick über das Projekt\n\nDas Vorzeige-Goldprojekt N2 von Formation umfasst 87 Claims mit einer Gesamtfläche von ca. 4.400 ha in der Subprovinz Abitibi im Nordwesten von Quebec und ist ein fortgeschrittenes Goldprojekt mit einer umfassenden historischen Ressource von ca. 871.000 Unzen - bestehend aus 18 Mio. Tonnen mit einem Gehalt von 1,4 g/t Au (ca. 810.000 Unzen Au)2,3 sowie 243.000 Tonnen mit einem Gehalt von 7,82 g/t Au (ca. 61.000 Unzen Au)2.\n\nInsgesamt gibt es sechs primäre goldhaltige mineralisierte Zonen, die jeweils in Streichrichtung und in der Tiefe erweiterbar sind. Die von Balmoral Resources Ltd. (jetzt Wallbridge Mining) von 2010 bis 2018 durchgeführten Zusammenstellungen und geophysikalischen Arbeiten lieferten zahlreiche Ziele, die derzeit erstmals von Formation mit Diamantbohrungen untersucht werden.\n\nZu den historischen Highlights der beiden vorrangigen Zonen gehören:\n\n- Zone A: eine oberflächennahe, sehr beständige, wenig variierende historische Goldlagerstätte mit ca. 522.900 Unzen, die bei einem Gehalt von 1,52 g/t Au identifiziert wurde. In der Vergangenheit wurden über 1,65 km Streichlänge etwa 15.000 Bohrmeter niedergebracht. 84 % der historischen Bohrungen durchteuften goldhaltige Abschnitte mit bis zu 1,7 g/t Au über 35 m.\n\n- Zone RJ: eine hochgradige historische Goldlagerstätte mit ca. 61.100 Unzen, die bei einem Gehalt von 7,82 g/t Au identifiziert wurde, mit hochgradigen Abschnitten aus historischen Bohrungen von bis zu 51 g/t Au über 0,8 m und 16,5 g/t Au über 3,5 m2. Diese Zone war das Ziel der letzten Bohrungen auf dem Konzessionsgebiet durch Agnico-Eagle Mines im Jahr 2008, als der Goldpreis bei ca. 800 US$/Unze lag. Bislang wurden nur ca. 900 m der Streichlänge bebohrt, sodass noch mehr als 4,75 Kilometer der Streichlänge zu erkunden sind.\n\nDie interne Einschätzung des Unternehmens lautet, dass das Projekt N2 das Potenzial für eine mögliche Tagebauressource hat. Dieser Optimismus basiert auf mehreren wesentlichen Faktoren:\n\n- Beträchtliche unerschlossene Streichlänge: Allein die Zone \"A\" weist eine Streichlänge von über 3,1 km auf (nur etwa 35 % davon wurden in der Vergangenheit bebohrt), während in der Zone RJ noch über 4,75 km unerprobt sind, was erheblichen Spielraum für eine seitliche Erweiterung der bekannten Mineralisierung bietet.\n\n- Offen in der Tiefe und entlang des Streichens: Alle Zonen sind weiterhin offen, da die bisherigen Bohrungen auf geringe Tiefen (etwa 350 m) beschränkt waren, sodass in einem bewährten Goldlager beträchtliches vertikales Potenzial besteht.\n\n- Mächtige, beständige oberflächennahe Abschnitte: Jüngste Bohrungen haben mächtige Zonen (100 bis über 200 m) der Zielmineralisierung bestätigt, die in Oberflächennähe beginnen und ideal für Tagebauszenarien mit großen Tonnagen, geringen Abraumverhältnissen und hohem Tonnagenpotenzial sind.\n\n- Regionale Analogie und Herkunft: N2 befindet sich im Abschnitt Casa Berardi, der mehrere Lagerstätten mit mehreren Millionen Unzen beherbergt (z. B. Casa Berardi: über 2 Mio. Unzen produziert sowie wahrscheinliche und nachgewiesene Reserven von 14,3 Mio. Tonnen mit 2,75 g/t Au; Douay: Ressourcen von über 3 Mio. Unzen (10 Mio. Tonnen mit 1,59 g/t Au in der Kategorie angedeutet und 76,7 Mio. Tonnen mit 1,02 g/t Au in der Kategorie vermutet), und weist ähnliche geologische und strukturelle Merkmale auf. Die nahe gelegene Mine Vezza produzierte aus höhergradigem Untertagebau, doch die oberflächennäheren, mächtigeren Zonen von N2 lassen auf eine überlegene Wirtschaftlichkeit des Tagebaus schließen.\n\n- Unerprobte Ziele: Bei der Zusammenstellung der Daten wurden zahlreiche geophysikalische Anomalien (IP, EM, VTEM) identifiziert, die noch nicht bebohrt wurden und über die bekannten Zonen hinaus Entdeckungspotenzial aufweisen.\n\n- Steigende Goldpreise und wirtschaftliche Machbarkeit: Bei den aktuellen Goldpreisen werden niedriggradigere Lagerstätten mit großen Tonnagen äußerst attraktiv, was das Potenzial des Projekts erhöht.\n\nDieser erstklassige Standort in einer strategisch günstigen Lage, 25 km südlich der Bergbaustadt Matagami (Quebec), bietet ganzjährigen Zugang über Provinzstraßen und Holzabfuhrstraßen sowie die Nähe zu qualifizierten Arbeitskräften, Energieinfrastruktur und etablierten Bergbaudienstleistungen in einer Jurisdiktion, die für ihre frühere Goldproduktion von über 200 Mio. Unzen bekannt ist. Das Projekt liegt entlang des Minenabschnitts Casa Berardi, der Goldlagerstätten mit mehreren Millionen Unzen beherbergt, und befindet sich etwa 1,5 km östlich der vormals produzierenden Goldmine Vezza, die zwischen 2013 und 2019 von Nottaway Resources betrieben wurde und über 100.000 Unzen Gold im Untertagebau förderte.\n\nDie robuste Infrastruktur der Region bietet Möglichkeiten für die Lohnvermahlung, mit potenziellem Zugang zu nahe gelegenen Verarbeitungsanlagen wie jenen bei Casa Berardi oder anderen Mühlen in Abitibi, was eine kostengünstige Erschließung ohne die Errichtung einer eigenen Mühle am Standort ermöglicht.\n\nAbbildung 3 - Historische Bohrlochstandorte. Formation geht davon aus, dass im Konzessionsgebiet N2 eine Streichlänge von über 15 km zu erkunden ist.\n\nAbbildung 4 - Das Konzessionsgebiet im Überblick mit einer Zusammenfassung der historischen Arbeiten, die in jeder der sechs mineralisierten Zonen durchgeführt wurden, und den jeweiligen historischen Ressourcen.\n\nDas Unternehmen ist außerdem der Ansicht, dass N2 ein erhebliches Potenzial für Basismetalle aufweist. In diesem Zusammenhang hat es kürzlich einen Neubewertungsprozess abgeschlossen, der bedeutende Kupfer- und Zinkabschnitte in historischen Bohrungen zeigte, von denen bekannt ist, dass sie bedeutende Goldgehalte (>1 g/t Au) aufweisen. Die Analyseergebnisse reichen von 200 bis 4.750 ppm Kupfer und von 203 ppm bis 6.700 ppm Zink, was auf ein starkes Potenzial für erhöhte Basismetallkonzentrationen (Cu-Zn) im gesamten Konzessionsgebiet hinweist, insbesondere in den Zonen A und RJ. Die geologische Beschaffenheit des gesamten Konzessionsgebiets N2 ist durch vulkanische und sedimentäre Gesteine gekennzeichnet, die sich in regionalen Antiklinal- und Synklinalstrukturen gebildet haben. Drei Hauptdeformationsstrukturen, die entlang der bekannten von Nordwest nach Südost bis Westnordwest nach Ostsüdost verlaufenden Strukturtrends ausgerichtet sind, die für VMS-Lagerstätten in der Region Matagami typisch sind, fungieren als kritische geologische Kontrollen für die Mineralisierung im Konzessionsgebiet.\n\nQualifizierter Sachverständiger\n\nDer technische Inhalt dieser Pressemitteilung wurde von Herrn Babak V. Azar, P.Geo., géo (OGQ#10876), einem unabhängigen Auftragnehmer und qualifizierten Sachverständigen im Sinne der Vorschrift National Instrument 43-101, geprüft und genehmigt. Die vom Optionsgeber vorgelegten historischen Berichte wurden vom qualifizierten Sachverständigen geprüft.\n\nQualitätssicherung und Qualitätskontrolle\n\nDie Qualitätssicherungs- und Qualitätskontrollprotokolle umfassten die Hinzugabe von Leer- und Standardproben (von Canadian Resource Laboratories akkreditiert) im Schnitt alle 10 Proben während des Analyseprozesses. Die Goldanalyse erfolgte mittels Brandprobe (FA) mit abschließendem Atomabsorptions- und ICP-Verfahren an 50 Gramm Material in den Einrichtungen von Laboratoire Expert Inc. in Rouyn-Noranda, Quebec, Kanada, und AGAT Laboratories Ltd. in Val d'Or, Quebec, Kanada. Jede Probe mit einem Gehalt von 10,0 g/t Gold oder mehr wurde nochmals anhand FA analysiert gefolgt von einer gravimetrischen Untersuchung. Die Proben, die eine große Variation ihres Goldgehalts aufwiesen oder sichtbares Gold enthielten, wurden einer Gesamtgoldanalyse (metallische Siebung) unterzogen.\n\nÜber Formation Metals Inc.\n\nFormation Metals Inc. ist ein nordamerikanisches Mineralakquisitions- und -explorationsunternehmen, das sich auf die Entwicklung hochwertiger, bohrbereiter Konzessionsgebiete mit hohem Wertschöpfungs- und Expansionspotenzial konzentriert. Das Vorzeigeprojekt von Formation ist das Goldprojekt N2, ein fortgeschrittenes Goldprojekt mit einer umfassenden historischen Ressource von ca. 871.000 Unzen (18 Mio. Tonnen mit 1,4 g/t Au (ca. 810.000 Unzen Au) in vier Zonen (A, East, RJ-East und Central)2, 3 und 243.000 Tonnen mit 7,82 g/t Au (ca. 61.000 Unzen Au) in der Zone RJ2, 4) und sechs mineralisierten Zonen, die jeweils entlang des Streichens und in der Tiefe für eine Erweiterung offen sind. Dazu gehören die Zone \"A\", in der nur etwa 35 % des Streichens bebohrt wurden (>3,1 km offen), und die Zone \"RJ\", in der historische hochgradige Abschnitte mit bis zu 51 g/t Au auf 0,8 Metern vorkommen.\n\nFORMATION METALS INC.\n\nDeepak Varshney, CEO und Direktor\n\nNähere Informationen erhalten Sie unter der Rufnummer 778-899-1780, per E-Mail an dvarshney@formationmetalsinc.com oder unter www.formationmetalsinc.com.\n\nDie Canadian Securities Exchange und ihr Regulierungsorgan übernehmen keine Verantwortung für die Angemessenheit oder Genauigkeit dieser Mitteilung.\n\nHinweise und Quellennachweis:\n\nLeser werden darauf hingewiesen, dass die Geologie benachbarter Konzessionsgebiete nicht unbedingt Rückschlüsse auf die Geologie des Konzessionsgebiets zulässt. Die oben genannten Ressourcenschätzungen sind nicht in Kategorien eingestuft, gelten als historisch und basieren auf früheren Daten, die von einem früheren Konzessionseigentümer erfasst wurden und nicht den aktuellen CIM-Kategorien entsprechen.\n\nDas Unternehmen hält die Schätzungen zwar für grundsätzlich zuverlässig, jedoch hat ein qualifizierter Sachverständiger keine ausreichenden Arbeiten durchgeführt, um die historischen Schätzungen gemäß den aktuellen CIM-Kategorien als aktuelle Mineralressourcen zu klassifizieren, und das Unternehmen behandelt die historischen Schätzungen daher nicht als aktuelle Mineralressourcen. Bei der Erstellung der historischen Schätzungen wurde ein Cutoff-Gehalt von 0,5 g/t Au bei einer Mindestabbaubreite von 2,5 m zugrunde gelegt.\n\nBevor die historischen Schätzungen als aktuelle Ressourcen klassifiziert werden können, müssen möglicherweise umfangreiche Datenzusammenstellungen, erneute Bohrungen, erneute Probenahmen und Datenüberprüfungen durch einen qualifizierten Sachverständigen durchgeführt werden. Es kann nicht garantiert werden, dass die historischen Mineralressourcen, weder ganz noch teilweise, jemals wirtschaftlich nutzbar sein werden. Darüber hinaus sind Mineralressourcen keine Mineralreserven und ihre wirtschaftliche Nutzbarkeit ist nicht nachgewiesen. Dem Unternehmen sind keine neueren Schätzungen für das Konzessionsgebiet N2 bekannt.\n\nNeedham, B. (1994), 1993 Diamond Drill Report, Northway Joint Venture, Northway Property; Cypress Canada Inc.; 492 Seiten. Guy K. (1991), Exploration Summary May 1, 1990 to May 1, 1991 Vezza Joint Venture Northway Property; Total Energold; 227 Seiten.\n\nZukunftsgerichtete Aussagen:\n\nDiese Pressemitteilung enthält \"zukunftsgerichtete Aussagen\" gemäß den geltenden kanadischen Wertpapiergesetzen, einschließlich, aber nicht beschränkt auf Aussagen zu: den Plänen des Unternehmens für das Konzessionsgebiet und dem voraussichtlichen Zeitplan und Umfang des Bohrprogramms auf dem Konzessionsgebiet; und dem geplanten 30.000-Meter-Bohrprogramm des Unternehmens. Solche zukunftsgerichteten Informationen spiegeln die aktuellen Einschätzungen des Managements wider und basieren auf einer Reihe von Schätzungen und/oder Annahmen sowie Informationen, die dem Unternehmen derzeit zur Verfügung stehen und die zwar als angemessen erachtet werden, jedoch bekannten und unbekannten Risiken, Ungewissheiten und anderen Faktoren unterliegen, die dazu führen können, dass die tatsächlichen Ergebnisse und zukünftigen Ereignisse wesentlich von den in solchen zukunftsgerichteten Aussagen ausgedrückten oder implizierten Ergebnissen abweichen. Leser werden darauf hingewiesen, dass solche zukunftsgerichteten Aussagen weder Versprechen noch Garantien darstellen und bekannten und unbekannten Risiken und Unsicherheiten unterworfen sind, einschließlich, aber nicht beschränkt auf allgemeine geschäftliche, wirtschaftliche, wettbewerbsbezogene, politische und soziale Unsicherheiten, ungewisse und volatile Aktien- und Kapitalmärkte, Mangel an verfügbarem Kapital, tatsächliche Ergebnisse von Explorationsaktivitäten, Umweltrisiken, zukünftige Preise für Basis- und andere Metalle, Betriebsrisiken, Unfälle, Arbeitsprobleme, Verzögerungen bei der Erlangung behördlicher Genehmigungen und Zulassungen sowie andere Risiken in der Bergbauindustrie.\n\nDas Unternehmen befindet sich derzeit in der Explorationsphase. Die Exploration ist von Natur aus hochspekulativ, mit vielen Risiken verbunden, erfordert erhebliche Ausgaben und führt möglicherweise nicht zur Entdeckung von Minerallagerstätten, die rentabel abgebaut werden können. Darüber hinaus verfügt das Unternehmen derzeit über keine Reserven auf seinen Konzessionsgebieten. Daher kann nicht garantiert werden, dass sich solche zukunftsgerichteten Aussagen als zutreffend erweisen, und die tatsächlichen Ergebnisse und zukünftigen Ereignisse können erheblich von den in solchen Aussagen erwarteten abweichen.\n\nHinweis/Disclaimer zur Übersetzung (inkl. KI-Unterstützung): Die Originalmeldung in der Ausgangssprache (in der Regel Englisch) ist die einzige maßgebliche, autorisierte und rechtsverbindliche Fassung. Diese deutschsprachige Übersetzung/Zusammenfassung dient ausschließlich der leichteren Verständlichkeit und kann gekürzt oder redaktionell verdichtet sein. Die Übersetzung kann ganz oder teilweise mithilfe maschineller Übersetzung bzw. generativer KI (Large Language Models) erfolgt sein und wurde redaktionell geprüft; trotzdem können Fehler, Auslassungen oder Sinnverschiebungen auftreten. Es wird keine Gewähr für Richtigkeit, Vollständigkeit, Aktualität oder Angemessenheit übernommen; Haftungsansprüche sind ausgeschlossen (auch bei Fahrlässigkeit), maßgeblich ist stets die Originalfassung. Diese Mitteilung stellt weder eine Kauf- noch eine Verkaufsempfehlung dar und ersetzt keine rechtliche, steuerliche oder finanzielle Beratung. Bitte beachten Sie die englische Originalmeldung bzw. die offiziellen Unterlagen auf www.sedarplus.ca, www.sec.gov, www.asx.com.au oder auf der Website des Emittenten; bei Abweichungen gilt ausschließlich das Original.\n\nDie englische Originalmeldung finden Sie unter folgendem Link:https://www.irw-press.at/press_html.aspx?messageID=83798Die übersetzte Meldung finden Sie unter folgendem Link:https://www.irw-press.at/press_html.aspx?messageID=83798&tr=1\n\n\n\nNEWSLETTER REGISTRIERUNG:\n\nAktuelle Pressemeldungen dieses Unternehmens direkt in Ihr Postfach:http://www.irw-press.com/alert_subscription.php?lang=de&isin=CA34638F1053Mitteilung übermittelt durch IRW-Press.com. Für den Inhalt ist der Aussender verantwortlich.Kostenloser Abdruck mit Quellenangabe erlaubt."} +{"url": "https://www.hellenicshippingnews.com/the-commodities-feed-oil-trades-lower-on-de-escalation-hopes/", "title": "The Commodities Feed : Oil trades lower on de - escalation hopes | Hellenic Shipping News Worldwide", "publish_date": "2026-04-16T12:32:28Z", "full_text": "Energy- US oil exports jump to record levels\n\nThe oil market continues to edge lower amid hopes that the US and Iran extend their ceasefire by another 2 weeks, along with a potential resumption in talks to bring an end to the war. However, the physical market is becoming tighter every day that passes without a restart of oil flows through the Strait of Hormuz. After taking into consideration pipeline diversions and the trickle of tankers through the Strait of Hormuz, we estimate that roughly 13m b/d has been disrupted. But with the US blockade, this number could creep higher. The divergence between the futures and physical markets is clear: dated Brent traded around $117/bbl, while front-month Brent futures settled a little below $95/bbl yesterday. The key upside risk for the market is that peace talks between the US and Iran break down. This isn’t an unrealistic scenario, given that US and Iranian demands remain fairly wide apart.\n\nThe latest data from the Energy Information Administration (EIA) shows that US crude oil exports jumped by 1.08m b/d week-on-week to 5.23m b/d- the highest volume since September 2025. However, total oil and refined product exports surged by 1.03 m b/d WoW, hitting a record 12.74 m b/d. These stronger US exports reflect buyers turning to other markets for supply amid disruptions in the Middle East. Despite strong exports, US crude oil inventories declined only marginally over the week, falling by 913k barrels. Refined product stocks saw more meaningful declines, with gasoline and distillate inventories falling by 6.33m barrels and 3.12m barrels, respectively.\n\nWith buyers shifting toward US barrels, the domestic market is set to tighten as long as Middle East disruptions persist, likely prompting a supply response from US producers. US drilling activity, however, has barely moved since the start of the conflict. According to Baker Hughes data the US oil rig count stood at 411 last week, up from 407 prior to the war. The lack of drilling activity also ties in with the EIA’s domestic crude oil production forecasts, which suggest little change in output this year. If we see a pickup in US drilling activity, it would have a more meaningful impact on oil output over 2027.\n\nEuropean gas prices continue to edge lower amid hopes of de-escalation in the Middle East, while EU gas storage levels move closer to 30% full as the region moves deeper into the injection season. High LNG send-outs in Europe have kept the market comfortable. Investment funds also reduced their net long in TTF by 37.4 TWh over the last week to 271.8 TWh. Clearly, the longer disruptions in the Middle East persist, the more competition we’ll see from Asia as buyers seek alternative supplies. JKM continues to trade at a premium to TTF, so we should be seeing cargoes being redirected towards Asia.\n\nMetals – Copper trades near one month high on Iran optimism\n\nCopper rose to around a one‑month high this week, with broader gains across industrial metals as markets priced in easing macro risks. Optimism that the US and Iran could restart talks helped unwind some of the recent pressure from fears of higher energy costs and weaker growth.\n\nHowever, the market remains highly headline‑driven. Any escalation in the conflict, renewed spikes in energy prices or signs of softer demand could quickly reverse sentiment. In a de‑escalation scenario, copper would likely outperform, supported by expectations of eventual rate cuts, a weaker dollar and a broader improvement in risk appetite.\n\nDownstream supply risks are also gaining attention. Sulfuric acid is emerging as a bottleneck for SX‑EW copper output, with around half of seaborne sulfur transiting the Strait of Hormuz. China’s sulfuric acid prices have risen around 90% since the start of the Iran war. Export bans introduced following the Hormuz shipping halt are raising disruption risks to acid-dependent supply in Chile, Peru and the Democratic Republic of the Congo.\n\nPositioning data points to improved sentiment. Speculators increased their bullish LME copper bets by 2,329 net‑long positions to 48,225, the most bullish stance in more than three months, according to weekly futures and options data.\n\nIn precious metals, gold remains supported amid renewed optimism around de‑escalation. The pullback in oil prices is easing some of the inflation concerns that weighed on prices earlier in the conflict. The move reflects a broader shift in market focus. While gold initially fell sharply as liquidity pressures forced selling, losses have since partially recovered as growth concerns have re‑emerged and price swings have become less extreme. While higher real rates, a firmer dollar, and profit-taking could weigh on near-term price action, recent pullbacks suggest underlying demand remains resilient.\n\nSource: ING"} +{"url": "https://sudanile.com/%D8%A7%D9%84%D8%A7%D9%82%D8%AA%D8%B5%D8%A7%D8%AF-%D8%A7%D9%84%D8%B3%D9%88%D8%AF%D8%A7%D9%86%D9%8A-%D9%81%D9%8A-%D8%B8%D9%84-%D8%AD%D8%B1%D8%A8%D9%8A%D9%86/", "title": "الاقتصاد السوداني في ظل حربين", "publish_date": "2026-04-16T12:32:28Z", "full_text": "شاركها Facebook\n\nTwitter\n\nالاقتصاد السوداني في ظل حربين\n\nالسلطة والموارد واستدامة الصراع\n\nمجتزأ من ورقة بحثية\n\no.sidahmed09@gmail.com\n\nعمر سيد احمد\n\nباحث في الاقتصاد السوداني — خبير مصرفي ومالي وتمويل مستقل\n\nأبريل ٢٠٢٦\n\nالسودان يمتلك أكبر إمكانات زراعية في أفريقيا — لكنه في هذه اللحظة بالذات بات في حاجة ماسة إلى من يُطعمه\n\nفي أبريل 2023، اندلعت في الخرطوم حرب لم تُبقِ شيئاً على حاله. انهارت المستشفيات، واحترقت الأسواق، وتحوّلت المدينة التي كانت تحتضن ثلث اقتصاد البلاد إلى ساحة معركة. لكن السودان لم يكتفِ بهذه الصدمة — ففي مطلع 2026، جاءته حرب ثانية من بعيد، حرب لم تُطلق رصاصة واحدة على أراضيه ومع ذلك ألقت بثقلها على كل مواطن وكل مزارع وكل تاجر: إنها توترات مضيق هرمز وحرب الخليج التي أشعلت أسعار الوقود وأطالت خطوط الإمداد وأرهقت فاتورة الاستيراد.\n\nبين هاتين الحربين، يجد السودان نفسه في موقع استثنائي من الهشاشة: يدفع كامل تبعات الأزمة الإقليمية دون أن يجني حبة واحدة من ارتفاع أسعار النفط. بل الأمر أكثر مفارقة: السودان محاط بأربع دول نفطية على حدوده — ليبيا وتشاد وجنوب السودان والسعودية — لكنه يستورد 80 إلى 90% من احتياجاته من الوقود. هذا ليس قدراً، بل نتيجة قرار سياسي واحد صدر عام 2011: انفصال جنوب السودان الذي أخذ معه 75% من الاحتياطيات النفطية المشتركة، فتحوّل السودان بين ليلة وضحاها من منتج إلى مستورد، دون أن يبني احتياطياً استراتيجياً، ولا طاقة تكريرية بديلة.\n\nقبل الحرب — إمكانات هائلة وجرح مفتوح\n\nكان المشهد قبيل أبريل 2023 يجمع بين نقيضين لا يُريح النظر إليهما معاً. على جهة النعمة: أكثر من 84 مليون هكتار صالح للزراعة، و110 مليون رأس من الثروة الحيوانية، و70% من صادرات الصمغ العربي عالمياً، واحتياطيات ذهبية مؤكدة تبلغ 533 طناً مع احتياطيات أخرى قيد التقييم تتجاوز 1,100 طن. بلد كان يُطعم نفسه وجيرانه، وتجري في أرضه ثروات قد يحسده عليها كثيرون.\n\nوعلى الجهة الأخرى: شمول مالي لا يتجاوز 7% من البالغين — أدنى من معظم دول أفريقيا جنوب الصحراء. اقتصاد يعتمد شبه كلياً على استيراد طاقته دون أي احتياطي استراتيجي. سعر صرف يقف عند 570 جنيهاً للدولار كاشفاً عن هشاشة نقدية مزمنة. والأخطر: منظومة الذهب خارج الدولة بنسبة 70%، ومنظومة النفط مشلولة، والأرض خصبة لكن المزارع لا يجد تمويلاً للموسم. لم تكن تلك هشاشة عارضة — بل كانت قنبلة موقوتة تنتظر الشرارة.\n\nفي 2022، كان سعر الدولار 570 جنيهاً. في أبريل 2026 أصبح 4,150 جنيهاً في السوق الموازي. هذا ليس انخفاضاً في قيمة العملة — هذا انهيار نظام.\n\nبعد الحرب — الانهيار الذي لا تحتمله الأرقام\n\nفي أقل من ثلاث سنوات، تحوّل اقتصاد هش إلى كارثة موثقة بالأرقام. انكمش الناتج المحلي بنسبة 37.5% في عام 2023 وحده وفق البنك الأفريقي للتنمية — رقم لم تشهده إلا دول تمر بحروب تدميرية شاملة أو كوارث طبيعية كبرى. وبحلول 2025، بلغ الانكماش التراكمي 42%، أي أن الاقتصاد السوداني فقد قرابة نصف حجمه في أقل من ثلاث سنوات.\n\nلكن الأرقام الكلية تبقى باردة إذا لم تُترجم إلى حياة بشرية: 4.6 مليون وظيفة اختفت، والبطالة قفزت من 32% عام 2022 إلى 58% عام 2024. 64% من السودانيين يعيشون اليوم في فقر مدقع — ارتفاعاً من 35% قبل الحرب. 8.8 مليون نازح داخلياً في أكبر أزمة نزوح يشهدها العالم. أكثر من 25 مليون شخص يعانون انعدام الأمن الغذائي الحاد. وأكثر من 150 ألف حالة وفاة مباشرة منذ اندلاع القتال.\n\nالسودان يمتلك أكثر من 200 مليون فدان) صالح للزراعة، لكن 41% من سكانه يعانون انعدام الأمن الغذائي و64% تحت حد الفقر. هذه ليست أزمة موارد — بل أزمة حوكمة وسلام\n\nوعلى صعيد البنية الاقتصادية، توقف أكثر من 60% من المصانع عن العمل. تراجع قطاع الخدمات بنسبة 43.2% والصناعة أكثر من 50%. انهار القطاع المصرفي إذ خرج 90 إلى 95% من الكتلة النقدية خارج الجهاز المصرفي، وغادرت أكثر من ستة بنوك أجنبية السوق وعاد بعضها بعد عامين والتضخم تجاوز 177% وفق صندوق النقد الدولي لعام 2024، في بيئة ركود تضخمي نادرة يجمع بين انكماش الإنتاج وارتفاع الأسعار في آنٍ واحد\n\nالصدمة الثانية — حين جاءت الحرب من البحر\n\nكانت تلك هي الحال حين فتح عام 2026 على توترات مضيق هرمز. يمر عبر هذا الممر الضيق ما يقارب 21 مليون برميل نفط يومياً — 21% من الاستهلاك العالمي. حين تضطرب سلاسل الإمداد عند هرمز، لا يكون السودان في القائمة الأولى للمتضررين في تصورات المحللين — لكنه في الواقع من أكثر الاقتصادات العالمية هشاشةً أمام هذه الصدمة، وذلك بالضبط لأنه جاء إلى هذه الأزمة منهكاً بالفعل.\n\nأقساط التأمين البحري على ناقلات النفط قفزت من 0.1–0.2% من قيمة السفينة إلى ما بين 0.5% و1% في ذروة الأزمة — ما يعادل إضافة مليون دولار لتكلفة رحلة الناقلة الواحدة. وأسعار الشحن على خطوط الخليج–البحر الأحمر ارتفعت 200 إلى 300% مقارنة بما قبل أزمة البحر الأحمر عام 2023. أما مسارات الشحن فقد تحوّلت عبر رأس الرجاء الصالح مضيفةً 10 إلى 14 يوماً لكل رحلة، وهو ما انعكس في تراجع البضائع العابرة عبر ميناء بورتسودان بأكثر من 30% في الربع الأول من 2026.\n\nسعر الجازولين في السودان بلغ 6,867 جنيهاً للتر في أبريل 2026. والديزل ليس هنا وقوداً للسيارات فحسب — بل المحرك الذي تدور حوله منظومة الإنتاج الزراعي كلها: مضخات الري، وآلات الحراثة، ونقل المحاصيل.\n\nإجمالي الزيادة في تكلفة وحدة الطاقة المستوردة جراء الأزمتين الداخلية والإقليمية معاً يتجاوز 1,200% مقارنة بما كان عليه الوضع قبيل أبريل 2023. بمعنى آخر: ما كان يكلف جنيهاً صار يكلف اثني عشر جنيهاً وأكثر\n\nالزراعة — حين يجوع المزارع في أخصب بقاع الأرض\n\nفي عالم عادل، يُفترض أن يكون السودان سلة غذاء للقارة. لكن الواقع في 2026 يقول شيئاً آخر تماماً: إنتاج الحبوب انخفض 46% عام 2023، وأسعار الغذاء ارتفعت 350% مقارنة بمتوسط السنوات الخمس الماضية. ويشير معهد بحوث السياسات الغذائية الدولية IFPRI إلى أن 7.5 مليون شخص إضافي قد ينضمون إلى صفوف الفقر في السيناريو المتطرف.\n\nمشروع الجزيرة — الذي يُنتج 50% من القمح السوداني و10% من الذرة، ويضم أكثر من 4,300 كيلومتر من شبكة القنوات — يمثل النموذج الأوضح للانهيار المتسلسل: تعطّل الري بسبب شُح الديزل، وانهار التمويل مع شلل البنك الزراعي السوداني، واستُولي على المحاصيل والأسمدة على نطاق واسع. وقفز سعر اليوريا من 490 دولاراً للطن قبل الحرب إلى نحو 700 دولار، مضاعفاً تكلفة الموسم الزراعي في وقت انهارت فيه القدرة التمويلية للمزارعين.\n\nأما الثروة الحيوانية التي كانت ركيزة صادرات البلاد بأكثر من 110 مليون رأس، فباتت تواجه ثلاثة تهديدات متزامنة: انعدام المسارات الرعوية التقليدية جراء الحرب، وعلقت إمدادات الأدوية البيطرية في مراكز الشحن الخليجية مُعرِّضةً القطيع لأوبئة قد تكون كارثية، وفقد ميناء بورتسودان قدرته على استقبال السفن الكبيرة. النتيجة: صادرات الثروة الحيوانية خسرت 55% من قيمتها منذ اندلاع الحرب.\n\nالذهب — أرض الثروة وخزينة الحرب\n\nكلمة “نوب” (NOB) في لغات النوبيين تعني الذهب. ومنها اشتُق اسم “نوبيا” — أرض الذهب. وقد شنّ الفراعنة حملات متكررة على هذه الأرض للسيطرة على مناجمها دون أن يُفلحوا في إخضاعها بالكامل. اليوم، لا تحتاج أرض الذهب إلى فراعنة خارجيين — فقواتها المتحاربة تنهبها بنفسها.\n\nالفجوة الإحصائية تكشف القصة بجلاء صادم: في الفترة من 2022 إلى 2024، ارتفع إنتاج الذهب من 34.5 طن إلى 65 طناً — زيادة 88%. وفي الوقت نفسه، ارتفعت أسعار الذهب العالمية أكثر من 30%. لكن العائدات الرسمية انخفضت من 2.02 مليار دولار إلى 1.6 مليار دولار. إنتاج أعلى، وأسعار أعلى، وعائدات أقل — لا تفسير لهذه المعادلة المعكوسة إلا تضخّم التهريب.\n\nتُقدَّر نسبة الذهب المُهرَّب بين 50% و70% من الإنتاج الفعلي سنوياً — وهو ما يعادل بأسعار الذهب اليوم ما بين 7.5 و10.5 مليارات دولار تتسرب سنوياً خارج الخزينة. والأكثر إيلاماً أن إجمالي الإنتاج المُعلَن البالغ 64.4 طناً عام 2024 تبلغ قيمته اليوم نحو 9.8 مليار دولار، في حين لم تحصّل الحكومة رسمياً سوى 1.6 مليار دولار، أي ما لا يتجاوز 16% من القيمة الحقيقية لإنتاجها المُعلَن وحده. فضلاً عن الإنتاج غير المُصرَّح به في مناطق الدعم السريع — الذي تُقدّره مؤسسات بحثية كـ SWISSAID وChatham House بما يرفع الإجمالي الفعلي إلى 80–90 طناً سنوياً، أي ما يعادل 12 إلى 13.7 مليار دولار بأسعار اليوم. هذه ليست فجوة إحصائية بل نزيف سيادي منظَّم — ثروة تكفي لإعادة بناء ما دمّرته الحرب تتسرب يومياً من خزينة الشعب إلى شبكات التهريب والمليشيات.\n\nأفرزت الحرب اقتصادَين ذهبيَّين متوازيَين لا يلتقيان: الجيش السوداني يسيطر على التعدين الصناعي في الشمال ونهر النيل والبحر الأحمر، ويُموّل عملياته جزئياً عبر تصدير الذهب إلى مصر ثم الإمارات، فضلاً عن صفقات مع روسيا سُدِّدت بالذهب مقابل السلاح. وقوات الدعم السريع تسيطر على التعدين الأهلي في دارفور وغرب كردفان، وتدير مناطقها عبر شركة الجنيد للأنشطة المتعددة، ومن بينها مصنع في سنقو بجنوب دارفور يُشغَّل بمشاركة روسية عبر أفريقا كوربس.\n\nهذه ليست مجرد أرقام اقتصادية — بل صورة بالغة الدلالة عن دولة تفككت: حين يصبح الذهب الوطني عملة الحرب الداخلية، ووسيلة الحصول على السلاح الخارجي، وأداة التمويل لميليشيات تقاتل في الأراضي السودانية نفسها — فإن السؤال لم يعد كيف تُحسَّن عائدات الذهب، بل كيف تستعيد الدولة سيادتها على مواردها. وفي أبريل 2026، يبلغ سعر الذهب 4,830 دولاراً للأونصة — أي 152 مليون دولار للطن. ثروة سودانية هائلة تذهب يومياً إلى مصافي الإمارات ومنظومات السلاح والمليشيات وجيوب الطفيليين وأثرياء الاقتصاد الموازي — بينما يموت السودانيون فوق أرضهم الذهبية فقراً وحرباً.\n\nسادساً: النفط والموارد — وقود الحرب لا الاقتصاد\n\nحقل هجليج في غرب كردفان كان قلب الإنتاج النفطي السوداني — يُنتج أكثر من 60% من إجمالي الإنتاج البالغ 65–70 ألف برميل يومياً قبل الحرب. سيطرت عليه قوات الدعم السريع في ديسمبر 2025 مُعلنةً إياه مصدراً لتمويل عملياتها، قبل أن يستعيده الجيش مطلع 2026 في معركة وصفها المحللون بأنها الأعنف منذ اندلاع الحرب. أما مصفاة الجيلي — بطاقة 100 ألف برميل يومياً تُغطّي 70% من الاستهلاك المحلي — فقد دُمِّرت شبه كامل بخسائر تجاوزت 3 مليارات دولار.\n\nالدرس الأعمق ليس في الأرقام — بل في المعادلة التي كشفتها الحرب: طرفا النزاع لا يُريدان وقف الموارد، بل يُريدان امتلاكها. طوّر كلاهما منظومة موازية للإيرادات تشمل بيع الوقود المُهرَّب وفرض رسوم عبور والتفاوض مع شركات أجنبية. النتيجة: لم يُؤدِّ تعطّل النفط إلى الضغط نحو التسوية، بل أعاد تشكيل اقتصاد الحرب بآليات أكثر مرونة وخطورة.\n\nالصمغ العربي — سلعة يستحوذ السودان على 70% من إنتاجها العالمي — لم تسلم هي الأخرى. كشف تقرير أممي عام 2025 أن 14.6 مليون دولار من الصمغ المنهوب وُظِّفت لتمويل أنشطة قوات الدعم السريع في ستة أشهر فحسب، فيما بلغت خسائر تجارته الرسمية 200 مليون دولار حتى مطلع 2025. ويبدو المشهد الكلي صورة واحدة متماسكة المعنى: كل مورد يمتلكه السودان — ذهب، نفط، صمغ، ثروة حيوانية — تحوّل إلى وقود لحرب تأكله من الداخل.\n\nسابعاً: الجنيه والمصارف — حين تتفكك الثقة\n\nانهيار الجنيه لا يمكن اختزاله في عامل واحد. صحيح أن استيراد الوقود أصبح أحد أهم المحركات المباشرة للطلب على الدولار — إذ تحوّل السودان بعد تدمير مصفاة الجيلي إلى دولة تستورد 80 إلى 90% من مشتقاتها النفطية في توقيت عالمي شديد التعقيد. لكن الوقود يظل جزءاً من صورة أوسع وأعمق.\n\nالصورة الكاملة: واردات تقارب 9.9 مليار دولار مقابل صادرات لا تتجاوز 3 إلى 4 مليارات — فجوة هيكلية مزمنة. وعائدات الذهب تتسرب عبر قنوات الأسواق الموازية بنسبة 70 إلى 80%. والبنك المركزي يموّل العجز بالإصدار النقدي مُشعلاً تضخماً يتجاوز 200%. والثقة في العملة الوطنية انهارت كلياً — دفعت الأفراد والتجار والمؤسسات إلى الدولار ملاذاً وحيداً لحفظ الثروة.\n\nوفي القطاع المصرفي، الصورة لا تقل قتامة: أصول البنوك السودانية لا تتجاوز 12 مليار دولار — أي 20% من الناتج المحلي، مقارنة بـ470 مليار دولار في مصر (70% من الناتج). الشمول المالي 7% من البالغين، في مقابل 83% في كينيا و64% في مصر. نسبة القروض المتعثرة تجاوزت 21%. ونسبة القروض إلى الودائع قفزت من 68% عام 2022 إلى 183.6% بحلول 2025 — رقم يعني ببساطة أن البنوك باتت تُقرض من مال لا تمتلكه.\n\nحين يخرج 95% من النقد خارج الجهاز المصرفي، لا يعني ذلك أن الناس فقراء فحسب — بل يعني أن الدولة فقدت رؤية اقتصادها وقدرتها على توجيهه.\n\nثامناً: المغتربون والمساعدات — الشرايين المقطوعة\n\nكان المغتربون السودانيون — أكثر من مليونين في دول الخليج وحدها، وخمسة ملايين في بقية أنحاء العالم — يشكّلون الشريان الأهم خارج الدولة: تحويلاتهم تمثل ما بين 7.6% و15% من الناتج المحلي الإجمالي، وهي في كثير من الأحيان الفارق بين العيش والجوع لملايين الأسر. لكن حرب الخليج جاءت لتقطع هذا الشريان أيضاً: أكثر من 220 ألف عامل أُعيدوا من منطقة الخليج خلال مارس 2026 وحده.\n\nوفيما يتعلق بالمساعدات الإنسانية، وثّقت منظمة Think Global Health أن ما يزيد على 600 ألف دولار من الأدوية الأساسية المخصصة لـ90 مرفقاً صحياً علقت في دبي جراء إغلاق المطار. واضطر برنامج الغذاء العالمي إلى تحويل شحنات من المكملات الغذائية عبر رأس الرجاء الصالح. ولم يُموَّل سوى 21% من نداء الأمم المتحدة الإنساني لعام 2025، في حين قلّصت الدول المانحة ميزانياتها الإنسانية 40% مقارنة بعام 2024.\n\nتاسعاً: مسارات النهضة — إذا جاء السلام\n\nثمة جملة لافتة في صميم أي تحليل جاد للوضع السوداني: كل توصية اقتصادية في هذا المقال — دون استثناء — مشروطة بوقف الحرب. هذا ليس كلاماً خطابياً، بل حقيقة رياضية: لا يمكن استعادة الإنتاج الزراعي في ظل معارك تُهجّر المزارعين، ولا إعادة تشغيل مصفاة الجيلي في ظل قصف متواصل، ولا إعادة الثقة في الجهاز المصرفي في ظل اقتصاد حرب يستوعب 90% من النشاط الموازي.\n\nالذهب: من وقود الحرب إلى رافعة النهضة\n\nإذا جاء السلام، فإن الذهب يمثل نقطة الانطلاق الأجدى والأسرع. المطلوب ثلاث مراحل متتابعة:\n\n• أولاً: استعادة الولاية المؤسسية للدولة على كل الموارد المعدنية — بإلغاء تراخيص الجهات النظامية، ونشر عقود الامتياز علناً، وإنشاء سجل وطني إلكتروني شفاف.\n\n• ثانياً: ضبط السوق وتجفيف التهريب عبر بورصة سودانية للذهب ومراكز شراء متنقلة في مناطق التعدين بأسعار تنافسية تُقلّص الفارق الذي يُغذي التهريب.\n\n• ثالثاً: أدوات سيادية لتحويل الذهب إلى ثروة وطنية: سبيكة سيادية على غرار التجربة التركية، وسندات ذهبية مضمونة تستهدف المغتربين والمستثمرين الإقليميين، ومدينة ذهب سودانية تُكرِّر المعدن محلياً بدلاً من تصدير الخام لمصافي الخليج.\n\nالزراعة: الثروة النائمة\n\nمفارقة أن تمتلك أخصب أرض في أفريقيا وتستورد 80% من قمحك. استراتيجية النهضة الزراعية تبدأ بخطوة واحدة عاجلة: إعادة تشغيل مشروع الجزيرة الذي يُنتج نصف القمح السوداني. ثم تليها خطوات بنيوية: تأمين الديزل والأسمدة، وإصلاح البنك الزراعي المشلول، وتوطين إنتاج البذور تدريجياً. والأهم على المدى البعيد: التحول من تصدير الخام إلى التصدير المُصنَّع — الذهب يُكرَّر محلياً، والصمغ العربي يُحوَّل صناعياً، والثروة الحيوانية تتحول إلى صناعات لحوم وألبان وجلود.\n\nعقد اجتماعي جديد\n\nلكن الإصلاح الاقتصادي وحده لا يكفي. الجذر الحقيقي للأزمة ليس اقتصادياً في جوهره — بل هو أزمة سلطة وموارد وعدالة. إعادة بناء السودان تستلزم عقداً اجتماعياً جديداً يقوم على خمسة أركان:\n\n• عدالة انتقالية تحاسب من نهبوا الموارد العامة\n\n• مشاركة وطنية شاملة تضمن تمثيل كل مكونات السودان\n\n• توزيع عادل لعائدات الموارد بين الأقاليم والمركز يعالج الجذر الاقتصادي للصراع\n\n• حوكمة رشيدة تفكك شبكات الاقتصاد الموازي\n\n• إصلاح منظومتَي التعليم والصحة بوصفهما استثماراً في رأس المال البشري لا ترفاً\n\nدروس من العالم\n\nلا تقرأ هذه الأزمة في فراغ. رواندا خرجت من إبادة جماعية عام 1994 راح ضحيتها مليون شخص، لتحقق نمواً متوسطه 8% سنوياً لعقدين وتتحول إلى مركز إقليمي للتكنولوجيا — بفضل العدالة الانتقالية والرؤية الوطنية الواضحة. وفيتنام تحوّلت من دولة تستورد الأرز إلى ثاني أكبر مُصدِّر له في العالم بعد إصلاح زراعي جذري عام 1986 يُمكِّن صغار المزارعين. وألمانيا نهضت من دمار الحرب العالمية الثانية خلال عقدين بفضل الدعم الدولي والإصلاح النقدي الجذري والتركيز على الصناعات التحويلية.\n\nالقاسم المشترك في هذه التجارب ليس الثروة الطبيعية — بل القرار السياسي بتحويل تلك الثروة إلى استثمار في الإنسان والمؤسسة. والسودان يمتلك من الموارد الطبيعية ما يفوق رواندا وفيتنام معاً. ما ينقصه هو السلام والإرادة والرؤية.\n\nخاتمة: الثروة في خزينة الشعب\n\nفي عام 2026، تجاوزت أسعار الذهب العالمية 4,800 دولار للأونصة — وللطن الواحد 152 مليون دولار. والسودان يمتلك 533 طناً من الاحتياطيات المؤكدة مع أكثر من 1,100 طن قيد التقييم. وينتج 65 طناً سنوياً من الذهب. وتحت أراضيه مزيد من الذهب والنفط والمعادن. وفوق أراضيه أخصب أرض في القارة. وفي سمائه مطر يُروي 84 مليون هكتار.\n\nكل هذا حاضر. لكن 64% من السودانيين يعيشون في فقر مدقع. و8.8 مليون نازح داخلياً. و25 مليون يعانون انعدام الأمن الغذائي. وجنيه انهار من 570 إلى 4,150 للدولار. والذهب يُهرَّب بنسبة 70 إلى 80% خارج الحدود — تبلغ قيمته بأسعار اليوم ما بين 7.5 و10.5 مليارات دولار سنوياً. وموارد البلاد تُحوَّل يومياً إلى ذخيرة ووقود للحرب.\n\nهذه المفارقة الصارخة بين ثروة الأرض وفقر أهلها ليست قدراً — بل هي نتيجة خيارات سياسية وحروب متعمدة ونهب ممنهج. وبالقدر ذاته، فإن تجاوزها ممكن — حين يتوقف القتال، وتعود الدولة إلى الدولة، والثروة إلى أصحابها.\n\n★ السودان يمتلك من الذهب ما يكفي لإعادة بناء ما دمّرته الحرب. شريطة أن يُعاد توجيهه من خزينة المليشيات إلى خزينة الشعب.\n\nالسودان لا يحتاج إلى مساعدة مؤقتة — بل إلى سلام دائم يُعيد للموارد وظيفتها الإنتاجية بدلاً من أن تكون وقوداً للحرب.\n\nمصادر ومراجع رئيسية\n\n• البنك الدولي — Sudan Economic Monitor, Spring 2024\n\n• صندوق النقد الدولي — World Economic Outlook, April 2025 & 2026\n\n• البنك الأفريقي للتنمية — Macroeconomic Performance and Outlook 2024\n\n• منظمة الأغذية والزراعة (FAO) — تقرير السودان، مارس 2025\n\n• برنامج الغذاء العالمي (WFP) — تقارير الطوارئ 2025\n\n• لجنة خبراء الأمم المتحدة بشأن السودان — تقرير 2024\n\n• Chatham House — Gold and the War in Sudan, March 2025\n\n• SWISSAID / African Gold Report — Sudan Gold Report 2024–2025\n\n• وكالة الطاقة الدولية (IEA) — Oil Market Report Q1 2026\n\n• UNCTAD — Maritime Transport Report, Red Sea Disruptions, Q1 2026\n\n• JM Bullion / Fortune — Gold Spot Price April 15, 2026: $4,830/oz (~$152,180/kg)\n\nمقال مجتزأ من ورقة بحثية *\n\nعمر سيد أحمد | o.sidahmed09@gmail.com | أبريل ٢٠٢٦"} +{"url": "https://www.capital.gr/agores/3985670/xrimatistirio-epilektikes-kiniseis-kai-auximeni-metablitotita/", "title": "Χρηματιστήριο : Επιλεκτικές κινήσεις και αυξημένη μεταβλητότητα", "publish_date": "2026-04-16T12:32:28Z", "full_text": "ΤΕΛΕΥΤΑΙΑ ΕΝΗΜΕΡΩΣΗ 14:10\n\nτου Μάνου Χαχλαδάκη\n\nΣυντηρείται το θετικό κλίμα στην αγορά της Αθήνας που δείχνει διάθεση να κινηθεί για τρίτη ημέρα ανοδικά, αν και με χαμηλούς ρυθμούς εν μέσω της αυξημένης μεταβλητότητας που χαρακτηρίζει τις συναλλαγές.\n\nΕιδικότερα, ο Γενικός Δείκτης βρέθηκε έως και τις 2.311 μονάδες (+0,96%) αλλά πλέον διαπραγματεύεται στις 2.294 μονάδες με μικρά κέρδη 0,2% και τον τζίρο στα 145 εκατ. ευρώ, ενώ έχουν διακινηθεί 23 εκατ. τεμάχια.\n\nΟ τραπεζικός δείκτης βρέθηκε να ενισχύεται έως και κατά 1,3% (2.707 μον.) αλλά πλέον έχει γυρίσει ελαφρώς αρνητικός στις 2.668 μονάδες, ο FTSE της υψηλής κεφαλαιοποίησης σημειώνει άνοδο κατά 0,2% στις 5.840 μον. και ο FTSEM της μεσαίας στις 2.822 μον. με +0,4%\n\nΟυσιαστικά η συνεδρίαση δείχνει να εξελίσσεται σε διελκυστίνδα μεταξύ ορισμένων blue chips που διαφοροποιούνται έντονα θετικά, πρωτίστως της Metlen αλλά και των ΓΕΚ ΤΕΡΝΑ, Λάμδα και Aegean και από την άλλη πλευρά των τραπεζών, που έχασαν το αρχικό τους μομέντουμ και σταδιακά περνάνε σε αρνητικό έδαφος - πιθανώς και από το βάρος του profit taking που προκαλεί το ράλι 5,6% της Τρίτης.\n\nΚατά τα άλλα, η συνεδρίαση ξεκίνησε με κεκτημένη ταχύτητα από χθες (FTSEM +1,5%) για τα mid caps αλλά στην πορεία επήλθε επίσης κάποια εξισορρόπηση, με εμφανές και εδώ το χαρακτήρα stock picking στις τοποθετήσεις.\n\nΓενικότερα πάντως, το θετικό κλίμα διατηρείται στις αγορές διεθνώς καθώς οι επενδυτές δείχνουν να προεξοφλούν θετική έκβαση στις διαπραγματεύσεις ΗΠΑ - Ιράν.\n\nΕνδεικτικό είναι ότι στην Wall Street, αφότου μάζεψαν όλες τις απώλειες του πολέμου, οι S&P 500 και Nasdaq κατέγραψαν χθες νέα ιστορικά υψηλά (+0,8% και +1,6% αντίστοιχα), με τον πρόεδρο Τραμπ να επαναλαμβάνει ότι \"ο πόλεμος είναι πολύ κοντά στο να τελειώσει\" και αξιωματούχους του Λευκού Οίκου να αναφέρουν ότι σχεδιάζεται ένας νέος, δεύτερος, γύρος διαπραγματεύσεων.\n\nΣτην Ευρώπη οι κινήσεις είναι μάλλον πιο συγκρατημένες, αν και οι δείκτες σήμερα δείχνουν διάθεση να επιστρέψουν σε θετικό έδαφος μετά την ήπια οπισθοχώρηση χθες, κυρίως υπό το βάρος της πτώσης του κλάδου πολυτελείας που δέχθηκε σημαντικό πλήγμα από τον πόλεμο.\n\nΟι κινήσεις στο ταμπλό\n\nΗ Metlen επιχειρεί σταθερά από το άνοιγμα να δώσει ώθηση στον ΓΔ με εντολές έως τα 36,9 ευρώ (+4,1%).\n\nΙσχυρή άνοδο 2,4% καταγράφουν επίσης η ΓΕΚ ΤΕΡΝΑ που ανακτά τα 40 ευρώ και η Λάμδα στα 6,3 με την Aegean να ακολουθεί από κοντά στα 13,4 με +2%.\n\nΣτις τράπεζες είναι εξαιρετικά έντονη η κινητικότητα στην Πειραιώς που έχει κάνει τζίρο ήδη άνω των 42 εκατ. μόνη της (το 1/4 της συνεδρίασης) αλλά με αισθητή μεταβλητότητα - από τα 8,63 ευρώ (+1,4%) έως τα 8,48 (-0,4%) - ενώ επί του παρόντος βρίσκεται πέριξ του αμετάβλητου.\n\nΗ Alpha κινείται σταθερά ανοδικά με +0,5%, ενώ η ΕΤΕ και η Eurobank υποχωρούν ελαφρώς κατά 0,3%.\n\nΣημειώνεται ότι οι συστημικές έλαβαν ακόμα μία ψήφο εμπιστοσύνης, από την Euroxx που ανέβασε τις τιμές - στόχους κάνοντας λόγο για ευκαιρία για αγορά ενός σημαντικού story ανάπτυξης.\n\nΕκτός ΔΤΡ, η Credia κινείται δυναμικά στις παρυφές του 1,20 με +1,9%.\n\nΟι επιλογές των πωλητών στον 25άρη εστιάζουν κυρίως στις ΔΕΗ και Coca Cola αμφότερες περί του -0,9%.\n\nΣτα mid caps ξεχωρίζει πλέον το ράλι 4% του ΟΛΘ με ιδιαίτερα υψηλό τζίρο άνω των 640 χιλ. ευρώ όλα στο ταμπλό, αφότου ανακοίνωσε νέο ιστορικό υψηλό σε έσοδα και κερδοφορία το 2025.\n\nΗ Alter Ego ενισχύεται επίσης κατά 3% και η Qualco κατά 2%.\n\nΣτον αντίποδα, η Intralot έχει περάσει σε αρνητικό έδαφος στα 1,03 με -0,7%.\n\nΣτο σύνολο το ταμπλό 75 τίτλοι κινούνται ανοδικά, έναντι 50 πτωτικών.\n\nΗ εικόνα διεθνώς\n\nΠεριορισμένες είναι οι διακυμάνσεις των τιμών του πετρελαίου που πλέον κινούνται χαμηλότερα των 100 δολαρίων το βαρέλι. Το Brent στα 95,7 δολ. με +0,8% σήμερα και το αμερικανικό WTI στα 91,7 δολ. με +0,4%.\n\nΣταθεροποιητικές τάσεις δείχνει και το ευρωπαϊκό φυσικό αέριο που κινείται στα 41,7 ευρώ η μεγαβατώρα με +0,7%.\n\nΣτις μετοχές, τα συμβόλαια των δεικτών της Wall Street κινούνται ελαφρώς ανοδικά με την τεχνολογία να διατηρεί προβάδισμα, μετά τα ρεκόρ χθες (S&P 500, Nasdaq).\n\nΤα futures του Dow Jones στο +0,1%, του S&P 500 στο +0,1% και του Nasdaq στο +0,2%.\n\nΉπια ανοδική είναι η τάση και στην Ευρώπη. Ο γερμανικός DAX στο +0,5%, ο γαλλικός CAC 40 στο +0,5%, ο βρετανικός FTSE 100 στο +0,6%, ο ιταλικός FTSE MIB στο +0,35%, ο ισπανικός IBEX 35 στο +0,2% και η πανευρωπαϊκή υψηλή κεφαλαιοποίηση του Stoxx 50 στο +0,4%.\n\nΟι αγοραστές έχουν προβάδισμα και στην αγορά ομολόγων, με τις αποδόσεις να υποχωρούν ως εκ τούτου. Του δεκαετούς ΗΠΑ στο 4,27%, του γερμανικού τίτλου στο 3,01% και του γαλλικού στο 3,65%, με τον ελληνικό στο 3,75%.\n\nΤέλος, ελαφρώς ανοδική είναι η τάση και στα μέταλλα, ο χρυσός στα 4.848 δολάρια η ουγγιά με +0,5% και το ασήμι στα 80,4 δολ. με +1%."} +{"url": "https://www.newratings.de/du/main/company_headline.m?nid=19666857", "title": "newratings . de", "publish_date": "2026-04-16T12:32:28Z", "full_text": "IRW-News: Formation Metals Inc.: Formation Metals durchteuft 1,8 g/t Au auf 21,9 m, östlich von 1,75 g/t Au auf 30,4 m auf fortgeschrittenem Goldprojekt N2: Bohrungen bestätigen Beständigkeit von 300 m innerhalb von 5 km entlang von mineralisiertem Strei\n\n13:14\n\nIRW-PRESS: Formation Metals Inc.: Formation Metals durchteuft 1,8 g/t Au auf 21,9 m, östlich von 1,75 g/t Au auf 30,4 m auf fortgeschrittenem Goldprojekt N2: Bohrungen bestätigen Beständigkeit von 300 m innerhalb von 5 km entlang von mineralisiertem Streichen\n\nHöhepunkte:\n\n- N2-25-004: 0,83 g/t Au auf 40,4 m, beginnend in einer Bohrlochtiefe von 180,0 m, 147,4 m vertikal.\n\n- N2-25-006: 1,8 g/t Au auf 21,9 m, beginnend in einer Bohrlochtiefe von 154,4 m, 133,7 m vertikal.\n\n- N2-25-009: 1,37 g/t Au auf 24,0 m, beginnend in einer Bohrlochtiefe von 168,9 m, 146,3 m vertikal.\n\n- N2-25-004, -006 und -009 bestätigen die strukturelle Beständigkeit sowie die Beständigkeit der Gehalte auf einer Streichlänge von 300 m, bauen auf N2-25-007, -008 und -010 auf, die 0,95 g/t Au auf 61,1 m enthielten, und befinden sich neigungsabwärts von 1,75 g/t Au auf 30,4 m in N2-25-005.\n\n- Angesichts dieser Ergebnisse geht das Unternehmen davon aus, dass die A-Zone ein solides mineralisiertes Erzgangsystem beherbergt, das zwischen 20 und 61 m schwankt, mindestens 100 m breit ist und sich über eine Streichlänge von 1,5 km erstreckt. Die A-Zone ist nach wie vor in mehrere Richtungen offen, insbesondere entlang des Streichens (Ost-West) und neigungsabwärts bzw. in die Tiefe (Süden) innerhalb eines 5 km langen strukturellen Korridors, der bereits bebohrt wurde und sich als mineralisiert erwiesen hat.\n\n- Bis dato wurden 48 Bohrlöcher auf insgesamt 15.291 m abgeschlossen, wobei die Analyseergebnisse für 35 Bohrlöcher noch ausstehend sind, was für das gesamte zweite Quartal eine kontinuierliche Reihe bevorstehender Katalysatoren verheißt.\n\n- Das Unternehmen verfügt über ein Working Capital von etwa 10,5 Millionen CAD und ist schuldenfrei.\n\nVancouver, British Columbia / 16. April 2026 / IRW-Press / Formation Metals Inc. (Formation oder das Unternehmen) (CSE: FOMO) (FWB: VF1) (OTCQB: FOMTF), ein nordamerikanisches Mineralakquisitions- und Explorationsunternehmen, freut sich, die Ergebnisse der Bohrungen N2-25-001, N2-25-002, N2-25-003, N2-25-004, N2-25-006 und N2-25-009 bekannt zu geben, die im Rahmen seines laufenden, vollständig finanzierten 30.000-Meter-Bohrprogramms in seinem Vorzeige-Goldkonzessionsgebiet N2 (N2 oder das Konzessionsgebiet) niedergebracht wurden.\n\nDas 25 km südlich von Matagami (Quebec) gelegene Konzessionsgebiet N2 beherbergt eine globale historische Ressource von ca. 871.000 Unzen, bestehend aus 18 Mio. Tonnen Gestein mit einem Gehalt von 1,4 g/t Au (ca. 810.000 Unzen Au) in vier Zonen (A, Ost, RJ-East und Central)2,3 und 243.000 Tonnen Gestein mit einem Gehalt von 7,82 g/t Au (ca. 61.000 Unzen Au) in der Zone RJ2,4.\n\nDas laufende Bohrprogramm des Unternehmens hat die Erwartungen übertroffen und die geologische Beständigkeit bestätigt, wobei in den Bohrlöchern N2-25-004, N2-25-006 und N2-25-009 solide und durchgehende Goldabschnitte erzielt wurden, die folgende bedeutsame Abschnitte identifizierten:\n\n- N2-25-004: 0,83 g/t Au auf 40,4 m, beginnend in einer Bohrlochtiefe von 180,0 m, 147,4 m vertikal Das bedeutsamste Intervall beinhaltet 1,36 g/t Au auf 9,0 m mit einem Gesamtmetallindex von 38,48.\n\n- N2-25-006: 1,8 g/t Au auf 21,9 m, beginnend in einer Bohrlochtiefe von 154,4 m, 133,7 m vertikal Das bedeutsamste Intervall beinhaltet 3,4 g/t Au auf 4,8 m mit einem Gesamtmetallindex von 79,56.\n\n- N2-25-009: 1,37 g/t Au auf 24,0 m, beginnend in einer Bohrlochtiefe von 168,9 m, 146,3 m vertikal Das bedeutsamste Intervall beinhaltet 2,05 g/t Au auf 13,3 m mit einem Gesamtmetallindex von 81,89.\n\nEine vergleichende Analyse zeigt eine starke Übereinstimmung zwischen dem Phase-1-Datensatz und den historischen Bohrungen auf über 55.000 m, was wesentliche Geologie- und Bergbauparameter bestätigt und das Vertrauen in die bestehende Datenbank stärkt.\n\nDeepak Varshney, CEO von Formation Metals, sagte: Die Ergebnisse von Phase 1 übertreffen weiterhin unsere Erwartungen, wobei N2-25-004, N2-25-006 und N2-25-009 zeigen, dass die A-Zone ein bedeutsames Tagebauziel darstellt. Die Ergebnisse bestätigen weiterhin die historischen Bohrungen auf über 55.000 m, wobei die Bohrungen nicht nur die historischen Erkenntnisse hinsichtlich Lithologie, Mineralisierung, Alteration, Erzgänge und struktureller Merkmale bestätigen, sondern auch eine höhere Konsistenz, längere goldhaltige Mischproben sowie wertvollere Mineralisierungsprofile liefern, was das Konzept einer Tagebaulagerstätte bei N2 untermauert.\n\nhttps://www.irw-press.at/prcom/images/messages/2026/83798/FormationMetals_160426_DEPRCOM.001.jpeg\n\nAbbildung 1 - Standorte der Bohrlöcher von 2025 (A-Zone), Phase 1.\n\nDie Bohrungen wurden so konzipiert, dass sie auf Mineralisierungen in verschiedenen Horizonten südlich und unterhalb von N2-25-005 und N2-25-012 abzielen (siehe Pressemitteilung vom 12. Februar 2026), wo das Unternehmen die folgenden mächtigen, kontinuierlichen, oberflächennahen Abschnitte identifiziert hat:\n\n- N2-25-005: 0,91 g/t Au über 42,3 Meter ab 14,0 Metern Bohrlochtiefe, 9,9 Meter vertikale Tiefe. Zu den herausragenden Abschnitten zählen 8,1 Meter mit 2,04 g/t Au bzw. 11,4 Meter mit 1,31 g/t Au mit einem Gesamtmetallindex von 38,36.\n\n- N2-25-012: 1,75 g/t Au über 30,4 Meter ab 64,1 Metern Bohrlochtiefe, 45,3 Meter vertikale Tiefe. Zu den herausragenden Abschnitten zählen 10,5 Meter mit 3,51 g/t Au bzw. 0,51 Meter mit 19,2 g/t Au mit einem Gesamtmetallindex von 62,43.\n\nDiese Bohrlöcher wurden auch konzipiert, um die westliche Erweiterung des Streichens des durch die Bohrlöcher N2-25-007, N2-25-008 und N2-25-010 (siehe Pressemitteilung vom 24. Februar 2026) ermittelten mineralisierten Horizonts zu testen, wo das Unternehmen die folgenden zusätzlichen mächtigen, soliden oberflächennahen Abschnitte identifiziert hat:\n\n- N2-25-007: 1,3 g/t Au über 22,2 Meter, beginnend bei 139,9 Metern Bohrlochtiefe, 121,2 Meter vertikal. Der hervorgehobene Abschnitt umfasst 2,36 g/t Au über 10,5 Meter mit einem Gesamtmetallindex von 51,07.\n\n- N2-25-008: 0,95 g/t Au über 61,1 Meter, beginnend bei 109 Metern Bohrlochtiefe, 94,4 Meter vertikal. Der hervorgehobene Abschnitt umfasst 1,68 g/t Au über 26,5 Meter mit einem Gesamtmetallindex von 67,97.\n\n- N2-25-010: 1,43 g/t Au über 19,4 Meter, beginnend bei 117,5 Metern Bohrlochtiefe, 101,8 Meter vertikal. Der hervorgehobene Abschnitt umfasst 2,23 g/t Au über 7,0 Meter mit einem Gesamtmetallindex von 38,49.\n\nDer Abstand von etwa 55 m zwischen den Bohrlöchern N2-25-004, N2-25-006 und N2-25-009 bestätigt die Beständigkeit eines bedeutsamen Bulk-Tonnage-Systems in der Tiefe. Diese Ergebnisse validieren historische Bohrdaten, stärken das Vertrauen in das geologische 3D-Modell und verringern das technische Risiko für die bevorstehenden Erschließungsphasen.\n\nDie geologische Interpretation, die auf der Beständigkeit des Streichens der Mineralisierung zwischen den beiden Bohrlochsätzen (N2-25-007, N2-25-008 und N2-25-010 sowie N2-25-004, N2-25-006 und N2-25-009) basiert, lässt einen konsistenten, 300 m langen goldhaltigen Korridor erkennen. Dieser Abschnitt weist stark auf beträchtliches Bulk-Tonnage-Potenzial in Oberflächennähe entlang einer Streichlänge von 8 km hin.\n\nDiese Bohrlochreihe bestätigte insbesondere nicht nur die Beständigkeit der primären Zielerzgänge, sondern durchschnitt auch parallel verlaufende, sekundäre und tertiäre Erzgangsysteme, wodurch das potenzielle mineralisierte Profil oberhalb und unterhalb der Hauptzone erheblich erweitert wurde, wo N2-25-004 0,4 g/t Au auf 4,6 m und 0,41 g/t Au auf 4,0 m oberhalb, N2-25-006 0,66 g/t Au auf 38,6 m oberhalb und 0,67 g/t Au auf 22,2 m unterhalb durchteufte und N2-25-009 0,61 g/t Au auf 42,1 m oberhalb und 0,96 g/t Au auf 21,7 m unterhalb durchteufte. Die identifizierte Beständigkeit dieser Bohrlochreihen über eine Strecke von 300 m mit Erweiterungspotenzial über die gesamte Streichlänge von 8 km würde erhebliche positive Auswirkungen auf einen zukünftigen Tagebau haben, wobei sich der potenzielle Abbaubereich deutlich auf eine gesamte mineralisierte Mächtigkeit von bis zu etwa 93 m in der Tiefe des Bohrlochs und eine Mächtigkeit von etwa 100 m erweitern würde.\n\nBis dato hat Formation ein Phase-1-Programm mit 46 Bohrlöchern auf insgesamt 14.466 m erfolgreich abgeschlossen. Da die Analyseergebnisse für 39 Bohrlöcher zurzeit noch ausstehend sind, erwarten wir einen kontinuierlichen Nachrichtenfluss, der als primärer Bewertungskatalysator wirken wird, wobei die Bohrungen voraussichtlich Ende Mai fortgesetzt werden.\n\nDeepak Varshney, CEO von Formation Metals, sagte außerdem: Da die historische Ressource eine Streichlänge von nur 1,5 km im nördlichen Korridor umfasst, haben wir über 6 km auf einem Projekt zu bohren, auf dem wir nun nachgewiesen haben, dass die Hauptzone mindestens 20 m mächtig und etwa 95 m breit ist. Über die Bestätigung der durchgehenden Beständigkeit unseres Hauptziels hinaus sind diese Bohrergebnisse insofern von großer Bedeutung, als sie übereinanderliegende oder parallel verlaufende, sekundäre und tertiäre Erzgangsysteme verdeutlichen, die den potenziellen mineralisierten Bereich erheblich erweitern und unseren Spielraum für ein umfassendes, mehrere Erzgänge umfassendes Abbaukonzept vergrößern.\n\nSollte sich diese Beständigkeit über die gesamte Streichlänge von 8 km erstrecken, steht uns eine erhebliche Erweiterung des potenziellen Tagebaugebiets bevor - möglicherweise auf eine Mächtigkeit von etwa 93 m und eine Breite von 100 m in der Tiefe des Bohrlochs. Die vergleichende Analyse unserer jüngsten Phase-1-Bohrungen mit historischen Daten hat unsere Erwartungen übertroffen und eine starke Übereinstimmung sowohl hinsichtlich der geologischen Struktur als auch des Mineralisierungsgehalts aufgezeigt. Diese hohe Wiederholbarkeit validiert unser geologisches Modell und belegt die erhebliche Beständigkeit der Lagerstätte.\n\nDas 15.000 Meter umfassende Bohrprogramm der Phase 1 von Formation ist konzipiert für:\n\n\n\nAdvertisement\n\n- Steigerung des Vertrauensniveaus und Konversion der Ressource: Schließen oberflächennaher Lücken, um das Vertrauensniveau der oberflächennahen Mineralisierung zu steigern.\n\n- Ressourcenwachstum: Überprüfung von Erweiterungen in Fallrichtung und Step-outs im Streichen sowohl nach Osten als auch nach Westen über die historischen Ressourcengrenzen hinaus.\n\n- Metallurgie: Entnahme repräsentativer Bohrkerne zur Bestätigung der metallurgischen Reaktion und Validierung der Gewinnungsraten.\n\nDa die vollständige Finanzierung gesichert ist, treibt Formation ein 30.000 m umfassendes Bohrprogramm voran, dessen Schwerpunkt auf der Abgrenzung einer oberflächennahen Tagebauressource liegt, um eine beträchtliche Tonnage aufzubauen und die Wirtschaftlichkeit des Projekts zu verbessern. Der Schwerpunkt der Explorationsarbeiten liegt zurzeit darauf, das Potenzial eines 8 km langen Korridors zu erschließen, wobei zwei Bohrgeräte in den Zonen A und RJ im Einsatz sind. Der Abschluss dieser Phase-1-Bohrungen wird zur Veröffentlichung einer ersten Mineralressourcenschätzung (MRE) im dritten Quartal führen.\n\nIn den kommenden Monaten plant das Unternehmen ein fokussiertes und vielversprechendes Explorationsprogramm bei N2, das die vielfältigen Möglichkeiten des Projekts widerspiegelt und nachhaltige, disziplinierte Explorationsaktivitäten über die aktuelle Bohrphase hinaus unterstützt.\n\nTabelle 1 - Bedeutende Abschnitte aus der A-Zone: N2-25-004, N2-25-006 und N2-25-009\n\nBohrloch-Nr. Au (g/t) Von Bis Länge (m) Metallindex\n\nN2-25-004 1,03 14,3 15,6 1,3 1,34\n\n0,41 77,0 79,5 2,5 1,03\n\n0,29 96,0 102,1 6,1 1,77\n\n0,4 129,0 133,6 4,6 1,84\n\n0,29 145,5 148,2 2,7 0,78\n\n0,83 180,0 220,4 40,4 33,53\n\neinschließlich 1,36 180,0 189,0 9\n\nund 1,08 195,3 202,2 6,9\n\nund 1,18 210,0 220,4 10,4\n\nN2-25-006 0,66 69,4 108,0 38,6 25,48\n\neinschließlich 8,85 87,0 88,1 1,1\n\nund 3,66 104,2 106,2 2\n\n1,8 154,4 175,5 21,1 37,98\n\neinschließlich 3,6 154,4 159,2 4,8\n\nund 1,34 161,0 166,7 5,7\n\nund 2,41 168,0 173,0 5\n\n1,6 197,6 199,3 1,7 2,72\n\n0,67 231,0 253,1 22,1 14,81\n\neinschließlich 1,01 231,0 234,1 3,1\n\nund 1,1 243,0 249,8 6,8\n\nN2-25-009 0,61 86,7 128,8 42,1 25,74\n\neinschließlich 1,04 113,3 126,7 13,4\n\n0,34 156,5 159,4 2,9 0,99\n\n1,37 168,9 192,9 24,0 32,88\n\neinschließlich 2,05 177,8 191,1 13,3\n\nund 3,02 177,8 181,1 3,3\n\nund 4,02 185,5 186,7 1,2\n\n2,23 198,7 199,8 1,1 2,45\n\n0,96 207,8 231,0 23,2 22,27\n\neinschließlich 2,98 207,8 211,8 4,0\n\nTabelle 2 - Bedeutende Abschnitte aus der RJ-Zone: N2-25-001, N2-25-002 und N2-25-003\n\nBohrloch-Nr. Au (g/t) Von Bis Länge (m) Metallindex\n\nN2-25-001 0,23 261,7 268,3 6,6 1,52\n\neinschließlich 1,28 266,5 267,1 0,6\n\n0,11 271,5 281,7 10,2 1,12\n\nN2-25-002 0,24 98,5 102 3,5 0,84\n\neinschließlich 1,58 99,3 99,8 0,5\n\n0,34 183,1 207,5 24,4 8,30\n\neinschließlich 0,89 183,1 187,9 4,8\n\nund 1,54 186,0 187,9 1,9\n\nund 0,3 196,6 208,5 11,9\n\n0,54 289,3 290,3 1,0 0,54\n\nN2-25-003 3,0 23,1 27,6 4,5 13,50\n\neinschließlich 14,06 23,1 24 0,9\n\n0,6 52,9 64,7 11,8 7,08\n\neinschließlich 1,28 59,6 63,7 4,1\n\n0,76 110 112 2,0 1,52\n\nAnmerkung 1: Die dargestellten Mineralisierungsabschnitte sind nicht direkt repräsentativ für die wahre Mächtigkeit. Basierend auf der Interpretation des Abschnittswinkels entspricht die geschätzte wahre Mächtigkeit der mineralisierten Linse im Allgemeinen 87 % der erbohrten Kernlänge.\n\nAnmerkung 2: Die gemeldeten Abschnitte wurden unter Verwendung eines Mindestgehalts von 0,2 g/t Au für höhergradige Abschnitte zusammengesetzt.\n\nTabelle 3 - Informationen zu den Bohrlöchern von Zone-A\n\nTabelle 4 - Informationen zu den Bohrlöchern von Zone-RJ\n\nÜberblick über das Projekt\n\nDas Vorzeige-Goldprojekt N2 von Formation umfasst 87 Claims mit einer Gesamtfläche von ca. 4.400 ha in der Subprovinz Abitibi im Nordwesten von Quebec und ist ein fortgeschrittenes Goldprojekt mit einer umfassenden historischen Ressource von ca. 871.000 Unzen - bestehend aus 18 Mio. Tonnen mit einem Gehalt von 1,4 g/t Au (ca. 810.000 Unzen Au)2,3 sowie 243.000 Tonnen mit einem Gehalt von 7,82 g/t Au (ca. 61.000 Unzen Au)2.\n\nInsgesamt gibt es sechs primäre goldhaltige mineralisierte Zonen, die jeweils in Streichrichtung und in der Tiefe erweiterbar sind. Die von Balmoral Resources Ltd. (jetzt Wallbridge Mining) von 2010 bis 2018 durchgeführten Zusammenstellungen und geophysikalischen Arbeiten lieferten zahlreiche Ziele, die derzeit erstmals von Formation mit Diamantbohrungen untersucht werden.\n\nZu den historischen Highlights der beiden vorrangigen Zonen gehören:\n\n- Zone A: eine oberflächennahe, sehr beständige, wenig variierende historische Goldlagerstätte mit ca. 522.900 Unzen, die bei einem Gehalt von 1,52 g/t Au identifiziert wurde. In der Vergangenheit wurden über 1,65 km Streichlänge etwa 15.000 Bohrmeter niedergebracht. 84 % der historischen Bohrungen durchteuften goldhaltige Abschnitte mit bis zu 1,7 g/t Au über 35 m.\n\n- Zone RJ: eine hochgradige historische Goldlagerstätte mit ca. 61.100 Unzen, die bei einem Gehalt von 7,82 g/t Au identifiziert wurde, mit hochgradigen Abschnitten aus historischen Bohrungen von bis zu 51 g/t Au über 0,8 m und 16,5 g/t Au über 3,5 m2. Diese Zone war das Ziel der letzten Bohrungen auf dem Konzessionsgebiet durch Agnico-Eagle Mines im Jahr 2008, als der Goldpreis bei ca. 800 US$/Unze lag. Bislang wurden nur ca. 900 m der Streichlänge bebohrt, sodass noch mehr als 4,75 Kilometer der Streichlänge zu erkunden sind.\n\nDie interne Einschätzung des Unternehmens lautet, dass das Projekt N2 das Potenzial für eine mögliche Tagebauressource hat. Dieser Optimismus basiert auf mehreren wesentlichen Faktoren:\n\n- Beträchtliche unerschlossene Streichlänge: Allein die Zone A weist eine Streichlänge von über 3,1 km auf (nur etwa 35 % davon wurden in der Vergangenheit bebohrt), während in der Zone RJ noch über 4,75 km unerprobt sind, was erheblichen Spielraum für eine seitliche Erweiterung der bekannten Mineralisierung bietet.\n\n- Offen in der Tiefe und entlang des Streichens: Alle Zonen sind weiterhin offen, da die bisherigen Bohrungen auf geringe Tiefen (etwa 350 m) beschränkt waren, sodass in einem bewährten Goldlager beträchtliches vertikales Potenzial besteht.\n\n- Mächtige, beständige oberflächennahe Abschnitte: Jüngste Bohrungen haben mächtige Zonen (100 bis über 200 m) der Zielmineralisierung bestätigt, die in Oberflächennähe beginnen und ideal für Tagebauszenarien mit großen Tonnagen, geringen Abraumverhältnissen und hohem Tonnagenpotenzial sind.\n\n- Regionale Analogie und Herkunft: N2 befindet sich im Abschnitt Casa Berardi, der mehrere Lagerstätten mit mehreren Millionen Unzen beherbergt (z. B. Casa Berardi: über 2 Mio. Unzen produziert sowie wahrscheinliche und nachgewiesene Reserven von 14,3 Mio. Tonnen mit 2,75 g/t Au; Douay: Ressourcen von über 3 Mio. Unzen (10 Mio. Tonnen mit 1,59 g/t Au in der Kategorie angedeutet und 76,7 Mio. Tonnen mit 1,02 g/t Au in der Kategorie vermutet), und weist ähnliche geologische und strukturelle Merkmale auf. Die nahe gelegene Mine Vezza produzierte aus höhergradigem Untertagebau, doch die oberflächennäheren, mächtigeren Zonen von N2 lassen auf eine überlegene Wirtschaftlichkeit des Tagebaus schließen.\n\n- Unerprobte Ziele: Bei der Zusammenstellung der Daten wurden zahlreiche geophysikalische Anomalien (IP, EM, VTEM) identifiziert, die noch nicht bebohrt wurden und über die bekannten Zonen hinaus Entdeckungspotenzial aufweisen.\n\n- Steigende Goldpreise und wirtschaftliche Machbarkeit: Bei den aktuellen Goldpreisen werden niedriggradigere Lagerstätten mit großen Tonnagen äußerst attraktiv, was das Potenzial des Projekts erhöht.\n\nDieser erstklassige Standort in einer strategisch günstigen Lage, 25 km südlich der Bergbaustadt Matagami (Quebec), bietet ganzjährigen Zugang über Provinzstraßen und Holzabfuhrstraßen sowie die Nähe zu qualifizierten Arbeitskräften, Energieinfrastruktur und etablierten Bergbaudienstleistungen in einer Jurisdiktion, die für ihre frühere Goldproduktion von über 200 Mio. Unzen bekannt ist. Das Projekt liegt entlang des Minenabschnitts Casa Berardi, der Goldlagerstätten mit mehreren Millionen Unzen beherbergt, und befindet sich etwa 1,5 km östlich der vormals produzierenden Goldmine Vezza, die zwischen 2013 und 2019 von Nottaway Resources betrieben wurde und über 100.000 Unzen Gold im Untertagebau förderte.\n\nDie robuste Infrastruktur der Region bietet Möglichkeiten für die Lohnvermahlung, mit potenziellem Zugang zu nahe gelegenen Verarbeitungsanlagen wie jenen bei Casa Berardi oder anderen Mühlen in Abitibi, was eine kostengünstige Erschließung ohne die Errichtung einer eigenen Mühle am Standort ermöglicht.\n\nhttps://www.irw-press.at/prcom/images/messages/2026/83798/FormationMetals_160426_DEPRCOM.002.jpeg\n\nAbbildung 3 - Historische Bohrlochstandorte. Formation geht davon aus, dass im Konzessionsgebiet N2 eine Streichlänge von über 15 km zu erkunden ist.\n\nhttps://www.irw-press.at/prcom/images/messages/2026/83798/FormationMetals_160426_DEPRCOM.003.jpeg\n\nAbbildung 4 - Das Konzessionsgebiet im Überblick mit einer Zusammenfassung der historischen Arbeiten, die in jeder der sechs mineralisierten Zonen durchgeführt wurden, und den jeweiligen historischen Ressourcen.\n\nDas Unternehmen ist außerdem der Ansicht, dass N2 ein erhebliches Potenzial für Basismetalle aufweist. In diesem Zusammenhang hat es kürzlich einen Neubewertungsprozess abgeschlossen, der bedeutende Kupfer- und Zinkabschnitte in historischen Bohrungen zeigte, von denen bekannt ist, dass sie bedeutende Goldgehalte (>1 g/t Au) aufweisen. Die Analyseergebnisse reichen von 200 bis 4.750 ppm Kupfer und von 203 ppm bis 6.700 ppm Zink, was auf ein starkes Potenzial für erhöhte Basismetallkonzentrationen (Cu-Zn) im gesamten Konzessionsgebiet hinweist, insbesondere in den Zonen A und RJ. Die geologische Beschaffenheit des gesamten Konzessionsgebiets N2 ist durch vulkanische und sedimentäre Gesteine gekennzeichnet, die sich in regionalen Antiklinal- und Synklinalstrukturen gebildet haben. Drei Hauptdeformationsstrukturen, die entlang der bekannten von Nordwest nach Südost bis Westnordwest nach Ostsüdost verlaufenden Strukturtrends ausgerichtet sind, die für VMS-Lagerstätten in der Region Matagami typisch sind, fungieren als kritische geologische Kontrollen für die Mineralisierung im Konzessionsgebiet.\n\nQualifizierter Sachverständiger\n\nDer technische Inhalt dieser Pressemitteilung wurde von Herrn Babak V. Azar, P.Geo., géo (OGQ#10876), einem unabhängigen Auftragnehmer und qualifizierten Sachverständigen im Sinne der Vorschrift National Instrument 43-101, geprüft und genehmigt. Die vom Optionsgeber vorgelegten historischen Berichte wurden vom qualifizierten Sachverständigen geprüft.\n\nQualitätssicherung und Qualitätskontrolle\n\nDie Qualitätssicherungs- und Qualitätskontrollprotokolle umfassten die Hinzugabe von Leer- und Standardproben (von Canadian Resource Laboratories akkreditiert) im Schnitt alle 10 Proben während des Analyseprozesses. Die Goldanalyse erfolgte mittels Brandprobe (FA) mit abschließendem Atomabsorptions- und ICP-Verfahren an 50 Gramm Material in den Einrichtungen von Laboratoire Expert Inc. in Rouyn-Noranda, Quebec, Kanada, und AGAT Laboratories Ltd. in Val d'Or, Quebec, Kanada. Jede Probe mit einem Gehalt von 10,0 g/t Gold oder mehr wurde nochmals anhand FA analysiert gefolgt von einer gravimetrischen Untersuchung. Die Proben, die eine große Variation ihres Goldgehalts aufwiesen oder sichtbares Gold enthielten, wurden einer Gesamtgoldanalyse (metallische Siebung) unterzogen.\n\nÜber Formation Metals Inc.\n\nFormation Metals Inc. ist ein nordamerikanisches Mineralakquisitions- und -explorationsunternehmen, das sich auf die Entwicklung hochwertiger, bohrbereiter Konzessionsgebiete mit hohem Wertschöpfungs- und Expansionspotenzial konzentriert. Das Vorzeigeprojekt von Formation ist das Goldprojekt N2, ein fortgeschrittenes Goldprojekt mit einer umfassenden historischen Ressource von ca. 871.000 Unzen (18 Mio. Tonnen mit 1,4 g/t Au (ca. 810.000 Unzen Au) in vier Zonen (A, East, RJ-East und Central)2, 3 und 243.000 Tonnen mit 7,82 g/t Au (ca. 61.000 Unzen Au) in der Zone RJ2, 4) und sechs mineralisierten Zonen, die jeweils entlang des Streichens und in der Tiefe für eine Erweiterung offen sind. Dazu gehören die Zone A, in der nur etwa 35 % des Streichens bebohrt wurden (>3,1 km offen), und die Zone RJ, in der historische hochgradige Abschnitte mit bis zu 51 g/t Au auf 0,8 Metern vorkommen.\n\nFORMATION METALS INC.\n\nDeepak Varshney, CEO und Direktor\n\nNähere Informationen erhalten Sie unter der Rufnummer 778-899-1780, per E-Mail an dvarshney@formationmetalsinc.com oder unter www.formationmetalsinc.com.\n\nDie Canadian Securities Exchange und ihr Regulierungsorgan übernehmen keine Verantwortung für die Angemessenheit oder Genauigkeit dieser Mitteilung.\n\nHinweise und Quellennachweis:\n\n1. Leser werden darauf hingewiesen, dass die Geologie benachbarter Konzessionsgebiete nicht unbedingt Rückschlüsse auf die Geologie des Konzessionsgebiets zulässt.\n\n2. Die oben genannten Ressourcenschätzungen sind nicht in Kategorien eingestuft, gelten als historisch und basieren auf früheren Daten, die von einem früheren Konzessionseigentümer erfasst wurden und nicht den aktuellen CIM-Kategorien entsprechen.\n\nDas Unternehmen hält die Schätzungen zwar für grundsätzlich zuverlässig, jedoch hat ein qualifizierter Sachverständiger keine ausreichenden Arbeiten durchgeführt, um die historischen Schätzungen gemäß den aktuellen CIM-Kategorien als aktuelle Mineralressourcen zu klassifizieren, und das Unternehmen behandelt die historischen Schätzungen daher nicht als aktuelle Mineralressourcen. Bei der Erstellung der historischen Schätzungen wurde ein Cutoff-Gehalt von 0,5 g/t Au bei einer Mindestabbaubreite von 2,5 m zugrunde gelegt.\n\nBevor die historischen Schätzungen als aktuelle Ressourcen klassifiziert werden können, müssen möglicherweise umfangreiche Datenzusammenstellungen, erneute Bohrungen, erneute Probenahmen und Datenüberprüfungen durch einen qualifizierten Sachverständigen durchgeführt werden. Es kann nicht garantiert werden, dass die historischen Mineralressourcen, weder ganz noch teilweise, jemals wirtschaftlich nutzbar sein werden. Darüber hinaus sind Mineralressourcen keine Mineralreserven und ihre wirtschaftliche Nutzbarkeit ist nicht nachgewiesen. Dem Unternehmen sind keine neueren Schätzungen für das Konzessionsgebiet N2 bekannt.\n\n3. Needham, B. (1994), 1993 Diamond Drill Report, Northway Joint Venture, Northway Property; Cypress Canada Inc.; 492 Seiten.\n\n4. Guy K. (1991), Exploration Summary May 1, 1990 to May 1, 1991 Vezza Joint Venture Northway Property; Total Energold; 227 Seiten.\n\nZukunftsgerichtete Aussagen:\n\nDiese Pressemitteilung enthält zukunftsgerichtete Aussagen gemäß den geltenden kanadischen Wertpapiergesetzen, einschließlich, aber nicht beschränkt auf Aussagen zu: den Plänen des Unternehmens für das Konzessionsgebiet und dem voraussichtlichen Zeitplan und Umfang des Bohrprogramms auf dem Konzessionsgebiet; und dem geplanten 30.000-Meter-Bohrprogramm des Unternehmens. Solche zukunftsgerichteten Informationen spiegeln die aktuellen Einschätzungen des Managements wider und basieren auf einer Reihe von Schätzungen und/oder Annahmen sowie Informationen, die dem Unternehmen derzeit zur Verfügung stehen und die zwar als angemessen erachtet werden, jedoch bekannten und unbekannten Risiken, Ungewissheiten und anderen Faktoren unterliegen, die dazu führen können, dass die tatsächlichen Ergebnisse und zukünftigen Ereignisse wesentlich von den in solchen zukunftsgerichteten Aussagen ausgedrückten oder implizierten Ergebnissen abweichen. Leser werden darauf hingewiesen, dass solche zukunftsgerichteten Aussagen weder Versprechen noch Garantien darstellen und bekannten und unbekannten Risiken und Unsicherheiten unterworfen sind, einschließlich, aber nicht beschränkt auf allgemeine geschäftliche, wirtschaftliche, wettbewerbsbezogene, politische und soziale Unsicherheiten, ungewisse und volatile Aktien- und Kapitalmärkte, Mangel an verfügbarem Kapital, tatsächliche Ergebnisse von Explorationsaktivitäten, Umweltrisiken, zukünftige Preise für Basis- und andere Metalle, Betriebsrisiken, Unfälle, Arbeitsprobleme, Verzögerungen bei der Erlangung behördlicher Genehmigungen und Zulassungen sowie andere Risiken in der Bergbauindustrie.\n\nDas Unternehmen befindet sich derzeit in der Explorationsphase. Die Exploration ist von Natur aus hochspekulativ, mit vielen Risiken verbunden, erfordert erhebliche Ausgaben und führt möglicherweise nicht zur Entdeckung von Minerallagerstätten, die rentabel abgebaut werden können. Darüber hinaus verfügt das Unternehmen derzeit über keine Reserven auf seinen Konzessionsgebieten. Daher kann nicht garantiert werden, dass sich solche zukunftsgerichteten Aussagen als zutreffend erweisen, und die tatsächlichen Ergebnisse und zukünftigen Ereignisse können erheblich von den in solchen Aussagen erwarteten abweichen.\n\nHinweis/Disclaimer zur Übersetzung (inkl. KI-Unterstützung): Die Originalmeldung in der Ausgangssprache (in der Regel Englisch) ist die einzige maßgebliche, autorisierte und rechtsverbindliche Fassung. Diese deutschsprachige Übersetzung/Zusammenfassung dient ausschließlich der leichteren Verständlichkeit und kann gekürzt oder redaktionell verdichtet sein. Die Übersetzung kann ganz oder teilweise mithilfe maschineller Übersetzung bzw. generativer KI (Large Language Models) erfolgt sein und wurde redaktionell geprüft; trotzdem können Fehler, Auslassungen oder Sinnverschiebungen auftreten. Es wird keine Gewähr für Richtigkeit, Vollständigkeit, Aktualität oder Angemessenheit übernommen; Haftungsansprüche sind ausgeschlossen (auch bei Fahrlässigkeit), maßgeblich ist stets die Originalfassung. Diese Mitteilung stellt weder eine Kauf- noch eine Verkaufsempfehlung dar und ersetzt keine rechtliche, steuerliche oder finanzielle Beratung. Bitte beachten Sie die englische Originalmeldung bzw. die offiziellen Unterlagen auf www.sedarplus.ca, www.sec.gov, www.asx.com.au oder auf der Website des Emittenten; bei Abweichungen gilt ausschließlich das Original.\n\nDie englische Originalmeldung finden Sie unter folgendem Link:\n\nhttps://www.irw-press.at/press_html.aspx?messageID=83798\n\nDie übersetzte Meldung finden Sie unter folgendem Link:\n\nhttps://www.irw-press.at/press_html.aspx?messageID=83798&tr=1\n\nNEWSLETTER REGISTRIERUNG:
\n\nAktuelle Pressemeldungen dieses Unternehmens direkt in Ihr Postfach:\n\nhttp://www.irw-press.com/alert_subscription.php?lang=de&isin=CA34638F1053\n\nMitteilung übermittelt durch IRW-Press.com. Für den Inhalt ist der Aussender verantwortlich.\n\nKostenloser Abdruck mit Quellenangabe erlaubt.\n\nFüllen Sie das untere Feld aus und senden Sie ein Nachricht an Ihre Freunde, Familie oder Kollegen! E-Mails Ihre E-Mail:\n\nDie E-Mail des Freundes:\n\nDie fett-markierten Felder sind obligatorisch. Die u nterstrichenen Buchstaben sind Zugangsschlüssel.\n\n\n\n"} diff --git a/Data/1_Bronze_Raw/News_Scrapes/2026-04-16/Full_text/full_text_macro_central_banks.jsonl b/Data/1_Bronze_Raw/News_Scrapes/2026-04-16/Full_text/full_text_macro_central_banks.jsonl new file mode 100644 index 0000000..f6656e4 --- /dev/null +++ b/Data/1_Bronze_Raw/News_Scrapes/2026-04-16/Full_text/full_text_macro_central_banks.jsonl @@ -0,0 +1,9 @@ +{"url": "https://edition.cnn.com/2026/04/16/economy/powell-fed-trump-interest-rates", "title": "Trump own actions against Powell and the Fed are working against him", "publish_date": "2026-04-16T12:28:19Z", "full_text": "Washington —\n\nPresident Donald Trump just can’t get what he wants from the Federal Reserve.\n\nTrump has long pounded the table for rate cuts and has wanted Fed Chair Jerome Powell out for years. But Trump’s own actions over the past year have made those two outcomes far less likely.\n\nTrump…\n\nintroduced a slew of massive tariffs, pushing up inflation.\n\nwent to war with Iran, spiking energy prices worldwide.\n\npublicly backed a criminal probe into Powell that a federal judge has described as “pretextual.”\n\nthreatened to fire Powell next month if he doesn’t step aside when his stint as Fed chair ends.\n\nis trying to fire Fed Governor Lisa Cook over unsubstantiated allegations.\n\nA livestream shows Powell speaking on the floor of the New York Stock Exchange on March 18, 2026. Angela Weiss/AFP/Getty Images\n\nNow, there’s a growing chance that the US central bank may not just delay a rate cut but may hike rates instead, particularly if the price spikes stemming from the US-Israeli war with Iran prove to be long lasting.\n\nTrump’s efforts throughout his second term have only prompted central bankers to take pause and put any rate cuts on the back burner as they wait for things to play out — an approach that even Treasury Secretary Scott Bessent recently said he agrees with.\n\nThe president’s attacks and threats on Fed policymakers themselves are also backfiring.\n\nHolding off on rate cuts\n\nFor Fed officials to lower interest rates, they must be confident that inflation is slowing and is on track to their 2% goal. That had been the case right before Trump’s second term began last January.\n\nThen Trump rolled out a confusing patchwork of tariffs last year that jacked up inflation on various goods (and he still isn’t done with his tariff spree, promising to raise duties across the board to get back to the effective tariff rate from before the Supreme Court’s ruling that struck down certain tariffs). That prompted Fed officials to adopt a wait-and-see posture, holding off on any rate moves until they delivered three consecutive cuts at the end of last year.\n\nPeople shop at a local supermarket in New York City on April 9, 2026. Charly Triballeau/AFP/Getty Images\n\nA customer puts fuel in his vehicle at a gas station on April 6, 2026, in Miami, Florida. Joe Raedle/Getty Images\n\nFed officials are now more worried about the war that began with joint US-Israeli attacks on Iran in late February. The conflict has led to a weekslong closure of the Strait of Hormuz, a key global trade passage. About 20% of the world’s oil supply, along with other key commodities, passes through the critical waterway.\n\nThe war with Iran drove up monthly US inflation threefold in March, according to the latest Consumer Price Index report.\n\nAt the Fed’s March meeting, Powell had said the war’s effects would likely be temporary. Now, less than a month later, the world’s cargo ships still aren’t flowing freely through the strait and Fed officials aren’t considering interest rate cuts anytime soon.\n\n“My baseline is that we’re going to remain on hold for a good while,” Cleveland Fed President Beth Hammack, one of the four regional Fed presidents with voting power this year, said Wednesday in an interview with CNBC.\n\nTrump’s attempts to push out Fed officials are failing\n\nSo far, Trump’s efforts to push out Fed officials haven’t been successful, and ironically, they may keep Powell in place for longer.\n\nPowell has resisted engaging with Trump over the president’s repeated threats to fire him, limiting his response to reminders that such a move would be illegal.\n\nFiring Powell could have two serious consequences for Trump: doing so would not sit well with financial markets and the decision may get held up for a long time in the courts. Powell last month said the law dictates that the current Fed head remains in the role as chair “pro tempore” if the Senate hasn’t confirmed a successor by the end of his term.\n\nPowell in Washington, DC, on January 13, 2026. The Fed chair has resisted engaging with Trump's repeated threats to fire him, limiting his response to reminders that such a move would be illegal. Chip Somodevilla/Getty Images\n\n“President Trump’s threats of firing Chair Powell are hardly surprising but are simply not consistent with what the law provides,” Skanda Amarnath, executive director at Employ America and a former economist at the Federal Reserve Bank of New York, said in a statement on Wednesday.\n\nLast year, Trump and his allies seized on the Fed’s renovation to its headquarters in Washington, DC, to put pressure on Powell, claiming the cost overruns were evidence of mismanagement. The Fed explained that some of the higher costs were due to unforeseen issues, such as asbestos and a high water table.\n\nBut that didn’t stop DC US Attorney Jeanine Pirro from serving Powell a pair of subpoenas to investigate testimony he gave to Congress last over on the renovation. Powell revealed the investigation in an extraordinary video rebuke, calling it out as a “pretext” to pressure the Fed.\n\nThe Federal Reserve renovation site on January 14, 2026, in Washington, DC. Trump and his allies had seized on the renovation last year, claiming the cost overruns were evidence of mismanagement. Alex Wong/Getty Images\n\nThe courts have been siding with Powell. A federal judge last month quashed a pair of subpoenas served to Powell by Pirro’s office, later reaffirming that ruling after Pirro requested the judge reconsider. In a statement to CNN, Pirro signaled she has no intention of abandoning the investigation. Her office also confirmed to CNN that her deputies were denied access to the Fed’s headquarters earlier this week, after showing up unannounced in order to view the renovation project.\n\nPirro has said she plans to appeal to the DC Circuit of Appeals, but her insistence with continuing the probe is precisely what is stalling Trump’s nomination of Warsh: Sen. Thom Tillis of North Carolina, a senior Republican on the Senate Banking Committee, reiterated this week that he won’t vote to confirm Warsh unless the probe into Powell is dropped.\n\nIt also appears likely that the president will lose his Supreme Court case against Fed Governor Lisa Cook, whom he tried to fire in August over allegations that she committed mortgage fraud. The Justice Department has been investigating the allegations but still hasn’t announced any charges against Cook.\n\n“The President already appears to be losing in court in his attempt to fire Governor Lisa Cook and he will likely lose again if he tries to fire Chair Powell,” Amarnath said.\n\nIn the end, Trump’s war on the Fed may end up costing him the very result he is demanding."} +{"url": "https://www.finanznachrichten.de/nachrichten-2026-04/68216751-eur-jpy-gibt-leicht-nach-da-die-hoehere-inflation-in-der-eurozone-den-fokus-auf-ezb-signale-verlagert-545.htm", "title": "EUR / JPY gibt leicht nach , da die höhere Inflation in der Eurozone den Fokus auf EZB - Signale verlagert", "publish_date": "2026-04-16T12:28:19Z", "full_text": "Die Eskalation im Iran-Konflikt hat die Energiepreise mit voller Wucht nach oben getrieben. Was zunächst nach einer kurzfristigen Reaktion aussah, entwickelt sich zunehmend zu einem strukturellen Problem: Die Straße von Hormus ist blockiert, wichtige LNG- und Ölanlagen stehen still oder werden gezielt angegriffen. Eine schnelle Entspannung ist nicht in Sicht – im Gegenteil, die Lage spitzt sich weiter zu.\n\n\n\nFür die Weltwirtschaft bedeutet dies wachsende Risiken. Steigende Energiepreise erhöhen den Inflationsdruck, gefährden Zinssenkungen und bringen die ohnehin hoch bewerteten Aktienmärkte ins Wanken. Doch wo Risiken entstehen, ergeben sich auch Chancen.\n\n\n\nDenn von einem dauerhaft höheren Energiepreisniveau profitieren nicht nur Öl- und Gasunternehmen. Auch Versorger, erneuerbare Energien sowie ausgewählte Rohstoff- und Agrarwerte rücken in den Fokus. In diesem Umfeld könnten gezielt ausgewählte Unternehmen überdurchschnittlich profitieren – unabhängig davon, ob die Krise anhält oder nicht.\n\n\n\nIn unserem aktuellen Spezialreport stellen wir drei Aktien vor, die genau dieses Profil erfüllen: Krisenprofiteure mit solidem Geschäftsmodell, attraktiver Bewertung und langfristigem Potenzial.\n\n\n\nJetzt den kostenlosen Report sichern – und Ihr Depot auf den Energiepreisschock vorbereiten!"} +{"url": "https://dantri.com.vn/kinh-doanh/chu-tich-chung-khoan-rong-viet-noi-ve-moi-quan-he-voi-kido-foods-20260416175340107.htm", "title": "Chủ tịch Chứng khoán Rồng Việt nói về mối quan hệ với KIDO Foods", "publish_date": "2026-04-16T12:28:19Z", "full_text": "Chiều ngày 16/4, Công ty cổ phần Chứng khoán Rồng Việt (VDSC, mã chứng khoán: VDS) đã tổ chức kỳ họp cổ đông 2026, thông qua kế hoạch kinh doanh cũng như chia sẻ với cổ đông về các vấn đề liên quan cổ đông lớn KIDO Foods, việc vay vốn trong bối cảnh lãi suất tăng cao…\n\nCổ đông mới KIDO Foods đang nắm giữ 26 triệu cổ phiếu, tương đương tỷ lệ sở hữu 9,56% vốn tại Chứng khoán Rồng Việt. Trong thời gian chứng khoán biến động từ đầu năm, công ty này đã liên tục mua vào cổ phiếu VDS để tăng sở hữu.\n\nÔng Nguyễn Miên Tuấn - Chủ tịch HĐQT Công ty cổ phần Chứng khoán Rồng Việt (Ảnh: BTC).\n\nChia sẻ về nhóm cổ đông này, Chủ tịch Hội đồng quản trị (HĐQT) Chứng khoán Rồng Việt Nguyễn Miên Tuấn khẳng định KIDO Foods là cổ đông lâu năm, đồng thời có định hướng gắn bó lâu dài với công ty. Bên cạnh việc nắm giữ cổ phần, nhóm này cũng hỗ trợ công ty về nguồn lực tài chính, góp phần củng cố nền tảng vốn và hoạt động kinh doanh.\n\nKIDO Foods trước kia là công ty thực phẩm thuộc Tập đoàn KIDO nhưng phía tập đoàn đã chuyển nhượng 51% vốn cho Nutifood từ năm 2024. Cuối năm 2025, KIDO thông báo sẽ chuyển nhượng tiếp 49% vốn còn lại tại công ty này cho Nutifood.\n\nCái khó của Chứng khoán Rồng Việt\n\nLiên quan đến tình hình lãi suất, lãnh đạo công ty cho biết mặt bằng lãi suất đang được điều chỉnh giảm sau thời gian tăng trưởng nóng là tín hiệu đáng mừng.\n\nKhác với những công ty chứng khoán khác, Rồng Việt không có ngân hàng hậu thuẫn phía sau.\n\n“Đây là một trong những cái khó khăn của chúng tôi. Do đó, công ty luôn chú trọng kiểm soát tài chính và sử dụng vốn hiệu quả. Trong năm nay, công ty tiếp tục đặt mục tiêu nâng dư nợ cho vay ký quỹ để đóng góp vào doanh thu. Để làm được điều này, công ty kỳ vọng gia tăng hoạt động cho vay theo các thương vụ (deal)”, ông Tuấn nói.\n\nVị này kể, 5 năm qua công ty đã tăng cường năng lực tài chính và cải thiện hiệu quả hoạt động, với chỉ số ROE được nâng lên. Nhờ đó, số lượng cổ đông cũng gia tăng, đạt khoảng 12.000 cổ đông vào cuối năm 2025. Công ty kỳ vọng sẽ tiếp tục thu hút thêm đối tác trong thời gian tới để củng cố nguồn lực tài chính. Lãnh đạo công ty còn kỳ vọng việc nâng hạng giúp Việt Nam thu hút thêm nhà đầu tư nước ngoài, qua đó tạo động lực cho thị trường.\n\nQuý I lỗ 30 tỷ đồng, chủ yếu do tự doanh\n\nCổ đông chất vấn lãnh đạo tại đại hội (Ảnh: BTC).\n\nVề kinh doanh, năm 2026 doanh nghiệp đề ra mục tiêu doanh thu khoảng 1.318 tỷ đồng và lợi nhuận sau thuế khoảng 408 tỷ đồng, tương ứng tăng trưởng lần lượt khoảng 20% và 45% so với năm trước.\n\nBên cạnh đó, công ty trình cổ đông phương án tăng vốn điều lệ từ 2.720 tỷ đồng lên 4.500 tỷ đồng thông qua phát hành tối đa 178 triệu cổ phiếu, dự kiến huy động khoảng 1.444 tỷ đồng. Nguồn vốn này chủ yếu được sử dụng cho hoạt động cho vay ký quỹ, bên cạnh đầu tư tự doanh và các mảng kinh doanh khác.\n\nTrong quý I, công ty ước tính doanh thu đạt khoảng 200 tỷ đồng. Tuy nhiên, lợi nhuận thu về âm khoảng 30 tỷ đồng.\n\nNguyên nhân chính khiến công ty thua lỗ đến từ việc phải tăng trích lập dự phòng cho danh mục tự doanh trong bối cảnh thị trường chứng khoán diễn biến kém tích cực giai đoạn đầu năm. Cùng với đó, các yếu tố bên ngoài như biến động địa chính trị, xung đột Trung Đông cùng tâm lý thận trọng của nhà đầu tư đã ảnh hưởng đáng kể đến hiệu quả đầu tư.\n\nBan lãnh đạo cho biết thêm, thị trường năm nay dự kiến đối mặt với nhiều áp lực, trong đó có mặt bằng lãi suất gia tăng. Dù vậy, Rồng Việt đánh giá vẫn còn dư địa tăng trưởng nhờ các yếu tố như mục tiêu tăng trưởng GDP, dòng vốn ngoại và triển vọng lợi nhuận của doanh nghiệp."} +{"url": "https://www.thehindubusinessline.com/markets/gold/gold-silver-prices-rise-on-weak-dollar-geopolitical-cues-analysts-see-near-term-volatility/article70868399.ece", "title": "Why gold , silver are rising on weak dollar & geopolitical tensions ? ", "publish_date": "2026-04-16T12:28:19Z", "full_text": "Gold and silver prices moved higher in Thursday’s trade, ahead of Akshaya Tritiya, supported by a weaker US dollar, geopolitical uncertainty and shifting expectations around global interest rates. The uptick comes even as global equity markets remained firm, reflecting a mix of risk-on sentiment and safe-haven demand.\n\nGold gained as the dollar softened and crude oil prices slipped below $100 per barrel amid optimism around potential peace talks between the US and Iran. The easing in oil prices tempered inflation concerns, influencing interest rate outlook and supporting bullion. Silver and other metals also tracked the upward momentum during the session.\n\nGaurav Garg, research analyst at Lemonn Markets Desk, echoed that gold and silver prices witnessed a notable rise driven by currency weakness and geopolitical tensions linked to the Iran conflict, which has raised concerns over potential supply disruptions. Internationally, gold traded at $4,857.90 per ounce, up 1.21 per cent, while domestic prices stood near ₹1,45,697 per 10 grams. Silver climbed 1.70 per cent to $80.84 per ounce globally, with domestic prices around ₹2,42,454 per kg. Crude oil remained relatively stable, with WTI trading at $91.65 per barrel.\n\nPonmudi R, CEO of Enrich Money, noted that MCX gold is trading in the ₹1,54,500–₹1,55,000 range with emerging buying interest at lower levels. He added that a sustained move above ₹1,55,000 could push prices towards ₹1,57,000–₹1,58,000, while a break below ₹1,54,000 may trigger a correction toward ₹1,52,000–₹1,48,000. The overall bias remains cautiously positive, supported by macro factors, though stronger momentum needs confirmation.\n\nOn silver, he said prices are hovering above ₹2,54,000, supported by safe-haven demand and strength in industrial metals despite elevated volatility. Resistance is seen in the ₹2,60,000–₹2,63,000 zone, with potential upside toward ₹2,68,000–₹2,70,000. On the downside, a break below ₹2,50,000 could lead to a correction toward ₹2,44,000–₹2,40,000.\n\nAnalysts expect gold and silver to remain volatile in the near term (ahead of Akshaya Tritiya), as markets continue to track geopolitical developments, currency movements and trends in crude oil prices.\n\nPublished on April 16, 2026"} +{"url": "https://www.marketpulse.com/markets/chart-alert-audusd-360-pips-rally-at-risk-of-a-minor-mean-reversion-decline-below-07200-before-new-upleg/", "title": "Chart alert : AUD / USD 360 pips rally at risk of a minor mean reversion decline below 0 . 7200 before new upleg", "publish_date": "2026-04-16T12:28:19Z", "full_text": "The Australian dollar has benefited significantly since last Wednesday, 8 April, when the US and Iran agreed to a ceasefire due to its higher beta factor, as the AUD has mirrored the movement of risk assets such as equities since the start of the US-Iran war on 28 February 2026, exhibiting similar risk-off movements, ignoring the hawkish monetary policy guidance advocated by the RBA.\n\nThe AUD/USD has jumped by 230 pips (+3.3%) from the 8 April 2026 low to print an intraday high of 0.7198 on Thursday, 16 April 2026 at this time of writing, just a whisker above its prior 11 March 2026 high of 0.7188.\n\nWhen measured from its current minor uptrend low of 0.6833 printed on 30 March 2026, it has rallied by almost 360 pips (+5.3%), making the Australian dollar the second-best-performing major currency against the US dollar based on a one-month rolling performance; USD/AUD (-2.47%), just behind the euro where the USD/EUR slid -3.04% (see Fig. 1)."} +{"url": "http://www.irishsun.com/news/278987031/cbuae-highlights-uae-proactive-approach-to-financial-resilience-in-washington", "title": "CBUAE highlights UAE proactive approach to financial resilience in Washington", "publish_date": "2026-04-16T12:28:19Z", "full_text": "WASHINGTON, 16th April, 2026 (WAM) -- The Central Bank of the UAE (CBUAE) continued its participation in the 2026 Spring Meetings of the International Monetary Fund (IMF) and the World Bank Group, as well as the meetings of the G20, G24 and BRICS, held in Washington, DC, from 13th April till 18th April 2026.\n\nThe meetings were attended by central bank governors, finance ministers and representatives of international financial institutions.\n\nKhaled Mohamed Balama, Governor of the CBUAE, led the Bank's delegation in a number of ministerial meetings and high-level dialogue sessions. The delegation included Ebrahim Obaid Al Zaabi, Assistant Governor for Monetary Policy and Financial Stability; Ahmed Saeed Al Qamzi, Assistant Governor for Banking and Insurance Supervision; and Mohamed Al Marzooqi, Head of International Relations, in addition to a number of senior officials.\n\nBalama delivered the UAE's keynote address at the high-level meeting of the Middle East, North Africa and Pakistan (MENAP) region with the IMF, attended by Kristalina Georgieva, Managing Director of the IMF.\n\nThe address focused on developments in the global economy, geopolitical challenges and their implications for both the regional and global economy. He highlighted the UAE's proactive and leading role in safeguarding the resilience of vital sectors.\n\nHe also reaffirmed the UAE's continued efforts to develop proactive frameworks aimed at enhancing the efficiency of the financial sector, including the Proactive Financial Institution Resilience Package launched by the CBUAE in March, in a first-of-its-kind step by a central bank in the region, which contributed to reinforcing the sector's resilience and sustainability.\n\nHe also led the delegation in the meetings of the Intergovernmental Group of Twenty-Four on International Monetary Affairs and Development (G-24).\n\nOn the sidelines of the meetings, the Governor and the accompanying delegation held a series of bilateral meetings with a number of central bank governors and senior officials from international financial institutions. These included separate meetings with Madis Mller, Governor of Eesti Pank, and Natia Turnava, Governor of the National Bank of Georgia, during which they discussed ways to strengthen monetary and financial cooperation, exchanged views on priorities for the next phase, and explored opportunities to further develop financial infrastructure for both sides.\n\nThis regular participation reflects the CBUAE's role in contributing to international dialogue on the future of the global economy and financial stability, underscoring the UAE's position as an active partner in supporting efforts aimed at promoting economic and financial stability at both regional and international levels."} +{"url": "https://www.dailykos.com/stories/2026/4/16/800020794/community/this/", "title": "Say What You Mean", "publish_date": "2026-04-16T12:28:19Z", "full_text": "In a recent interview with NBC News, Senator Thom Tillis vowed to continue his hold on the nomination of Kevin Warsh to replace Jerome Powell as head of the Federal Reserve. This is a principled political act well within the power of any US Senator based on the Trump Department of Justice’s clearly bogus investigation of Powell on clearly ridiculous corruption charges.\n\nTillis, a retiring Republican Senator from North Carolina who has a moderate reputation, has said he will hold the nomination for as long as necessary. He wants the Trump DOJ to drop the investigation into Powell or provide some actual evidence that Powell is corrupt. Tillis has said that he does not believe Powell was particularly good at being Fed Chairman and that Warsh is a great choice.\n\nBut that is where the principled part of this ends.\n\nDuring the interview with NBC, Tillis said he has “lost” his filter regarding criticizing President Trump because he is not running for reelection. This has become pretty common on the right, with multiple examples of former supporters of Trump suddenly becoming more critical once there is no political price to pay. But in Tillis’s case. This is more nuanced and more hypocritical.\n\nTillis has pointedly not criticized Trump directly, preferring to either directly attack Trump staffers, such as Deputy Chief of Staff for Policy Stephen Miller, and others, for giving Trump bad advice. This was the same sort of soft criticism people used during the Reagan Administration, although with them, it was because people genuinely loved Ronald Reagan. That is not the case here; it is because people genuinely fear Donald Trump.\n\nIn the case of Powell and the DOJ investigation into the FED’s $2.5 Billion renovation of an asbestos-laden 1937 era facility, Powell “takes the president at his word,” that he did not ask for an investigation into Powell. And this is where the lack of courage comes in. Trump either instructed the DOJ to go after Powell, or he made it clear by his public attacks that he would look favorably on anyone who did go after Powell.\n\nIn the movie Casino, the character Andy Stone, a mob associate, says to another mobster, “The old may said, ‘maybe your friend should give in.’ And when the old man says ‘maybe’ that’s like a papal bull.” Trump knows this, and Tillis has been around politics long enough to know this as well, he just chooses to ignore it.\n\nWhat Tillis is saying is that Trump is being manipulated by his staff about all sorts of things. We know that may be true in some ways, but not in the way Senator Tillis means it. If Tillis were being truly courageous, he would say it straight out: Trump is not being manipulated by his staff; he is manipulating those around him to do his bidding while appearing to be ignorant of the actual details.\n\nTillis holding up Warsh’s nomination is a good thing. Tillis not stating the real reason, that Trump is the problem, is not."} +{"url": "https://www.vedomosti.ru/economics/news/2026/04/16/1190832-inflyatsionnie-ozhidaniya", "title": "Инфляционные ожидания россиян в апреле сократились до 12 , 9 % ", "publish_date": "2026-04-16T12:28:19Z", "full_text": "Ожидаемая инфляция среди граждан, у которых есть сбережения, в апреле составила 11,4% по сравнению с 12,3% в марте. Ожидаемая инфляция среди тех, у кого нет сбережений, уменьшилась за месяц с 14,4% до 14,3%."} +{"url": "https://www.brasil247.com:443/economia/governo-projeta-crescimento-de-2-56-do-pib-e-inflacao-de-3-04-em-2027-u72b8zti", "title": "Governo projeta crescimento de 2 , 56 % do PIB e inflao de 3 , 04 % em 2027", "publish_date": "2026-04-16T12:28:19Z", "full_text": "247 – O governo federal projeta que a economia brasileira crescerá 2,56% em 2027, segundo o Projeto de Lei de Diretrizes Orçamentárias (PLDO) do próximo ano, divulgado pelos ministérios da Fazenda e do Planejamento e Orçamento e noticiado pelo jornal Valor Econômico. O texto será encaminhado ao Congresso Nacional e apresenta as estimativas oficiais para os principais indicadores macroeconômicos do país até 2030.\n\nDe acordo com os números apresentados, a inflação medida pelo Índice de Preços ao Consumidor Amplo (IPCA) deve ficar em 3,04% em 2027. Para os anos seguintes, a projeção do governo aponta estabilidade em 3% ao ano entre 2028 e 2030, sinalizando uma expectativa de controle inflacionário dentro de uma trajetória considerada administrável pela equipe econômica.\n\nAs projeções para o Produto Interno Bruto também indicam continuidade do crescimento nos anos posteriores. Para 2028, a estimativa é novamente de expansão de 2,56%. Em 2029, o avanço previsto é de 2,59%, enquanto em 2030 o crescimento deve alcançar 2,66%. A leitura do governo é de que a economia brasileira seguirá em trajetória positiva, ainda que em ritmo moderado.\n\nNo campo dos índices de preços, o governo também projetou variações para outros indicadores relevantes. O Índice Nacional de Preços ao Consumidor (INPC) deve registrar alta de 3,06% em 2027. Para 2028, 2029 e 2030, a estimativa é de 3% em cada ano. Já o Índice Geral de Preços - Disponibilidade Interna (IGP-DI), calculado pela Fundação Getulio Vargas (FGV), tem previsão de 4% em 2027 e de 3,8% entre 2028 e 2030.\n\nOutro dado destacado no PLDO é a previsão para a massa salarial. Segundo o texto, a alta esperada é de 11,19% em 2027. Para 2028, a estimativa recua levemente para 11,08%. Em 2029, o avanço projetado é de 11,06%, enquanto em 2030 a previsão volta a subir marginalmente, para 11,12%. O indicador é observado como um termômetro importante do comportamento da renda e do dinamismo do mercado de trabalho.\n\nNo cenário traçado pelo governo, a taxa básica de juros também deve seguir uma trajetória de redução gradual nos próximos anos. A Selic média projetada para 2027 é de 10,55%. Em 2028, o percentual cairia para 9,27%, recuando depois para 8,27% em 2029 e 7,27% em 2030. A estimativa reforça a perspectiva de um ambiente monetário menos restritivo ao longo do período.\n\nEm relação ao câmbio, o governo trabalha com uma taxa média de R$ 5,47 por dólar em 2027. Para 2028, a projeção é de R$ 5,45. Em 2029, o valor médio subiria para R$ 5,50, chegando a R$ 5,53 em 2030. A oscilação prevista é pequena, mas mostra a expectativa de manutenção de um dólar em patamar ainda elevado nos próximos anos.\n\nO PLDO também traz estimativas para o mercado internacional de petróleo. Segundo os cálculos do governo, o preço médio do barril deve ficar em US$ 67,69 em 2027. Para 2028, a previsão é de US$ 66,60. Em 2029, o valor subiria para US$ 66,92, alcançando US$ 67,44 em 2030. O comportamento dessa variável é relevante por seus impactos sobre inflação, custos de produção e contas externas.\n\nAo consolidar essas projeções, o governo apresenta ao Congresso um cenário de crescimento contínuo, inflação relativamente estável, redução progressiva dos juros e manutenção de variáveis estratégicas em níveis considerados compatíveis com a condução da política econômica. O PLDO funciona como uma peça central do planejamento fiscal e orçamentário, servindo de base para a formulação do Orçamento e para a definição de metas do setor público.\n\nAs estimativas, no entanto, também serão acompanhadas de perto por agentes econômicos, parlamentares e pelo mercado, já que o comportamento efetivo da economia dependerá de fatores internos e externos, como o ritmo da atividade global, a dinâmica cambial, os preços das commodities e as decisões de política monetária ao longo dos próximos anos."} diff --git a/Data/1_Bronze_Raw/News_Scrapes/2026-04-16/Full_text/full_text_macro_geopolitics_risk.jsonl b/Data/1_Bronze_Raw/News_Scrapes/2026-04-16/Full_text/full_text_macro_geopolitics_risk.jsonl new file mode 100644 index 0000000..de70a35 --- /dev/null +++ b/Data/1_Bronze_Raw/News_Scrapes/2026-04-16/Full_text/full_text_macro_geopolitics_risk.jsonl @@ -0,0 +1,5 @@ +{"url": "https://www.design-reuse.com/news/202530378-three-misconceptions-about-the-402b-semiconductor-foundry-industry/", "title": "Three Misconceptions About the $402B Semiconductor Foundry Industry", "publish_date": "2026-04-16T12:30:54Z", "full_text": "By Pierre Cambou, Yole Développement\n\nEE Times\n\nThe global semiconductor foundry industry has reached an estimated $402 billion in 2026, reflecting both the scale and the structural complexity of modern semiconductor manufacturing, according to Yole Group’s latest report, “Status of the Semiconductor Foundry Industry 2026.” Foundries now sit at the crossroads of geopolitics and the AI capex boom, but do we really understand what they are about?\n\nAdvanced nodes or leading edge: Why it matters\n\nIt is widely cited that TSMC holds about 72% share of the global semiconductor foundry market and more than 90% of advanced chips. Such statements and figures only partially reflect TSMC’s true position. Its dominance at the leading edge is often understated due to inconsistent definitions of “advanced.”\n\nClick here to read more ..."} +{"url": "https://www.redlandsdailyfacts.com/2026/04/16/us-iran-war-israel/", "title": "Pakistani army chief visits Tehran in hopes of renewed US - Iran talks", "publish_date": "2026-04-16T12:30:54Z", "full_text": "By SAMY MAGDY, MELANIE LIDMAN and KAREEM CHEYAHEB\n\nCAIRO (AP) — Pakistan’s army chief is set to meet with Iranian officials in Tehran on Thursday in a bid to extend the ceasefire which paused almost seven weeks of war between Israel, the U.S. and Iran that have killed thousands of people and upended global markets by disrupting the flow of oil. Uncertainty remains whether the frantic diplomacy can lead to a deal as the ceasefire passes the half-way mark in the original two-week agreement.\n\nThe meeting comes as President Donald Trump announced the leaders of Israel and Lebanon will speak later on Thursday about halting the fighting between them. If it takes place, the conversation would be the first time the leaders of the two countries have spoken directly in more than 30 years. Both Israeli and Lebanese governments refused to confirm a conversation. Meanwhile, the Lebanese militant group Hezbollah and Israel’s military continued cross-border attacks on Thursday.\n\nThe White House said any further talks would likely take place in the Pakistani capital of Islamabad, though no decision had been made on whether to resume negotiations. The fragile ceasefire, which halted the fighting in the Middle East a week ago, is holding despite a U.S. naval blockade of Iranian ports and Iranian counter-threats to target regional ports across the Red Sea.\n\nPakistan has emerged as a key mediator after it hosted direct talks between the U.S. and Iran in Islamabad that authorities said helped narrow differences between the two sides. Mediators are seeking a new round before the ceasefire expires next week.\n\nThe war has jolted markets and rattled the global economy as shipping has been cut off and airstrikes have torn through military and civilian infrastructure across the region. Oil prices have fallen amid hopes for an end to fighting, and U.S. stocks on Wednesday surpassed records set in January.\n\nUncertainty over Israel, Lebanon talks as strikes continue\n\nTrump said that Israel and Lebanon are expected to speak later on Thursday about a possible ceasefire, but did not elaborate which leaders would speak.\n\nOfficials from Netanyahu’s office and the Lebanese government refused to confirm the possible conversation.\n\nAn Israeli minister said Netanyahu will speak with Lebanese President Joseph Aoun on Thursday. “Today the prime minister will speak for the first time with the president of Lebanon, after so many years of a complete disconnection in the dialogue between the two countries,” Gila Gamliel, Israel’s Minister of Science and Technology, told Army Radio Thursday morning.\n\nGamliel, who was at a cabinet meeting late Wednesday night about negotiations with Lebanon, is part of Israel’s security cabinet. She said the talks “will hopefully ultimately lead to prosperity and flourishing” between the two countries. Lebanon and Israel held their first direct diplomatic talks in decades on Tuesday in Washington following more than a month of war between Israel and Iran-backed Hezbollah.\n\nBut the two countries continued exchanging fire across the border on Thursday, with Hezbollah targeting towns in northern Israel with rockets and drones. Israeli fire against southern Lebanon intensified, especially around the cities of Tyre, Nabatieh, and the strategic town of Bint Jbeil near the border with Israel.\n\nIsrael and Lebanon have technically been at war since Israel was established in 1948, and Lebanon remains deeply divided over diplomatic engagement with Israel.\n\nOfficials say US and Iran are making progress\n\nEven as the U.S. blockade on Iranian ports and renewed Iranian threats strained the ceasefire agreement, regional officials reported progress, telling The Associated Press the United States and Iran had an “in-principle agreement” to extend it to allow for more diplomacy. They spoke on condition of anonymity to discuss sensitive negotiations.\n\nBut while mediators worked for peace, tensions simmered.\n\nThe commander of Iran’s joint military command, Ali Abdollahi, threatened to halt trade in the region if the U.S. does not lift its naval blockade, and a newly appointed military adviser to Iranian Supreme Leader Mojtaba Khamenei said he doesn’t support extending the ceasefire.\n\nIn this photo released by the Iranian Foreign Ministry, Iranian Foreign Minister Abbas Araghchi, right, meets with Pakistan’s Army Chief Field Marshal Gen. Asim Munir in Tehran, Wednesday, April 15, 2026. (Iranian Foreign Ministry via AP)\n\nParamedics attach a portrait over the grave of Ghadir Baalbaki, 19, who was killed on Tuesday in an Israeli airstrike, at a temporary mass grave in the southern port city of Tyre, Lebanon, Wednesday, April 15, 2026. (AP Photo/Hussein Malla)\n\nRelatives of Ghadir Baalbaki, 19, who was killed on Tuesday in an Israeli airstrike, mourn during her funeral in the southern port city of Tyre, Lebanon, Wednesday, April 15, 2026. (AP Photo/Hussein Malla)\n\nIn this photo released by the Iranian Foreign Ministry, Pakistan’s Army Chief Field Marshal Gen. Asim Munir, left, is welcomed by Iranian Foreign Minister Abbas Araghchi upon his arrival in Tehran, Wednesday, April 15, 2026. (Iranian Foreign Ministry via AP) Show Caption 1 of 4 In this photo released by the Iranian Foreign Ministry, Iranian Foreign Minister Abbas Araghchi, right, meets with Pakistan’s Army Chief Field Marshal Gen. Asim Munir in Tehran, Wednesday, April 15, 2026. (Iranian Foreign Ministry via AP) Expand\n\nMediators seek compromise on sticking points\n\nMediators are pushing for a compromise on three main sticking points that derailed direct talks last weekend — Iran’s nuclear program, the Strait of Hormuz and compensation for wartime damages, according to a regional official involved in the mediation efforts.\n\nIranian Foreign Ministry spokesman Esmail Baghaei said Iran is open to discussing the type and level of its uranium enrichment, but his country “based on its needs, must be able to continue enrichment,” Iranian state media reported.\n\nThe fighting has killed at least 3,000 people in Iran, more than 2,100 in Lebanon, 23 in Israel and more than a dozen in Gulf Arab states. Thirteen U.S. service members have also been killed.\n\nU.S. Treasury Secretary Scott Bessent said the Trump administration would ramp up economic pain on Iran with new economic sanctions on countries doing business with it, calling the move the “financial equivalent” of a bombing campaign.\n\nPakistan’s Prime Minister Shehbaz Sharif arrived in Qatar on Thursday as part of a regional visit aimed at discussions on the ongoing U.S.-Iran peace process and efforts to promote stability in the Middle East amid continuing tensions, his office said.\n\nChina calls for Strait of Hormuz to reopen\n\nChinese Foreign Minister Wang Yi said the window of peace was opening during a phone call with his Iranian counterpart, who briefed him on the latest developments in Iran-U.S. negotiations and Tehran’s considerations on the next step, according to a statement from China’s foreign ministry late Wednesday.\n\nWang told Araghchi that the situation has reached a critical juncture between war and peace, and said Iran’s sovereignty, security, and legitimate rights should be respected as a littoral state of the Strait of Hormuz, while freedom of navigation and safety through the strait should be ensured.\n\nSince the war began, Iran has curtailed maritime traffic through the Strait of Hormuz, which a fifth of global oil transited through in peacetime. Tehran’s effective closure of the strait sent oil prices skyrocketing, raising the cost of fuel, food and other basic goods far beyond the Middle East, and the U.S. has responded with a blockade on Iranian shipping.\n\nU.S. Central Command said Wednesday that no ships had made it past the blockade since it was imposed two days earlier, while 10 merchant vessels complied with direction from U.S. forces to turn around and reenter Iranian waters.\n\nThe blockade is intended to pressure Iran, which has exported millions of barrels of oil, mostly to Asia, since the war began Feb. 28. Much of it has likely been carried by so-called dark transits that evade sanctions and oversight, providing cash that’s been vital to keeping Iran running.\n\nLidman reported from Tel Aviv, Israel and Cheyaheb reported from Beirut. Associated Press reporter Munir Ahmed reported from Islamabad."} +{"url": "https://www.laprovincia.es/economia/2026/04/16/inflacion-eurozona-repunta-2-6-marzo-encarecimiento-energia-guerra-iran-129169885.html", "title": "La inflación de la eurozona repunta al 2 , 6 % en marzo por el encarecimiento de la energía tras la guerra en Irán", "publish_date": "2026-04-16T12:30:54Z", "full_text": "La tasa de inflación interanual de la zona euro se situó en marzo en el 2,6%, siete décimas por encima del 1,9% registrado en febrero y una más de lo anticipado inicialmente, según la segunda lectura publicada por Eurostat. Se trata del mayor repunte del coste de la vida en la región desde julio de 2024, impulsado por el encarecimiento de la energía tras el estallido del conflicto en Oriente Próximo.\n\nEl aumento de siete décimas en marzo, primer mes de la guerra tras los ataques de Estados Unidos e Israel sobre Irán, iguala el salto observado en octubre de 2022, cuando la invasión rusa de Ucrania disparó el precio de los hidrocarburos.\n\nEn el conjunto de la Unión Europea, la inflación interanual alcanzó el 2,8% en marzo, frente al 2,1% de febrero, lo que representa la mayor subida de precios entre los Veintisiete desde enero de 2025.\n\nSegún Eurostat, la aceleración de la inflación en la eurozona refleja de forma inmediata el impacto de la guerra en Oriente Próximo y del bloqueo del estrecho de Ormuz sobre los combustibles. En marzo, el precio de la energía subió un 5,1% interanual, frente a la caída del 3,1% registrada en febrero. Por el contrario, los alimentos frescos moderaron su avance hasta el 4,2%, cuatro décimas menos que el mes anterior.\n\nPor su parte, los bienes industriales no energéticos elevaron su precio un 0,5% interanual, dos décimas menos que en febrero, mientras que los servicios se encarecieron un 3,2%, frente al 3,4% del mes precedente.\n\nSi se excluye el impacto de la energía, la inflación de la zona euro se situó en marzo en el 2,3%, una décima menos que en febrero. La inflación subyacente, que deja fuera también los alimentos, el alcohol y el tabaco, se moderó igualmente una décima, hasta el 2,3%.\n\nEn España, la tasa de inflación armonizada repuntó en marzo hasta el 3,4% interanual, lo que deja un diferencial desfavorable de ocho décimas respecto a la media de la eurozona.\n\nNoticias relacionadas\n\nEntre los países de la UE, las menores tasas de inflación se registraron en Dinamarca, con un 1%, y en República Checa, Chipre y Suecia, todos ellos con un 1,5%. En el lado contrario, los mayores incrementos de precios correspondieron a Rumanía, con un 9%, Croacia, con un 4,6%, y Lituania, con un 4,4%."} +{"url": "https://www.stcatharinesstandard.ca/news/world/united-states/killing-of-iranian-activist-in-canada-exposes-increasingly-bitter-divisions-within-the-diaspora/article_823736e8-ea08-5c6e-a647-04a9d4ebea58.html", "title": "Killing of Iranian activist in Canada exposes increasingly bitter divisions within the diaspora", "publish_date": "2026-04-16T12:30:54Z", "full_text": "Country\n\nUnited States of America US Virgin Islands United States Minor Outlying Islands Canada Mexico, United Mexican States Bahamas, Commonwealth of the Cuba, Republic of Dominican Republic Haiti, Republic of Jamaica Afghanistan Albania, People's Socialist Republic of Algeria, People's Democratic Republic of American Samoa Andorra, Principality of Angola, Republic of Anguilla Antarctica (the territory South of 60 deg S) Antigua and Barbuda Argentina, Argentine Republic Armenia Aruba Australia, Commonwealth of Austria, Republic of Azerbaijan, Republic of Bahrain, Kingdom of Bangladesh, People's Republic of Barbados Belarus Belgium, Kingdom of Belize Benin, People's Republic of Bermuda Bhutan, Kingdom of Bolivia, Republic of Bosnia and Herzegovina Botswana, Republic of Bouvet Island (Bouvetoya) Brazil, Federative Republic of British Indian Ocean Territory (Chagos Archipelago) British Virgin Islands Brunei Darussalam Bulgaria, People's Republic of Burkina Faso Burundi, Republic of Cambodia, Kingdom of Cameroon, United Republic of Cape Verde, Republic of Cayman Islands Central African Republic Chad, Republic of Chile, Republic of China, People's Republic of Christmas Island Cocos (Keeling) Islands Colombia, Republic of Comoros, Union of the Congo, Democratic Republic of Congo, People's Republic of Cook Islands Costa Rica, Republic of Cote D'Ivoire, Ivory Coast, Republic of the Cyprus, Republic of Czech Republic Denmark, Kingdom of Djibouti, Republic of Dominica, Commonwealth of Ecuador, Republic of Egypt, Arab Republic of El Salvador, Republic of Equatorial Guinea, Republic of Eritrea Estonia Ethiopia Faeroe Islands Falkland Islands (Malvinas) Fiji, Republic of the Fiji Islands Finland, Republic of France, French Republic French Guiana French Polynesia French Southern Territories Gabon, Gabonese Republic Gambia, Republic of the Georgia Germany Ghana, Republic of Gibraltar Greece, Hellenic Republic Greenland Grenada Guadaloupe Guam Guatemala, Republic of Guinea, Revolutionary People's Rep'c of Guinea-Bissau, Republic of Guyana, Republic of Heard and McDonald Islands Holy See (Vatican City State) Honduras, Republic of Hong Kong, Special Administrative Region of China Hrvatska (Croatia) Hungary, Hungarian People's Republic Iceland, Republic of India, Republic of Indonesia, Republic of Iran, Islamic Republic of Iraq, Republic of Ireland Israel, State of Italy, Italian Republic Japan Jordan, Hashemite Kingdom of Kazakhstan, Republic of Kenya, Republic of Kiribati, Republic of Korea, Democratic People's Republic of Korea, Republic of Kuwait, State of Kyrgyz Republic Lao People's Democratic Republic Latvia Lebanon, Lebanese Republic Lesotho, Kingdom of Liberia, Republic of Libyan Arab Jamahiriya Liechtenstein, Principality of Lithuania Luxembourg, Grand Duchy of Macao, Special Administrative Region of China Macedonia, the former Yugoslav Republic of Madagascar, Republic of Malawi, Republic of Malaysia Maldives, Republic of Mali, Republic of Malta, Republic of Marshall Islands Martinique Mauritania, Islamic Republic of Mauritius Mayotte Micronesia, Federated States of Moldova, Republic of Monaco, Principality of Mongolia, Mongolian People's Republic Montserrat Morocco, Kingdom of Mozambique, People's Republic of Myanmar Namibia Nauru, Republic of Nepal, Kingdom of Netherlands Antilles Netherlands, Kingdom of the New Caledonia New Zealand Nicaragua, Republic of Niger, Republic of the Nigeria, Federal Republic of Niue, Republic of Norfolk Island Northern Mariana Islands Norway, Kingdom of Oman, Sultanate of Pakistan, Islamic Republic of Palau Palestinian Territory, Occupied Panama, Republic of Papua New Guinea Paraguay, Republic of Peru, Republic of Philippines, Republic of the Pitcairn Island Poland, Polish People's Republic Portugal, Portuguese Republic Puerto Rico Qatar, State of Reunion Romania, Socialist Republic of Russian Federation Rwanda, Rwandese Republic Samoa, Independent State of San Marino, Republic of Sao Tome and Principe, Democratic Republic of Saudi Arabia, Kingdom of Senegal, Republic of Serbia and Montenegro Seychelles, Republic of Sierra Leone, Republic of Singapore, Republic of Slovakia (Slovak Republic) Slovenia Solomon Islands Somalia, Somali Republic South Africa, Republic of South Georgia and the South Sandwich Islands Spain, Spanish State Sri Lanka, Democratic Socialist Republic of St. Helena St. Kitts and Nevis St. Lucia St. Pierre and Miquelon St. Vincent and the Grenadines Sudan, Democratic Republic of the Suriname, Republic of Svalbard & Jan Mayen Islands Swaziland, Kingdom of Sweden, Kingdom of Switzerland, Swiss Confederation Syrian Arab Republic Taiwan, Province of China Tajikistan Tanzania, United Republic of Thailand, Kingdom of Timor-Leste, Democratic Republic of Togo, Togolese Republic Tokelau (Tokelau Islands) Tonga, Kingdom of Trinidad and Tobago, Republic of Tunisia, Republic of Turkey, Republic of Turkmenistan Turks and Caicos Islands Tuvalu Uganda, Republic of Ukraine United Arab Emirates United Kingdom of Great Britain & N. Ireland Uruguay, Eastern Republic of Uzbekistan Vanuatu Venezuela, Bolivarian Republic of Viet Nam, Socialist Republic of Wallis and Futuna Islands Western Sahara Yemen Zambia, Republic of Zimbabwe"} +{"url": "https://multiplayer.it/notizie/tsmc-alza-previsioni-2026-ricavi-aumenteranno-ia.html", "title": "TSMC alza le previsioni : nel 2026 i ricavi aumenteranno ancora grazie allIA", "publish_date": "2026-04-16T12:30:54Z", "full_text": "L'azienda prevede ora un incremento dei ricavi superiore al 30% su base annua , superando la precedente stima che si fermava poco sotto questa soglia. Parallelamente, è stato confermato un aumento della spesa in conto capitale, che dovrebbe collocarsi nella fascia alta della guidance compresa tra 52 e 56 miliardi di dollari (circa 48-52 miliardi di euro).\n\nI dati TSMC\n\nNel primo trimestre del 2026, TSMC ha registrato un utile netto record pari a 572 miliardi e mezzo di dollari taiwanesi, equivalenti a circa 16 miliardi e 900 milioni di euro, con una crescita del 58% rispetto allo stesso periodo dell'anno precedente. Si tratta dell'ottavo trimestre consecutivo con incremento a doppia cifra, sostenuto in larga parte dalla domanda di chip avanzati destinati a sistemi di IA.\n\nIl CEO di TSMC, C.C. Wei\n\nIl CEO C.C. Wei ha sottolineato come la richiesta legata all'intelligenza artificiale rimanga estremamente elevata, nonostante le incertezze macroeconomiche legate alle tensioni geopolitiche in Medio Oriente. L'azienda ha comunque adottato un approccio prudente nella pianificazione, considerando i possibili impatti sulla catena di approvvigionamento.\n\nUno dei principali ambiti di espansione riguarda la produzione a 3 nanometri, tecnologia chiave per i chip di nuova generazione. TSMC sta ampliando la capacità produttiva in Taiwan, Stati Uniti e Giappone, con l'obiettivo di aumentare i volumi tra il 2027 e il 2028. In particolare, negli Stati Uniti è previsto un investimento complessivo di 165 miliardi di dollari, pari a circa 153 miliardi di euro, destinato allo sviluppo di impianti produttivi in Arizona.\n\nNel trimestre, i chip a 3 nanometri hanno rappresentato circa il 25% dei ricavi complessivi, in forte crescita rispetto al 6% registrato nel terzo trimestre del 2023. Le previsioni per il trimestre in corso indicano vendite comprese tra 36 e 37 miliardi di euro, in netto aumento rispetto ai 28 miliardi dello stesso periodo del 2025.\n\nL'onda dell'IA spinge i giganti dei semiconduttori nel primo trimestre del 2026: mentre TSMC registra profitti record, Samsung guida la crescita con un impressionante +81% (Fonte immagine: Reuters)\n\nLa crescente domanda di chip ad alte prestazioni ha contribuito anche alla crescita del valore di mercato dell'azienda, che ha raggiunto circa 1.580 miliardi di euro, consolidando il vantaggio rispetto ai principali concorrenti asiatici. Le azioni quotate a Taipei hanno registrato un incremento significativo dall'inizio dell'anno.\n\nNonostante il contesto internazionale complesso, TSMC ha dichiarato di disporre di scorte di sicurezza per materiali critici come elio e idrogeno, oltre a una rete diversificata di fornitori. Questo dovrebbe limitare eventuali interruzioni produttive nel breve periodo."} diff --git a/Data/1_Bronze_Raw/News_Scrapes/2026-04-16/Full_text/full_text_macro_yields_dollar.jsonl b/Data/1_Bronze_Raw/News_Scrapes/2026-04-16/Full_text/full_text_macro_yields_dollar.jsonl new file mode 100644 index 0000000..66d1e57 --- /dev/null +++ b/Data/1_Bronze_Raw/News_Scrapes/2026-04-16/Full_text/full_text_macro_yields_dollar.jsonl @@ -0,0 +1,8 @@ +{"url": "https://www.thehindubusinessline.com/markets/stock-markets-close-lower-on-profit-taking-in-financial-shares/article70868922.ece", "title": "Sensex , Nifty pare gains to end marginally lower , Adani Enterprises , Hindalco lead gainers", "publish_date": "2026-04-16T12:30:02Z", "full_text": "Benchmark indices ended marginally lower on Thursday after a volatile session, as profit-booking at higher levels and lingering uncertainty around US–Iran talks weighed on sentiment.\n\nVinod Nair, Head of Research at Geojit Investments, said the market ended with marginal losses on weekly expiry amid volatility and profit-booking. He noted that investors remain cautious ahead of further clarity on US–Iran negotiations, while a higher-than-expected WPI inflation print weighed on auto and consumption stocks.\n\nThe BSE Sensex declined 122.56 points or 0.16 per cent to close at 77,988.68 after hitting an intraday high of 78,730.32, while the NSE Nifty 50 slipped 34.55 points or 0.14 per cent to settle at 24,196.75. after touching 24,400.95.\n\nAlso read\n\nVolatility index remained stable around 18.\n\nMarkets opened on a positive note, supported by easing geopolitical concerns, firm global cues and optimism around potential progress in US–Iran negotiations. However, indices failed to hold gains and slipped into negative territory amid profit-booking following the recent rally and rising oil prices, which reflected scepticism over the likelihood of a lasting peace deal. Ponmudi R, CEO of Enrich Money, emphasised that volatility is likely to persist, with the market direction closely tied to developments in West Asia.\n\nThe broader market continued to outperform the benchmarks, with the Nifty midcap 100 and Nifty smallcap 100 indices gaining 0.63 per cent and 0.89 per cent, respectively.\n\nGiven the current technical structure, midcaps and smallcaps are likely to continue their outperformance over the short term, Sudeep Shah, Head - Technical and Derivatives Research at SBI Securities, said.\n\nSectorally, metals emerged as the top performers, supported by firm global commodity prices and a softer dollar.\n\nIT stocks also showed resilience, aided by improving visibility on AI-led demand. Investors also eyed Wipro Q4 results. In contrast, banking, auto and consumption stocks came under pressure, while heavyweight stocks capped overall market gains. Bank Nifty has underperformed the frontline indices for the second consecutive trading session.\n\nAdani Enterprises & Hindalco lead Nifty 50 pack\n\nAmong Nifty 50 constituents, Adani Enterprises, Hindalco, Trent, Eternal and Adani Ports emerged as top gainers, while HDFC Bank, ONGC, Titan, M&M and Bharti Airtel were major laggards.\n\nMarket experts added that market breadth remained strong as 331 stocks in the Nifty 500 universe ended higher, indicating sustained participation beyond large caps.\n\nAlso read\n\nOf all the 4,494 stocks that were traded on the BSE, 2,808 advanced, 1,549 declined and 147 remained unchanged. About 163 stocks scaled to a 52-week high, while 22 fell to a 52-week low. In addition, 4 scrips hit the upper circuit and 9 hit the lower circuit.\n\nMetal stocks witnessed strong buying interest\n\nGMDC, Hindustan Copper, NALCO, Hindalco Industries and Vedanta witnessed strong buying interest, aiding the sectoral rally, according to Hariprasad K, SEBI-registered research analyst and founder of Livelong Wealth. However, selling in heavyweights such as HDFC Bank, Reliance Industries and ONGC limited upside.\n\nMidcap & smallcap movers\n\nIn the midcap segment, BHEL, PB Fintech, Radico Khaitan, Container Corporation of India and Swiggy advanced up to 6 per cent, whereas Supreme Industries, Astral, GMR Airports, Hero MotoCorp and Groww declined 2–4 per cent.\n\nAmong smallcap stocks, GMDC, Firstsource Solutions, Aptus Value Housing Finance, Swan Energy and Crompton Greaves Consumer Electricals surged 5–20 per cent, while Poonawalla Fincorp, Piramal Finance, JSW Cement, Meesho and Angel One slipped 1–2 per cent.\n\nAlso read\n\nAsian markets ended significantly higher.\n\nBrent crude oil prices remained elevated at around $96 per barrel. Precious metals such as gold and silver also posted significant gains. On the currency front, the rupee appreciated 0.2 per cent to 93.2 against the US dollar, supported by optimism around easing geopolitical tensions and softer crude oil prices.\n\nIn the previous trading session, Sensex settled 1,263.67 points or 1.64 per cent higher at 78,111.24, and Nifty 50 climbed 388.65 points or 1.63 per cent to 24,231.30. US markets edged higher on Wednesday.\n\nFIIs bought equities worth ₹666.15 crore, as per the exchange data.\n\nPublished on April 16, 2026"} +{"url": "https://www.marketpulse.com/markets/cable-eyes-13696-after-reclaiming-key-moving-averages-bulls-defend-13500/", "title": "Cable eyes 1 . 3696 after reclaiming key moving averages , bulls defend 1 . 3500", "publish_date": "2026-04-16T12:30:02Z", "full_text": "The daily timeframe provides the most compelling evidence of a medium-term trend shift. After months of being capped by a persistent descending trendline (dark navy), GBP/USD staged a clean breakout in early April.\n\nCrucially, the pair has successfully reclaimed its 100-day MA (blue) at 1.3444 and its 200-day MA (black) at 1.3413. This \"double reclaim\" of the major moving averages suggests that the macro bias has shifted from \"sell the rallies\" to \"buy the dips.\" Currently, the pair is eyeing the next major structural hurdle at 1.3696, which represents a significant historical resistance zone.\n\nThe Daily RSI is at 62.7, indicating healthy bullish momentum with plenty of runway before hitting the overbought 70.0 threshold.\n\nGBP/USD Daily Chart, April 16, 2026"} +{"url": "https://www.fool.com/investing/2026/04/16/3-absurdly-cheap-stocks-to-buy-with-1000-while-the/?source=iedfolrf0000001", "title": "3 Absurdly Cheap Stocks to Buy With $1 , 000 While the Market Is This Nervous", "publish_date": "2026-04-16T12:30:02Z", "full_text": "Many investors feel nervous about the current investing environment, and the hesitation is understandable. Oil prices have spiked, and supply chains have broken down amid conflict in the Middle East. Also, the Shiller P/E ratio has risen to 40, a level near historical highs.\n\nFortunately, if the market is good at delivering one thing, it is opportunity, and that applies even under difficult conditions. That might motivate investors to seek stocks that can succeed in any environment, and these three names likely fit the bill.\n\n1. Domino's Pizza\n\nDomino's Pizza (DPZ 0.30%) has emerged as an unexpected winner among consumer discretionary stocks. Investors may recall that it was one of the few stocks to rise during the COVID-19 pandemic, as the pizza chain's order and delivery model was well-suited for ordering out.\n\nMuch of that growth pulled back as lockdowns ended. However, Domino's has differentiated itself in more ways than just delivery. It utilizes \"fortressing,\" opening up a large number of stores in nearby areas. Although most companies would call that practice cannibalizing, Domino's has built a competitive advantage by shortening delivery times.\n\nAdditionally, it capitalizes on technology, and not just through its app and websites. Instead, customers can order on platforms varying from car dashboards to Apple Watches, taking advantage of impulse shoppers.\n\nAdmittedly, this is more of a safety play, as revenue increased by 5% in 2025, a time when net income grew by only 3% amid rising expenses.\n\nNonetheless, its $7.96 per share annual dividend increased by 15% last year, a testament to its success. Also, the yield of 2.2% is well above the 1.1% average for the S&P 500 (^GSPC +0.80%).\n\nExpand NASDAQ : DPZ Domino's Pizza Today's Change ( -0.30 %) $ -1.10 Current Price $ 368.07 Key Data Points Market Cap $12B Day's Range $ 365.45 - $ 370.00 52wk Range $ 346.31 - $ 499.08 Volume 198 Avg Vol 966K Gross Margin 39.95 % Dividend Yield 1.96 %\n\nFinally, Domino's P/E ratio of 21 is at multiyear lows, and considering that $369 buys one share, investors can buy a starter position cheaply.\n\n2. Clorox\n\nClorox (CLX 1.46%) is a consumer staples conglomerate consisting of its flagship bleach product along with Hidden Valley salad dressing, Kingsford charcoal, Burt's Bees personal care products, and other brands.\n\nLike Domino's, it benefited from the pandemic as the population became obsessed with cleanliness. That impulse faded as pandemic-related fear receded, causing the stock price to fall.\n\nUnfortunately, issues such as a major cyberattack in 2023 and a change in customer relationship management (CRM) systems led to a significant sales decline. That long-term drop means that Clorox stock now sells at a discount of more than 55% from its all-time high in 2021.\n\nExpand NYSE : CLX Clorox Today's Change ( -1.46 %) $ -1.52 Current Price $ 102.92 Key Data Points Market Cap $12B Day's Range $ 102.39 - $ 104.59 52wk Range $ 96.66 - $ 143.96 Volume 556 Avg Vol 2.2M Gross Margin 44.04 % Dividend Yield 4.80 %\n\nIndeed, the fact that net sales declined by 10% yearly in the first half of fiscal 2026 (ended Dec. 31, 2025) shows that the struggles continue. Still, analysts expect that sales decline to come in at 6% for the fiscal year before net sales rebound by 13% in fiscal 2027.\n\nMoreover, even though profits fell 19% annually to $237 million in the first half of fiscal 2026, the situation is likely not that bleak.\n\nAll this makes Clorox a relatively safe, undervalued dividend stock. The payout, which has risen annually for decades, is now $4.96 per share, a yield of 4.7%. When also considering the 17 P/E ratio, investors could have a lucrative growth and income stock by buying three shares for $312.\n\n3. Target\n\nTarget's (TGT +2.79%) struggles may outweigh absurd cheapness in the minds of some investors. Net sales have declined for years, and challenges such as chronically high inventories, messy stores, and controversial political decisions alienated many shoppers.\n\nHowever, former COO Michael Fiddelke took over as CEO in February and has set out to revive the brand. He pledged to invest $5 billion in improving stores and supply chains and incorporating more technology.\n\nTarget's turnaround has a high chance of succeeding. More than 75% of Americans live within 10 miles of a Target store, making it well-positioned for omnichannel selling. It could also benefit by restoring its reputation as an upscale discounter that built its brand.\n\nAdmittedly, this comeback remains somewhat speculative. Target's net sales fell 2% in 2025, and profits fell 9% to $3.7 billion amid rising depreciation costs.\n\nNonetheless, the company forecasts a 2% net sales increase in 2026, a sign that conditions may have begun to improve. Also, its troubles have not stopped it from maintaining a 54-year streak of payout hikes, making it a Dividend King. That dividend, which is now $4.56 per share yearly, yields 3.8%.\n\nExpand NYSE : TGT Target Today's Change ( 2.79 %) $ 3.34 Current Price $ 122.87 Key Data Points Market Cap $56B Day's Range $ 118.79 - $ 123.30 52wk Range $ 83.44 - $ 126.00 Volume 3.1K Avg Vol 6.1M Gross Margin 25.44 % Dividend Yield 3.69 %\n\nFinally, investors can buy this stock for 15 times earnings, meaning a purchase of 2.7 shares for $320 could deliver market-beating returns as conditions improve."} +{"url": "http://www.kreiszeitung.de/politik/trump-koennte-mit-genialer-strategie-den-krieg-im-iran-gewinnen-zr-94264746.html", "title": "Trump blockiert Straße von Hormus : Mullah - Regime igeht das Geld aus", "publish_date": "2026-04-16T12:30:02Z", "full_text": "Trump blockiert Straße von Hormus: Mullah-Regime geht das Geld für den Iran-Krieg aus\n\nDrucken Teilen\n\nUns auf Google folgen\n\nDie Blockade der Straße von Hormus durch den Präsidenten stellt Teherans Strategie, dem Westen wirtschaftliche Schmerzen zuzufügen, völlig auf den Kopf.\n\nWir wissen, dass Donald Trump unberechenbar ist. Wenn er jedoch bei seinem Kurs bleibt und bereit ist, das damit verbundene Risiko zu akzeptieren, könnte es sich erweisen, dass die Schließung der Straße von Hormus für den mit Iran verbundenen Seeverkehr ein entscheidender Schlag ist, der Teheran zwingt, sich seinem Willen zu beugen. Es scheint klar, dass die USA und Israel nicht erwartet haben, dass das iranische Regime ein derartiges Maß an Widerstandskraft zeigen würde.\n\nDer Persische Golf und die Straße von Hormus. © -/The Visible Earth/NASA/dpa\n\nSie haben außerdem Irans Fähigkeit unterschätzt, die Straße zu schließen, durch die 20 Prozent des weltweiten Öls sowie ein großer Teil des verflüssigten Erdgases transportiert werden. Während die Straße an ihrer schmalsten Stelle fast 30 Seemeilen breit ist, besteht der schiffbare Teil aus zwei jeweils zwei Meilen breiten Fahrspuren, getrennt durch eine Pufferzone von derselben Breite. Die USA blockieren die Straße von Hormus nun für Schiffe, die iranische Häfen ansteuern oder von dort kommen.\n\nÖlblockade als politisches Druckmittel im Iran-Krieg\n\nEin Dutzend US-Kriegsschiffe erzwingt die Blockade, unterstützt von mehreren Dutzend Kampfflugzeugen und Aufklärungsflugzeugen, so das US-Zentralkommando (Centcom). Die beabsichtigte Wirkung wird darin bestehen, Irans Wirtschaft auszutrocknen. Öl ist die Lebensader des Regimes. Es hat militärische Zerstörung aus der Luft überlebt, doch kann es auch das Unvermögen überleben, seine Soldaten zu bezahlen?\n\nDas ist klug, weil es zeigt, dass die USA über reine militärische Macht hinausdenken. In den vergangenen 25 Jahren war Washington sehr effektiv darin, durch den Einsatz von Gewalt einem Feind Schaden zuzufügen, doch es erwies sich als weniger gut darin, diese militärische Aktion mit politischen Ergebnissen in Einklang zu bringen, und das politische Ergebnis ist es, das die endgültige Lösung bringt. Rund 80 Prozent der iranischen Ölexporte passieren die Straße von Hormus.\n\nIsrael und USA attackieren Mullah-Regime – Bilder aus dem Iran-Krieg Fotostrecke ansehen\n\nDieser Handel dürfte über Nacht zum Erliegen gekommen sein, während auch Nicht-Öl-Exporte – Mineralien und Metalle – betroffen sein werden. Einer Schätzung zufolge kostet dies Iran täglich 435 Millionen US-Dollar, darunter 276 Millionen US-Dollar an entgangenen Exporten. Da die Ölexporte einen so großen Anteil an Irans Deviseneinnahmen ausmachen, dürfte dem Regime schnell das Geld ausgehen, um Importgüter zu bezahlen, was möglicherweise eine finanzielle und inflationäre Krise innerhalb Irans auslöst.\n\nAngriffe von außen auf eine Nation neigen dazu, eine Bevölkerung zu einen. Wenn das Regime jedoch jene, die es für seine Drecksarbeit braucht – Soldaten und paramilitärische Schläger –, nicht mehr bezahlen kann, könnten diese sich zurückziehen und sich darauf konzentrieren, ihre Familien zu schützen, statt Herrscher zu unterstützen, die sie nicht mehr unterstützen können. Zumindest wird es Gläubige von Mitläufern trennen. Kommt Irans Wirtschaft tatsächlich unter massiven Druck, werden Massenproteste wieder möglich, vielleicht mit weniger Menschen, die bereit sind, das Regime zu verteidigen.\n\nDie Logik der Straße von Hormus kehrt sich um\n\nDe facto hätte Trump dann die Logik von Irans eigener Schließung der Straße von Hormus auf den Kopf gestellt. Statt dass der Westen den Großteil der wirtschaftlichen Schmerzen durch höhere Ölpreise erleidet, wird Iran die bei Weitem akutesten Kosten tragen. Die Ajatollahs stehen damit vor einer noch schärferen Wahl: Sie verhandeln ein Abkommen, mit dem die USA und Israel leben können – keine Atomwaffen und möglicherweise keine Langstreckenraketen – oder sie sehen sich mit einem Zusammenbruch konfrontiert.\n\nDas würde den Weg weisen von einem schwachen „Zombie“-Regime, das an der Macht kleben kann, weil keine größere Kraft existiert, die es stürzen könnte, hin zu einem Regime, das ernsthaft in Gefahr schwebt, dass Massenproteste auf den Straßen zu einem allgemeinen Zusammenbruch der Autorität führen. Es gibt natürlich Risiken für die USA, China ist eines davon. China bezieht einen Großteil seines Öls aus Iran, und Peking hat die US-Maßnahmen bereits als „unverantwortlich und gefährlich“ bezeichnet.\n\nDie Blockade von Schiffen, die von Iran nach China fahren, könnte eine breitere Krise auslösen. Im schlimmsten Fall könnte dies zu einer direkten Konfrontation führen. Wahrscheinlicher ist, dass Präsident Xi sich selbst und China zunehmend als stabile Alternative zu einer unzuverlässigen US-Macht darstellen wird. Zweitens könnten Golf-Verbündete, die selbst unter der Einschränkung des Golf-Seeverkehrs leiden, Trumps unberechenbaren Verhaltens müde werden und aus dem US-Orbit in die Arme Chinas gedrängt werden.\n\nRisiken für Trump und die Verbündeten\n\nAuch das amerikanische Volk, das Trump teilweise wegen seiner Ablehnung ewiger Kriege unterstützte, wird nur begrenzte Geduld mit einem neuen Abnutzungskrieg haben. Es ist bemerkenswert, dass die US-amerikanische öffentliche Unterstützung für Israel seit 2022 erheblich gesunken ist. Trump wird sicherstellen müssen, dass andere Ölquellen hochgefahren werden. Iran hat in den vergangenen Monaten im Durchschnitt täglich 1,8 Millionen Barrel Rohöl exportiert.\n\nWenn der Fluss iranischen Öls zu einem Rinnsal wird, müssen andere Staaten bereit und in der Lage sein, die Lücke zu schließen, sonst wird die Auswirkung auf die Weltwirtschaft noch gravierender. Schließlich könnte Iran beschließen, sich zu rächen und damit den Waffenstillstand zu brechen. Saudi-Arabien befürchtet, dass Teheran seine Stellvertreter, die jemenitischen Huthis, anweisen wird, die Meerenge Bab al-Mandab zu schließen, die am Eingang zum Roten Meer auf der anderen Seite der Arabischen Halbinsel liegt.\n\nÜber vier Millionen Barrel pro Tag passieren diesen Engpass, ebenso wie Schiffe, die den Suezkanal durchqueren. Dessen Schließung wird den Welthandel und die Ölversorgung erheblich beeinträchtigen. Es ist bisweilen schwierig, sich ein wirkliches Bild der Ereignisse im Iran zu machen, unter anderem, weil die BBC und ein Großteil der britischen Medien zu reflexhaftem Anti-Amerikanismus neigen, den Trumps Verhalten manchmal leider noch verstärkt.\n\nSchwächung von Irans Raketen- und Atomprogramm\n\nDie Realität ist jedoch, dass die USA und Israel sowohl in dieser Runde des Konflikts als auch im 12-tägigen Krieg im vergangenen Juni den Atomprogrammen des Landes einen erheblichen Schlag versetzt haben. Auch das iranische Raketenprogramm ist geschwächt worden. Angesichts der Tatsache, dass diese Raketen eines Tages in der Lage gewesen wären, das Vereinigte Königreich zu treffen, möglicherweise mit nuklearen Sprengköpfen, sollten wir diese Entmachtung eines Feindes feiern.\n\nNun bedroht Trump die wirtschaftliche Lebensader des Regimes. Für Iran sind die Einsätze gerade deutlich gestiegen. Dr Bob Seely MBE ist der Autor von „The New Total War“ (Dieser Artikel von Bob Seely entstand in Kooperation mit telegraph.co.uk)"} +{"url": "https://www.thehindubusinessline.com/markets/gold/gold-silver-prices-rise-on-weak-dollar-geopolitical-cues-analysts-see-near-term-volatility/article70868399.ece", "title": "Why gold , silver are rising on weak dollar & geopolitical tensions ? ", "publish_date": "2026-04-16T12:30:02Z", "full_text": "Gold and silver prices moved higher in Thursday’s trade, ahead of Akshaya Tritiya, supported by a weaker US dollar, geopolitical uncertainty and shifting expectations around global interest rates. The uptick comes even as global equity markets remained firm, reflecting a mix of risk-on sentiment and safe-haven demand.\n\nGold gained as the dollar softened and crude oil prices slipped below $100 per barrel amid optimism around potential peace talks between the US and Iran. The easing in oil prices tempered inflation concerns, influencing interest rate outlook and supporting bullion. Silver and other metals also tracked the upward momentum during the session.\n\nGaurav Garg, research analyst at Lemonn Markets Desk, echoed that gold and silver prices witnessed a notable rise driven by currency weakness and geopolitical tensions linked to the Iran conflict, which has raised concerns over potential supply disruptions. Internationally, gold traded at $4,857.90 per ounce, up 1.21 per cent, while domestic prices stood near ₹1,45,697 per 10 grams. Silver climbed 1.70 per cent to $80.84 per ounce globally, with domestic prices around ₹2,42,454 per kg. Crude oil remained relatively stable, with WTI trading at $91.65 per barrel.\n\nPonmudi R, CEO of Enrich Money, noted that MCX gold is trading in the ₹1,54,500–₹1,55,000 range with emerging buying interest at lower levels. He added that a sustained move above ₹1,55,000 could push prices towards ₹1,57,000–₹1,58,000, while a break below ₹1,54,000 may trigger a correction toward ₹1,52,000–₹1,48,000. The overall bias remains cautiously positive, supported by macro factors, though stronger momentum needs confirmation.\n\nOn silver, he said prices are hovering above ₹2,54,000, supported by safe-haven demand and strength in industrial metals despite elevated volatility. Resistance is seen in the ₹2,60,000–₹2,63,000 zone, with potential upside toward ₹2,68,000–₹2,70,000. On the downside, a break below ₹2,50,000 could lead to a correction toward ₹2,44,000–₹2,40,000.\n\nAnalysts expect gold and silver to remain volatile in the near term (ahead of Akshaya Tritiya), as markets continue to track geopolitical developments, currency movements and trends in crude oil prices.\n\nPublished on April 16, 2026"} +{"url": "https://www.capital.gr/agores/3985670/xrimatistirio-epilektikes-kiniseis-kai-auximeni-metablitotita/", "title": "Χρηματιστήριο : Επιλεκτικές κινήσεις και αυξημένη μεταβλητότητα", "publish_date": "2026-04-16T12:30:02Z", "full_text": "ΤΕΛΕΥΤΑΙΑ ΕΝΗΜΕΡΩΣΗ 14:10\n\nτου Μάνου Χαχλαδάκη\n\nΣυντηρείται το θετικό κλίμα στην αγορά της Αθήνας που δείχνει διάθεση να κινηθεί για τρίτη ημέρα ανοδικά, αν και με χαμηλούς ρυθμούς εν μέσω της αυξημένης μεταβλητότητας που χαρακτηρίζει τις συναλλαγές.\n\nΕιδικότερα, ο Γενικός Δείκτης βρέθηκε έως και τις 2.311 μονάδες (+0,96%) αλλά πλέον διαπραγματεύεται στις 2.294 μονάδες με μικρά κέρδη 0,2% και τον τζίρο στα 145 εκατ. ευρώ, ενώ έχουν διακινηθεί 23 εκατ. τεμάχια.\n\nΟ τραπεζικός δείκτης βρέθηκε να ενισχύεται έως και κατά 1,3% (2.707 μον.) αλλά πλέον έχει γυρίσει ελαφρώς αρνητικός στις 2.668 μονάδες, ο FTSE της υψηλής κεφαλαιοποίησης σημειώνει άνοδο κατά 0,2% στις 5.840 μον. και ο FTSEM της μεσαίας στις 2.822 μον. με +0,4%\n\nΟυσιαστικά η συνεδρίαση δείχνει να εξελίσσεται σε διελκυστίνδα μεταξύ ορισμένων blue chips που διαφοροποιούνται έντονα θετικά, πρωτίστως της Metlen αλλά και των ΓΕΚ ΤΕΡΝΑ, Λάμδα και Aegean και από την άλλη πλευρά των τραπεζών, που έχασαν το αρχικό τους μομέντουμ και σταδιακά περνάνε σε αρνητικό έδαφος - πιθανώς και από το βάρος του profit taking που προκαλεί το ράλι 5,6% της Τρίτης.\n\nΚατά τα άλλα, η συνεδρίαση ξεκίνησε με κεκτημένη ταχύτητα από χθες (FTSEM +1,5%) για τα mid caps αλλά στην πορεία επήλθε επίσης κάποια εξισορρόπηση, με εμφανές και εδώ το χαρακτήρα stock picking στις τοποθετήσεις.\n\nΓενικότερα πάντως, το θετικό κλίμα διατηρείται στις αγορές διεθνώς καθώς οι επενδυτές δείχνουν να προεξοφλούν θετική έκβαση στις διαπραγματεύσεις ΗΠΑ - Ιράν.\n\nΕνδεικτικό είναι ότι στην Wall Street, αφότου μάζεψαν όλες τις απώλειες του πολέμου, οι S&P 500 και Nasdaq κατέγραψαν χθες νέα ιστορικά υψηλά (+0,8% και +1,6% αντίστοιχα), με τον πρόεδρο Τραμπ να επαναλαμβάνει ότι \"ο πόλεμος είναι πολύ κοντά στο να τελειώσει\" και αξιωματούχους του Λευκού Οίκου να αναφέρουν ότι σχεδιάζεται ένας νέος, δεύτερος, γύρος διαπραγματεύσεων.\n\nΣτην Ευρώπη οι κινήσεις είναι μάλλον πιο συγκρατημένες, αν και οι δείκτες σήμερα δείχνουν διάθεση να επιστρέψουν σε θετικό έδαφος μετά την ήπια οπισθοχώρηση χθες, κυρίως υπό το βάρος της πτώσης του κλάδου πολυτελείας που δέχθηκε σημαντικό πλήγμα από τον πόλεμο.\n\nΟι κινήσεις στο ταμπλό\n\nΗ Metlen επιχειρεί σταθερά από το άνοιγμα να δώσει ώθηση στον ΓΔ με εντολές έως τα 36,9 ευρώ (+4,1%).\n\nΙσχυρή άνοδο 2,4% καταγράφουν επίσης η ΓΕΚ ΤΕΡΝΑ που ανακτά τα 40 ευρώ και η Λάμδα στα 6,3 με την Aegean να ακολουθεί από κοντά στα 13,4 με +2%.\n\nΣτις τράπεζες είναι εξαιρετικά έντονη η κινητικότητα στην Πειραιώς που έχει κάνει τζίρο ήδη άνω των 42 εκατ. μόνη της (το 1/4 της συνεδρίασης) αλλά με αισθητή μεταβλητότητα - από τα 8,63 ευρώ (+1,4%) έως τα 8,48 (-0,4%) - ενώ επί του παρόντος βρίσκεται πέριξ του αμετάβλητου.\n\nΗ Alpha κινείται σταθερά ανοδικά με +0,5%, ενώ η ΕΤΕ και η Eurobank υποχωρούν ελαφρώς κατά 0,3%.\n\nΣημειώνεται ότι οι συστημικές έλαβαν ακόμα μία ψήφο εμπιστοσύνης, από την Euroxx που ανέβασε τις τιμές - στόχους κάνοντας λόγο για ευκαιρία για αγορά ενός σημαντικού story ανάπτυξης.\n\nΕκτός ΔΤΡ, η Credia κινείται δυναμικά στις παρυφές του 1,20 με +1,9%.\n\nΟι επιλογές των πωλητών στον 25άρη εστιάζουν κυρίως στις ΔΕΗ και Coca Cola αμφότερες περί του -0,9%.\n\nΣτα mid caps ξεχωρίζει πλέον το ράλι 4% του ΟΛΘ με ιδιαίτερα υψηλό τζίρο άνω των 640 χιλ. ευρώ όλα στο ταμπλό, αφότου ανακοίνωσε νέο ιστορικό υψηλό σε έσοδα και κερδοφορία το 2025.\n\nΗ Alter Ego ενισχύεται επίσης κατά 3% και η Qualco κατά 2%.\n\nΣτον αντίποδα, η Intralot έχει περάσει σε αρνητικό έδαφος στα 1,03 με -0,7%.\n\nΣτο σύνολο το ταμπλό 75 τίτλοι κινούνται ανοδικά, έναντι 50 πτωτικών.\n\nΗ εικόνα διεθνώς\n\nΠεριορισμένες είναι οι διακυμάνσεις των τιμών του πετρελαίου που πλέον κινούνται χαμηλότερα των 100 δολαρίων το βαρέλι. Το Brent στα 95,7 δολ. με +0,8% σήμερα και το αμερικανικό WTI στα 91,7 δολ. με +0,4%.\n\nΣταθεροποιητικές τάσεις δείχνει και το ευρωπαϊκό φυσικό αέριο που κινείται στα 41,7 ευρώ η μεγαβατώρα με +0,7%.\n\nΣτις μετοχές, τα συμβόλαια των δεικτών της Wall Street κινούνται ελαφρώς ανοδικά με την τεχνολογία να διατηρεί προβάδισμα, μετά τα ρεκόρ χθες (S&P 500, Nasdaq).\n\nΤα futures του Dow Jones στο +0,1%, του S&P 500 στο +0,1% και του Nasdaq στο +0,2%.\n\nΉπια ανοδική είναι η τάση και στην Ευρώπη. Ο γερμανικός DAX στο +0,5%, ο γαλλικός CAC 40 στο +0,5%, ο βρετανικός FTSE 100 στο +0,6%, ο ιταλικός FTSE MIB στο +0,35%, ο ισπανικός IBEX 35 στο +0,2% και η πανευρωπαϊκή υψηλή κεφαλαιοποίηση του Stoxx 50 στο +0,4%.\n\nΟι αγοραστές έχουν προβάδισμα και στην αγορά ομολόγων, με τις αποδόσεις να υποχωρούν ως εκ τούτου. Του δεκαετούς ΗΠΑ στο 4,27%, του γερμανικού τίτλου στο 3,01% και του γαλλικού στο 3,65%, με τον ελληνικό στο 3,75%.\n\nΤέλος, ελαφρώς ανοδική είναι η τάση και στα μέταλλα, ο χρυσός στα 4.848 δολάρια η ουγγιά με +0,5% και το ασήμι στα 80,4 δολ. με +1%."} +{"url": "https://www.marketpulse.com/markets/chart-alert-audusd-360-pips-rally-at-risk-of-a-minor-mean-reversion-decline-below-07200-before-new-upleg/", "title": "Chart alert : AUD / USD 360 pips rally at risk of a minor mean reversion decline below 0 . 7200 before new upleg", "publish_date": "2026-04-16T12:30:02Z", "full_text": "The Australian dollar has benefited significantly since last Wednesday, 8 April, when the US and Iran agreed to a ceasefire due to its higher beta factor, as the AUD has mirrored the movement of risk assets such as equities since the start of the US-Iran war on 28 February 2026, exhibiting similar risk-off movements, ignoring the hawkish monetary policy guidance advocated by the RBA.\n\nThe AUD/USD has jumped by 230 pips (+3.3%) from the 8 April 2026 low to print an intraday high of 0.7198 on Thursday, 16 April 2026 at this time of writing, just a whisker above its prior 11 March 2026 high of 0.7188.\n\nWhen measured from its current minor uptrend low of 0.6833 printed on 30 March 2026, it has rallied by almost 360 pips (+5.3%), making the Australian dollar the second-best-performing major currency against the US dollar based on a one-month rolling performance; USD/AUD (-2.47%), just behind the euro where the USD/EUR slid -3.04% (see Fig. 1)."} +{"url": "https://www.israelnetz.com/2026/04/16/", "title": "16 . 04 . 2026 - Israelnetz", "publish_date": "2026-04-16T12:30:02Z", "full_text": "Tag: 16. April 2026\n\nBritisches Vermächtnis: Okzident trifft Orient Die Architektur in Jerusalem ist stark geprägt von der britischen Mandatszeit. Nach der Übernahme der Verwaltung setzte ein Bauboom ein.\n\nStarker Schekel Mit 3,05 Schekel zu 1 US-Dollar hat die israelische Währung den stärksten Stand seit 30 Jahren erreicht. Als Gründe führt das Wirtschaftsmagazin „Globes“ unter anderem die Waffenruhe mit dem Iran und Gespräche mit dem Libanon an. Bereits seit Monaten ist der Schekel die weltweit stärkste Währung gegenüber dem US-Dollar. Ein starker Schekel dämpft die Inflation, […]\n\nDeutschland unterstützte Israel mit Waffen Wegen angeblicher „Beihilfe zum Völkermord in Gaza“ haben Anwälte in Berlin Strafanzeige gegen Bundeskanzler Friedrich Merz und andere Verantwortliche erstattet. Deutschland soll demnach Waffen im Wert von mehr als 485 Millionen Euro nach Israel xportiert haben. Unterstützt wird die Anzeige von der Initiative europäischer Juristen „Europäisches Zentrum zur Rechtsunterstützung“ (ELSC), dem „Palästina-Institut für Öffentliche Diplomatie“ […]\n\n„Apple TV“ veröffentlicht Trailer von israelischer Thriller-Serie „Unconditioned“ Der Streamingdienst „Apple TV“ hat den Trailer zur israelischen Serie „Unconditional“ veröffentlicht. Sie handelt von einer 23-jährigen Israelin (Talia Lynne Ronn), die auf einer Urlaubsreise in Moskau wegen Drogenbesitzes festgenommen wird. Ihre Mutter (Liras Chamami) kämpft dann um die Freilassung. Produzenten sind Adam Bizanski und Dana Idisis. Der achtteilige Thriller soll Ende April in Israel […]\n\n„Time“ zählt Netanjahu zu den 100 einflussreichsten Persönlichkeiten Das amerikanische Magazin „Time“ zählt den israelischen Premier Benjamin Netanjahu zu den einflussreichsten Persönlichkeiten dieses Jahres. Ihm sei nach dem Terrormassaker vom 7. Oktober dank der militärischen Erfolge ein politisches Comeback gelungen, schreibt „Time“-Kolumnist Ian Bremmer in der am Donnerstag veröffentlichten Liste. Gleichzeitig verliere Israel wegen militärischer Operationen wie im Libanon oder Gaza gerade bei […]"} diff --git a/Data/1_Bronze_Raw/News_Scrapes/2026-04-16/Raw/raw_gdelt_asset_metals_derivatives.jsonl b/Data/1_Bronze_Raw/News_Scrapes/2026-04-16/Raw/raw_gdelt_asset_metals_derivatives.jsonl new file mode 100644 index 0000000..718c31b --- /dev/null +++ b/Data/1_Bronze_Raw/News_Scrapes/2026-04-16/Raw/raw_gdelt_asset_metals_derivatives.jsonl @@ -0,0 +1,8 @@ +{"url": "https://www.eastbaytimes.com/2026/04/15/oral-b-water-flosser-vs-burst-water-flosser/", "url_mobile": "https://www.eastbaytimes.com/2026/04/15/oral-b-water-flosser-vs-burst-water-flosser/amp/", "title": "Oral - B water flosser vs . Burst water flosser", "seendate": "20260416T120000Z", "socialimage": "https://www.eastbaytimes.com/wp-content/uploads/2026/04/oral-b-water-flosser-vs-burst-water-flosser-326244-09b180.jpg", "domain": "eastbaytimes.com", "language": "English", "sourcecountry": "United States"} +{"url": "https://www.finanznachrichten.de/nachrichten-2026-04/68216726-formation-metals-durchteuft-1-8-g-t-au-auf-21-9-m-oestlich-von-1-75-g-t-au-auf-30-4-m-auf-fortgeschrittenem-goldprojekt-n2-bohrungen-bestaetigen-bestae-248.htm", "url_mobile": "", "title": "Formation Metals durchteuft 1 , 8 g / t Au auf 21 , 9 m , östlich von 1 , 75 g / t Au auf 30 , 4 m auf fortgeschrittenem Goldprojekt N2 : Bohrungen bestätigen Beständigkeit von 300 m innerhalb von 5 km entlang von mineralisiertem Streichen", "seendate": "20260416T120000Z", "socialimage": "https://www.finanznachrichten.de/chart-formation-metals-inc-aktie-intraday-tradegate.png", "domain": "finanznachrichten.de", "language": "German", "sourcecountry": "Germany"} +{"url": "https://www.hellenicshippingnews.com/the-commodities-feed-oil-trades-lower-on-de-escalation-hopes/", "url_mobile": "", "title": "The Commodities Feed : Oil trades lower on de - escalation hopes | Hellenic Shipping News Worldwide", "seendate": "20260416T120000Z", "socialimage": "", "domain": "hellenicshippingnews.com", "language": "English", "sourcecountry": "China"} +{"url": "https://sudanile.com/%D8%A7%D9%84%D8%A7%D9%82%D8%AA%D8%B5%D8%A7%D8%AF-%D8%A7%D9%84%D8%B3%D9%88%D8%AF%D8%A7%D9%86%D9%8A-%D9%81%D9%8A-%D8%B8%D9%84-%D8%AD%D8%B1%D8%A8%D9%8A%D9%86/", "url_mobile": "", "title": "الاقتصاد السوداني في ظل حربين", "seendate": "20260416T120000Z", "socialimage": "https://sudanile.com/wp-content/uploads/2026/01/omersidahmed.jpg", "domain": "sudanile.com", "language": "Arabic", "sourcecountry": "Sudan"} +{"url": "https://finance.eastmoney.com/a/202604163707626246.html", "url_mobile": "", "title": "4月16日晚间沪深上市公司重大事项公告最新快递 _ 东方财富网", "seendate": "20260416T120000Z", "socialimage": "", "domain": "finance.eastmoney.com", "language": "Chinese", "sourcecountry": "China"} +{"url": "https://www.capital.gr/agores/3985670/xrimatistirio-epilektikes-kiniseis-kai-auximeni-metablitotita/", "url_mobile": "https://www.capital.gr/agores/3985670/xrimatistirio-epilektikes-kiniseis-kai-auximeni-metablitotita/?amp=true", "title": "Χρηματιστήριο : Επιλεκτικές κινήσεις και αυξημένη μεταβλητότητα", "seendate": "20260416T120000Z", "socialimage": "https://www.capital.gr/Content/ImagesDatabase/fb/1000x523/crop/both/1c/1c7dc27ec6bb415283b6d5247933b503.jpg", "domain": "capital.gr", "language": "Greek", "sourcecountry": "Greece"} +{"url": "https://www.1in.am/3705445.html", "url_mobile": "", "title": "Նավթի գներ – 15 / 04 / 26", "seendate": "20260416T120000Z", "socialimage": "https://www.1in.am/assets/uploads/2026/04/6000-849-540x360.jpg", "domain": "1in.am", "language": "Armenian", "sourcecountry": "Armenia"} +{"url": "https://www.newratings.de/du/main/company_headline.m?nid=19666857", "url_mobile": "", "title": "newratings . de", "seendate": "20260416T120000Z", "socialimage": "", "domain": "newratings.de", "language": "German", "sourcecountry": "Germany"} diff --git a/Data/1_Bronze_Raw/News_Scrapes/2026-04-16/Raw/raw_gdelt_macro_central_banks.jsonl b/Data/1_Bronze_Raw/News_Scrapes/2026-04-16/Raw/raw_gdelt_macro_central_banks.jsonl new file mode 100644 index 0000000..14f5d22 --- /dev/null +++ b/Data/1_Bronze_Raw/News_Scrapes/2026-04-16/Raw/raw_gdelt_macro_central_banks.jsonl @@ -0,0 +1,10 @@ +{"url": "https://edition.cnn.com/2026/04/16/economy/powell-fed-trump-interest-rates", "url_mobile": "", "title": "Trump own actions against Powell and the Fed are working against him", "seendate": "20260416T120000Z", "socialimage": "https://media.cnn.com/api/v1/images/stellar/prod/2025-07-24t211944z-216166992-rc28tfa1flx3-rtrmadp-3-usa-trump-fed-20260415201241131.JPG?c=16x9&q=w_800,c_fill", "domain": "edition.cnn.com", "language": "English", "sourcecountry": "United States"} +{"url": "https://uzmanpara.milliyet.com.tr/kap-haberi/pay-disinda-sermaye-piyasasi-araci-islemlerine-iliskin-bildirim-faiz-iceren/69e0c5d267ad3132ebe299f1/", "url_mobile": "", "title": "Pay Dışında Sermaye Piyasası Aracı İşlemlerine İlişkin Bildirim ( Faiz İçeren ) ", "seendate": "20260416T120000Z", "socialimage": "https://imgfinans.milliyet.com.tr/i/uzmanpara.png", "domain": "uzmanpara.milliyet.com.tr", "language": "Turkish", "sourcecountry": "Turkey"} +{"url": "https://www.finanznachrichten.de/nachrichten-2026-04/68216751-eur-jpy-gibt-leicht-nach-da-die-hoehere-inflation-in-der-eurozone-den-fokus-auf-ezb-signale-verlagert-545.htm", "url_mobile": "", "title": "EUR / JPY gibt leicht nach , da die höhere Inflation in der Eurozone den Fokus auf EZB - Signale verlagert", "seendate": "20260416T120000Z", "socialimage": "https://www.finanznachrichten.de/nicht-boersennotiert-chart.png", "domain": "finanznachrichten.de", "language": "German", "sourcecountry": "Germany"} +{"url": "https://dantri.com.vn/kinh-doanh/chu-tich-chung-khoan-rong-viet-noi-ve-moi-quan-he-voi-kido-foods-20260416175340107.htm", "url_mobile": "", "title": "Chủ tịch Chứng khoán Rồng Việt nói về mối quan hệ với KIDO Foods", "seendate": "20260416T120000Z", "socialimage": "https://cdnphoto.dantri.com.vn/M-Lm8acIY0RrjxcThm0TJyWRgKk=/zoom/1200_630/2026/04/16/mien-tuan-vds-cropped-1776336752527.jpg", "domain": "dantri.com.vn", "language": "Vietnamese", "sourcecountry": "Vietnam"} +{"url": "https://www.thehindubusinessline.com/markets/gold/gold-silver-prices-rise-on-weak-dollar-geopolitical-cues-analysts-see-near-term-volatility/article70868399.ece", "url_mobile": "https://www.thehindubusinessline.com/markets/gold/gold-silver-prices-rise-on-weak-dollar-geopolitical-cues-analysts-see-near-term-volatility/article70868399.ece/amp/", "title": "Why gold , silver are rising on weak dollar & geopolitical tensions ? ", "seendate": "20260416T120000Z", "socialimage": "https://bl-i.thgim.com/public/incoming/ylh7fy/article70868566.ece/alternates/LANDSCAPE_1200/2026-01-28T135228Z_1432587036_RC2CAJA9GI69_RTRMADP_3_GLOBAL-PRECIOUS-GERMANY-GOLD.JPG", "domain": "thehindubusinessline.com", "language": "English", "sourcecountry": "India"} +{"url": "https://www.marketpulse.com/markets/chart-alert-audusd-360-pips-rally-at-risk-of-a-minor-mean-reversion-decline-below-07200-before-new-upleg/", "url_mobile": "", "title": "Chart alert : AUD / USD 360 pips rally at risk of a minor mean reversion decline below 0 . 7200 before new upleg", "seendate": "20260416T120000Z", "socialimage": "https://storage.googleapis.com/web-content.oanda.com/images/AUD_1920x1080-1.original.jpg", "domain": "marketpulse.com", "language": "English", "sourcecountry": "United States"} +{"url": "http://www.irishsun.com/news/278987031/cbuae-highlights-uae-proactive-approach-to-financial-resilience-in-washington", "url_mobile": "", "title": "CBUAE highlights UAE proactive approach to financial resilience in Washington", "seendate": "20260416T120000Z", "socialimage": "https://image.chitra.live/api/v1/wps/3141291/96e30e2c-037d-4fa9-9b2f-e4e957f751e1/0/ZDhiMTA2ZjItMzk-600x315.jpg", "domain": "irishsun.com", "language": "English", "sourcecountry": "Ireland"} +{"url": "https://www.dailykos.com/stories/2026/4/16/800020794/community/this/", "url_mobile": "", "title": "Say What You Mean", "seendate": "20260416T120000Z", "socialimage": "https://www.dailykos.com/wp-content/uploads/sites/2/2026/04/20260416TillisNot.png", "domain": "dailykos.com", "language": "English", "sourcecountry": "United States"} +{"url": "https://www.vedomosti.ru/economics/news/2026/04/16/1190832-inflyatsionnie-ozhidaniya", "url_mobile": "", "title": "Инфляционные ожидания россиян в апреле сократились до 12 , 9 % ", "seendate": "20260416T114500Z", "socialimage": "https://sharing.vedomosti.ru/1776338218/vedomosti.ru/economics/news/2026/04/16/1190832-inflyatsionnie-ozhidaniya.jpg", "domain": "vedomosti.ru", "language": "Russian", "sourcecountry": "Russia"} +{"url": "https://www.brasil247.com:443/economia/governo-projeta-crescimento-de-2-56-do-pib-e-inflacao-de-3-04-em-2027-u72b8zti", "url_mobile": "", "title": "Governo projeta crescimento de 2 , 56 % do PIB e inflao de 3 , 04 % em 2027", "seendate": "20260416T114500Z", "socialimage": "https://cdn.brasil247.com/pb-b247gcp/swp/jtjeq9/media/20260415140444_37b5a25db4233fa94ee0623756c1a361ea0ae654e9afa9ded573a95baa186ee9.jpg", "domain": "brasil247.com", "language": "Portuguese", "sourcecountry": "Brazil"} diff --git a/Data/1_Bronze_Raw/News_Scrapes/2026-04-16/Raw/raw_gdelt_macro_geopolitics_risk.jsonl b/Data/1_Bronze_Raw/News_Scrapes/2026-04-16/Raw/raw_gdelt_macro_geopolitics_risk.jsonl new file mode 100644 index 0000000..36dbfea --- /dev/null +++ b/Data/1_Bronze_Raw/News_Scrapes/2026-04-16/Raw/raw_gdelt_macro_geopolitics_risk.jsonl @@ -0,0 +1,9 @@ +{"url": "https://www.unian.ua/economics/other/ne-vistachaye-stazhu-dlya-pensiji-ukrajincyam-poyasnili-yak-dokupiti-roki-i-skilki-ce-koshtuye-13351200.html", "url_mobile": "https://www.unian.ua/economics/other/ne-vistachaye-stazhu-dlya-pensiji-ukrajincyam-poyasnili-yak-dokupiti-roki-i-skilki-ce-koshtuye-ostanni-novini-amp-13351200.html", "title": "Що робити , якщо не вистачає стажу для пенсії - в ПФУ пояснили , як купити роки", "seendate": "20260416T120000Z", "socialimage": "https://images.unian.net/photos/2025_07/thumb_files/620_324_1753794916-1797.jpg?1", "domain": "unian.ua", "language": "Ukrainian", "sourcecountry": "Ukraine"} +{"url": "https://finance.eastmoney.com/a/202604163707548732.html", "url_mobile": "", "title": " AI需求极其强劲 ! 台积电法说会实录 : 供不应求将持续至至少2027年 _ 东方财富网", "seendate": "20260416T120000Z", "socialimage": "", "domain": "finance.eastmoney.com", "language": "Chinese", "sourcecountry": "China"} +{"url": "https://www.volynnews.com/news/all/u-lutskomu-rayoni-dvoye-brativ-iaki-perebuvaiut-v-rozshuku-pobylysia-z-hrupoiu-opovishchennia/", "url_mobile": "", "title": "У Луцькому районі двоє братів , які перебувають в розшуку , побилися з групою оповіщення", "seendate": "20260416T120000Z", "socialimage": "https://www.volynnews.com/files/news/2026/04-16/422588/1.jpg", "domain": "volynnews.com", "language": "Ukrainian", "sourcecountry": "Ukraine"} +{"url": "https://www.design-reuse.com/news/202530378-three-misconceptions-about-the-402b-semiconductor-foundry-industry/", "url_mobile": "", "title": "Three Misconceptions About the $402B Semiconductor Foundry Industry", "seendate": "20260416T120000Z", "socialimage": "", "domain": "design-reuse.com", "language": "English", "sourcecountry": "China"} +{"url": "https://www.redlandsdailyfacts.com/2026/04/16/us-iran-war-israel/", "url_mobile": "", "title": "Pakistani army chief visits Tehran in hopes of renewed US - Iran talks", "seendate": "20260416T120000Z", "socialimage": "https://www.redlandsdailyfacts.com/wp-content/uploads/2026/04/APTOPIX_Iran_War_97981-1.jpg", "domain": "redlandsdailyfacts.com", "language": "English", "sourcecountry": "United States"} +{"url": "https://www.laprovincia.es/economia/2026/04/16/inflacion-eurozona-repunta-2-6-marzo-encarecimiento-energia-guerra-iran-129169885.html", "url_mobile": "https://www.laprovincia.es/economia/2026/04/16/inflacion-eurozona-repunta-2-6-marzo-encarecimiento-energia-guerra-iran-129169885.amp.html", "title": "La inflación de la eurozona repunta al 2 , 6 % en marzo por el encarecimiento de la energía tras la guerra en Irán", "seendate": "20260416T120000Z", "socialimage": "https://estaticos-cdn.prensaiberica.es/clip/de35dce5-458f-4b9e-905c-c4510e213079_16-9-discover-aspect-ratio_default_0.jpg", "domain": "laprovincia.es", "language": "Spanish", "sourcecountry": "Spain"} +{"url": "https://stars.glavred.info/ne-yunaya-i-s-probegom-tinu-karol-zhestko-podkololi-na-muzykalnoy-premii-10757126.html", "url_mobile": "https://stars.glavred.info/amp-ne-yunaya-i-s-probegom-tinu-karol-zhestko-podkololi-na-muzykalnoy-premii-10757126.html", "title": "Тина Кароль скандал - Тину Кароль подкололи на премии YUNA", "seendate": "20260416T120000Z", "socialimage": "https://images.glavred.info/2026_04/thumb_files/600x420/1776335136-1651.jpg", "domain": "stars.glavred.info", "language": "Russian", "sourcecountry": "Ukraine"} +{"url": "https://www.stcatharinesstandard.ca/news/world/united-states/killing-of-iranian-activist-in-canada-exposes-increasingly-bitter-divisions-within-the-diaspora/article_823736e8-ea08-5c6e-a647-04a9d4ebea58.html", "url_mobile": "", "title": "Killing of Iranian activist in Canada exposes increasingly bitter divisions within the diaspora", "seendate": "20260416T120000Z", "socialimage": "https://bloximages.chicago2.vip.townnews.com/stcatharinesstandard.ca/content/tncms/assets/v3/editorial/f/97/f9745984-3fc8-5ebf-a096-f17c596b40c4/69e0b8054e6de.image.jpg?crop=1620%2C851%2C0%2C114", "domain": "stcatharinesstandard.ca", "language": "English", "sourcecountry": "Canada"} +{"url": "https://multiplayer.it/notizie/tsmc-alza-previsioni-2026-ricavi-aumenteranno-ia.html", "url_mobile": "", "title": "TSMC alza le previsioni : nel 2026 i ricavi aumenteranno ancora grazie allIA", "seendate": "20260416T120000Z", "socialimage": "", "domain": "multiplayer.it", "language": "Italian", "sourcecountry": "Italy"} diff --git a/Data/1_Bronze_Raw/News_Scrapes/2026-04-16/Raw/raw_gdelt_macro_yields_dollar.jsonl b/Data/1_Bronze_Raw/News_Scrapes/2026-04-16/Raw/raw_gdelt_macro_yields_dollar.jsonl new file mode 100644 index 0000000..9c5d8a5 --- /dev/null +++ b/Data/1_Bronze_Raw/News_Scrapes/2026-04-16/Raw/raw_gdelt_macro_yields_dollar.jsonl @@ -0,0 +1,10 @@ +{"url": "https://www.thehindubusinessline.com/markets/stock-markets-close-lower-on-profit-taking-in-financial-shares/article70868922.ece", "url_mobile": "https://www.thehindubusinessline.com/markets/stock-markets-close-lower-on-profit-taking-in-financial-shares/article70868922.ece/amp/", "title": "Sensex , Nifty pare gains to end marginally lower , Adani Enterprises , Hindalco lead gainers", "seendate": "20260416T120000Z", "socialimage": "https://bl-i.thgim.com/public/incoming/vlfloy/article70867902.ece/alternates/LANDSCAPE_1200/PO_Candle_chart.jpg", "domain": "thehindubusinessline.com", "language": "English", "sourcecountry": "India"} +{"url": "https://www.handelsblatt.com/unternehmen/industrie/autozulieferer-bosch-ueberrascht-nach-roten-zahlen-mit-positivem-ausblick/100215955.html", "url_mobile": "", "title": "Autozulieferer : Bosch überrascht nach roten Zahlen mit positivem Ausblick", "seendate": "20260416T120000Z", "socialimage": "https://images.handelsblatt.com/Kf-15HB-2xTB/cover/2048/1152/0/0/93/72/0.5/0.5/bosch.jpg", "domain": "handelsblatt.com", "language": "German", "sourcecountry": "Germany"} +{"url": "https://www.marketpulse.com/markets/cable-eyes-13696-after-reclaiming-key-moving-averages-bulls-defend-13500/", "url_mobile": "", "title": "Cable eyes 1 . 3696 after reclaiming key moving averages , bulls defend 1 . 3500", "seendate": "20260416T120000Z", "socialimage": "https://storage.googleapis.com/web-content.oanda.com/images/GBP_1920x1080-1.original.jpg", "domain": "marketpulse.com", "language": "English", "sourcecountry": "United States"} +{"url": "https://www.fool.com/investing/2026/04/16/3-absurdly-cheap-stocks-to-buy-with-1000-while-the/?source=iedfolrf0000001", "url_mobile": "", "title": "3 Absurdly Cheap Stocks to Buy With $1 , 000 While the Market Is This Nervous", "seendate": "20260416T120000Z", "socialimage": "https://g.foolcdn.com/editorial/images/864973/holding-up-a-fan-of-5-dollar-bills.jpg", "domain": "fool.com", "language": "English", "sourcecountry": "United States"} +{"url": "http://www.kreiszeitung.de/politik/trump-koennte-mit-genialer-strategie-den-krieg-im-iran-gewinnen-zr-94264746.html", "url_mobile": "", "title": "Trump blockiert Straße von Hormus : Mullah - Regime igeht das Geld aus", "seendate": "20260416T120000Z", "socialimage": "", "domain": "kreiszeitung.de", "language": "German", "sourcecountry": "Germany"} +{"url": "https://www.thehindubusinessline.com/markets/gold/gold-silver-prices-rise-on-weak-dollar-geopolitical-cues-analysts-see-near-term-volatility/article70868399.ece", "url_mobile": "https://www.thehindubusinessline.com/markets/gold/gold-silver-prices-rise-on-weak-dollar-geopolitical-cues-analysts-see-near-term-volatility/article70868399.ece/amp/", "title": "Why gold , silver are rising on weak dollar & geopolitical tensions ? ", "seendate": "20260416T120000Z", "socialimage": "https://bl-i.thgim.com/public/incoming/ylh7fy/article70868566.ece/alternates/LANDSCAPE_1200/2026-01-28T135228Z_1432587036_RC2CAJA9GI69_RTRMADP_3_GLOBAL-PRECIOUS-GERMANY-GOLD.JPG", "domain": "thehindubusinessline.com", "language": "English", "sourcecountry": "India"} +{"url": "https://www.capital.gr/agores/3985670/xrimatistirio-epilektikes-kiniseis-kai-auximeni-metablitotita/", "url_mobile": "https://www.capital.gr/agores/3985670/xrimatistirio-epilektikes-kiniseis-kai-auximeni-metablitotita/?amp=true", "title": "Χρηματιστήριο : Επιλεκτικές κινήσεις και αυξημένη μεταβλητότητα", "seendate": "20260416T120000Z", "socialimage": "https://www.capital.gr/Content/ImagesDatabase/fb/1000x523/crop/both/1c/1c7dc27ec6bb415283b6d5247933b503.jpg", "domain": "capital.gr", "language": "Greek", "sourcecountry": "Greece"} +{"url": "http://news.fjsen.com/2026-04/16/content_32170251.htm", "url_mobile": "", "title": "老工业基地在绿色转型中焕发新气象 来自草原钢城一线的调查报告", "seendate": "20260416T120000Z", "socialimage": "", "domain": "news.fjsen.com", "language": "Chinese", "sourcecountry": "China"} +{"url": "https://www.marketpulse.com/markets/chart-alert-audusd-360-pips-rally-at-risk-of-a-minor-mean-reversion-decline-below-07200-before-new-upleg/", "url_mobile": "", "title": "Chart alert : AUD / USD 360 pips rally at risk of a minor mean reversion decline below 0 . 7200 before new upleg", "seendate": "20260416T120000Z", "socialimage": "https://storage.googleapis.com/web-content.oanda.com/images/AUD_1920x1080-1.original.jpg", "domain": "marketpulse.com", "language": "English", "sourcecountry": "United States"} +{"url": "https://www.israelnetz.com/2026/04/16/", "url_mobile": "", "title": "16 . 04 . 2026 - Israelnetz", "seendate": "20260416T120000Z", "socialimage": "", "domain": "israelnetz.com", "language": "German", "sourcecountry": "Israel"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/AAPL_2026-04-04.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/AAPL_2026-04-04.jsonl new file mode 100644 index 0000000..a169476 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/AAPL_2026-04-04.jsonl @@ -0,0 +1,3 @@ +{"metadata": {"ticker": "AAPL", "form_type": "4", "filed_at": "2026-04-03T18:30:45-04:00", "accession_no": "0001140361-26-013192", "url": "https://www.sec.gov/Archives/edgar/data/320193/000114036126013192/xslF345X06/form4.xml", "ingested_at": "2026-04-04T22:49:03.052799"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "O'BRIEN DEIRDRE", "role": "Senior Vice President", "transactions": [{"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 64317.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 201127.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 34315.0, "price": 255.63, "total_value": 8771943.45, "post_transaction_shares": 166812.0, "is_10b5_1_planned": true}, {"date": "2026-04-02", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 20338.0, "price": 255.12, "total_value": 5188630.5600000005, "post_transaction_shares": 146474.0, "is_10b5_1_planned": true}, {"date": "2026-04-02", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 9664.0, "price": 255.82, "total_value": 2472244.48, "post_transaction_shares": 136810.0, "is_10b5_1_planned": true}]}} +{"metadata": {"ticker": "AAPL", "form_type": "4", "filed_at": "2026-04-03T18:30:43-04:00", "accession_no": "0001140361-26-013191", "url": "https://www.sec.gov/Archives/edgar/data/320193/000114036126013191/xslF345X06/form4.xml", "ingested_at": "2026-04-04T22:49:03.628698"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Khan Sabih", "role": "COO", "transactions": [{"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 64317.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 1107212.0, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 33317.0, "price": 255.63, "total_value": 8516824.709999999, "post_transaction_shares": 1073895.0, "is_10b5_1_planned": false}]}} +{"metadata": {"ticker": "AAPL", "form_type": "4", "filed_at": "2026-04-03T18:30:41-04:00", "accession_no": "0001140361-26-013190", "url": "https://www.sec.gov/Archives/edgar/data/320193/000114036126013190/xslF345X06/form4.xml", "ingested_at": "2026-04-04T22:49:04.205425"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "COOK TIMOTHY D", "role": "Chief Executive Officer", "transactions": [{"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 131576.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 3411994.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 66627.0, "price": 255.63, "total_value": 17031860.009999998, "post_transaction_shares": 3345367.0, "is_10b5_1_planned": true}, {"date": "2026-04-02", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 5087.0, "price": 251.25, "total_value": 1278108.75, "post_transaction_shares": 3340280.0, "is_10b5_1_planned": true}, {"date": "2026-04-02", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 9147.0, "price": 252.11, "total_value": 2306050.17, "post_transaction_shares": 3331133.0, "is_10b5_1_planned": true}, {"date": "2026-04-02", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 1878.0, "price": 253.13, "total_value": 475378.14, "post_transaction_shares": 3329255.0, "is_10b5_1_planned": true}, {"date": "2026-04-02", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 16083.0, "price": 254.37, "total_value": 4091032.71, "post_transaction_shares": 3313172.0, "is_10b5_1_planned": true}, {"date": "2026-04-02", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 28188.0, "price": 255.17, "total_value": 7192731.96, "post_transaction_shares": 3284984.0, "is_10b5_1_planned": true}, {"date": "2026-04-02", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 4566.0, "price": 256.0, "total_value": 1168896.0, "post_transaction_shares": 3280418.0, "is_10b5_1_planned": true}]}} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/AMAT_2026-04-04.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/AMAT_2026-04-04.jsonl new file mode 100644 index 0000000..e26acbf --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/AMAT_2026-04-04.jsonl @@ -0,0 +1 @@ +{"metadata": {"ticker": "AMAT", "form_type": "4", "filed_at": "2026-04-02T18:44:21-04:00", "accession_no": "0001628280-26-023379", "url": "https://www.sec.gov/Archives/edgar/data/6951/000162828026023379/xslF345X06/wk-form4_1775169858.xml", "ingested_at": "2026-04-04T22:54:48.024214"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Sanders Adam", "role": "Corp. Controller & CAO", "transactions": [{"date": "2026-04-01", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 125.0, "price": 353.8, "total_value": 44225.0, "post_transaction_shares": 4548.0, "is_10b5_1_planned": false}]}} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/AMZN_2026-04-04.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/AMZN_2026-04-04.jsonl new file mode 100644 index 0000000..9b4bfab --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/AMZN_2026-04-04.jsonl @@ -0,0 +1 @@ +{"metadata": {"ticker": "AMZN", "form_type": "4", "filed_at": "2026-04-03T16:41:29-04:00", "accession_no": "0001018724-26-000010", "url": "https://www.sec.gov/Archives/edgar/data/1018724/000101872426000010/xslF345X06/wk-form4_1775248886.xml", "ingested_at": "2026-04-04T22:54:20.480654"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Herrington Douglas J", "role": "CEO Worldwide Amazon Stores", "transactions": [{"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 1000.0, "price": 210.5, "total_value": 210500.0, "post_transaction_shares": 520361.0, "is_10b5_1_planned": true}]}} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/AVGO_2026-04-04.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/AVGO_2026-04-04.jsonl new file mode 100644 index 0000000..b035647 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/AVGO_2026-04-04.jsonl @@ -0,0 +1 @@ +{"metadata": {"ticker": "AVGO", "form_type": "8-K", "filed_at": "2026-04-02T17:25:00-04:00", "accession_no": "0001193125-26-140574", "url": "https://www.sec.gov/Archives/edgar/data/1730168/000119312526140574/d109450d8k.htm", "ingested_at": "2026-04-04T22:54:26.159841"}, "raw_text": "8-K false 0001730168 0001730168 2026-03-30 2026-03-30 UNITED STATES SECURITIES AND EXCHANGE COMMISSION Washington, D.C. 20549 FORM 8-K CURRENT REPORT PURSUANT TO SECTION 13 OR 15(d) OF THE SECURITIES EXCHANGE ACT OF 1934 Date of Report (Date of earliest event reported): March 30, 2026 Broadcom Inc. (Exact Name of Registrant as Specified in Charter) Delaware 001-38449 35-2617337 (State or other jurisdiction of incorporation) (Commission File Number) (I.R.S. Employer Identification No.) 3421 Hillview Avenue Palo Alto , California 94304 (Address of principal executive offices including zip code) (650) 427-6000 (Registrant’s telephone number, including area code) Check the appropriate box below if the Form 8-K filing is intended to simultaneously satisfy the filing obligation of the registrant under any of the following provisions: ☐ Written communications pursuant to Rule 425 under the Securities Act (17 CFR 230.425) ☐ Soliciting material pursuant to Rule 14a-12 under the Exchange Act (17 CFR 240.14a-12) ☐ Pre-commencement communications pursuant to Rule 14d-2(b) under the Exchange Act (17 CFR 240.14d-2(b)) ☐ Pre-commencement communications pursuant to Rule 13e-4(c) under the Exchange Act (17 CFR 240.13e-4(c)) Securities registered pursuant to Section 12(b) of the Act: Title of Each Class Trading Symbol(s) Name of Each Exchange on Which Registered Common Stock, $0.001 par value AVGO The NASDAQ Global Select Market Indicate by check mark whether the registrant is an emerging growth company as defined in Rule 405 of the Securities Act of 1933 (§230.405 of this chapter) or Rule 12b-2 of the Securities Exchange Act of 1934 (§240.12b-2 of this chapter). Emerging growth company ☐ If an emerging growth company, indicate by check mark if the registrant has elected not to use the extended transition period for complying with any new or revised financial accounting standards provided pursuant to Section 13(a) of the Exchange Act. ☐ Item 5.02 Departure of Directors or Certain Officers; Election of Directors; Appointment of Certain Officers; Compensatory Arrangements of Certain Officers. Chief Financial Officer Transition On March 30, 2026, Kirsten M. Spears notified Broadcom Inc. (the “Company”) of her retirement and resigned from her position as Chief Financial Officer and Chief Accounting Officer of the Company, effective as of June 12, 2026. On March 30, 2026, the Board of Directors of the Company (the “Board”) appointed Amie Thuener to succeed Ms. Spears as the Chief Financial Officer of the Company, effective as of June 12, 2026. The employment of Ms. Thuener with the Company is expected to commence on May 4, 2026 and she will assume the role of Chief Financial Officer following the retirement of Ms. Spears on June 12, 2026. Ms. Thuener, age 51, has served as Vice President, Corporate Controller and Chief Accounting Officer of Alphabet Inc. since 2018. Ms. Thuener held several senior finance positions at Alphabet from 2013 to 2018, including as Vice President and Chief Accountant. Prior to joining Alphabet, Ms. Thuener was at PricewaterhouseCoopers LLP from 1996 to 2012 and held several senior management positions, including as Managing Director, Transaction Services. Ms. Thuener is a Certified Public Accountant and a Chartered Global Management Accountant. There are no family relationships between Ms. Thuener and any director or executive officer of the Company as defined in Item 401(d) of Regulation S-K, and Ms. Thuener has no direct or indirect material interest in any transaction or proposed transaction required to be disclosed pursuant to Item 404(a) of Regulation S-K. Kirsten M. Spears Transition and Consulting Agreement In connection with the retirement of Ms. Spears, the Company entered into a transition and consulting agreement with Ms. Spears, dated as of April 1, 2026 (the “Transition Agreement”). The Transition Agreement provides that, following the conclusion of Ms. Spears’ employment with the Company on June 12, 2026, she will provide consulting services to the Company, as reasonably requested by the Chief Executive Officer of the Company, until March 15, 2027, unless the consulting period terminates earlier in accordance with the terms of the Transition Agreement. During the consulting period, Ms. Spears’ outstanding equity awards will continue to vest in accordance with their terms (provided that the performance-based equity awards will in no event vest at a level exceeding target). Ms. Spears will not receive any other compensation during the consulting period. The Transition Agreement includes a general release of claims in favor of the Company. Amie Thuener Offer Letter and Equity Awards In connection with her employment with the Company and appointment as Chief Financial Officer of the Company, effective as of June 12, 2026, the Company entered into an offer letter with Ms. Thuener, dated as of March 30, 2026, which sets forth the material terms of her employment and compensation (the “Offer Letter”). Pursuant to the Offer Letter, Ms. Thuener will receive an annual base salary of $700,000 and will be eligible to participate in the Company’s annual performance bonus plan with a target bonus opportunity of 100% of her base salary. Ms. Thuener will also receive a $1,000,000 sign-on cash bonus, payable within 30 days following the commencement of her employment. The Offer Letter further provides that, subject to the approval of the Compensation Committee of the Board and Ms. Thuener’s continued employment through the applicable grant date, Ms. Thuener will be granted equity awards under the Company’s 2012 Stock Incentive Plan consisting of (i) 50,000 restricted stock units (“RSUs”) and (ii) 50,000 performance stock units (“PSUs”) at target. The equity awards are expected to be granted on June 15, 2026. The RSUs will vest in equal quarterly installments over a four-year period following the grant date, subject to Ms. Thuener’s continued employment through each applicable vesting date. The PSUs will vest annually over a four-year period across four overlapping performance periods (March 2, 2026 through March 1, 2027, March 2, 2026 through March 1, 2028, March 2, 2026 through March 1, 2029 and March 2, 2026 through March 1, 2030) based on the Company’s total stockholder return relative to the S&P 500 and the Company’s absolute total stockholder return for the applicable performance period, in each case subject to Ms. Thuener’s continued employment through the anniversary of the grant date immediately following the end of each applicable performance period. The maximum vesting for the PSUs is 200% of the total target number of shares. The equity awards will be subject to the other terms and conditions set forth in the Company’s 2012 Stock Incentive Plan and the applicable award agreements. In addition, Ms. Thuener is expected to enter into the Company’s standard form of indemnification and advancement agreement and a severance benefit agreement on terms and conditions materially consistent with those applicable to Ms. Spears pursuant to her severance benefit agreement, as described in the Company’s definitive proxy statement filed with the U.S. Securities and Exchange Commission on March 2, 2026. SIGNATURE Pursuant to the requirements of the Securities Exchange Act of 1934, the registrant has duly caused this report to be signed on its behalf by the undersigned hereunto duly authorized. Date: April 2, 2026 Broadcom Inc. By: /s/ Hock E. Tan Hock E. Tan President and Chief Executive Officer", "parsed_data": {}} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/BKNG_2026-04-04.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/BKNG_2026-04-04.jsonl new file mode 100644 index 0000000..160c798 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/BKNG_2026-04-04.jsonl @@ -0,0 +1,3 @@ +{"metadata": {"ticker": "BKNG", "form_type": "8-K", "filed_at": "2026-04-02T16:34:43-04:00", "accession_no": "0000950157-26-000465", "url": "https://www.sec.gov/Archives/edgar/data/1075531/000095015726000465/form8-k.htm", "ingested_at": "2026-04-04T22:54:56.421512"}, "raw_text": "false 12-31 0001075531 BKNG31 BKNG37 BKNG35 BKNG38 BKNG44 BKNG36 BKNG31A BKNG33 BKNG30 BKNG45 BKNG46 BKNG26 BKNG28A BKNG28 BKNG34 BKNG32A BKNG27 BKNG29 BKNG32 BKNG29A 0001075531 2026-04-02 2026-04-02 0001075531 bkng:Three750SeniorNotesDue2037Member 2026-04-02 2026-04-02 0001075531 bkng:Four125SeniorNotesDue2038Member 2026-04-02 2026-04-02 0001075531 bkng:Four250SeniorNotesDue2029Member 2026-04-02 2026-04-02 0001075531 bkng:One800SeniorNotesDue2027Member 2026-04-02 2026-04-02 0001075531 bkng:Three500SeniorNotesDue2029Member 2026-04-02 2026-04-02 0001075531 bkng:Three625SeniorNotesDue2028Member 2026-04-02 2026-04-02 0001075531 bkng:Four500SeniorNotesDue2046Member 2026-04-02 2026-04-02 0001075531 bkng:Zero500SeniorNotesDue2028Member 2026-04-02 2026-04-02 0001075531 bkng:Three125SeniorNotesDue2031Member 2026-04-02 2026-04-02 0001075531 bkng:Four750SeniorNotesDue2034Member 2026-04-02 2026-04-02 0001075531 bkng:Three625SeniorNotesDue2035Member 2026-04-02 2026-04-02 0001075531 bkng:Three875SeniorNotesDue2045Member 2026-04-02 2026-04-02 0001075531 bkng:Three750SeniorNotesDue2036Member 2026-04-02 2026-04-02 0001075531 bkng:Three000SeniorNotesDue2030Member 2026-04-02 2026-04-02 0001075531 bkng:Four000SeniorNotesDue2044Member 2026-04-02 2026-04-02 0001075531 bkng:Four500SeniorNotesDue2031Member 2026-04-02 2026-04-02 0001075531 bkng:Four000SeniorNotesDue2026Member 2026-04-02 2026-04-02 0001075531 bkng:Four125SeniorNotesDue2033Member 2026-04-02 2026-04-02 0001075531 bkng:Three250SeniorNotesDue2032Member 2026-04-02 2026-04-02 0001075531 bkng:Three625SeniorNotesDue2032Member 2026-04-02 2026-04-02 UNITED STATES SECURITIES AND EXCHANGE COMMISSION Washington, D.C. 20549 FORM 8-K CURRENT REPORT Pursuant to Section 13 or 15(d) of the Securities Exchange Act of 1934 Date of Report (Date of earliest event reported) April 2, 2026 Booking Holdings Inc. (Exact name of registrant as specified in its charter) Delaware 1-36691 06-1528493 (State or other Jurisdiction of Incorporation) (Commission File Number) (IRS Employer Identification No.) 800 Connecticut Avenue Norwalk Connecticut 06854 (Address of principal executive offices) (zip code) Registrant's telephone number, including area code: ( 203 ) 299-8000 N/A (Former name or former address, if changed since last report) Check the appropriate box below if the Form 8-K filing is intended to simultaneously satisfy the filing obligation of the registrant under any of the following\n provisions: ☐ Written communications pursuant to Rule 425 under the Securities Act (17 CFR 230.425) ☐ Soliciting material pursuant to Rule 14a-12 under the Exchange Act (17 CFR 240.14a-12) ☐ Pre-commencement communications pursuant to Rule 14d-2(b) under the Exchange Act (17 CFR 240.14d-2(b)) ☐ Pre-commencement communications pursuant to Rule 13e-4(c) under the Exchange Act (17 CFR 240.13e-4(c)) Securities Registered Pursuant to Section 12(b) of the Act: Title of Each Class: Trading Symbol Name of Each Exchange on which Registered: Common Stock par value $0.008 per share BKNG The NASDAQ Global Select Market 4.000% Senior Notes Due 2026 BKNG 26 The NASDAQ Stock Market LLC 1.800% Senior Notes Due 2027 BKNG 27 The NASDAQ Stock Market LLC 0.500% Senior Notes Due 2028 BKNG 28 The NASDAQ Stock Market LLC 3.625% Senior Notes Due 2028 BKNG 28A The NASDAQ Stock Market LLC 3.500% Senior Notes Due 2029 BKN 29A The NASDAQ Stock Market LLC 4.250% Senior Notes Due 2029 BKN 29 The NASDAQ Stock Market LLC 3.000% Senior Notes Due 2030 BKNG 30 The NASDAQ Stock Market LLC 3.125% Senior Notes Due 2031 BKNG 31A The NASDAQ Stock Market LLC 4.500% Senior Notes Due 2031 BKNG 31 The NASDAQ Stock Market LLC 3.625% Senior Notes Due 2032 BKNG 32 The NASDAQ Stock Market LLC 3.250% Senior Notes Due 2032 BKNG 32A The NASDAQ Stock Market LLC 4.125% Senior Notes Due 2033 BKNG 33 The NASDAQ Stock Market LLC 4.750% Senior Notes Due 2034 BKNG 34 The NASDAQ Stock Market LLC 3.625% Senior Notes Due 2035 BKNG 35 The NASDAQ Stock Market LLC 3.750% Senior Notes Due 2036 BKNG 36 The NASDAQ Stock Market LLC 3.750% Senior Notes Due 2037 BKNG 37 The NASDAQ Stock Market LLC 4.125% Senior Notes Due 2038 BKNG 38 The NASDAQ Stock Market LLC 4.000% Senior Notes Due 2044 BKNG 44 The NASDAQ Stock Market LLC 3.875% Senior Notes Due 2045 BKNG 45 The NASDAQ Stock Market LLC 4.500% Senior Notes Due 2046 BKNG 46 The NASDAQ Stock Market LLC Indicate by check mark whether the registrant is an emerging growth company as defined in Rule 405 of the Securities Act of 1933 (§230.405 of this chapter) or Rule 12b-2\n of the Securities Exchange Act of 1934 (§240.12b-2 of this chapter). Emerging growth company ☐ If an emerging growth company, indicate by check mark if the registrant has elected not to use the extended transition period for complying with any new or revised\n financial accounting standards provided pursuant to Section 13(a) of the Exchange Act. ☐ Item 5.03. Amendments to Articles of incorporation or Bylaws; Change in Fiscal Year. On April 2, 2026, Booking Holdings Inc. (the “Company”) filed an amendment to its Restated Certificate of Incorporation with the Delaware Secretary of State to effect the\n previously announced twenty-five-for-one forward stock split of the Company’s common stock and to proportionately increase the number of shares of the Company’s authorized common stock from 1,000,000,000 to 25,000,000,000. The amendment, which became\n effective at 4:01 p.m. Eastern Time on April 2, 2026, is filed as Exhibit 3.1 to this Current Report on Form 8-K. Trading is expected to commence on a split-adjusted basis at market open on Monday, April 6, 2026. Item 9.01. Financial Statements and Exhibits . (d) Exhibits Exhibit Number Description 3.1 Amendment to Restated Certificate of Incorporation of Booking\n Holdings Inc., dated April 2, 2026. 104 Cover Page Interactive Data File - the cover page interactive data file does not appear in the Interactive Data File because its XBRL tags are embedded within the\n Inline XBRL document. SIGNATURES Pursuant to the requirements of the Securities Exchange Act of 1934, the Registrant has duly caused this report to be signed on its behalf by the\n undersigned hereunto duly authorized. BOOKING HOLDINGS INC. By: /s/ Peter J. Millones Name: Peter J. Millones Title: Executive Vice President and General Counsel Date: April 2, 2026", "parsed_data": {}} +{"metadata": {"ticker": "BKNG", "form_type": "8-K", "filed_at": "2026-04-02T16:12:50-04:00", "accession_no": "0001075531-26-000014", "url": "https://www.sec.gov/Archives/edgar/data/1075531/000107553126000014/bkng-20260402.htm", "ingested_at": "2026-04-04T22:54:57.020686"}, "raw_text": "bkng-20260402 false 0001075531 0001075531 2026-04-02 2026-04-02 0001075531 us-gaap:CommonStockMember 2026-04-02 2026-04-02 0001075531 bkng:A4000SeniorNotesDue2026Member 2026-04-02 2026-04-02 0001075531 bkng:A1.8SeniorNotesDueMarch2027Member 2026-04-02 2026-04-02 0001075531 bkng:A05SeniorNotesDueMarch2028Member 2026-04-02 2026-04-02 0001075531 bkng:A3625SeniorNotesDue2028Member 2026-04-02 2026-04-02 0001075531 bkng:A3.500SeniorNotesDueMarch2029Member 2026-04-02 2026-04-02 0001075531 bkng:A4250SeniorNotesDue2029Member 2026-04-02 2026-04-02 0001075531 bkng:A3.0SeniorNotesDueNovember2030Member 2026-04-02 2026-04-02 0001075531 bkng:A3.125SeniorNotesDueMay2031Member 2026-04-02 2026-04-02 0001075531 bkng:A450SeniorNotesDue2031Member 2026-04-02 2026-04-02 0001075531 bkng:A3.625SeniorNotesDueMarch2032Member 2026-04-02 2026-04-02 0001075531 bkng:A3.250SeniorNotesDueNovember2032Member 2026-04-02 2026-04-02 0001075531 bkng:A4125SeniorNotesDue2033Member 2026-04-02 2026-04-02 0001075531 bkng:A4750SeniorNotesDue2034Member 2026-04-02 2026-04-02 0001075531 bkng:A3.625SeniorNotesDueNovember2035Member 2026-04-02 2026-04-02 0001075531 bkng:A3.750SeniorNotesDueMarch2036Member 2026-04-02 2026-04-02 0001075531 bkng:A3.750SeniorNotesDueNovember2037Member 2026-04-02 2026-04-02 0001075531 bkng:A4.125SeniorNotesDueMay2038Member 2026-04-02 2026-04-02 0001075531 bkng:A4.000SeniorNotesDueMarch2044Member 2026-04-02 2026-04-02 0001075531 bkng:A3.875SeniorNotesDueMarch2045Member 2026-04-02 2026-04-02 0001075531 bkng:A4.500SeniorNotesDueMay2046Member 2026-04-02 2026-04-02 UNITED STATES SECURITIES AND EXCHANGE COMMISSION Washington, D.C. 20549 FORM 8-K CURRENT REPORT Pursuant to Section 13 or 15(d) of the Securities Exchange Act of 1934 Date of Report (Date of earliest event reported) April 2, 2026 Booking Holdings Inc. (Exact name of registrant as specified in its charter) Delaware 1-36691 06-1528493 (State or other Jurisdiction of Incorporation) (Commission File Number) (IRS Employer Identification No.) 800 Connecticut Avenue Norwalk Connecticut 06854 (Address of principal executive offices) (zip code) Registrant's telephone number, including area code: ( 203 ) 299-8000 N/A (Former name or former address, if changed since last report) Check the appropriate box below if the Form 8-K filing is intended to simultaneously satisfy the filing obligation of the registrant under any of the following provisions: ☐ Written communications pursuant to Rule 425 under the Securities Act (17 CFR 230.425) ☐ Soliciting material pursuant to Rule 14a-12 under the Exchange Act (17 CFR 240.14a-12) ☐ Pre-commencement communications pursuant to Rule 14d-2(b) under the Exchange Act (17 CFR 240.14d-2(b)) ☐ Pre-commencement communications pursuant to Rule 13e-4(c) under the Exchange Act (17 CFR 240.13e-4(c)) Securities Registered Pursuant to Section 12(b) of the Act: Title of Each Class: Trading Symbol Name of Each Exchange on which Registered: Common Stock par value $0.008 per share BKNG The NASDAQ Global Select Market 4.000% Senior Notes Due 2026 BKNG 26 The NASDAQ Stock Market LLC 1.800% Senior Notes Due 2027 BKNG 27 The NASDAQ Stock Market LLC 0.500% Senior Notes Due 2028 BKNG 28 The NASDAQ Stock Market LLC 3.625% Senior Notes Due 2028 BKNG 28A The NASDAQ Stock Market LLC 3.500% Senior Notes Due 2029 BKNG 29A The NASDAQ Stock Market LLC 4.250% Senior Notes Due 2029 BKNG 29 The NASDAQ Stock Market LLC 3.000% Senior Notes Due 2030 BKNG 30 The NASDAQ Stock Market LLC 3.125% Senior Notes Due 2031 BKNG 31A The NASDAQ Stock Market LLC 4.500% Senior Notes Due 2031 BKNG 31 The NASDAQ Stock Market LLC 3.625% Senior Notes Due 2032 BKNG 32 The NASDAQ Stock Market LLC 3.250% Senior Notes Due 2032 BKNG 32A The NASDAQ Stock Market LLC 4.125% Senior Notes Due 2033 BKNG 33 The NASDAQ Stock Market LLC 4.750% Senior Notes Due 2034 BKNG 34 The NASDAQ Stock Market LLC 3.625% Senior Notes Due 2035 BKNG 35 The NASDAQ Stock Market LLC 3.750% Senior Notes Due 2036 BKNG 36 The NASDAQ Stock Market LLC 3.750% Senior Notes Due 2037 BKNG 37 The NASDAQ Stock Market LLC 4.125% Senior Notes Due 2038 BKNG 38 The NASDAQ Stock Market LLC 4.000% Senior Notes Due 2044 BKNG 44 The NASDAQ Stock Market LLC 3.875% Senior Notes Due 2045 BKNG 45 The NASDAQ Stock Market LLC 4.500% Senior Notes Due 2046 BKNG 46 The NASDAQ Stock Market LLC Indicate by check mark whether the registrant is an emerging growth company as defined in Rule 405 of the Securities Act of 1933 (§230.405 of this chapter) or Rule 12b-2 of the Securities Exchange Act of 1934 (§240.12b-2 of this chapter). Emerging growth company ☐ If an emerging growth company, indicate by check mark if the registrant has elected not to use the extended transition period for complying with any new or revised financial accounting standards provided pursuant to Section 13(a) of the Exchange Act. ☐ Item 5.02. Departure of Directors or Certain Officers; Election of Directors; Appointment of Certain Officers; Compensatory Arrangements of Certain Officers. On April 2, 2026, Booking Holdings Inc. (the \"Company\") announced that it has appointed Caroline Sullivan as its Senior Vice President, Chief Accounting Officer, and Controller effective as of April 29, 2026. Ms. Sullivan, age 57, served as Vice President, Procurement and Real Estate of Elevance Health, a health insurance company, from June 2025 to March 2026. Prior to this, Ms. Sullivan was Senior Vice President, Chief Accounting Officer and Corporate Controller at Moody's Corporation, a global risk assessment firm, from December 2018 to March 2025. Ms. Sullivan also served as Global Banking Controller of Bank of America from 2017 to 2018. Earlier in her career, she held various finance positions with Morgan Stanley and Allied Irish Bank. Ms. Sullivan began her career at Ernst and Young and is a Certified Public Accountant. In connection with Ms. Sullivan's appointment, she and the Company entered into an employment agreement with, among others, the following terms: • an initial annual base salary of $525,000; • a target annual bonus of 75% of base salary; • a grant of restricted stock units (\"RSUs\") expected to be made in May 2026 with a grant date fair value of $1,000,000; • a grant of performance share units (\"PSUs\") expected to be made in March 2027 with a grant date fair value at target of $1,000,000; • a new hire grant of RSUs expected to be made in May 2026 with a grant date fair value of $1,000,000; • a signing bonus of $300,000; and • in the event of her termination without cause, subject to the execution of a release of claims, severance benefits including payments equal to one times her base salary and target annual bonus, a pro-rated portion of any earned bonus for the year of termination if employment is terminated after June 30 of the then current year, health benefits for a period of 12 months, and any earned bonus for a prior completed year that has not yet been paid. Ms. Sullivan's RSUs and new hire RSUs will each vest in three equal annual installments on each of the first three anniversaries of the grant date, subject to her continuous service from the date of grant until the vesting date, with pro rata vesting upon a termination without cause or due to disability, and full vesting upon a termination due to death. Ms. Sullivan's PSU award will vest subject to such service and performance-based vesting provisions generally consistent with those applicable to similarly-situated executives who receive PSU grants in 2027. The awards will be subject to the terms of the respective award agreements for awards under the Company’s 1999 Omnibus Plan. In connection with Ms. Sullivan's appointment, the Company and Ms. Sullivan have also entered into a Non-Competition and Non-Solicitation Agreement and an Employee Confidentiality and Assignment Agreement. SIGNATURES Pursuant to the requirements of the Securities Exchange Act of 1934, the Registrant has duly caused this report to be signed on its behalf by the undersigned hereunto duly authorized. BOOKING HOLDINGS INC. By: /s/ Ewout L. Steenbergen Name: Ewout L. Steenbergen Title: Executive Vice President and Chief Financial Officer Date: April 2, 2026", "parsed_data": {}} +{"metadata": {"ticker": "BKNG", "form_type": "8-K", "filed_at": "2026-04-01T16:10:37-04:00", "accession_no": "0001075531-26-000012", "url": "https://www.sec.gov/Archives/edgar/data/1075531/000107553126000012/bkng-20260401.htm", "ingested_at": "2026-04-04T22:54:57.634231"}, "raw_text": "bkng-20260401 false 0001075531 0001075531 2026-04-01 2026-04-01 0001075531 us-gaap:CommonStockMember 2026-04-01 2026-04-01 0001075531 bkng:A4000SeniorNotesDue2026Member 2026-04-01 2026-04-01 0001075531 bkng:A1.8SeniorNotesDueMarch2027Member 2026-04-01 2026-04-01 0001075531 bkng:A05SeniorNotesDueMarch2028Member 2026-04-01 2026-04-01 0001075531 bkng:A3625SeniorNotesDue2028Member 2026-04-01 2026-04-01 0001075531 bkng:A3.500SeniorNotesDueMarch2029Member 2026-04-01 2026-04-01 0001075531 bkng:A4250SeniorNotesDue2029Member 2026-04-01 2026-04-01 0001075531 bkng:A3.0SeniorNotesDueNovember2030Member 2026-04-01 2026-04-01 0001075531 bkng:A3.125SeniorNotesDueMay2031Member 2026-04-01 2026-04-01 0001075531 bkng:A450SeniorNotesDue2031Member 2026-04-01 2026-04-01 0001075531 bkng:A3.625SeniorNotesDueMarch2032Member 2026-04-01 2026-04-01 0001075531 bkng:A3.250SeniorNotesDueNovember2032Member 2026-04-01 2026-04-01 0001075531 bkng:A4125SeniorNotesDue2033Member 2026-04-01 2026-04-01 0001075531 bkng:A4750SeniorNotesDue2034Member 2026-04-01 2026-04-01 0001075531 bkng:A3.625SeniorNotesDueNovember2035Member 2026-04-01 2026-04-01 0001075531 bkng:A3.750SeniorNotesDueMarch2036Member 2026-04-01 2026-04-01 0001075531 bkng:A3.750SeniorNotesDueNovember2037Member 2026-04-01 2026-04-01 0001075531 bkng:A4.125SeniorNotesDueMay2038Member 2026-04-01 2026-04-01 0001075531 bkng:A4.000SeniorNotesDueMarch2044Member 2026-04-01 2026-04-01 0001075531 bkng:A3.875SeniorNotesDueMarch2045Member 2026-04-01 2026-04-01 0001075531 bkng:A4.500SeniorNotesDueMay2046Member 2026-04-01 2026-04-01 UNITED STATES SECURITIES AND EXCHANGE COMMISSION Washington, D.C. 20549 FORM 8-K CURRENT REPORT Pursuant to Section 13 or 15(d) of the Securities Exchange Act of 1934 Date of Report (Date of earliest event reported) April 1, 2026 Booking Holdings Inc. (Exact name of registrant as specified in its charter) Delaware 1-36691 06-1528493 (State or other Jurisdiction of Incorporation) (Commission File Number) (IRS Employer Identification No.) 800 Connecticut Avenue Norwalk Connecticut 06854 (Address of principal executive offices) (zip code) Registrant's telephone number, including area code: ( 203 ) 299-8000 N/A (Former name or former address, if changed since last report) Check the appropriate box below if the Form 8-K filing is intended to simultaneously satisfy the filing obligation of the registrant under any of the following provisions: ☐ Written communications pursuant to Rule 425 under the Securities Act (17 CFR 230.425) ☐ Soliciting material pursuant to Rule 14a-12 under the Exchange Act (17 CFR 240.14a-12) ☐ Pre-commencement communications pursuant to Rule 14d-2(b) under the Exchange Act (17 CFR 240.14d-2(b)) ☐ Pre-commencement communications pursuant to Rule 13e-4(c) under the Exchange Act (17 CFR 240.13e-4(c)) Securities Registered Pursuant to Section 12(b) of the Act: Title of Each Class: Trading Symbol Name of Each Exchange on which Registered: Common Stock par value $0.008 per share BKNG The NASDAQ Global Select Market 4.000% Senior Notes Due 2026 BKNG 26 The NASDAQ Stock Market LLC 1.800% Senior Notes Due 2027 BKNG 27 The NASDAQ Stock Market LLC 0.500% Senior Notes Due 2028 BKNG 28 The NASDAQ Stock Market LLC 3.625% Senior Notes Due 2028 BKNG 28A The NASDAQ Stock Market LLC 3.500% Senior Notes Due 2029 BKNG 29A The NASDAQ Stock Market LLC 4.250% Senior Notes Due 2029 BKNG 29 The NASDAQ Stock Market LLC 3.000% Senior Notes Due 2030 BKNG 30 The NASDAQ Stock Market LLC 3.125% Senior Notes Due 2031 BKNG 31A The NASDAQ Stock Market LLC 4.500% Senior Notes Due 2031 BKNG 31 The NASDAQ Stock Market LLC 3.625% Senior Notes Due 2032 BKNG 32 The NASDAQ Stock Market LLC 3.250% Senior Notes Due 2032 BKNG 32A The NASDAQ Stock Market LLC 4.125% Senior Notes Due 2033 BKNG 33 The NASDAQ Stock Market LLC 4.750% Senior Notes Due 2034 BKNG 34 The NASDAQ Stock Market LLC 3.625% Senior Notes Due 2035 BKNG 35 The NASDAQ Stock Market LLC 3.750% Senior Notes Due 2036 BKNG 36 The NASDAQ Stock Market LLC 3.750% Senior Notes Due 2037 BKNG 37 The NASDAQ Stock Market LLC 4.125% Senior Notes Due 2038 BKNG 38 The NASDAQ Stock Market LLC 4.000% Senior Notes Due 2044 BKNG 44 The NASDAQ Stock Market LLC 3.875% Senior Notes Due 2045 BKNG 45 The NASDAQ Stock Market LLC 4.500% Senior Notes Due 2046 BKNG 46 The NASDAQ Stock Market LLC Indicate by check mark whether the registrant is an emerging growth company as defined in Rule 405 of the Securities Act of 1933 (§230.405 of this chapter) or Rule 12b-2 of the Securities Exchange Act of 1934 (§240.12b-2 of this chapter). Emerging growth company ☐ If an emerging growth company, indicate by check mark if the registrant has elected not to use the extended transition period for complying with any new or revised financial accounting standards provided pursuant to Section 13(a) of the Exchange Act. ☐ Item 5.02. Departure of Directors or Certain Officers; Election of Directors; Appointment of Certain Officers; Compensatory Arrangements of Certain Officers. Appointment of Director On April 1, 2026, Mr. Kurt Sievers was appointed to the Board of Directors (the \"Board\") of Booking Holdings Inc. (the \"Company\") and will be joining the Board's Corporate Governance Committee. Mr. Sievers served as President and Chief Executive Officer of NXP Semiconductors N.V., a Netherlands-based semiconductor company (\"NXP\"), from 2020 until his retirement in 2025. He previously served as President beginning in 2018 and joined NXP’s Executive Management Team in 2009. Mr. Sievers currently serves on the board of directors of Capgemini SE, a multinational information technology services and consulting company, and is a member of its Strategy & CSR and Compensation Committees. He also serves on the supervisory board of Daimler Truck Holding AG, a commercial vehicle manufacturer. In consideration of his services as a member of the Company's Board and any Board committees, Mr. Sievers will be compensated in accordance with the Company's non-employee director compensation program as in effect from time to time. Retirement of Director Ms. Lynn Radakovich has informed the Company that she has decided to retire from the Board, effective at the Company's Annual Meeting in June 2026 (the \"Annual Meeting\"), and therefore is not standing for re-election at the Annual Meeting. The Company and the Board express their appreciation to Ms. Radakovich for her dedicated service. Item 7.01 Regulation FD Disclosure. A copy of the press release announcing Mr. Sievers's appointment and Ms. Radakovich's retirement is furnished with this Current Report as Exhibit 99.1. The information furnished herewith pursuant to this Item 7.01 of this Current Report shall not be deemed to be \"filed\" for purposes of Section 18 of the Securities Exchange Act of 1934, as amended (the \"Exchange Act\"), or otherwise subject to the liabilities of that section, and shall not be incorporated by reference into any registration statement or other document under the Securities Act of 1933, as amended, or the Exchange Act, except as shall be expressly set forth by specific reference in such filing. Item 9.01. Financial Statements and Exhibits. (d) Exhibits Exhibit Number Description 99.1 Press Release, dated April 1, 2026. 104 Cover Page Interactive Data File - the cover page interactive data file does not appear in the Interactive Data File because its XBRL tags are embedded within the Inline XBRL document. SIGNATURES Pursuant to the requirements of the Securities Exchange Act of 1934, the Registrant has duly caused this report to be signed on its behalf by the undersigned hereunto duly authorized. BOOKING HOLDINGS INC. By: /s/ Peter J. Millones Name: Peter J. Millones Title: Executive Vice President and General Counsel Date: April 1, 2026", "parsed_data": {}} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/CMCSA_2026-04-04.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/CMCSA_2026-04-04.jsonl new file mode 100644 index 0000000..e601d52 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/CMCSA_2026-04-04.jsonl @@ -0,0 +1,6 @@ +{"metadata": {"ticker": "CMCSA", "form_type": "4", "filed_at": "2026-04-03T13:33:09-04:00", "accession_no": "0001225208-26-004342", "url": "https://www.sec.gov/Archives/edgar/data/1166691/000122520826004342/xslF345X06/doc4.xml", "ingested_at": "2026-04-04T22:54:43.613356"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Murdock Daniel C.", "role": "EVP & Chief Accounting Officer", "transactions": [{"date": "2026-04-03", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 5268.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 64435.0497, "is_10b5_1_planned": false}, {"date": "2026-04-03", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 2073.0, "price": 27.93, "total_value": 57898.89, "post_transaction_shares": 62362.0497, "is_10b5_1_planned": false}]}} +{"metadata": {"ticker": "CMCSA", "form_type": "4", "filed_at": "2026-04-02T16:27:31-04:00", "accession_no": "0001225208-26-004203", "url": "https://www.sec.gov/Archives/edgar/data/1166691/000122520826004203/xslF345X06/doc4.xml", "ingested_at": "2026-04-04T22:54:44.188539"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Smith Gordon", "role": "Other", "transactions": [{"date": "2026-03-31", "code": "A", "direction": "OTHER (A)", "shares": 1176.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 9045.0, "is_10b5_1_planned": false}]}} +{"metadata": {"ticker": "CMCSA", "form_type": "4", "filed_at": "2026-04-02T16:26:30-04:00", "accession_no": "0001225208-26-004202", "url": "https://www.sec.gov/Archives/edgar/data/1166691/000122520826004202/xslF345X06/doc4.xml", "ingested_at": "2026-04-04T22:54:44.751062"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Honickman Jeffrey A", "role": "Other", "transactions": [{"date": "2026-03-31", "code": "A", "direction": "OTHER (A)", "shares": 1524.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 262583.021, "is_10b5_1_planned": false}]}} +{"metadata": {"ticker": "CMCSA", "form_type": "4", "filed_at": "2026-04-02T16:25:30-04:00", "accession_no": "0001225208-26-004201", "url": "https://www.sec.gov/Archives/edgar/data/1166691/000122520826004201/xslF345X06/doc4.xml", "ingested_at": "2026-04-04T22:54:45.317020"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "BREEN EDWARD D", "role": "Other", "transactions": [{"date": "2026-03-31", "code": "A", "direction": "OTHER (A)", "shares": 697.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 56522.277, "is_10b5_1_planned": false}]}} +{"metadata": {"ticker": "CMCSA", "form_type": "4", "filed_at": "2026-04-02T16:24:25-04:00", "accession_no": "0001225208-26-004200", "url": "https://www.sec.gov/Archives/edgar/data/1166691/000122520826004200/xslF345X06/doc4.xml", "ingested_at": "2026-04-04T22:54:45.888239"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Brady Louise F.", "role": "Other", "transactions": [{"date": "2026-03-31", "code": "A", "direction": "OTHER (A)", "shares": 1176.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 32682.89, "is_10b5_1_planned": false}]}} +{"metadata": {"ticker": "CMCSA", "form_type": "4", "filed_at": "2026-04-02T16:23:19-04:00", "accession_no": "0001225208-26-004199", "url": "https://www.sec.gov/Archives/edgar/data/1166691/000122520826004199/xslF345X06/doc4.xml", "ingested_at": "2026-04-04T22:54:46.458338"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Baltimore Thomas J Jr", "role": "Other", "transactions": [{"date": "2026-03-31", "code": "A", "direction": "OTHER (A)", "shares": 1176.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 39043.493, "is_10b5_1_planned": false}]}} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/COST_2026-04-04.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/COST_2026-04-04.jsonl new file mode 100644 index 0000000..d576741 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/COST_2026-04-04.jsonl @@ -0,0 +1 @@ +{"metadata": {"ticker": "COST", "form_type": "4", "filed_at": "2026-04-01T18:13:26-04:00", "accession_no": "0000909832-26-000039", "url": "https://www.sec.gov/Archives/edgar/data/909832/000090983226000039/xslF345X06/form4.xml", "ingested_at": "2026-04-04T22:54:26.825658"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Frates Caton", "role": "Executive Vice President", "transactions": [{"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 700.0, "price": 993.0, "total_value": 695100.0, "post_transaction_shares": 5815.001, "is_10b5_1_planned": false}]}} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/GOOG_2026-04-04.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/GOOG_2026-04-04.jsonl new file mode 100644 index 0000000..17c75dd --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/GOOG_2026-04-04.jsonl @@ -0,0 +1,4 @@ +{"metadata": {"ticker": "GOOG", "form_type": "4", "filed_at": "2026-04-03T17:31:35-04:00", "accession_no": "0001193125-26-142372", "url": "https://www.sec.gov/Archives/edgar/data/1652044/000119312526142372/xslF345X06/ownership.xml", "ingested_at": "2026-04-04T22:54:21.748568"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "O'Toole Amie Thuener", "role": "VP, Chief Accounting Officer", "transactions": [{"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 617.0, "price": 289.63, "total_value": 178701.71, "post_transaction_shares": 10093.0, "is_10b5_1_planned": false}]}} +{"metadata": {"ticker": "GOOG", "form_type": "8-K", "filed_at": "2026-04-02T16:18:28-04:00", "accession_no": "0001652044-26-000031", "url": "https://www.sec.gov/Archives/edgar/data/1652044/000165204426000031/goog-20260330.htm", "ingested_at": "2026-04-04T22:54:22.331849"}, "raw_text": "goog-20260330 FALSE 0001652044 0001652044 2026-03-30 2026-03-30 0001652044 us-gaap:CommonClassAMember 2026-03-30 2026-03-30 0001652044 goog:CapitalClassCMember 2026-03-30 2026-03-30 0001652044 goog:A2.375SeniorNotesDue2028Member 2026-03-30 2026-03-30 0001652044 goog:A2.500SeniorNotesDue2029Member 2026-03-30 2026-03-30 0001652044 goog:A4.125SeniorNotesDue2029Member 2026-03-30 2026-03-30 0001652044 goog:A2.875SeniorNotesDue2031Member 2026-03-30 2026-03-30 0001652044 goog:A4.625SeniorNotesDue2032Member 2026-03-30 2026-03-30 0001652044 goog:A3.000SeniorNotesDue2033Member 2026-03-30 2026-03-30 0001652044 goog:A3.125SeniorNotesDue2034Member 2026-03-30 2026-03-30 0001652044 goog:A3.375SeniorNotesDue2037Member 2026-03-30 2026-03-30 0001652044 goog:A3.500SeniorNotesDue2038Member 2026-03-30 2026-03-30 0001652044 goog:A5.500SeniorNotesDue2041Member 2026-03-30 2026-03-30 0001652044 goog:A4.000SeniorNotesDue2044Member 2026-03-30 2026-03-30 0001652044 goog:A3.875SeniorNotesDue2045Member 2026-03-30 2026-03-30 0001652044 goog:A4.000SeniorNotesDue2054Member 2026-03-30 2026-03-30 0001652044 goog:A5.875SeniorNotesDue2058Member 2026-03-30 2026-03-30 0001652044 goog:A4.375SeniorNotesDue2064Member 2026-03-30 2026-03-30 0001652044 goog:A6.125SeniorNotesDue2126Member 2026-03-30 2026-03-30 UNITED STATES SECURITIES AND EXCHANGE COMMISSION Washington, D.C. 20549 _________________________________________________ FORM 8-K _____________________________________________________________ CURRENT REPORT Pursuant to Section 13 or 15(d) of The Securities Exchange Act of 1934 Date of Report (Date of earliest event reported) March 30, 2026 ____________________________________________________________ ALPHABET INC. (Exact name of registrant as specified in its charter) _______________________________________________________________ Delaware 001-37580 61-1767919 (State or other jurisdiction of incorporation) (Commission File Number) (IRS Employer Identification No.) 1600 Amphitheatre Parkway Mountain View , CA 94043 (Address of principal executive offices, including zip code) ( 650 ) 253-0000 (Registrant’s telephone number, including area code) Not Applicable (Former name or former address, if changed since last report) ______________________________________________________________ Check the appropriate box below if the Form 8-K filing is intended to simultaneously satisfy the filing obligation of the registrant under any of the following provisions (see General Instruction A.2. below): ☐ Written communications pursuant to Rule 425 under the Securities Act (17 CFR 230.425) ☐ Soliciting material pursuant to Rule 14a-12 under the Exchange Act (17 CFR 240.14a-12) ☐ Pre-commencement communications pursuant to Rule 14d-2(b) under the Exchange Act (17 CFR 240.14d-2(b)) ☐ Pre-commencement communications pursuant to Rule 13e-4(c) under the Exchange Act (17 CFR 240.13e-4(c)) Securities registered pursuant to Section 12(b) of the Act: Title of each class Trading Symbol(s) Name of each exchange on which registered Class A Common Stock, $0.001 par value GOOGL Nasdaq Stock Market LLC (Nasdaq Global Select Market) Class C Capital Stock, $0.001 par value GOOG Nasdaq Stock Market LLC (Nasdaq Global Select Market) 2.375% Senior Notes due 2028 — Nasdaq Stock Market LLC 2.500% Senior Notes due 2029 — Nasdaq Stock Market LLC 4.125% Senior Notes due 2029 — Nasdaq Stock Market LLC 2.875% Senior Notes due 2031 — Nasdaq Stock Market LLC 4.625% Senior Notes due 2032 — Nasdaq Stock Market LLC 3.000% Senior Notes due 2033 — Nasdaq Stock Market LLC 3.125% Senior Notes due 2034 — Nasdaq Stock Market LLC 3.375% Senior Notes due 2037 — Nasdaq Stock Market LLC 3.500% Senior Notes due 2038 — Nasdaq Stock Market LLC 5.500% Senior Notes due 2041 — Nasdaq Stock Market LLC 4.000% Senior Notes due 2044 — Nasdaq Stock Market LLC 3.875% Senior Notes due 2045 — Nasdaq Stock Market LLC 4.000% Senior Notes due 2054 — Nasdaq Stock Market LLC 5.875% Senior Notes due 2058 — Nasdaq Stock Market LLC 4.375% Senior Notes due 2064 — Nasdaq Stock Market LLC 6.125% Senior Notes due 2126 — Nasdaq Stock Market LLC Indicate by check mark whether the registrant is an emerging growth company as defined in Rule 405 of the Securities Act of 1933 (§230.405 of this chapter) or Rule 12b-2 of the Securities Exchange Act of 1934 (§240.12b-2 of this chapter). Emerging growth company ☐ If an emerging growth company, indicate by check mark if the registrant has elected not to use the extended transition period for complying with any new or revised financial accounting standards provided pursuant to Section 13(a) of the Exchange Act. ☐ Item 5.02 Departure of Directors or Certain Officers; Election of Directors; Appointment of Certain Officers; Compensatory Arrangements of Certain Officers. On March 30, 2026, Amie Thuener O'Toole notified Alphabet Inc. (the “Company”) of her resignation as Vice President, Corporate Controller and Principal Accounting Officer of the Company, effective April 9, 2026, to pursue another professional opportunity. Ms. O'Toole’s decision to resign did not result from any disagreement with the Company on any matter relating to the Company’s operations, policies, or practices. SIGNATURE Pursuant to the requirements of the Securities Exchange Act of 1934, the registrant has duly caused this report to be signed on its behalf by the undersigned hereunto duly authorized. ALPHABET INC. Date: April 2, 2026 /s/ KATHRYN W. HALL Kathryn W. Hall Assistant Secretary", "parsed_data": {}} +{"metadata": {"ticker": "GOOG", "form_type": "4", "filed_at": "2026-03-31T21:43:02-04:00", "accession_no": "0001193125-26-135334", "url": "https://www.sec.gov/Archives/edgar/data/1238734/000119312526135334/xslF345X06/ownership.xml", "ingested_at": "2026-04-04T22:54:22.903382"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "WALKER JOHN KENT", "role": "President, Global Affairs, CLO", "transactions": [{"date": "2026-03-27", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 2677.0, "price": 273.91, "total_value": 733257.0700000001, "post_transaction_shares": 58124.0, "is_10b5_1_planned": false}, {"date": "2026-03-27", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 1516.0, "price": 274.93, "total_value": 416793.88, "post_transaction_shares": 56608.0, "is_10b5_1_planned": false}, {"date": "2026-03-27", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 1400.0, "price": 276.21, "total_value": 386694.0, "post_transaction_shares": 55208.0, "is_10b5_1_planned": false}, {"date": "2026-03-27", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 2100.0, "price": 277.42, "total_value": 582582.0, "post_transaction_shares": 53108.0, "is_10b5_1_planned": false}, {"date": "2026-03-27", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 1300.0, "price": 278.3, "total_value": 361790.0, "post_transaction_shares": 51808.0, "is_10b5_1_planned": false}, {"date": "2026-03-31", "code": "G", "direction": "OTHER (D)", "shares": 8993.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 23508.0, "is_10b5_1_planned": false}, {"date": "2026-03-31", "code": "G", "direction": "OTHER (A)", "shares": 8993.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 60801.0, "is_10b5_1_planned": false}]}} +{"metadata": {"ticker": "GOOG", "form_type": "4", "filed_at": "2026-03-31T20:39:05-04:00", "accession_no": "0001193125-26-135258", "url": "https://www.sec.gov/Archives/edgar/data/1652044/000119312526135258/xslF345X06/ownership.xml", "ingested_at": "2026-04-04T22:54:23.480449"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "ARNOLD FRANCES", "role": "Director", "transactions": [{"date": "2026-03-30", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 102.0, "price": 275.19, "total_value": 28069.38, "post_transaction_shares": 18316.0, "is_10b5_1_planned": false}]}} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/HON_2026-04-04.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/HON_2026-04-04.jsonl new file mode 100644 index 0000000..00baeb1 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/HON_2026-04-04.jsonl @@ -0,0 +1,2 @@ +{"metadata": {"ticker": "HON", "form_type": "4", "filed_at": "2026-04-02T17:57:33-04:00", "accession_no": "0000773840-26-000025", "url": "https://www.sec.gov/Archives/edgar/data/773840/000077384026000025/xslF345X06/wk-form4_1775167050.xml", "ingested_at": "2026-04-04T22:54:42.309982"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Flint Deborah", "role": "Other", "transactions": []}} +{"metadata": {"ticker": "HON", "form_type": "4", "filed_at": "2026-04-02T17:56:37-04:00", "accession_no": "0000773840-26-000024", "url": "https://www.sec.gov/Archives/edgar/data/773840/000077384026000024/xslF345X06/wk-form4_1775166995.xml", "ingested_at": "2026-04-04T22:54:42.895683"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "ANGOVE DUNCAN", "role": "Other", "transactions": []}} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/IBM_2026-04-04.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/IBM_2026-04-04.jsonl new file mode 100644 index 0000000..7ffbd9f --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/IBM_2026-04-04.jsonl @@ -0,0 +1,13 @@ +{"metadata": {"ticker": "IBM", "form_type": "4", "filed_at": "2026-04-01T17:11:35-04:00", "accession_no": "0001630253-26-000003", "url": "https://www.sec.gov/Archives/edgar/data/51143/000163025326000003/xslF345X06/primarydocument.xml", "ingested_at": "2026-04-04T22:54:48.742964"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Laguarta Ramon", "role": "Director", "transactions": []}} +{"metadata": {"ticker": "IBM", "form_type": "4", "filed_at": "2026-04-01T17:10:34-04:00", "accession_no": "0001804183-26-000004", "url": "https://www.sec.gov/Archives/edgar/data/51143/000180418326000004/xslF345X06/primarydocument.xml", "ingested_at": "2026-04-04T22:54:49.319678"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Brown Marianne Catherine", "role": "Director", "transactions": []}} +{"metadata": {"ticker": "IBM", "form_type": "4", "filed_at": "2026-04-01T17:09:51-04:00", "accession_no": "0001738987-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/51143/000173898726000002/xslF345X06/primarydocument.xml", "ingested_at": "2026-04-04T22:54:49.890485"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Buberl Thomas", "role": "Director", "transactions": []}} +{"metadata": {"ticker": "IBM", "form_type": "4", "filed_at": "2026-04-01T17:09:00-04:00", "accession_no": "0001183474-26-000003", "url": "https://www.sec.gov/Archives/edgar/data/51143/000118347426000003/xslF345X06/primarydocument.xml", "ingested_at": "2026-04-04T22:54:50.474380"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "FARR DAVID N", "role": "Director", "transactions": []}} +{"metadata": {"ticker": "IBM", "form_type": "4", "filed_at": "2026-04-01T17:08:11-04:00", "accession_no": "0001453149-26-000006", "url": "https://www.sec.gov/Archives/edgar/data/51143/000145314926000006/xslF345X06/primarydocument.xml", "ingested_at": "2026-04-04T22:54:51.046789"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Gorsky Alex", "role": "Director", "transactions": []}} +{"metadata": {"ticker": "IBM", "form_type": "4", "filed_at": "2026-04-01T17:05:39-04:00", "accession_no": "0001769389-26-000003", "url": "https://www.sec.gov/Archives/edgar/data/51143/000176938926000003/xslF345X06/primarydocument.xml", "ingested_at": "2026-04-04T22:54:51.631365"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "HOWARD MICHELLE J", "role": "Director", "transactions": []}} +{"metadata": {"ticker": "IBM", "form_type": "4", "filed_at": "2026-04-01T17:04:56-04:00", "accession_no": "0001269971-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/51143/000126997126000002/xslF345X06/primarydocument.xml", "ingested_at": "2026-04-04T22:54:52.223698"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "LIVERIS ANDREW N", "role": "Director", "transactions": []}} +{"metadata": {"ticker": "IBM", "form_type": "4", "filed_at": "2026-04-01T17:04:16-04:00", "accession_no": "0001731814-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/51143/000173181426000002/xslF345X06/primarydocument.xml", "ingested_at": "2026-04-04T22:54:52.813351"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "MCNABB FREDERICK WILLIAM III", "role": "Director", "transactions": []}} +{"metadata": {"ticker": "IBM", "form_type": "4", "filed_at": "2026-04-01T17:03:36-04:00", "accession_no": "0001771933-26-000005", "url": "https://www.sec.gov/Archives/edgar/data/51143/000177193326000005/xslF345X06/primarydocument.xml", "ingested_at": "2026-04-04T22:54:53.392704"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Miebach Michael", "role": "Director", "transactions": []}} +{"metadata": {"ticker": "IBM", "form_type": "4", "filed_at": "2026-04-01T17:02:53-04:00", "accession_no": "0001628797-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/51143/000162879726000002/xslF345X06/primarydocument.xml", "ingested_at": "2026-04-04T22:54:53.968188"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "VOSER PETER R.", "role": "Director", "transactions": []}} +{"metadata": {"ticker": "IBM", "form_type": "4", "filed_at": "2026-04-01T17:02:18-04:00", "accession_no": "0001223690-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/51143/000122369026000002/xslF345X06/primarydocument.xml", "ingested_at": "2026-04-04T22:54:54.572877"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "WADDELL FREDERICK H", "role": "Director", "transactions": []}} +{"metadata": {"ticker": "IBM", "form_type": "4", "filed_at": "2026-04-01T17:01:34-04:00", "accession_no": "0001196985-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/51143/000119698526000002/xslF345X06/primarydocument.xml", "ingested_at": "2026-04-04T22:54:55.150928"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "ZOLLAR ALFRED W", "role": "Director", "transactions": []}} +{"metadata": {"ticker": "IBM", "form_type": "4", "filed_at": "2026-04-01T17:00:51-04:00", "accession_no": "0001765271-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/51143/000176527126000002/xslF345X06/primarydocument.xml", "ingested_at": "2026-04-04T22:54:55.747804"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Pollack Martha E", "role": "Director", "transactions": []}} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/INTC_2026-04-04.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/INTC_2026-04-04.jsonl new file mode 100644 index 0000000..45e0490 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/INTC_2026-04-04.jsonl @@ -0,0 +1 @@ +{"metadata": {"ticker": "INTC", "form_type": "8-K", "filed_at": "2026-04-03T12:50:37-04:00", "accession_no": "0000050863-26-000069", "url": "https://www.sec.gov/Archives/edgar/data/50863/000005086326000069/intc-20260330.htm", "ingested_at": "2026-04-04T22:54:47.308119"}, "raw_text": "intc-20260330 0000050863 false 0000050863 2026-03-30 2026-04-03 UNITED STATES SECURITIES AND EXCHANGE COMMISSION Washington, D.C. 20549 FORM 8-K CURRENT REPORT Pursuant to Section 13 or 15(d) of the Securities Exchange Act of 1934 Date of Report (Date of earliest event reported): March 30, 2026 INTEL CORPORATION (Exact name of registrant as specified in its charter) Delaware 000-06217 94-1672743 (State or other jurisdiction (Commission (IRS Employer of incorporation) File Number) Identification No.) 2200 Mission College Boulevard , Santa Clara , California 95054-1549 (Address of principal executive offices) (Zip Code) Registrant's telephone number, including area code: (408) 765-8080 Not Applicable (Former name or former address, if changed since last report) Check the appropriate box below if the Form 8-K filing is intended to simultaneously satisfy the filing obligation of the registrant under any of the following provisions ( see General Instruction A.2. below): ☐ Written communications pursuant to Rule 425 under the Securities Act (17 CFR 230.425) ☐ Soliciting material pursuant to Rule 14a-12 under the Exchange Act (17 CFR 240.14a-12) ☐ Pre-commencement communications pursuant to Rule 14d-2(b) under the Exchange Act (17 CFR 240.14d-2(b)) ☐ Pre-commencement communications pursuant to Rule 13e-4(c) under the Exchange Act (17 CFR 240.13e-4c)) Securities registered pursuant to Section 12(b) of the Act: Title of each class Trading Symbol(s) Name of each exchange on which registered Common stock, $0.001 par value INTC Nasdaq Global Select Market Indicate by check mark whether the registrant is an emerging growth company as defined in Rule 405 of the Securities Act of 1933 (§230.405 of this chapter) or Rule 12b-2 of the Securities Exchange Act of 1934 (§240.12b-2 of this chapter). Emerging growth company ☐ If an emerging growth company, indicate by check mark if the registrant has elected not to use the extended transition period for complying with any new or revised financial accounting standards provided pursuant to Section 13(a) of the Exchange Act. ¨ Item 5.02 Departure of Directors or Certain Officers; Election of Directors; Appointment of Certain Officers; Compensatory Arrangements of Certain Officers. On March 30,2026, Intel Corporation determined that April Miller Boise, Intel’s Executive Vice President and Chief Legal Officer, will separate from Intel effective as of June 1, 2026. Upon her departure on June 1, 2026, Ms. Miller Boise will be entitled to severance benefits in accordance with the terms and conditions of the Intel Corporation Executive Severance Plan, as previously disclosed, in exchange for a release of claims in favor of Intel. Item 9.01 Financial Statements and Exhibits. (d) Exhibits. The following exhibits are provided as part of this report: Exhibit Number Description 104 Cover Page Interactive Data File, formatted in Inline XBRL and included as Exhibit 101. SIGNATURES Pursuant to the requirements of the Securities Exchange Act of 1934, the registrant has duly caused this report to be signed on its behalf by the undersigned hereunto duly authorized. INTEL CORPORATION (Registrant) Date: April 3, 2026 By: /s/ David Zinsner David Zinsner Executive Vice President and Chief Financial Officer", "parsed_data": {}} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/INTU_2026-04-04.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/INTU_2026-04-04.jsonl new file mode 100644 index 0000000..5b4b609 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/INTU_2026-04-04.jsonl @@ -0,0 +1,6 @@ +{"metadata": {"ticker": "INTU", "form_type": "4", "filed_at": "2026-04-03T16:51:34-04:00", "accession_no": "0001628280-26-023706", "url": "https://www.sec.gov/Archives/edgar/data/896878/000162828026023706/xslF345X06/wk-form4_1775249487.xml", "ingested_at": "2026-04-04T22:54:38.419929"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Goodarzi Sasan K", "role": "CEO, President and Director", "transactions": [{"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 653.529, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 14264.957, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 893.612, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 15158.569, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 802.006, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 15960.575, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 863.013, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 16823.588, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 30.832, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 16854.42, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 1277.861, "price": 432.38, "total_value": 552521.5391800001, "post_transaction_shares": 15576.559, "is_10b5_1_planned": false}]}} +{"metadata": {"ticker": "INTU", "form_type": "4", "filed_at": "2026-04-03T16:50:20-04:00", "accession_no": "0001628280-26-023704", "url": "https://www.sec.gov/Archives/edgar/data/896878/000162828026023704/xslF345X06/wk-form4_1775249417.xml", "ingested_at": "2026-04-04T22:54:39.027084"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "McLean Kerry J", "role": "EVP, Gen. Counsel & Corp. Sec.", "transactions": [{"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 244.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 28657.7666, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 236.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 28893.7666, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 199.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 29092.7666, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 170.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 29262.7666, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 301.627, "price": 432.38, "total_value": 130417.48226, "post_transaction_shares": 28961.1396, "is_10b5_1_planned": false}]}} +{"metadata": {"ticker": "INTU", "form_type": "4", "filed_at": "2026-04-03T16:48:01-04:00", "accession_no": "0001628280-26-023701", "url": "https://www.sec.gov/Archives/edgar/data/896878/000162828026023701/xslF345X06/wk-form4_1775249278.xml", "ingested_at": "2026-04-04T22:54:39.614244"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Hotz Lauren D", "role": "SVP, Chief Accounting Officer", "transactions": [{"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 41.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 2055.7352, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 104.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 2159.7352, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 97.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 2256.7352, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 88.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 2344.7352, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 120.548, "price": 432.38, "total_value": 52122.54424, "post_transaction_shares": 2224.1872, "is_10b5_1_planned": false}]}} +{"metadata": {"ticker": "INTU", "form_type": "4", "filed_at": "2026-04-03T16:46:29-04:00", "accession_no": "0001628280-26-023698", "url": "https://www.sec.gov/Archives/edgar/data/896878/000162828026023698/xslF345X06/wk-form4_1775249186.xml", "ingested_at": "2026-04-04T22:54:40.203764"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Hilliard Caryl Lyn", "role": "EVP, People and Places", "transactions": [{"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 122.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 23018.008, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 110.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 23128.008, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 87.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 23215.008, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 150.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 23365.008, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 212.093, "price": 432.38, "total_value": 91704.77133999999, "post_transaction_shares": 23152.915, "is_10b5_1_planned": false}]}} +{"metadata": {"ticker": "INTU", "form_type": "4", "filed_at": "2026-04-03T16:45:28-04:00", "accession_no": "0001628280-26-023696", "url": "https://www.sec.gov/Archives/edgar/data/896878/000162828026023696/xslF345X06/wk-form4_1775249122.xml", "ingested_at": "2026-04-04T22:54:40.778129"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Hanebrink Anton", "role": "EVP, Corp Strategy and Dev", "transactions": [{"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 348.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 29953.249, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 252.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 30205.249, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 224.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 30429.249, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 418.253, "price": 432.38, "total_value": 180844.23213999998, "post_transaction_shares": 30010.996, "is_10b5_1_planned": false}]}} +{"metadata": {"ticker": "INTU", "form_type": "4", "filed_at": "2026-04-03T16:39:06-04:00", "accession_no": "0001628280-26-023690", "url": "https://www.sec.gov/Archives/edgar/data/896878/000162828026023690/xslF345X06/wk-form4_1775248743.xml", "ingested_at": "2026-04-04T22:54:41.363317"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Aujla Sandeep", "role": "EVP and CFO", "transactions": [{"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 2665.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 3239.1366, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 346.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 3585.1366, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 349.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 3934.1366, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 1725.362, "price": 432.38, "total_value": 746012.02156, "post_transaction_shares": 2208.7746, "is_10b5_1_planned": false}]}} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/MDLZ_2026-04-04.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/MDLZ_2026-04-04.jsonl new file mode 100644 index 0000000..e69de29 diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/NFLX_2026-04-04.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/NFLX_2026-04-04.jsonl new file mode 100644 index 0000000..b5751c8 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/NFLX_2026-04-04.jsonl @@ -0,0 +1,13 @@ +{"metadata": {"ticker": "NFLX", "form_type": "4", "filed_at": "2026-04-03T16:07:32-04:00", "accession_no": "0001543133-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/1065280/000154313326000002/xslF345X06/wk-form4_1775246849.xml", "ingested_at": "2026-04-04T22:54:27.690770"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Neumann Spencer Adam", "role": "Chief Financial Officer", "transactions": [{"date": "2026-04-02", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 7770.0, "price": 38.105, "total_value": 296075.85, "post_transaction_shares": 81557.0, "is_10b5_1_planned": true}, {"date": "2026-04-02", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 20860.0, "price": 36.408, "total_value": 759470.88, "post_transaction_shares": 102417.0, "is_10b5_1_planned": true}, {"date": "2026-04-02", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 28630.0, "price": 98.0, "total_value": 2805740.0, "post_transaction_shares": 73787.0, "is_10b5_1_planned": true}]}} +{"metadata": {"ticker": "NFLX", "form_type": "4", "filed_at": "2026-04-02T18:02:54-04:00", "accession_no": "0001065280-26-000136", "url": "https://www.sec.gov/Archives/edgar/data/1065280/000106528026000136/xslF345X06/wk-form4_1775167371.xml", "ingested_at": "2026-04-04T22:54:28.265373"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "KILGORE LESLIE J", "role": "Other", "transactions": []}} +{"metadata": {"ticker": "NFLX", "form_type": "4", "filed_at": "2026-04-02T18:02:46-04:00", "accession_no": "0001065280-26-000135", "url": "https://www.sec.gov/Archives/edgar/data/1065280/000106528026000135/xslF345X06/wk-form4_1775167364.xml", "ingested_at": "2026-04-04T22:54:28.839154"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Masiyiwa Strive", "role": "Other", "transactions": []}} +{"metadata": {"ticker": "NFLX", "form_type": "4", "filed_at": "2026-04-02T18:02:38-04:00", "accession_no": "0001065280-26-000134", "url": "https://www.sec.gov/Archives/edgar/data/1033331/000106528026000134/xslF345X06/wk-form4_1775167354.xml", "ingested_at": "2026-04-04T22:54:29.443415"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "HASTINGS REED", "role": "Other", "transactions": [{"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 420550.0, "price": 9.437, "total_value": 3968730.3499999996, "post_transaction_shares": 424490.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 152047.0, "price": 95.015, "total_value": 14446745.705, "post_transaction_shares": 272443.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 247923.0, "price": 95.6767, "total_value": 23720454.4941, "post_transaction_shares": 24520.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 20580.0, "price": 96.6601, "total_value": 1989264.858, "post_transaction_shares": 3940.0, "is_10b5_1_planned": true}]}} +{"metadata": {"ticker": "NFLX", "form_type": "4", "filed_at": "2026-04-02T18:02:28-04:00", "accession_no": "0001065280-26-000133", "url": "https://www.sec.gov/Archives/edgar/data/1065280/000106528026000133/xslF345X06/wk-form4_1775167345.xml", "ingested_at": "2026-04-04T22:54:30.038969"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Sweeney Anne M", "role": "Other", "transactions": []}} +{"metadata": {"ticker": "NFLX", "form_type": "4", "filed_at": "2026-04-02T18:02:20-04:00", "accession_no": "0001065280-26-000132", "url": "https://www.sec.gov/Archives/edgar/data/1065280/000106528026000132/xslF345X06/wk-form4_1775167337.xml", "ingested_at": "2026-04-04T22:54:30.617313"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "MATHER ANN", "role": "Other", "transactions": []}} +{"metadata": {"ticker": "NFLX", "form_type": "4", "filed_at": "2026-04-02T18:01:52-04:00", "accession_no": "0001065280-26-000131", "url": "https://www.sec.gov/Archives/edgar/data/1065280/000106528026000131/xslF345X06/wk-form4_1775167309.xml", "ingested_at": "2026-04-04T22:54:31.210332"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Dopfner Mathias", "role": "Other", "transactions": []}} +{"metadata": {"ticker": "NFLX", "form_type": "4", "filed_at": "2026-04-02T18:01:44-04:00", "accession_no": "0001065280-26-000130", "url": "https://www.sec.gov/Archives/edgar/data/1065280/000106528026000130/xslF345X06/wk-form4_1775167302.xml", "ingested_at": "2026-04-04T22:54:31.787519"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Karbowski Jeffrey William", "role": "Chief Accounting Officer", "transactions": []}} +{"metadata": {"ticker": "NFLX", "form_type": "4", "filed_at": "2026-04-02T18:01:36-04:00", "accession_no": "0001065280-26-000129", "url": "https://www.sec.gov/Archives/edgar/data/1065280/000106528026000129/xslF345X06/wk-form4_1775167293.xml", "ingested_at": "2026-04-04T22:54:32.363920"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "SMITH BRADFORD L", "role": "Other", "transactions": []}} +{"metadata": {"ticker": "NFLX", "form_type": "4", "filed_at": "2026-04-02T18:01:30-04:00", "accession_no": "0001065280-26-000128", "url": "https://www.sec.gov/Archives/edgar/data/1065280/000106528026000128/xslF345X06/wk-form4_1775167286.xml", "ingested_at": "2026-04-04T22:54:32.939871"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "RICE SUSAN E", "role": "Other", "transactions": []}} +{"metadata": {"ticker": "NFLX", "form_type": "4", "filed_at": "2026-04-02T18:01:23-04:00", "accession_no": "0001065280-26-000127", "url": "https://www.sec.gov/Archives/edgar/data/1065280/000106528026000127/xslF345X06/wk-form4_1775167280.xml", "ingested_at": "2026-04-04T22:54:33.516613"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "BARTON RICHARD N", "role": "Other", "transactions": []}} +{"metadata": {"ticker": "NFLX", "form_type": "4", "filed_at": "2026-04-02T18:01:07-04:00", "accession_no": "0001065280-26-000126", "url": "https://www.sec.gov/Archives/edgar/data/1065280/000106528026000126/xslF345X06/wk-form4_1775167264.xml", "ingested_at": "2026-04-04T22:54:34.100797"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Mertz Elinor", "role": "Other", "transactions": []}} +{"metadata": {"ticker": "NFLX", "form_type": "4", "filed_at": "2026-04-02T16:04:17-04:00", "accession_no": "0001082906-26-000012", "url": "https://www.sec.gov/Archives/edgar/data/1065280/000108290626000012/xslF345X06/form4.xml", "ingested_at": "2026-04-04T22:54:34.673370"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Hoag Jay C", "role": "Other", "transactions": []}} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/PANW_2026-04-04.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/PANW_2026-04-04.jsonl new file mode 100644 index 0000000..df6ee38 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/PANW_2026-04-04.jsonl @@ -0,0 +1,2 @@ +{"metadata": {"ticker": "PANW", "form_type": "4", "filed_at": "2026-04-03T16:30:29-04:00", "accession_no": "0001882285-26-000007", "url": "https://www.sec.gov/Archives/edgar/data/1327567/000188228526000007/xslF345X06/ownership.xml", "ingested_at": "2026-04-04T22:55:01.436892"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Paul Josh D.", "role": "Chief Accounting Officer", "transactions": [{"date": "2026-04-01", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 947.0, "price": 160.32, "total_value": 151823.03999999998, "post_transaction_shares": 84236.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 1100.0, "price": 161.4, "total_value": 177540.0, "post_transaction_shares": 83136.0, "is_10b5_1_planned": true}]}} +{"metadata": {"ticker": "PANW", "form_type": "4", "filed_at": "2026-04-03T16:30:26-04:00", "accession_no": "0001852540-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/1327567/000185254026000002/xslF345X06/ownership.xml", "ingested_at": "2026-04-04T22:55:02.015659"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Golechha Dipak", "role": "EVP, Chief Financial Officer", "transactions": [{"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 200.0, "price": 157.81, "total_value": 31562.0, "post_transaction_shares": 155050.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 1300.0, "price": 160.039, "total_value": 208050.69999999998, "post_transaction_shares": 153750.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 3500.0, "price": 160.704, "total_value": 562464.0, "post_transaction_shares": 150250.0, "is_10b5_1_planned": true}]}} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/QCOM_2026-04-04.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/QCOM_2026-04-04.jsonl new file mode 100644 index 0000000..139e887 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/QCOM_2026-04-04.jsonl @@ -0,0 +1,3 @@ +{"metadata": {"ticker": "QCOM", "form_type": "4", "filed_at": "2026-04-02T17:23:11-04:00", "accession_no": "0000804328-26-000051", "url": "https://www.sec.gov/Archives/edgar/data/804328/000080432826000051/xslF345X06/edgardoc.xml", "ingested_at": "2026-04-04T22:54:36.438677"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Grech Patricia Y", "role": "SVP, Chief Accounting Officer", "transactions": [{"date": "2026-04-02", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 85.0, "price": 125.5, "total_value": 10667.5, "post_transaction_shares": 192.0, "is_10b5_1_planned": true}]}} +{"metadata": {"ticker": "QCOM", "form_type": "4", "filed_at": "2026-04-02T16:08:27-04:00", "accession_no": "0000804328-26-000049", "url": "https://www.sec.gov/Archives/edgar/data/804328/000080432826000049/xslF345X06/edgardoc.xml", "ingested_at": "2026-04-04T22:54:37.033688"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "MCLAUGHLIN MARK D", "role": "Other", "transactions": [{"date": "2026-03-31", "code": "A", "direction": "OTHER (A)", "shares": 538.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 12849.8312, "is_10b5_1_planned": false}]}} +{"metadata": {"ticker": "QCOM", "form_type": "4", "filed_at": "2026-04-02T16:08:15-04:00", "accession_no": "0000804328-26-000048", "url": "https://www.sec.gov/Archives/edgar/data/804328/000080432826000048/xslF345X06/edgardoc.xml", "ingested_at": "2026-04-04T22:54:37.607779"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "TRICOIRE JEAN-PASCAL", "role": "Other", "transactions": [{"date": "2026-03-31", "code": "A", "direction": "OTHER (A)", "shares": 262.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 13481.4716, "is_10b5_1_planned": false}]}} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/SBUX_2026-04-04.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/SBUX_2026-04-04.jsonl new file mode 100644 index 0000000..093f5a6 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/SBUX_2026-04-04.jsonl @@ -0,0 +1,2 @@ +{"metadata": {"ticker": "SBUX", "form_type": "8-K", "filed_at": "2026-04-02T16:55:33-04:00", "accession_no": "0000829224-26-000064", "url": "https://www.sec.gov/Archives/edgar/data/829224/000082922426000064/sbux-20260402.htm", "ingested_at": "2026-04-04T22:55:00.161523"}, "raw_text": "sbux-20260402 false 0000829224 0000829224 2026-04-02 2026-04-02 UNITED STATES SECURITIES AND EXCHANGE COMMISSION Washington, DC 20549 FORM 8-K CURRENT REPORT Pursuant to Section 13 or 15(d) of the Securities Exchange Act of 1934 Date of Report (Date of earliest event reported): April 2, 2026 Starbucks Corporation (Exact name of registrant as specified in its charter) Washington 000-20322 91-1325671 (State or other jurisdiction of incorporation) (Commission File Number) (IRS Employer Identification No.) 2401 Utah Avenue South , Seattle , Washington 98134 (Address of principal executive offices) (Zip Code) ( 206 ) 447-1575 (Registrant's telephone number, including area code) Check the appropriate box below if the Form 8-K filing is intended to simultaneously satisfy the filing obligation of the registrant under any of the following provisions: ☐ Written communications pursuant to Rule 425 under the Securities Act (17 CFR 230.425) ☐ Soliciting material pursuant to Rule 14a-12 under the Exchange Act (17 CFR 240.14a-12) ☐ Pre-commencement communications pursuant to Rule 14d-2(b) under the Exchange Act (17 CFR 240.14d-2(b)) ☐ Pre-commencement communications pursuant to Rule 13e-4(c) under the Exchange Act (17 CFR 240.13e-4(c)) Securities registered pursuant to Section 12(b) of the Act: Title Trading Symbol Name of each exchange on which registered Common Stock, par value $0.001 per share SBUX Nasdaq Global Select Market Indicate by check mark whether the registrant is an emerging growth company as defined in Rule 405 of the Securities Act of 1933 (§230.405 of this chapter) or Rule 12b-2 of the Securities Exchange Act of 1934 (§240.12b-2 of this chapter). Emerging Growth Company ☐ If an emerging growth company, indicate by check mark if the registrant has elected not to use the extended transition period for complying with any new or revised financial accounting standards provided pursuant to Section 13(a) of the Exchange Act. o Item 7.01 Regulation FD Disclosure. As previously disclosed on November 3, 2025, Starbucks entered an agreement to form a joint venture with Boyu Capital. On April 2, 2026, Starbucks announced that, following the satisfaction of all necessary closing conditions, it completed the transaction. Pursuant to the transaction, funds managed by Boyu Capital have acquired a 60% interest in Starbucks retail operations in China. Starbucks retains a 40% interest and will serve as the owner and licensor of the Starbucks global brand. A copy of the press release issued is furnished as Exhibit 99.1 to this Form 8-K. The information contained in Item 7.01 of this report, including the information in Exhibit 99.1, is furnished pursuant to Item 7.01 of Form 8-K and shall not be deemed “filed” for the purposes of Section 18 of the Securities Exchange Act of 1934, as amended, or otherwise subject to the liabilities of that section. Furthermore, the information in Item 7.01 of this report, including the information in Exhibit 99.1 attached to this report, shall not be deemed to be incorporated by reference in the filings of Starbucks Corporation under the Securities Act of 1933, as amended. Item 9.01 Financial Statements and Exhibits. (d) Exhibits. Exhibit No. Description 99.1 Press Release, dated April 2, 2026 104 Cover Page Interactive Data File (formatted as inline XBRL) SIGNATURES Pursuant to the requirements of the Securities Exchange Act of 1934, the registrant has duly caused this report to be signed on its behalf by the undersigned hereunto duly authorized. STARBUCKS CORPORATION Dated: April 2, 2026 By: /s/ Joshua C. Gaul Joshua C. Gaul vice president, assistant general counsel and corporate secretary", "parsed_data": {}} +{"metadata": {"ticker": "SBUX", "form_type": "8-K", "filed_at": "2026-03-30T09:15:22-04:00", "accession_no": "0000829224-26-000058", "url": "https://www.sec.gov/Archives/edgar/data/829224/000082922426000058/sbux-20260325.htm", "ingested_at": "2026-04-04T22:55:00.764230"}, "raw_text": "sbux-20260325 false 0000829224 0000829224 2026-03-25 2026-03-25 UNITED STATES SECURITIES AND EXCHANGE COMMISSION Washington, D.C. 20549 FORM 8-K CURRENT REPORT Pursuant to Section 13 OR 15(d) of The Securities Exchange Act of 1934 Date of Report (Date of earliest event reported): March 25, 2026 Starbucks Corporation (Exact name of registrant as specified in its charter) Washington 000-20322 91-1325671 (State or other jurisdiction of incorporation) (Commission File Number) (IRS Employer Identification No.) 2401 Utah Avenue South , Seattle , Washington 98134 (Address of principal executive offices) (Zip Code) ( 206 ) 447-1575 ( Registrant’s telephone number, including area code) Check the appropriate box below if the Form 8-K filing is intended to simultaneously satisfy the filing obligation of the registrant under any of the following provisions: ☐ Written communications pursuant to Rule 425 under the Securities Act (17 CFR 230.425) ☐ Soliciting material pursuant to Rule 14a-12 under the Exchange Act (17 CFR 240.14a-12) ☐ Pre-commencement communications pursuant to Rule 14d-2(b) under the Exchange Act (17 CFR 240.14d-2(b)) ☐ Pre-commencement communications pursuant to Rule 13e-4(c) under the Exchange Act (17 CFR 240.13e-4(c)) Securities registered pursuant to Section 12(b) of the Act: Title Trading Symbol Name of each exchange on which registered Common Stock, par value $0.001 per share SBUX Nasdaq Global Select Market Indicate by check mark whether the registrant is an emerging growth company as defined in Rule 405 of the Securities Act of 1933 (§230.405 of this chapter) or Rule 12b-2 of the Securities Exchange Act of 1934 (§240.12b-2 of this chapter). Emerging Growth Company ☐ If an emerging growth company, indicate by check mark if the registrant has elected not to use the extended transition period for complying with any new or revised financial accounting standards provided pursuant to Selection 13(a) of the Exchange Act. ☐ Item 5.07 Submission of Matters to a Vote of Security Holders. On March 25, 2026, Starbucks Corporation (the “Company”) held its 2026 Annual Meeting of Shareholders (the “Annual Meeting”). The matters submitted to a vote at the Annual Meeting and the voting results of such matters are as follows: Proposal 1 - Election of Directors The Company’s shareholders elected each of the eleven directors nominated by the Company’s Board of Directors to serve until the 2027 Annual Meeting of Shareholders or until their successors are duly elected and qualified. The following is a breakdown of the voting results: Name of Nominee For Against Withheld Broker Non-Votes Ritch Allison 846,955,724 28,832,837 1,081,482 127,972,619 Andy Campion 764,749,951 110,976,652 1,143,440 127,972,619 Beth Ford 808,145,942 66,979,908 1,744,193 127,972,619 Jørgen Vig Knudstorp 828,586,462 46,185,327 2,098,254 127,972,619 Marissa Mayer 867,967,230 7,925,365 977,448 127,972,619 Neal Mohan 865,313,815 10,401,952 1,154,276 127,972,619 Dambisa Moyo 864,744,438 11,015,863 1,109,742 127,972,619 Brian Niccol 830,353,482 43,094,658 3,421,903 127,972,619 Daniel Servitje 841,710,171 33,992,034 1,167,838 127,972,619 Mike Sievert 863,809,451 11,894,524 1,166,068 127,972,619 Wei Zhang 855,876,306 19,854,913 1,138,824 127,972,619 Proposal 2 - Advisory Resolution on Executive Compensation At the Annual Meeting, the shareholders approved, on a nonbinding, advisory basis, the compensation paid to the Company’s named executive officers. The following is a breakdown of the voting results: For Against Abstain Broker Non-Votes 774,932,476 99,362,557 2,575,010 127,972,619 Proposal 3 - Ratification of the Selection of Deloitte & Touche LLP as the Company’s Independent Registered Public Accounting Firm for Fiscal Year 2026 At the Annual Meeting, the shareholders approved the ratification of the selection of Deloitte & Touche LLP as the Company’s independent registered public accounting firm for the fiscal year ending September 27, 2026. The following is a breakdown of the voting results: For Against Abstain Broker Non-Votes 965,325,253 38,304,225 1,213,184 —— Proposal 4 - Shareholder Proposal Requesting Supermajority Shareholder Voting Requirements be Replaced with Majority Voting Requirements At the Annual Meeting, the shareholders approved a shareholder proposal requesting supermajority shareholder voting requirements be replaced with majority voting requirements. The following is a breakdown of the voting results: For Against Abstain Broker Non-Votes 823,985,324 17,573,051 30,866,556 132,323,108 Proposal 5 - Shareholder Proposal Requesting Adoption of an Independent Board Chair Policy At the Annual Meeting, the shareholders did not approve a shareholder proposal requesting adoption of an independent board chair policy. The following is a breakdown of the voting results: For Against Abstain Broker Non-Votes 107,793,749 763,797,502 5,278,792 127,972,619 Proposal 6 - Shareholder Proposal Requesting a Report on the Company’s Apparent Exclusion of Detransitioning in its Healthcare Coverage At the Annual Meeting, the shareholders did not approve a shareholder proposal requesting a report on the Company’s apparent exclusion of detransitioning in its healthcare coverage. The following is a breakdown of the voting results: For Against Abstain Broker Non-Votes 8,169,593 861,170,343 7,530,107 127,972,619 Proposal 7 - Shareholder Proposal Requesting a Report on Median Compensation and Benefits Gaps as They Address Reproductive and Gender Dysphoria Care At the Annual Meeting, the shareholders did not approve a shareholder proposal requesting a report on median compensation and benefits gaps as they address reproductive and gender dysphoria care. The following is a breakdown of the voting results: For Against Abstain Broker Non-Votes 5,153,879 864,501,617 7,214,547 127,972,619 Proposal 8 - Shareholder Proposal Requesting a Report on the Company’s Use of Diagnostic Tools Created by Politicized Corporate Partners At the Annual Meeting, the shareholders did not approve a shareholder proposal requesting a report on the Company’s use of diagnostic tools created by politicized corporate partners. The following is a breakdown of the voting results: For Against Abstain Broker Non-Votes 6,335,450 863,459,994 7,074,599 127,972,619 Proposal 9 - Shareholder Proposal Requesting a Report on the Risks of the Company Excluding Religious Charities from its Employee-Gift Match Program At the Annual Meeting, the shareholders did not approve a shareholder proposal requesting a report on the risks of the Company excluding religious charities from its employee-gift match program. The following is a breakdown of the voting results: For Against Abstain Broker Non-Votes 5,749,240 864,268,337 6,852,466 127,972,619 The above proposals are further described in the Company’s definitive proxy statement on Schedule 14A filed with the U.S. Securities and Exchange Commission on January 26, 2026. SIGNATURES Pursuant to the requirements of the Securities Exchange Act of 1934, the registrant has duly caused this report to be signed on its behalf by the undersigned hereunto duly authorized. STARBUCKS CORPORATION Dated: March 30, 2026 By: /s/ Joshua C. Gaul Joshua C. Gaul vice president, assistant general counsel and corporate secretary", "parsed_data": {}} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/TMUS_2026-04-04.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/TMUS_2026-04-04.jsonl new file mode 100644 index 0000000..1b3c85d --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/TMUS_2026-04-04.jsonl @@ -0,0 +1 @@ +{"metadata": {"ticker": "TMUS", "form_type": "8-K", "filed_at": "2026-03-31T16:35:02-04:00", "accession_no": "0001193125-26-134731", "url": "https://www.sec.gov/Archives/edgar/data/1283699/000119312526134731/d136365d8k.htm", "ingested_at": "2026-04-04T22:54:35.624295"}, "raw_text": "8-K false 0001283699 0001283699 2026-03-31 2026-03-31 0001283699 tmus:CommonStockParValue0.00001PerShareMember 2026-03-31 2026-03-31 0001283699 tmus:A3.550SeniorNotesDue2029Member 2026-03-31 2026-03-31 0001283699 tmus:M3.700SeniorNotesDue20323Member 2026-03-31 2026-03-31 0001283699 tmus:M3.150SeniorNotesDue20321Member 2026-03-31 2026-03-31 0001283699 tmus:M3.200SeniorNotesDue20322Member 2026-03-31 2026-03-31 0001283699 tmus:M3.625SeniorNotesDue20357Member 2026-03-31 2026-03-31 0001283699 tmus:M3.850SeniorNotesDue20364Member 2026-03-31 2026-03-31 0001283699 tmus:M3.900SeniorNotesDue20385Member 2026-03-31 2026-03-31 0001283699 tmus:A3.500SeniorNotesDue2037Member 2026-03-31 2026-03-31 0001283699 tmus:A3.800SeniorNotesDue2045Member 2026-03-31 2026-03-31 0001283699 tmus:M6.250SeniorNotesDue20696Member 2026-03-31 2026-03-31 0001283699 tmus:A5.500SeniorNotesDueMarch2070Member 2026-03-31 2026-03-31 0001283699 tmus:A5.500SeniorNotesDueJune2070Member 2026-03-31 2026-03-31 UNITED STATES SECURITIES AND EXCHANGE COMMISSION WASHINGTON, D.C. 20549 FORM 8-K CURRENT REPORT Pursuant to Section 13 or 15(d) of the Securities Exchange Act of 1934 Date of report (Date of earliest event reported): March 31, 2026 T-MOBILE US, INC. (Exact Name of Registrant as Specified in its Charter) Delaware 1-33409 20-0836269 (State or other jurisdiction of incorporation) (Commission File Number) (I.R.S. Employer Identification No.) 12920 SE 38th Street Bellevue , Washington 98006-1350 (Address of principal executive offices) (Zip Code) Registrant’s telephone number, including area code: ( 425 ) 378-4000 (Former Name or Former Address, if Changed Since Last Report): Check the appropriate box below if the Form 8-K filing is intended to simultaneously satisfy the filing obligation of the registrant under any of the following provisions: ☐ Written communications pursuant to Rule 425 under the Securities Act (17 CFR 230.425) ☐ Soliciting material pursuant to Rule 14a-12 under the Exchange Act (17 CFR 240.14a-12) ☐ Pre-commencement communications pursuant to Rule 14d-2(b) under the Exchange Act (17 CFR 240.14d-2(b)) ☐ Pre-commencement communications pursuant to Rule 13e-4(c) under the Exchange Act (17 CFR 240.13e-4(c)) Securities registered pursuant to Section 12(b) of the Act: Title of each class Trading Symbol Name of each exchange on which registered Common Stock, par value $0.00001 per share TMUS The NASDAQ Stock Market LLC 3.550% Senior Notes due 2029 TMUS29 The NASDAQ Stock Market LLC 3.700% Senior Notes due 2032 TMUS32 The NASDAQ Stock Market LLC 3.150% Senior Notes due 2032 TMUS32A The NASDAQ Stock Market LLC 3.200% Senior Notes due 2032 TMUS32B The NASDAQ Stock Market LLC 3.625% Senior Notes due 2035 TMUS35 The NASDAQ Stock Market LLC 3.850% Senior Notes due 2036 TMUS36 The NASDAQ Stock Market LLC 3.900% Senior Notes due 2038 TMUS38 The NASDAQ Stock Market LLC 3.500% Senior Notes due 2037 TMUS37 The NASDAQ Stock Market LLC 3.800% Senior Notes due 2045 TMUS45 The NASDAQ Stock Market LLC 6.250% Senior Notes due 2069 TMUSL The NASDAQ Stock Market LLC 5.500% Senior Notes due March 2070 TMUSZ The NASDAQ Stock Market LLC 5.500% Senior Notes due June 2070 TMUSI The NASDAQ Stock Market LLC Indicate by check mark whether the registrant is an emerging growth company as defined in Rule 405 of the Securities Act of 1933 (§230.405 of this chapter) or Rule 12b-2 of the Securities Exchange Act of 1934 (§240.12b-2 of this chapter). Emerging growth company ☐ If an emerging growth company, indicate by check mark if the registrant has elected not to use the extended transition period for complying with any new or revised financial accounting standards provided pursuant to Section 13(a) of the Exchange Act. ☐ Item 8.01. Other Events. On March 31, 2026, following the previous repayment of certain legacy indebtedness, T-Mobile USA, Inc. (“ TMUSA ”), a wholly-owned subsidiary of T-Mobile US, Inc. (“ TMUS ”), elected to release the guarantees of certain subsidiaries under its $10 billion revolving credit agreement pursuant to the terms thereof, resulting in a corresponding release under the indentures dated April 28, 2013, April 9, 2020 and September 15, 2022, governing its outstanding senior notes. As a result, following the release, the obligors under TMUSA’s revolving credit agreement and outstanding senior notes now consist of TMUSA, as issuer or borrower, and each of TMUS, Sprint LLC, Sprint Capital Corporation and Sprint Communications LLC, as guarantors. Corresponding subsidiary guarantor releases were also effected under other TMUSA debt facilities, including its export credit agency facilities and unsecured short-term commercial paper program. SIGNATURES Pursuant to the requirements of the Securities Exchange Act of 1934, the registrant has duly caused this report to be signed on its behalf by the undersigned hereunto duly authorized. T-MOBILE US, INC. March 31, 2026 /s/ Peter Osvaldik Name: Peter Osvaldik Title: Chief Financial Officer", "parsed_data": {}} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/TSLA_2026-04-04.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/TSLA_2026-04-04.jsonl new file mode 100644 index 0000000..603872c --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/TSLA_2026-04-04.jsonl @@ -0,0 +1,3 @@ +{"metadata": {"ticker": "TSLA", "form_type": "4", "filed_at": "2026-04-02T20:08:52-04:00", "accession_no": "0001972928-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/1318605/000197292826000002/xslF345X06/edgardoc.xml", "ingested_at": "2026-04-04T22:54:24.292686"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Zhu Xiaotong", "role": "SVP", "transactions": [{"date": "2026-03-31", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 20000.0, "price": 20.57, "total_value": 411400.0, "post_transaction_shares": 20000.0, "is_10b5_1_planned": false}]}} +{"metadata": {"ticker": "TSLA", "form_type": "8-K", "filed_at": "2026-04-02T09:07:13-04:00", "accession_no": "0001628280-26-022956", "url": "https://www.sec.gov/Archives/edgar/data/1318605/000162828026022956/tsla-20260402.htm", "ingested_at": "2026-04-04T22:54:24.871733"}, "raw_text": "tsla-20260402 FALSE 0001318605 0001318605 2026-04-02 2026-04-02 UNITED STATES SECURITIES AND EXCHANGE COMMISSION WASHINGTON, DC 20549 FORM 8-K CURRENT REPORT Pursuant to Section 13 or 15(d) of the Securities Exchange Act of 1934 Date of report (Date of earliest event reported): April 2, 2026 Tesla, Inc. (Exact Name of Registrant as Specified in Charter) Texas 001-34756 91-2197729 (State or Other Jurisdiction of Incorporation) (Commission File Number) (I.R.S. Employer Identification No.) 1 Tesla Road Austin , Texas 78725 (Address of Principal Executive Offices, and Zip Code) ( 512 ) 516-8177 Registrant’s Telephone Number, Including Area Code Check the appropriate box below if the Form 8-K filing is intended to simultaneously satisfy the filing obligation of the registrant under any of the following provisions ( see General Instruction A.2. below): o Written communication pursuant to Rule 425 under the Securities Act (17 CFR 230.425) o Soliciting material pursuant to Rule 14a-12 under the Exchange Act (17 CFR 240.14a-12) o Pre-commencement communication pursuant to Rule 14d-2(b) under the Exchange Act (17 CFR 240.14d-2(b)) o Pre-commencement communication pursuant to Rule 13e-4(c) under the Exchange Act (17 CFR 240.13e-4(c)) Securities registered pursuant to Section 12(b) of the Act: Title of each class Trading Symbol(s) Name of each exchange on which registered Common stock TSLA The Nasdaq Global Select Market Indicate by check mark whether the registrant is an emerging growth company as defined in Rule 405 of the Securities Act of 1933 (17 CFR §230.405) or Rule 12b-2 of the Securities Exchange Act of 1934 (17 CFR §240.12b-2). Emerging growth company o If an emerging growth company, indicate by check mark if the registrant has elected not to use the extended transition period for complying with any new or revised financial accounting standards provided pursuant to Section 13(a) of the Exchange Act. o Item 2.02 Results of Operations and Financial Condition. On April 2, 2026, Tesla, Inc. published the press release which is attached hereto as Exhibit 99.1 and is incorporated herein by reference. This information is intended to be furnished under Item 2.02 of Form 8-K and shall not be deemed “filed” for purposes of Section 18 of the Securities Exchange Act of 1934, as amended (the “ Exchange Act ”), or incorporated by reference in any filing under the Securities Act of 1933, as amended, or the Exchange Act as shall be expressly set forth by specific reference in such a filing . Item 9.01 Financial Statements and Exhibits. (d) Exhibits. Exhibit No. Description 99.1 Press release of Tesla, Inc., dated April 2, 2026 . 104 Cover Page Interactive Data File (embedded within the Inline XBRL document). SIGNATURES Pursuant to the requirements of the Securities Exchange Act of 1934, the registrant has duly caused this report to be signed on its behalf by the undersigned hereunto duly authorized. TESLA, INC. By: /s/ Brandon Ehrhart Brandon Ehrhart General Counsel and Corporate Secretary Date: April 2, 2026", "parsed_data": {}} +{"metadata": {"ticker": "TSLA", "form_type": "4", "filed_at": "2026-04-01T19:00:13-04:00", "accession_no": "0001104659-26-038682", "url": "https://www.sec.gov/Archives/edgar/data/1318605/000110465926038682/xslF345X06/tm2610684-1_4seq1.xml", "ingested_at": "2026-04-04T22:54:25.463712"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Wilson-Thompson Kathleen", "role": "Other", "transactions": [{"date": "2026-03-30", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 40000.0, "price": 14.99, "total_value": 599600.0, "post_transaction_shares": 59669.0, "is_10b5_1_planned": true}, {"date": "2026-03-30", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 2000.0, "price": 352.833, "total_value": 705666.0, "post_transaction_shares": 57669.0, "is_10b5_1_planned": true}, {"date": "2026-03-30", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 1640.0, "price": 353.658, "total_value": 579999.12, "post_transaction_shares": 56029.0, "is_10b5_1_planned": true}, {"date": "2026-03-30", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 1800.0, "price": 354.802, "total_value": 638643.6000000001, "post_transaction_shares": 54229.0, "is_10b5_1_planned": true}, {"date": "2026-03-30", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 2481.0, "price": 355.644, "total_value": 882352.764, "post_transaction_shares": 51748.0, "is_10b5_1_planned": true}, {"date": "2026-03-30", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 2360.0, "price": 356.794, "total_value": 842033.84, "post_transaction_shares": 49388.0, "is_10b5_1_planned": true}, {"date": "2026-03-30", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 1120.0, "price": 357.839, "total_value": 400779.68, "post_transaction_shares": 48268.0, "is_10b5_1_planned": true}, {"date": "2026-03-30", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 520.0, "price": 358.77, "total_value": 186560.4, "post_transaction_shares": 47748.0, "is_10b5_1_planned": true}, {"date": "2026-03-30", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 1880.0, "price": 360.181, "total_value": 677140.2799999999, "post_transaction_shares": 45868.0, "is_10b5_1_planned": true}, {"date": "2026-03-30", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 1000.0, "price": 361.035, "total_value": 361035.0, "post_transaction_shares": 44868.0, "is_10b5_1_planned": true}, {"date": "2026-03-30", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 2320.0, "price": 362.142, "total_value": 840169.44, "post_transaction_shares": 42548.0, "is_10b5_1_planned": true}, {"date": "2026-03-30", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 4001.0, "price": 363.083, "total_value": 1452695.083, "post_transaction_shares": 38547.0, "is_10b5_1_planned": true}, {"date": "2026-03-30", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 3927.0, "price": 363.947, "total_value": 1429219.869, "post_transaction_shares": 34620.0, "is_10b5_1_planned": true}, {"date": "2026-03-30", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 560.0, "price": 364.888, "total_value": 204337.28, "post_transaction_shares": 34060.0, "is_10b5_1_planned": true}, {"date": "2026-03-30", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 120.0, "price": 365.897, "total_value": 43907.64, "post_transaction_shares": 33940.0, "is_10b5_1_planned": true}, {"date": "2026-03-30", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 80.0, "price": 366.855, "total_value": 29348.4, "post_transaction_shares": 33860.0, "is_10b5_1_planned": true}]}} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/VRTX_2026-04-04.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/VRTX_2026-04-04.jsonl new file mode 100644 index 0000000..86f43d9 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/VRTX_2026-04-04.jsonl @@ -0,0 +1,3 @@ +{"metadata": {"ticker": "VRTX", "form_type": "4", "filed_at": "2026-04-03T16:53:51-04:00", "accession_no": "0000875320-26-000157", "url": "https://www.sec.gov/Archives/edgar/data/875320/000087532026000157/xslF345X06/wk-form4_1775249628.xml", "ingested_at": "2026-04-04T22:54:58.343666"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Liu Joy", "role": "EVP and Chief Legal Officer", "transactions": [{"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 978.0, "price": 449.17, "total_value": 439288.26, "post_transaction_shares": 21833.0, "is_10b5_1_planned": true}]}} +{"metadata": {"ticker": "VRTX", "form_type": "4", "filed_at": "2026-03-31T16:10:23-04:00", "accession_no": "0000875320-26-000149", "url": "https://www.sec.gov/Archives/edgar/data/875320/000087532026000149/xslF345X06/wk-form4_1774987818.xml", "ingested_at": "2026-04-04T22:54:58.915828"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Bozic Carmen", "role": "EVP and CMO", "transactions": [{"date": "2026-03-27", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 2329.0, "price": 450.95, "total_value": 1050262.55, "post_transaction_shares": 33076.0, "is_10b5_1_planned": true}]}} +{"metadata": {"ticker": "VRTX", "form_type": "8-K", "filed_at": "2026-03-31T16:03:47-04:00", "accession_no": "0000875320-26-000147", "url": "https://www.sec.gov/Archives/edgar/data/875320/000087532026000147/vrtx-20260331.htm", "ingested_at": "2026-04-04T22:54:59.488007"}, "raw_text": "vrtx-20260331 0000875320 VERTEX PHARMACEUTICALS INC / MA false 0000875320 2026-03-31 2026-03-31 UNITED STATES SECURITIES AND EXCHANGE COMMISSION Washington, D.C. 20549 FORM 8-K CURRENT REPORT Pursuant to Section 13 OR 15(d) of The Securities Exchange Act of 1934 Date of Report (Date of earliest event reported) March 31, 2026 Vertex Pharmaceuticals Incorporated (Exact name of registrant as specified in its charter) Massachusetts 000-19319 04-3039129 (State or other jurisdiction of incorporation) (Commission File Number) (I.R.S. Employer Identification No.) 50 Northern Avenue Boston , Massachusetts 02210 (Address of principal executive offices) (Zip Code) ( 617 ) 341-6100 (Registrant's telephone number, including area code) Check the appropriate box below if the Form 8-K filing is intended to simultaneously satisfy the filing obligation of the registrant under any of the following provisions (see General Instruction A.2. below): ☐ Written communications pursuant to Rule 425 under the Securities Act (17 CFR 230.425) ☐ Soliciting material pursuant to Rule 14a-12 under the Exchange Act (17 CFR 240.14a-12) ☐ Pre-commencement communications pursuant to Rule 14d-2(b) under the Exchange Act (17 CFR 240.14d-2(b)) ☐ Pre-commencement communications pursuant to Rule 13e-4(c) under the Exchange Act (17 CFR 240.13e-4(c)) Securities registered pursuant to Section 12(b) of the Act: Title of each class Trading Symbol Name of each exchange on which registered Common Stock, $0.01 Par Value Per Share VRTX The Nasdaq Global Select Market Indicate by check mark whether the registrant is an emerging growth company as defined in Rule 405 of the Securities Act of 1933 (§230.405 of this chapter) or Rule 12b-2 of the Securities Exchange Act of 1934 (§240.12b-2 of this chapter). Emerging growth company ☐ If an emerging growth company, indicate by check mark if the registrant has elected not to use the extended transition period for complying with any new or revised financial accounting standards provided pursuant to Section 13(a) of the Exchange Act. ☐ Item 8.01. Other Events. Vertex Pharmaceuticals Incorporated (the “Company”) has completed the submission to the U.S. Food and Drug Administration (the “FDA”) of its rolling Biologics Licensing Application (“BLA”) for potential accelerated approval of povetacicept for the treatment of immunoglobulin A nephropathy (“IgAN”) in adults. The Company used a priority review voucher and therefore expects the FDA review of the povetacicept BLA to be expedited to six months from the date of the FDA’s acceptance of the BLA versus the typical ten-month review. Special Note Regarding Forward-Looking Statements This Current Report on Form 8-K contains forward-looking statements that are subject to risks, uncertainties and other factors including statements regarding the expected duration of the FDA review of the povetacicept BLA and potential for accelerated approval of povetacicept for the treatment of IgAN. While the Company believes the forward-looking statements contained in this communication are accurate, these forward-looking statements represent the beliefs of the Company only as of the date of this communication, and there are a number of risks and uncertainties that could cause actual events or results to differ materially from those expressed or implied by such forward-looking statements. Forward-looking statements are subject to certain risks, uncertainties, or other factors that are difficult to predict and could cause actual events or results to differ materially from those indicated in any such statements due to a number of risks and uncertainties. Forward-looking statements in this communication should be evaluated together with the many risks and uncertainties that affect the Company's business. Those risks and uncertainties include, among other things, that we may be unable to obtain or be delayed in obtaining regulatory approval and other risks listed under the heading “Risk Factors” and the other cautionary factors discussed in the Company's periodic reports filed with the Securities and Exchange Commission (the “SEC”), including the Company's annual report on Form 10-K for the year ended December 31, 2025, its quarterly reports on Form 10-Q, and its current reports on Form 8-K, all of which are available for free through the Company's website at www.vrtx.com and on the SEC’s website at www.sec.gov. You should not place undue reliance on these statements. All forward-looking statements are based on information currently available to the Company, and the Company disclaims any obligation to update the information contained in this communication as new information becomes available, except as required by law. SIGNATURES Pursuant to the requirements of the Securities Exchange Act of 1934, the Registrant has duly caused this report to be signed on its behalf by the undersigned hereunto duly authorized. VERTEX PHARMACEUTICALS INCORPORATED (Registrant) Date: March 31, 2026 /s/ Joy Liu Joy Liu Executive Vice President, Chief Legal Officer", "parsed_data": {}} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/_SUMMARY.json b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/_SUMMARY.json new file mode 100644 index 0000000..029a777 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/_SUMMARY.json @@ -0,0 +1,86 @@ +{ + "date": "2026-04-04", + "total_filings": 72, + "ticker_breakdown": { + "VRTX": { + "4": 2, + "8-K": 1 + }, + "PANW": { + "4": 2, + "8-K": 0 + }, + "CMCSA": { + "4": 6, + "8-K": 0 + }, + "AVGO": { + "4": 0, + "8-K": 1 + }, + "SBUX": { + "4": 0, + "8-K": 2 + }, + "TSLA": { + "4": 2, + "8-K": 1 + }, + "AAPL": { + "4": 6, + "8-K": 0 + }, + "AMAT": { + "4": 1, + "8-K": 0 + }, + "INTU": { + "4": 6, + "8-K": 0 + }, + "TMUS": { + "4": 0, + "8-K": 1 + }, + "IBM": { + "4": 13, + "8-K": 0 + }, + "MDLZ": { + "4": 0, + "8-K": 0 + }, + "HON": { + "4": 2, + "8-K": 0 + }, + "NFLX": { + "4": 13, + "8-K": 0 + }, + "BKNG": { + "4": 0, + "8-K": 3 + }, + "INTC": { + "4": 0, + "8-K": 1 + }, + "QCOM": { + "4": 3, + "8-K": 0 + }, + "AMZN": { + "4": 1, + "8-K": 0 + }, + "COST": { + "4": 1, + "8-K": 0 + }, + "GOOG": { + "4": 3, + "8-K": 1 + } + } +} \ No newline at end of file diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/patched_AAPL_2026-04-04.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/patched_AAPL_2026-04-04.jsonl new file mode 100644 index 0000000..a169476 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/patched_AAPL_2026-04-04.jsonl @@ -0,0 +1,3 @@ +{"metadata": {"ticker": "AAPL", "form_type": "4", "filed_at": "2026-04-03T18:30:45-04:00", "accession_no": "0001140361-26-013192", "url": "https://www.sec.gov/Archives/edgar/data/320193/000114036126013192/xslF345X06/form4.xml", "ingested_at": "2026-04-04T22:49:03.052799"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "O'BRIEN DEIRDRE", "role": "Senior Vice President", "transactions": [{"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 64317.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 201127.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 34315.0, "price": 255.63, "total_value": 8771943.45, "post_transaction_shares": 166812.0, "is_10b5_1_planned": true}, {"date": "2026-04-02", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 20338.0, "price": 255.12, "total_value": 5188630.5600000005, "post_transaction_shares": 146474.0, "is_10b5_1_planned": true}, {"date": "2026-04-02", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 9664.0, "price": 255.82, "total_value": 2472244.48, "post_transaction_shares": 136810.0, "is_10b5_1_planned": true}]}} +{"metadata": {"ticker": "AAPL", "form_type": "4", "filed_at": "2026-04-03T18:30:43-04:00", "accession_no": "0001140361-26-013191", "url": "https://www.sec.gov/Archives/edgar/data/320193/000114036126013191/xslF345X06/form4.xml", "ingested_at": "2026-04-04T22:49:03.628698"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Khan Sabih", "role": "COO", "transactions": [{"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 64317.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 1107212.0, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 33317.0, "price": 255.63, "total_value": 8516824.709999999, "post_transaction_shares": 1073895.0, "is_10b5_1_planned": false}]}} +{"metadata": {"ticker": "AAPL", "form_type": "4", "filed_at": "2026-04-03T18:30:41-04:00", "accession_no": "0001140361-26-013190", "url": "https://www.sec.gov/Archives/edgar/data/320193/000114036126013190/xslF345X06/form4.xml", "ingested_at": "2026-04-04T22:49:04.205425"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "COOK TIMOTHY D", "role": "Chief Executive Officer", "transactions": [{"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 131576.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 3411994.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 66627.0, "price": 255.63, "total_value": 17031860.009999998, "post_transaction_shares": 3345367.0, "is_10b5_1_planned": true}, {"date": "2026-04-02", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 5087.0, "price": 251.25, "total_value": 1278108.75, "post_transaction_shares": 3340280.0, "is_10b5_1_planned": true}, {"date": "2026-04-02", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 9147.0, "price": 252.11, "total_value": 2306050.17, "post_transaction_shares": 3331133.0, "is_10b5_1_planned": true}, {"date": "2026-04-02", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 1878.0, "price": 253.13, "total_value": 475378.14, "post_transaction_shares": 3329255.0, "is_10b5_1_planned": true}, {"date": "2026-04-02", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 16083.0, "price": 254.37, "total_value": 4091032.71, "post_transaction_shares": 3313172.0, "is_10b5_1_planned": true}, {"date": "2026-04-02", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 28188.0, "price": 255.17, "total_value": 7192731.96, "post_transaction_shares": 3284984.0, "is_10b5_1_planned": true}, {"date": "2026-04-02", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 4566.0, "price": 256.0, "total_value": 1168896.0, "post_transaction_shares": 3280418.0, "is_10b5_1_planned": true}]}} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/patched_AMAT_2026-04-04.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/patched_AMAT_2026-04-04.jsonl new file mode 100644 index 0000000..e26acbf --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/patched_AMAT_2026-04-04.jsonl @@ -0,0 +1 @@ +{"metadata": {"ticker": "AMAT", "form_type": "4", "filed_at": "2026-04-02T18:44:21-04:00", "accession_no": "0001628280-26-023379", "url": "https://www.sec.gov/Archives/edgar/data/6951/000162828026023379/xslF345X06/wk-form4_1775169858.xml", "ingested_at": "2026-04-04T22:54:48.024214"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Sanders Adam", "role": "Corp. Controller & CAO", "transactions": [{"date": "2026-04-01", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 125.0, "price": 353.8, "total_value": 44225.0, "post_transaction_shares": 4548.0, "is_10b5_1_planned": false}]}} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/patched_AMZN_2026-04-04.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/patched_AMZN_2026-04-04.jsonl new file mode 100644 index 0000000..9b4bfab --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/patched_AMZN_2026-04-04.jsonl @@ -0,0 +1 @@ +{"metadata": {"ticker": "AMZN", "form_type": "4", "filed_at": "2026-04-03T16:41:29-04:00", "accession_no": "0001018724-26-000010", "url": "https://www.sec.gov/Archives/edgar/data/1018724/000101872426000010/xslF345X06/wk-form4_1775248886.xml", "ingested_at": "2026-04-04T22:54:20.480654"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Herrington Douglas J", "role": "CEO Worldwide Amazon Stores", "transactions": [{"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 1000.0, "price": 210.5, "total_value": 210500.0, "post_transaction_shares": 520361.0, "is_10b5_1_planned": true}]}} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/patched_AVGO_2026-04-04.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/patched_AVGO_2026-04-04.jsonl new file mode 100644 index 0000000..af94b4c --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/patched_AVGO_2026-04-04.jsonl @@ -0,0 +1 @@ +{"metadata": {"ticker": "AVGO", "form_type": "8-K", "filed_at": "2026-04-02T17:25:00-04:00", "accession_no": "0001193125-26-140574", "url": "https://www.sec.gov/Archives/edgar/data/1730168/000119312526140574/d109450d8k.htm", "ingested_at": "2026-04-04T22:54:26.159841"}, "raw_text": "8K_PARSED_INTO_MARKDOWN_CHUNKS", "parsed_data": {"is_chunked": true, "item_chunks": {"5.02": "Item 5.02 | Departure of Directors or Certain Officers; Election of Directors; Appointment of Certain Officers; Compensatory Arrangements of Certain Officers. |\n\nChief Financial Officer Transition\n\nOn March 30, 2026, Kirsten M. Spears notified Broadcom Inc. (the “Company”) of her retirement and resigned from her position as Chief Financial Officer and Chief Accounting Officer of the Company, effective as of June 12, 2026.\n\nOn March 30, 2026, the Board of Directors of the Company (the “Board”) appointed Amie Thuener to succeed Ms. Spears as the Chief Financial Officer of the Company, effective as of June 12, 2026. The employment of Ms. Thuener with the Company is expected to commence on May 4, 2026 and she will assume the role of Chief Financial Officer following the retirement of Ms. Spears on June 12, 2026.\n\nMs. Thuener, age 51, has served as Vice President, Corporate Controller and Chief Accounting Officer of Alphabet Inc. since 2018. Ms. Thuener held several senior finance positions at Alphabet from 2013 to 2018, including as Vice President and Chief Accountant. Prior to joining Alphabet, Ms. Thuener was at PricewaterhouseCoopers LLP from 1996 to 2012 and held several senior management positions, including as Managing Director, Transaction Services. Ms. Thuener is a Certified Public Accountant and a Chartered Global Management Accountant.\n\nThere are no family relationships between Ms. Thuener and any director or executive officer of the Company as defined in Item 401(d) of Regulation S-K, and Ms. Thuener has no direct or indirect material interest in any transaction or proposed transaction required to be disclosed pursuant to Item 404(a) of Regulation S-K.\n\nKirsten M. Spears Transition and Consulting Agreement\n\nIn connection with the retirement of Ms. Spears, the Company entered into a transition and consulting agreement with Ms. Spears, dated as of April 1, 2026 (the “Transition Agreement”).\n\nThe Transition Agreement provides that, following the conclusion of Ms. Spears’ employment with the Company on June 12, 2026, she will provide consulting services to the Company, as reasonably requested by the Chief Executive Officer of the Company, until March 15, 2027, unless the consulting period terminates earlier in accordance with the terms of the Transition Agreement. During the consulting period, Ms. Spears’ outstanding equity awards will continue to vest in accordance with their terms (provided that the performance-based equity awards will in no event vest at a level exceeding target). Ms. Spears will not receive any other compensation during the consulting period. The Transition Agreement includes a general release of claims in favor of the Company.\n\nAmie Thuener Offer Letter and Equity Awards\n\nIn connection with her employment with the Company and appointment as Chief Financial Officer of the Company, effective as of June 12, 2026, the Company entered into an offer letter with Ms. Thuener, dated as of March 30, 2026, which sets forth the material terms of her employment and compensation (the “Offer Letter”).\n\nPursuant to the Offer Letter, Ms. Thuener will receive an annual base salary of $700,000 and will be eligible to participate in the Company’s annual performance bonus plan with a target bonus opportunity of 100% of her base salary. Ms. Thuener will also receive a $1,000,000 sign-on cash bonus, payable within 30 days following the commencement of her employment.\n\nThe Offer Letter further provides that, subject to the approval of the Compensation Committee of the Board and Ms. Thuener’s continued employment through the applicable grant date, Ms. Thuener will be granted equity awards under the Company’s 2012 Stock Incentive Plan consisting of (i) 50,000 restricted stock units (“RSUs”) and (ii) 50,000 performance stock units (“PSUs”) at target. The equity awards are expected to be granted on June 15, 2026.\n\nThe RSUs will vest in equal quarterly installments over a four-year period following the grant date, subject to Ms. Thuener’s continued employment through each applicable vesting date. The PSUs will vest annually over a four-year period across four overlapping performance periods (March 2, 2026 through March 1, 2027, March 2, 2026 through March 1, 2028, March 2, 2026 through March 1, 2029 and March 2, 2026 through March 1, 2030) based on the Company’s total stockholder return relative to the S&P 500 and the Company’s absolute total stockholder return for the applicable performance period, in each case subject to Ms. Thuener’s continued employment through the anniversary of the grant date immediately following the end of each applicable performance period. The maximum vesting for the PSUs is 200% of the total target number of shares. The equity awards will be subject to the other terms and conditions set forth in the Company’s 2012 Stock Incentive Plan and the applicable award agreements.\n\n---\n\nIn addition, Ms. Thuener is expected to enter into the Company’s standard form of indemnification and advancement agreement and a severance benefit agreement on terms and conditions materially consistent with those applicable to Ms. Spears pursuant to her severance benefit agreement, as described in the Company’s definitive proxy statement filed with the U.S. Securities and Exchange Commission on March 2, 2026.\n\n---"}}} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/patched_BKNG_2026-04-04.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/patched_BKNG_2026-04-04.jsonl new file mode 100644 index 0000000..6ed6989 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/patched_BKNG_2026-04-04.jsonl @@ -0,0 +1,3 @@ +{"metadata": {"ticker": "BKNG", "form_type": "8-K", "filed_at": "2026-04-02T16:34:43-04:00", "accession_no": "0000950157-26-000465", "url": "https://www.sec.gov/Archives/edgar/data/1075531/000095015726000465/form8-k.htm", "ingested_at": "2026-04-04T22:54:56.421512"}, "raw_text": "8K_PARSED_INTO_MARKDOWN_CHUNKS", "parsed_data": {"is_chunked": true, "item_chunks": {"5.03": "Item 5.03. Amendments to Articles of incorporation or Bylaws; Change in Fiscal Year.\n\nOn April 2, 2026, Booking Holdings Inc. (the “Company”) filed an amendment to its Restated Certificate of Incorporation with the Delaware Secretary of State to effect the\npreviously announced twenty-five-for-one forward stock split of the Company’s common stock and to proportionately increase the number of shares of the Company’s authorized common stock from 1,000,000,000 to 25,000,000,000. The amendment, which became\neffective at 4:01 p.m. Eastern Time on April 2, 2026, is filed as Exhibit 3.1 to this Current Report on Form 8-K. Trading is expected to commence on a split-adjusted basis at market open on Monday, April 6, 2026.", "9.01": "Item 9.01. Financial Statements and Exhibits.\n\n| | | |\n| --- | --- | --- |\n| (d) Exhibits | | |\n| Exhibit Number | | Description |\n| | | |\n| 3.1 | | Amendment to Restated Certificate of Incorporation of Booking Holdings Inc., dated April 2, 2026. |\n| 104 | | Cover Page Interactive Data File - the cover page interactive data file does not appear in the Interactive Data File because its XBRL tags are embedded within the Inline XBRL document. |\n\n---"}}} +{"metadata": {"ticker": "BKNG", "form_type": "8-K", "filed_at": "2026-04-02T16:12:50-04:00", "accession_no": "0001075531-26-000014", "url": "https://www.sec.gov/Archives/edgar/data/1075531/000107553126000014/bkng-20260402.htm", "ingested_at": "2026-04-04T22:54:57.020686"}, "raw_text": "8K_PARSED_INTO_MARKDOWN_CHUNKS", "parsed_data": {"is_chunked": true, "item_chunks": {"5.02": "Item 5.02. Departure of Directors or Certain Officers; Election of Directors; Appointment\n\nof Certain Officers; Compensatory Arrangements of Certain Officers.\n\nOn April 2, 2026, Booking Holdings Inc. (the \"Company\") announced that it has appointed Caroline Sullivan as its Senior Vice President, Chief Accounting Officer, and Controller effective as of April 29, 2026. Ms. Sullivan, age 57, served as Vice President, Procurement and Real Estate of Elevance Health, a health insurance company, from June 2025 to March 2026. Prior to this, Ms. Sullivan was Senior Vice President, Chief Accounting Officer and Corporate Controller at Moody's Corporation, a global risk assessment firm, from December 2018 to March 2025. Ms. Sullivan also served as Global Banking Controller of Bank of America from 2017 to 2018. Earlier in her career, she held various finance positions with Morgan Stanley and Allied Irish Bank. Ms. Sullivan began her career at Ernst and Young and is a Certified Public Accountant.\n\nIn connection with Ms. Sullivan's appointment, she and the Company entered into an employment agreement with, among others, the following terms:\n\n•an initial annual base salary of $525,000;\n\n•a target annual bonus of 75% of base salary;\n\n•a grant of restricted stock units (\"RSUs\") expected to be made in May 2026 with a grant date fair value of $1,000,000;\n\n•a grant of performance share units (\"PSUs\") expected to be made in March 2027 with a grant date fair value at target of $1,000,000;\n\n•a new hire grant of RSUs expected to be made in May 2026 with a grant date fair value of $1,000,000;\n\n•a signing bonus of $300,000; and\n\n•in the event of her termination without cause, subject to the execution of a release of claims, severance benefits including payments equal to one times her base salary and target annual bonus, a pro-rated portion of any earned bonus for the year of termination if employment is terminated after June 30 of the then current year, health benefits for a period of 12 months, and any earned bonus for a prior completed year that has not yet been paid.\n\nMs. Sullivan's RSUs and new hire RSUs will each vest in three equal annual installments on each of the first three anniversaries of the grant date, subject to her continuous service from the date of grant until the vesting date, with pro rata vesting upon a termination without cause or due to disability, and full vesting upon a termination due to death. Ms. Sullivan's PSU award will vest subject to such service and performance-based vesting provisions generally consistent with those applicable to similarly-situated executives who receive PSU grants in 2027. The awards will be subject to the terms of the respective award agreements for awards under the Company’s 1999 Omnibus Plan.\n\nIn connection with Ms. Sullivan's appointment, the Company and Ms. Sullivan have also entered into a Non-Competition and Non-Solicitation Agreement and an Employee Confidentiality and Assignment Agreement.\n\n---"}}} +{"metadata": {"ticker": "BKNG", "form_type": "8-K", "filed_at": "2026-04-01T16:10:37-04:00", "accession_no": "0001075531-26-000012", "url": "https://www.sec.gov/Archives/edgar/data/1075531/000107553126000012/bkng-20260401.htm", "ingested_at": "2026-04-04T22:54:57.634231"}, "raw_text": "8K_PARSED_INTO_MARKDOWN_CHUNKS", "parsed_data": {"is_chunked": true, "item_chunks": {"5.02": "Item 5.02. Departure of Directors or Certain Officers; Election of Directors; Appointment\n\nof Certain Officers; Compensatory Arrangements of Certain Officers.\n\nAppointment of Director\n\nOn April 1, 2026, Mr. Kurt Sievers was appointed to the Board of Directors (the \"Board\") of Booking Holdings Inc. (the \"Company\") and will be joining the Board's Corporate Governance Committee.\n\nMr. Sievers served as President and Chief Executive Officer of NXP Semiconductors N.V., a Netherlands-based semiconductor company (\"NXP\"), from 2020 until his retirement in 2025. He previously served as President beginning in 2018 and joined NXP’s Executive Management Team in 2009. Mr. Sievers currently serves on the board of directors of Capgemini SE, a multinational information technology services and consulting company, and is a member of its Strategy & CSR and Compensation Committees. He also serves on the supervisory board of Daimler Truck Holding AG, a commercial vehicle manufacturer.\n\nIn consideration of his services as a member of the Company's Board and any Board committees, Mr. Sievers will be compensated in accordance with the Company's non-employee director compensation program as in effect from time to time.\n\nRetirement of Director\n\nMs. Lynn Radakovich has informed the Company that she has decided to retire from the Board, effective at the Company's Annual Meeting in June 2026 (the \"Annual Meeting\"), and therefore is not standing for re-election at the Annual Meeting. The Company and the Board express their appreciation to Ms. Radakovich for her dedicated service.", "7.01": "Item 7.01 Regulation FD Disclosure.\n\nA copy of the press release announcing Mr. Sievers's appointment and Ms. Radakovich's retirement is furnished with this Current Report as Exhibit 99.1.\n\nThe information furnished herewith pursuant to this Item 7.01 of this Current Report shall not be deemed to be \"filed\" for purposes of Section 18 of the Securities Exchange Act of 1934, as amended (the \"Exchange Act\"), or otherwise subject to the liabilities of that section, and shall not be incorporated by reference into any registration statement or other document under the Securities Act of 1933, as amended, or the Exchange Act, except as shall be expressly set forth by specific reference in such filing.", "9.01": "Item 9.01. Financial Statements and Exhibits.\n\n(d) Exhibits\n\n| | | | | | | | | | | | | | | |\n| --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- |\n| | | | | | | | | | | | | | | |\n| Exhibit Number | | | Description | | | | | | | | | | | |\n| | | | | | | | | | | | | | | |\n| 99.1 | | | Press Release, dated April 1, 2026. | | | | | | | | | | | |\n| 104 | | | Cover Page Interactive Data File - the cover page interactive data file does not appear in the Interactive Data File because its XBRL tags are embedded within the Inline XBRL document. | | | | | | | | | | | |\n| | | | | | | | | | | | | | | |\n| | | | | | | | | | | | | | | |\n| | | | | | | | | | | | | | | |\n| | | | | | | | | | | | | | | |\n| | | | | | | | | | | | | | | |\n| | | | | | | | | | | | | | | |\n| | | | | | | | | | | | | | | |\n| | | | | | | | | | | | | | | |\n| | | | | | | | | | | | | | | |\n\n---"}}} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/patched_CMCSA_2026-04-04.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/patched_CMCSA_2026-04-04.jsonl new file mode 100644 index 0000000..e601d52 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/patched_CMCSA_2026-04-04.jsonl @@ -0,0 +1,6 @@ +{"metadata": {"ticker": "CMCSA", "form_type": "4", "filed_at": "2026-04-03T13:33:09-04:00", "accession_no": "0001225208-26-004342", "url": "https://www.sec.gov/Archives/edgar/data/1166691/000122520826004342/xslF345X06/doc4.xml", "ingested_at": "2026-04-04T22:54:43.613356"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Murdock Daniel C.", "role": "EVP & Chief Accounting Officer", "transactions": [{"date": "2026-04-03", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 5268.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 64435.0497, "is_10b5_1_planned": false}, {"date": "2026-04-03", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 2073.0, "price": 27.93, "total_value": 57898.89, "post_transaction_shares": 62362.0497, "is_10b5_1_planned": false}]}} +{"metadata": {"ticker": "CMCSA", "form_type": "4", "filed_at": "2026-04-02T16:27:31-04:00", "accession_no": "0001225208-26-004203", "url": "https://www.sec.gov/Archives/edgar/data/1166691/000122520826004203/xslF345X06/doc4.xml", "ingested_at": "2026-04-04T22:54:44.188539"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Smith Gordon", "role": "Other", "transactions": [{"date": "2026-03-31", "code": "A", "direction": "OTHER (A)", "shares": 1176.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 9045.0, "is_10b5_1_planned": false}]}} +{"metadata": {"ticker": "CMCSA", "form_type": "4", "filed_at": "2026-04-02T16:26:30-04:00", "accession_no": "0001225208-26-004202", "url": "https://www.sec.gov/Archives/edgar/data/1166691/000122520826004202/xslF345X06/doc4.xml", "ingested_at": "2026-04-04T22:54:44.751062"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Honickman Jeffrey A", "role": "Other", "transactions": [{"date": "2026-03-31", "code": "A", "direction": "OTHER (A)", "shares": 1524.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 262583.021, "is_10b5_1_planned": false}]}} +{"metadata": {"ticker": "CMCSA", "form_type": "4", "filed_at": "2026-04-02T16:25:30-04:00", "accession_no": "0001225208-26-004201", "url": "https://www.sec.gov/Archives/edgar/data/1166691/000122520826004201/xslF345X06/doc4.xml", "ingested_at": "2026-04-04T22:54:45.317020"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "BREEN EDWARD D", "role": "Other", "transactions": [{"date": "2026-03-31", "code": "A", "direction": "OTHER (A)", "shares": 697.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 56522.277, "is_10b5_1_planned": false}]}} +{"metadata": {"ticker": "CMCSA", "form_type": "4", "filed_at": "2026-04-02T16:24:25-04:00", "accession_no": "0001225208-26-004200", "url": "https://www.sec.gov/Archives/edgar/data/1166691/000122520826004200/xslF345X06/doc4.xml", "ingested_at": "2026-04-04T22:54:45.888239"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Brady Louise F.", "role": "Other", "transactions": [{"date": "2026-03-31", "code": "A", "direction": "OTHER (A)", "shares": 1176.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 32682.89, "is_10b5_1_planned": false}]}} +{"metadata": {"ticker": "CMCSA", "form_type": "4", "filed_at": "2026-04-02T16:23:19-04:00", "accession_no": "0001225208-26-004199", "url": "https://www.sec.gov/Archives/edgar/data/1166691/000122520826004199/xslF345X06/doc4.xml", "ingested_at": "2026-04-04T22:54:46.458338"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Baltimore Thomas J Jr", "role": "Other", "transactions": [{"date": "2026-03-31", "code": "A", "direction": "OTHER (A)", "shares": 1176.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 39043.493, "is_10b5_1_planned": false}]}} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/patched_COST_2026-04-04.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/patched_COST_2026-04-04.jsonl new file mode 100644 index 0000000..d576741 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/patched_COST_2026-04-04.jsonl @@ -0,0 +1 @@ +{"metadata": {"ticker": "COST", "form_type": "4", "filed_at": "2026-04-01T18:13:26-04:00", "accession_no": "0000909832-26-000039", "url": "https://www.sec.gov/Archives/edgar/data/909832/000090983226000039/xslF345X06/form4.xml", "ingested_at": "2026-04-04T22:54:26.825658"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Frates Caton", "role": "Executive Vice President", "transactions": [{"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 700.0, "price": 993.0, "total_value": 695100.0, "post_transaction_shares": 5815.001, "is_10b5_1_planned": false}]}} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/patched_GOOG_2026-04-04.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/patched_GOOG_2026-04-04.jsonl new file mode 100644 index 0000000..0ced741 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/patched_GOOG_2026-04-04.jsonl @@ -0,0 +1,4 @@ +{"metadata": {"ticker": "GOOG", "form_type": "4", "filed_at": "2026-04-03T17:31:35-04:00", "accession_no": "0001193125-26-142372", "url": "https://www.sec.gov/Archives/edgar/data/1652044/000119312526142372/xslF345X06/ownership.xml", "ingested_at": "2026-04-04T22:54:21.748568"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "O'Toole Amie Thuener", "role": "VP, Chief Accounting Officer", "transactions": [{"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 617.0, "price": 289.63, "total_value": 178701.71, "post_transaction_shares": 10093.0, "is_10b5_1_planned": false}]}} +{"metadata": {"ticker": "GOOG", "form_type": "8-K", "filed_at": "2026-04-02T16:18:28-04:00", "accession_no": "0001652044-26-000031", "url": "https://www.sec.gov/Archives/edgar/data/1652044/000165204426000031/goog-20260330.htm", "ingested_at": "2026-04-04T22:54:22.331849"}, "raw_text": "8K_PARSED_INTO_MARKDOWN_CHUNKS", "parsed_data": {"is_chunked": true, "item_chunks": {"5.02": "Item 5.02 Departure of Directors or Certain Officers; Election of Directors; Appointment of Certain Officers; Compensatory Arrangements of Certain Officers.\n\nOn March 30, 2026, Amie Thuener O'Toole notified Alphabet Inc. (the “Company”) of her resignation as Vice President, Corporate Controller and Principal Accounting Officer of the Company, effective April 9, 2026, to pursue another professional opportunity. Ms. O'Toole’s decision to resign did not result from any disagreement with the Company on any matter relating to the Company’s operations, policies, or practices.\n\n---"}}} +{"metadata": {"ticker": "GOOG", "form_type": "4", "filed_at": "2026-03-31T21:43:02-04:00", "accession_no": "0001193125-26-135334", "url": "https://www.sec.gov/Archives/edgar/data/1238734/000119312526135334/xslF345X06/ownership.xml", "ingested_at": "2026-04-04T22:54:22.903382"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "WALKER JOHN KENT", "role": "President, Global Affairs, CLO", "transactions": [{"date": "2026-03-27", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 2677.0, "price": 273.91, "total_value": 733257.0700000001, "post_transaction_shares": 58124.0, "is_10b5_1_planned": false}, {"date": "2026-03-27", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 1516.0, "price": 274.93, "total_value": 416793.88, "post_transaction_shares": 56608.0, "is_10b5_1_planned": false}, {"date": "2026-03-27", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 1400.0, "price": 276.21, "total_value": 386694.0, "post_transaction_shares": 55208.0, "is_10b5_1_planned": false}, {"date": "2026-03-27", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 2100.0, "price": 277.42, "total_value": 582582.0, "post_transaction_shares": 53108.0, "is_10b5_1_planned": false}, {"date": "2026-03-27", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 1300.0, "price": 278.3, "total_value": 361790.0, "post_transaction_shares": 51808.0, "is_10b5_1_planned": false}, {"date": "2026-03-31", "code": "G", "direction": "OTHER (D)", "shares": 8993.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 23508.0, "is_10b5_1_planned": false}, {"date": "2026-03-31", "code": "G", "direction": "OTHER (A)", "shares": 8993.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 60801.0, "is_10b5_1_planned": false}]}} +{"metadata": {"ticker": "GOOG", "form_type": "4", "filed_at": "2026-03-31T20:39:05-04:00", "accession_no": "0001193125-26-135258", "url": "https://www.sec.gov/Archives/edgar/data/1652044/000119312526135258/xslF345X06/ownership.xml", "ingested_at": "2026-04-04T22:54:23.480449"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "ARNOLD FRANCES", "role": "Director", "transactions": [{"date": "2026-03-30", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 102.0, "price": 275.19, "total_value": 28069.38, "post_transaction_shares": 18316.0, "is_10b5_1_planned": false}]}} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/patched_HON_2026-04-04.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/patched_HON_2026-04-04.jsonl new file mode 100644 index 0000000..00baeb1 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/patched_HON_2026-04-04.jsonl @@ -0,0 +1,2 @@ +{"metadata": {"ticker": "HON", "form_type": "4", "filed_at": "2026-04-02T17:57:33-04:00", "accession_no": "0000773840-26-000025", "url": "https://www.sec.gov/Archives/edgar/data/773840/000077384026000025/xslF345X06/wk-form4_1775167050.xml", "ingested_at": "2026-04-04T22:54:42.309982"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Flint Deborah", "role": "Other", "transactions": []}} +{"metadata": {"ticker": "HON", "form_type": "4", "filed_at": "2026-04-02T17:56:37-04:00", "accession_no": "0000773840-26-000024", "url": "https://www.sec.gov/Archives/edgar/data/773840/000077384026000024/xslF345X06/wk-form4_1775166995.xml", "ingested_at": "2026-04-04T22:54:42.895683"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "ANGOVE DUNCAN", "role": "Other", "transactions": []}} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/patched_IBM_2026-04-04.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/patched_IBM_2026-04-04.jsonl new file mode 100644 index 0000000..7ffbd9f --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/patched_IBM_2026-04-04.jsonl @@ -0,0 +1,13 @@ +{"metadata": {"ticker": "IBM", "form_type": "4", "filed_at": "2026-04-01T17:11:35-04:00", "accession_no": "0001630253-26-000003", "url": "https://www.sec.gov/Archives/edgar/data/51143/000163025326000003/xslF345X06/primarydocument.xml", "ingested_at": "2026-04-04T22:54:48.742964"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Laguarta Ramon", "role": "Director", "transactions": []}} +{"metadata": {"ticker": "IBM", "form_type": "4", "filed_at": "2026-04-01T17:10:34-04:00", "accession_no": "0001804183-26-000004", "url": "https://www.sec.gov/Archives/edgar/data/51143/000180418326000004/xslF345X06/primarydocument.xml", "ingested_at": "2026-04-04T22:54:49.319678"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Brown Marianne Catherine", "role": "Director", "transactions": []}} +{"metadata": {"ticker": "IBM", "form_type": "4", "filed_at": "2026-04-01T17:09:51-04:00", "accession_no": "0001738987-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/51143/000173898726000002/xslF345X06/primarydocument.xml", "ingested_at": "2026-04-04T22:54:49.890485"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Buberl Thomas", "role": "Director", "transactions": []}} +{"metadata": {"ticker": "IBM", "form_type": "4", "filed_at": "2026-04-01T17:09:00-04:00", "accession_no": "0001183474-26-000003", "url": "https://www.sec.gov/Archives/edgar/data/51143/000118347426000003/xslF345X06/primarydocument.xml", "ingested_at": "2026-04-04T22:54:50.474380"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "FARR DAVID N", "role": "Director", "transactions": []}} +{"metadata": {"ticker": "IBM", "form_type": "4", "filed_at": "2026-04-01T17:08:11-04:00", "accession_no": "0001453149-26-000006", "url": "https://www.sec.gov/Archives/edgar/data/51143/000145314926000006/xslF345X06/primarydocument.xml", "ingested_at": "2026-04-04T22:54:51.046789"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Gorsky Alex", "role": "Director", "transactions": []}} +{"metadata": {"ticker": "IBM", "form_type": "4", "filed_at": "2026-04-01T17:05:39-04:00", "accession_no": "0001769389-26-000003", "url": "https://www.sec.gov/Archives/edgar/data/51143/000176938926000003/xslF345X06/primarydocument.xml", "ingested_at": "2026-04-04T22:54:51.631365"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "HOWARD MICHELLE J", "role": "Director", "transactions": []}} +{"metadata": {"ticker": "IBM", "form_type": "4", "filed_at": "2026-04-01T17:04:56-04:00", "accession_no": "0001269971-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/51143/000126997126000002/xslF345X06/primarydocument.xml", "ingested_at": "2026-04-04T22:54:52.223698"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "LIVERIS ANDREW N", "role": "Director", "transactions": []}} +{"metadata": {"ticker": "IBM", "form_type": "4", "filed_at": "2026-04-01T17:04:16-04:00", "accession_no": "0001731814-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/51143/000173181426000002/xslF345X06/primarydocument.xml", "ingested_at": "2026-04-04T22:54:52.813351"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "MCNABB FREDERICK WILLIAM III", "role": "Director", "transactions": []}} +{"metadata": {"ticker": "IBM", "form_type": "4", "filed_at": "2026-04-01T17:03:36-04:00", "accession_no": "0001771933-26-000005", "url": "https://www.sec.gov/Archives/edgar/data/51143/000177193326000005/xslF345X06/primarydocument.xml", "ingested_at": "2026-04-04T22:54:53.392704"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Miebach Michael", "role": "Director", "transactions": []}} +{"metadata": {"ticker": "IBM", "form_type": "4", "filed_at": "2026-04-01T17:02:53-04:00", "accession_no": "0001628797-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/51143/000162879726000002/xslF345X06/primarydocument.xml", "ingested_at": "2026-04-04T22:54:53.968188"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "VOSER PETER R.", "role": "Director", "transactions": []}} +{"metadata": {"ticker": "IBM", "form_type": "4", "filed_at": "2026-04-01T17:02:18-04:00", "accession_no": "0001223690-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/51143/000122369026000002/xslF345X06/primarydocument.xml", "ingested_at": "2026-04-04T22:54:54.572877"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "WADDELL FREDERICK H", "role": "Director", "transactions": []}} +{"metadata": {"ticker": "IBM", "form_type": "4", "filed_at": "2026-04-01T17:01:34-04:00", "accession_no": "0001196985-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/51143/000119698526000002/xslF345X06/primarydocument.xml", "ingested_at": "2026-04-04T22:54:55.150928"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "ZOLLAR ALFRED W", "role": "Director", "transactions": []}} +{"metadata": {"ticker": "IBM", "form_type": "4", "filed_at": "2026-04-01T17:00:51-04:00", "accession_no": "0001765271-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/51143/000176527126000002/xslF345X06/primarydocument.xml", "ingested_at": "2026-04-04T22:54:55.747804"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Pollack Martha E", "role": "Director", "transactions": []}} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/patched_INTC_2026-04-04.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/patched_INTC_2026-04-04.jsonl new file mode 100644 index 0000000..65bac53 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/patched_INTC_2026-04-04.jsonl @@ -0,0 +1 @@ +{"metadata": {"ticker": "INTC", "form_type": "8-K", "filed_at": "2026-04-03T12:50:37-04:00", "accession_no": "0000050863-26-000069", "url": "https://www.sec.gov/Archives/edgar/data/50863/000005086326000069/intc-20260330.htm", "ingested_at": "2026-04-04T22:54:47.308119"}, "raw_text": "8K_PARSED_INTO_MARKDOWN_CHUNKS", "parsed_data": {"is_chunked": true, "item_chunks": {"5.02": "Item 5.02 Departure of Directors or Certain Officers; Election of Directors; Appointment of Certain Officers; Compensatory Arrangements of Certain Officers.\n\nOn March 30,2026, Intel Corporation determined that April Miller Boise, Intel’s Executive Vice President and Chief Legal Officer, will separate from Intel effective as of June 1, 2026. Upon her departure on June 1, 2026, Ms. Miller Boise will be entitled to severance benefits in accordance with the terms and conditions of the Intel Corporation Executive Severance Plan, as previously disclosed, in exchange for a release of claims in favor of Intel.", "9.01": "Item 9.01 Financial Statements and Exhibits.\n\n(d) Exhibits.\n\nThe following exhibits are provided as part of this report:\n\n| | | | | | |\n| --- | --- | --- | --- | --- | --- |\n| | | | | | |\n| Exhibit Number | | | Description | | |\n| 104 | | | Cover Page Interactive Data File, formatted in Inline XBRL and included as Exhibit 101. | | |\n\n---"}}} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/patched_INTU_2026-04-04.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/patched_INTU_2026-04-04.jsonl new file mode 100644 index 0000000..5b4b609 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/patched_INTU_2026-04-04.jsonl @@ -0,0 +1,6 @@ +{"metadata": {"ticker": "INTU", "form_type": "4", "filed_at": "2026-04-03T16:51:34-04:00", "accession_no": "0001628280-26-023706", "url": "https://www.sec.gov/Archives/edgar/data/896878/000162828026023706/xslF345X06/wk-form4_1775249487.xml", "ingested_at": "2026-04-04T22:54:38.419929"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Goodarzi Sasan K", "role": "CEO, President and Director", "transactions": [{"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 653.529, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 14264.957, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 893.612, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 15158.569, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 802.006, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 15960.575, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 863.013, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 16823.588, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 30.832, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 16854.42, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 1277.861, "price": 432.38, "total_value": 552521.5391800001, "post_transaction_shares": 15576.559, "is_10b5_1_planned": false}]}} +{"metadata": {"ticker": "INTU", "form_type": "4", "filed_at": "2026-04-03T16:50:20-04:00", "accession_no": "0001628280-26-023704", "url": "https://www.sec.gov/Archives/edgar/data/896878/000162828026023704/xslF345X06/wk-form4_1775249417.xml", "ingested_at": "2026-04-04T22:54:39.027084"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "McLean Kerry J", "role": "EVP, Gen. Counsel & Corp. Sec.", "transactions": [{"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 244.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 28657.7666, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 236.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 28893.7666, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 199.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 29092.7666, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 170.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 29262.7666, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 301.627, "price": 432.38, "total_value": 130417.48226, "post_transaction_shares": 28961.1396, "is_10b5_1_planned": false}]}} +{"metadata": {"ticker": "INTU", "form_type": "4", "filed_at": "2026-04-03T16:48:01-04:00", "accession_no": "0001628280-26-023701", "url": "https://www.sec.gov/Archives/edgar/data/896878/000162828026023701/xslF345X06/wk-form4_1775249278.xml", "ingested_at": "2026-04-04T22:54:39.614244"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Hotz Lauren D", "role": "SVP, Chief Accounting Officer", "transactions": [{"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 41.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 2055.7352, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 104.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 2159.7352, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 97.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 2256.7352, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 88.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 2344.7352, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 120.548, "price": 432.38, "total_value": 52122.54424, "post_transaction_shares": 2224.1872, "is_10b5_1_planned": false}]}} +{"metadata": {"ticker": "INTU", "form_type": "4", "filed_at": "2026-04-03T16:46:29-04:00", "accession_no": "0001628280-26-023698", "url": "https://www.sec.gov/Archives/edgar/data/896878/000162828026023698/xslF345X06/wk-form4_1775249186.xml", "ingested_at": "2026-04-04T22:54:40.203764"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Hilliard Caryl Lyn", "role": "EVP, People and Places", "transactions": [{"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 122.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 23018.008, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 110.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 23128.008, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 87.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 23215.008, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 150.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 23365.008, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 212.093, "price": 432.38, "total_value": 91704.77133999999, "post_transaction_shares": 23152.915, "is_10b5_1_planned": false}]}} +{"metadata": {"ticker": "INTU", "form_type": "4", "filed_at": "2026-04-03T16:45:28-04:00", "accession_no": "0001628280-26-023696", "url": "https://www.sec.gov/Archives/edgar/data/896878/000162828026023696/xslF345X06/wk-form4_1775249122.xml", "ingested_at": "2026-04-04T22:54:40.778129"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Hanebrink Anton", "role": "EVP, Corp Strategy and Dev", "transactions": [{"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 348.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 29953.249, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 252.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 30205.249, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 224.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 30429.249, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 418.253, "price": 432.38, "total_value": 180844.23213999998, "post_transaction_shares": 30010.996, "is_10b5_1_planned": false}]}} +{"metadata": {"ticker": "INTU", "form_type": "4", "filed_at": "2026-04-03T16:39:06-04:00", "accession_no": "0001628280-26-023690", "url": "https://www.sec.gov/Archives/edgar/data/896878/000162828026023690/xslF345X06/wk-form4_1775248743.xml", "ingested_at": "2026-04-04T22:54:41.363317"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Aujla Sandeep", "role": "EVP and CFO", "transactions": [{"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 2665.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 3239.1366, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 346.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 3585.1366, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 349.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 3934.1366, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 1725.362, "price": 432.38, "total_value": 746012.02156, "post_transaction_shares": 2208.7746, "is_10b5_1_planned": false}]}} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/patched_MDLZ_2026-04-04.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/patched_MDLZ_2026-04-04.jsonl new file mode 100644 index 0000000..e69de29 diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/patched_NFLX_2026-04-04.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/patched_NFLX_2026-04-04.jsonl new file mode 100644 index 0000000..b5751c8 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/patched_NFLX_2026-04-04.jsonl @@ -0,0 +1,13 @@ +{"metadata": {"ticker": "NFLX", "form_type": "4", "filed_at": "2026-04-03T16:07:32-04:00", "accession_no": "0001543133-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/1065280/000154313326000002/xslF345X06/wk-form4_1775246849.xml", "ingested_at": "2026-04-04T22:54:27.690770"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Neumann Spencer Adam", "role": "Chief Financial Officer", "transactions": [{"date": "2026-04-02", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 7770.0, "price": 38.105, "total_value": 296075.85, "post_transaction_shares": 81557.0, "is_10b5_1_planned": true}, {"date": "2026-04-02", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 20860.0, "price": 36.408, "total_value": 759470.88, "post_transaction_shares": 102417.0, "is_10b5_1_planned": true}, {"date": "2026-04-02", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 28630.0, "price": 98.0, "total_value": 2805740.0, "post_transaction_shares": 73787.0, "is_10b5_1_planned": true}]}} +{"metadata": {"ticker": "NFLX", "form_type": "4", "filed_at": "2026-04-02T18:02:54-04:00", "accession_no": "0001065280-26-000136", "url": "https://www.sec.gov/Archives/edgar/data/1065280/000106528026000136/xslF345X06/wk-form4_1775167371.xml", "ingested_at": "2026-04-04T22:54:28.265373"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "KILGORE LESLIE J", "role": "Other", "transactions": []}} +{"metadata": {"ticker": "NFLX", "form_type": "4", "filed_at": "2026-04-02T18:02:46-04:00", "accession_no": "0001065280-26-000135", "url": "https://www.sec.gov/Archives/edgar/data/1065280/000106528026000135/xslF345X06/wk-form4_1775167364.xml", "ingested_at": "2026-04-04T22:54:28.839154"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Masiyiwa Strive", "role": "Other", "transactions": []}} +{"metadata": {"ticker": "NFLX", "form_type": "4", "filed_at": "2026-04-02T18:02:38-04:00", "accession_no": "0001065280-26-000134", "url": "https://www.sec.gov/Archives/edgar/data/1033331/000106528026000134/xslF345X06/wk-form4_1775167354.xml", "ingested_at": "2026-04-04T22:54:29.443415"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "HASTINGS REED", "role": "Other", "transactions": [{"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 420550.0, "price": 9.437, "total_value": 3968730.3499999996, "post_transaction_shares": 424490.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 152047.0, "price": 95.015, "total_value": 14446745.705, "post_transaction_shares": 272443.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 247923.0, "price": 95.6767, "total_value": 23720454.4941, "post_transaction_shares": 24520.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 20580.0, "price": 96.6601, "total_value": 1989264.858, "post_transaction_shares": 3940.0, "is_10b5_1_planned": true}]}} +{"metadata": {"ticker": "NFLX", "form_type": "4", "filed_at": "2026-04-02T18:02:28-04:00", "accession_no": "0001065280-26-000133", "url": "https://www.sec.gov/Archives/edgar/data/1065280/000106528026000133/xslF345X06/wk-form4_1775167345.xml", "ingested_at": "2026-04-04T22:54:30.038969"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Sweeney Anne M", "role": "Other", "transactions": []}} +{"metadata": {"ticker": "NFLX", "form_type": "4", "filed_at": "2026-04-02T18:02:20-04:00", "accession_no": "0001065280-26-000132", "url": "https://www.sec.gov/Archives/edgar/data/1065280/000106528026000132/xslF345X06/wk-form4_1775167337.xml", "ingested_at": "2026-04-04T22:54:30.617313"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "MATHER ANN", "role": "Other", "transactions": []}} +{"metadata": {"ticker": "NFLX", "form_type": "4", "filed_at": "2026-04-02T18:01:52-04:00", "accession_no": "0001065280-26-000131", "url": "https://www.sec.gov/Archives/edgar/data/1065280/000106528026000131/xslF345X06/wk-form4_1775167309.xml", "ingested_at": "2026-04-04T22:54:31.210332"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Dopfner Mathias", "role": "Other", "transactions": []}} +{"metadata": {"ticker": "NFLX", "form_type": "4", "filed_at": "2026-04-02T18:01:44-04:00", "accession_no": "0001065280-26-000130", "url": "https://www.sec.gov/Archives/edgar/data/1065280/000106528026000130/xslF345X06/wk-form4_1775167302.xml", "ingested_at": "2026-04-04T22:54:31.787519"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Karbowski Jeffrey William", "role": "Chief Accounting Officer", "transactions": []}} +{"metadata": {"ticker": "NFLX", "form_type": "4", "filed_at": "2026-04-02T18:01:36-04:00", "accession_no": "0001065280-26-000129", "url": "https://www.sec.gov/Archives/edgar/data/1065280/000106528026000129/xslF345X06/wk-form4_1775167293.xml", "ingested_at": "2026-04-04T22:54:32.363920"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "SMITH BRADFORD L", "role": "Other", "transactions": []}} +{"metadata": {"ticker": "NFLX", "form_type": "4", "filed_at": "2026-04-02T18:01:30-04:00", "accession_no": "0001065280-26-000128", "url": "https://www.sec.gov/Archives/edgar/data/1065280/000106528026000128/xslF345X06/wk-form4_1775167286.xml", "ingested_at": "2026-04-04T22:54:32.939871"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "RICE SUSAN E", "role": "Other", "transactions": []}} +{"metadata": {"ticker": "NFLX", "form_type": "4", "filed_at": "2026-04-02T18:01:23-04:00", "accession_no": "0001065280-26-000127", "url": "https://www.sec.gov/Archives/edgar/data/1065280/000106528026000127/xslF345X06/wk-form4_1775167280.xml", "ingested_at": "2026-04-04T22:54:33.516613"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "BARTON RICHARD N", "role": "Other", "transactions": []}} +{"metadata": {"ticker": "NFLX", "form_type": "4", "filed_at": "2026-04-02T18:01:07-04:00", "accession_no": "0001065280-26-000126", "url": "https://www.sec.gov/Archives/edgar/data/1065280/000106528026000126/xslF345X06/wk-form4_1775167264.xml", "ingested_at": "2026-04-04T22:54:34.100797"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Mertz Elinor", "role": "Other", "transactions": []}} +{"metadata": {"ticker": "NFLX", "form_type": "4", "filed_at": "2026-04-02T16:04:17-04:00", "accession_no": "0001082906-26-000012", "url": "https://www.sec.gov/Archives/edgar/data/1065280/000108290626000012/xslF345X06/form4.xml", "ingested_at": "2026-04-04T22:54:34.673370"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Hoag Jay C", "role": "Other", "transactions": []}} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/patched_PANW_2026-04-04.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/patched_PANW_2026-04-04.jsonl new file mode 100644 index 0000000..df6ee38 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/patched_PANW_2026-04-04.jsonl @@ -0,0 +1,2 @@ +{"metadata": {"ticker": "PANW", "form_type": "4", "filed_at": "2026-04-03T16:30:29-04:00", "accession_no": "0001882285-26-000007", "url": "https://www.sec.gov/Archives/edgar/data/1327567/000188228526000007/xslF345X06/ownership.xml", "ingested_at": "2026-04-04T22:55:01.436892"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Paul Josh D.", "role": "Chief Accounting Officer", "transactions": [{"date": "2026-04-01", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 947.0, "price": 160.32, "total_value": 151823.03999999998, "post_transaction_shares": 84236.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 1100.0, "price": 161.4, "total_value": 177540.0, "post_transaction_shares": 83136.0, "is_10b5_1_planned": true}]}} +{"metadata": {"ticker": "PANW", "form_type": "4", "filed_at": "2026-04-03T16:30:26-04:00", "accession_no": "0001852540-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/1327567/000185254026000002/xslF345X06/ownership.xml", "ingested_at": "2026-04-04T22:55:02.015659"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Golechha Dipak", "role": "EVP, Chief Financial Officer", "transactions": [{"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 200.0, "price": 157.81, "total_value": 31562.0, "post_transaction_shares": 155050.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 1300.0, "price": 160.039, "total_value": 208050.69999999998, "post_transaction_shares": 153750.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 3500.0, "price": 160.704, "total_value": 562464.0, "post_transaction_shares": 150250.0, "is_10b5_1_planned": true}]}} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/patched_QCOM_2026-04-04.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/patched_QCOM_2026-04-04.jsonl new file mode 100644 index 0000000..139e887 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/patched_QCOM_2026-04-04.jsonl @@ -0,0 +1,3 @@ +{"metadata": {"ticker": "QCOM", "form_type": "4", "filed_at": "2026-04-02T17:23:11-04:00", "accession_no": "0000804328-26-000051", "url": "https://www.sec.gov/Archives/edgar/data/804328/000080432826000051/xslF345X06/edgardoc.xml", "ingested_at": "2026-04-04T22:54:36.438677"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Grech Patricia Y", "role": "SVP, Chief Accounting Officer", "transactions": [{"date": "2026-04-02", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 85.0, "price": 125.5, "total_value": 10667.5, "post_transaction_shares": 192.0, "is_10b5_1_planned": true}]}} +{"metadata": {"ticker": "QCOM", "form_type": "4", "filed_at": "2026-04-02T16:08:27-04:00", "accession_no": "0000804328-26-000049", "url": "https://www.sec.gov/Archives/edgar/data/804328/000080432826000049/xslF345X06/edgardoc.xml", "ingested_at": "2026-04-04T22:54:37.033688"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "MCLAUGHLIN MARK D", "role": "Other", "transactions": [{"date": "2026-03-31", "code": "A", "direction": "OTHER (A)", "shares": 538.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 12849.8312, "is_10b5_1_planned": false}]}} +{"metadata": {"ticker": "QCOM", "form_type": "4", "filed_at": "2026-04-02T16:08:15-04:00", "accession_no": "0000804328-26-000048", "url": "https://www.sec.gov/Archives/edgar/data/804328/000080432826000048/xslF345X06/edgardoc.xml", "ingested_at": "2026-04-04T22:54:37.607779"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "TRICOIRE JEAN-PASCAL", "role": "Other", "transactions": [{"date": "2026-03-31", "code": "A", "direction": "OTHER (A)", "shares": 262.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 13481.4716, "is_10b5_1_planned": false}]}} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/patched_SBUX_2026-04-04.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/patched_SBUX_2026-04-04.jsonl new file mode 100644 index 0000000..ed803fc --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/patched_SBUX_2026-04-04.jsonl @@ -0,0 +1,2 @@ +{"metadata": {"ticker": "SBUX", "form_type": "8-K", "filed_at": "2026-04-02T16:55:33-04:00", "accession_no": "0000829224-26-000064", "url": "https://www.sec.gov/Archives/edgar/data/829224/000082922426000064/sbux-20260402.htm", "ingested_at": "2026-04-04T22:55:00.161523"}, "raw_text": "8K_PARSED_INTO_MARKDOWN_CHUNKS", "parsed_data": {"is_chunked": true, "item_chunks": {"7.01": "Item 7.01 Regulation FD Disclosure.\n\nAs previously disclosed on November 3, 2025, Starbucks entered an agreement to form a joint venture with Boyu Capital. On April 2, 2026, Starbucks announced that, following the satisfaction of all necessary closing conditions, it completed the transaction. Pursuant to the transaction, funds managed by Boyu Capital have acquired a 60% interest in Starbucks retail operations in China. Starbucks retains a 40% interest and will serve as the owner and licensor of the Starbucks global brand.\n\nA copy of the press release issued is furnished as Exhibit 99.1 to this Form 8-K.\n\nThe information contained in Item 7.01 of this report, including the information in Exhibit 99.1, is furnished pursuant to Item 7.01 of Form 8-K and shall not be deemed “filed” for the purposes of Section 18 of the Securities Exchange Act of 1934, as amended, or otherwise subject to the liabilities of that section. Furthermore, the information in Item 7.01 of this report, including the information in Exhibit 99.1 attached to this report, shall not be deemed to be incorporated by reference in the filings of Starbucks Corporation under the Securities Act of 1933, as amended.", "9.01": "Item 9.01Financial Statements and Exhibits.\n\n(d) Exhibits.\n\n| | | | | | | | | |\n| --- | --- | --- | --- | --- | --- | --- | --- | --- |\n| | | | | | | | | |\n| Exhibit No. | | | | | | Description | | |\n| 99.1 | | | | | | Press Release, dated April 2, 2026 | | |\n| 104 | | | | | | Cover Page Interactive Data File (formatted as inline XBRL) | | |\n\n---"}}} +{"metadata": {"ticker": "SBUX", "form_type": "8-K", "filed_at": "2026-03-30T09:15:22-04:00", "accession_no": "0000829224-26-000058", "url": "https://www.sec.gov/Archives/edgar/data/829224/000082922426000058/sbux-20260325.htm", "ingested_at": "2026-04-04T22:55:00.764230"}, "raw_text": "8K_PARSED_INTO_MARKDOWN_CHUNKS", "parsed_data": {"is_chunked": true, "item_chunks": {"5.07": "Item 5.07 Submission of Matters to a Vote of Security Holders.\n\nOn March 25, 2026, Starbucks Corporation (the “Company”) held its 2026 Annual Meeting of Shareholders (the “Annual Meeting”). The matters submitted to a vote at the Annual Meeting and the voting results of such matters are as follows:\n\nProposal 1 - Election of Directors\n\nThe Company’s shareholders elected each of the eleven directors nominated by the Company’s Board of Directors to serve until the 2027 Annual Meeting of Shareholders or until their successors are duly elected and qualified. The following is a breakdown of the voting results:\n\n| | | | | | | | | | | | | | | |\n| --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- |\n| | | | | | | | | | | | | | | |\n| Name of Nominee | | | For | | | Against | | | Withheld | | | Broker Non-Votes | | |\n| Ritch Allison | | | 846,955,724 | | | 28,832,837 | | | 1,081,482 | | | 127,972,619 | | |\n| Andy Campion | | | 764,749,951 | | | 110,976,652 | | | 1,143,440 | | | 127,972,619 | | |\n| Beth Ford | | | 808,145,942 | | | 66,979,908 | | | 1,744,193 | | | 127,972,619 | | |\n| Jørgen Vig Knudstorp | | | 828,586,462 | | | 46,185,327 | | | 2,098,254 | | | 127,972,619 | | |\n| Marissa Mayer | | | 867,967,230 | | | 7,925,365 | | | 977,448 | | | 127,972,619 | | |\n| Neal Mohan | | | 865,313,815 | | | 10,401,952 | | | 1,154,276 | | | 127,972,619 | | |\n| Dambisa Moyo | | | 864,744,438 | | | 11,015,863 | | | 1,109,742 | | | 127,972,619 | | |\n| Brian Niccol | | | 830,353,482 | | | 43,094,658 | | | 3,421,903 | | | 127,972,619 | | |\n| Daniel Servitje | | | 841,710,171 | | | 33,992,034 | | | 1,167,838 | | | 127,972,619 | | |\n| Mike Sievert | | | 863,809,451 | | | 11,894,524 | | | 1,166,068 | | | 127,972,619 | | |\n| Wei Zhang | | | 855,876,306 | | | 19,854,913 | | | 1,138,824 | | | 127,972,619 | | |\n\nProposal 2 - Advisory Resolution on Executive Compensation\n\nAt the Annual Meeting, the shareholders approved, on a nonbinding, advisory basis, the compensation paid to the Company’s named executive officers. The following is a breakdown of the voting results:\n\n| | | | | | | | | | | | |\n| --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- |\n| | | | | | | | | | | | |\n| For | | | Against | | | Abstain | | | Broker Non-Votes | | |\n| 774,932,476 | | | 99,362,557 | | | 2,575,010 | | | 127,972,619 | | |\n\nProposal 3 - Ratification of the Selection of Deloitte & Touche LLP as the Company’s Independent Registered Public Accounting Firm for Fiscal Year 2026\n\nAt the Annual Meeting, the shareholders approved the ratification of the selection of Deloitte & Touche LLP as the Company’s independent registered public accounting firm for the fiscal year ending September 27, 2026. The following is a breakdown of the voting results:\n\n| | | | | | | | | | | | |\n| --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- |\n| | | | | | | | | | | | |\n| For | | | Against | | | Abstain | | | Broker Non-Votes | | |\n| 965,325,253 | | | 38,304,225 | | | 1,213,184 | | | —— | | |\n\nProposal 4 - Shareholder Proposal Requesting Supermajority Shareholder Voting Requirements be Replaced with Majority Voting Requirements\n\nAt the Annual Meeting, the shareholders approved a shareholder proposal requesting supermajority shareholder voting requirements be replaced with majority voting requirements. The following is a breakdown of the voting results:\n\n| | | | | | | | | | | | |\n| --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- |\n| | | | | | | | | | | | |\n| For | | | Against | | | Abstain | | | Broker Non-Votes | | |\n| 823,985,324 | | | 17,573,051 | | | 30,866,556 | | | 132,323,108 | | |\n\n---\n\nProposal 5 - Shareholder Proposal Requesting Adoption of an Independent Board Chair Policy\n\nAt the Annual Meeting, the shareholders did not approve a shareholder proposal requesting adoption of an independent board chair policy. The following is a breakdown of the voting results:\n\n| | | | | | | | | | | | |\n| --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- |\n| | | | | | | | | | | | |\n| For | | | Against | | | Abstain | | | Broker Non-Votes | | |\n| 107,793,749 | | | 763,797,502 | | | 5,278,792 | | | 127,972,619 | | |\n\nProposal 6 - Shareholder Proposal Requesting a Report on the Company’s Apparent Exclusion of Detransitioning in its Healthcare Coverage\n\nAt the Annual Meeting, the shareholders did not approve a shareholder proposal requesting a report on the Company’s apparent exclusion of detransitioning in its healthcare coverage. The following is a breakdown of the voting results:\n\n| | | | | | | | | | | | |\n| --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- |\n| | | | | | | | | | | | |\n| For | | | Against | | | Abstain | | | Broker Non-Votes | | |\n| 8,169,593 | | | 861,170,343 | | | 7,530,107 | | | 127,972,619 | | |\n\nProposal 7 - Shareholder Proposal Requesting a Report on Median Compensation and Benefits Gaps as They Address Reproductive and Gender Dysphoria Care\n\nAt the Annual Meeting, the shareholders did not approve a shareholder proposal requesting a report on median compensation and benefits gaps as they address reproductive and gender dysphoria care. The following is a breakdown of the voting results:\n\n| | | | | | | | | | | | |\n| --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- |\n| | | | | | | | | | | | |\n| For | | | Against | | | Abstain | | | Broker Non-Votes | | |\n| 5,153,879 | | | 864,501,617 | | | 7,214,547 | | | 127,972,619 | | |\n\nProposal 8 - Shareholder Proposal Requesting a Report on the Company’s Use of Diagnostic Tools Created by Politicized Corporate Partners\n\nAt the Annual Meeting, the shareholders did not approve a shareholder proposal requesting a report on the Company’s use of diagnostic tools created by politicized corporate partners. The following is a breakdown of the voting results:\n\n| | | | | | | | | | | | |\n| --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- |\n| | | | | | | | | | | | |\n| For | | | Against | | | Abstain | | | Broker Non-Votes | | |\n| 6,335,450 | | | 863,459,994 | | | 7,074,599 | | | 127,972,619 | | |\n\nProposal 9 - Shareholder Proposal Requesting a Report on the Risks of the Company Excluding Religious Charities from its Employee-Gift Match Program\n\nAt the Annual Meeting, the shareholders did not approve a shareholder proposal requesting a report on the risks of the Company excluding religious charities from its employee-gift match program. The following is a breakdown of the voting results:\n\n| | | | | | | | | | | | |\n| --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- |\n| | | | | | | | | | | | |\n| For | | | Against | | | Abstain | | | Broker Non-Votes | | |\n| 5,749,240 | | | 864,268,337 | | | 6,852,466 | | | 127,972,619 | | |\n\nThe above proposals are further described in the Company’s definitive proxy statement on Schedule 14A filed with the U.S. Securities and Exchange Commission on January 26, 2026.\n\n---"}}} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/patched_TMUS_2026-04-04.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/patched_TMUS_2026-04-04.jsonl new file mode 100644 index 0000000..00dd2ad --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/patched_TMUS_2026-04-04.jsonl @@ -0,0 +1 @@ +{"metadata": {"ticker": "TMUS", "form_type": "8-K", "filed_at": "2026-03-31T16:35:02-04:00", "accession_no": "0001193125-26-134731", "url": "https://www.sec.gov/Archives/edgar/data/1283699/000119312526134731/d136365d8k.htm", "ingested_at": "2026-04-04T22:54:35.624295"}, "raw_text": "8K_PARSED_INTO_MARKDOWN_CHUNKS", "parsed_data": {"is_chunked": true, "item_chunks": {"8.01": "Item 8.01. | Other Events. |\n\nOn March 31, 2026, following the previous repayment of certain legacy indebtedness, T-Mobile USA, Inc. (“TMUSA”), a wholly-owned subsidiary of T-Mobile US, Inc. (“TMUS”), elected to release the guarantees of certain subsidiaries under its $10 billion revolving credit agreement pursuant to the terms thereof, resulting in a corresponding release under the indentures dated April 28, 2013, April 9, 2020 and September 15, 2022, governing its outstanding senior notes. As a result, following the release, the obligors under TMUSA’s revolving credit agreement and outstanding senior notes now consist of TMUSA, as issuer or borrower, and each of TMUS, Sprint LLC, Sprint Capital Corporation and Sprint Communications LLC, as guarantors. Corresponding subsidiary guarantor releases were also effected under other TMUSA debt facilities, including its export credit agency facilities and unsecured short-term commercial paper program.\n\n---"}}} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/patched_TSLA_2026-04-04.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/patched_TSLA_2026-04-04.jsonl new file mode 100644 index 0000000..52eecbe --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/patched_TSLA_2026-04-04.jsonl @@ -0,0 +1,3 @@ +{"metadata": {"ticker": "TSLA", "form_type": "4", "filed_at": "2026-04-02T20:08:52-04:00", "accession_no": "0001972928-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/1318605/000197292826000002/xslF345X06/edgardoc.xml", "ingested_at": "2026-04-04T22:54:24.292686"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Zhu Xiaotong", "role": "SVP", "transactions": [{"date": "2026-03-31", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 20000.0, "price": 20.57, "total_value": 411400.0, "post_transaction_shares": 20000.0, "is_10b5_1_planned": false}]}} +{"metadata": {"ticker": "TSLA", "form_type": "8-K", "filed_at": "2026-04-02T09:07:13-04:00", "accession_no": "0001628280-26-022956", "url": "https://www.sec.gov/Archives/edgar/data/1318605/000162828026022956/tsla-20260402.htm", "ingested_at": "2026-04-04T22:54:24.871733"}, "raw_text": "8K_PARSED_INTO_MARKDOWN_CHUNKS", "parsed_data": {"is_chunked": true, "item_chunks": {"2.02": "Item 2.02 Results of Operations and Financial Condition.\n\nOn April 2, 2026, Tesla, Inc. published the press release which is attached hereto as Exhibit 99.1 and is incorporated herein by reference.\n\nThis information is intended to be furnished under Item 2.02 of Form 8-K and shall not be deemed “filed” for purposes of Section 18 of the Securities Exchange Act of 1934, as amended (the “Exchange Act”), or incorporated by reference in any filing under the Securities Act of 1933, as amended, or the Exchange Act as shall be expressly set forth by specific reference in such a filing.", "9.01": "Item 9.01 Financial Statements and Exhibits.\n\n(d)Exhibits.\n\n| | | | | | | | | |\n| --- | --- | --- | --- | --- | --- | --- | --- | --- |\n| | | | | | | | | |\n| Exhibit No. | | | | | | Description | | |\n| | | | | | | | | |\n| 99.1 | | | | | | Press release of Tesla, Inc., dated April 2, 2026. | | |\n| 104 | | | | | | Cover Page Interactive Data File (embedded within the Inline XBRL document). | | |\n\n---"}}} +{"metadata": {"ticker": "TSLA", "form_type": "4", "filed_at": "2026-04-01T19:00:13-04:00", "accession_no": "0001104659-26-038682", "url": "https://www.sec.gov/Archives/edgar/data/1318605/000110465926038682/xslF345X06/tm2610684-1_4seq1.xml", "ingested_at": "2026-04-04T22:54:25.463712"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Wilson-Thompson Kathleen", "role": "Other", "transactions": [{"date": "2026-03-30", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 40000.0, "price": 14.99, "total_value": 599600.0, "post_transaction_shares": 59669.0, "is_10b5_1_planned": true}, {"date": "2026-03-30", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 2000.0, "price": 352.833, "total_value": 705666.0, "post_transaction_shares": 57669.0, "is_10b5_1_planned": true}, {"date": "2026-03-30", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 1640.0, "price": 353.658, "total_value": 579999.12, "post_transaction_shares": 56029.0, "is_10b5_1_planned": true}, {"date": "2026-03-30", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 1800.0, "price": 354.802, "total_value": 638643.6000000001, "post_transaction_shares": 54229.0, "is_10b5_1_planned": true}, {"date": "2026-03-30", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 2481.0, "price": 355.644, "total_value": 882352.764, "post_transaction_shares": 51748.0, "is_10b5_1_planned": true}, {"date": "2026-03-30", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 2360.0, "price": 356.794, "total_value": 842033.84, "post_transaction_shares": 49388.0, "is_10b5_1_planned": true}, {"date": "2026-03-30", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 1120.0, "price": 357.839, "total_value": 400779.68, "post_transaction_shares": 48268.0, "is_10b5_1_planned": true}, {"date": "2026-03-30", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 520.0, "price": 358.77, "total_value": 186560.4, "post_transaction_shares": 47748.0, "is_10b5_1_planned": true}, {"date": "2026-03-30", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 1880.0, "price": 360.181, "total_value": 677140.2799999999, "post_transaction_shares": 45868.0, "is_10b5_1_planned": true}, {"date": "2026-03-30", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 1000.0, "price": 361.035, "total_value": 361035.0, "post_transaction_shares": 44868.0, "is_10b5_1_planned": true}, {"date": "2026-03-30", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 2320.0, "price": 362.142, "total_value": 840169.44, "post_transaction_shares": 42548.0, "is_10b5_1_planned": true}, {"date": "2026-03-30", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 4001.0, "price": 363.083, "total_value": 1452695.083, "post_transaction_shares": 38547.0, "is_10b5_1_planned": true}, {"date": "2026-03-30", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 3927.0, "price": 363.947, "total_value": 1429219.869, "post_transaction_shares": 34620.0, "is_10b5_1_planned": true}, {"date": "2026-03-30", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 560.0, "price": 364.888, "total_value": 204337.28, "post_transaction_shares": 34060.0, "is_10b5_1_planned": true}, {"date": "2026-03-30", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 120.0, "price": 365.897, "total_value": 43907.64, "post_transaction_shares": 33940.0, "is_10b5_1_planned": true}, {"date": "2026-03-30", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 80.0, "price": 366.855, "total_value": 29348.4, "post_transaction_shares": 33860.0, "is_10b5_1_planned": true}]}} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/patched_VRTX_2026-04-04.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/patched_VRTX_2026-04-04.jsonl new file mode 100644 index 0000000..6edfe0c --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-04/patched_VRTX_2026-04-04.jsonl @@ -0,0 +1,3 @@ +{"metadata": {"ticker": "VRTX", "form_type": "4", "filed_at": "2026-04-03T16:53:51-04:00", "accession_no": "0000875320-26-000157", "url": "https://www.sec.gov/Archives/edgar/data/875320/000087532026000157/xslF345X06/wk-form4_1775249628.xml", "ingested_at": "2026-04-04T22:54:58.343666"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Liu Joy", "role": "EVP and Chief Legal Officer", "transactions": [{"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 978.0, "price": 449.17, "total_value": 439288.26, "post_transaction_shares": 21833.0, "is_10b5_1_planned": true}]}} +{"metadata": {"ticker": "VRTX", "form_type": "4", "filed_at": "2026-03-31T16:10:23-04:00", "accession_no": "0000875320-26-000149", "url": "https://www.sec.gov/Archives/edgar/data/875320/000087532026000149/xslF345X06/wk-form4_1774987818.xml", "ingested_at": "2026-04-04T22:54:58.915828"}, "raw_text": "XML_PARSED_SUCCESSFULLY", "parsed_data": {"reporting_owner": "Bozic Carmen", "role": "EVP and CMO", "transactions": [{"date": "2026-03-27", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 2329.0, "price": 450.95, "total_value": 1050262.55, "post_transaction_shares": 33076.0, "is_10b5_1_planned": true}]}} +{"metadata": {"ticker": "VRTX", "form_type": "8-K", "filed_at": "2026-03-31T16:03:47-04:00", "accession_no": "0000875320-26-000147", "url": "https://www.sec.gov/Archives/edgar/data/875320/000087532026000147/vrtx-20260331.htm", "ingested_at": "2026-04-04T22:54:59.488007"}, "raw_text": "8K_PARSED_INTO_MARKDOWN_CHUNKS", "parsed_data": {"is_chunked": true, "item_chunks": {"8.01": "Item 8.01. Other Events.\n\nVertex Pharmaceuticals Incorporated (the “Company”) has completed the submission to the U.S. Food and Drug Administration (the “FDA”) of its rolling Biologics Licensing Application (“BLA”) for potential accelerated approval of povetacicept for the treatment of immunoglobulin A nephropathy (“IgAN”) in adults. The Company used a priority review voucher and therefore expects the FDA review of the povetacicept BLA to be expedited to six months from the date of the FDA’s acceptance of the BLA versus the typical ten-month review.\n\nSpecial Note Regarding Forward-Looking Statements\n\nThis Current Report on Form 8-K contains forward-looking statements that are subject to risks, uncertainties and other factors including statements regarding the expected duration of the FDA review of the povetacicept BLA and potential for accelerated approval of povetacicept for the treatment of IgAN. While the Company believes the forward-looking statements contained in this communication are accurate, these forward-looking statements represent the beliefs of the Company only as of the date of this communication, and there are a number of risks and uncertainties that could cause actual events or results to differ materially from those expressed or implied by such forward-looking statements.\n\nForward-looking statements are subject to certain risks, uncertainties, or other factors that are difficult to predict and could cause actual events or results to differ materially from those indicated in any such statements due to a number of risks and uncertainties. Forward-looking statements in this communication should be evaluated together with the many risks and uncertainties that affect the Company's business. Those risks and uncertainties include, among other things, that we may be unable to obtain or be delayed in obtaining regulatory approval and other risks listed under the heading “Risk Factors” and the other cautionary factors discussed in the Company's periodic reports filed with the Securities and Exchange Commission (the “SEC”), including the Company's annual report on Form 10-K for the year ended December 31, 2025, its quarterly reports on Form 10-Q, and its current reports on Form 8-K, all of which are available for free through the Company's website at www.vrtx.com and on the SEC’s website at www.sec.gov. You should not place undue reliance on these statements. All forward-looking statements are based on information currently available to the Company, and the Company disclaims any obligation to update the information contained in this communication as new information becomes available, except as required by law.\n\n---"}}} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/_SUMMARY.json b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/_SUMMARY.json new file mode 100644 index 0000000..7c03d73 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/_SUMMARY.json @@ -0,0 +1,122 @@ +{ + "date": "2026-04-08", + "total_filings": 87, + "ticker_breakdown": { + "MAR": { + "4": 1, + "8-K": 0 + }, + "GOOGL": { + "4": 1, + "8-K": 1 + }, + "AMAT": { + "4": 1, + "8-K": 0 + }, + "GOOG": { + "4": 1, + "8-K": 1 + }, + "MDLZ": { + "4": 2, + "8-K": 0 + }, + "AVGO": { + "4": 0, + "8-K": 2 + }, + "AAPL": { + "4": 3, + "8-K": 0 + }, + "VRTX": { + "4": 1, + "8-K": 0 + }, + "AMZN": { + "4": 1, + "8-K": 0 + }, + "MELI": { + "4": 0, + "8-K": 1 + }, + "PANW": { + "4": 2, + "8-K": 0 + }, + "MU": { + "4": 3, + "8-K": 1 + }, + "IBM": { + "4": 13, + "8-K": 0 + }, + "INTU": { + "4": 6, + "8-K": 0 + }, + "NFLX": { + "4": 13, + "8-K": 0 + }, + "COST": { + "4": 1, + "8-K": 0 + }, + "CRWD": { + "4": 0, + "8-K": 1 + }, + "CMCSA": { + "4": 6, + "8-K": 0 + }, + "REGN": { + "4": 1, + "8-K": 1 + }, + "TSLA": { + "4": 2, + "8-K": 1 + }, + "INTC": { + "4": 0, + "8-K": 1 + }, + "SBUX": { + "4": 0, + "8-K": 1 + }, + "HON": { + "4": 2, + "8-K": 0 + }, + "CSX": { + "4": 1, + "8-K": 0 + }, + "CDNS": { + "4": 1, + "8-K": 0 + }, + "ADI": { + "4": 6, + "8-K": 0 + }, + "CSCO": { + "4": 1, + "8-K": 1 + }, + "BKNG": { + "4": 0, + "8-K": 3 + }, + "QCOM": { + "4": 3, + "8-K": 0 + } + } +} \ No newline at end of file diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_AAPL.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_AAPL.jsonl new file mode 100644 index 0000000..af07fb6 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_AAPL.jsonl @@ -0,0 +1,3 @@ +{"metadata": {"ticker": "AAPL", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001140361-26-013192", "url": "https://www.sec.gov/Archives/edgar/data/320193/000114036126013192/xslF345X06/form4.xml", "ingested_at": "2026-04-08T12:48:26.662928"}, "parsed_data": {"reporting_owner": "O'BRIEN DEIRDRE", "role": "Senior Vice President", "transactions": [{"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 64317.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 201127.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 34315.0, "price": 255.63, "total_value": 8771943.45, "post_transaction_shares": 166812.0, "is_10b5_1_planned": true}, {"date": "2026-04-02", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 20338.0, "price": 255.12, "total_value": 5188630.5600000005, "post_transaction_shares": 146474.0, "is_10b5_1_planned": true}, {"date": "2026-04-02", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 9664.0, "price": 255.82, "total_value": 2472244.48, "post_transaction_shares": 136810.0, "is_10b5_1_planned": true}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "AAPL", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001140361-26-013191", "url": "https://www.sec.gov/Archives/edgar/data/320193/000114036126013191/xslF345X06/form4.xml", "ingested_at": "2026-04-08T12:48:26.888609"}, "parsed_data": {"reporting_owner": "Khan Sabih", "role": "COO", "transactions": [{"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 64317.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 1107212.0, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 33317.0, "price": 255.63, "total_value": 8516824.709999999, "post_transaction_shares": 1073895.0, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "AAPL", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001140361-26-013190", "url": "https://www.sec.gov/Archives/edgar/data/320193/000114036126013190/xslF345X06/form4.xml", "ingested_at": "2026-04-08T12:48:27.106687"}, "parsed_data": {"reporting_owner": "COOK TIMOTHY D", "role": "Chief Executive Officer", "transactions": [{"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 131576.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 3411994.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 66627.0, "price": 255.63, "total_value": 17031860.009999998, "post_transaction_shares": 3345367.0, "is_10b5_1_planned": true}, {"date": "2026-04-02", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 5087.0, "price": 251.25, "total_value": 1278108.75, "post_transaction_shares": 3340280.0, "is_10b5_1_planned": true}, {"date": "2026-04-02", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 9147.0, "price": 252.11, "total_value": 2306050.17, "post_transaction_shares": 3331133.0, "is_10b5_1_planned": true}, {"date": "2026-04-02", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 1878.0, "price": 253.13, "total_value": 475378.14, "post_transaction_shares": 3329255.0, "is_10b5_1_planned": true}, {"date": "2026-04-02", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 16083.0, "price": 254.37, "total_value": 4091032.71, "post_transaction_shares": 3313172.0, "is_10b5_1_planned": true}, {"date": "2026-04-02", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 28188.0, "price": 255.17, "total_value": 7192731.96, "post_transaction_shares": 3284984.0, "is_10b5_1_planned": true}, {"date": "2026-04-02", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 4566.0, "price": 256.0, "total_value": 1168896.0, "post_transaction_shares": 3280418.0, "is_10b5_1_planned": true}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_ADI.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_ADI.jsonl new file mode 100644 index 0000000..c45a6d1 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_ADI.jsonl @@ -0,0 +1,6 @@ +{"metadata": {"ticker": "ADI", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001201872-26-000008", "url": "https://www.sec.gov/Archives/edgar/data/6281/000120187226000008/xslF345X06/wk-form4_1775247205.xml", "ingested_at": "2026-04-08T12:48:56.199337"}, "parsed_data": {"reporting_owner": "ROCHE VINCENT", "role": "Chair & CEO", "transactions": [{"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 10000.0, "price": 94.41, "total_value": 944100.0, "post_transaction_shares": 177825.875, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 10000.0, "price": 318.14, "total_value": 3181400.0, "post_transaction_shares": 167825.875, "is_10b5_1_planned": true}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "ADI", "form_type": "4", "filed_at": "2026-04-01", "accession_no": "0001768266-26-000004", "url": "https://www.sec.gov/Archives/edgar/data/6281/000176826626000004/xslF345X06/wk-form4_1775074685.xml", "ingested_at": "2026-04-08T12:48:56.418972"}, "parsed_data": {"reporting_owner": "Sondel Michael", "role": "CAO (principal acct. officer)", "transactions": [{"date": "2026-03-30", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 405.712, "price": 303.1, "total_value": 122971.30720000001, "post_transaction_shares": 14513.578, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "ADI", "form_type": "4", "filed_at": "2026-04-01", "accession_no": "0001201872-26-000006", "url": "https://www.sec.gov/Archives/edgar/data/6281/000120187226000006/xslF345X06/wk-form4_1775074650.xml", "ingested_at": "2026-04-08T12:48:56.676905"}, "parsed_data": {"reporting_owner": "ROCHE VINCENT", "role": "Chair & CEO", "transactions": [{"date": "2026-03-30", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 27027.168, "price": 303.1, "total_value": 8191934.620800001, "post_transaction_shares": 167825.875, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "ADI", "form_type": "4", "filed_at": "2026-04-01", "accession_no": "0002044259-26-000007", "url": "https://www.sec.gov/Archives/edgar/data/6281/000204425926000007/xslF345X06/wk-form4_1775074599.xml", "ingested_at": "2026-04-08T12:48:56.894938"}, "parsed_data": {"reporting_owner": "Nakamura Katsufumi", "role": "SVP, Chief Customer Officer", "transactions": [{"date": "2026-03-30", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 120.901, "price": 303.1, "total_value": 36645.0931, "post_transaction_shares": 12145.04, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "ADI", "form_type": "4", "filed_at": "2026-04-01", "accession_no": "0000006281-26-000037", "url": "https://www.sec.gov/Archives/edgar/data/6281/000000628126000037/xslF345X06/wk-form4_1775074566.xml", "ingested_at": "2026-04-08T12:48:57.102825"}, "parsed_data": {"reporting_owner": "Jain Vivek", "role": "EVP, Global Operations", "transactions": [{"date": "2026-03-30", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 6386.093, "price": 303.1, "total_value": 1935624.7883000001, "post_transaction_shares": 42089.474, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "ADI", "form_type": "4", "filed_at": "2026-04-01", "accession_no": "0001685760-26-000004", "url": "https://www.sec.gov/Archives/edgar/data/6281/000168576026000004/xslF345X06/wk-form4_1775074528.xml", "ingested_at": "2026-04-08T12:48:57.316644"}, "parsed_data": {"reporting_owner": "Cotter Martin", "role": "SVP, Vertical Business Units", "transactions": [{"date": "2026-03-30", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 3880.571, "price": 303.1, "total_value": 1176201.0701000001, "post_transaction_shares": 50524.884, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_AMAT.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_AMAT.jsonl new file mode 100644 index 0000000..30ab908 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_AMAT.jsonl @@ -0,0 +1 @@ +{"metadata": {"ticker": "AMAT", "form_type": "4", "filed_at": "2026-04-02", "accession_no": "0001628280-26-023379", "url": "https://www.sec.gov/Archives/edgar/data/6951/000162828026023379/xslF345X06/wk-form4_1775169858.xml", "ingested_at": "2026-04-08T12:48:46.179586"}, "parsed_data": {"reporting_owner": "Sanders Adam", "role": "Corp. Controller & CAO", "transactions": [{"date": "2026-04-01", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 125.0, "price": 353.8, "total_value": 44225.0, "post_transaction_shares": 4548.0, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_AMZN.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_AMZN.jsonl new file mode 100644 index 0000000..c292d36 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_AMZN.jsonl @@ -0,0 +1 @@ +{"metadata": {"ticker": "AMZN", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001018724-26-000010", "url": "https://www.sec.gov/Archives/edgar/data/1018724/000101872426000010/xslF345X06/wk-form4_1775248886.xml", "ingested_at": "2026-04-08T12:48:28.351458"}, "parsed_data": {"reporting_owner": "Herrington Douglas J", "role": "CEO Worldwide Amazon Stores", "transactions": [{"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 1000.0, "price": 210.5, "total_value": 210500.0, "post_transaction_shares": 520361.0, "is_10b5_1_planned": true}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_AVGO.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_AVGO.jsonl new file mode 100644 index 0000000..37b7adc --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_AVGO.jsonl @@ -0,0 +1,2 @@ +{"metadata": {"ticker": "AVGO", "form_type": "8-K", "filed_at": "2026-04-06", "accession_no": "0001193125-26-144028", "url": "https://www.sec.gov/Archives/edgar/data/1730168/000119312526144028/d87999d8k.htm", "ingested_at": "2026-04-08T12:48:32.383033"}, "parsed_data": {"is_chunked": true, "item_chunks": {"8.01": "Item 8.01 | Other Events. |\n\nBroadcom Inc. (“Broadcom”) and Google LLC (“Google”) have entered into a Long Term Agreement for Broadcom to develop and supply custom Tensor Processing Units (“TPUs”) for Google’s future generations of TPUs and a Supply Assurance Agreement for Broadcom to supply networking and other components to be used in Google’s next-generation AI racks through up to 2031.\n\nSeparately, Broadcom, Google and Anthropic PBC (“Anthropic”) have expanded their current strategic collaboration under which Anthropic, beginning in 2027, will access through Broadcom approximately 3.5 gigawatts as part of the multiple gigawatts of next generation TPU-based AI compute capacity committed by Anthropic. The consumption of such expanded AI compute capacity by Anthropic is dependent on Anthropic’s continued commercial success. In connection with this deployment, the parties are in discussions with certain operational and financial partners.\n\nCautionary Note Regarding Forward-Looking Statements\n\nThis Current Report on Form 8-K contains forward-looking statements (including within the meaning of Section 21E of the Securities Exchange Act of 1934, as amended, and Section 27A of the Securities Act of 1933, as amended). These forward-looking statements are based on current expectations and beliefs of Broadcom’s management, current information available to Broadcom’s management, and current market trends and market conditions, and involve risks and uncertainties that may cause actual results to differ materially from those contained in the forward-looking statements. Accordingly, undue reliance should not be placed on such statements. All forward-looking statements are qualified in their entirety by reference to the risk factors discussed under the heading “Risk Factors” in Broadcom’s Annual Report on Form 10-K for the year ended November 2, 2025, Quarterly Report on Form 10-Q for the period ended February 1, 2026 and any subsequent reports that are filed with the Securities and Exchange Commission and include some important risk factors that may affect future results. Broadcom undertakes no intent or obligation to publicly update or revise the forward-looking statements made in this Current Report on Form 8-K, except as required by law.\n\n---"}}, "raw_text": "8K_PARSED_INTO_MARKDOWN_CHUNKS"} +{"metadata": {"ticker": "AVGO", "form_type": "8-K", "filed_at": "2026-04-02", "accession_no": "0001193125-26-140574", "url": "https://www.sec.gov/Archives/edgar/data/1730168/000119312526140574/d109450d8k.htm", "ingested_at": "2026-04-08T12:48:32.628969"}, "parsed_data": {"is_chunked": true, "item_chunks": {"5.02": "Item 5.02 | Departure of Directors or Certain Officers; Election of Directors; Appointment of Certain Officers; Compensatory Arrangements of Certain Officers. |\n\nChief Financial Officer Transition\n\nOn March 30, 2026, Kirsten M. Spears notified Broadcom Inc. (the “Company”) of her retirement and resigned from her position as Chief Financial Officer and Chief Accounting Officer of the Company, effective as of June 12, 2026.\n\nOn March 30, 2026, the Board of Directors of the Company (the “Board”) appointed Amie Thuener to succeed Ms. Spears as the Chief Financial Officer of the Company, effective as of June 12, 2026. The employment of Ms. Thuener with the Company is expected to commence on May 4, 2026 and she will assume the role of Chief Financial Officer following the retirement of Ms. Spears on June 12, 2026.\n\nMs. Thuener, age 51, has served as Vice President, Corporate Controller and Chief Accounting Officer of Alphabet Inc. since 2018. Ms. Thuener held several senior finance positions at Alphabet from 2013 to 2018, including as Vice President and Chief Accountant. Prior to joining Alphabet, Ms. Thuener was at PricewaterhouseCoopers LLP from 1996 to 2012 and held several senior management positions, including as Managing Director, Transaction Services. Ms. Thuener is a Certified Public Accountant and a Chartered Global Management Accountant.\n\nThere are no family relationships between Ms. Thuener and any director or executive officer of the Company as defined in Item 401(d) of Regulation S-K, and Ms. Thuener has no direct or indirect material interest in any transaction or proposed transaction required to be disclosed pursuant to Item 404(a) of Regulation S-K.\n\nKirsten M. Spears Transition and Consulting Agreement\n\nIn connection with the retirement of Ms. Spears, the Company entered into a transition and consulting agreement with Ms. Spears, dated as of April 1, 2026 (the “Transition Agreement”).\n\nThe Transition Agreement provides that, following the conclusion of Ms. Spears’ employment with the Company on June 12, 2026, she will provide consulting services to the Company, as reasonably requested by the Chief Executive Officer of the Company, until March 15, 2027, unless the consulting period terminates earlier in accordance with the terms of the Transition Agreement. During the consulting period, Ms. Spears’ outstanding equity awards will continue to vest in accordance with their terms (provided that the performance-based equity awards will in no event vest at a level exceeding target). Ms. Spears will not receive any other compensation during the consulting period. The Transition Agreement includes a general release of claims in favor of the Company.\n\nAmie Thuener Offer Letter and Equity Awards\n\nIn connection with her employment with the Company and appointment as Chief Financial Officer of the Company, effective as of June 12, 2026, the Company entered into an offer letter with Ms. Thuener, dated as of March 30, 2026, which sets forth the material terms of her employment and compensation (the “Offer Letter”).\n\nPursuant to the Offer Letter, Ms. Thuener will receive an annual base salary of $700,000 and will be eligible to participate in the Company’s annual performance bonus plan with a target bonus opportunity of 100% of her base salary. Ms. Thuener will also receive a $1,000,000 sign-on cash bonus, payable within 30 days following the commencement of her employment.\n\nThe Offer Letter further provides that, subject to the approval of the Compensation Committee of the Board and Ms. Thuener’s continued employment through the applicable grant date, Ms. Thuener will be granted equity awards under the Company’s 2012 Stock Incentive Plan consisting of (i) 50,000 restricted stock units (“RSUs”) and (ii) 50,000 performance stock units (“PSUs”) at target. The equity awards are expected to be granted on June 15, 2026.\n\nThe RSUs will vest in equal quarterly installments over a four-year period following the grant date, subject to Ms. Thuener’s continued employment through each applicable vesting date. The PSUs will vest annually over a four-year period across four overlapping performance periods (March 2, 2026 through March 1, 2027, March 2, 2026 through March 1, 2028, March 2, 2026 through March 1, 2029 and March 2, 2026 through March 1, 2030) based on the Company’s total stockholder return relative to the S&P 500 and the Company’s absolute total stockholder return for the applicable performance period, in each case subject to Ms. Thuener’s continued employment through the anniversary of the grant date immediately following the end of each applicable performance period. The maximum vesting for the PSUs is 200% of the total target number of shares. The equity awards will be subject to the other terms and conditions set forth in the Company’s 2012 Stock Incentive Plan and the applicable award agreements.\n\n---\n\nIn addition, Ms. Thuener is expected to enter into the Company’s standard form of indemnification and advancement agreement and a severance benefit agreement on terms and conditions materially consistent with those applicable to Ms. Spears pursuant to her severance benefit agreement, as described in the Company’s definitive proxy statement filed with the U.S. Securities and Exchange Commission on March 2, 2026.\n\n---"}}, "raw_text": "8K_PARSED_INTO_MARKDOWN_CHUNKS"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_BKNG.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_BKNG.jsonl new file mode 100644 index 0000000..27b8476 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_BKNG.jsonl @@ -0,0 +1,3 @@ +{"metadata": {"ticker": "BKNG", "form_type": "8-K", "filed_at": "2026-04-02", "accession_no": "0000950157-26-000465", "url": "https://www.sec.gov/Archives/edgar/data/1075531/000095015726000465/form8-k.htm", "ingested_at": "2026-04-08T12:48:50.322210"}, "parsed_data": {"is_chunked": true, "item_chunks": {"5.03": "Item 5.03. Amendments to Articles of incorporation or Bylaws; Change in Fiscal Year.\n\nOn April 2, 2026, Booking Holdings Inc. (the “Company”) filed an amendment to its Restated Certificate of Incorporation with the Delaware Secretary of State to effect the\npreviously announced twenty-five-for-one forward stock split of the Company’s common stock and to proportionately increase the number of shares of the Company’s authorized common stock from 1,000,000,000 to 25,000,000,000. The amendment, which became\neffective at 4:01 p.m. Eastern Time on April 2, 2026, is filed as Exhibit 3.1 to this Current Report on Form 8-K. Trading is expected to commence on a split-adjusted basis at market open on Monday, April 6, 2026.", "9.01": "Item 9.01. Financial Statements and Exhibits.\n\n| | | |\n| --- | --- | --- |\n| (d) Exhibits | | |\n| Exhibit Number | | Description |\n| | | |\n| 3.1 | | Amendment to Restated Certificate of Incorporation of Booking Holdings Inc., dated April 2, 2026. |\n| 104 | | Cover Page Interactive Data File - the cover page interactive data file does not appear in the Interactive Data File because its XBRL tags are embedded within the Inline XBRL document. |\n\n---"}}, "raw_text": "8K_PARSED_INTO_MARKDOWN_CHUNKS"} +{"metadata": {"ticker": "BKNG", "form_type": "8-K", "filed_at": "2026-04-02", "accession_no": "0001075531-26-000014", "url": "https://www.sec.gov/Archives/edgar/data/1075531/000107553126000014/bkng-20260402.htm", "ingested_at": "2026-04-08T12:48:50.613430"}, "parsed_data": {"is_chunked": true, "item_chunks": {"5.02": "Item 5.02. Departure of Directors or Certain Officers; Election of Directors; Appointment\n\nof Certain Officers; Compensatory Arrangements of Certain Officers.\n\nOn April 2, 2026, Booking Holdings Inc. (the \"Company\") announced that it has appointed Caroline Sullivan as its Senior Vice President, Chief Accounting Officer, and Controller effective as of April 29, 2026. Ms. Sullivan, age 57, served as Vice President, Procurement and Real Estate of Elevance Health, a health insurance company, from June 2025 to March 2026. Prior to this, Ms. Sullivan was Senior Vice President, Chief Accounting Officer and Corporate Controller at Moody's Corporation, a global risk assessment firm, from December 2018 to March 2025. Ms. Sullivan also served as Global Banking Controller of Bank of America from 2017 to 2018. Earlier in her career, she held various finance positions with Morgan Stanley and Allied Irish Bank. Ms. Sullivan began her career at Ernst and Young and is a Certified Public Accountant.\n\nIn connection with Ms. Sullivan's appointment, she and the Company entered into an employment agreement with, among others, the following terms:\n\n•an initial annual base salary of $525,000;\n\n•a target annual bonus of 75% of base salary;\n\n•a grant of restricted stock units (\"RSUs\") expected to be made in May 2026 with a grant date fair value of $1,000,000;\n\n•a grant of performance share units (\"PSUs\") expected to be made in March 2027 with a grant date fair value at target of $1,000,000;\n\n•a new hire grant of RSUs expected to be made in May 2026 with a grant date fair value of $1,000,000;\n\n•a signing bonus of $300,000; and\n\n•in the event of her termination without cause, subject to the execution of a release of claims, severance benefits including payments equal to one times her base salary and target annual bonus, a pro-rated portion of any earned bonus for the year of termination if employment is terminated after June 30 of the then current year, health benefits for a period of 12 months, and any earned bonus for a prior completed year that has not yet been paid.\n\nMs. Sullivan's RSUs and new hire RSUs will each vest in three equal annual installments on each of the first three anniversaries of the grant date, subject to her continuous service from the date of grant until the vesting date, with pro rata vesting upon a termination without cause or due to disability, and full vesting upon a termination due to death. Ms. Sullivan's PSU award will vest subject to such service and performance-based vesting provisions generally consistent with those applicable to similarly-situated executives who receive PSU grants in 2027. The awards will be subject to the terms of the respective award agreements for awards under the Company’s 1999 Omnibus Plan.\n\nIn connection with Ms. Sullivan's appointment, the Company and Ms. Sullivan have also entered into a Non-Competition and Non-Solicitation Agreement and an Employee Confidentiality and Assignment Agreement.\n\n---"}}, "raw_text": "8K_PARSED_INTO_MARKDOWN_CHUNKS"} +{"metadata": {"ticker": "BKNG", "form_type": "8-K", "filed_at": "2026-04-01", "accession_no": "0001075531-26-000012", "url": "https://www.sec.gov/Archives/edgar/data/1075531/000107553126000012/bkng-20260401.htm", "ingested_at": "2026-04-08T12:48:50.961407"}, "parsed_data": {"is_chunked": true, "item_chunks": {"5.02": "Item 5.02. Departure of Directors or Certain Officers; Election of Directors; Appointment\n\nof Certain Officers; Compensatory Arrangements of Certain Officers.\n\nAppointment of Director\n\nOn April 1, 2026, Mr. Kurt Sievers was appointed to the Board of Directors (the \"Board\") of Booking Holdings Inc. (the \"Company\") and will be joining the Board's Corporate Governance Committee.\n\nMr. Sievers served as President and Chief Executive Officer of NXP Semiconductors N.V., a Netherlands-based semiconductor company (\"NXP\"), from 2020 until his retirement in 2025. He previously served as President beginning in 2018 and joined NXP’s Executive Management Team in 2009. Mr. Sievers currently serves on the board of directors of Capgemini SE, a multinational information technology services and consulting company, and is a member of its Strategy & CSR and Compensation Committees. He also serves on the supervisory board of Daimler Truck Holding AG, a commercial vehicle manufacturer.\n\nIn consideration of his services as a member of the Company's Board and any Board committees, Mr. Sievers will be compensated in accordance with the Company's non-employee director compensation program as in effect from time to time.\n\nRetirement of Director\n\nMs. Lynn Radakovich has informed the Company that she has decided to retire from the Board, effective at the Company's Annual Meeting in June 2026 (the \"Annual Meeting\"), and therefore is not standing for re-election at the Annual Meeting. The Company and the Board express their appreciation to Ms. Radakovich for her dedicated service.", "7.01": "Item 7.01 Regulation FD Disclosure.\n\nA copy of the press release announcing Mr. Sievers's appointment and Ms. Radakovich's retirement is furnished with this Current Report as Exhibit 99.1.\n\nThe information furnished herewith pursuant to this Item 7.01 of this Current Report shall not be deemed to be \"filed\" for purposes of Section 18 of the Securities Exchange Act of 1934, as amended (the \"Exchange Act\"), or otherwise subject to the liabilities of that section, and shall not be incorporated by reference into any registration statement or other document under the Securities Act of 1933, as amended, or the Exchange Act, except as shall be expressly set forth by specific reference in such filing.", "9.01": "Item 9.01. Financial Statements and Exhibits.\n\n(d) Exhibits\n\n| | | | | | | | | | | | | | | |\n| --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- |\n| | | | | | | | | | | | | | | |\n| Exhibit Number | | | Description | | | | | | | | | | | |\n| | | | | | | | | | | | | | | |\n| 99.1 | | | Press Release, dated April 1, 2026. | | | | | | | | | | | |\n| 104 | | | Cover Page Interactive Data File - the cover page interactive data file does not appear in the Interactive Data File because its XBRL tags are embedded within the Inline XBRL document. | | | | | | | | | | | |\n| | | | | | | | | | | | | | | |\n| | | | | | | | | | | | | | | |\n| | | | | | | | | | | | | | | |\n| | | | | | | | | | | | | | | |\n| | | | | | | | | | | | | | | |\n| | | | | | | | | | | | | | | |\n| | | | | | | | | | | | | | | |\n| | | | | | | | | | | | | | | |\n| | | | | | | | | | | | | | | |\n\n---"}}, "raw_text": "8K_PARSED_INTO_MARKDOWN_CHUNKS"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_CDNS.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_CDNS.jsonl new file mode 100644 index 0000000..4673785 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_CDNS.jsonl @@ -0,0 +1 @@ +{"metadata": {"ticker": "CDNS", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0000813672-26-000040", "url": "https://www.sec.gov/Archives/edgar/data/813672/000081367226000040/xslF345X06/wk-form4_1775243708.xml", "ingested_at": "2026-04-08T12:48:59.459023"}, "parsed_data": {"reporting_owner": "Cunningham Paul", "role": "Sr. Vice President", "transactions": [{"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 1000.0, "price": 280.19, "total_value": 280190.0, "post_transaction_shares": 128586.0, "is_10b5_1_planned": true}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_CMCSA.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_CMCSA.jsonl new file mode 100644 index 0000000..dc53233 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_CMCSA.jsonl @@ -0,0 +1,6 @@ +{"metadata": {"ticker": "CMCSA", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001225208-26-004342", "url": "https://www.sec.gov/Archives/edgar/data/1166691/000122520826004342/xslF345X06/doc4.xml", "ingested_at": "2026-04-08T12:48:43.821475"}, "parsed_data": {"reporting_owner": "Murdock Daniel C.", "role": "EVP & Chief Accounting Officer", "transactions": [{"date": "2026-04-03", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 5268.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 64435.0497, "is_10b5_1_planned": false}, {"date": "2026-04-03", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 2073.0, "price": 27.93, "total_value": 57898.89, "post_transaction_shares": 62362.0497, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "CMCSA", "form_type": "4", "filed_at": "2026-04-02", "accession_no": "0001225208-26-004203", "url": "https://www.sec.gov/Archives/edgar/data/1166691/000122520826004203/xslF345X06/doc4.xml", "ingested_at": "2026-04-08T12:48:44.045592"}, "parsed_data": {"reporting_owner": "Smith Gordon", "role": "Other", "transactions": [{"date": "2026-03-31", "code": "A", "direction": "OTHER (A)", "shares": 1176.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 9045.0, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "CMCSA", "form_type": "4", "filed_at": "2026-04-02", "accession_no": "0001225208-26-004202", "url": "https://www.sec.gov/Archives/edgar/data/1166691/000122520826004202/xslF345X06/doc4.xml", "ingested_at": "2026-04-08T12:48:44.268546"}, "parsed_data": {"reporting_owner": "Honickman Jeffrey A", "role": "Other", "transactions": [{"date": "2026-03-31", "code": "A", "direction": "OTHER (A)", "shares": 1524.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 262583.021, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "CMCSA", "form_type": "4", "filed_at": "2026-04-02", "accession_no": "0001225208-26-004201", "url": "https://www.sec.gov/Archives/edgar/data/1166691/000122520826004201/xslF345X06/doc4.xml", "ingested_at": "2026-04-08T12:48:44.473523"}, "parsed_data": {"reporting_owner": "BREEN EDWARD D", "role": "Other", "transactions": [{"date": "2026-03-31", "code": "A", "direction": "OTHER (A)", "shares": 697.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 56522.277, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "CMCSA", "form_type": "4", "filed_at": "2026-04-02", "accession_no": "0001225208-26-004200", "url": "https://www.sec.gov/Archives/edgar/data/1166691/000122520826004200/xslF345X06/doc4.xml", "ingested_at": "2026-04-08T12:48:44.697700"}, "parsed_data": {"reporting_owner": "Brady Louise F.", "role": "Other", "transactions": [{"date": "2026-03-31", "code": "A", "direction": "OTHER (A)", "shares": 1176.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 32682.89, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "CMCSA", "form_type": "4", "filed_at": "2026-04-02", "accession_no": "0001225208-26-004199", "url": "https://www.sec.gov/Archives/edgar/data/1166691/000122520826004199/xslF345X06/doc4.xml", "ingested_at": "2026-04-08T12:48:44.896983"}, "parsed_data": {"reporting_owner": "Baltimore Thomas J Jr", "role": "Other", "transactions": [{"date": "2026-03-31", "code": "A", "direction": "OTHER (A)", "shares": 1176.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 39043.493, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_COST.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_COST.jsonl new file mode 100644 index 0000000..5162c0e --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_COST.jsonl @@ -0,0 +1 @@ +{"metadata": {"ticker": "COST", "form_type": "4", "filed_at": "2026-04-01", "accession_no": "0000909832-26-000039", "url": "https://www.sec.gov/Archives/edgar/data/909832/000090983226000039/xslF345X06/form4.xml", "ingested_at": "2026-04-08T12:48:33.357291"}, "parsed_data": {"reporting_owner": "Frates Caton", "role": "Executive Vice President", "transactions": [{"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 700.0, "price": 993.0, "total_value": 695100.0, "post_transaction_shares": 5815.001, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_CRWD.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_CRWD.jsonl new file mode 100644 index 0000000..39c801f --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_CRWD.jsonl @@ -0,0 +1 @@ +{"metadata": {"ticker": "CRWD", "form_type": "8-K", "filed_at": "2026-04-06", "accession_no": "0001535527-26-000013", "url": "https://www.sec.gov/Archives/edgar/data/1535527/000153552726000013/crwd-20260406.htm", "ingested_at": "2026-04-08T12:49:01.938568"}, "parsed_data": {"is_chunked": true, "item_chunks": {"8.01": "Item 8.01 Other Events.\n\nOn April 6, 2026, the Company announced that its Board of Directors has approved the repurchase of up to an additional $500 million of the Company’s common stock, bringing the Company’s total repurchase authorization to $1.5 billion (together, the “Share Repurchase Program”). Under the Share Repurchase Program, the Company has repurchased 413,130 shares of its outstanding Class A common stock at an average price of $364.57 per share, for an aggregate purchase price of $150.6 million.\n\nThe Share Repurchase Program does not have a fixed expiration date and does not obligate the Company to acquire any specific number of shares. Repurchases may be made from time to time using a variety of methods, including open market purchases, privately negotiated transactions, Rule 10b5-1 trading plans and other means. The timing, manner, price and amount of any repurchases will be determined by the Company in its discretion and will depend on a variety of factors, including legal requirements, price and economic and market conditions. The Company currently expects to use the Share Repurchase Program opportunistically depending on the market price of the common stock and other factors, and there can be no assurance that any shares will be repurchased under the Share Repurchase Program.\n\nForward-Looking Statements\n\nThis Form 8-K contains forward-looking statements that involve risks and uncertainties, including statements regarding the Share Repurchase Program and the factors that will impact the amount and timing of purchases, if any, thereunder. A number of factors could cause outcomes to differ materially from our statements, including the risks and uncertainties included in our filings with the Securities and Exchange Commission, particularly under the caption “Risk Factors” in our most recently filed Annual Report on Form 10-K. Accordingly, you should not place undue reliance on these forward-looking statements. All forward-looking statements are based on information currently available to us, and we do not assume any obligation to update any statement to reflect changes in circumstances or our expectations.\n\n2\n\n---", "9.01": "Item 9.01 Financial Statements and Exhibits.\n\n(d) Exhibits\n\n| | | | | | | | | |\n| --- | --- | --- | --- | --- | --- | --- | --- | --- |\n| | | | | | | | | |\n| Exhibit Number | | | | | | Description of Exhibit | | |\n| 99.1 | | | | | | Press release dated April 6, 2026 | | |\n| 104 | | | | | | Cover Page Interactive Data File - the cover page XBRL tags are embedded within the Inline XBRL document | | |\n\n3\n\n---"}}, "raw_text": "8K_PARSED_INTO_MARKDOWN_CHUNKS"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_CSCO.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_CSCO.jsonl new file mode 100644 index 0000000..84e8c0c --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_CSCO.jsonl @@ -0,0 +1,2 @@ +{"metadata": {"ticker": "CSCO", "form_type": "4", "filed_at": "2026-04-07", "accession_no": "0000858877-26-000052", "url": "https://www.sec.gov/Archives/edgar/data/858877/000085887726000052/xslF345X06/wk-form4_1775592372.xml", "ingested_at": "2026-04-08T12:48:37.663506"}, "parsed_data": {"reporting_owner": "Shimer Peter A", "role": "Other", "transactions": [{"date": "2026-04-06", "code": "A", "direction": "OTHER (A)", "shares": 2333.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 2333.0, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "CSCO", "form_type": "8-K", "filed_at": "2026-04-06", "accession_no": "0000858877-26-000048", "url": "https://www.sec.gov/Archives/edgar/data/858877/000085887726000048/csco-20260331.htm", "ingested_at": "2026-04-08T12:48:37.896486"}, "parsed_data": {"is_chunked": true, "item_chunks": {"5.02": "Item 5.02. | | | Departure of Directors or Certain Officers; Election of Directors; Appointment of Certain Officers; Compensatory Arrangements of Certain Officers. | | |\n\nDeparture of Director\n\nOn March 31, 2026, in light of the increased time and focus required of his new role as Chief Executive Officer of Verizon Communications Inc., Daniel H. Schulman notified Cisco Systems, Inc. (“Cisco”) of his decision to resign from the Board of Directors (\"Board\") of Cisco effective May 21, 2026.\n\nAppointment of Director\n\nOn April 4, 2026, the Board of Cisco appointed Peter A. Shimer as a member of the Board effective April 6, 2026. In connection with his appointment, the Board determined that Mr. Shimer is “independent” under the applicable listing standards of The Nasdaq Stock Market LLC. The Board has also appointed Mr. Shimer to serve as a member of the Audit Committee of the Board.\n\nIn connection with his service as a director, Mr. Shimer will receive Cisco’s standard non-employee director cash and equity compensation. Mr. Shimer will receive a pro rata portion of the $105,000 annual cash retainer, paid quarterly in arrears, for his service through the remaining portion of the year ending at Cisco's 2026 annual meeting of stockholders (the \"2026 Annual Meeting\"). Mr. Shimer will also receive a pro rata portion of the Audit Committee member annual cash retainer fees, paid quarterly in arrears, for service on such committee through the remaining portion of the year ending at the 2026 Annual Meeting. Non-employee directors may instead elect to receive the annual cash retainer, committee cash retainer fees or other cash fees in fully vested shares of Cisco common stock, fully vested deferred stock units that would be settled in shares after the non-employee director leaves the Board, or a deferred cash payment under the Cisco Systems, Inc. Deferred Compensation Plan. Upon his appointment, pursuant to the Board’s equity grant policy for non-employee directors, Mr. Shimer automatically received a fully vested initial non-employee director equity award under Cisco’s 2005 Stock Incentive Plan with a grant date fair value equal to a pro rata portion of $270,000 based on the portion of the year of his board service. Non-employee directors may elect to defer receipt of the equity award such that the award would be settled in shares after the non-employee director leaves the Board. Non-employee directors are also eligible to participate in Cisco’s charitable matching gifts program (for calendar year 2026, the maximum match amount is $25,000 for Cisco's non-employee directors).\n\nIn connection with his appointment, Mr. Shimer has entered into Cisco’s standard form of Indemnity Agreement with Cisco which provides for indemnification of an indemnitee to the fullest extent permitted by law. The foregoing description of the Indemnity Agreement does not purport to be complete and is qualified in its entirety by the full text of the form of Indemnity Agreement, which was filed with the Securities and Exchange Commission on January 25, 2021 as Exhibit 10.1 to Cisco’s Current Report on Form 8-K.\n\n---"}}, "raw_text": "8K_PARSED_INTO_MARKDOWN_CHUNKS"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_CSX.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_CSX.jsonl new file mode 100644 index 0000000..7c56a6c --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_CSX.jsonl @@ -0,0 +1 @@ +{"metadata": {"ticker": "CSX", "form_type": "4", "filed_at": "2026-04-02", "accession_no": "0001193125-26-140177", "url": "https://www.sec.gov/Archives/edgar/data/277948/000119312526140177/xslF345X06/ownership.xml", "ingested_at": "2026-04-08T12:49:00.868872"}, "parsed_data": {"reporting_owner": "ANGEL STEPHEN F", "role": "President & CEO", "transactions": []}, "raw_text": "XML_PARSED_SUCCESSFULLY"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_GOOG.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_GOOG.jsonl new file mode 100644 index 0000000..25faec5 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_GOOG.jsonl @@ -0,0 +1,2 @@ +{"metadata": {"ticker": "GOOG", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001193125-26-142372", "url": "https://www.sec.gov/Archives/edgar/data/1652044/000119312526142372/xslF345X06/ownership.xml", "ingested_at": "2026-04-08T12:48:30.190015"}, "parsed_data": {"reporting_owner": "O'Toole Amie Thuener", "role": "VP, Chief Accounting Officer", "transactions": [{"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 617.0, "price": 289.63, "total_value": 178701.71, "post_transaction_shares": 10093.0, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "GOOG", "form_type": "8-K", "filed_at": "2026-04-02", "accession_no": "0001652044-26-000031", "url": "https://www.sec.gov/Archives/edgar/data/1652044/000165204426000031/goog-20260330.htm", "ingested_at": "2026-04-08T12:48:30.394411"}, "parsed_data": {"is_chunked": true, "item_chunks": {"5.02": "Item 5.02 Departure of Directors or Certain Officers; Election of Directors; Appointment of Certain Officers; Compensatory Arrangements of Certain Officers.\n\nOn March 30, 2026, Amie Thuener O'Toole notified Alphabet Inc. (the “Company”) of her resignation as Vice President, Corporate Controller and Principal Accounting Officer of the Company, effective April 9, 2026, to pursue another professional opportunity. Ms. O'Toole’s decision to resign did not result from any disagreement with the Company on any matter relating to the Company’s operations, policies, or practices.\n\n---"}}, "raw_text": "8K_PARSED_INTO_MARKDOWN_CHUNKS"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_GOOGL.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_GOOGL.jsonl new file mode 100644 index 0000000..065b61d --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_GOOGL.jsonl @@ -0,0 +1,2 @@ +{"metadata": {"ticker": "GOOGL", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001193125-26-142372", "url": "https://www.sec.gov/Archives/edgar/data/1652044/000119312526142372/xslF345X06/ownership.xml", "ingested_at": "2026-04-08T12:48:29.315822"}, "parsed_data": {"reporting_owner": "O'Toole Amie Thuener", "role": "VP, Chief Accounting Officer", "transactions": [{"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 617.0, "price": 289.63, "total_value": 178701.71, "post_transaction_shares": 10093.0, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "GOOGL", "form_type": "8-K", "filed_at": "2026-04-02", "accession_no": "0001652044-26-000031", "url": "https://www.sec.gov/Archives/edgar/data/1652044/000165204426000031/goog-20260330.htm", "ingested_at": "2026-04-08T12:48:29.521443"}, "parsed_data": {"is_chunked": true, "item_chunks": {"5.02": "Item 5.02 Departure of Directors or Certain Officers; Election of Directors; Appointment of Certain Officers; Compensatory Arrangements of Certain Officers.\n\nOn March 30, 2026, Amie Thuener O'Toole notified Alphabet Inc. (the “Company”) of her resignation as Vice President, Corporate Controller and Principal Accounting Officer of the Company, effective April 9, 2026, to pursue another professional opportunity. Ms. O'Toole’s decision to resign did not result from any disagreement with the Company on any matter relating to the Company’s operations, policies, or practices.\n\n---"}}, "raw_text": "8K_PARSED_INTO_MARKDOWN_CHUNKS"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_HON.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_HON.jsonl new file mode 100644 index 0000000..9f02f3a --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_HON.jsonl @@ -0,0 +1,2 @@ +{"metadata": {"ticker": "HON", "form_type": "4", "filed_at": "2026-04-02", "accession_no": "0000773840-26-000025", "url": "https://www.sec.gov/Archives/edgar/data/773840/000077384026000025/xslF345X06/wk-form4_1775167050.xml", "ingested_at": "2026-04-08T12:48:43.044450"}, "parsed_data": {"reporting_owner": "Flint Deborah", "role": "Other", "transactions": []}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "HON", "form_type": "4", "filed_at": "2026-04-02", "accession_no": "0000773840-26-000024", "url": "https://www.sec.gov/Archives/edgar/data/773840/000077384026000024/xslF345X06/wk-form4_1775166995.xml", "ingested_at": "2026-04-08T12:48:43.247069"}, "parsed_data": {"reporting_owner": "ANGOVE DUNCAN", "role": "Other", "transactions": []}, "raw_text": "XML_PARSED_SUCCESSFULLY"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_IBM.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_IBM.jsonl new file mode 100644 index 0000000..a391368 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_IBM.jsonl @@ -0,0 +1,13 @@ +{"metadata": {"ticker": "IBM", "form_type": "4", "filed_at": "2026-04-01", "accession_no": "0001630253-26-000003", "url": "https://www.sec.gov/Archives/edgar/data/51143/000163025326000003/xslF345X06/primarydocument.xml", "ingested_at": "2026-04-08T12:48:46.706365"}, "parsed_data": {"reporting_owner": "Laguarta Ramon", "role": "Director", "transactions": []}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "IBM", "form_type": "4", "filed_at": "2026-04-01", "accession_no": "0001804183-26-000004", "url": "https://www.sec.gov/Archives/edgar/data/51143/000180418326000004/xslF345X06/primarydocument.xml", "ingested_at": "2026-04-08T12:48:46.946343"}, "parsed_data": {"reporting_owner": "Brown Marianne Catherine", "role": "Director", "transactions": []}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "IBM", "form_type": "4", "filed_at": "2026-04-01", "accession_no": "0001738987-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/51143/000173898726000002/xslF345X06/primarydocument.xml", "ingested_at": "2026-04-08T12:48:47.164648"}, "parsed_data": {"reporting_owner": "Buberl Thomas", "role": "Director", "transactions": []}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "IBM", "form_type": "4", "filed_at": "2026-04-01", "accession_no": "0001183474-26-000003", "url": "https://www.sec.gov/Archives/edgar/data/51143/000118347426000003/xslF345X06/primarydocument.xml", "ingested_at": "2026-04-08T12:48:47.446314"}, "parsed_data": {"reporting_owner": "FARR DAVID N", "role": "Director", "transactions": []}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "IBM", "form_type": "4", "filed_at": "2026-04-01", "accession_no": "0001453149-26-000006", "url": "https://www.sec.gov/Archives/edgar/data/51143/000145314926000006/xslF345X06/primarydocument.xml", "ingested_at": "2026-04-08T12:48:47.738627"}, "parsed_data": {"reporting_owner": "Gorsky Alex", "role": "Director", "transactions": []}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "IBM", "form_type": "4", "filed_at": "2026-04-01", "accession_no": "0001769389-26-000003", "url": "https://www.sec.gov/Archives/edgar/data/51143/000176938926000003/xslF345X06/primarydocument.xml", "ingested_at": "2026-04-08T12:48:47.993127"}, "parsed_data": {"reporting_owner": "HOWARD MICHELLE J", "role": "Director", "transactions": []}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "IBM", "form_type": "4", "filed_at": "2026-04-01", "accession_no": "0001269971-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/51143/000126997126000002/xslF345X06/primarydocument.xml", "ingested_at": "2026-04-08T12:48:48.200292"}, "parsed_data": {"reporting_owner": "LIVERIS ANDREW N", "role": "Director", "transactions": []}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "IBM", "form_type": "4", "filed_at": "2026-04-01", "accession_no": "0001731814-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/51143/000173181426000002/xslF345X06/primarydocument.xml", "ingested_at": "2026-04-08T12:48:48.492897"}, "parsed_data": {"reporting_owner": "MCNABB FREDERICK WILLIAM III", "role": "Director", "transactions": []}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "IBM", "form_type": "4", "filed_at": "2026-04-01", "accession_no": "0001771933-26-000005", "url": "https://www.sec.gov/Archives/edgar/data/51143/000177193326000005/xslF345X06/primarydocument.xml", "ingested_at": "2026-04-08T12:48:48.805919"}, "parsed_data": {"reporting_owner": "Miebach Michael", "role": "Director", "transactions": []}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "IBM", "form_type": "4", "filed_at": "2026-04-01", "accession_no": "0001628797-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/51143/000162879726000002/xslF345X06/primarydocument.xml", "ingested_at": "2026-04-08T12:48:49.059135"}, "parsed_data": {"reporting_owner": "VOSER PETER R.", "role": "Director", "transactions": []}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "IBM", "form_type": "4", "filed_at": "2026-04-01", "accession_no": "0001223690-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/51143/000122369026000002/xslF345X06/primarydocument.xml", "ingested_at": "2026-04-08T12:48:49.276566"}, "parsed_data": {"reporting_owner": "WADDELL FREDERICK H", "role": "Director", "transactions": []}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "IBM", "form_type": "4", "filed_at": "2026-04-01", "accession_no": "0001196985-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/51143/000119698526000002/xslF345X06/primarydocument.xml", "ingested_at": "2026-04-08T12:48:49.532260"}, "parsed_data": {"reporting_owner": "ZOLLAR ALFRED W", "role": "Director", "transactions": []}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "IBM", "form_type": "4", "filed_at": "2026-04-01", "accession_no": "0001765271-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/51143/000176527126000002/xslF345X06/primarydocument.xml", "ingested_at": "2026-04-08T12:48:49.820455"}, "parsed_data": {"reporting_owner": "Pollack Martha E", "role": "Director", "transactions": []}, "raw_text": "XML_PARSED_SUCCESSFULLY"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_INTC.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_INTC.jsonl new file mode 100644 index 0000000..9bf77f1 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_INTC.jsonl @@ -0,0 +1 @@ +{"metadata": {"ticker": "INTC", "form_type": "8-K", "filed_at": "2026-04-03", "accession_no": "0000050863-26-000069", "url": "https://www.sec.gov/Archives/edgar/data/50863/000005086326000069/intc-20260330.htm", "ingested_at": "2026-04-08T12:48:45.429994"}, "parsed_data": {"is_chunked": true, "item_chunks": {"5.02": "Item 5.02 Departure of Directors or Certain Officers; Election of Directors; Appointment of Certain Officers; Compensatory Arrangements of Certain Officers.\n\nOn March 30,2026, Intel Corporation determined that April Miller Boise, Intel’s Executive Vice President and Chief Legal Officer, will separate from Intel effective as of June 1, 2026. Upon her departure on June 1, 2026, Ms. Miller Boise will be entitled to severance benefits in accordance with the terms and conditions of the Intel Corporation Executive Severance Plan, as previously disclosed, in exchange for a release of claims in favor of Intel.", "9.01": "Item 9.01 Financial Statements and Exhibits.\n\n(d) Exhibits.\n\nThe following exhibits are provided as part of this report:\n\n| | | | | | |\n| --- | --- | --- | --- | --- | --- |\n| | | | | | |\n| Exhibit Number | | | Description | | |\n| 104 | | | Cover Page Interactive Data File, formatted in Inline XBRL and included as Exhibit 101. | | |\n\n---"}}, "raw_text": "8K_PARSED_INTO_MARKDOWN_CHUNKS"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_INTU.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_INTU.jsonl new file mode 100644 index 0000000..8c7906d --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_INTU.jsonl @@ -0,0 +1,6 @@ +{"metadata": {"ticker": "INTU", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001628280-26-023706", "url": "https://www.sec.gov/Archives/edgar/data/896878/000162828026023706/xslF345X06/wk-form4_1775249487.xml", "ingested_at": "2026-04-08T12:48:40.705654"}, "parsed_data": {"reporting_owner": "Goodarzi Sasan K", "role": "CEO, President and Director", "transactions": [{"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 653.529, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 14264.957, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 893.612, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 15158.569, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 802.006, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 15960.575, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 863.013, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 16823.588, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 30.832, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 16854.42, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 1277.861, "price": 432.38, "total_value": 552521.5391800001, "post_transaction_shares": 15576.559, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "INTU", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001628280-26-023704", "url": "https://www.sec.gov/Archives/edgar/data/896878/000162828026023704/xslF345X06/wk-form4_1775249417.xml", "ingested_at": "2026-04-08T12:48:40.933207"}, "parsed_data": {"reporting_owner": "McLean Kerry J", "role": "EVP, Gen. Counsel & Corp. Sec.", "transactions": [{"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 244.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 28657.7666, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 236.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 28893.7666, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 199.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 29092.7666, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 170.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 29262.7666, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 301.627, "price": 432.38, "total_value": 130417.48226, "post_transaction_shares": 28961.1396, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "INTU", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001628280-26-023701", "url": "https://www.sec.gov/Archives/edgar/data/896878/000162828026023701/xslF345X06/wk-form4_1775249278.xml", "ingested_at": "2026-04-08T12:48:41.133725"}, "parsed_data": {"reporting_owner": "Hotz Lauren D", "role": "SVP, Chief Accounting Officer", "transactions": [{"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 41.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 2055.7352, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 104.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 2159.7352, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 97.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 2256.7352, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 88.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 2344.7352, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 120.548, "price": 432.38, "total_value": 52122.54424, "post_transaction_shares": 2224.1872, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "INTU", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001628280-26-023698", "url": "https://www.sec.gov/Archives/edgar/data/896878/000162828026023698/xslF345X06/wk-form4_1775249186.xml", "ingested_at": "2026-04-08T12:48:41.343578"}, "parsed_data": {"reporting_owner": "Hilliard Caryl Lyn", "role": "EVP, People and Places", "transactions": [{"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 122.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 23018.008, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 110.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 23128.008, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 87.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 23215.008, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 150.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 23365.008, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 212.093, "price": 432.38, "total_value": 91704.77133999999, "post_transaction_shares": 23152.915, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "INTU", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001628280-26-023696", "url": "https://www.sec.gov/Archives/edgar/data/896878/000162828026023696/xslF345X06/wk-form4_1775249122.xml", "ingested_at": "2026-04-08T12:48:41.573994"}, "parsed_data": {"reporting_owner": "Hanebrink Anton", "role": "EVP, Corp Strategy and Dev", "transactions": [{"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 348.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 29953.249, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 252.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 30205.249, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 224.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 30429.249, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 418.253, "price": 432.38, "total_value": 180844.23213999998, "post_transaction_shares": 30010.996, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "INTU", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001628280-26-023690", "url": "https://www.sec.gov/Archives/edgar/data/896878/000162828026023690/xslF345X06/wk-form4_1775248743.xml", "ingested_at": "2026-04-08T12:48:41.795152"}, "parsed_data": {"reporting_owner": "Aujla Sandeep", "role": "EVP and CFO", "transactions": [{"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 2665.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 3239.1366, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 346.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 3585.1366, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 349.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 3934.1366, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 1725.362, "price": 432.38, "total_value": 746012.02156, "post_transaction_shares": 2208.7746, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_MAR.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_MAR.jsonl new file mode 100644 index 0000000..4122c8f --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_MAR.jsonl @@ -0,0 +1 @@ +{"metadata": {"ticker": "MAR", "form_type": "4", "filed_at": "2026-04-01", "accession_no": "0001225208-26-004132", "url": "https://www.sec.gov/Archives/edgar/data/1048286/000122520826004132/xslF345X06/doc4.xml", "ingested_at": "2026-04-08T12:49:02.493404"}, "parsed_data": {"reporting_owner": "LEWIS AYLWIN B", "role": "Other", "transactions": [{"date": "2026-03-31", "code": "A", "direction": "OTHER (A)", "shares": 11.118, "price": 326.05, "total_value": 3625.0239, "post_transaction_shares": 12738.575, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_MDLZ.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_MDLZ.jsonl new file mode 100644 index 0000000..bc87077 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_MDLZ.jsonl @@ -0,0 +1,2 @@ +{"metadata": {"ticker": "MDLZ", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001628280-26-023648", "url": "https://www.sec.gov/Archives/edgar/data/1103982/000162828026023648/xslF345X06/wk-form4_1775247097.xml", "ingested_at": "2026-04-08T12:48:53.535143"}, "parsed_data": {"reporting_owner": "Lilak Stephanie", "role": "EVP and Chief People Officer", "transactions": [{"date": "2026-04-01", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 3218.0, "price": 57.07, "total_value": 183651.26, "post_transaction_shares": 24118.0, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "MDLZ", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001628280-26-023646", "url": "https://www.sec.gov/Archives/edgar/data/1103982/000162828026023646/xslF345X06/wk-form4_1775247057.xml", "ingested_at": "2026-04-08T12:48:53.778010"}, "parsed_data": {"reporting_owner": "Kuhn Volker", "role": "EVP and President, Europe", "transactions": [{"date": "2026-04-01", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 90.0, "price": 57.07, "total_value": 5136.3, "post_transaction_shares": 25820.0, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_MELI.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_MELI.jsonl new file mode 100644 index 0000000..8222cf0 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_MELI.jsonl @@ -0,0 +1 @@ +{"metadata": {"ticker": "MELI", "form_type": "8-K", "filed_at": "2026-04-03", "accession_no": "0001999371-26-007656", "url": "https://www.sec.gov/Archives/edgar/data/1099590/000199937126007656/meli_8k-033126.htm", "ingested_at": "2026-04-08T12:48:59.995354"}, "parsed_data": {"is_chunked": true, "item_chunks": {"5.02": "Item 5.02** | **Departure of Directors or Certain Officers; Election of Directors; Appointment of Certain Officers; Compensatory Arrangements of Certain Officers.** |\n\n**Establishment of Performance Goals under the 2026 Bonus Program**\n\nOn March 31, 2026, the Board of Directors (the “Board”) of\nMercadoLibre, Inc. (the “Company”) established the performance goals for the Company’s bonus program for the 2026 fiscal\nyear (the “2026 Bonus Program”). Under the 2026 Bonus Program, the bonus payout for each of Ariel Szarfsztejn (Chief Executive\nOfficer), Marcos Galperin (Executive Chairman), Osvaldo Giménez (Fintech President), Daniel Rabinovich (Technology & Operations\nPresident), and Martin de los Santos (EVP and Chief Financial Officer) (referred to below as “NEOs”) is based on achievement\nof Net revenues and financial income (in constant dollars), Income from operations (in constant dollars), Total payment volume - adjusted\n(the total sum of all transactions paid for using Mercado Pago, including marketplace and non-marketplace transactions, excluding peer-to-peer\ntransactions) (in constant dollars) and the Company’s Competitive Net Promoter Score. The Board has determined a target bonus for\neach NEO and applies an adjustment of up to + 50% or -50% to each bonus based upon the individual performance of each NEO.\n\nThe Board set each NEO’s target bonus under the 2026 Bonus Program\nas four months of base salary (33.33% of each NEO’s annual base salary).\n\n**Adoption of the 2026 Long Term Retention Program**\n\nOn March 31, 2026, the Board approved the adoption of the 2026 Long\nTerm Retention Program (the “2026 LTRP”) and, after taking into account a compensation competitiveness analysis carried out\nby the Company’s independent third-party compensation consultant, established the target award for each NEO under the 2026 LTRP.\nThe 2026 LTRP provides the NEOs, along with other members of senior management, with the opportunity to receive cash payments annually\nfor a period of six years (with the first payment occurring between January 1, 2027 and April 30, 2027, as determined by the Company),\nsubject to continued employment on each payment date (other than in specified circumstances). Each award to an NEO under the 2026 LTRP is deemed to have a Grant Date\n(as defined in the 2026 LTRP) of January 1, 2026. Under the 2026 LTRP, each NEO shall receive:\n\n| | | | |\n| --- | --- | --- | --- |\n| | ● | | 16.66% of half of his or her target 2026 LTRP award annually for a period of six years (with the first payment occurring between January 1, 2027 and April 30, 2027) (the “Annual Fixed Payment”); and |\n\n| | | | |\n| --- | --- | --- | --- |\n| | ● | | on each date the Company pays the Annual Fixed Payment, each NEO will also receive a payment equal to the product of (i) 16.66% of half of the NEO’s target 2026 LTRP award and (ii) the quotient of (a) the Applicable Year Stock Price (as defined below) over (b) the average closing price of the Company’s common stock on NASDAQ during the final 60 trading days of 2025. For purposes of the 2026 LTRP, the “Applicable Year Stock Price” is the average closing price of the Company’s common stock on NASDAQ during the final 60 trading days of the fiscal year preceding the fiscal year in which the applicable payment date occurs, for so long as our common stock is listed on NASDAQ. |\n\nThe target 2026 LTRP awards for our NEOs are set forth below.\n\n| | | | | | | |\n| --- | --- | --- | --- | --- | --- | --- |\n| Name | | Title | | Target 2026 LTRP Award (nominal) | | |\n| Ariel Szarfsztejn | | Chief Executive Officer | | $ | 14,000,000 | |\n| Osvaldo Giménez | | Fintech President | | $ | 10,000,000 | |\n| Daniel Rabinovich | | Technology & Operations President | | $ | 10,000,000 | |\n| Martin de los Santos | | Executive Vice President & Chief Financial Officer | | $ | 4,000,000 | |\n| Marcos Galperin | | Executive Chairman | | $ | 3,500,000 | |\n\n| |\n| --- |\n| |\n\nThe foregoing description of the 2026 LTRP does not purport to be complete\nand is qualified in its entirety by reference to the full text of the 2026 LTRP, which is filed as Exhibit 10.1 to this Current Report\non Form 8-K and is incorporated herein by reference.\n\n| | |\n| --- | --- |\n| **Item 9.01** | **Financial Statements and Exhibits.** |\n\n| | |\n| --- | --- |\n| (d) | *Exhibits.* |\n\nThe following exhibits are filed herewith.\n\n| | | | |\n| --- | --- | --- | --- |\n| **Exhibit** **Number** | | | **Description** |\n| | | | |\n| 10.1 | | | MercadoLibre, Inc. 2026 Long Term Retention Program |\n\n| |\n| --- |\n| |\n\n**EXHIBIT INDEX**\n\n| | | |\n| --- | --- | --- |\n| **Exhibit** **Number** | | **Description** |\n| | | |\n| 10.1 | | MercadoLibre, Inc. 2026 Long Term Retention Program |\n\n| |\n| --- |\n| |\n\n**SIGNATURES**\n\nPursuant to the requirements of the Securities Exchange\nAct of 1934, the registrant has duly caused this report to be signed on its behalf by the undersigned hereunto duly authorized.\n\n| | | | |\n| --- | --- | --- | --- |\n| | MercadoLibre, Inc. | | |\n| | | | |\n| Dated: April 3, 2026 | By: | /s/ Martin de los Santos | |\n| | Name: | Martin de los Santos | |\n| | Title: | Executive Vice President and Chief Financial Officer | |\n| | | | |\n\n \n\n| |\n| --- |\n| |"}}, "raw_text": "8K_PARSED_INTO_MARKDOWN_CHUNKS"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_MU.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_MU.jsonl new file mode 100644 index 0000000..cc67761 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_MU.jsonl @@ -0,0 +1,4 @@ +{"metadata": {"ticker": "MU", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001632063-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/723125/000163206326000002/xslF345X06/primarydocument.xml", "ingested_at": "2026-04-08T12:48:57.862487"}, "parsed_data": {"reporting_owner": "ARNZEN APRIL S", "role": "EVP and Chief People Officer", "transactions": [{"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 8630.0, "price": 345.13, "total_value": 2978471.9, "post_transaction_shares": 157107.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 5766.0, "price": 346.22, "total_value": 1996304.5200000003, "post_transaction_shares": 151341.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 604.0, "price": 346.83, "total_value": 209485.31999999998, "post_transaction_shares": 150737.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 25000.0, "price": 348.46, "total_value": 8711500.0, "post_transaction_shares": 125737.0, "is_10b5_1_planned": true}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "MU", "form_type": "4", "filed_at": "2026-04-02", "accession_no": "0002058769-26-000003", "url": "https://www.sec.gov/Archives/edgar/data/723125/000205876926000003/xslF345X06/primarydocument.xml", "ingested_at": "2026-04-08T12:48:58.070656"}, "parsed_data": {"reporting_owner": "Liu Teyin M", "role": "Director", "transactions": [{"date": "2026-03-31", "code": "A", "direction": "OTHER (A)", "shares": 97.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 26007.0, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "MU", "form_type": "4", "filed_at": "2026-04-02", "accession_no": "0001218363-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/723125/000121836326000002/xslF345X06/primarydocument.xml", "ingested_at": "2026-04-08T12:48:58.298891"}, "parsed_data": {"reporting_owner": "SWAN ROBERT HOLMES", "role": "Director", "transactions": []}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "MU", "form_type": "8-K", "filed_at": "2026-04-01", "accession_no": "0001104659-26-038249", "url": "https://www.sec.gov/Archives/edgar/data/723125/000110465926038249/tm2610810d1_8k.htm", "ingested_at": "2026-04-08T12:48:58.540588"}, "parsed_data": {"is_chunked": true, "item_chunks": {"8.01": "Item 8.01. Other Events.** | |\n\nOn March 31, 2026, Micron Technology, Inc. (the\n“Company”) issued a press release announcing the pricing of its cash tender offers for any and all of its outstanding 5.300%\nSenior Notes due 2031 (the “2031 Notes”), 5.650% Senior Notes due 2032 (the “2032 Notes”), 5.875% Senior Notes\ndue 2033 (the “2033A Notes”), 5.875% Senior Notes due 2033 (the “2033B Notes”), 5.800% Senior Notes due 2035 (the\n“2035A Notes”), and 6.050% Senior Notes due 2035 (the “2023B Notes”, and, together with the 2031 Notes, the 2032\nNotes, the 2033A Notes, the 2033B Notes and the 2035A Notes, the “Notes”), in connection with the Company’s previously\nannounced cash tender offers commenced on March 25, 2026.\n\nOn April 1, 2026, the Company issued a press release\nannouncing the expiration of its previously announced cash tender offers to purchase any and all of the Notes.\n\nCopies of the press releases are attached hereto\nas Exhibit 99.1 and Exhibit 99.2, respectively, and incorporated herein by reference.\n\n| | | |\n| --- | --- | --- |\n| **Item 9.01.** | | **Financial Statements and Exhibits.** |\n| | | |\n| | | (d) Exhibits. |\n| | | |\n| **Exhibit No.** | | **Description** |\n| 99.1 | | Press Release issued on March 31, 2026. |\n| 99.2 | | Press Release issued on April 1, 2026. |\n| 104 | | Cover Page Interactive Data File (embedded with the Inline XBRL document) |\n\n**SIGNATURE**\n\nPursuant to the requirements of the Securities Exchange Act of 1934,\nthe Registrant has duly caused this report to be signed on its behalf by the undersigned hereunto duly authorized.\n\n| | | |\n| --- | --- | --- |\n| | **MICRON TECHNOLOGY, INC.** | |\n| | | |\n| Date: April 1, 2026 | By: | /s/ Mark Murphy |\n| | Name: | Mark Murphy |\n| | Title: | Executive Vice President and Chief Financial Officer |"}}, "raw_text": "8K_PARSED_INTO_MARKDOWN_CHUNKS"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_NFLX.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_NFLX.jsonl new file mode 100644 index 0000000..eada4d8 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_NFLX.jsonl @@ -0,0 +1,13 @@ +{"metadata": {"ticker": "NFLX", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001543133-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/1065280/000154313326000002/xslF345X06/wk-form4_1775246849.xml", "ingested_at": "2026-04-08T12:48:34.271973"}, "parsed_data": {"reporting_owner": "Neumann Spencer Adam", "role": "Chief Financial Officer", "transactions": [{"date": "2026-04-02", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 7770.0, "price": 38.105, "total_value": 296075.85, "post_transaction_shares": 81557.0, "is_10b5_1_planned": true}, {"date": "2026-04-02", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 20860.0, "price": 36.408, "total_value": 759470.88, "post_transaction_shares": 102417.0, "is_10b5_1_planned": true}, {"date": "2026-04-02", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 28630.0, "price": 98.0, "total_value": 2805740.0, "post_transaction_shares": 73787.0, "is_10b5_1_planned": true}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "NFLX", "form_type": "4", "filed_at": "2026-04-02", "accession_no": "0001065280-26-000136", "url": "https://www.sec.gov/Archives/edgar/data/1065280/000106528026000136/xslF345X06/wk-form4_1775167371.xml", "ingested_at": "2026-04-08T12:48:34.482708"}, "parsed_data": {"reporting_owner": "KILGORE LESLIE J", "role": "Other", "transactions": []}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "NFLX", "form_type": "4", "filed_at": "2026-04-02", "accession_no": "0001065280-26-000135", "url": "https://www.sec.gov/Archives/edgar/data/1065280/000106528026000135/xslF345X06/wk-form4_1775167364.xml", "ingested_at": "2026-04-08T12:48:34.705192"}, "parsed_data": {"reporting_owner": "Masiyiwa Strive", "role": "Other", "transactions": []}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "NFLX", "form_type": "4", "filed_at": "2026-04-02", "accession_no": "0001065280-26-000134", "url": "https://www.sec.gov/Archives/edgar/data/1065280/000106528026000134/xslF345X06/wk-form4_1775167354.xml", "ingested_at": "2026-04-08T12:48:34.906612"}, "parsed_data": {"reporting_owner": "HASTINGS REED", "role": "Other", "transactions": [{"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 420550.0, "price": 9.437, "total_value": 3968730.3499999996, "post_transaction_shares": 424490.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 152047.0, "price": 95.015, "total_value": 14446745.705, "post_transaction_shares": 272443.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 247923.0, "price": 95.6767, "total_value": 23720454.4941, "post_transaction_shares": 24520.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 20580.0, "price": 96.6601, "total_value": 1989264.858, "post_transaction_shares": 3940.0, "is_10b5_1_planned": true}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "NFLX", "form_type": "4", "filed_at": "2026-04-02", "accession_no": "0001065280-26-000133", "url": "https://www.sec.gov/Archives/edgar/data/1065280/000106528026000133/xslF345X06/wk-form4_1775167345.xml", "ingested_at": "2026-04-08T12:48:35.108886"}, "parsed_data": {"reporting_owner": "Sweeney Anne M", "role": "Other", "transactions": []}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "NFLX", "form_type": "4", "filed_at": "2026-04-02", "accession_no": "0001065280-26-000132", "url": "https://www.sec.gov/Archives/edgar/data/1065280/000106528026000132/xslF345X06/wk-form4_1775167337.xml", "ingested_at": "2026-04-08T12:48:35.330733"}, "parsed_data": {"reporting_owner": "MATHER ANN", "role": "Other", "transactions": []}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "NFLX", "form_type": "4", "filed_at": "2026-04-02", "accession_no": "0001065280-26-000131", "url": "https://www.sec.gov/Archives/edgar/data/1065280/000106528026000131/xslF345X06/wk-form4_1775167309.xml", "ingested_at": "2026-04-08T12:48:35.535789"}, "parsed_data": {"reporting_owner": "Dopfner Mathias", "role": "Other", "transactions": []}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "NFLX", "form_type": "4", "filed_at": "2026-04-02", "accession_no": "0001065280-26-000130", "url": "https://www.sec.gov/Archives/edgar/data/1065280/000106528026000130/xslF345X06/wk-form4_1775167302.xml", "ingested_at": "2026-04-08T12:48:35.745631"}, "parsed_data": {"reporting_owner": "Karbowski Jeffrey William", "role": "Chief Accounting Officer", "transactions": []}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "NFLX", "form_type": "4", "filed_at": "2026-04-02", "accession_no": "0001065280-26-000129", "url": "https://www.sec.gov/Archives/edgar/data/1065280/000106528026000129/xslF345X06/wk-form4_1775167293.xml", "ingested_at": "2026-04-08T12:48:35.968973"}, "parsed_data": {"reporting_owner": "SMITH BRADFORD L", "role": "Other", "transactions": []}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "NFLX", "form_type": "4", "filed_at": "2026-04-02", "accession_no": "0001065280-26-000128", "url": "https://www.sec.gov/Archives/edgar/data/1065280/000106528026000128/xslF345X06/wk-form4_1775167286.xml", "ingested_at": "2026-04-08T12:48:36.170732"}, "parsed_data": {"reporting_owner": "RICE SUSAN E", "role": "Other", "transactions": []}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "NFLX", "form_type": "4", "filed_at": "2026-04-02", "accession_no": "0001065280-26-000127", "url": "https://www.sec.gov/Archives/edgar/data/1065280/000106528026000127/xslF345X06/wk-form4_1775167280.xml", "ingested_at": "2026-04-08T12:48:36.377176"}, "parsed_data": {"reporting_owner": "BARTON RICHARD N", "role": "Other", "transactions": []}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "NFLX", "form_type": "4", "filed_at": "2026-04-02", "accession_no": "0001065280-26-000126", "url": "https://www.sec.gov/Archives/edgar/data/1065280/000106528026000126/xslF345X06/wk-form4_1775167264.xml", "ingested_at": "2026-04-08T12:48:36.602115"}, "parsed_data": {"reporting_owner": "Mertz Elinor", "role": "Other", "transactions": []}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "NFLX", "form_type": "4", "filed_at": "2026-04-02", "accession_no": "0001082906-26-000012", "url": "https://www.sec.gov/Archives/edgar/data/1065280/000108290626000012/xslF345X06/form4.xml", "ingested_at": "2026-04-08T12:48:36.812885"}, "parsed_data": {"reporting_owner": "Hoag Jay C", "role": "Other", "transactions": []}, "raw_text": "XML_PARSED_SUCCESSFULLY"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_PANW.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_PANW.jsonl new file mode 100644 index 0000000..74db091 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_PANW.jsonl @@ -0,0 +1,2 @@ +{"metadata": {"ticker": "PANW", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001882285-26-000007", "url": "https://www.sec.gov/Archives/edgar/data/1327567/000188228526000007/xslF345X06/ownership.xml", "ingested_at": "2026-04-08T12:48:52.842465"}, "parsed_data": {"reporting_owner": "Paul Josh D.", "role": "Chief Accounting Officer", "transactions": [{"date": "2026-04-01", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 947.0, "price": 160.32, "total_value": 151823.03999999998, "post_transaction_shares": 84236.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 1100.0, "price": 161.4, "total_value": 177540.0, "post_transaction_shares": 83136.0, "is_10b5_1_planned": true}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "PANW", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001852540-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/1327567/000185254026000002/xslF345X06/ownership.xml", "ingested_at": "2026-04-08T12:48:53.042265"}, "parsed_data": {"reporting_owner": "Golechha Dipak", "role": "EVP, Chief Financial Officer", "transactions": [{"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 200.0, "price": 157.81, "total_value": 31562.0, "post_transaction_shares": 155050.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 1300.0, "price": 160.039, "total_value": 208050.69999999998, "post_transaction_shares": 153750.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 3500.0, "price": 160.704, "total_value": 562464.0, "post_transaction_shares": 150250.0, "is_10b5_1_planned": true}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_QCOM.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_QCOM.jsonl new file mode 100644 index 0000000..a7de1b0 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_QCOM.jsonl @@ -0,0 +1,3 @@ +{"metadata": {"ticker": "QCOM", "form_type": "4", "filed_at": "2026-04-02", "accession_no": "0000804328-26-000051", "url": "https://www.sec.gov/Archives/edgar/data/804328/000080432826000051/xslF345X06/edgardoc.xml", "ingested_at": "2026-04-08T12:48:39.267926"}, "parsed_data": {"reporting_owner": "Grech Patricia Y", "role": "SVP, Chief Accounting Officer", "transactions": [{"date": "2026-04-02", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 85.0, "price": 125.5, "total_value": 10667.5, "post_transaction_shares": 192.0, "is_10b5_1_planned": true}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "QCOM", "form_type": "4", "filed_at": "2026-04-02", "accession_no": "0000804328-26-000049", "url": "https://www.sec.gov/Archives/edgar/data/804328/000080432826000049/xslF345X06/edgardoc.xml", "ingested_at": "2026-04-08T12:48:39.472942"}, "parsed_data": {"reporting_owner": "MCLAUGHLIN MARK D", "role": "Other", "transactions": [{"date": "2026-03-31", "code": "A", "direction": "OTHER (A)", "shares": 538.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 12849.8312, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "QCOM", "form_type": "4", "filed_at": "2026-04-02", "accession_no": "0000804328-26-000048", "url": "https://www.sec.gov/Archives/edgar/data/804328/000080432826000048/xslF345X06/edgardoc.xml", "ingested_at": "2026-04-08T12:48:39.683945"}, "parsed_data": {"reporting_owner": "TRICOIRE JEAN-PASCAL", "role": "Other", "transactions": [{"date": "2026-03-31", "code": "A", "direction": "OTHER (A)", "shares": 262.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 13481.4716, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_REGN.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_REGN.jsonl new file mode 100644 index 0000000..f693d3e --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_REGN.jsonl @@ -0,0 +1,2 @@ +{"metadata": {"ticker": "REGN", "form_type": "8-K", "filed_at": "2026-04-08", "accession_no": "0001104659-26-040661", "url": "https://www.sec.gov/Archives/edgar/data/872589/000110465926040661/tm2611354d1_8k.htm", "ingested_at": "2026-04-08T12:48:54.660815"}, "parsed_data": {"is_chunked": true, "item_chunks": {"2.02": "Item 2.02.** | **Results of Operations and Financial Condition.** |\n\nRegeneron Pharmaceuticals, Inc. (“Regeneron”\nor the “Company”) currently expects that its financial results calculated in accordance with U.S. generally accepted\naccounting principles (“GAAP”) and its non-GAAP financial results for the first quarter 2026 will include an acquired\nin-process research and development (“IPR&D”) charge of approximately $102 million on a pre-tax basis. This charge\nprimarily relates to premium on equity securities purchased, as well as development milestone and up-front payments, in connection with\ncollaboration and licensing agreements. The acquired IPR&D charge is expected to negatively impact each of GAAP and non-GAAP net income\nper diluted share for the first quarter 2026 by approximately $0.81.\n\nAcquired IPR&D charges may include IPR&D\nacquired in connection with asset acquisitions as well as up-front, opt-in, certain development milestone payments, and premiums paid\non equity securities related to collaboration and licensing agreements. Regeneron does not forecast such acquired IPR&D charges due\nto the uncertainty of the future occurrence, magnitude, and timing of these transactions in any given period.\n\nRegeneron’s results for the first quarter\n2026 have not been finalized and are subject to Regeneron’s financial statement closing procedures. There can be no assurance that\nactual results will not differ from the preliminary (unaudited) estimates described herein.\n\nThe information included in this Current Report\non Form 8-K shall not be deemed “filed” for purposes of Section 18 of the Securities Exchange Act of 1934, as amended,\nnor shall such information be deemed incorporated by reference in any filing under the Securities Act of 1933, as amended, except as shall\nbe expressly set forth by specific reference in such a filing.\n\n***Note\nRegarding Forward-Looking Statements***\n\n*This Current Report\non Form 8-K (this “Report”) includes forward-looking statements that involve risks and uncertainties relating\nto future events and the future performance of Regeneron Pharmaceuticals, Inc. (“Regeneron” or the “Company”),\nand actual events or results may differ materially from these forward-looking statements. Words such as “anticipate,” “expect,”\n“intend,” “plan,” “believe,” “seek,” “estimate,” variations of such words,\nand similar expressions are intended to identify such forward-looking statements, although not all forward-looking statements contain\nthese identifying words. These statements concern, and these risks and uncertainties include, among others, Regeneron’s expected\nacquired in-process research and development charge for the quarterly period ended March 31, 2026 and its expected impact on GAAP\nand non-GAAP net income per diluted share for this period as discussed in this Report. A more complete description of these and other\nmaterial risks can be found in Regeneron’s filings with the U.S. Securities and Exchange Commission. Any forward-looking statements\nare made based on management’s current beliefs and judgment, and the reader is cautioned not to rely on any forward-looking statements\nmade by Regeneron. Regeneron does not undertake any obligation to update (publicly or otherwise) any forward-looking statement, including\nwithout limitation any financial projection or guidance, whether as a result of new information, future events, or otherwise.*\n\n***Note Regarding Non-GAAP Financial Measures***\n\n*This Report references non-GAAP net income\nper diluted share, which is a financial measure that is not calculated in accordance with U.S. Generally Accepted Accounting Principles\n(“GAAP”). This non-GAAP financial measure is computed by excluding certain non-cash and/or other items from the related\nGAAP financial measure. The Company also includes a non-GAAP adjustment for the estimated income tax effect of reconciling items. The\nCompany makes such adjustments for items the Company does not view as useful in evaluating its operating performance. Management uses\nthis and other non-GAAP measures for planning, budgeting, forecasting, assessing historical performance, and making financial and operational\ndecisions, and also provides forecasts to investors on this basis. Additionally, such non-GAAP measures provide investors with an enhanced\nunderstanding of the financial performance of the Company's core business operations. However, there are limitations in the use of such\nnon-GAAP financial measures as they exclude certain expenses that are recurring in nature. Furthermore, the Company's non-GAAP financial\nmeasures may not be comparable with non-GAAP information provided by other companies. Any non-GAAP financial measure presented by Regeneron\nshould be considered supplemental to, and not a substitute for, measures of financial performance prepared in accordance with GAAP.*\n\n**SIGNATURES**\n\nPursuant to the requirements of the Securities\nExchange Act of 1934, the registrant has duly caused this report to be signed on its behalf by the undersigned thereunto duly authorized.\n\n| | |\n| --- | --- |\n| | **REGENERON PHARMACEUTICALS, INC.** |\n| | |\n| | /s/ Joseph J. LaRosa |\n| | Joseph J. LaRosa |\n| | Executive Vice President, General Counsel and Secretary |\n\nDate: April 8, 2026"}}, "raw_text": "8K_PARSED_INTO_MARKDOWN_CHUNKS"} +{"metadata": {"ticker": "REGN", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001104659-26-039613", "url": "https://www.sec.gov/Archives/edgar/data/872589/000110465926039613/xslF345X06/tm2611142-1_4seq1.xml", "ingested_at": "2026-04-08T12:48:54.906167"}, "parsed_data": {"reporting_owner": "RYAN ARTHUR F", "role": "Other", "transactions": [{"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 1.0, "price": 771.32, "total_value": 771.32, "post_transaction_shares": 17702.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 3.0, "price": 772.76, "total_value": 2318.2799999999997, "post_transaction_shares": 17699.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 8.0, "price": 773.59, "total_value": 6188.72, "post_transaction_shares": 17691.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 8.0, "price": 774.58, "total_value": 6196.64, "post_transaction_shares": 17683.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 14.0, "price": 775.58, "total_value": 10858.12, "post_transaction_shares": 17669.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 13.0, "price": 776.62, "total_value": 10096.06, "post_transaction_shares": 17656.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 9.0, "price": 777.42, "total_value": 6996.78, "post_transaction_shares": 17647.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 4.0, "price": 778.24, "total_value": 3112.96, "post_transaction_shares": 17643.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 40.0, "price": 779.71, "total_value": 31188.4, "post_transaction_shares": 17603.0, "is_10b5_1_planned": true}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_SBUX.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_SBUX.jsonl new file mode 100644 index 0000000..632a173 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_SBUX.jsonl @@ -0,0 +1 @@ +{"metadata": {"ticker": "SBUX", "form_type": "8-K", "filed_at": "2026-04-02", "accession_no": "0000829224-26-000064", "url": "https://www.sec.gov/Archives/edgar/data/829224/000082922426000064/sbux-20260402.htm", "ingested_at": "2026-04-08T12:48:52.264984"}, "parsed_data": {"is_chunked": true, "item_chunks": {"7.01": "Item 7.01 Regulation FD Disclosure.\n\nAs previously disclosed on November 3, 2025, Starbucks entered an agreement to form a joint venture with Boyu Capital. On April 2, 2026, Starbucks announced that, following the satisfaction of all necessary closing conditions, it completed the transaction. Pursuant to the transaction, funds managed by Boyu Capital have acquired a 60% interest in Starbucks retail operations in China. Starbucks retains a 40% interest and will serve as the owner and licensor of the Starbucks global brand.\n\nA copy of the press release issued is furnished as Exhibit 99.1 to this Form 8-K.\n\nThe information contained in Item 7.01 of this report, including the information in Exhibit 99.1, is furnished pursuant to Item 7.01 of Form 8-K and shall not be deemed “filed” for the purposes of Section 18 of the Securities Exchange Act of 1934, as amended, or otherwise subject to the liabilities of that section. Furthermore, the information in Item 7.01 of this report, including the information in Exhibit 99.1 attached to this report, shall not be deemed to be incorporated by reference in the filings of Starbucks Corporation under the Securities Act of 1933, as amended.", "9.01": "Item 9.01Financial Statements and Exhibits.\n\n(d) Exhibits.\n\n| | | | | | | | | |\n| --- | --- | --- | --- | --- | --- | --- | --- | --- |\n| | | | | | | | | |\n| Exhibit No. | | | | | | Description | | |\n| 99.1 | | | | | | Press Release, dated April 2, 2026 | | |\n| 104 | | | | | | Cover Page Interactive Data File (formatted as inline XBRL) | | |\n\n---"}}, "raw_text": "8K_PARSED_INTO_MARKDOWN_CHUNKS"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_TSLA.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_TSLA.jsonl new file mode 100644 index 0000000..e7df39a --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_TSLA.jsonl @@ -0,0 +1,3 @@ +{"metadata": {"ticker": "TSLA", "form_type": "4", "filed_at": "2026-04-02", "accession_no": "0001972928-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/1318605/000197292826000002/xslF345X06/edgardoc.xml", "ingested_at": "2026-04-08T12:48:31.110524"}, "parsed_data": {"reporting_owner": "Zhu Xiaotong", "role": "SVP", "transactions": [{"date": "2026-03-31", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 20000.0, "price": 20.57, "total_value": 411400.0, "post_transaction_shares": 20000.0, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "TSLA", "form_type": "8-K", "filed_at": "2026-04-02", "accession_no": "0001628280-26-022956", "url": "https://www.sec.gov/Archives/edgar/data/1318605/000162828026022956/tsla-20260402.htm", "ingested_at": "2026-04-08T12:48:31.313708"}, "parsed_data": {"is_chunked": true, "item_chunks": {"2.02": "Item 2.02 Results of Operations and Financial Condition.\n\nOn April 2, 2026, Tesla, Inc. published the press release which is attached hereto as Exhibit 99.1 and is incorporated herein by reference.\n\nThis information is intended to be furnished under Item 2.02 of Form 8-K and shall not be deemed “filed” for purposes of Section 18 of the Securities Exchange Act of 1934, as amended (the “Exchange Act”), or incorporated by reference in any filing under the Securities Act of 1933, as amended, or the Exchange Act as shall be expressly set forth by specific reference in such a filing.", "9.01": "Item 9.01 Financial Statements and Exhibits.\n\n(d)Exhibits.\n\n| | | | | | | | | |\n| --- | --- | --- | --- | --- | --- | --- | --- | --- |\n| | | | | | | | | |\n| Exhibit No. | | | | | | Description | | |\n| | | | | | | | | |\n| 99.1 | | | | | | Press release of Tesla, Inc., dated April 2, 2026. | | |\n| 104 | | | | | | Cover Page Interactive Data File (embedded within the Inline XBRL document). | | |\n\n---"}}, "raw_text": "8K_PARSED_INTO_MARKDOWN_CHUNKS"} +{"metadata": {"ticker": "TSLA", "form_type": "4", "filed_at": "2026-04-01", "accession_no": "0001104659-26-038682", "url": "https://www.sec.gov/Archives/edgar/data/1318605/000110465926038682/xslF345X06/tm2610684-1_4seq1.xml", "ingested_at": "2026-04-08T12:48:31.571595"}, "parsed_data": {"reporting_owner": "Wilson-Thompson Kathleen", "role": "Other", "transactions": [{"date": "2026-03-30", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 40000.0, "price": 14.99, "total_value": 599600.0, "post_transaction_shares": 59669.0, "is_10b5_1_planned": true}, {"date": "2026-03-30", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 2000.0, "price": 352.833, "total_value": 705666.0, "post_transaction_shares": 57669.0, "is_10b5_1_planned": true}, {"date": "2026-03-30", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 1640.0, "price": 353.658, "total_value": 579999.12, "post_transaction_shares": 56029.0, "is_10b5_1_planned": true}, {"date": "2026-03-30", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 1800.0, "price": 354.802, "total_value": 638643.6000000001, "post_transaction_shares": 54229.0, "is_10b5_1_planned": true}, {"date": "2026-03-30", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 2481.0, "price": 355.644, "total_value": 882352.764, "post_transaction_shares": 51748.0, "is_10b5_1_planned": true}, {"date": "2026-03-30", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 2360.0, "price": 356.794, "total_value": 842033.84, "post_transaction_shares": 49388.0, "is_10b5_1_planned": true}, {"date": "2026-03-30", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 1120.0, "price": 357.839, "total_value": 400779.68, "post_transaction_shares": 48268.0, "is_10b5_1_planned": true}, {"date": "2026-03-30", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 520.0, "price": 358.77, "total_value": 186560.4, "post_transaction_shares": 47748.0, "is_10b5_1_planned": true}, {"date": "2026-03-30", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 1880.0, "price": 360.181, "total_value": 677140.2799999999, "post_transaction_shares": 45868.0, "is_10b5_1_planned": true}, {"date": "2026-03-30", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 1000.0, "price": 361.035, "total_value": 361035.0, "post_transaction_shares": 44868.0, "is_10b5_1_planned": true}, {"date": "2026-03-30", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 2320.0, "price": 362.142, "total_value": 840169.44, "post_transaction_shares": 42548.0, "is_10b5_1_planned": true}, {"date": "2026-03-30", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 4001.0, "price": 363.083, "total_value": 1452695.083, "post_transaction_shares": 38547.0, "is_10b5_1_planned": true}, {"date": "2026-03-30", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 3927.0, "price": 363.947, "total_value": 1429219.869, "post_transaction_shares": 34620.0, "is_10b5_1_planned": true}, {"date": "2026-03-30", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 560.0, "price": 364.888, "total_value": 204337.28, "post_transaction_shares": 34060.0, "is_10b5_1_planned": true}, {"date": "2026-03-30", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 120.0, "price": 365.897, "total_value": 43907.64, "post_transaction_shares": 33940.0, "is_10b5_1_planned": true}, {"date": "2026-03-30", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 80.0, "price": 366.855, "total_value": 29348.4, "post_transaction_shares": 33860.0, "is_10b5_1_planned": true}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_VRTX.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_VRTX.jsonl new file mode 100644 index 0000000..2ef2f08 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-08/raw_VRTX.jsonl @@ -0,0 +1 @@ +{"metadata": {"ticker": "VRTX", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0000875320-26-000157", "url": "https://www.sec.gov/Archives/edgar/data/875320/000087532026000157/xslF345X06/wk-form4_1775249628.xml", "ingested_at": "2026-04-08T12:48:51.663358"}, "parsed_data": {"reporting_owner": "Liu Joy", "role": "EVP and Chief Legal Officer", "transactions": [{"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 978.0, "price": 449.17, "total_value": 439288.26, "post_transaction_shares": 21833.0, "is_10b5_1_planned": true}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/AAPL.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/AAPL.jsonl new file mode 100644 index 0000000..3830839 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/AAPL.jsonl @@ -0,0 +1,3 @@ +{"metadata": {"ticker": "AAPL", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001140361-26-013192", "url": "https://www.sec.gov/Archives/edgar/data/320193/000114036126013192/xslF345X06/form4.xml", "ingested_at": "2026-04-09T14:35:15.028367"}, "parsed_data": {"reporting_owner": "O'BRIEN DEIRDRE", "role": "Senior Vice President", "transactions": [{"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 64317.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 201127.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 34315.0, "price": 255.63, "total_value": 8771943.45, "post_transaction_shares": 166812.0, "is_10b5_1_planned": true}, {"date": "2026-04-02", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 20338.0, "price": 255.12, "total_value": 5188630.5600000005, "post_transaction_shares": 146474.0, "is_10b5_1_planned": true}, {"date": "2026-04-02", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 9664.0, "price": 255.82, "total_value": 2472244.48, "post_transaction_shares": 136810.0, "is_10b5_1_planned": true}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "AAPL", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001140361-26-013191", "url": "https://www.sec.gov/Archives/edgar/data/320193/000114036126013191/xslF345X06/form4.xml", "ingested_at": "2026-04-09T14:35:15.222498"}, "parsed_data": {"reporting_owner": "Khan Sabih", "role": "COO", "transactions": [{"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 64317.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 1107212.0, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 33317.0, "price": 255.63, "total_value": 8516824.709999999, "post_transaction_shares": 1073895.0, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "AAPL", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001140361-26-013190", "url": "https://www.sec.gov/Archives/edgar/data/320193/000114036126013190/xslF345X06/form4.xml", "ingested_at": "2026-04-09T14:35:15.417304"}, "parsed_data": {"reporting_owner": "COOK TIMOTHY D", "role": "Chief Executive Officer", "transactions": [{"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 131576.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 3411994.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 66627.0, "price": 255.63, "total_value": 17031860.009999998, "post_transaction_shares": 3345367.0, "is_10b5_1_planned": true}, {"date": "2026-04-02", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 5087.0, "price": 251.25, "total_value": 1278108.75, "post_transaction_shares": 3340280.0, "is_10b5_1_planned": true}, {"date": "2026-04-02", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 9147.0, "price": 252.11, "total_value": 2306050.17, "post_transaction_shares": 3331133.0, "is_10b5_1_planned": true}, {"date": "2026-04-02", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 1878.0, "price": 253.13, "total_value": 475378.14, "post_transaction_shares": 3329255.0, "is_10b5_1_planned": true}, {"date": "2026-04-02", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 16083.0, "price": 254.37, "total_value": 4091032.71, "post_transaction_shares": 3313172.0, "is_10b5_1_planned": true}, {"date": "2026-04-02", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 28188.0, "price": 255.17, "total_value": 7192731.96, "post_transaction_shares": 3284984.0, "is_10b5_1_planned": true}, {"date": "2026-04-02", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 4566.0, "price": 256.0, "total_value": 1168896.0, "post_transaction_shares": 3280418.0, "is_10b5_1_planned": true}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/ADI.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/ADI.jsonl new file mode 100644 index 0000000..b4100fd --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/ADI.jsonl @@ -0,0 +1 @@ +{"metadata": {"ticker": "ADI", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001201872-26-000008", "url": "https://www.sec.gov/Archives/edgar/data/6281/000120187226000008/xslF345X06/wk-form4_1775247205.xml", "ingested_at": "2026-04-09T14:35:36.550448"}, "parsed_data": {"reporting_owner": "ROCHE VINCENT", "role": "Chair & CEO", "transactions": [{"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 10000.0, "price": 94.41, "total_value": 944100.0, "post_transaction_shares": 177825.875, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 10000.0, "price": 318.14, "total_value": 3181400.0, "post_transaction_shares": 167825.875, "is_10b5_1_planned": true}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/AMAT.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/AMAT.jsonl new file mode 100644 index 0000000..15047e9 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/AMAT.jsonl @@ -0,0 +1 @@ +{"metadata": {"ticker": "AMAT", "form_type": "4", "filed_at": "2026-04-02", "accession_no": "0001628280-26-023379", "url": "https://www.sec.gov/Archives/edgar/data/6951/000162828026023379/xslF345X06/wk-form4_1775169858.xml", "ingested_at": "2026-04-09T14:35:30.921699"}, "parsed_data": {"reporting_owner": "Sanders Adam", "role": "Corp. Controller & CAO", "transactions": [{"date": "2026-04-01", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 125.0, "price": 353.8, "total_value": 44225.0, "post_transaction_shares": 4548.0, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/AMD.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/AMD.jsonl new file mode 100644 index 0000000..68ebba4 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/AMD.jsonl @@ -0,0 +1 @@ +{"metadata": {"ticker": "AMD", "form_type": "4", "filed_at": "2026-04-08", "accession_no": "0000002488-26-000064", "url": "https://www.sec.gov/Archives/edgar/data/2488/000000248826000064/xslF345X06/wk-form4_1775679123.xml", "ingested_at": "2026-04-09T14:35:22.976531"}, "parsed_data": {"reporting_owner": "Papermaster Mark D", "role": "Chief Technology Officer & EVP", "transactions": [{"date": "2026-04-06", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 3293.0, "price": 225.0, "total_value": 740925.0, "post_transaction_shares": 1294466.0, "is_10b5_1_planned": true}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/AMZN.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/AMZN.jsonl new file mode 100644 index 0000000..722c992 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/AMZN.jsonl @@ -0,0 +1,2 @@ +{"metadata": {"ticker": "AMZN", "form_type": "8-K", "filed_at": "2026-04-09", "accession_no": "0001104659-26-041034", "url": "https://www.sec.gov/Archives/edgar/data/1018724/000110465926041034/tm263815d2_8k.htm", "ingested_at": "2026-04-09T14:35:16.491691"}, "parsed_data": {"is_chunked": true, "item_chunks": {"7.01": "ITEM 7.01. REGULATION FD DISCLOSURE.** | **3** |\n| | |\n| **ITEM 9.01. FINANCIAL STATEMENTS AND EXHIBITS.** | **3** |\n| | |\n| **SIGNATURES** | **4** |\n| | |\n| EXHIBIT 99.1 | |\n| | |\n| EXHIBIT 99.2 | |\n\n2\n\nTable of Contents\n\n**ITEM 7.01.****REGULATION\nFD DISCLOSURE.**\n\nThe Company’s\nLetter to Shareholders, which accompanies its Annual Report for the Year Ended December 31, 2025, is attached as Exhibit 99.1, and a\nreconciliation of a non-GAAP financial measure included in the Letter to Shareholders to the most directly comparable financial\nmeasure calculated and presented in accordance with GAAP is included as Exhibit 99.2.\n\n**ITEM 9.01. FINANCIAL STATEMENTS AND EXHIBITS.**\n\n***(d) Exhibits.***\n\n| | |\n| --- | --- |\n| **Exhibit** **Number** | **Description** |\n| | |\n| 99.1 | 2025 Letter to Shareholders. |\n| 99.2 | Reconciliation of Non-GAAP Financial Measure. |\n| 104 | The cover page from this Current Report on Form 8-K, formatted in Inline XBRL (included as Exhibit 101). |\n\n3\n\nTable of Contents\n\n**SIGNATURES**\n\nPursuant to the requirements of the Securities Exchange Act of 1934, the registrant has duly caused this report to be signed on its behalf by the\nundersigned hereunto duly authorized.\n\n| | | |\n| --- | --- | --- |\n| | AMAZON.COM, INC. (REGISTRANT) | |\n| | | |\n| | By: | /s/ Susan K. Jong |\n| | | **Susan K. Jong** |\n| | | **Vice President and Secretary** |\n\nDated: April 9, 2026\n\n4"}}, "raw_text": "8K_PARSED_INTO_MARKDOWN_CHUNKS"} +{"metadata": {"ticker": "AMZN", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001018724-26-000010", "url": "https://www.sec.gov/Archives/edgar/data/1018724/000101872426000010/xslF345X06/wk-form4_1775248886.xml", "ingested_at": "2026-04-09T14:35:16.734993"}, "parsed_data": {"reporting_owner": "Herrington Douglas J", "role": "CEO Worldwide Amazon Stores", "transactions": [{"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 1000.0, "price": 210.5, "total_value": 210500.0, "post_transaction_shares": 520361.0, "is_10b5_1_planned": true}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/AVGO.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/AVGO.jsonl new file mode 100644 index 0000000..a9822ea --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/AVGO.jsonl @@ -0,0 +1,2 @@ +{"metadata": {"ticker": "AVGO", "form_type": "8-K", "filed_at": "2026-04-06", "accession_no": "0001193125-26-144028", "url": "https://www.sec.gov/Archives/edgar/data/1730168/000119312526144028/d87999d8k.htm", "ingested_at": "2026-04-09T14:35:18.906268"}, "parsed_data": {"is_chunked": true, "item_chunks": {"8.01": "Item 8.01 | Other Events. |\n\nBroadcom Inc. (“Broadcom”) and Google LLC (“Google”) have entered into a Long Term Agreement for Broadcom to develop and supply custom Tensor Processing Units (“TPUs”) for Google’s future generations of TPUs and a Supply Assurance Agreement for Broadcom to supply networking and other components to be used in Google’s next-generation AI racks through up to 2031.\n\nSeparately, Broadcom, Google and Anthropic PBC (“Anthropic”) have expanded their current strategic collaboration under which Anthropic, beginning in 2027, will access through Broadcom approximately 3.5 gigawatts as part of the multiple gigawatts of next generation TPU-based AI compute capacity committed by Anthropic. The consumption of such expanded AI compute capacity by Anthropic is dependent on Anthropic’s continued commercial success. In connection with this deployment, the parties are in discussions with certain operational and financial partners.\n\nCautionary Note Regarding Forward-Looking Statements\n\nThis Current Report on Form 8-K contains forward-looking statements (including within the meaning of Section 21E of the Securities Exchange Act of 1934, as amended, and Section 27A of the Securities Act of 1933, as amended). These forward-looking statements are based on current expectations and beliefs of Broadcom’s management, current information available to Broadcom’s management, and current market trends and market conditions, and involve risks and uncertainties that may cause actual results to differ materially from those contained in the forward-looking statements. Accordingly, undue reliance should not be placed on such statements. All forward-looking statements are qualified in their entirety by reference to the risk factors discussed under the heading “Risk Factors” in Broadcom’s Annual Report on Form 10-K for the year ended November 2, 2025, Quarterly Report on Form 10-Q for the period ended February 1, 2026 and any subsequent reports that are filed with the Securities and Exchange Commission and include some important risk factors that may affect future results. Broadcom undertakes no intent or obligation to publicly update or revise the forward-looking statements made in this Current Report on Form 8-K, except as required by law.\n\n---"}}, "raw_text": "8K_PARSED_INTO_MARKDOWN_CHUNKS"} +{"metadata": {"ticker": "AVGO", "form_type": "8-K", "filed_at": "2026-04-02", "accession_no": "0001193125-26-140574", "url": "https://www.sec.gov/Archives/edgar/data/1730168/000119312526140574/d109450d8k.htm", "ingested_at": "2026-04-09T14:35:19.131239"}, "parsed_data": {"is_chunked": true, "item_chunks": {"5.02": "Item 5.02 | Departure of Directors or Certain Officers; Election of Directors; Appointment of Certain Officers; Compensatory Arrangements of Certain Officers. |\n\nChief Financial Officer Transition\n\nOn March 30, 2026, Kirsten M. Spears notified Broadcom Inc. (the “Company”) of her retirement and resigned from her position as Chief Financial Officer and Chief Accounting Officer of the Company, effective as of June 12, 2026.\n\nOn March 30, 2026, the Board of Directors of the Company (the “Board”) appointed Amie Thuener to succeed Ms. Spears as the Chief Financial Officer of the Company, effective as of June 12, 2026. The employment of Ms. Thuener with the Company is expected to commence on May 4, 2026 and she will assume the role of Chief Financial Officer following the retirement of Ms. Spears on June 12, 2026.\n\nMs. Thuener, age 51, has served as Vice President, Corporate Controller and Chief Accounting Officer of Alphabet Inc. since 2018. Ms. Thuener held several senior finance positions at Alphabet from 2013 to 2018, including as Vice President and Chief Accountant. Prior to joining Alphabet, Ms. Thuener was at PricewaterhouseCoopers LLP from 1996 to 2012 and held several senior management positions, including as Managing Director, Transaction Services. Ms. Thuener is a Certified Public Accountant and a Chartered Global Management Accountant.\n\nThere are no family relationships between Ms. Thuener and any director or executive officer of the Company as defined in Item 401(d) of Regulation S-K, and Ms. Thuener has no direct or indirect material interest in any transaction or proposed transaction required to be disclosed pursuant to Item 404(a) of Regulation S-K.\n\nKirsten M. Spears Transition and Consulting Agreement\n\nIn connection with the retirement of Ms. Spears, the Company entered into a transition and consulting agreement with Ms. Spears, dated as of April 1, 2026 (the “Transition Agreement”).\n\nThe Transition Agreement provides that, following the conclusion of Ms. Spears’ employment with the Company on June 12, 2026, she will provide consulting services to the Company, as reasonably requested by the Chief Executive Officer of the Company, until March 15, 2027, unless the consulting period terminates earlier in accordance with the terms of the Transition Agreement. During the consulting period, Ms. Spears’ outstanding equity awards will continue to vest in accordance with their terms (provided that the performance-based equity awards will in no event vest at a level exceeding target). Ms. Spears will not receive any other compensation during the consulting period. The Transition Agreement includes a general release of claims in favor of the Company.\n\nAmie Thuener Offer Letter and Equity Awards\n\nIn connection with her employment with the Company and appointment as Chief Financial Officer of the Company, effective as of June 12, 2026, the Company entered into an offer letter with Ms. Thuener, dated as of March 30, 2026, which sets forth the material terms of her employment and compensation (the “Offer Letter”).\n\nPursuant to the Offer Letter, Ms. Thuener will receive an annual base salary of $700,000 and will be eligible to participate in the Company’s annual performance bonus plan with a target bonus opportunity of 100% of her base salary. Ms. Thuener will also receive a $1,000,000 sign-on cash bonus, payable within 30 days following the commencement of her employment.\n\nThe Offer Letter further provides that, subject to the approval of the Compensation Committee of the Board and Ms. Thuener’s continued employment through the applicable grant date, Ms. Thuener will be granted equity awards under the Company’s 2012 Stock Incentive Plan consisting of (i) 50,000 restricted stock units (“RSUs”) and (ii) 50,000 performance stock units (“PSUs”) at target. The equity awards are expected to be granted on June 15, 2026.\n\nThe RSUs will vest in equal quarterly installments over a four-year period following the grant date, subject to Ms. Thuener’s continued employment through each applicable vesting date. The PSUs will vest annually over a four-year period across four overlapping performance periods (March 2, 2026 through March 1, 2027, March 2, 2026 through March 1, 2028, March 2, 2026 through March 1, 2029 and March 2, 2026 through March 1, 2030) based on the Company’s total stockholder return relative to the S&P 500 and the Company’s absolute total stockholder return for the applicable performance period, in each case subject to Ms. Thuener’s continued employment through the anniversary of the grant date immediately following the end of each applicable performance period. The maximum vesting for the PSUs is 200% of the total target number of shares. The equity awards will be subject to the other terms and conditions set forth in the Company’s 2012 Stock Incentive Plan and the applicable award agreements.\n\n---\n\nIn addition, Ms. Thuener is expected to enter into the Company’s standard form of indemnification and advancement agreement and a severance benefit agreement on terms and conditions materially consistent with those applicable to Ms. Spears pursuant to her severance benefit agreement, as described in the Company’s definitive proxy statement filed with the U.S. Securities and Exchange Commission on March 2, 2026.\n\n---"}}, "raw_text": "8K_PARSED_INTO_MARKDOWN_CHUNKS"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/BKNG.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/BKNG.jsonl new file mode 100644 index 0000000..00ba456 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/BKNG.jsonl @@ -0,0 +1,2 @@ +{"metadata": {"ticker": "BKNG", "form_type": "8-K", "filed_at": "2026-04-02", "accession_no": "0000950157-26-000465", "url": "https://www.sec.gov/Archives/edgar/data/1075531/000095015726000465/form8-k.htm", "ingested_at": "2026-04-09T14:35:31.714159"}, "parsed_data": {"is_chunked": true, "item_chunks": {"5.03": "Item 5.03. Amendments to Articles of incorporation or Bylaws; Change in Fiscal Year.\n\nOn April 2, 2026, Booking Holdings Inc. (the “Company”) filed an amendment to its Restated Certificate of Incorporation with the Delaware Secretary of State to effect the\npreviously announced twenty-five-for-one forward stock split of the Company’s common stock and to proportionately increase the number of shares of the Company’s authorized common stock from 1,000,000,000 to 25,000,000,000. The amendment, which became\neffective at 4:01 p.m. Eastern Time on April 2, 2026, is filed as Exhibit 3.1 to this Current Report on Form 8-K. Trading is expected to commence on a split-adjusted basis at market open on Monday, April 6, 2026.", "9.01": "Item 9.01. Financial Statements and Exhibits.\n\n| | | |\n| --- | --- | --- |\n| (d) Exhibits | | |\n| Exhibit Number | | Description |\n| | | |\n| 3.1 | | Amendment to Restated Certificate of Incorporation of Booking Holdings Inc., dated April 2, 2026. |\n| 104 | | Cover Page Interactive Data File - the cover page interactive data file does not appear in the Interactive Data File because its XBRL tags are embedded within the Inline XBRL document. |\n\n---"}}, "raw_text": "8K_PARSED_INTO_MARKDOWN_CHUNKS"} +{"metadata": {"ticker": "BKNG", "form_type": "8-K", "filed_at": "2026-04-02", "accession_no": "0001075531-26-000014", "url": "https://www.sec.gov/Archives/edgar/data/1075531/000107553126000014/bkng-20260402.htm", "ingested_at": "2026-04-09T14:35:31.981521"}, "parsed_data": {"is_chunked": true, "item_chunks": {"5.02": "Item 5.02. Departure of Directors or Certain Officers; Election of Directors; Appointment\n\nof Certain Officers; Compensatory Arrangements of Certain Officers.\n\nOn April 2, 2026, Booking Holdings Inc. (the \"Company\") announced that it has appointed Caroline Sullivan as its Senior Vice President, Chief Accounting Officer, and Controller effective as of April 29, 2026. Ms. Sullivan, age 57, served as Vice President, Procurement and Real Estate of Elevance Health, a health insurance company, from June 2025 to March 2026. Prior to this, Ms. Sullivan was Senior Vice President, Chief Accounting Officer and Corporate Controller at Moody's Corporation, a global risk assessment firm, from December 2018 to March 2025. Ms. Sullivan also served as Global Banking Controller of Bank of America from 2017 to 2018. Earlier in her career, she held various finance positions with Morgan Stanley and Allied Irish Bank. Ms. Sullivan began her career at Ernst and Young and is a Certified Public Accountant.\n\nIn connection with Ms. Sullivan's appointment, she and the Company entered into an employment agreement with, among others, the following terms:\n\n•an initial annual base salary of $525,000;\n\n•a target annual bonus of 75% of base salary;\n\n•a grant of restricted stock units (\"RSUs\") expected to be made in May 2026 with a grant date fair value of $1,000,000;\n\n•a grant of performance share units (\"PSUs\") expected to be made in March 2027 with a grant date fair value at target of $1,000,000;\n\n•a new hire grant of RSUs expected to be made in May 2026 with a grant date fair value of $1,000,000;\n\n•a signing bonus of $300,000; and\n\n•in the event of her termination without cause, subject to the execution of a release of claims, severance benefits including payments equal to one times her base salary and target annual bonus, a pro-rated portion of any earned bonus for the year of termination if employment is terminated after June 30 of the then current year, health benefits for a period of 12 months, and any earned bonus for a prior completed year that has not yet been paid.\n\nMs. Sullivan's RSUs and new hire RSUs will each vest in three equal annual installments on each of the first three anniversaries of the grant date, subject to her continuous service from the date of grant until the vesting date, with pro rata vesting upon a termination without cause or due to disability, and full vesting upon a termination due to death. Ms. Sullivan's PSU award will vest subject to such service and performance-based vesting provisions generally consistent with those applicable to similarly-situated executives who receive PSU grants in 2027. The awards will be subject to the terms of the respective award agreements for awards under the Company’s 1999 Omnibus Plan.\n\nIn connection with Ms. Sullivan's appointment, the Company and Ms. Sullivan have also entered into a Non-Competition and Non-Solicitation Agreement and an Employee Confidentiality and Assignment Agreement.\n\n---"}}, "raw_text": "8K_PARSED_INTO_MARKDOWN_CHUNKS"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/CDNS.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/CDNS.jsonl new file mode 100644 index 0000000..1269149 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/CDNS.jsonl @@ -0,0 +1 @@ +{"metadata": {"ticker": "CDNS", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0000813672-26-000040", "url": "https://www.sec.gov/Archives/edgar/data/813672/000081367226000040/xslF345X06/wk-form4_1775243708.xml", "ingested_at": "2026-04-09T14:35:38.462751"}, "parsed_data": {"reporting_owner": "Cunningham Paul", "role": "Sr. Vice President", "transactions": [{"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 1000.0, "price": 280.19, "total_value": 280190.0, "post_transaction_shares": 128586.0, "is_10b5_1_planned": true}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/CMCSA.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/CMCSA.jsonl new file mode 100644 index 0000000..0dd75c2 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/CMCSA.jsonl @@ -0,0 +1,6 @@ +{"metadata": {"ticker": "CMCSA", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001225208-26-004342", "url": "https://www.sec.gov/Archives/edgar/data/1166691/000122520826004342/xslF345X06/doc4.xml", "ingested_at": "2026-04-09T14:35:28.665936"}, "parsed_data": {"reporting_owner": "Murdock Daniel C.", "role": "EVP & Chief Accounting Officer", "transactions": [{"date": "2026-04-03", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 5268.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 64435.0497, "is_10b5_1_planned": false}, {"date": "2026-04-03", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 2073.0, "price": 27.93, "total_value": 57898.89, "post_transaction_shares": 62362.0497, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "CMCSA", "form_type": "4", "filed_at": "2026-04-02", "accession_no": "0001225208-26-004203", "url": "https://www.sec.gov/Archives/edgar/data/1166691/000122520826004203/xslF345X06/doc4.xml", "ingested_at": "2026-04-09T14:35:28.862239"}, "parsed_data": {"reporting_owner": "Smith Gordon", "role": "Other", "transactions": [{"date": "2026-03-31", "code": "A", "direction": "OTHER (A)", "shares": 1176.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 9045.0, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "CMCSA", "form_type": "4", "filed_at": "2026-04-02", "accession_no": "0001225208-26-004202", "url": "https://www.sec.gov/Archives/edgar/data/1166691/000122520826004202/xslF345X06/doc4.xml", "ingested_at": "2026-04-09T14:35:29.056337"}, "parsed_data": {"reporting_owner": "Honickman Jeffrey A", "role": "Other", "transactions": [{"date": "2026-03-31", "code": "A", "direction": "OTHER (A)", "shares": 1524.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 262583.021, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "CMCSA", "form_type": "4", "filed_at": "2026-04-02", "accession_no": "0001225208-26-004201", "url": "https://www.sec.gov/Archives/edgar/data/1166691/000122520826004201/xslF345X06/doc4.xml", "ingested_at": "2026-04-09T14:35:29.233609"}, "parsed_data": {"reporting_owner": "BREEN EDWARD D", "role": "Other", "transactions": [{"date": "2026-03-31", "code": "A", "direction": "OTHER (A)", "shares": 697.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 56522.277, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "CMCSA", "form_type": "4", "filed_at": "2026-04-02", "accession_no": "0001225208-26-004200", "url": "https://www.sec.gov/Archives/edgar/data/1166691/000122520826004200/xslF345X06/doc4.xml", "ingested_at": "2026-04-09T14:35:29.413496"}, "parsed_data": {"reporting_owner": "Brady Louise F.", "role": "Other", "transactions": [{"date": "2026-03-31", "code": "A", "direction": "OTHER (A)", "shares": 1176.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 32682.89, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "CMCSA", "form_type": "4", "filed_at": "2026-04-02", "accession_no": "0001225208-26-004199", "url": "https://www.sec.gov/Archives/edgar/data/1166691/000122520826004199/xslF345X06/doc4.xml", "ingested_at": "2026-04-09T14:35:29.591730"}, "parsed_data": {"reporting_owner": "Baltimore Thomas J Jr", "role": "Other", "transactions": [{"date": "2026-03-31", "code": "A", "direction": "OTHER (A)", "shares": 1176.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 39043.493, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/CRWD.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/CRWD.jsonl new file mode 100644 index 0000000..bc24c21 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/CRWD.jsonl @@ -0,0 +1 @@ +{"metadata": {"ticker": "CRWD", "form_type": "8-K", "filed_at": "2026-04-06", "accession_no": "0001535527-26-000013", "url": "https://www.sec.gov/Archives/edgar/data/1535527/000153552726000013/crwd-20260406.htm", "ingested_at": "2026-04-09T14:35:40.512509"}, "parsed_data": {"is_chunked": true, "item_chunks": {"8.01": "Item 8.01 Other Events.\n\nOn April 6, 2026, the Company announced that its Board of Directors has approved the repurchase of up to an additional $500 million of the Company’s common stock, bringing the Company’s total repurchase authorization to $1.5 billion (together, the “Share Repurchase Program”). Under the Share Repurchase Program, the Company has repurchased 413,130 shares of its outstanding Class A common stock at an average price of $364.57 per share, for an aggregate purchase price of $150.6 million.\n\nThe Share Repurchase Program does not have a fixed expiration date and does not obligate the Company to acquire any specific number of shares. Repurchases may be made from time to time using a variety of methods, including open market purchases, privately negotiated transactions, Rule 10b5-1 trading plans and other means. The timing, manner, price and amount of any repurchases will be determined by the Company in its discretion and will depend on a variety of factors, including legal requirements, price and economic and market conditions. The Company currently expects to use the Share Repurchase Program opportunistically depending on the market price of the common stock and other factors, and there can be no assurance that any shares will be repurchased under the Share Repurchase Program.\n\nForward-Looking Statements\n\nThis Form 8-K contains forward-looking statements that involve risks and uncertainties, including statements regarding the Share Repurchase Program and the factors that will impact the amount and timing of purchases, if any, thereunder. A number of factors could cause outcomes to differ materially from our statements, including the risks and uncertainties included in our filings with the Securities and Exchange Commission, particularly under the caption “Risk Factors” in our most recently filed Annual Report on Form 10-K. Accordingly, you should not place undue reliance on these forward-looking statements. All forward-looking statements are based on information currently available to us, and we do not assume any obligation to update any statement to reflect changes in circumstances or our expectations.\n\n2\n\n---", "9.01": "Item 9.01 Financial Statements and Exhibits.\n\n(d) Exhibits\n\n| | | | | | | | | |\n| --- | --- | --- | --- | --- | --- | --- | --- | --- |\n| | | | | | | | | |\n| Exhibit Number | | | | | | Description of Exhibit | | |\n| 99.1 | | | | | | Press release dated April 6, 2026 | | |\n| 104 | | | | | | Cover Page Interactive Data File - the cover page XBRL tags are embedded within the Inline XBRL document | | |\n\n3\n\n---"}}, "raw_text": "8K_PARSED_INTO_MARKDOWN_CHUNKS"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/CSCO.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/CSCO.jsonl new file mode 100644 index 0000000..b70293d --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/CSCO.jsonl @@ -0,0 +1,2 @@ +{"metadata": {"ticker": "CSCO", "form_type": "4", "filed_at": "2026-04-07", "accession_no": "0000858877-26-000052", "url": "https://www.sec.gov/Archives/edgar/data/858877/000085887726000052/xslF345X06/wk-form4_1775592372.xml", "ingested_at": "2026-04-09T14:35:23.463961"}, "parsed_data": {"reporting_owner": "Shimer Peter A", "role": "Other", "transactions": [{"date": "2026-04-06", "code": "A", "direction": "OTHER (A)", "shares": 2333.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 2333.0, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "CSCO", "form_type": "8-K", "filed_at": "2026-04-06", "accession_no": "0000858877-26-000048", "url": "https://www.sec.gov/Archives/edgar/data/858877/000085887726000048/csco-20260331.htm", "ingested_at": "2026-04-09T14:35:23.641536"}, "parsed_data": {"is_chunked": true, "item_chunks": {"5.02": "Item 5.02. | | | Departure of Directors or Certain Officers; Election of Directors; Appointment of Certain Officers; Compensatory Arrangements of Certain Officers. | | |\n\nDeparture of Director\n\nOn March 31, 2026, in light of the increased time and focus required of his new role as Chief Executive Officer of Verizon Communications Inc., Daniel H. Schulman notified Cisco Systems, Inc. (“Cisco”) of his decision to resign from the Board of Directors (\"Board\") of Cisco effective May 21, 2026.\n\nAppointment of Director\n\nOn April 4, 2026, the Board of Cisco appointed Peter A. Shimer as a member of the Board effective April 6, 2026. In connection with his appointment, the Board determined that Mr. Shimer is “independent” under the applicable listing standards of The Nasdaq Stock Market LLC. The Board has also appointed Mr. Shimer to serve as a member of the Audit Committee of the Board.\n\nIn connection with his service as a director, Mr. Shimer will receive Cisco’s standard non-employee director cash and equity compensation. Mr. Shimer will receive a pro rata portion of the $105,000 annual cash retainer, paid quarterly in arrears, for his service through the remaining portion of the year ending at Cisco's 2026 annual meeting of stockholders (the \"2026 Annual Meeting\"). Mr. Shimer will also receive a pro rata portion of the Audit Committee member annual cash retainer fees, paid quarterly in arrears, for service on such committee through the remaining portion of the year ending at the 2026 Annual Meeting. Non-employee directors may instead elect to receive the annual cash retainer, committee cash retainer fees or other cash fees in fully vested shares of Cisco common stock, fully vested deferred stock units that would be settled in shares after the non-employee director leaves the Board, or a deferred cash payment under the Cisco Systems, Inc. Deferred Compensation Plan. Upon his appointment, pursuant to the Board’s equity grant policy for non-employee directors, Mr. Shimer automatically received a fully vested initial non-employee director equity award under Cisco’s 2005 Stock Incentive Plan with a grant date fair value equal to a pro rata portion of $270,000 based on the portion of the year of his board service. Non-employee directors may elect to defer receipt of the equity award such that the award would be settled in shares after the non-employee director leaves the Board. Non-employee directors are also eligible to participate in Cisco’s charitable matching gifts program (for calendar year 2026, the maximum match amount is $25,000 for Cisco's non-employee directors).\n\nIn connection with his appointment, Mr. Shimer has entered into Cisco’s standard form of Indemnity Agreement with Cisco which provides for indemnification of an indemnitee to the fullest extent permitted by law. The foregoing description of the Indemnity Agreement does not purport to be complete and is qualified in its entirety by the full text of the form of Indemnity Agreement, which was filed with the Securities and Exchange Commission on January 25, 2021 as Exhibit 10.1 to Cisco’s Current Report on Form 8-K.\n\n---"}}, "raw_text": "8K_PARSED_INTO_MARKDOWN_CHUNKS"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/CSX.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/CSX.jsonl new file mode 100644 index 0000000..540622e --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/CSX.jsonl @@ -0,0 +1 @@ +{"metadata": {"ticker": "CSX", "form_type": "4", "filed_at": "2026-04-02", "accession_no": "0001193125-26-140177", "url": "https://www.sec.gov/Archives/edgar/data/277948/000119312526140177/xslF345X06/ownership.xml", "ingested_at": "2026-04-09T14:35:39.473435"}, "parsed_data": {"reporting_owner": "ANGEL STEPHEN F", "role": "President & CEO", "transactions": []}, "raw_text": "XML_PARSED_SUCCESSFULLY"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/GOOGL.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/GOOGL.jsonl new file mode 100644 index 0000000..31706b8 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/GOOGL.jsonl @@ -0,0 +1,2 @@ +{"metadata": {"ticker": "GOOGL", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001193125-26-142372", "url": "https://www.sec.gov/Archives/edgar/data/1652044/000119312526142372/xslF345X06/ownership.xml", "ingested_at": "2026-04-09T14:35:17.511403"}, "parsed_data": {"reporting_owner": "O'Toole Amie Thuener", "role": "VP, Chief Accounting Officer", "transactions": [{"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 617.0, "price": 289.63, "total_value": 178701.71, "post_transaction_shares": 10093.0, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "GOOGL", "form_type": "8-K", "filed_at": "2026-04-02", "accession_no": "0001652044-26-000031", "url": "https://www.sec.gov/Archives/edgar/data/1652044/000165204426000031/goog-20260330.htm", "ingested_at": "2026-04-09T14:35:17.690647"}, "parsed_data": {"is_chunked": true, "item_chunks": {"5.02": "Item 5.02 Departure of Directors or Certain Officers; Election of Directors; Appointment of Certain Officers; Compensatory Arrangements of Certain Officers.\n\nOn March 30, 2026, Amie Thuener O'Toole notified Alphabet Inc. (the “Company”) of her resignation as Vice President, Corporate Controller and Principal Accounting Officer of the Company, effective April 9, 2026, to pursue another professional opportunity. Ms. O'Toole’s decision to resign did not result from any disagreement with the Company on any matter relating to the Company’s operations, policies, or practices.\n\n---"}}, "raw_text": "8K_PARSED_INTO_MARKDOWN_CHUNKS"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/HON.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/HON.jsonl new file mode 100644 index 0000000..e04e533 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/HON.jsonl @@ -0,0 +1,2 @@ +{"metadata": {"ticker": "HON", "form_type": "4", "filed_at": "2026-04-02", "accession_no": "0000773840-26-000025", "url": "https://www.sec.gov/Archives/edgar/data/773840/000077384026000025/xslF345X06/wk-form4_1775167050.xml", "ingested_at": "2026-04-09T14:35:27.962067"}, "parsed_data": {"reporting_owner": "Flint Deborah", "role": "Other", "transactions": []}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "HON", "form_type": "4", "filed_at": "2026-04-02", "accession_no": "0000773840-26-000024", "url": "https://www.sec.gov/Archives/edgar/data/773840/000077384026000024/xslF345X06/wk-form4_1775166995.xml", "ingested_at": "2026-04-09T14:35:28.141392"}, "parsed_data": {"reporting_owner": "ANGOVE DUNCAN", "role": "Other", "transactions": []}, "raw_text": "XML_PARSED_SUCCESSFULLY"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/INTC.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/INTC.jsonl new file mode 100644 index 0000000..ad3e55d --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/INTC.jsonl @@ -0,0 +1,2 @@ +{"metadata": {"ticker": "INTC", "form_type": "8-K", "filed_at": "2026-04-08", "accession_no": "0000050863-26-000072", "url": "https://www.sec.gov/Archives/edgar/data/50863/000005086326000072/intc-20260408.htm", "ingested_at": "2026-04-09T14:35:30.225494"}, "parsed_data": {"is_chunked": true, "item_chunks": {"8.01": "Item 8.01 Other Events\n\nOn April 8, 2026, Intel Corporation (“Intel”) repurchased from Apollo-managed funds and affiliates their 49% equity interest in the parties’ joint venture related to Intel’s Fab 34 in Ireland. The $14.2 billion repurchase price was financed by Intel with cash on hand and a bridge loan of $6.5 billion, which Intel intends to refinance, subject to market conditions. Intel owns 100% of the joint venture following the repurchase.\n\nThe joint venture was created and operated pursuant to agreements entered into by the parties in June 2024. At that time, Apollo-managed funds and affiliates acquired their 49% ownership interest in the joint venture and the parties entered into ancillary agreements with respect to Intel’s construction, commissioning, operation, management, maintenance, utilization and purchase of wafers produced in Fab 34. The repurchase of the joint venture interest by Intel was completed pursuant to an April 1, 2026 agreement between the parties, and Intel expects to terminate the various ancillary agreements that had governed the arrangement and wind up the joint venture.", "9.01": "Item 9.01 Financial Statements and Exhibits.\n\n(d) Exhibits.\n\nThe following exhibits are provided as part of this report:\n\n| | | | | | |\n| --- | --- | --- | --- | --- | --- |\n| | | | | | |\n| Exhibit Number | | | Description | | |\n| 104 | | | Cover Page Interactive Data File, formatted in Inline XBRL and included as Exhibit 101. | | |\n\n---"}}, "raw_text": "8K_PARSED_INTO_MARKDOWN_CHUNKS"} +{"metadata": {"ticker": "INTC", "form_type": "8-K", "filed_at": "2026-04-03", "accession_no": "0000050863-26-000069", "url": "https://www.sec.gov/Archives/edgar/data/50863/000005086326000069/intc-20260330.htm", "ingested_at": "2026-04-09T14:35:30.447636"}, "parsed_data": {"is_chunked": true, "item_chunks": {"5.02": "Item 5.02 Departure of Directors or Certain Officers; Election of Directors; Appointment of Certain Officers; Compensatory Arrangements of Certain Officers.\n\nOn March 30,2026, Intel Corporation determined that April Miller Boise, Intel’s Executive Vice President and Chief Legal Officer, will separate from Intel effective as of June 1, 2026. Upon her departure on June 1, 2026, Ms. Miller Boise will be entitled to severance benefits in accordance with the terms and conditions of the Intel Corporation Executive Severance Plan, as previously disclosed, in exchange for a release of claims in favor of Intel.", "9.01": "Item 9.01 Financial Statements and Exhibits.\n\n(d) Exhibits.\n\nThe following exhibits are provided as part of this report:\n\n| | | | | | |\n| --- | --- | --- | --- | --- | --- |\n| | | | | | |\n| Exhibit Number | | | Description | | |\n| 104 | | | Cover Page Interactive Data File, formatted in Inline XBRL and included as Exhibit 101. | | |\n\n---"}}, "raw_text": "8K_PARSED_INTO_MARKDOWN_CHUNKS"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/INTU.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/INTU.jsonl new file mode 100644 index 0000000..487814f --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/INTU.jsonl @@ -0,0 +1,6 @@ +{"metadata": {"ticker": "INTU", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001628280-26-023706", "url": "https://www.sec.gov/Archives/edgar/data/896878/000162828026023706/xslF345X06/wk-form4_1775249487.xml", "ingested_at": "2026-04-09T14:35:25.927869"}, "parsed_data": {"reporting_owner": "Goodarzi Sasan K", "role": "CEO, President and Director", "transactions": [{"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 653.529, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 14264.957, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 893.612, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 15158.569, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 802.006, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 15960.575, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 863.013, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 16823.588, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 30.832, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 16854.42, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 1277.861, "price": 432.38, "total_value": 552521.5391800001, "post_transaction_shares": 15576.559, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "INTU", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001628280-26-023704", "url": "https://www.sec.gov/Archives/edgar/data/896878/000162828026023704/xslF345X06/wk-form4_1775249417.xml", "ingested_at": "2026-04-09T14:35:26.123455"}, "parsed_data": {"reporting_owner": "McLean Kerry J", "role": "EVP, Gen. Counsel & Corp. Sec.", "transactions": [{"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 244.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 28657.7666, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 236.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 28893.7666, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 199.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 29092.7666, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 170.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 29262.7666, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 301.627, "price": 432.38, "total_value": 130417.48226, "post_transaction_shares": 28961.1396, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "INTU", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001628280-26-023701", "url": "https://www.sec.gov/Archives/edgar/data/896878/000162828026023701/xslF345X06/wk-form4_1775249278.xml", "ingested_at": "2026-04-09T14:35:26.302636"}, "parsed_data": {"reporting_owner": "Hotz Lauren D", "role": "SVP, Chief Accounting Officer", "transactions": [{"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 41.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 2055.7352, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 104.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 2159.7352, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 97.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 2256.7352, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 88.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 2344.7352, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 120.548, "price": 432.38, "total_value": 52122.54424, "post_transaction_shares": 2224.1872, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "INTU", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001628280-26-023698", "url": "https://www.sec.gov/Archives/edgar/data/896878/000162828026023698/xslF345X06/wk-form4_1775249186.xml", "ingested_at": "2026-04-09T14:35:26.503339"}, "parsed_data": {"reporting_owner": "Hilliard Caryl Lyn", "role": "EVP, People and Places", "transactions": [{"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 122.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 23018.008, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 110.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 23128.008, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 87.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 23215.008, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 150.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 23365.008, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 212.093, "price": 432.38, "total_value": 91704.77133999999, "post_transaction_shares": 23152.915, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "INTU", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001628280-26-023696", "url": "https://www.sec.gov/Archives/edgar/data/896878/000162828026023696/xslF345X06/wk-form4_1775249122.xml", "ingested_at": "2026-04-09T14:35:26.683379"}, "parsed_data": {"reporting_owner": "Hanebrink Anton", "role": "EVP, Corp Strategy and Dev", "transactions": [{"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 348.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 29953.249, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 252.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 30205.249, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 224.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 30429.249, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 418.253, "price": 432.38, "total_value": 180844.23213999998, "post_transaction_shares": 30010.996, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "INTU", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001628280-26-023690", "url": "https://www.sec.gov/Archives/edgar/data/896878/000162828026023690/xslF345X06/wk-form4_1775248743.xml", "ingested_at": "2026-04-09T14:35:26.860677"}, "parsed_data": {"reporting_owner": "Aujla Sandeep", "role": "EVP and CFO", "transactions": [{"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 2665.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 3239.1366, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 346.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 3585.1366, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 349.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 3934.1366, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 1725.362, "price": 432.38, "total_value": 746012.02156, "post_transaction_shares": 2208.7746, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/MDLZ.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/MDLZ.jsonl new file mode 100644 index 0000000..e391ee7 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/MDLZ.jsonl @@ -0,0 +1,2 @@ +{"metadata": {"ticker": "MDLZ", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001628280-26-023648", "url": "https://www.sec.gov/Archives/edgar/data/1103982/000162828026023648/xslF345X06/wk-form4_1775247097.xml", "ingested_at": "2026-04-09T14:35:34.436405"}, "parsed_data": {"reporting_owner": "Lilak Stephanie", "role": "EVP and Chief People Officer", "transactions": [{"date": "2026-04-01", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 3218.0, "price": 57.07, "total_value": 183651.26, "post_transaction_shares": 24118.0, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "MDLZ", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001628280-26-023646", "url": "https://www.sec.gov/Archives/edgar/data/1103982/000162828026023646/xslF345X06/wk-form4_1775247057.xml", "ingested_at": "2026-04-09T14:35:34.616247"}, "parsed_data": {"reporting_owner": "Kuhn Volker", "role": "EVP and President, Europe", "transactions": [{"date": "2026-04-01", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 90.0, "price": 57.07, "total_value": 5136.3, "post_transaction_shares": 25820.0, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/MELI.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/MELI.jsonl new file mode 100644 index 0000000..1b072ed --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/MELI.jsonl @@ -0,0 +1 @@ +{"metadata": {"ticker": "MELI", "form_type": "8-K", "filed_at": "2026-04-03", "accession_no": "0001999371-26-007656", "url": "https://www.sec.gov/Archives/edgar/data/1099590/000199937126007656/meli_8k-033126.htm", "ingested_at": "2026-04-09T14:35:38.947891"}, "parsed_data": {"is_chunked": true, "item_chunks": {"5.02": "Item 5.02** | **Departure of Directors or Certain Officers; Election of Directors; Appointment of Certain Officers; Compensatory Arrangements of Certain Officers.** |\n\n**Establishment of Performance Goals under the 2026 Bonus Program**\n\nOn March 31, 2026, the Board of Directors (the “Board”) of\nMercadoLibre, Inc. (the “Company”) established the performance goals for the Company’s bonus program for the 2026 fiscal\nyear (the “2026 Bonus Program”). Under the 2026 Bonus Program, the bonus payout for each of Ariel Szarfsztejn (Chief Executive\nOfficer), Marcos Galperin (Executive Chairman), Osvaldo Giménez (Fintech President), Daniel Rabinovich (Technology & Operations\nPresident), and Martin de los Santos (EVP and Chief Financial Officer) (referred to below as “NEOs”) is based on achievement\nof Net revenues and financial income (in constant dollars), Income from operations (in constant dollars), Total payment volume - adjusted\n(the total sum of all transactions paid for using Mercado Pago, including marketplace and non-marketplace transactions, excluding peer-to-peer\ntransactions) (in constant dollars) and the Company’s Competitive Net Promoter Score. The Board has determined a target bonus for\neach NEO and applies an adjustment of up to + 50% or -50% to each bonus based upon the individual performance of each NEO.\n\nThe Board set each NEO’s target bonus under the 2026 Bonus Program\nas four months of base salary (33.33% of each NEO’s annual base salary).\n\n**Adoption of the 2026 Long Term Retention Program**\n\nOn March 31, 2026, the Board approved the adoption of the 2026 Long\nTerm Retention Program (the “2026 LTRP”) and, after taking into account a compensation competitiveness analysis carried out\nby the Company’s independent third-party compensation consultant, established the target award for each NEO under the 2026 LTRP.\nThe 2026 LTRP provides the NEOs, along with other members of senior management, with the opportunity to receive cash payments annually\nfor a period of six years (with the first payment occurring between January 1, 2027 and April 30, 2027, as determined by the Company),\nsubject to continued employment on each payment date (other than in specified circumstances). Each award to an NEO under the 2026 LTRP is deemed to have a Grant Date\n(as defined in the 2026 LTRP) of January 1, 2026. Under the 2026 LTRP, each NEO shall receive:\n\n| | | | |\n| --- | --- | --- | --- |\n| | ● | | 16.66% of half of his or her target 2026 LTRP award annually for a period of six years (with the first payment occurring between January 1, 2027 and April 30, 2027) (the “Annual Fixed Payment”); and |\n\n| | | | |\n| --- | --- | --- | --- |\n| | ● | | on each date the Company pays the Annual Fixed Payment, each NEO will also receive a payment equal to the product of (i) 16.66% of half of the NEO’s target 2026 LTRP award and (ii) the quotient of (a) the Applicable Year Stock Price (as defined below) over (b) the average closing price of the Company’s common stock on NASDAQ during the final 60 trading days of 2025. For purposes of the 2026 LTRP, the “Applicable Year Stock Price” is the average closing price of the Company’s common stock on NASDAQ during the final 60 trading days of the fiscal year preceding the fiscal year in which the applicable payment date occurs, for so long as our common stock is listed on NASDAQ. |\n\nThe target 2026 LTRP awards for our NEOs are set forth below.\n\n| | | | | | | |\n| --- | --- | --- | --- | --- | --- | --- |\n| Name | | Title | | Target 2026 LTRP Award (nominal) | | |\n| Ariel Szarfsztejn | | Chief Executive Officer | | $ | 14,000,000 | |\n| Osvaldo Giménez | | Fintech President | | $ | 10,000,000 | |\n| Daniel Rabinovich | | Technology & Operations President | | $ | 10,000,000 | |\n| Martin de los Santos | | Executive Vice President & Chief Financial Officer | | $ | 4,000,000 | |\n| Marcos Galperin | | Executive Chairman | | $ | 3,500,000 | |\n\n| |\n| --- |\n| |\n\nThe foregoing description of the 2026 LTRP does not purport to be complete\nand is qualified in its entirety by reference to the full text of the 2026 LTRP, which is filed as Exhibit 10.1 to this Current Report\non Form 8-K and is incorporated herein by reference.\n\n| | |\n| --- | --- |\n| **Item 9.01** | **Financial Statements and Exhibits.** |\n\n| | |\n| --- | --- |\n| (d) | *Exhibits.* |\n\nThe following exhibits are filed herewith.\n\n| | | | |\n| --- | --- | --- | --- |\n| **Exhibit** **Number** | | | **Description** |\n| | | | |\n| 10.1 | | | MercadoLibre, Inc. 2026 Long Term Retention Program |\n\n| |\n| --- |\n| |\n\n**EXHIBIT INDEX**\n\n| | | |\n| --- | --- | --- |\n| **Exhibit** **Number** | | **Description** |\n| | | |\n| 10.1 | | MercadoLibre, Inc. 2026 Long Term Retention Program |\n\n| |\n| --- |\n| |\n\n**SIGNATURES**\n\nPursuant to the requirements of the Securities Exchange\nAct of 1934, the registrant has duly caused this report to be signed on its behalf by the undersigned hereunto duly authorized.\n\n| | | | |\n| --- | --- | --- | --- |\n| | MercadoLibre, Inc. | | |\n| | | | |\n| Dated: April 3, 2026 | By: | /s/ Martin de los Santos | |\n| | Name: | Martin de los Santos | |\n| | Title: | Executive Vice President and Chief Financial Officer | |\n| | | | |\n\n \n\n| |\n| --- |\n| |"}}, "raw_text": "8K_PARSED_INTO_MARKDOWN_CHUNKS"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/MU.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/MU.jsonl new file mode 100644 index 0000000..aea898c --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/MU.jsonl @@ -0,0 +1,3 @@ +{"metadata": {"ticker": "MU", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001632063-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/723125/000163206326000002/xslF345X06/primarydocument.xml", "ingested_at": "2026-04-09T14:35:37.247639"}, "parsed_data": {"reporting_owner": "ARNZEN APRIL S", "role": "EVP and Chief People Officer", "transactions": [{"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 8630.0, "price": 345.13, "total_value": 2978471.9, "post_transaction_shares": 157107.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 5766.0, "price": 346.22, "total_value": 1996304.5200000003, "post_transaction_shares": 151341.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 604.0, "price": 346.83, "total_value": 209485.31999999998, "post_transaction_shares": 150737.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 25000.0, "price": 348.46, "total_value": 8711500.0, "post_transaction_shares": 125737.0, "is_10b5_1_planned": true}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "MU", "form_type": "4", "filed_at": "2026-04-02", "accession_no": "0002058769-26-000003", "url": "https://www.sec.gov/Archives/edgar/data/723125/000205876926000003/xslF345X06/primarydocument.xml", "ingested_at": "2026-04-09T14:35:37.436214"}, "parsed_data": {"reporting_owner": "Liu Teyin M", "role": "Director", "transactions": [{"date": "2026-03-31", "code": "A", "direction": "OTHER (A)", "shares": 97.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 26007.0, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "MU", "form_type": "4", "filed_at": "2026-04-02", "accession_no": "0001218363-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/723125/000121836326000002/xslF345X06/primarydocument.xml", "ingested_at": "2026-04-09T14:35:37.631316"}, "parsed_data": {"reporting_owner": "SWAN ROBERT HOLMES", "role": "Director", "transactions": []}, "raw_text": "XML_PARSED_SUCCESSFULLY"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/NFLX.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/NFLX.jsonl new file mode 100644 index 0000000..5e30f63 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/NFLX.jsonl @@ -0,0 +1,13 @@ +{"metadata": {"ticker": "NFLX", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001543133-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/1065280/000154313326000002/xslF345X06/wk-form4_1775246849.xml", "ingested_at": "2026-04-09T14:35:20.179845"}, "parsed_data": {"reporting_owner": "Neumann Spencer Adam", "role": "Chief Financial Officer", "transactions": [{"date": "2026-04-02", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 7770.0, "price": 38.105, "total_value": 296075.85, "post_transaction_shares": 81557.0, "is_10b5_1_planned": true}, {"date": "2026-04-02", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 20860.0, "price": 36.408, "total_value": 759470.88, "post_transaction_shares": 102417.0, "is_10b5_1_planned": true}, {"date": "2026-04-02", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 28630.0, "price": 98.0, "total_value": 2805740.0, "post_transaction_shares": 73787.0, "is_10b5_1_planned": true}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "NFLX", "form_type": "4", "filed_at": "2026-04-02", "accession_no": "0001065280-26-000136", "url": "https://www.sec.gov/Archives/edgar/data/1065280/000106528026000136/xslF345X06/wk-form4_1775167371.xml", "ingested_at": "2026-04-09T14:35:20.363391"}, "parsed_data": {"reporting_owner": "KILGORE LESLIE J", "role": "Other", "transactions": []}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "NFLX", "form_type": "4", "filed_at": "2026-04-02", "accession_no": "0001065280-26-000135", "url": "https://www.sec.gov/Archives/edgar/data/1065280/000106528026000135/xslF345X06/wk-form4_1775167364.xml", "ingested_at": "2026-04-09T14:35:20.558314"}, "parsed_data": {"reporting_owner": "Masiyiwa Strive", "role": "Other", "transactions": []}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "NFLX", "form_type": "4", "filed_at": "2026-04-02", "accession_no": "0001065280-26-000134", "url": "https://www.sec.gov/Archives/edgar/data/1065280/000106528026000134/xslF345X06/wk-form4_1775167354.xml", "ingested_at": "2026-04-09T14:35:20.736570"}, "parsed_data": {"reporting_owner": "HASTINGS REED", "role": "Other", "transactions": [{"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 420550.0, "price": 9.437, "total_value": 3968730.3499999996, "post_transaction_shares": 424490.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 152047.0, "price": 95.015, "total_value": 14446745.705, "post_transaction_shares": 272443.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 247923.0, "price": 95.6767, "total_value": 23720454.4941, "post_transaction_shares": 24520.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 20580.0, "price": 96.6601, "total_value": 1989264.858, "post_transaction_shares": 3940.0, "is_10b5_1_planned": true}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "NFLX", "form_type": "4", "filed_at": "2026-04-02", "accession_no": "0001065280-26-000133", "url": "https://www.sec.gov/Archives/edgar/data/1065280/000106528026000133/xslF345X06/wk-form4_1775167345.xml", "ingested_at": "2026-04-09T14:35:20.920087"}, "parsed_data": {"reporting_owner": "Sweeney Anne M", "role": "Other", "transactions": []}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "NFLX", "form_type": "4", "filed_at": "2026-04-02", "accession_no": "0001065280-26-000132", "url": "https://www.sec.gov/Archives/edgar/data/1065280/000106528026000132/xslF345X06/wk-form4_1775167337.xml", "ingested_at": "2026-04-09T14:35:21.097069"}, "parsed_data": {"reporting_owner": "MATHER ANN", "role": "Other", "transactions": []}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "NFLX", "form_type": "4", "filed_at": "2026-04-02", "accession_no": "0001065280-26-000131", "url": "https://www.sec.gov/Archives/edgar/data/1065280/000106528026000131/xslF345X06/wk-form4_1775167309.xml", "ingested_at": "2026-04-09T14:35:21.299072"}, "parsed_data": {"reporting_owner": "Dopfner Mathias", "role": "Other", "transactions": []}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "NFLX", "form_type": "4", "filed_at": "2026-04-02", "accession_no": "0001065280-26-000130", "url": "https://www.sec.gov/Archives/edgar/data/1065280/000106528026000130/xslF345X06/wk-form4_1775167302.xml", "ingested_at": "2026-04-09T14:35:21.484003"}, "parsed_data": {"reporting_owner": "Karbowski Jeffrey William", "role": "Chief Accounting Officer", "transactions": []}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "NFLX", "form_type": "4", "filed_at": "2026-04-02", "accession_no": "0001065280-26-000129", "url": "https://www.sec.gov/Archives/edgar/data/1065280/000106528026000129/xslF345X06/wk-form4_1775167293.xml", "ingested_at": "2026-04-09T14:35:21.680015"}, "parsed_data": {"reporting_owner": "SMITH BRADFORD L", "role": "Other", "transactions": []}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "NFLX", "form_type": "4", "filed_at": "2026-04-02", "accession_no": "0001065280-26-000128", "url": "https://www.sec.gov/Archives/edgar/data/1065280/000106528026000128/xslF345X06/wk-form4_1775167286.xml", "ingested_at": "2026-04-09T14:35:21.886292"}, "parsed_data": {"reporting_owner": "RICE SUSAN E", "role": "Other", "transactions": []}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "NFLX", "form_type": "4", "filed_at": "2026-04-02", "accession_no": "0001065280-26-000127", "url": "https://www.sec.gov/Archives/edgar/data/1065280/000106528026000127/xslF345X06/wk-form4_1775167280.xml", "ingested_at": "2026-04-09T14:35:22.063677"}, "parsed_data": {"reporting_owner": "BARTON RICHARD N", "role": "Other", "transactions": []}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "NFLX", "form_type": "4", "filed_at": "2026-04-02", "accession_no": "0001065280-26-000126", "url": "https://www.sec.gov/Archives/edgar/data/1065280/000106528026000126/xslF345X06/wk-form4_1775167264.xml", "ingested_at": "2026-04-09T14:35:22.240648"}, "parsed_data": {"reporting_owner": "Mertz Elinor", "role": "Other", "transactions": []}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "NFLX", "form_type": "4", "filed_at": "2026-04-02", "accession_no": "0001082906-26-000012", "url": "https://www.sec.gov/Archives/edgar/data/1065280/000108290626000012/xslF345X06/form4.xml", "ingested_at": "2026-04-09T14:35:22.436192"}, "parsed_data": {"reporting_owner": "Hoag Jay C", "role": "Other", "transactions": []}, "raw_text": "XML_PARSED_SUCCESSFULLY"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/PANW.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/PANW.jsonl new file mode 100644 index 0000000..583fa73 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/PANW.jsonl @@ -0,0 +1,2 @@ +{"metadata": {"ticker": "PANW", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001882285-26-000007", "url": "https://www.sec.gov/Archives/edgar/data/1327567/000188228526000007/xslF345X06/ownership.xml", "ingested_at": "2026-04-09T14:35:33.668336"}, "parsed_data": {"reporting_owner": "Paul Josh D.", "role": "Chief Accounting Officer", "transactions": [{"date": "2026-04-01", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 947.0, "price": 160.32, "total_value": 151823.03999999998, "post_transaction_shares": 84236.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 1100.0, "price": 161.4, "total_value": 177540.0, "post_transaction_shares": 83136.0, "is_10b5_1_planned": true}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "PANW", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001852540-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/1327567/000185254026000002/xslF345X06/ownership.xml", "ingested_at": "2026-04-09T14:35:33.898298"}, "parsed_data": {"reporting_owner": "Golechha Dipak", "role": "EVP, Chief Financial Officer", "transactions": [{"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 200.0, "price": 157.81, "total_value": 31562.0, "post_transaction_shares": 155050.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 1300.0, "price": 160.039, "total_value": 208050.69999999998, "post_transaction_shares": 153750.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 3500.0, "price": 160.704, "total_value": 562464.0, "post_transaction_shares": 150250.0, "is_10b5_1_planned": true}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/QCOM.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/QCOM.jsonl new file mode 100644 index 0000000..c1abbed --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/QCOM.jsonl @@ -0,0 +1,3 @@ +{"metadata": {"ticker": "QCOM", "form_type": "4", "filed_at": "2026-04-02", "accession_no": "0000804328-26-000051", "url": "https://www.sec.gov/Archives/edgar/data/804328/000080432826000051/xslF345X06/edgardoc.xml", "ingested_at": "2026-04-09T14:35:24.838654"}, "parsed_data": {"reporting_owner": "Grech Patricia Y", "role": "SVP, Chief Accounting Officer", "transactions": [{"date": "2026-04-02", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 85.0, "price": 125.5, "total_value": 10667.5, "post_transaction_shares": 192.0, "is_10b5_1_planned": true}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "QCOM", "form_type": "4", "filed_at": "2026-04-02", "accession_no": "0000804328-26-000049", "url": "https://www.sec.gov/Archives/edgar/data/804328/000080432826000049/xslF345X06/edgardoc.xml", "ingested_at": "2026-04-09T14:35:25.016213"}, "parsed_data": {"reporting_owner": "MCLAUGHLIN MARK D", "role": "Other", "transactions": [{"date": "2026-03-31", "code": "A", "direction": "OTHER (A)", "shares": 538.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 12849.8312, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "QCOM", "form_type": "4", "filed_at": "2026-04-02", "accession_no": "0000804328-26-000048", "url": "https://www.sec.gov/Archives/edgar/data/804328/000080432826000048/xslF345X06/edgardoc.xml", "ingested_at": "2026-04-09T14:35:25.193502"}, "parsed_data": {"reporting_owner": "TRICOIRE JEAN-PASCAL", "role": "Other", "transactions": [{"date": "2026-03-31", "code": "A", "direction": "OTHER (A)", "shares": 262.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 13481.4716, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/REGN.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/REGN.jsonl new file mode 100644 index 0000000..f48c607 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/REGN.jsonl @@ -0,0 +1,2 @@ +{"metadata": {"ticker": "REGN", "form_type": "8-K", "filed_at": "2026-04-08", "accession_no": "0001104659-26-040661", "url": "https://www.sec.gov/Archives/edgar/data/872589/000110465926040661/tm2611354d1_8k.htm", "ingested_at": "2026-04-09T14:35:35.330815"}, "parsed_data": {"is_chunked": true, "item_chunks": {"2.02": "Item 2.02.** | **Results of Operations and Financial Condition.** |\n\nRegeneron Pharmaceuticals, Inc. (“Regeneron”\nor the “Company”) currently expects that its financial results calculated in accordance with U.S. generally accepted\naccounting principles (“GAAP”) and its non-GAAP financial results for the first quarter 2026 will include an acquired\nin-process research and development (“IPR&D”) charge of approximately $102 million on a pre-tax basis. This charge\nprimarily relates to premium on equity securities purchased, as well as development milestone and up-front payments, in connection with\ncollaboration and licensing agreements. The acquired IPR&D charge is expected to negatively impact each of GAAP and non-GAAP net income\nper diluted share for the first quarter 2026 by approximately $0.81.\n\nAcquired IPR&D charges may include IPR&D\nacquired in connection with asset acquisitions as well as up-front, opt-in, certain development milestone payments, and premiums paid\non equity securities related to collaboration and licensing agreements. Regeneron does not forecast such acquired IPR&D charges due\nto the uncertainty of the future occurrence, magnitude, and timing of these transactions in any given period.\n\nRegeneron’s results for the first quarter\n2026 have not been finalized and are subject to Regeneron’s financial statement closing procedures. There can be no assurance that\nactual results will not differ from the preliminary (unaudited) estimates described herein.\n\nThe information included in this Current Report\non Form 8-K shall not be deemed “filed” for purposes of Section 18 of the Securities Exchange Act of 1934, as amended,\nnor shall such information be deemed incorporated by reference in any filing under the Securities Act of 1933, as amended, except as shall\nbe expressly set forth by specific reference in such a filing.\n\n***Note\nRegarding Forward-Looking Statements***\n\n*This Current Report\non Form 8-K (this “Report”) includes forward-looking statements that involve risks and uncertainties relating\nto future events and the future performance of Regeneron Pharmaceuticals, Inc. (“Regeneron” or the “Company”),\nand actual events or results may differ materially from these forward-looking statements. Words such as “anticipate,” “expect,”\n“intend,” “plan,” “believe,” “seek,” “estimate,” variations of such words,\nand similar expressions are intended to identify such forward-looking statements, although not all forward-looking statements contain\nthese identifying words. These statements concern, and these risks and uncertainties include, among others, Regeneron’s expected\nacquired in-process research and development charge for the quarterly period ended March 31, 2026 and its expected impact on GAAP\nand non-GAAP net income per diluted share for this period as discussed in this Report. A more complete description of these and other\nmaterial risks can be found in Regeneron’s filings with the U.S. Securities and Exchange Commission. Any forward-looking statements\nare made based on management’s current beliefs and judgment, and the reader is cautioned not to rely on any forward-looking statements\nmade by Regeneron. Regeneron does not undertake any obligation to update (publicly or otherwise) any forward-looking statement, including\nwithout limitation any financial projection or guidance, whether as a result of new information, future events, or otherwise.*\n\n***Note Regarding Non-GAAP Financial Measures***\n\n*This Report references non-GAAP net income\nper diluted share, which is a financial measure that is not calculated in accordance with U.S. Generally Accepted Accounting Principles\n(“GAAP”). This non-GAAP financial measure is computed by excluding certain non-cash and/or other items from the related\nGAAP financial measure. The Company also includes a non-GAAP adjustment for the estimated income tax effect of reconciling items. The\nCompany makes such adjustments for items the Company does not view as useful in evaluating its operating performance. Management uses\nthis and other non-GAAP measures for planning, budgeting, forecasting, assessing historical performance, and making financial and operational\ndecisions, and also provides forecasts to investors on this basis. Additionally, such non-GAAP measures provide investors with an enhanced\nunderstanding of the financial performance of the Company's core business operations. However, there are limitations in the use of such\nnon-GAAP financial measures as they exclude certain expenses that are recurring in nature. Furthermore, the Company's non-GAAP financial\nmeasures may not be comparable with non-GAAP information provided by other companies. Any non-GAAP financial measure presented by Regeneron\nshould be considered supplemental to, and not a substitute for, measures of financial performance prepared in accordance with GAAP.*\n\n**SIGNATURES**\n\nPursuant to the requirements of the Securities\nExchange Act of 1934, the registrant has duly caused this report to be signed on its behalf by the undersigned thereunto duly authorized.\n\n| | |\n| --- | --- |\n| | **REGENERON PHARMACEUTICALS, INC.** |\n| | |\n| | /s/ Joseph J. LaRosa |\n| | Joseph J. LaRosa |\n| | Executive Vice President, General Counsel and Secretary |\n\nDate: April 8, 2026"}}, "raw_text": "8K_PARSED_INTO_MARKDOWN_CHUNKS"} +{"metadata": {"ticker": "REGN", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001104659-26-039613", "url": "https://www.sec.gov/Archives/edgar/data/872589/000110465926039613/xslF345X06/tm2611142-1_4seq1.xml", "ingested_at": "2026-04-09T14:35:35.555547"}, "parsed_data": {"reporting_owner": "RYAN ARTHUR F", "role": "Other", "transactions": [{"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 1.0, "price": 771.32, "total_value": 771.32, "post_transaction_shares": 17702.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 3.0, "price": 772.76, "total_value": 2318.2799999999997, "post_transaction_shares": 17699.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 8.0, "price": 773.59, "total_value": 6188.72, "post_transaction_shares": 17691.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 8.0, "price": 774.58, "total_value": 6196.64, "post_transaction_shares": 17683.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 14.0, "price": 775.58, "total_value": 10858.12, "post_transaction_shares": 17669.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 13.0, "price": 776.62, "total_value": 10096.06, "post_transaction_shares": 17656.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 9.0, "price": 777.42, "total_value": 6996.78, "post_transaction_shares": 17647.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 4.0, "price": 778.24, "total_value": 3112.96, "post_transaction_shares": 17643.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 40.0, "price": 779.71, "total_value": 31188.4, "post_transaction_shares": 17603.0, "is_10b5_1_planned": true}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/SBUX.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/SBUX.jsonl new file mode 100644 index 0000000..19345b9 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/SBUX.jsonl @@ -0,0 +1,2 @@ +{"metadata": {"ticker": "SBUX", "form_type": "4", "filed_at": "2026-04-08", "accession_no": "0000829224-26-000066", "url": "https://www.sec.gov/Archives/edgar/data/829224/000082922426000066/xslF345X06/form4.xml", "ingested_at": "2026-04-09T14:35:32.974848"}, "parsed_data": {"reporting_owner": "BREWER BRADY", "role": "ceo, International", "transactions": [{"date": "2026-04-06", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 1641.0, "price": 90.0, "total_value": 147690.0, "post_transaction_shares": 84375.502, "is_10b5_1_planned": true}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "SBUX", "form_type": "8-K", "filed_at": "2026-04-02", "accession_no": "0000829224-26-000064", "url": "https://www.sec.gov/Archives/edgar/data/829224/000082922426000064/sbux-20260402.htm", "ingested_at": "2026-04-09T14:35:33.155022"}, "parsed_data": {"is_chunked": true, "item_chunks": {"7.01": "Item 7.01 Regulation FD Disclosure.\n\nAs previously disclosed on November 3, 2025, Starbucks entered an agreement to form a joint venture with Boyu Capital. On April 2, 2026, Starbucks announced that, following the satisfaction of all necessary closing conditions, it completed the transaction. Pursuant to the transaction, funds managed by Boyu Capital have acquired a 60% interest in Starbucks retail operations in China. Starbucks retains a 40% interest and will serve as the owner and licensor of the Starbucks global brand.\n\nA copy of the press release issued is furnished as Exhibit 99.1 to this Form 8-K.\n\nThe information contained in Item 7.01 of this report, including the information in Exhibit 99.1, is furnished pursuant to Item 7.01 of Form 8-K and shall not be deemed “filed” for the purposes of Section 18 of the Securities Exchange Act of 1934, as amended, or otherwise subject to the liabilities of that section. Furthermore, the information in Item 7.01 of this report, including the information in Exhibit 99.1 attached to this report, shall not be deemed to be incorporated by reference in the filings of Starbucks Corporation under the Securities Act of 1933, as amended.", "9.01": "Item 9.01Financial Statements and Exhibits.\n\n(d) Exhibits.\n\n| | | | | | | | | |\n| --- | --- | --- | --- | --- | --- | --- | --- | --- |\n| | | | | | | | | |\n| Exhibit No. | | | | | | Description | | |\n| 99.1 | | | | | | Press Release, dated April 2, 2026 | | |\n| 104 | | | | | | Cover Page Interactive Data File (formatted as inline XBRL) | | |\n\n---"}}, "raw_text": "8K_PARSED_INTO_MARKDOWN_CHUNKS"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/TSLA.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/TSLA.jsonl new file mode 100644 index 0000000..4e78e85 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/TSLA.jsonl @@ -0,0 +1,2 @@ +{"metadata": {"ticker": "TSLA", "form_type": "4", "filed_at": "2026-04-02", "accession_no": "0001972928-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/1318605/000197292826000002/xslF345X06/edgardoc.xml", "ingested_at": "2026-04-09T14:35:18.193427"}, "parsed_data": {"reporting_owner": "Zhu Xiaotong", "role": "SVP", "transactions": [{"date": "2026-03-31", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 20000.0, "price": 20.57, "total_value": 411400.0, "post_transaction_shares": 20000.0, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "TSLA", "form_type": "8-K", "filed_at": "2026-04-02", "accession_no": "0001628280-26-022956", "url": "https://www.sec.gov/Archives/edgar/data/1318605/000162828026022956/tsla-20260402.htm", "ingested_at": "2026-04-09T14:35:18.370698"}, "parsed_data": {"is_chunked": true, "item_chunks": {"2.02": "Item 2.02 Results of Operations and Financial Condition.\n\nOn April 2, 2026, Tesla, Inc. published the press release which is attached hereto as Exhibit 99.1 and is incorporated herein by reference.\n\nThis information is intended to be furnished under Item 2.02 of Form 8-K and shall not be deemed “filed” for purposes of Section 18 of the Securities Exchange Act of 1934, as amended (the “Exchange Act”), or incorporated by reference in any filing under the Securities Act of 1933, as amended, or the Exchange Act as shall be expressly set forth by specific reference in such a filing.", "9.01": "Item 9.01 Financial Statements and Exhibits.\n\n(d)Exhibits.\n\n| | | | | | | | | |\n| --- | --- | --- | --- | --- | --- | --- | --- | --- |\n| | | | | | | | | |\n| Exhibit No. | | | | | | Description | | |\n| | | | | | | | | |\n| 99.1 | | | | | | Press release of Tesla, Inc., dated April 2, 2026. | | |\n| 104 | | | | | | Cover Page Interactive Data File (embedded within the Inline XBRL document). | | |\n\n---"}}, "raw_text": "8K_PARSED_INTO_MARKDOWN_CHUNKS"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/VRTX.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/VRTX.jsonl new file mode 100644 index 0000000..83f48e0 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/VRTX.jsonl @@ -0,0 +1 @@ +{"metadata": {"ticker": "VRTX", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0000875320-26-000157", "url": "https://www.sec.gov/Archives/edgar/data/875320/000087532026000157/xslF345X06/wk-form4_1775249628.xml", "ingested_at": "2026-04-09T14:35:32.500592"}, "parsed_data": {"reporting_owner": "Liu Joy", "role": "EVP and Chief Legal Officer", "transactions": [{"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 978.0, "price": 449.17, "total_value": 439288.26, "post_transaction_shares": 21833.0, "is_10b5_1_planned": true}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/_SUMMARY.json b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/_SUMMARY.json new file mode 100644 index 0000000..548c78e --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-09/_SUMMARY.json @@ -0,0 +1,110 @@ +{ + "date": "2026-04-09", + "total_filings": 66, + "ticker_breakdown": { + "QCOM": { + "4": 3, + "8-K": 0 + }, + "MELI": { + "4": 0, + "8-K": 1 + }, + "CRWD": { + "4": 0, + "8-K": 1 + }, + "AMZN": { + "4": 1, + "8-K": 1 + }, + "VRTX": { + "4": 1, + "8-K": 0 + }, + "ADI": { + "4": 1, + "8-K": 0 + }, + "PANW": { + "4": 2, + "8-K": 0 + }, + "AMAT": { + "4": 1, + "8-K": 0 + }, + "MU": { + "4": 3, + "8-K": 0 + }, + "CSX": { + "4": 1, + "8-K": 0 + }, + "AMD": { + "4": 1, + "8-K": 0 + }, + "INTU": { + "4": 6, + "8-K": 0 + }, + "AAPL": { + "4": 3, + "8-K": 0 + }, + "CDNS": { + "4": 1, + "8-K": 0 + }, + "CMCSA": { + "4": 6, + "8-K": 0 + }, + "NFLX": { + "4": 13, + "8-K": 0 + }, + "INTC": { + "4": 0, + "8-K": 2 + }, + "GOOGL": { + "4": 1, + "8-K": 1 + }, + "TSLA": { + "4": 1, + "8-K": 1 + }, + "BKNG": { + "4": 0, + "8-K": 2 + }, + "CSCO": { + "4": 1, + "8-K": 1 + }, + "MDLZ": { + "4": 2, + "8-K": 0 + }, + "REGN": { + "4": 1, + "8-K": 1 + }, + "AVGO": { + "4": 0, + "8-K": 2 + }, + "SBUX": { + "4": 1, + "8-K": 1 + }, + "HON": { + "4": 2, + "8-K": 0 + } + } +} \ No newline at end of file diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-10/AAPL.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-10/AAPL.jsonl new file mode 100644 index 0000000..1d8b743 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-10/AAPL.jsonl @@ -0,0 +1,3 @@ +{"metadata": {"ticker": "AAPL", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001140361-26-013192", "url": "https://www.sec.gov/Archives/edgar/data/320193/000114036126013192/xslF345X06/form4.xml", "ingested_at": "2026-04-10T16:08:57.435020"}, "parsed_data": {"reporting_owner": "O'BRIEN DEIRDRE", "role": "Senior Vice President", "transactions": [{"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 64317.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 201127.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 34315.0, "price": 255.63, "total_value": 8771943.45, "post_transaction_shares": 166812.0, "is_10b5_1_planned": true}, {"date": "2026-04-02", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 20338.0, "price": 255.12, "total_value": 5188630.5600000005, "post_transaction_shares": 146474.0, "is_10b5_1_planned": true}, {"date": "2026-04-02", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 9664.0, "price": 255.82, "total_value": 2472244.48, "post_transaction_shares": 136810.0, "is_10b5_1_planned": true}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "AAPL", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001140361-26-013191", "url": "https://www.sec.gov/Archives/edgar/data/320193/000114036126013191/xslF345X06/form4.xml", "ingested_at": "2026-04-10T16:08:57.674348"}, "parsed_data": {"reporting_owner": "Khan Sabih", "role": "COO", "transactions": [{"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 64317.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 1107212.0, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 33317.0, "price": 255.63, "total_value": 8516824.709999999, "post_transaction_shares": 1073895.0, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "AAPL", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001140361-26-013190", "url": "https://www.sec.gov/Archives/edgar/data/320193/000114036126013190/xslF345X06/form4.xml", "ingested_at": "2026-04-10T16:08:57.855148"}, "parsed_data": {"reporting_owner": "COOK TIMOTHY D", "role": "Chief Executive Officer", "transactions": [{"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 131576.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 3411994.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 66627.0, "price": 255.63, "total_value": 17031860.009999998, "post_transaction_shares": 3345367.0, "is_10b5_1_planned": true}, {"date": "2026-04-02", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 5087.0, "price": 251.25, "total_value": 1278108.75, "post_transaction_shares": 3340280.0, "is_10b5_1_planned": true}, {"date": "2026-04-02", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 9147.0, "price": 252.11, "total_value": 2306050.17, "post_transaction_shares": 3331133.0, "is_10b5_1_planned": true}, {"date": "2026-04-02", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 1878.0, "price": 253.13, "total_value": 475378.14, "post_transaction_shares": 3329255.0, "is_10b5_1_planned": true}, {"date": "2026-04-02", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 16083.0, "price": 254.37, "total_value": 4091032.71, "post_transaction_shares": 3313172.0, "is_10b5_1_planned": true}, {"date": "2026-04-02", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 28188.0, "price": 255.17, "total_value": 7192731.96, "post_transaction_shares": 3284984.0, "is_10b5_1_planned": true}, {"date": "2026-04-02", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 4566.0, "price": 256.0, "total_value": 1168896.0, "post_transaction_shares": 3280418.0, "is_10b5_1_planned": true}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-10/ADI.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-10/ADI.jsonl new file mode 100644 index 0000000..c7ac912 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-10/ADI.jsonl @@ -0,0 +1,7 @@ +{"metadata": {"ticker": "ADI", "form_type": "4", "filed_at": "2026-04-09", "accession_no": "0000006281-26-000043", "url": "https://www.sec.gov/Archives/edgar/data/6281/000000628126000043/xslF345X06/wk-form4_1775768645.xml", "ingested_at": "2026-04-10T16:09:14.401049"}, "parsed_data": {"reporting_owner": "Sondel Michael", "role": "CAO (principal acct. officer)", "transactions": [{"date": "2026-04-07", "code": "A", "direction": "OTHER (A)", "shares": 1341.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 15854.578, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "ADI", "form_type": "4", "filed_at": "2026-04-09", "accession_no": "0000006281-26-000042", "url": "https://www.sec.gov/Archives/edgar/data/6281/000000628126000042/xslF345X06/wk-form4_1775768622.xml", "ingested_at": "2026-04-10T16:09:14.605836"}, "parsed_data": {"reporting_owner": "ROCHE VINCENT", "role": "Chair & CEO", "transactions": [{"date": "2026-04-07", "code": "A", "direction": "OTHER (A)", "shares": 19712.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 187537.875, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "ADI", "form_type": "4", "filed_at": "2026-04-09", "accession_no": "0000006281-26-000041", "url": "https://www.sec.gov/Archives/edgar/data/6281/000000628126000041/xslF345X06/wk-form4_1775768603.xml", "ingested_at": "2026-04-10T16:09:14.817000"}, "parsed_data": {"reporting_owner": "Puccio Richard C Jr", "role": "EVP and CFO", "transactions": [{"date": "2026-04-07", "code": "A", "direction": "OTHER (A)", "shares": 6513.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 57968.559, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "ADI", "form_type": "4", "filed_at": "2026-04-09", "accession_no": "0000006281-26-000040", "url": "https://www.sec.gov/Archives/edgar/data/6281/000000628126000040/xslF345X06/wk-form4_1775768583.xml", "ingested_at": "2026-04-10T16:09:15.042283"}, "parsed_data": {"reporting_owner": "Nakamura Katsufumi", "role": "SVP, Chief Customer Officer", "transactions": [{"date": "2026-04-07", "code": "A", "direction": "OTHER (A)", "shares": 4085.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 16230.04, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "ADI", "form_type": "4", "filed_at": "2026-04-09", "accession_no": "0000006281-26-000039", "url": "https://www.sec.gov/Archives/edgar/data/6281/000000628126000039/xslF345X06/wk-form4_1775768561.xml", "ingested_at": "2026-04-10T16:09:15.241550"}, "parsed_data": {"reporting_owner": "Jain Vivek", "role": "EVP, Global Operations", "transactions": [{"date": "2026-04-07", "code": "A", "direction": "OTHER (A)", "shares": 6734.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 48823.474, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "ADI", "form_type": "4", "filed_at": "2026-04-09", "accession_no": "0000006281-26-000038", "url": "https://www.sec.gov/Archives/edgar/data/6281/000000628126000038/xslF345X06/wk-form4_1775768544.xml", "ingested_at": "2026-04-10T16:09:15.424624"}, "parsed_data": {"reporting_owner": "Cotter Martin", "role": "SVP, Vertical Business Units", "transactions": [{"date": "2026-04-07", "code": "A", "direction": "OTHER (A)", "shares": 5807.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 56331.884, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "ADI", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001201872-26-000008", "url": "https://www.sec.gov/Archives/edgar/data/6281/000120187226000008/xslF345X06/wk-form4_1775247205.xml", "ingested_at": "2026-04-10T16:09:15.632149"}, "parsed_data": {"reporting_owner": "ROCHE VINCENT", "role": "Chair & CEO", "transactions": [{"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 10000.0, "price": 94.41, "total_value": 944100.0, "post_transaction_shares": 177825.875, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 10000.0, "price": 318.14, "total_value": 3181400.0, "post_transaction_shares": 167825.875, "is_10b5_1_planned": true}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-10/AMD.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-10/AMD.jsonl new file mode 100644 index 0000000..7050ea7 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-10/AMD.jsonl @@ -0,0 +1 @@ +{"metadata": {"ticker": "AMD", "form_type": "4", "filed_at": "2026-04-08", "accession_no": "0000002488-26-000064", "url": "https://www.sec.gov/Archives/edgar/data/2488/000000248826000064/xslF345X06/wk-form4_1775679123.xml", "ingested_at": "2026-04-10T16:09:03.314151"}, "parsed_data": {"reporting_owner": "Papermaster Mark D", "role": "Chief Technology Officer & EVP", "transactions": [{"date": "2026-04-06", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 3293.0, "price": 225.0, "total_value": 740925.0, "post_transaction_shares": 1294466.0, "is_10b5_1_planned": true}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-10/AMZN.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-10/AMZN.jsonl new file mode 100644 index 0000000..6aa0b15 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-10/AMZN.jsonl @@ -0,0 +1,7 @@ +{"metadata": {"ticker": "AMZN", "form_type": "4", "filed_at": "2026-04-09", "accession_no": "0002024813-26-000004", "url": "https://www.sec.gov/Archives/edgar/data/1018724/000202481326000004/xslF345X06/wk-form4_1775768551.xml", "ingested_at": "2026-04-10T16:08:58.892947"}, "parsed_data": {"reporting_owner": "Garman Matthew S", "role": "CEO Amazon Web Services", "transactions": []}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "AMZN", "form_type": "4", "filed_at": "2026-04-09", "accession_no": "0001936006-26-000010", "url": "https://www.sec.gov/Archives/edgar/data/1018724/000193600626000010/xslF345X06/wk-form4_1775768277.xml", "ingested_at": "2026-04-10T16:08:59.135303"}, "parsed_data": {"reporting_owner": "Herrington Douglas J", "role": "CEO Worldwide Amazon Stores", "transactions": []}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "AMZN", "form_type": "4", "filed_at": "2026-04-09", "accession_no": "0001557979-26-000004", "url": "https://www.sec.gov/Archives/edgar/data/1018724/000155797926000004/xslF345X06/wk-form4_1775767969.xml", "ingested_at": "2026-04-10T16:08:59.345422"}, "parsed_data": {"reporting_owner": "Zapolsky David", "role": "Senior Vice President", "transactions": []}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "AMZN", "form_type": "4", "filed_at": "2026-04-09", "accession_no": "0001639902-26-000004", "url": "https://www.sec.gov/Archives/edgar/data/1018724/000163990226000004/xslF345X06/wk-form4_1775767715.xml", "ingested_at": "2026-04-10T16:08:59.550965"}, "parsed_data": {"reporting_owner": "Olsavsky Brian T", "role": "Senior Vice President and CFO", "transactions": []}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "AMZN", "form_type": "4", "filed_at": "2026-04-09", "accession_no": "0001397333-26-000004", "url": "https://www.sec.gov/Archives/edgar/data/1018724/000139733326000004/xslF345X06/wk-form4_1775767487.xml", "ingested_at": "2026-04-10T16:08:59.756142"}, "parsed_data": {"reporting_owner": "Reynolds Shelley", "role": "Vice President", "transactions": []}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "AMZN", "form_type": "8-K", "filed_at": "2026-04-09", "accession_no": "0001104659-26-041034", "url": "https://www.sec.gov/Archives/edgar/data/1018724/000110465926041034/tm263815d2_8k.htm", "ingested_at": "2026-04-10T16:08:59.935246"}, "parsed_data": {"is_chunked": true, "item_chunks": {"7.01": "ITEM 7.01. REGULATION FD DISCLOSURE.** | **3** |\n| | |\n| **ITEM 9.01. FINANCIAL STATEMENTS AND EXHIBITS.** | **3** |\n| | |\n| **SIGNATURES** | **4** |\n| | |\n| EXHIBIT 99.1 | |\n| | |\n| EXHIBIT 99.2 | |\n\n2\n\nTable of Contents\n\n**ITEM 7.01.****REGULATION\nFD DISCLOSURE.**\n\nThe Company’s\nLetter to Shareholders, which accompanies its Annual Report for the Year Ended December 31, 2025, is attached as Exhibit 99.1, and a\nreconciliation of a non-GAAP financial measure included in the Letter to Shareholders to the most directly comparable financial\nmeasure calculated and presented in accordance with GAAP is included as Exhibit 99.2.\n\n**ITEM 9.01. FINANCIAL STATEMENTS AND EXHIBITS.**\n\n***(d) Exhibits.***\n\n| | |\n| --- | --- |\n| **Exhibit** **Number** | **Description** |\n| | |\n| 99.1 | 2025 Letter to Shareholders. |\n| 99.2 | Reconciliation of Non-GAAP Financial Measure. |\n| 104 | The cover page from this Current Report on Form 8-K, formatted in Inline XBRL (included as Exhibit 101). |\n\n3\n\nTable of Contents\n\n**SIGNATURES**\n\nPursuant to the requirements of the Securities Exchange Act of 1934, the registrant has duly caused this report to be signed on its behalf by the\nundersigned hereunto duly authorized.\n\n| | | |\n| --- | --- | --- |\n| | AMAZON.COM, INC. (REGISTRANT) | |\n| | | |\n| | By: | /s/ Susan K. Jong |\n| | | **Susan K. Jong** |\n| | | **Vice President and Secretary** |\n\nDated: April 9, 2026\n\n4"}}, "raw_text": "8K_PARSED_INTO_MARKDOWN_CHUNKS"} +{"metadata": {"ticker": "AMZN", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001018724-26-000010", "url": "https://www.sec.gov/Archives/edgar/data/1018724/000101872426000010/xslF345X06/wk-form4_1775248886.xml", "ingested_at": "2026-04-10T16:09:00.178284"}, "parsed_data": {"reporting_owner": "Herrington Douglas J", "role": "CEO Worldwide Amazon Stores", "transactions": [{"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 1000.0, "price": 210.5, "total_value": 210500.0, "post_transaction_shares": 520361.0, "is_10b5_1_planned": true}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-10/AVGO.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-10/AVGO.jsonl new file mode 100644 index 0000000..e767b94 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-10/AVGO.jsonl @@ -0,0 +1 @@ +{"metadata": {"ticker": "AVGO", "form_type": "8-K", "filed_at": "2026-04-06", "accession_no": "0001193125-26-144028", "url": "https://www.sec.gov/Archives/edgar/data/1730168/000119312526144028/d87999d8k.htm", "ingested_at": "2026-04-10T16:09:01.801626"}, "parsed_data": {"is_chunked": true, "item_chunks": {"8.01": "Item 8.01 | Other Events. |\n\nBroadcom Inc. (“Broadcom”) and Google LLC (“Google”) have entered into a Long Term Agreement for Broadcom to develop and supply custom Tensor Processing Units (“TPUs”) for Google’s future generations of TPUs and a Supply Assurance Agreement for Broadcom to supply networking and other components to be used in Google’s next-generation AI racks through up to 2031.\n\nSeparately, Broadcom, Google and Anthropic PBC (“Anthropic”) have expanded their current strategic collaboration under which Anthropic, beginning in 2027, will access through Broadcom approximately 3.5 gigawatts as part of the multiple gigawatts of next generation TPU-based AI compute capacity committed by Anthropic. The consumption of such expanded AI compute capacity by Anthropic is dependent on Anthropic’s continued commercial success. In connection with this deployment, the parties are in discussions with certain operational and financial partners.\n\nCautionary Note Regarding Forward-Looking Statements\n\nThis Current Report on Form 8-K contains forward-looking statements (including within the meaning of Section 21E of the Securities Exchange Act of 1934, as amended, and Section 27A of the Securities Act of 1933, as amended). These forward-looking statements are based on current expectations and beliefs of Broadcom’s management, current information available to Broadcom’s management, and current market trends and market conditions, and involve risks and uncertainties that may cause actual results to differ materially from those contained in the forward-looking statements. Accordingly, undue reliance should not be placed on such statements. All forward-looking statements are qualified in their entirety by reference to the risk factors discussed under the heading “Risk Factors” in Broadcom’s Annual Report on Form 10-K for the year ended November 2, 2025, Quarterly Report on Form 10-Q for the period ended February 1, 2026 and any subsequent reports that are filed with the Securities and Exchange Commission and include some important risk factors that may affect future results. Broadcom undertakes no intent or obligation to publicly update or revise the forward-looking statements made in this Current Report on Form 8-K, except as required by law.\n\n---"}}, "raw_text": "8K_PARSED_INTO_MARKDOWN_CHUNKS"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-10/CDNS.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-10/CDNS.jsonl new file mode 100644 index 0000000..dc5d968 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-10/CDNS.jsonl @@ -0,0 +1 @@ +{"metadata": {"ticker": "CDNS", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0000813672-26-000040", "url": "https://www.sec.gov/Archives/edgar/data/813672/000081367226000040/xslF345X06/wk-form4_1775243708.xml", "ingested_at": "2026-04-10T16:09:16.926489"}, "parsed_data": {"reporting_owner": "Cunningham Paul", "role": "Sr. Vice President", "transactions": [{"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 1000.0, "price": 280.19, "total_value": 280190.0, "post_transaction_shares": 128586.0, "is_10b5_1_planned": true}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-10/CMCSA.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-10/CMCSA.jsonl new file mode 100644 index 0000000..77d948f --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-10/CMCSA.jsonl @@ -0,0 +1 @@ +{"metadata": {"ticker": "CMCSA", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001225208-26-004342", "url": "https://www.sec.gov/Archives/edgar/data/1166691/000122520826004342/xslF345X06/doc4.xml", "ingested_at": "2026-04-10T16:09:08.183968"}, "parsed_data": {"reporting_owner": "Murdock Daniel C.", "role": "EVP & Chief Accounting Officer", "transactions": [{"date": "2026-04-03", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 5268.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 64435.0497, "is_10b5_1_planned": false}, {"date": "2026-04-03", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 2073.0, "price": 27.93, "total_value": 57898.89, "post_transaction_shares": 62362.0497, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-10/CRWD.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-10/CRWD.jsonl new file mode 100644 index 0000000..87df656 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-10/CRWD.jsonl @@ -0,0 +1 @@ +{"metadata": {"ticker": "CRWD", "form_type": "8-K", "filed_at": "2026-04-06", "accession_no": "0001535527-26-000013", "url": "https://www.sec.gov/Archives/edgar/data/1535527/000153552726000013/crwd-20260406.htm", "ingested_at": "2026-04-10T16:09:19.096046"}, "parsed_data": {"is_chunked": true, "item_chunks": {"8.01": "Item 8.01 Other Events.\n\nOn April 6, 2026, the Company announced that its Board of Directors has approved the repurchase of up to an additional $500 million of the Company’s common stock, bringing the Company’s total repurchase authorization to $1.5 billion (together, the “Share Repurchase Program”). Under the Share Repurchase Program, the Company has repurchased 413,130 shares of its outstanding Class A common stock at an average price of $364.57 per share, for an aggregate purchase price of $150.6 million.\n\nThe Share Repurchase Program does not have a fixed expiration date and does not obligate the Company to acquire any specific number of shares. Repurchases may be made from time to time using a variety of methods, including open market purchases, privately negotiated transactions, Rule 10b5-1 trading plans and other means. The timing, manner, price and amount of any repurchases will be determined by the Company in its discretion and will depend on a variety of factors, including legal requirements, price and economic and market conditions. The Company currently expects to use the Share Repurchase Program opportunistically depending on the market price of the common stock and other factors, and there can be no assurance that any shares will be repurchased under the Share Repurchase Program.\n\nForward-Looking Statements\n\nThis Form 8-K contains forward-looking statements that involve risks and uncertainties, including statements regarding the Share Repurchase Program and the factors that will impact the amount and timing of purchases, if any, thereunder. A number of factors could cause outcomes to differ materially from our statements, including the risks and uncertainties included in our filings with the Securities and Exchange Commission, particularly under the caption “Risk Factors” in our most recently filed Annual Report on Form 10-K. Accordingly, you should not place undue reliance on these forward-looking statements. All forward-looking statements are based on information currently available to us, and we do not assume any obligation to update any statement to reflect changes in circumstances or our expectations.\n\n2\n\n---", "9.01": "Item 9.01 Financial Statements and Exhibits.\n\n(d) Exhibits\n\n| | | | | | | | | |\n| --- | --- | --- | --- | --- | --- | --- | --- | --- |\n| | | | | | | | | |\n| Exhibit Number | | | | | | Description of Exhibit | | |\n| 99.1 | | | | | | Press release dated April 6, 2026 | | |\n| 104 | | | | | | Cover Page Interactive Data File - the cover page XBRL tags are embedded within the Inline XBRL document | | |\n\n3\n\n---"}}, "raw_text": "8K_PARSED_INTO_MARKDOWN_CHUNKS"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-10/CSCO.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-10/CSCO.jsonl new file mode 100644 index 0000000..25183ba --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-10/CSCO.jsonl @@ -0,0 +1,2 @@ +{"metadata": {"ticker": "CSCO", "form_type": "4", "filed_at": "2026-04-07", "accession_no": "0000858877-26-000052", "url": "https://www.sec.gov/Archives/edgar/data/858877/000085887726000052/xslF345X06/wk-form4_1775592372.xml", "ingested_at": "2026-04-10T16:09:03.851425"}, "parsed_data": {"reporting_owner": "Shimer Peter A", "role": "Other", "transactions": [{"date": "2026-04-06", "code": "A", "direction": "OTHER (A)", "shares": 2333.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 2333.0, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "CSCO", "form_type": "8-K", "filed_at": "2026-04-06", "accession_no": "0000858877-26-000048", "url": "https://www.sec.gov/Archives/edgar/data/858877/000085887726000048/csco-20260331.htm", "ingested_at": "2026-04-10T16:09:04.051957"}, "parsed_data": {"is_chunked": true, "item_chunks": {"5.02": "Item 5.02. | | | Departure of Directors or Certain Officers; Election of Directors; Appointment of Certain Officers; Compensatory Arrangements of Certain Officers. | | |\n\nDeparture of Director\n\nOn March 31, 2026, in light of the increased time and focus required of his new role as Chief Executive Officer of Verizon Communications Inc., Daniel H. Schulman notified Cisco Systems, Inc. (“Cisco”) of his decision to resign from the Board of Directors (\"Board\") of Cisco effective May 21, 2026.\n\nAppointment of Director\n\nOn April 4, 2026, the Board of Cisco appointed Peter A. Shimer as a member of the Board effective April 6, 2026. In connection with his appointment, the Board determined that Mr. Shimer is “independent” under the applicable listing standards of The Nasdaq Stock Market LLC. The Board has also appointed Mr. Shimer to serve as a member of the Audit Committee of the Board.\n\nIn connection with his service as a director, Mr. Shimer will receive Cisco’s standard non-employee director cash and equity compensation. Mr. Shimer will receive a pro rata portion of the $105,000 annual cash retainer, paid quarterly in arrears, for his service through the remaining portion of the year ending at Cisco's 2026 annual meeting of stockholders (the \"2026 Annual Meeting\"). Mr. Shimer will also receive a pro rata portion of the Audit Committee member annual cash retainer fees, paid quarterly in arrears, for service on such committee through the remaining portion of the year ending at the 2026 Annual Meeting. Non-employee directors may instead elect to receive the annual cash retainer, committee cash retainer fees or other cash fees in fully vested shares of Cisco common stock, fully vested deferred stock units that would be settled in shares after the non-employee director leaves the Board, or a deferred cash payment under the Cisco Systems, Inc. Deferred Compensation Plan. Upon his appointment, pursuant to the Board’s equity grant policy for non-employee directors, Mr. Shimer automatically received a fully vested initial non-employee director equity award under Cisco’s 2005 Stock Incentive Plan with a grant date fair value equal to a pro rata portion of $270,000 based on the portion of the year of his board service. Non-employee directors may elect to defer receipt of the equity award such that the award would be settled in shares after the non-employee director leaves the Board. Non-employee directors are also eligible to participate in Cisco’s charitable matching gifts program (for calendar year 2026, the maximum match amount is $25,000 for Cisco's non-employee directors).\n\nIn connection with his appointment, Mr. Shimer has entered into Cisco’s standard form of Indemnity Agreement with Cisco which provides for indemnification of an indemnitee to the fullest extent permitted by law. The foregoing description of the Indemnity Agreement does not purport to be complete and is qualified in its entirety by the full text of the form of Indemnity Agreement, which was filed with the Securities and Exchange Commission on January 25, 2021 as Exhibit 10.1 to Cisco’s Current Report on Form 8-K.\n\n---"}}, "raw_text": "8K_PARSED_INTO_MARKDOWN_CHUNKS"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-10/GOOGL.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-10/GOOGL.jsonl new file mode 100644 index 0000000..24ce86b --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-10/GOOGL.jsonl @@ -0,0 +1 @@ +{"metadata": {"ticker": "GOOGL", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001193125-26-142372", "url": "https://www.sec.gov/Archives/edgar/data/1652044/000119312526142372/xslF345X06/ownership.xml", "ingested_at": "2026-04-10T16:09:00.921701"}, "parsed_data": {"reporting_owner": "O'Toole Amie Thuener", "role": "VP, Chief Accounting Officer", "transactions": [{"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 617.0, "price": 289.63, "total_value": 178701.71, "post_transaction_shares": 10093.0, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-10/INTC.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-10/INTC.jsonl new file mode 100644 index 0000000..f7ed8ea --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-10/INTC.jsonl @@ -0,0 +1,2 @@ +{"metadata": {"ticker": "INTC", "form_type": "8-K", "filed_at": "2026-04-08", "accession_no": "0000050863-26-000072", "url": "https://www.sec.gov/Archives/edgar/data/50863/000005086326000072/intc-20260408.htm", "ingested_at": "2026-04-10T16:09:08.780962"}, "parsed_data": {"is_chunked": true, "item_chunks": {"8.01": "Item 8.01 Other Events\n\nOn April 8, 2026, Intel Corporation (“Intel”) repurchased from Apollo-managed funds and affiliates their 49% equity interest in the parties’ joint venture related to Intel’s Fab 34 in Ireland. The $14.2 billion repurchase price was financed by Intel with cash on hand and a bridge loan of $6.5 billion, which Intel intends to refinance, subject to market conditions. Intel owns 100% of the joint venture following the repurchase.\n\nThe joint venture was created and operated pursuant to agreements entered into by the parties in June 2024. At that time, Apollo-managed funds and affiliates acquired their 49% ownership interest in the joint venture and the parties entered into ancillary agreements with respect to Intel’s construction, commissioning, operation, management, maintenance, utilization and purchase of wafers produced in Fab 34. The repurchase of the joint venture interest by Intel was completed pursuant to an April 1, 2026 agreement between the parties, and Intel expects to terminate the various ancillary agreements that had governed the arrangement and wind up the joint venture.", "9.01": "Item 9.01 Financial Statements and Exhibits.\n\n(d) Exhibits.\n\nThe following exhibits are provided as part of this report:\n\n| | | | | | |\n| --- | --- | --- | --- | --- | --- |\n| | | | | | |\n| Exhibit Number | | | Description | | |\n| 104 | | | Cover Page Interactive Data File, formatted in Inline XBRL and included as Exhibit 101. | | |\n\n---"}}, "raw_text": "8K_PARSED_INTO_MARKDOWN_CHUNKS"} +{"metadata": {"ticker": "INTC", "form_type": "8-K", "filed_at": "2026-04-03", "accession_no": "0000050863-26-000069", "url": "https://www.sec.gov/Archives/edgar/data/50863/000005086326000069/intc-20260330.htm", "ingested_at": "2026-04-10T16:09:09.012008"}, "parsed_data": {"is_chunked": true, "item_chunks": {"5.02": "Item 5.02 Departure of Directors or Certain Officers; Election of Directors; Appointment of Certain Officers; Compensatory Arrangements of Certain Officers.\n\nOn March 30,2026, Intel Corporation determined that April Miller Boise, Intel’s Executive Vice President and Chief Legal Officer, will separate from Intel effective as of June 1, 2026. Upon her departure on June 1, 2026, Ms. Miller Boise will be entitled to severance benefits in accordance with the terms and conditions of the Intel Corporation Executive Severance Plan, as previously disclosed, in exchange for a release of claims in favor of Intel.", "9.01": "Item 9.01 Financial Statements and Exhibits.\n\n(d) Exhibits.\n\nThe following exhibits are provided as part of this report:\n\n| | | | | | |\n| --- | --- | --- | --- | --- | --- |\n| | | | | | |\n| Exhibit Number | | | Description | | |\n| 104 | | | Cover Page Interactive Data File, formatted in Inline XBRL and included as Exhibit 101. | | |\n\n---"}}, "raw_text": "8K_PARSED_INTO_MARKDOWN_CHUNKS"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-10/INTU.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-10/INTU.jsonl new file mode 100644 index 0000000..89260f9 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-10/INTU.jsonl @@ -0,0 +1,6 @@ +{"metadata": {"ticker": "INTU", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001628280-26-023706", "url": "https://www.sec.gov/Archives/edgar/data/896878/000162828026023706/xslF345X06/wk-form4_1775249487.xml", "ingested_at": "2026-04-10T16:09:05.812311"}, "parsed_data": {"reporting_owner": "Goodarzi Sasan K", "role": "CEO, President and Director", "transactions": [{"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 653.529, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 14264.957, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 893.612, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 15158.569, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 802.006, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 15960.575, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 863.013, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 16823.588, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 30.832, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 16854.42, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 1277.861, "price": 432.38, "total_value": 552521.5391800001, "post_transaction_shares": 15576.559, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "INTU", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001628280-26-023704", "url": "https://www.sec.gov/Archives/edgar/data/896878/000162828026023704/xslF345X06/wk-form4_1775249417.xml", "ingested_at": "2026-04-10T16:09:05.991327"}, "parsed_data": {"reporting_owner": "McLean Kerry J", "role": "EVP, Gen. Counsel & Corp. Sec.", "transactions": [{"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 244.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 28657.7666, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 236.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 28893.7666, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 199.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 29092.7666, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 170.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 29262.7666, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 301.627, "price": 432.38, "total_value": 130417.48226, "post_transaction_shares": 28961.1396, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "INTU", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001628280-26-023701", "url": "https://www.sec.gov/Archives/edgar/data/896878/000162828026023701/xslF345X06/wk-form4_1775249278.xml", "ingested_at": "2026-04-10T16:09:06.198532"}, "parsed_data": {"reporting_owner": "Hotz Lauren D", "role": "SVP, Chief Accounting Officer", "transactions": [{"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 41.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 2055.7352, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 104.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 2159.7352, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 97.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 2256.7352, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 88.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 2344.7352, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 120.548, "price": 432.38, "total_value": 52122.54424, "post_transaction_shares": 2224.1872, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "INTU", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001628280-26-023698", "url": "https://www.sec.gov/Archives/edgar/data/896878/000162828026023698/xslF345X06/wk-form4_1775249186.xml", "ingested_at": "2026-04-10T16:09:06.376791"}, "parsed_data": {"reporting_owner": "Hilliard Caryl Lyn", "role": "EVP, People and Places", "transactions": [{"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 122.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 23018.008, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 110.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 23128.008, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 87.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 23215.008, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 150.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 23365.008, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 212.093, "price": 432.38, "total_value": 91704.77133999999, "post_transaction_shares": 23152.915, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "INTU", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001628280-26-023696", "url": "https://www.sec.gov/Archives/edgar/data/896878/000162828026023696/xslF345X06/wk-form4_1775249122.xml", "ingested_at": "2026-04-10T16:09:06.564175"}, "parsed_data": {"reporting_owner": "Hanebrink Anton", "role": "EVP, Corp Strategy and Dev", "transactions": [{"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 348.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 29953.249, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 252.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 30205.249, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 224.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 30429.249, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 418.253, "price": 432.38, "total_value": 180844.23213999998, "post_transaction_shares": 30010.996, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "INTU", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001628280-26-023690", "url": "https://www.sec.gov/Archives/edgar/data/896878/000162828026023690/xslF345X06/wk-form4_1775248743.xml", "ingested_at": "2026-04-10T16:09:06.783184"}, "parsed_data": {"reporting_owner": "Aujla Sandeep", "role": "EVP and CFO", "transactions": [{"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 2665.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 3239.1366, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 346.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 3585.1366, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 349.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 3934.1366, "is_10b5_1_planned": false}, {"date": "2026-04-01", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 1725.362, "price": 432.38, "total_value": 746012.02156, "post_transaction_shares": 2208.7746, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-10/MDLZ.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-10/MDLZ.jsonl new file mode 100644 index 0000000..0ff4587 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-10/MDLZ.jsonl @@ -0,0 +1,2 @@ +{"metadata": {"ticker": "MDLZ", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001628280-26-023648", "url": "https://www.sec.gov/Archives/edgar/data/1103982/000162828026023648/xslF345X06/wk-form4_1775247097.xml", "ingested_at": "2026-04-10T16:09:12.119717"}, "parsed_data": {"reporting_owner": "Lilak Stephanie", "role": "EVP and Chief People Officer", "transactions": [{"date": "2026-04-01", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 3218.0, "price": 57.07, "total_value": 183651.26, "post_transaction_shares": 24118.0, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "MDLZ", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001628280-26-023646", "url": "https://www.sec.gov/Archives/edgar/data/1103982/000162828026023646/xslF345X06/wk-form4_1775247057.xml", "ingested_at": "2026-04-10T16:09:12.334151"}, "parsed_data": {"reporting_owner": "Kuhn Volker", "role": "EVP and President, Europe", "transactions": [{"date": "2026-04-01", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 90.0, "price": 57.07, "total_value": 5136.3, "post_transaction_shares": 25820.0, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-10/MELI.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-10/MELI.jsonl new file mode 100644 index 0000000..6ba2edc --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-10/MELI.jsonl @@ -0,0 +1 @@ +{"metadata": {"ticker": "MELI", "form_type": "8-K", "filed_at": "2026-04-03", "accession_no": "0001999371-26-007656", "url": "https://www.sec.gov/Archives/edgar/data/1099590/000199937126007656/meli_8k-033126.htm", "ingested_at": "2026-04-10T16:09:17.516410"}, "parsed_data": {"is_chunked": true, "item_chunks": {"5.02": "Item 5.02** | **Departure of Directors or Certain Officers; Election of Directors; Appointment of Certain Officers; Compensatory Arrangements of Certain Officers.** |\n\n**Establishment of Performance Goals under the 2026 Bonus Program**\n\nOn March 31, 2026, the Board of Directors (the “Board”) of\nMercadoLibre, Inc. (the “Company”) established the performance goals for the Company’s bonus program for the 2026 fiscal\nyear (the “2026 Bonus Program”). Under the 2026 Bonus Program, the bonus payout for each of Ariel Szarfsztejn (Chief Executive\nOfficer), Marcos Galperin (Executive Chairman), Osvaldo Giménez (Fintech President), Daniel Rabinovich (Technology & Operations\nPresident), and Martin de los Santos (EVP and Chief Financial Officer) (referred to below as “NEOs”) is based on achievement\nof Net revenues and financial income (in constant dollars), Income from operations (in constant dollars), Total payment volume - adjusted\n(the total sum of all transactions paid for using Mercado Pago, including marketplace and non-marketplace transactions, excluding peer-to-peer\ntransactions) (in constant dollars) and the Company’s Competitive Net Promoter Score. The Board has determined a target bonus for\neach NEO and applies an adjustment of up to + 50% or -50% to each bonus based upon the individual performance of each NEO.\n\nThe Board set each NEO’s target bonus under the 2026 Bonus Program\nas four months of base salary (33.33% of each NEO’s annual base salary).\n\n**Adoption of the 2026 Long Term Retention Program**\n\nOn March 31, 2026, the Board approved the adoption of the 2026 Long\nTerm Retention Program (the “2026 LTRP”) and, after taking into account a compensation competitiveness analysis carried out\nby the Company’s independent third-party compensation consultant, established the target award for each NEO under the 2026 LTRP.\nThe 2026 LTRP provides the NEOs, along with other members of senior management, with the opportunity to receive cash payments annually\nfor a period of six years (with the first payment occurring between January 1, 2027 and April 30, 2027, as determined by the Company),\nsubject to continued employment on each payment date (other than in specified circumstances). Each award to an NEO under the 2026 LTRP is deemed to have a Grant Date\n(as defined in the 2026 LTRP) of January 1, 2026. Under the 2026 LTRP, each NEO shall receive:\n\n| | | | |\n| --- | --- | --- | --- |\n| | ● | | 16.66% of half of his or her target 2026 LTRP award annually for a period of six years (with the first payment occurring between January 1, 2027 and April 30, 2027) (the “Annual Fixed Payment”); and |\n\n| | | | |\n| --- | --- | --- | --- |\n| | ● | | on each date the Company pays the Annual Fixed Payment, each NEO will also receive a payment equal to the product of (i) 16.66% of half of the NEO’s target 2026 LTRP award and (ii) the quotient of (a) the Applicable Year Stock Price (as defined below) over (b) the average closing price of the Company’s common stock on NASDAQ during the final 60 trading days of 2025. For purposes of the 2026 LTRP, the “Applicable Year Stock Price” is the average closing price of the Company’s common stock on NASDAQ during the final 60 trading days of the fiscal year preceding the fiscal year in which the applicable payment date occurs, for so long as our common stock is listed on NASDAQ. |\n\nThe target 2026 LTRP awards for our NEOs are set forth below.\n\n| | | | | | | |\n| --- | --- | --- | --- | --- | --- | --- |\n| Name | | Title | | Target 2026 LTRP Award (nominal) | | |\n| Ariel Szarfsztejn | | Chief Executive Officer | | $ | 14,000,000 | |\n| Osvaldo Giménez | | Fintech President | | $ | 10,000,000 | |\n| Daniel Rabinovich | | Technology & Operations President | | $ | 10,000,000 | |\n| Martin de los Santos | | Executive Vice President & Chief Financial Officer | | $ | 4,000,000 | |\n| Marcos Galperin | | Executive Chairman | | $ | 3,500,000 | |\n\n| |\n| --- |\n| |\n\nThe foregoing description of the 2026 LTRP does not purport to be complete\nand is qualified in its entirety by reference to the full text of the 2026 LTRP, which is filed as Exhibit 10.1 to this Current Report\non Form 8-K and is incorporated herein by reference.\n\n| | |\n| --- | --- |\n| **Item 9.01** | **Financial Statements and Exhibits.** |\n\n| | |\n| --- | --- |\n| (d) | *Exhibits.* |\n\nThe following exhibits are filed herewith.\n\n| | | | |\n| --- | --- | --- | --- |\n| **Exhibit** **Number** | | | **Description** |\n| | | | |\n| 10.1 | | | MercadoLibre, Inc. 2026 Long Term Retention Program |\n\n| |\n| --- |\n| |\n\n**EXHIBIT INDEX**\n\n| | | |\n| --- | --- | --- |\n| **Exhibit** **Number** | | **Description** |\n| | | |\n| 10.1 | | MercadoLibre, Inc. 2026 Long Term Retention Program |\n\n| |\n| --- |\n| |\n\n**SIGNATURES**\n\nPursuant to the requirements of the Securities Exchange\nAct of 1934, the registrant has duly caused this report to be signed on its behalf by the undersigned hereunto duly authorized.\n\n| | | | |\n| --- | --- | --- | --- |\n| | MercadoLibre, Inc. | | |\n| | | | |\n| Dated: April 3, 2026 | By: | /s/ Martin de los Santos | |\n| | Name: | Martin de los Santos | |\n| | Title: | Executive Vice President and Chief Financial Officer | |\n| | | | |\n\n \n\n| |\n| --- |\n| |"}}, "raw_text": "8K_PARSED_INTO_MARKDOWN_CHUNKS"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-10/MU.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-10/MU.jsonl new file mode 100644 index 0000000..d1f5307 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-10/MU.jsonl @@ -0,0 +1 @@ +{"metadata": {"ticker": "MU", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001632063-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/723125/000163206326000002/xslF345X06/primarydocument.xml", "ingested_at": "2026-04-10T16:09:16.111989"}, "parsed_data": {"reporting_owner": "ARNZEN APRIL S", "role": "EVP and Chief People Officer", "transactions": [{"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 8630.0, "price": 345.13, "total_value": 2978471.9, "post_transaction_shares": 157107.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 5766.0, "price": 346.22, "total_value": 1996304.5200000003, "post_transaction_shares": 151341.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 604.0, "price": 346.83, "total_value": 209485.31999999998, "post_transaction_shares": 150737.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 25000.0, "price": 348.46, "total_value": 8711500.0, "post_transaction_shares": 125737.0, "is_10b5_1_planned": true}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-10/NFLX.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-10/NFLX.jsonl new file mode 100644 index 0000000..2a06ef4 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-10/NFLX.jsonl @@ -0,0 +1 @@ +{"metadata": {"ticker": "NFLX", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001543133-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/1065280/000154313326000002/xslF345X06/wk-form4_1775246849.xml", "ingested_at": "2026-04-10T16:09:02.841105"}, "parsed_data": {"reporting_owner": "Neumann Spencer Adam", "role": "Chief Financial Officer", "transactions": [{"date": "2026-04-02", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 7770.0, "price": 38.105, "total_value": 296075.85, "post_transaction_shares": 81557.0, "is_10b5_1_planned": true}, {"date": "2026-04-02", "code": "M", "direction": "VESTING (Options/RSU)", "shares": 20860.0, "price": 36.408, "total_value": 759470.88, "post_transaction_shares": 102417.0, "is_10b5_1_planned": true}, {"date": "2026-04-02", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 28630.0, "price": 98.0, "total_value": 2805740.0, "post_transaction_shares": 73787.0, "is_10b5_1_planned": true}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-10/PANW.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-10/PANW.jsonl new file mode 100644 index 0000000..ab806ab --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-10/PANW.jsonl @@ -0,0 +1,2 @@ +{"metadata": {"ticker": "PANW", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001882285-26-000007", "url": "https://www.sec.gov/Archives/edgar/data/1327567/000188228526000007/xslF345X06/ownership.xml", "ingested_at": "2026-04-10T16:09:11.401119"}, "parsed_data": {"reporting_owner": "Paul Josh D.", "role": "Chief Accounting Officer", "transactions": [{"date": "2026-04-01", "code": "F", "direction": "TAX_WITHHOLDING", "shares": 947.0, "price": 160.32, "total_value": 151823.03999999998, "post_transaction_shares": 84236.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 1100.0, "price": 161.4, "total_value": 177540.0, "post_transaction_shares": 83136.0, "is_10b5_1_planned": true}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "PANW", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001852540-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/1327567/000185254026000002/xslF345X06/ownership.xml", "ingested_at": "2026-04-10T16:09:11.579845"}, "parsed_data": {"reporting_owner": "Golechha Dipak", "role": "EVP, Chief Financial Officer", "transactions": [{"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 200.0, "price": 157.81, "total_value": 31562.0, "post_transaction_shares": 155050.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 1300.0, "price": 160.039, "total_value": 208050.69999999998, "post_transaction_shares": 153750.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 3500.0, "price": 160.704, "total_value": 562464.0, "post_transaction_shares": 150250.0, "is_10b5_1_planned": true}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-10/REGN.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-10/REGN.jsonl new file mode 100644 index 0000000..4a395de --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-10/REGN.jsonl @@ -0,0 +1,2 @@ +{"metadata": {"ticker": "REGN", "form_type": "8-K", "filed_at": "2026-04-08", "accession_no": "0001104659-26-040661", "url": "https://www.sec.gov/Archives/edgar/data/872589/000110465926040661/tm2611354d1_8k.htm", "ingested_at": "2026-04-10T16:09:13.124043"}, "parsed_data": {"is_chunked": true, "item_chunks": {"2.02": "Item 2.02.** | **Results of Operations and Financial Condition.** |\n\nRegeneron Pharmaceuticals, Inc. (“Regeneron”\nor the “Company”) currently expects that its financial results calculated in accordance with U.S. generally accepted\naccounting principles (“GAAP”) and its non-GAAP financial results for the first quarter 2026 will include an acquired\nin-process research and development (“IPR&D”) charge of approximately $102 million on a pre-tax basis. This charge\nprimarily relates to premium on equity securities purchased, as well as development milestone and up-front payments, in connection with\ncollaboration and licensing agreements. The acquired IPR&D charge is expected to negatively impact each of GAAP and non-GAAP net income\nper diluted share for the first quarter 2026 by approximately $0.81.\n\nAcquired IPR&D charges may include IPR&D\nacquired in connection with asset acquisitions as well as up-front, opt-in, certain development milestone payments, and premiums paid\non equity securities related to collaboration and licensing agreements. Regeneron does not forecast such acquired IPR&D charges due\nto the uncertainty of the future occurrence, magnitude, and timing of these transactions in any given period.\n\nRegeneron’s results for the first quarter\n2026 have not been finalized and are subject to Regeneron’s financial statement closing procedures. There can be no assurance that\nactual results will not differ from the preliminary (unaudited) estimates described herein.\n\nThe information included in this Current Report\non Form 8-K shall not be deemed “filed” for purposes of Section 18 of the Securities Exchange Act of 1934, as amended,\nnor shall such information be deemed incorporated by reference in any filing under the Securities Act of 1933, as amended, except as shall\nbe expressly set forth by specific reference in such a filing.\n\n***Note\nRegarding Forward-Looking Statements***\n\n*This Current Report\non Form 8-K (this “Report”) includes forward-looking statements that involve risks and uncertainties relating\nto future events and the future performance of Regeneron Pharmaceuticals, Inc. (“Regeneron” or the “Company”),\nand actual events or results may differ materially from these forward-looking statements. Words such as “anticipate,” “expect,”\n“intend,” “plan,” “believe,” “seek,” “estimate,” variations of such words,\nand similar expressions are intended to identify such forward-looking statements, although not all forward-looking statements contain\nthese identifying words. These statements concern, and these risks and uncertainties include, among others, Regeneron’s expected\nacquired in-process research and development charge for the quarterly period ended March 31, 2026 and its expected impact on GAAP\nand non-GAAP net income per diluted share for this period as discussed in this Report. A more complete description of these and other\nmaterial risks can be found in Regeneron’s filings with the U.S. Securities and Exchange Commission. Any forward-looking statements\nare made based on management’s current beliefs and judgment, and the reader is cautioned not to rely on any forward-looking statements\nmade by Regeneron. Regeneron does not undertake any obligation to update (publicly or otherwise) any forward-looking statement, including\nwithout limitation any financial projection or guidance, whether as a result of new information, future events, or otherwise.*\n\n***Note Regarding Non-GAAP Financial Measures***\n\n*This Report references non-GAAP net income\nper diluted share, which is a financial measure that is not calculated in accordance with U.S. Generally Accepted Accounting Principles\n(“GAAP”). This non-GAAP financial measure is computed by excluding certain non-cash and/or other items from the related\nGAAP financial measure. The Company also includes a non-GAAP adjustment for the estimated income tax effect of reconciling items. The\nCompany makes such adjustments for items the Company does not view as useful in evaluating its operating performance. Management uses\nthis and other non-GAAP measures for planning, budgeting, forecasting, assessing historical performance, and making financial and operational\ndecisions, and also provides forecasts to investors on this basis. Additionally, such non-GAAP measures provide investors with an enhanced\nunderstanding of the financial performance of the Company's core business operations. However, there are limitations in the use of such\nnon-GAAP financial measures as they exclude certain expenses that are recurring in nature. Furthermore, the Company's non-GAAP financial\nmeasures may not be comparable with non-GAAP information provided by other companies. Any non-GAAP financial measure presented by Regeneron\nshould be considered supplemental to, and not a substitute for, measures of financial performance prepared in accordance with GAAP.*\n\n**SIGNATURES**\n\nPursuant to the requirements of the Securities\nExchange Act of 1934, the registrant has duly caused this report to be signed on its behalf by the undersigned thereunto duly authorized.\n\n| | |\n| --- | --- |\n| | **REGENERON PHARMACEUTICALS, INC.** |\n| | |\n| | /s/ Joseph J. LaRosa |\n| | Joseph J. LaRosa |\n| | Executive Vice President, General Counsel and Secretary |\n\nDate: April 8, 2026"}}, "raw_text": "8K_PARSED_INTO_MARKDOWN_CHUNKS"} +{"metadata": {"ticker": "REGN", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001104659-26-039613", "url": "https://www.sec.gov/Archives/edgar/data/872589/000110465926039613/xslF345X06/tm2611142-1_4seq1.xml", "ingested_at": "2026-04-10T16:09:13.352475"}, "parsed_data": {"reporting_owner": "RYAN ARTHUR F", "role": "Other", "transactions": [{"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 1.0, "price": 771.32, "total_value": 771.32, "post_transaction_shares": 17702.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 3.0, "price": 772.76, "total_value": 2318.2799999999997, "post_transaction_shares": 17699.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 8.0, "price": 773.59, "total_value": 6188.72, "post_transaction_shares": 17691.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 8.0, "price": 774.58, "total_value": 6196.64, "post_transaction_shares": 17683.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 14.0, "price": 775.58, "total_value": 10858.12, "post_transaction_shares": 17669.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 13.0, "price": 776.62, "total_value": 10096.06, "post_transaction_shares": 17656.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 9.0, "price": 777.42, "total_value": 6996.78, "post_transaction_shares": 17647.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 4.0, "price": 778.24, "total_value": 3112.96, "post_transaction_shares": 17643.0, "is_10b5_1_planned": true}, {"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 40.0, "price": 779.71, "total_value": 31188.4, "post_transaction_shares": 17603.0, "is_10b5_1_planned": true}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-10/SBUX.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-10/SBUX.jsonl new file mode 100644 index 0000000..f6e23fd --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-10/SBUX.jsonl @@ -0,0 +1 @@ +{"metadata": {"ticker": "SBUX", "form_type": "4", "filed_at": "2026-04-08", "accession_no": "0000829224-26-000066", "url": "https://www.sec.gov/Archives/edgar/data/829224/000082922426000066/xslF345X06/form4.xml", "ingested_at": "2026-04-10T16:09:10.897641"}, "parsed_data": {"reporting_owner": "BREWER BRADY", "role": "ceo, International", "transactions": [{"date": "2026-04-06", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 1641.0, "price": 90.0, "total_value": 147690.0, "post_transaction_shares": 84375.502, "is_10b5_1_planned": true}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-10/VRTX.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-10/VRTX.jsonl new file mode 100644 index 0000000..a65b6d6 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-10/VRTX.jsonl @@ -0,0 +1 @@ +{"metadata": {"ticker": "VRTX", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0000875320-26-000157", "url": "https://www.sec.gov/Archives/edgar/data/875320/000087532026000157/xslF345X06/wk-form4_1775249628.xml", "ingested_at": "2026-04-10T16:09:10.299208"}, "parsed_data": {"reporting_owner": "Liu Joy", "role": "EVP and Chief Legal Officer", "transactions": [{"date": "2026-04-01", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 978.0, "price": 449.17, "total_value": 439288.26, "post_transaction_shares": 21833.0, "is_10b5_1_planned": true}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-10/_SUMMARY.json b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-10/_SUMMARY.json new file mode 100644 index 0000000..3fef758 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-10/_SUMMARY.json @@ -0,0 +1,86 @@ +{ + "date": "2026-04-10", + "total_filings": 44, + "ticker_breakdown": { + "MELI": { + "4": 0, + "8-K": 1 + }, + "CRWD": { + "4": 0, + "8-K": 1 + }, + "AMZN": { + "4": 6, + "8-K": 1 + }, + "VRTX": { + "4": 1, + "8-K": 0 + }, + "ADI": { + "4": 7, + "8-K": 0 + }, + "PANW": { + "4": 2, + "8-K": 0 + }, + "MU": { + "4": 1, + "8-K": 0 + }, + "AMD": { + "4": 1, + "8-K": 0 + }, + "INTU": { + "4": 6, + "8-K": 0 + }, + "AAPL": { + "4": 3, + "8-K": 0 + }, + "CDNS": { + "4": 1, + "8-K": 0 + }, + "CMCSA": { + "4": 1, + "8-K": 0 + }, + "NFLX": { + "4": 1, + "8-K": 0 + }, + "INTC": { + "4": 0, + "8-K": 2 + }, + "GOOGL": { + "4": 1, + "8-K": 0 + }, + "CSCO": { + "4": 1, + "8-K": 1 + }, + "MDLZ": { + "4": 2, + "8-K": 0 + }, + "REGN": { + "4": 1, + "8-K": 1 + }, + "AVGO": { + "4": 0, + "8-K": 1 + }, + "SBUX": { + "4": 1, + "8-K": 0 + } + } +} \ No newline at end of file diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-12/ADI.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-12/ADI.jsonl new file mode 100644 index 0000000..a300f9e --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-12/ADI.jsonl @@ -0,0 +1,6 @@ +{"metadata": {"ticker": "ADI", "form_type": "4", "filed_at": "2026-04-09", "accession_no": "0000006281-26-000043", "url": "https://www.sec.gov/Archives/edgar/data/6281/000000628126000043/xslF345X06/wk-form4_1775768645.xml", "ingested_at": "2026-04-12T10:47:22.199483"}, "parsed_data": {"reporting_owner": "Sondel Michael", "role": "CAO (principal acct. officer)", "transactions": [{"date": "2026-04-07", "code": "A", "direction": "OTHER (A)", "shares": 1341.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 15854.578, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "ADI", "form_type": "4", "filed_at": "2026-04-09", "accession_no": "0000006281-26-000042", "url": "https://www.sec.gov/Archives/edgar/data/6281/000000628126000042/xslF345X06/wk-form4_1775768622.xml", "ingested_at": "2026-04-12T10:47:22.379173"}, "parsed_data": {"reporting_owner": "ROCHE VINCENT", "role": "Chair & CEO", "transactions": [{"date": "2026-04-07", "code": "A", "direction": "OTHER (A)", "shares": 19712.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 187537.875, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "ADI", "form_type": "4", "filed_at": "2026-04-09", "accession_no": "0000006281-26-000041", "url": "https://www.sec.gov/Archives/edgar/data/6281/000000628126000041/xslF345X06/wk-form4_1775768603.xml", "ingested_at": "2026-04-12T10:47:22.559658"}, "parsed_data": {"reporting_owner": "Puccio Richard C Jr", "role": "EVP and CFO", "transactions": [{"date": "2026-04-07", "code": "A", "direction": "OTHER (A)", "shares": 6513.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 57968.559, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "ADI", "form_type": "4", "filed_at": "2026-04-09", "accession_no": "0000006281-26-000040", "url": "https://www.sec.gov/Archives/edgar/data/6281/000000628126000040/xslF345X06/wk-form4_1775768583.xml", "ingested_at": "2026-04-12T10:47:22.735092"}, "parsed_data": {"reporting_owner": "Nakamura Katsufumi", "role": "SVP, Chief Customer Officer", "transactions": [{"date": "2026-04-07", "code": "A", "direction": "OTHER (A)", "shares": 4085.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 16230.04, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "ADI", "form_type": "4", "filed_at": "2026-04-09", "accession_no": "0000006281-26-000039", "url": "https://www.sec.gov/Archives/edgar/data/6281/000000628126000039/xslF345X06/wk-form4_1775768561.xml", "ingested_at": "2026-04-12T10:47:22.946237"}, "parsed_data": {"reporting_owner": "Jain Vivek", "role": "EVP, Global Operations", "transactions": [{"date": "2026-04-07", "code": "A", "direction": "OTHER (A)", "shares": 6734.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 48823.474, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "ADI", "form_type": "4", "filed_at": "2026-04-09", "accession_no": "0000006281-26-000038", "url": "https://www.sec.gov/Archives/edgar/data/6281/000000628126000038/xslF345X06/wk-form4_1775768544.xml", "ingested_at": "2026-04-12T10:47:23.137968"}, "parsed_data": {"reporting_owner": "Cotter Martin", "role": "SVP, Vertical Business Units", "transactions": [{"date": "2026-04-07", "code": "A", "direction": "OTHER (A)", "shares": 5807.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 56331.884, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-12/AMD.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-12/AMD.jsonl new file mode 100644 index 0000000..16d6108 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-12/AMD.jsonl @@ -0,0 +1 @@ +{"metadata": {"ticker": "AMD", "form_type": "4", "filed_at": "2026-04-08", "accession_no": "0000002488-26-000064", "url": "https://www.sec.gov/Archives/edgar/data/2488/000000248826000064/xslF345X06/wk-form4_1775679123.xml", "ingested_at": "2026-04-12T10:47:13.348560"}, "parsed_data": {"reporting_owner": "Papermaster Mark D", "role": "Chief Technology Officer & EVP", "transactions": [{"date": "2026-04-06", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 3293.0, "price": 225.0, "total_value": 740925.0, "post_transaction_shares": 1294466.0, "is_10b5_1_planned": true}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-12/AMZN.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-12/AMZN.jsonl new file mode 100644 index 0000000..2f74c2b --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-12/AMZN.jsonl @@ -0,0 +1,6 @@ +{"metadata": {"ticker": "AMZN", "form_type": "4", "filed_at": "2026-04-09", "accession_no": "0002024813-26-000004", "url": "https://www.sec.gov/Archives/edgar/data/1018724/000202481326000004/xslF345X06/wk-form4_1775768551.xml", "ingested_at": "2026-04-12T10:47:07.694137"}, "parsed_data": {"reporting_owner": "Garman Matthew S", "role": "CEO Amazon Web Services", "transactions": []}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "AMZN", "form_type": "4", "filed_at": "2026-04-09", "accession_no": "0001936006-26-000010", "url": "https://www.sec.gov/Archives/edgar/data/1018724/000193600626000010/xslF345X06/wk-form4_1775768277.xml", "ingested_at": "2026-04-12T10:47:07.943528"}, "parsed_data": {"reporting_owner": "Herrington Douglas J", "role": "CEO Worldwide Amazon Stores", "transactions": []}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "AMZN", "form_type": "4", "filed_at": "2026-04-09", "accession_no": "0001557979-26-000004", "url": "https://www.sec.gov/Archives/edgar/data/1018724/000155797926000004/xslF345X06/wk-form4_1775767969.xml", "ingested_at": "2026-04-12T10:47:08.130941"}, "parsed_data": {"reporting_owner": "Zapolsky David", "role": "Senior Vice President", "transactions": []}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "AMZN", "form_type": "4", "filed_at": "2026-04-09", "accession_no": "0001639902-26-000004", "url": "https://www.sec.gov/Archives/edgar/data/1018724/000163990226000004/xslF345X06/wk-form4_1775767715.xml", "ingested_at": "2026-04-12T10:47:08.309609"}, "parsed_data": {"reporting_owner": "Olsavsky Brian T", "role": "Senior Vice President and CFO", "transactions": []}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "AMZN", "form_type": "4", "filed_at": "2026-04-09", "accession_no": "0001397333-26-000004", "url": "https://www.sec.gov/Archives/edgar/data/1018724/000139733326000004/xslF345X06/wk-form4_1775767487.xml", "ingested_at": "2026-04-12T10:47:08.502424"}, "parsed_data": {"reporting_owner": "Reynolds Shelley", "role": "Vice President", "transactions": []}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "AMZN", "form_type": "8-K", "filed_at": "2026-04-09", "accession_no": "0001104659-26-041034", "url": "https://www.sec.gov/Archives/edgar/data/1018724/000110465926041034/tm263815d2_8k.htm", "ingested_at": "2026-04-12T10:47:08.706813"}, "parsed_data": {"is_chunked": true, "item_chunks": {"7.01": "ITEM 7.01. REGULATION FD DISCLOSURE.** | **3** |\n| | |\n| **ITEM 9.01. FINANCIAL STATEMENTS AND EXHIBITS.** | **3** |\n| | |\n| **SIGNATURES** | **4** |\n| | |\n| EXHIBIT 99.1 | |\n| | |\n| EXHIBIT 99.2 | |\n\n2\n\nTable of Contents\n\n**ITEM 7.01.****REGULATION\nFD DISCLOSURE.**\n\nThe Company’s\nLetter to Shareholders, which accompanies its Annual Report for the Year Ended December 31, 2025, is attached as Exhibit 99.1, and a\nreconciliation of a non-GAAP financial measure included in the Letter to Shareholders to the most directly comparable financial\nmeasure calculated and presented in accordance with GAAP is included as Exhibit 99.2.\n\n**ITEM 9.01. FINANCIAL STATEMENTS AND EXHIBITS.**\n\n***(d) Exhibits.***\n\n| | |\n| --- | --- |\n| **Exhibit** **Number** | **Description** |\n| | |\n| 99.1 | 2025 Letter to Shareholders. |\n| 99.2 | Reconciliation of Non-GAAP Financial Measure. |\n| 104 | The cover page from this Current Report on Form 8-K, formatted in Inline XBRL (included as Exhibit 101). |\n\n3\n\nTable of Contents\n\n**SIGNATURES**\n\nPursuant to the requirements of the Securities Exchange Act of 1934, the registrant has duly caused this report to be signed on its behalf by the\nundersigned hereunto duly authorized.\n\n| | | |\n| --- | --- | --- |\n| | AMAZON.COM, INC. (REGISTRANT) | |\n| | | |\n| | By: | /s/ Susan K. Jong |\n| | | **Susan K. Jong** |\n| | | **Vice President and Secretary** |\n\nDated: April 9, 2026\n\n4"}}, "raw_text": "8K_PARSED_INTO_MARKDOWN_CHUNKS"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-12/AVGO.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-12/AVGO.jsonl new file mode 100644 index 0000000..4d322a9 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-12/AVGO.jsonl @@ -0,0 +1,5 @@ +{"metadata": {"ticker": "AVGO", "form_type": "4", "filed_at": "2026-04-10", "accession_no": "0001730168-26-000030", "url": "https://www.sec.gov/Archives/edgar/data/1730168/000173016826000030/xslF345X06/wk-form4_1775861650.xml", "ingested_at": "2026-04-12T10:47:11.107160"}, "parsed_data": {"reporting_owner": "Velaga S. Ram", "role": "President, ISG", "transactions": [{"date": "2026-04-08", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 12955.0, "price": 352.0223, "total_value": 4560448.8965, "post_transaction_shares": 83192.0, "is_10b5_1_planned": false}, {"date": "2026-04-09", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 17260.0, "price": 352.1184, "total_value": 6077563.584, "post_transaction_shares": 65932.0, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "AVGO", "form_type": "4", "filed_at": "2026-04-10", "accession_no": "0001730168-26-000028", "url": "https://www.sec.gov/Archives/edgar/data/1730168/000173016826000028/xslF345X06/wk-form4_1775861306.xml", "ingested_at": "2026-04-12T10:47:11.313716"}, "parsed_data": {"reporting_owner": "TAN HOCK E", "role": "President and CEO", "transactions": [{"date": "2026-04-08", "code": "G", "direction": "OTHER (D)", "shares": 22000.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 110836.0, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "AVGO", "form_type": "4", "filed_at": "2026-04-10", "accession_no": "0001730168-26-000026", "url": "https://www.sec.gov/Archives/edgar/data/1730168/000173016826000026/xslF345X06/wk-form4_1775860888.xml", "ingested_at": "2026-04-12T10:47:11.488943"}, "parsed_data": {"reporting_owner": "PAGE JUSTINE", "role": "Other", "transactions": [{"date": "2026-04-08", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 2018.0, "price": 353.0001, "total_value": 712354.2017999999, "post_transaction_shares": 18164.0, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "AVGO", "form_type": "4", "filed_at": "2026-04-10", "accession_no": "0001730168-26-000024", "url": "https://www.sec.gov/Archives/edgar/data/1730168/000173016826000024/xslF345X06/wk-form4_1775860497.xml", "ingested_at": "2026-04-12T10:47:11.667556"}, "parsed_data": {"reporting_owner": "Kawwas Charlie B", "role": "President, SSG", "transactions": [{"date": "2026-04-08", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 10000.0, "price": 345.227, "total_value": 3452269.9999999995, "post_transaction_shares": 787184.0, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "AVGO", "form_type": "8-K", "filed_at": "2026-04-06", "accession_no": "0001193125-26-144028", "url": "https://www.sec.gov/Archives/edgar/data/1730168/000119312526144028/d87999d8k.htm", "ingested_at": "2026-04-12T10:47:11.859849"}, "parsed_data": {"is_chunked": true, "item_chunks": {"8.01": "Item 8.01 | Other Events. |\n\nBroadcom Inc. (“Broadcom”) and Google LLC (“Google”) have entered into a Long Term Agreement for Broadcom to develop and supply custom Tensor Processing Units (“TPUs”) for Google’s future generations of TPUs and a Supply Assurance Agreement for Broadcom to supply networking and other components to be used in Google’s next-generation AI racks through up to 2031.\n\nSeparately, Broadcom, Google and Anthropic PBC (“Anthropic”) have expanded their current strategic collaboration under which Anthropic, beginning in 2027, will access through Broadcom approximately 3.5 gigawatts as part of the multiple gigawatts of next generation TPU-based AI compute capacity committed by Anthropic. The consumption of such expanded AI compute capacity by Anthropic is dependent on Anthropic’s continued commercial success. In connection with this deployment, the parties are in discussions with certain operational and financial partners.\n\nCautionary Note Regarding Forward-Looking Statements\n\nThis Current Report on Form 8-K contains forward-looking statements (including within the meaning of Section 21E of the Securities Exchange Act of 1934, as amended, and Section 27A of the Securities Act of 1933, as amended). These forward-looking statements are based on current expectations and beliefs of Broadcom’s management, current information available to Broadcom’s management, and current market trends and market conditions, and involve risks and uncertainties that may cause actual results to differ materially from those contained in the forward-looking statements. Accordingly, undue reliance should not be placed on such statements. All forward-looking statements are qualified in their entirety by reference to the risk factors discussed under the heading “Risk Factors” in Broadcom’s Annual Report on Form 10-K for the year ended November 2, 2025, Quarterly Report on Form 10-Q for the period ended February 1, 2026 and any subsequent reports that are filed with the Securities and Exchange Commission and include some important risk factors that may affect future results. Broadcom undertakes no intent or obligation to publicly update or revise the forward-looking statements made in this Current Report on Form 8-K, except as required by law.\n\n---"}}, "raw_text": "8K_PARSED_INTO_MARKDOWN_CHUNKS"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-12/CRWD.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-12/CRWD.jsonl new file mode 100644 index 0000000..47c0d4a --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-12/CRWD.jsonl @@ -0,0 +1 @@ +{"metadata": {"ticker": "CRWD", "form_type": "8-K", "filed_at": "2026-04-06", "accession_no": "0001535527-26-000013", "url": "https://www.sec.gov/Archives/edgar/data/1535527/000153552726000013/crwd-20260406.htm", "ingested_at": "2026-04-12T10:47:25.680379"}, "parsed_data": {"is_chunked": true, "item_chunks": {"8.01": "Item 8.01 Other Events.\n\nOn April 6, 2026, the Company announced that its Board of Directors has approved the repurchase of up to an additional $500 million of the Company’s common stock, bringing the Company’s total repurchase authorization to $1.5 billion (together, the “Share Repurchase Program”). Under the Share Repurchase Program, the Company has repurchased 413,130 shares of its outstanding Class A common stock at an average price of $364.57 per share, for an aggregate purchase price of $150.6 million.\n\nThe Share Repurchase Program does not have a fixed expiration date and does not obligate the Company to acquire any specific number of shares. Repurchases may be made from time to time using a variety of methods, including open market purchases, privately negotiated transactions, Rule 10b5-1 trading plans and other means. The timing, manner, price and amount of any repurchases will be determined by the Company in its discretion and will depend on a variety of factors, including legal requirements, price and economic and market conditions. The Company currently expects to use the Share Repurchase Program opportunistically depending on the market price of the common stock and other factors, and there can be no assurance that any shares will be repurchased under the Share Repurchase Program.\n\nForward-Looking Statements\n\nThis Form 8-K contains forward-looking statements that involve risks and uncertainties, including statements regarding the Share Repurchase Program and the factors that will impact the amount and timing of purchases, if any, thereunder. A number of factors could cause outcomes to differ materially from our statements, including the risks and uncertainties included in our filings with the Securities and Exchange Commission, particularly under the caption “Risk Factors” in our most recently filed Annual Report on Form 10-K. Accordingly, you should not place undue reliance on these forward-looking statements. All forward-looking statements are based on information currently available to us, and we do not assume any obligation to update any statement to reflect changes in circumstances or our expectations.\n\n2\n\n---", "9.01": "Item 9.01 Financial Statements and Exhibits.\n\n(d) Exhibits\n\n| | | | | | | | | |\n| --- | --- | --- | --- | --- | --- | --- | --- | --- |\n| | | | | | | | | |\n| Exhibit Number | | | | | | Description of Exhibit | | |\n| 99.1 | | | | | | Press release dated April 6, 2026 | | |\n| 104 | | | | | | Cover Page Interactive Data File - the cover page XBRL tags are embedded within the Inline XBRL document | | |\n\n3\n\n---"}}, "raw_text": "8K_PARSED_INTO_MARKDOWN_CHUNKS"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-12/CSCO.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-12/CSCO.jsonl new file mode 100644 index 0000000..9783a5d --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-12/CSCO.jsonl @@ -0,0 +1,2 @@ +{"metadata": {"ticker": "CSCO", "form_type": "4", "filed_at": "2026-04-07", "accession_no": "0000858877-26-000052", "url": "https://www.sec.gov/Archives/edgar/data/858877/000085887726000052/xslF345X06/wk-form4_1775592372.xml", "ingested_at": "2026-04-12T10:47:13.849625"}, "parsed_data": {"reporting_owner": "Shimer Peter A", "role": "Other", "transactions": [{"date": "2026-04-06", "code": "A", "direction": "OTHER (A)", "shares": 2333.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 2333.0, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "CSCO", "form_type": "8-K", "filed_at": "2026-04-06", "accession_no": "0000858877-26-000048", "url": "https://www.sec.gov/Archives/edgar/data/858877/000085887726000048/csco-20260331.htm", "ingested_at": "2026-04-12T10:47:14.042073"}, "parsed_data": {"is_chunked": true, "item_chunks": {"5.02": "Item 5.02. | | | Departure of Directors or Certain Officers; Election of Directors; Appointment of Certain Officers; Compensatory Arrangements of Certain Officers. | | |\n\nDeparture of Director\n\nOn March 31, 2026, in light of the increased time and focus required of his new role as Chief Executive Officer of Verizon Communications Inc., Daniel H. Schulman notified Cisco Systems, Inc. (“Cisco”) of his decision to resign from the Board of Directors (\"Board\") of Cisco effective May 21, 2026.\n\nAppointment of Director\n\nOn April 4, 2026, the Board of Cisco appointed Peter A. Shimer as a member of the Board effective April 6, 2026. In connection with his appointment, the Board determined that Mr. Shimer is “independent” under the applicable listing standards of The Nasdaq Stock Market LLC. The Board has also appointed Mr. Shimer to serve as a member of the Audit Committee of the Board.\n\nIn connection with his service as a director, Mr. Shimer will receive Cisco’s standard non-employee director cash and equity compensation. Mr. Shimer will receive a pro rata portion of the $105,000 annual cash retainer, paid quarterly in arrears, for his service through the remaining portion of the year ending at Cisco's 2026 annual meeting of stockholders (the \"2026 Annual Meeting\"). Mr. Shimer will also receive a pro rata portion of the Audit Committee member annual cash retainer fees, paid quarterly in arrears, for service on such committee through the remaining portion of the year ending at the 2026 Annual Meeting. Non-employee directors may instead elect to receive the annual cash retainer, committee cash retainer fees or other cash fees in fully vested shares of Cisco common stock, fully vested deferred stock units that would be settled in shares after the non-employee director leaves the Board, or a deferred cash payment under the Cisco Systems, Inc. Deferred Compensation Plan. Upon his appointment, pursuant to the Board’s equity grant policy for non-employee directors, Mr. Shimer automatically received a fully vested initial non-employee director equity award under Cisco’s 2005 Stock Incentive Plan with a grant date fair value equal to a pro rata portion of $270,000 based on the portion of the year of his board service. Non-employee directors may elect to defer receipt of the equity award such that the award would be settled in shares after the non-employee director leaves the Board. Non-employee directors are also eligible to participate in Cisco’s charitable matching gifts program (for calendar year 2026, the maximum match amount is $25,000 for Cisco's non-employee directors).\n\nIn connection with his appointment, Mr. Shimer has entered into Cisco’s standard form of Indemnity Agreement with Cisco which provides for indemnification of an indemnitee to the fullest extent permitted by law. The foregoing description of the Indemnity Agreement does not purport to be complete and is qualified in its entirety by the full text of the form of Indemnity Agreement, which was filed with the Securities and Exchange Commission on January 25, 2021 as Exhibit 10.1 to Cisco’s Current Report on Form 8-K.\n\n---"}}, "raw_text": "8K_PARSED_INTO_MARKDOWN_CHUNKS"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-12/GOOGL.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-12/GOOGL.jsonl new file mode 100644 index 0000000..692927c --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-12/GOOGL.jsonl @@ -0,0 +1,5 @@ +{"metadata": {"ticker": "GOOGL", "form_type": "4", "filed_at": "2026-04-10", "accession_no": "0001193125-26-151397", "url": "https://www.sec.gov/Archives/edgar/data/1652044/000119312526151397/xslF345X06/ownership.xml", "ingested_at": "2026-04-12T10:47:09.473515"}, "parsed_data": {"reporting_owner": "Porat Ruth", "role": "President and CIO", "transactions": [{"date": "2026-04-08", "code": "A", "direction": "OTHER (A)", "shares": 83899.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 83899.0, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "GOOGL", "form_type": "4", "filed_at": "2026-04-10", "accession_no": "0001193125-26-151366", "url": "https://www.sec.gov/Archives/edgar/data/1652044/000119312526151366/xslF345X06/ownership.xml", "ingested_at": "2026-04-12T10:47:09.656709"}, "parsed_data": {"reporting_owner": "Schindler Philipp", "role": "SVP, Chief Business Officer", "transactions": [{"date": "2026-04-08", "code": "A", "direction": "OTHER (A)", "shares": 106272.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 106272.0, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "GOOGL", "form_type": "4", "filed_at": "2026-04-10", "accession_no": "0001193125-26-151343", "url": "https://www.sec.gov/Archives/edgar/data/1652044/000119312526151343/xslF345X06/ownership.xml", "ingested_at": "2026-04-12T10:47:09.853999"}, "parsed_data": {"reporting_owner": "Ashkenazi Anat", "role": "SVP, Chief Financial Officer", "transactions": [{"date": "2026-04-08", "code": "A", "direction": "OTHER (A)", "shares": 87255.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 87255.0, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "GOOGL", "form_type": "4", "filed_at": "2026-04-10", "accession_no": "0001193125-26-151329", "url": "https://www.sec.gov/Archives/edgar/data/1652044/000119312526151329/xslF345X06/ownership.xml", "ingested_at": "2026-04-12T10:47:10.113043"}, "parsed_data": {"reporting_owner": "WALKER JOHN KENT", "role": "President, Global Affairs, CLO", "transactions": [{"date": "2026-04-08", "code": "A", "direction": "OTHER (A)", "shares": 83899.0, "price": 0.0, "total_value": 0.0, "post_transaction_shares": 83899.0, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "GOOGL", "form_type": "8-K", "filed_at": "2026-04-10", "accession_no": "0001652044-26-000034", "url": "https://www.sec.gov/Archives/edgar/data/1652044/000165204426000034/goog-20260407.htm", "ingested_at": "2026-04-12T10:47:10.308207"}, "parsed_data": {"is_chunked": true, "item_chunks": {"5.02": "Item 5.02 Departure of Directors or Certain Officers; Election of Directors; Appointment of Certain Officers; Compensatory Arrangements of Certain Officers.\n\nOn April 7, 2026, the Leadership Development, Inclusion and Compensation Committee (“LDICC”) of the Board of Directors of Alphabet Inc. (“Alphabet”) approved equity awards for the following executive officers: Anat Ashkenazi, Senior Vice President, Chief Financial Officer, Alphabet and Google LLC (“Google”); Ruth Porat, President and Chief Investment Officer, Alphabet and Google; Philipp Schindler, Senior Vice President, Chief Business Officer, Google; and Kent Walker, President, Global Affairs, Chief Legal Officer and Secretary, Alphabet and Google.\n\nAlphabet uses a combination of both Alphabet performance stock units (“PSUs”) which vest, if at all, based on long-term company performance, and restricted stock units (“GSUs”), which provide incentive for continued service. This approach benefits Alphabet and is designed to maximize long-term shareholder value. The equity awards, which were granted on April 8, 2026, are as follows:\n\n•Ms. Ashkenazi was granted PSUs with a target value of $10,000,000, and GSUs in the amount of $20,000,000.\n\n•Ms. Porat was granted PSUs with a target value of $9,000,000, and GSUs in the amount of $20,000,000.\n\n•Mr. Schindler was granted PSUs with a target value of $16,000,000, and GSUs in the amount of $26,000,000.\n\n•Mr. Walker was granted PSUs with a target value of $9,000,000, and GSUs in the amount of $20,000,000.\n\nThe GSU awards also include a transitional amount, on top of the annual target value, to maintain target total compensation following the discontinuation of the SVP Bonus program in 2025. 2026 is the second and final year of the SVP bonus transition. The transitional amounts were granted on April 8, 2026 as an addition to the 2026 GSU awards. Each individual’s transitional amount follows: $6,000,000 for Ms. Ashkenazi, $5,000,000 for Ms. Porat and Mr. Walker, and $5,666,667 for Mr. Schindler.\n\nThe target number of PSUs was calculated by dividing the target value of the total PSU grant by the average closing price of Alphabet’s Class C capital stock during the month of March 2026 (the “Average Closing Price”). The PSUs will depend on Alphabet’s total shareholder return (relative to S&P 100 companies) (“relative TSR”), and this performance-based equity may not vest at all. The vest will be based on the relative TSR performance over a 2026-2028 performance period, subject to continued employment. Depending upon Alphabet’s relative TSR performance, the number of PSUs that vest in a tranche will range from 0%-200% of target. Upon vesting, each PSU will entitle the grantee to receive one share of Alphabet’s Class C capital stock.\n\nThe number of GSUs was calculated by dividing the GSU award amount by the Average Closing Price. The total GSU award is composed of the (i) target GSU award, which vests monthly over three years from 2026 through 2028, and (ii) a supplemental (transitional) award, which vests monthly during 2026 - other than:\n\n•a 4-month catch-up vest in April 2026 for both awards, and\n\n•a vesting date shift for all employees (from the 25th to the 1st) in March 2027 resulting in a cumulative 2-month vest.\n\nAll vesting is contingent on the recipient's continued employment on the applicable vesting date(s). Upon vesting, each GSU will entitle the grantee to receive one share of Alphabet’s Class C capital stock.\n\nUpon death, all unvested GSUs will accelerate immediately and all performance-based equity will immediately vest at target (or based on actual performance if the performance period ended prior to death). Upon termination of employment by Alphabet for cause, all unvested equity will be forfeited. Upon termination of employment by Alphabet without cause, the grantee will be eligible to vest in a pro-rata number of all performance-based equity (based on actual performance at the end of the performance period). All Alphabet GSUs and PSUs are subject to the terms and conditions of Alphabet’s Amended and Restated 2021 Stock Plan and the applicable award agreement.\n\nThe foregoing description is only a summary of the terms of the respective awards and is qualified in its entirety by reference to the full text of the applicable award agreements, which will be filed as exhibits to Alphabet’s quarterly report on Form 10-Q.\n\n---"}}, "raw_text": "8K_PARSED_INTO_MARKDOWN_CHUNKS"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-12/INTC.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-12/INTC.jsonl new file mode 100644 index 0000000..d2589ff --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-12/INTC.jsonl @@ -0,0 +1 @@ +{"metadata": {"ticker": "INTC", "form_type": "8-K", "filed_at": "2026-04-08", "accession_no": "0000050863-26-000072", "url": "https://www.sec.gov/Archives/edgar/data/50863/000005086326000072/intc-20260408.htm", "ingested_at": "2026-04-12T10:47:17.228812"}, "parsed_data": {"is_chunked": true, "item_chunks": {"8.01": "Item 8.01 Other Events\n\nOn April 8, 2026, Intel Corporation (“Intel”) repurchased from Apollo-managed funds and affiliates their 49% equity interest in the parties’ joint venture related to Intel’s Fab 34 in Ireland. The $14.2 billion repurchase price was financed by Intel with cash on hand and a bridge loan of $6.5 billion, which Intel intends to refinance, subject to market conditions. Intel owns 100% of the joint venture following the repurchase.\n\nThe joint venture was created and operated pursuant to agreements entered into by the parties in June 2024. At that time, Apollo-managed funds and affiliates acquired their 49% ownership interest in the joint venture and the parties entered into ancillary agreements with respect to Intel’s construction, commissioning, operation, management, maintenance, utilization and purchase of wafers produced in Fab 34. The repurchase of the joint venture interest by Intel was completed pursuant to an April 1, 2026 agreement between the parties, and Intel expects to terminate the various ancillary agreements that had governed the arrangement and wind up the joint venture.", "9.01": "Item 9.01 Financial Statements and Exhibits.\n\n(d) Exhibits.\n\nThe following exhibits are provided as part of this report:\n\n| | | | | | |\n| --- | --- | --- | --- | --- | --- |\n| | | | | | |\n| Exhibit Number | | | Description | | |\n| 104 | | | Cover Page Interactive Data File, formatted in Inline XBRL and included as Exhibit 101. | | |\n\n---"}}, "raw_text": "8K_PARSED_INTO_MARKDOWN_CHUNKS"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-12/MNST.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-12/MNST.jsonl new file mode 100644 index 0000000..dfc0211 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-12/MNST.jsonl @@ -0,0 +1,3 @@ +{"metadata": {"ticker": "MNST", "form_type": "4", "filed_at": "2026-04-10", "accession_no": "0000865752-26-000029", "url": "https://www.sec.gov/Archives/edgar/data/865752/000086575226000029/xslF345X06/form4.xml", "ingested_at": "2026-04-12T10:47:27.126798"}, "parsed_data": {"reporting_owner": "Hall Tiffany M.", "role": "Director", "transactions": []}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "MNST", "form_type": "4", "filed_at": "2026-04-10", "accession_no": "0000865752-26-000028", "url": "https://www.sec.gov/Archives/edgar/data/865752/000086575226000028/xslF345X06/form4.xml", "ingested_at": "2026-04-12T10:47:27.385555"}, "parsed_data": {"reporting_owner": "JACKSON JEANNE P", "role": "Director", "transactions": []}, "raw_text": "XML_PARSED_SUCCESSFULLY"} +{"metadata": {"ticker": "MNST", "form_type": "4", "filed_at": "2026-04-10", "accession_no": "0000865752-26-000027", "url": "https://www.sec.gov/Archives/edgar/data/865752/000086575226000027/xslF345X06/form4.xml", "ingested_at": "2026-04-12T10:47:27.603294"}, "parsed_data": {"reporting_owner": "Demel Ana", "role": "Director", "transactions": []}, "raw_text": "XML_PARSED_SUCCESSFULLY"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-12/PANW.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-12/PANW.jsonl new file mode 100644 index 0000000..1685310 --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-12/PANW.jsonl @@ -0,0 +1 @@ +{"metadata": {"ticker": "PANW", "form_type": "4", "filed_at": "2026-04-10", "accession_no": "0001772458-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/1327567/000177245826000002/xslF345X06/ownership.xml", "ingested_at": "2026-04-12T10:47:19.440250"}, "parsed_data": {"reporting_owner": "Key John P.", "role": "Director", "transactions": [{"date": "2026-04-08", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 1572.0, "price": 173.32, "total_value": 272459.04, "post_transaction_shares": 20000.0, "is_10b5_1_planned": false}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-12/REGN.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-12/REGN.jsonl new file mode 100644 index 0000000..9d25f6d --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-12/REGN.jsonl @@ -0,0 +1 @@ +{"metadata": {"ticker": "REGN", "form_type": "8-K", "filed_at": "2026-04-08", "accession_no": "0001104659-26-040661", "url": "https://www.sec.gov/Archives/edgar/data/872589/000110465926040661/tm2611354d1_8k.htm", "ingested_at": "2026-04-12T10:47:20.721785"}, "parsed_data": {"is_chunked": true, "item_chunks": {"2.02": "Item 2.02.** | **Results of Operations and Financial Condition.** |\n\nRegeneron Pharmaceuticals, Inc. (“Regeneron”\nor the “Company”) currently expects that its financial results calculated in accordance with U.S. generally accepted\naccounting principles (“GAAP”) and its non-GAAP financial results for the first quarter 2026 will include an acquired\nin-process research and development (“IPR&D”) charge of approximately $102 million on a pre-tax basis. This charge\nprimarily relates to premium on equity securities purchased, as well as development milestone and up-front payments, in connection with\ncollaboration and licensing agreements. The acquired IPR&D charge is expected to negatively impact each of GAAP and non-GAAP net income\nper diluted share for the first quarter 2026 by approximately $0.81.\n\nAcquired IPR&D charges may include IPR&D\nacquired in connection with asset acquisitions as well as up-front, opt-in, certain development milestone payments, and premiums paid\non equity securities related to collaboration and licensing agreements. Regeneron does not forecast such acquired IPR&D charges due\nto the uncertainty of the future occurrence, magnitude, and timing of these transactions in any given period.\n\nRegeneron’s results for the first quarter\n2026 have not been finalized and are subject to Regeneron’s financial statement closing procedures. There can be no assurance that\nactual results will not differ from the preliminary (unaudited) estimates described herein.\n\nThe information included in this Current Report\non Form 8-K shall not be deemed “filed” for purposes of Section 18 of the Securities Exchange Act of 1934, as amended,\nnor shall such information be deemed incorporated by reference in any filing under the Securities Act of 1933, as amended, except as shall\nbe expressly set forth by specific reference in such a filing.\n\n***Note\nRegarding Forward-Looking Statements***\n\n*This Current Report\non Form 8-K (this “Report”) includes forward-looking statements that involve risks and uncertainties relating\nto future events and the future performance of Regeneron Pharmaceuticals, Inc. (“Regeneron” or the “Company”),\nand actual events or results may differ materially from these forward-looking statements. Words such as “anticipate,” “expect,”\n“intend,” “plan,” “believe,” “seek,” “estimate,” variations of such words,\nand similar expressions are intended to identify such forward-looking statements, although not all forward-looking statements contain\nthese identifying words. These statements concern, and these risks and uncertainties include, among others, Regeneron’s expected\nacquired in-process research and development charge for the quarterly period ended March 31, 2026 and its expected impact on GAAP\nand non-GAAP net income per diluted share for this period as discussed in this Report. A more complete description of these and other\nmaterial risks can be found in Regeneron’s filings with the U.S. Securities and Exchange Commission. Any forward-looking statements\nare made based on management’s current beliefs and judgment, and the reader is cautioned not to rely on any forward-looking statements\nmade by Regeneron. Regeneron does not undertake any obligation to update (publicly or otherwise) any forward-looking statement, including\nwithout limitation any financial projection or guidance, whether as a result of new information, future events, or otherwise.*\n\n***Note Regarding Non-GAAP Financial Measures***\n\n*This Report references non-GAAP net income\nper diluted share, which is a financial measure that is not calculated in accordance with U.S. Generally Accepted Accounting Principles\n(“GAAP”). This non-GAAP financial measure is computed by excluding certain non-cash and/or other items from the related\nGAAP financial measure. The Company also includes a non-GAAP adjustment for the estimated income tax effect of reconciling items. The\nCompany makes such adjustments for items the Company does not view as useful in evaluating its operating performance. Management uses\nthis and other non-GAAP measures for planning, budgeting, forecasting, assessing historical performance, and making financial and operational\ndecisions, and also provides forecasts to investors on this basis. Additionally, such non-GAAP measures provide investors with an enhanced\nunderstanding of the financial performance of the Company's core business operations. However, there are limitations in the use of such\nnon-GAAP financial measures as they exclude certain expenses that are recurring in nature. Furthermore, the Company's non-GAAP financial\nmeasures may not be comparable with non-GAAP information provided by other companies. Any non-GAAP financial measure presented by Regeneron\nshould be considered supplemental to, and not a substitute for, measures of financial performance prepared in accordance with GAAP.*\n\n**SIGNATURES**\n\nPursuant to the requirements of the Securities\nExchange Act of 1934, the registrant has duly caused this report to be signed on its behalf by the undersigned thereunto duly authorized.\n\n| | |\n| --- | --- |\n| | **REGENERON PHARMACEUTICALS, INC.** |\n| | |\n| | /s/ Joseph J. LaRosa |\n| | Joseph J. LaRosa |\n| | Executive Vice President, General Counsel and Secretary |\n\nDate: April 8, 2026"}}, "raw_text": "8K_PARSED_INTO_MARKDOWN_CHUNKS"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-12/SBUX.jsonl b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-12/SBUX.jsonl new file mode 100644 index 0000000..469eb9f --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-12/SBUX.jsonl @@ -0,0 +1 @@ +{"metadata": {"ticker": "SBUX", "form_type": "4", "filed_at": "2026-04-08", "accession_no": "0000829224-26-000066", "url": "https://www.sec.gov/Archives/edgar/data/829224/000082922426000066/xslF345X06/form4.xml", "ingested_at": "2026-04-12T10:47:18.846818"}, "parsed_data": {"reporting_owner": "BREWER BRADY", "role": "ceo, International", "transactions": [{"date": "2026-04-06", "code": "S", "direction": "STRONG_SELL (Open Market)", "shares": 1641.0, "price": 90.0, "total_value": 147690.0, "post_transaction_shares": 84375.502, "is_10b5_1_planned": true}]}, "raw_text": "XML_PARSED_SUCCESSFULLY"} diff --git a/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-12/_SUMMARY.json b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-12/_SUMMARY.json new file mode 100644 index 0000000..c05279b --- /dev/null +++ b/Data/1_Bronze_Raw/SEC_Parsed_JSON/2026-04-12/_SUMMARY.json @@ -0,0 +1,54 @@ +{ + "date": "2026-04-12", + "total_filings": 33, + "ticker_breakdown": { + "CRWD": { + "4": 0, + "8-K": 1 + }, + "AMZN": { + "4": 5, + "8-K": 1 + }, + "ADI": { + "4": 6, + "8-K": 0 + }, + "PANW": { + "4": 1, + "8-K": 0 + }, + "AMD": { + "4": 1, + "8-K": 0 + }, + "INTC": { + "4": 0, + "8-K": 1 + }, + "GOOGL": { + "4": 4, + "8-K": 1 + }, + "CSCO": { + "4": 1, + "8-K": 1 + }, + "REGN": { + "4": 0, + "8-K": 1 + }, + "AVGO": { + "4": 4, + "8-K": 1 + }, + "SBUX": { + "4": 1, + "8-K": 0 + }, + "MNST": { + "4": 3, + "8-K": 0 + } + } +} \ No newline at end of file diff --git a/Data/2_Silver_Processed/GPR_index/gpr_monthly_enriched.parquet b/Data/2_Silver_Processed/GPR_index/gpr_monthly_enriched.parquet new file mode 100644 index 0000000..04bcc5b Binary files /dev/null and b/Data/2_Silver_Processed/GPR_index/gpr_monthly_enriched.parquet differ diff --git a/Data/2_Silver_Processed/Macro_History/2026-04-04/macro_snapshot_2026-04-04.parquet b/Data/2_Silver_Processed/Macro_History/2026-04-04/macro_snapshot_2026-04-04.parquet new file mode 100644 index 0000000..2874da2 Binary files /dev/null and b/Data/2_Silver_Processed/Macro_History/2026-04-04/macro_snapshot_2026-04-04.parquet differ diff --git a/Data/2_Silver_Processed/Macro_History/2026-04-06/macro_snapshot_2026-04-06.parquet b/Data/2_Silver_Processed/Macro_History/2026-04-06/macro_snapshot_2026-04-06.parquet new file mode 100644 index 0000000..e4654a9 Binary files /dev/null and b/Data/2_Silver_Processed/Macro_History/2026-04-06/macro_snapshot_2026-04-06.parquet differ diff --git a/Data/2_Silver_Processed/Macro_History/2026-04-08/macro_snapshot_2026-04-08.parquet b/Data/2_Silver_Processed/Macro_History/2026-04-08/macro_snapshot_2026-04-08.parquet new file mode 100644 index 0000000..9baeb95 Binary files /dev/null and b/Data/2_Silver_Processed/Macro_History/2026-04-08/macro_snapshot_2026-04-08.parquet differ diff --git a/Data/2_Silver_Processed/Macro_History/2026-04-09/macro_snapshot_2026-04-09.parquet b/Data/2_Silver_Processed/Macro_History/2026-04-09/macro_snapshot_2026-04-09.parquet new file mode 100644 index 0000000..771c042 Binary files /dev/null and b/Data/2_Silver_Processed/Macro_History/2026-04-09/macro_snapshot_2026-04-09.parquet differ diff --git a/Data/2_Silver_Processed/Macro_History/2026-04-10/macro_snapshot_2026-04-10.parquet b/Data/2_Silver_Processed/Macro_History/2026-04-10/macro_snapshot_2026-04-10.parquet new file mode 100644 index 0000000..75a6e16 Binary files /dev/null and b/Data/2_Silver_Processed/Macro_History/2026-04-10/macro_snapshot_2026-04-10.parquet differ diff --git a/Data/2_Silver_Processed/Macro_History/2026-04-14/macro_snapshot_2026-04-14.parquet b/Data/2_Silver_Processed/Macro_History/2026-04-14/macro_snapshot_2026-04-14.parquet new file mode 100644 index 0000000..0897d1f Binary files /dev/null and b/Data/2_Silver_Processed/Macro_History/2026-04-14/macro_snapshot_2026-04-14.parquet differ diff --git a/Data/2_Silver_Processed/Macro_History/2026-04-16/macro_snapshot_2026-04-16.parquet b/Data/2_Silver_Processed/Macro_History/2026-04-16/macro_snapshot_2026-04-16.parquet new file mode 100644 index 0000000..779c753 Binary files /dev/null and b/Data/2_Silver_Processed/Macro_History/2026-04-16/macro_snapshot_2026-04-16.parquet differ diff --git a/Data/2_Silver_Processed/Macro_History/2026-04-19/macro_snapshot_2026-04-19.parquet b/Data/2_Silver_Processed/Macro_History/2026-04-19/macro_snapshot_2026-04-19.parquet new file mode 100644 index 0000000..39df4b7 Binary files /dev/null and b/Data/2_Silver_Processed/Macro_History/2026-04-19/macro_snapshot_2026-04-19.parquet differ diff --git a/Data/2_Silver_Processed/Options_Market_Data/2026-04-04/GLD_options_2026-04-04.parquet b/Data/2_Silver_Processed/Options_Market_Data/2026-04-04/GLD_options_2026-04-04.parquet new file mode 100644 index 0000000..5722933 Binary files /dev/null and b/Data/2_Silver_Processed/Options_Market_Data/2026-04-04/GLD_options_2026-04-04.parquet differ diff --git a/Data/2_Silver_Processed/Options_Market_Data/2026-04-04/IWM_options_2026-04-04.parquet b/Data/2_Silver_Processed/Options_Market_Data/2026-04-04/IWM_options_2026-04-04.parquet new file mode 100644 index 0000000..d1b4928 Binary files /dev/null and b/Data/2_Silver_Processed/Options_Market_Data/2026-04-04/IWM_options_2026-04-04.parquet differ diff --git a/Data/2_Silver_Processed/Options_Market_Data/2026-04-04/QQQ_options_2026-04-04.parquet b/Data/2_Silver_Processed/Options_Market_Data/2026-04-04/QQQ_options_2026-04-04.parquet new file mode 100644 index 0000000..04ce9a4 Binary files /dev/null and b/Data/2_Silver_Processed/Options_Market_Data/2026-04-04/QQQ_options_2026-04-04.parquet differ diff --git a/Data/2_Silver_Processed/Options_Market_Data/2026-04-04/SLV_options_2026-04-04.parquet b/Data/2_Silver_Processed/Options_Market_Data/2026-04-04/SLV_options_2026-04-04.parquet new file mode 100644 index 0000000..88ee358 Binary files /dev/null and b/Data/2_Silver_Processed/Options_Market_Data/2026-04-04/SLV_options_2026-04-04.parquet differ diff --git a/Data/2_Silver_Processed/Options_Market_Data/2026-04-04/SPY_options_2026-04-04.parquet b/Data/2_Silver_Processed/Options_Market_Data/2026-04-04/SPY_options_2026-04-04.parquet new file mode 100644 index 0000000..ad8e4c6 Binary files /dev/null and b/Data/2_Silver_Processed/Options_Market_Data/2026-04-04/SPY_options_2026-04-04.parquet differ diff --git a/Data/2_Silver_Processed/Options_Market_Data/2026-04-06/GLD_options_2026-04-06.parquet b/Data/2_Silver_Processed/Options_Market_Data/2026-04-06/GLD_options_2026-04-06.parquet new file mode 100644 index 0000000..3169ab4 Binary files /dev/null and b/Data/2_Silver_Processed/Options_Market_Data/2026-04-06/GLD_options_2026-04-06.parquet differ diff --git a/Data/2_Silver_Processed/Options_Market_Data/2026-04-06/IWM_options_2026-04-06.parquet b/Data/2_Silver_Processed/Options_Market_Data/2026-04-06/IWM_options_2026-04-06.parquet new file mode 100644 index 0000000..4703dd0 Binary files /dev/null and b/Data/2_Silver_Processed/Options_Market_Data/2026-04-06/IWM_options_2026-04-06.parquet differ diff --git a/Data/2_Silver_Processed/Options_Market_Data/2026-04-06/QQQ_options_2026-04-06.parquet b/Data/2_Silver_Processed/Options_Market_Data/2026-04-06/QQQ_options_2026-04-06.parquet new file mode 100644 index 0000000..7f60563 Binary files /dev/null and b/Data/2_Silver_Processed/Options_Market_Data/2026-04-06/QQQ_options_2026-04-06.parquet differ diff --git a/Data/2_Silver_Processed/Options_Market_Data/2026-04-06/SLV_options_2026-04-06.parquet b/Data/2_Silver_Processed/Options_Market_Data/2026-04-06/SLV_options_2026-04-06.parquet new file mode 100644 index 0000000..80c97b7 Binary files /dev/null and b/Data/2_Silver_Processed/Options_Market_Data/2026-04-06/SLV_options_2026-04-06.parquet differ diff --git a/Data/2_Silver_Processed/Options_Market_Data/2026-04-06/SPY_options_2026-04-06.parquet b/Data/2_Silver_Processed/Options_Market_Data/2026-04-06/SPY_options_2026-04-06.parquet new file mode 100644 index 0000000..859de09 Binary files /dev/null and b/Data/2_Silver_Processed/Options_Market_Data/2026-04-06/SPY_options_2026-04-06.parquet differ diff --git a/Data/2_Silver_Processed/Options_Market_Data/2026-04-08/GLD_options_2026-04-08.parquet b/Data/2_Silver_Processed/Options_Market_Data/2026-04-08/GLD_options_2026-04-08.parquet new file mode 100644 index 0000000..e53aadc Binary files /dev/null and b/Data/2_Silver_Processed/Options_Market_Data/2026-04-08/GLD_options_2026-04-08.parquet differ diff --git a/Data/2_Silver_Processed/Options_Market_Data/2026-04-08/IWM_options_2026-04-08.parquet b/Data/2_Silver_Processed/Options_Market_Data/2026-04-08/IWM_options_2026-04-08.parquet new file mode 100644 index 0000000..948ede0 Binary files /dev/null and b/Data/2_Silver_Processed/Options_Market_Data/2026-04-08/IWM_options_2026-04-08.parquet differ diff --git a/Data/2_Silver_Processed/Options_Market_Data/2026-04-08/QQQ_options_2026-04-08.parquet b/Data/2_Silver_Processed/Options_Market_Data/2026-04-08/QQQ_options_2026-04-08.parquet new file mode 100644 index 0000000..572f322 Binary files /dev/null and b/Data/2_Silver_Processed/Options_Market_Data/2026-04-08/QQQ_options_2026-04-08.parquet differ diff --git a/Data/2_Silver_Processed/Options_Market_Data/2026-04-08/SLV_options_2026-04-08.parquet b/Data/2_Silver_Processed/Options_Market_Data/2026-04-08/SLV_options_2026-04-08.parquet new file mode 100644 index 0000000..6fc1719 Binary files /dev/null and b/Data/2_Silver_Processed/Options_Market_Data/2026-04-08/SLV_options_2026-04-08.parquet differ diff --git a/Data/2_Silver_Processed/Options_Market_Data/2026-04-08/SPY_options_2026-04-08.parquet b/Data/2_Silver_Processed/Options_Market_Data/2026-04-08/SPY_options_2026-04-08.parquet new file mode 100644 index 0000000..9bf926f Binary files /dev/null and b/Data/2_Silver_Processed/Options_Market_Data/2026-04-08/SPY_options_2026-04-08.parquet differ diff --git a/Data/2_Silver_Processed/Options_Market_Data/2026-04-09/GLD_options_2026-04-09.parquet b/Data/2_Silver_Processed/Options_Market_Data/2026-04-09/GLD_options_2026-04-09.parquet new file mode 100644 index 0000000..ff83766 Binary files /dev/null and b/Data/2_Silver_Processed/Options_Market_Data/2026-04-09/GLD_options_2026-04-09.parquet differ diff --git a/Data/2_Silver_Processed/Options_Market_Data/2026-04-09/IWM_options_2026-04-09.parquet b/Data/2_Silver_Processed/Options_Market_Data/2026-04-09/IWM_options_2026-04-09.parquet new file mode 100644 index 0000000..0266974 Binary files /dev/null and b/Data/2_Silver_Processed/Options_Market_Data/2026-04-09/IWM_options_2026-04-09.parquet differ diff --git a/Data/2_Silver_Processed/Options_Market_Data/2026-04-09/QQQ_options_2026-04-09.parquet b/Data/2_Silver_Processed/Options_Market_Data/2026-04-09/QQQ_options_2026-04-09.parquet new file mode 100644 index 0000000..7ec0eb6 Binary files /dev/null and b/Data/2_Silver_Processed/Options_Market_Data/2026-04-09/QQQ_options_2026-04-09.parquet differ diff --git a/Data/2_Silver_Processed/Options_Market_Data/2026-04-09/SLV_options_2026-04-09.parquet b/Data/2_Silver_Processed/Options_Market_Data/2026-04-09/SLV_options_2026-04-09.parquet new file mode 100644 index 0000000..338705c Binary files /dev/null and b/Data/2_Silver_Processed/Options_Market_Data/2026-04-09/SLV_options_2026-04-09.parquet differ diff --git a/Data/2_Silver_Processed/Options_Market_Data/2026-04-09/SPY_options_2026-04-09.parquet b/Data/2_Silver_Processed/Options_Market_Data/2026-04-09/SPY_options_2026-04-09.parquet new file mode 100644 index 0000000..c5ecbe0 Binary files /dev/null and b/Data/2_Silver_Processed/Options_Market_Data/2026-04-09/SPY_options_2026-04-09.parquet differ diff --git a/Data/2_Silver_Processed/Options_Market_Data/2026-04-10/GLD_options_2026-04-10.parquet b/Data/2_Silver_Processed/Options_Market_Data/2026-04-10/GLD_options_2026-04-10.parquet new file mode 100644 index 0000000..b4a322d Binary files /dev/null and b/Data/2_Silver_Processed/Options_Market_Data/2026-04-10/GLD_options_2026-04-10.parquet differ diff --git a/Data/2_Silver_Processed/Options_Market_Data/2026-04-10/IWM_options_2026-04-10.parquet b/Data/2_Silver_Processed/Options_Market_Data/2026-04-10/IWM_options_2026-04-10.parquet new file mode 100644 index 0000000..1575f63 Binary files /dev/null and b/Data/2_Silver_Processed/Options_Market_Data/2026-04-10/IWM_options_2026-04-10.parquet differ diff --git a/Data/2_Silver_Processed/Options_Market_Data/2026-04-10/QQQ_options_2026-04-10.parquet b/Data/2_Silver_Processed/Options_Market_Data/2026-04-10/QQQ_options_2026-04-10.parquet new file mode 100644 index 0000000..1265b1c Binary files /dev/null and b/Data/2_Silver_Processed/Options_Market_Data/2026-04-10/QQQ_options_2026-04-10.parquet differ diff --git a/Data/2_Silver_Processed/Options_Market_Data/2026-04-10/SLV_options_2026-04-10.parquet b/Data/2_Silver_Processed/Options_Market_Data/2026-04-10/SLV_options_2026-04-10.parquet new file mode 100644 index 0000000..6661d65 Binary files /dev/null and b/Data/2_Silver_Processed/Options_Market_Data/2026-04-10/SLV_options_2026-04-10.parquet differ diff --git a/Data/2_Silver_Processed/Options_Market_Data/2026-04-10/SPY_options_2026-04-10.parquet b/Data/2_Silver_Processed/Options_Market_Data/2026-04-10/SPY_options_2026-04-10.parquet new file mode 100644 index 0000000..9cd1952 Binary files /dev/null and b/Data/2_Silver_Processed/Options_Market_Data/2026-04-10/SPY_options_2026-04-10.parquet differ diff --git a/Data/2_Silver_Processed/Options_Market_Data/2026-04-12/GLD_options_2026-04-12.parquet b/Data/2_Silver_Processed/Options_Market_Data/2026-04-12/GLD_options_2026-04-12.parquet new file mode 100644 index 0000000..9acbb7c Binary files /dev/null and b/Data/2_Silver_Processed/Options_Market_Data/2026-04-12/GLD_options_2026-04-12.parquet differ diff --git a/Data/2_Silver_Processed/Options_Market_Data/2026-04-12/IWM_options_2026-04-12.parquet b/Data/2_Silver_Processed/Options_Market_Data/2026-04-12/IWM_options_2026-04-12.parquet new file mode 100644 index 0000000..cdfe482 Binary files /dev/null and b/Data/2_Silver_Processed/Options_Market_Data/2026-04-12/IWM_options_2026-04-12.parquet differ diff --git a/Data/2_Silver_Processed/Options_Market_Data/2026-04-12/QQQ_options_2026-04-12.parquet b/Data/2_Silver_Processed/Options_Market_Data/2026-04-12/QQQ_options_2026-04-12.parquet new file mode 100644 index 0000000..5ebb7f9 Binary files /dev/null and b/Data/2_Silver_Processed/Options_Market_Data/2026-04-12/QQQ_options_2026-04-12.parquet differ diff --git a/Data/2_Silver_Processed/Options_Market_Data/2026-04-12/SLV_options_2026-04-12.parquet b/Data/2_Silver_Processed/Options_Market_Data/2026-04-12/SLV_options_2026-04-12.parquet new file mode 100644 index 0000000..425d7b5 Binary files /dev/null and b/Data/2_Silver_Processed/Options_Market_Data/2026-04-12/SLV_options_2026-04-12.parquet differ diff --git a/Data/2_Silver_Processed/Options_Market_Data/2026-04-12/SPY_options_2026-04-12.parquet b/Data/2_Silver_Processed/Options_Market_Data/2026-04-12/SPY_options_2026-04-12.parquet new file mode 100644 index 0000000..ed0d485 Binary files /dev/null and b/Data/2_Silver_Processed/Options_Market_Data/2026-04-12/SPY_options_2026-04-12.parquet differ diff --git a/Data/2_Silver_Processed/Options_Market_Data/2026-04-14/GLD_options_2026-04-14.parquet b/Data/2_Silver_Processed/Options_Market_Data/2026-04-14/GLD_options_2026-04-14.parquet new file mode 100644 index 0000000..a197d78 Binary files /dev/null and b/Data/2_Silver_Processed/Options_Market_Data/2026-04-14/GLD_options_2026-04-14.parquet differ diff --git a/Data/2_Silver_Processed/Options_Market_Data/2026-04-14/IWM_options_2026-04-14.parquet b/Data/2_Silver_Processed/Options_Market_Data/2026-04-14/IWM_options_2026-04-14.parquet new file mode 100644 index 0000000..511ff57 Binary files /dev/null and b/Data/2_Silver_Processed/Options_Market_Data/2026-04-14/IWM_options_2026-04-14.parquet differ diff --git a/Data/2_Silver_Processed/Options_Market_Data/2026-04-14/QQQ_options_2026-04-14.parquet b/Data/2_Silver_Processed/Options_Market_Data/2026-04-14/QQQ_options_2026-04-14.parquet new file mode 100644 index 0000000..a10bd6c Binary files /dev/null and b/Data/2_Silver_Processed/Options_Market_Data/2026-04-14/QQQ_options_2026-04-14.parquet differ diff --git a/Data/2_Silver_Processed/Options_Market_Data/2026-04-14/SLV_options_2026-04-14.parquet b/Data/2_Silver_Processed/Options_Market_Data/2026-04-14/SLV_options_2026-04-14.parquet new file mode 100644 index 0000000..7d43be6 Binary files /dev/null and b/Data/2_Silver_Processed/Options_Market_Data/2026-04-14/SLV_options_2026-04-14.parquet differ diff --git a/Data/2_Silver_Processed/Options_Market_Data/2026-04-14/SPY_options_2026-04-14.parquet b/Data/2_Silver_Processed/Options_Market_Data/2026-04-14/SPY_options_2026-04-14.parquet new file mode 100644 index 0000000..f2169ca Binary files /dev/null and b/Data/2_Silver_Processed/Options_Market_Data/2026-04-14/SPY_options_2026-04-14.parquet differ diff --git a/Data/2_Silver_Processed/Options_Market_Data/2026-04-16/GLD_options_2026-04-16.parquet b/Data/2_Silver_Processed/Options_Market_Data/2026-04-16/GLD_options_2026-04-16.parquet new file mode 100644 index 0000000..79edea9 Binary files /dev/null and b/Data/2_Silver_Processed/Options_Market_Data/2026-04-16/GLD_options_2026-04-16.parquet differ diff --git a/Data/2_Silver_Processed/Options_Market_Data/2026-04-16/IWM_options_2026-04-16.parquet b/Data/2_Silver_Processed/Options_Market_Data/2026-04-16/IWM_options_2026-04-16.parquet new file mode 100644 index 0000000..2430376 Binary files /dev/null and b/Data/2_Silver_Processed/Options_Market_Data/2026-04-16/IWM_options_2026-04-16.parquet differ diff --git a/Data/2_Silver_Processed/Options_Market_Data/2026-04-16/QQQ_options_2026-04-16.parquet b/Data/2_Silver_Processed/Options_Market_Data/2026-04-16/QQQ_options_2026-04-16.parquet new file mode 100644 index 0000000..523abf2 Binary files /dev/null and b/Data/2_Silver_Processed/Options_Market_Data/2026-04-16/QQQ_options_2026-04-16.parquet differ diff --git a/Data/2_Silver_Processed/Options_Market_Data/2026-04-16/SLV_options_2026-04-16.parquet b/Data/2_Silver_Processed/Options_Market_Data/2026-04-16/SLV_options_2026-04-16.parquet new file mode 100644 index 0000000..a3e3edc Binary files /dev/null and b/Data/2_Silver_Processed/Options_Market_Data/2026-04-16/SLV_options_2026-04-16.parquet differ diff --git a/Data/2_Silver_Processed/Options_Market_Data/2026-04-16/SPY_options_2026-04-16.parquet b/Data/2_Silver_Processed/Options_Market_Data/2026-04-16/SPY_options_2026-04-16.parquet new file mode 100644 index 0000000..11c6942 Binary files /dev/null and b/Data/2_Silver_Processed/Options_Market_Data/2026-04-16/SPY_options_2026-04-16.parquet differ diff --git a/Data/2_Silver_Processed/Options_Market_Data/2026-04-18/GLD_options_2026-04-18.parquet b/Data/2_Silver_Processed/Options_Market_Data/2026-04-18/GLD_options_2026-04-18.parquet new file mode 100644 index 0000000..f02a19d Binary files /dev/null and b/Data/2_Silver_Processed/Options_Market_Data/2026-04-18/GLD_options_2026-04-18.parquet differ diff --git a/Data/2_Silver_Processed/Options_Market_Data/2026-04-18/IWM_options_2026-04-18.parquet b/Data/2_Silver_Processed/Options_Market_Data/2026-04-18/IWM_options_2026-04-18.parquet new file mode 100644 index 0000000..7726e27 Binary files /dev/null and b/Data/2_Silver_Processed/Options_Market_Data/2026-04-18/IWM_options_2026-04-18.parquet differ diff --git a/Data/2_Silver_Processed/Options_Market_Data/2026-04-18/QQQ_options_2026-04-18.parquet b/Data/2_Silver_Processed/Options_Market_Data/2026-04-18/QQQ_options_2026-04-18.parquet new file mode 100644 index 0000000..78e2399 Binary files /dev/null and b/Data/2_Silver_Processed/Options_Market_Data/2026-04-18/QQQ_options_2026-04-18.parquet differ diff --git a/Data/2_Silver_Processed/Options_Market_Data/2026-04-18/SLV_options_2026-04-18.parquet b/Data/2_Silver_Processed/Options_Market_Data/2026-04-18/SLV_options_2026-04-18.parquet new file mode 100644 index 0000000..92251bf Binary files /dev/null and b/Data/2_Silver_Processed/Options_Market_Data/2026-04-18/SLV_options_2026-04-18.parquet differ diff --git a/Data/2_Silver_Processed/Options_Market_Data/2026-04-18/SPY_options_2026-04-18.parquet b/Data/2_Silver_Processed/Options_Market_Data/2026-04-18/SPY_options_2026-04-18.parquet new file mode 100644 index 0000000..8cea615 Binary files /dev/null and b/Data/2_Silver_Processed/Options_Market_Data/2026-04-18/SPY_options_2026-04-18.parquet differ diff --git a/Data/2_Silver_Processed/Options_Market_Data/2026-04-19/GLD_options_2026-04-19.parquet b/Data/2_Silver_Processed/Options_Market_Data/2026-04-19/GLD_options_2026-04-19.parquet new file mode 100644 index 0000000..a67adbe Binary files /dev/null and b/Data/2_Silver_Processed/Options_Market_Data/2026-04-19/GLD_options_2026-04-19.parquet differ diff --git a/Data/2_Silver_Processed/Options_Market_Data/2026-04-19/IWM_options_2026-04-19.parquet b/Data/2_Silver_Processed/Options_Market_Data/2026-04-19/IWM_options_2026-04-19.parquet new file mode 100644 index 0000000..34166a5 Binary files /dev/null and b/Data/2_Silver_Processed/Options_Market_Data/2026-04-19/IWM_options_2026-04-19.parquet differ diff --git a/Data/2_Silver_Processed/Options_Market_Data/2026-04-19/QQQ_options_2026-04-19.parquet b/Data/2_Silver_Processed/Options_Market_Data/2026-04-19/QQQ_options_2026-04-19.parquet new file mode 100644 index 0000000..b976034 Binary files /dev/null and b/Data/2_Silver_Processed/Options_Market_Data/2026-04-19/QQQ_options_2026-04-19.parquet differ diff --git a/Data/2_Silver_Processed/Options_Market_Data/2026-04-19/SLV_options_2026-04-19.parquet b/Data/2_Silver_Processed/Options_Market_Data/2026-04-19/SLV_options_2026-04-19.parquet new file mode 100644 index 0000000..5c8308f Binary files /dev/null and b/Data/2_Silver_Processed/Options_Market_Data/2026-04-19/SLV_options_2026-04-19.parquet differ diff --git a/Data/2_Silver_Processed/Options_Market_Data/2026-04-19/SPY_options_2026-04-19.parquet b/Data/2_Silver_Processed/Options_Market_Data/2026-04-19/SPY_options_2026-04-19.parquet new file mode 100644 index 0000000..c63fc89 Binary files /dev/null and b/Data/2_Silver_Processed/Options_Market_Data/2026-04-19/SPY_options_2026-04-19.parquet differ diff --git a/Data/3_Gold_Semantic/GPR_index/2026-04-10/gpr_narrative_corpus.md b/Data/3_Gold_Semantic/GPR_index/2026-04-10/gpr_narrative_corpus.md new file mode 100644 index 0000000..4974825 --- /dev/null +++ b/Data/3_Gold_Semantic/GPR_index/2026-04-10/gpr_narrative_corpus.md @@ -0,0 +1,1275 @@ +### Geopolitical Risk (GPR) Index Update: January 2020 + +**Date:** January 2020 +**GPR Score:** 138.42 + +**Summary:** +In January 2020, the global Geopolitical Risk (GPR) Index stood at **138.42**. This represents a **significant escalation**, surging by 86.35% compared to the previous month. Compared to the same period last year, the index shifted by 58.33%. + +**Historical Context:** +This reading sits at the **87.5th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 95.26 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: February 2020 + +**Date:** February 2020 +**GPR Score:** 75.96 + +**Summary:** +In February 2020, the global Geopolitical Risk (GPR) Index stood at **75.96**. This indicates a **cooling off** of geopolitical tensions, dropping by 45.13% month-over-month. Compared to the same period last year, the index shifted by -21.53%. + +**Historical Context:** +This reading sits at the **18.8th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 96.22 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: March 2020 + +**Date:** March 2020 +**GPR Score:** 81.54 + +**Summary:** +In March 2020, the global Geopolitical Risk (GPR) Index stood at **81.54**. The index changed by 7.35% month-over-month, showing relative stability. Compared to the same period last year, the index shifted by -0.96%. + +**Historical Context:** +This reading sits at the **27.9th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 98.64 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: April 2020 + +**Date:** April 2020 +**GPR Score:** 69.34 + +**Summary:** +In April 2020, the global Geopolitical Risk (GPR) Index stood at **69.34**. This indicates a **cooling off** of geopolitical tensions, dropping by 14.96% month-over-month. Compared to the same period last year, the index shifted by -12.51%. + +**Historical Context:** +This reading sits at the **12.5th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 75.61 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: May 2020 + +**Date:** May 2020 +**GPR Score:** 68.51 + +**Summary:** +In May 2020, the global Geopolitical Risk (GPR) Index stood at **68.51**. The index changed by -1.20% month-over-month, showing relative stability. Compared to the same period last year, the index shifted by -35.66%. + +**Historical Context:** +This reading sits at the **11.5th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 73.13 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: June 2020 + +**Date:** June 2020 +**GPR Score:** 71.23 + +**Summary:** +In June 2020, the global Geopolitical Risk (GPR) Index stood at **71.23**. The index changed by 3.97% month-over-month, showing relative stability. Compared to the same period last year, the index shifted by -33.17%. + +**Historical Context:** +This reading sits at the **13.9th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 69.69 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: July 2020 + +**Date:** July 2020 +**GPR Score:** 66.47 + +**Summary:** +In July 2020, the global Geopolitical Risk (GPR) Index stood at **66.47**. The index changed by -6.68% month-over-month, showing relative stability. Compared to the same period last year, the index shifted by -28.92%. + +**Historical Context:** +This reading sits at the **10.3th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 68.74 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: August 2020 + +**Date:** August 2020 +**GPR Score:** 65.47 + +**Summary:** +In August 2020, the global Geopolitical Risk (GPR) Index stood at **65.47**. The index changed by -1.52% month-over-month, showing relative stability. Compared to the same period last year, the index shifted by -36.69%. + +**Historical Context:** +This reading sits at the **9.5th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 67.72 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: September 2020 + +**Date:** September 2020 +**GPR Score:** 80.38 + +**Summary:** +In September 2020, the global Geopolitical Risk (GPR) Index stood at **80.38**. This represents a **significant escalation**, surging by 22.78% compared to the previous month. Compared to the same period last year, the index shifted by -11.06%. + +**Historical Context:** +This reading sits at the **25.4th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 70.77 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: October 2020 + +**Date:** October 2020 +**GPR Score:** 76.08 + +**Summary:** +In October 2020, the global Geopolitical Risk (GPR) Index stood at **76.08**. The index changed by -5.34% month-over-month, showing relative stability. Compared to the same period last year, the index shifted by -22.23%. + +**Historical Context:** +This reading sits at the **19.2th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 73.98 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: November 2020 + +**Date:** November 2020 +**GPR Score:** 70.07 + +**Summary:** +In November 2020, the global Geopolitical Risk (GPR) Index stood at **70.07**. The index changed by -7.91% month-over-month, showing relative stability. Compared to the same period last year, the index shifted by -4.12%. + +**Historical Context:** +This reading sits at the **13.1th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 75.51 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: December 2020 + +**Date:** December 2020 +**GPR Score:** 64.07 + +**Summary:** +In December 2020, the global Geopolitical Risk (GPR) Index stood at **64.07**. The index changed by -8.56% month-over-month, showing relative stability. Compared to the same period last year, the index shifted by -13.75%. + +**Historical Context:** +This reading sits at the **8.3th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 70.07 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: January 2021 + +**Date:** January 2021 +**GPR Score:** 77.42 + +**Summary:** +In January 2021, the global Geopolitical Risk (GPR) Index stood at **77.42**. This represents a **significant escalation**, surging by 20.84% compared to the previous month. Compared to the same period last year, the index shifted by -44.07%. + +**Historical Context:** +This reading sits at the **21.0th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 70.52 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: February 2021 + +**Date:** February 2021 +**GPR Score:** 73.96 + +**Summary:** +In February 2021, the global Geopolitical Risk (GPR) Index stood at **73.96**. The index changed by -4.47% month-over-month, showing relative stability. Compared to the same period last year, the index shifted by -2.63%. + +**Historical Context:** +This reading sits at the **16.0th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 71.81 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: March 2021 + +**Date:** March 2021 +**GPR Score:** 78.62 + +**Summary:** +In March 2021, the global Geopolitical Risk (GPR) Index stood at **78.62**. The index changed by 6.30% month-over-month, showing relative stability. Compared to the same period last year, the index shifted by -3.58%. + +**Historical Context:** +This reading sits at the **22.4th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 76.66 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: April 2021 + +**Date:** April 2021 +**GPR Score:** 88.17 + +**Summary:** +In April 2021, the global Geopolitical Risk (GPR) Index stood at **88.17**. This represents a **significant escalation**, surging by 12.14% compared to the previous month. Compared to the same period last year, the index shifted by 27.15%. + +**Historical Context:** +This reading sits at the **41.2th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 80.25 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: May 2021 + +**Date:** May 2021 +**GPR Score:** 93.01 + +**Summary:** +In May 2021, the global Geopolitical Risk (GPR) Index stood at **93.01**. The index changed by 5.49% month-over-month, showing relative stability. Compared to the same period last year, the index shifted by 35.76%. + +**Historical Context:** +This reading sits at the **50.9th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 86.60 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: June 2021 + +**Date:** June 2021 +**GPR Score:** 74.13 + +**Summary:** +In June 2021, the global Geopolitical Risk (GPR) Index stood at **74.13**. This indicates a **cooling off** of geopolitical tensions, dropping by 20.30% month-over-month. Compared to the same period last year, the index shifted by 4.07%. + +**Historical Context:** +This reading sits at the **16.6th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 85.10 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: July 2021 + +**Date:** July 2021 +**GPR Score:** 58.42 + +**Summary:** +In July 2021, the global Geopolitical Risk (GPR) Index stood at **58.42**. This indicates a **cooling off** of geopolitical tensions, dropping by 21.19% month-over-month. Compared to the same period last year, the index shifted by -12.11%. + +**Historical Context:** +This reading sits at the **5.9th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 75.19 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: August 2021 + +**Date:** August 2021 +**GPR Score:** 89.49 + +**Summary:** +In August 2021, the global Geopolitical Risk (GPR) Index stood at **89.49**. This represents a **significant escalation**, surging by 53.18% compared to the previous month. Compared to the same period last year, the index shifted by 36.69%. + +**Historical Context:** +This reading sits at the **44.0th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 74.01 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: September 2021 + +**Date:** September 2021 +**GPR Score:** 80.7 + +**Summary:** +In September 2021, the global Geopolitical Risk (GPR) Index stood at **80.7**. The index changed by -9.82% month-over-month, showing relative stability. Compared to the same period last year, the index shifted by 0.40%. + +**Historical Context:** +This reading sits at the **26.3th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 76.20 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: October 2021 + +**Date:** October 2021 +**GPR Score:** 79.03 + +**Summary:** +In October 2021, the global Geopolitical Risk (GPR) Index stood at **79.03**. The index changed by -2.07% month-over-month, showing relative stability. Compared to the same period last year, the index shifted by 3.87%. + +**Historical Context:** +This reading sits at the **23.0th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 83.07 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: November 2021 + +**Date:** November 2021 +**GPR Score:** 86.57 + +**Summary:** +In November 2021, the global Geopolitical Risk (GPR) Index stood at **86.57**. The index changed by 9.54% month-over-month, showing relative stability. Compared to the same period last year, the index shifted by 23.55%. + +**Historical Context:** +This reading sits at the **38.8th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 82.10 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: December 2021 + +**Date:** December 2021 +**GPR Score:** 105.35 + +**Summary:** +In December 2021, the global Geopolitical Risk (GPR) Index stood at **105.35**. This represents a **significant escalation**, surging by 21.69% compared to the previous month. Compared to the same period last year, the index shifted by 64.43%. + +**Historical Context:** +This reading sits at the **68.1th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 90.31 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: January 2022 + +**Date:** January 2022 +**GPR Score:** 138.67 + +**Summary:** +In January 2022, the global Geopolitical Risk (GPR) Index stood at **138.67**. This represents a **significant escalation**, surging by 31.64% compared to the previous month. Compared to the same period last year, the index shifted by 79.12%. + +**Historical Context:** +This reading sits at the **88.3th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 110.20 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: February 2022 + +**Date:** February 2022 +**GPR Score:** 216.16 + +**Summary:** +In February 2022, the global Geopolitical Risk (GPR) Index stood at **216.16**. This represents a **significant escalation**, surging by 55.87% compared to the previous month. Compared to the same period last year, the index shifted by 192.28%. + +**Historical Context:** +This reading sits at the **97.4th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 153.39 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: March 2022 + +**Date:** March 2022 +**GPR Score:** 318.95 + +**Summary:** +In March 2022, the global Geopolitical Risk (GPR) Index stood at **318.95**. This represents a **significant escalation**, surging by 47.56% compared to the previous month. Compared to the same period last year, the index shifted by 305.70%. + +**Historical Context:** +This reading sits at the **99.0th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 224.60 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: April 2022 + +**Date:** April 2022 +**GPR Score:** 191.14 + +**Summary:** +In April 2022, the global Geopolitical Risk (GPR) Index stood at **191.14**. This indicates a **cooling off** of geopolitical tensions, dropping by 40.07% month-over-month. Compared to the same period last year, the index shifted by 116.80%. + +**Historical Context:** +This reading sits at the **96.8th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 242.09 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: May 2022 + +**Date:** May 2022 +**GPR Score:** 142.26 + +**Summary:** +In May 2022, the global Geopolitical Risk (GPR) Index stood at **142.26**. This indicates a **cooling off** of geopolitical tensions, dropping by 25.57% month-over-month. Compared to the same period last year, the index shifted by 52.95%. + +**Historical Context:** +This reading sits at the **89.3th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 217.45 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: June 2022 + +**Date:** June 2022 +**GPR Score:** 130.71 + +**Summary:** +In June 2022, the global Geopolitical Risk (GPR) Index stood at **130.71**. The index changed by -8.12% month-over-month, showing relative stability. Compared to the same period last year, the index shifted by 76.33%. + +**Historical Context:** +This reading sits at the **84.0th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 154.70 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: July 2022 + +**Date:** July 2022 +**GPR Score:** 117.18 + +**Summary:** +In July 2022, the global Geopolitical Risk (GPR) Index stood at **117.18**. This indicates a **cooling off** of geopolitical tensions, dropping by 10.35% month-over-month. Compared to the same period last year, the index shifted by 100.57%. + +**Historical Context:** +This reading sits at the **77.8th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 130.05 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: August 2022 + +**Date:** August 2022 +**GPR Score:** 132.86 + +**Summary:** +In August 2022, the global Geopolitical Risk (GPR) Index stood at **132.86**. This represents a **significant escalation**, surging by 13.39% compared to the previous month. Compared to the same period last year, the index shifted by 48.47%. + +**Historical Context:** +This reading sits at the **85.0th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 126.92 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: September 2022 + +**Date:** September 2022 +**GPR Score:** 131.99 + +**Summary:** +In September 2022, the global Geopolitical Risk (GPR) Index stood at **131.99**. The index changed by -0.66% month-over-month, showing relative stability. Compared to the same period last year, the index shifted by 63.56%. + +**Historical Context:** +This reading sits at the **84.8th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 127.34 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: October 2022 + +**Date:** October 2022 +**GPR Score:** 143.16 + +**Summary:** +In October 2022, the global Geopolitical Risk (GPR) Index stood at **143.16**. The index changed by 8.47% month-over-month, showing relative stability. Compared to the same period last year, the index shifted by 81.15%. + +**Historical Context:** +This reading sits at the **89.9th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 136.00 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: November 2022 + +**Date:** November 2022 +**GPR Score:** 116.72 + +**Summary:** +In November 2022, the global Geopolitical Risk (GPR) Index stood at **116.72**. This indicates a **cooling off** of geopolitical tensions, dropping by 18.47% month-over-month. Compared to the same period last year, the index shifted by 34.82%. + +**Historical Context:** +This reading sits at the **77.2th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 130.62 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: December 2022 + +**Date:** December 2022 +**GPR Score:** 111.2 + +**Summary:** +In December 2022, the global Geopolitical Risk (GPR) Index stood at **111.2**. The index changed by -4.73% month-over-month, showing relative stability. Compared to the same period last year, the index shifted by 5.55%. + +**Historical Context:** +This reading sits at the **72.9th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 123.69 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: January 2023 + +**Date:** January 2023 +**GPR Score:** 104.27 + +**Summary:** +In January 2023, the global Geopolitical Risk (GPR) Index stood at **104.27**. The index changed by -6.23% month-over-month, showing relative stability. Compared to the same period last year, the index shifted by -24.81%. + +**Historical Context:** +This reading sits at the **66.5th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 110.73 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: February 2023 + +**Date:** February 2023 +**GPR Score:** 120.99 + +**Summary:** +In February 2023, the global Geopolitical Risk (GPR) Index stood at **120.99**. This represents a **significant escalation**, surging by 16.04% compared to the previous month. Compared to the same period last year, the index shifted by -44.03%. + +**Historical Context:** +This reading sits at the **80.2th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 112.15 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: March 2023 + +**Date:** March 2023 +**GPR Score:** 105.38 + +**Summary:** +In March 2023, the global Geopolitical Risk (GPR) Index stood at **105.38**. This indicates a **cooling off** of geopolitical tensions, dropping by 12.91% month-over-month. Compared to the same period last year, the index shifted by -66.96%. + +**Historical Context:** +This reading sits at the **68.3th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 110.21 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: April 2023 + +**Date:** April 2023 +**GPR Score:** 106.81 + +**Summary:** +In April 2023, the global Geopolitical Risk (GPR) Index stood at **106.81**. The index changed by 1.36% month-over-month, showing relative stability. Compared to the same period last year, the index shifted by -44.12%. + +**Historical Context:** +This reading sits at the **69.7th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 111.06 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: May 2023 + +**Date:** May 2023 +**GPR Score:** 108.47 + +**Summary:** +In May 2023, the global Geopolitical Risk (GPR) Index stood at **108.47**. The index changed by 1.55% month-over-month, showing relative stability. Compared to the same period last year, the index shifted by -23.75%. + +**Historical Context:** +This reading sits at the **70.7th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 106.89 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: June 2023 + +**Date:** June 2023 +**GPR Score:** 110.53 + +**Summary:** +In June 2023, the global Geopolitical Risk (GPR) Index stood at **110.53**. The index changed by 1.90% month-over-month, showing relative stability. Compared to the same period last year, the index shifted by -15.44%. + +**Historical Context:** +This reading sits at the **72.5th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 108.60 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: July 2023 + +**Date:** July 2023 +**GPR Score:** 107.45 + +**Summary:** +In July 2023, the global Geopolitical Risk (GPR) Index stood at **107.45**. The index changed by -2.79% month-over-month, showing relative stability. Compared to the same period last year, the index shifted by -8.30%. + +**Historical Context:** +This reading sits at the **70.1th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 108.82 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: August 2023 + +**Date:** August 2023 +**GPR Score:** 101.14 + +**Summary:** +In August 2023, the global Geopolitical Risk (GPR) Index stood at **101.14**. The index changed by -5.87% month-over-month, showing relative stability. Compared to the same period last year, the index shifted by -23.88%. + +**Historical Context:** +This reading sits at the **62.4th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 106.37 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: September 2023 + +**Date:** September 2023 +**GPR Score:** 98.63 + +**Summary:** +In September 2023, the global Geopolitical Risk (GPR) Index stood at **98.63**. The index changed by -2.48% month-over-month, showing relative stability. Compared to the same period last year, the index shifted by -25.27%. + +**Historical Context:** +This reading sits at the **58.8th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 102.41 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: October 2023 + +**Date:** October 2023 +**GPR Score:** 197.89 + +**Summary:** +In October 2023, the global Geopolitical Risk (GPR) Index stood at **197.89**. This represents a **significant escalation**, surging by 100.63% compared to the previous month. Compared to the same period last year, the index shifted by 38.23%. + +**Historical Context:** +This reading sits at the **97.0th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 132.55 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: November 2023 + +**Date:** November 2023 +**GPR Score:** 156.7 + +**Summary:** +In November 2023, the global Geopolitical Risk (GPR) Index stood at **156.7**. This indicates a **cooling off** of geopolitical tensions, dropping by 20.82% month-over-month. Compared to the same period last year, the index shifted by 34.25%. + +**Historical Context:** +This reading sits at the **93.3th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 151.07 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: December 2023 + +**Date:** December 2023 +**GPR Score:** 142.28 + +**Summary:** +In December 2023, the global Geopolitical Risk (GPR) Index stood at **142.28**. The index changed by -9.20% month-over-month, showing relative stability. Compared to the same period last year, the index shifted by 27.95%. + +**Historical Context:** +This reading sits at the **89.5th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 165.62 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: January 2024 + +**Date:** January 2024 +**GPR Score:** 160.37 + +**Summary:** +In January 2024, the global Geopolitical Risk (GPR) Index stood at **160.37**. This represents a **significant escalation**, surging by 12.72% compared to the previous month. Compared to the same period last year, the index shifted by 53.81%. + +**Historical Context:** +This reading sits at the **94.1th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 153.12 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: February 2024 + +**Date:** February 2024 +**GPR Score:** 146.6 + +**Summary:** +In February 2024, the global Geopolitical Risk (GPR) Index stood at **146.6**. The index changed by -8.59% month-over-month, showing relative stability. Compared to the same period last year, the index shifted by 21.16%. + +**Historical Context:** +This reading sits at the **90.7th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 149.75 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: March 2024 + +**Date:** March 2024 +**GPR Score:** 133.21 + +**Summary:** +In March 2024, the global Geopolitical Risk (GPR) Index stood at **133.21**. The index changed by -9.13% month-over-month, showing relative stability. Compared to the same period last year, the index shifted by 26.41%. + +**Historical Context:** +This reading sits at the **85.2th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 146.73 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: April 2024 + +**Date:** April 2024 +**GPR Score:** 163.95 + +**Summary:** +In April 2024, the global Geopolitical Risk (GPR) Index stood at **163.95**. This represents a **significant escalation**, surging by 23.07% compared to the previous month. Compared to the same period last year, the index shifted by 53.49%. + +**Historical Context:** +This reading sits at the **94.8th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 147.92 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: May 2024 + +**Date:** May 2024 +**GPR Score:** 130.52 + +**Summary:** +In May 2024, the global Geopolitical Risk (GPR) Index stood at **130.52**. This indicates a **cooling off** of geopolitical tensions, dropping by 20.39% month-over-month. Compared to the same period last year, the index shifted by 20.33%. + +**Historical Context:** +This reading sits at the **83.6th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 142.56 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: June 2024 + +**Date:** June 2024 +**GPR Score:** 113.09 + +**Summary:** +In June 2024, the global Geopolitical Risk (GPR) Index stood at **113.09**. This indicates a **cooling off** of geopolitical tensions, dropping by 13.35% month-over-month. Compared to the same period last year, the index shifted by 2.32%. + +**Historical Context:** +This reading sits at the **74.8th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 135.85 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: July 2024 + +**Date:** July 2024 +**GPR Score:** 92.39 + +**Summary:** +In July 2024, the global Geopolitical Risk (GPR) Index stood at **92.39**. This indicates a **cooling off** of geopolitical tensions, dropping by 18.30% month-over-month. Compared to the same period last year, the index shifted by -14.01%. + +**Historical Context:** +This reading sits at the **49.1th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 112.00 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: August 2024 + +**Date:** August 2024 +**GPR Score:** 140.98 + +**Summary:** +In August 2024, the global Geopolitical Risk (GPR) Index stood at **140.98**. This represents a **significant escalation**, surging by 52.58% compared to the previous month. Compared to the same period last year, the index shifted by 39.38%. + +**Historical Context:** +This reading sits at the **89.1th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 115.49 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: September 2024 + +**Date:** September 2024 +**GPR Score:** 130.36 + +**Summary:** +In September 2024, the global Geopolitical Risk (GPR) Index stood at **130.36**. The index changed by -7.53% month-over-month, showing relative stability. Compared to the same period last year, the index shifted by 32.16%. + +**Historical Context:** +This reading sits at the **83.4th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 121.24 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: October 2024 + +**Date:** October 2024 +**GPR Score:** 130.69 + +**Summary:** +In October 2024, the global Geopolitical Risk (GPR) Index stood at **130.69**. The index changed by 0.25% month-over-month, showing relative stability. Compared to the same period last year, the index shifted by -33.96%. + +**Historical Context:** +This reading sits at the **83.8th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 134.01 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: November 2024 + +**Date:** November 2024 +**GPR Score:** 128.9 + +**Summary:** +In November 2024, the global Geopolitical Risk (GPR) Index stood at **128.9**. The index changed by -1.37% month-over-month, showing relative stability. Compared to the same period last year, the index shifted by -17.74%. + +**Historical Context:** +This reading sits at the **82.8th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 129.98 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: December 2024 + +**Date:** December 2024 +**GPR Score:** 142.37 + +**Summary:** +In December 2024, the global Geopolitical Risk (GPR) Index stood at **142.37**. This represents a **significant escalation**, surging by 10.45% compared to the previous month. Compared to the same period last year, the index shifted by 0.06%. + +**Historical Context:** +This reading sits at the **89.7th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 133.99 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: January 2025 + +**Date:** January 2025 +**GPR Score:** 113.23 + +**Summary:** +In January 2025, the global Geopolitical Risk (GPR) Index stood at **113.23**. This indicates a **cooling off** of geopolitical tensions, dropping by 20.46% month-over-month. Compared to the same period last year, the index shifted by -29.39%. + +**Historical Context:** +This reading sits at the **75.2th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 128.17 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: February 2025 + +**Date:** February 2025 +**GPR Score:** 136.97 + +**Summary:** +In February 2025, the global Geopolitical Risk (GPR) Index stood at **136.97**. This represents a **significant escalation**, surging by 20.96% compared to the previous month. Compared to the same period last year, the index shifted by -6.57%. + +**Historical Context:** +This reading sits at the **86.7th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 130.86 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: March 2025 + +**Date:** March 2025 +**GPR Score:** 173.91 + +**Summary:** +In March 2025, the global Geopolitical Risk (GPR) Index stood at **173.91**. This represents a **significant escalation**, surging by 26.97% compared to the previous month. Compared to the same period last year, the index shifted by 30.55%. + +**Historical Context:** +This reading sits at the **96.0th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 141.37 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: April 2025 + +**Date:** April 2025 +**GPR Score:** 140.97 + +**Summary:** +In April 2025, the global Geopolitical Risk (GPR) Index stood at **140.97**. This indicates a **cooling off** of geopolitical tensions, dropping by 18.94% month-over-month. Compared to the same period last year, the index shifted by -14.01%. + +**Historical Context:** +This reading sits at the **88.9th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 150.62 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: May 2025 + +**Date:** May 2025 +**GPR Score:** 165.66 + +**Summary:** +In May 2025, the global Geopolitical Risk (GPR) Index stood at **165.66**. This represents a **significant escalation**, surging by 17.51% compared to the previous month. Compared to the same period last year, the index shifted by 26.92%. + +**Historical Context:** +This reading sits at the **95.0th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 160.18 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: June 2025 + +**Date:** June 2025 +**GPR Score:** 222.38 + +**Summary:** +In June 2025, the global Geopolitical Risk (GPR) Index stood at **222.38**. This represents a **significant escalation**, surging by 34.24% compared to the previous month. Compared to the same period last year, the index shifted by 96.63%. + +**Historical Context:** +This reading sits at the **97.6th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 176.34 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: July 2025 + +**Date:** July 2025 +**GPR Score:** 134.02 + +**Summary:** +In July 2025, the global Geopolitical Risk (GPR) Index stood at **134.02**. This indicates a **cooling off** of geopolitical tensions, dropping by 39.73% month-over-month. Compared to the same period last year, the index shifted by 45.05%. + +**Historical Context:** +This reading sits at the **85.7th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 174.02 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: August 2025 + +**Date:** August 2025 +**GPR Score:** 138.56 + +**Summary:** +In August 2025, the global Geopolitical Risk (GPR) Index stood at **138.56**. The index changed by 3.39% month-over-month, showing relative stability. Compared to the same period last year, the index shifted by -1.71%. + +**Historical Context:** +This reading sits at the **88.1th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 164.99 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: September 2025 + +**Date:** September 2025 +**GPR Score:** 125.87 + +**Summary:** +In September 2025, the global Geopolitical Risk (GPR) Index stood at **125.87**. The index changed by -9.16% month-over-month, showing relative stability. Compared to the same period last year, the index shifted by -3.44%. + +**Historical Context:** +This reading sits at the **82.2th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 132.82 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: October 2025 + +**Date:** October 2025 +**GPR Score:** 154.51 + +**Summary:** +In October 2025, the global Geopolitical Risk (GPR) Index stood at **154.51**. This represents a **significant escalation**, surging by 22.76% compared to the previous month. Compared to the same period last year, the index shifted by 18.23%. + +**Historical Context:** +This reading sits at the **93.1th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 139.65 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: November 2025 + +**Date:** November 2025 +**GPR Score:** 104.34 + +**Summary:** +In November 2025, the global Geopolitical Risk (GPR) Index stood at **104.34**. This indicates a **cooling off** of geopolitical tensions, dropping by 32.47% month-over-month. Compared to the same period last year, the index shifted by -19.06%. + +**Historical Context:** +This reading sits at the **66.7th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 128.24 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: December 2025 + +**Date:** December 2025 +**GPR Score:** 131.39 + +**Summary:** +In December 2025, the global Geopolitical Risk (GPR) Index stood at **131.39**. This represents a **significant escalation**, surging by 25.93% compared to the previous month. Compared to the same period last year, the index shifted by -7.71%. + +**Historical Context:** +This reading sits at the **84.4th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 130.08 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: January 2026 + +**Date:** January 2026 +**GPR Score:** 167.8 + +**Summary:** +In January 2026, the global Geopolitical Risk (GPR) Index stood at **167.8**. This represents a **significant escalation**, surging by 27.71% compared to the previous month. Compared to the same period last year, the index shifted by 48.19%. + +**Historical Context:** +This reading sits at the **95.3th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 134.51 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: February 2026 + +**Date:** February 2026 +**GPR Score:** 121.62 + +**Summary:** +In February 2026, the global Geopolitical Risk (GPR) Index stood at **121.62**. This indicates a **cooling off** of geopolitical tensions, dropping by 27.52% month-over-month. Compared to the same period last year, the index shifted by -11.21%. + +**Historical Context:** +This reading sits at the **80.8th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 140.27 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + +### Geopolitical Risk (GPR) Index Update: March 2026 + +**Date:** March 2026 +**GPR Score:** 297.27 + +**Summary:** +In March 2026, the global Geopolitical Risk (GPR) Index stood at **297.27**. This represents a **significant escalation**, surging by 144.43% compared to the previous month. Compared to the same period last year, the index shifted by 70.93%. + +**Historical Context:** +This reading sits at the **98.6th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 195.56 suggests the current medium-term trend. + +**Impact on Precious Metals:** +Historically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG). + + +--- + diff --git a/Data/3_Gold_Semantic/GPR_index/2026-04-10/qdrant_gpr_input.jsonl b/Data/3_Gold_Semantic/GPR_index/2026-04-10/qdrant_gpr_input.jsonl new file mode 100644 index 0000000..d31bcdc --- /dev/null +++ b/Data/3_Gold_Semantic/GPR_index/2026-04-10/qdrant_gpr_input.jsonl @@ -0,0 +1,75 @@ +{"id": "8aa40e1b-b56e-55b4-addd-af6fe6041045", "text": "### Geopolitical Risk (GPR) Index Update: January 2020\n\n**Date:** January 2020\n**GPR Score:** 138.42\n\n**Summary:**\nIn January 2020, the global Geopolitical Risk (GPR) Index stood at **138.42**. This represents a **significant escalation**, surging by 86.35% compared to the previous month. Compared to the same period last year, the index shifted by 58.33%.\n\n**Historical Context:**\nThis reading sits at the **87.5th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 95.26 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2020-01", "publish_date": "2020-01-01", "publish_timestamp": 1577836800, "gpr_score": 138.42, "gpr_percentile": 87.47}} +{"id": "37c10f6b-7a33-54d4-aa57-f54d6e02b047", "text": "### Geopolitical Risk (GPR) Index Update: February 2020\n\n**Date:** February 2020\n**GPR Score:** 75.96\n\n**Summary:**\nIn February 2020, the global Geopolitical Risk (GPR) Index stood at **75.96**. This indicates a **cooling off** of geopolitical tensions, dropping by 45.13% month-over-month. Compared to the same period last year, the index shifted by -21.53%.\n\n**Historical Context:**\nThis reading sits at the **18.8th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 96.22 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2020-02", "publish_date": "2020-02-01", "publish_timestamp": 1580515200, "gpr_score": 75.96, "gpr_percentile": 18.79}} +{"id": "2085a0c1-043d-5f18-82a8-03eea46ea07f", "text": "### Geopolitical Risk (GPR) Index Update: March 2020\n\n**Date:** March 2020\n**GPR Score:** 81.54\n\n**Summary:**\nIn March 2020, the global Geopolitical Risk (GPR) Index stood at **81.54**. The index changed by 7.35% month-over-month, showing relative stability. Compared to the same period last year, the index shifted by -0.96%.\n\n**Historical Context:**\nThis reading sits at the **27.9th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 98.64 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2020-03", "publish_date": "2020-03-01", "publish_timestamp": 1583020800, "gpr_score": 81.54, "gpr_percentile": 27.88}} +{"id": "214e06ea-3991-59b3-9fb6-5a198b0f4580", "text": "### Geopolitical Risk (GPR) Index Update: April 2020\n\n**Date:** April 2020\n**GPR Score:** 69.34\n\n**Summary:**\nIn April 2020, the global Geopolitical Risk (GPR) Index stood at **69.34**. This indicates a **cooling off** of geopolitical tensions, dropping by 14.96% month-over-month. Compared to the same period last year, the index shifted by -12.51%.\n\n**Historical Context:**\nThis reading sits at the **12.5th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 75.61 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2020-04", "publish_date": "2020-04-01", "publish_timestamp": 1585699200, "gpr_score": 69.34, "gpr_percentile": 12.53}} +{"id": "b17910ae-9aeb-5c07-995e-409bab57543a", "text": "### Geopolitical Risk (GPR) Index Update: May 2020\n\n**Date:** May 2020\n**GPR Score:** 68.51\n\n**Summary:**\nIn May 2020, the global Geopolitical Risk (GPR) Index stood at **68.51**. The index changed by -1.20% month-over-month, showing relative stability. Compared to the same period last year, the index shifted by -35.66%.\n\n**Historical Context:**\nThis reading sits at the **11.5th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 73.13 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2020-05", "publish_date": "2020-05-01", "publish_timestamp": 1588291200, "gpr_score": 68.51, "gpr_percentile": 11.52}} +{"id": "cea60daa-73a0-5d98-bc8f-bf4000509223", "text": "### Geopolitical Risk (GPR) Index Update: June 2020\n\n**Date:** June 2020\n**GPR Score:** 71.23\n\n**Summary:**\nIn June 2020, the global Geopolitical Risk (GPR) Index stood at **71.23**. The index changed by 3.97% month-over-month, showing relative stability. Compared to the same period last year, the index shifted by -33.17%.\n\n**Historical Context:**\nThis reading sits at the **13.9th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 69.69 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2020-06", "publish_date": "2020-06-01", "publish_timestamp": 1590969600, "gpr_score": 71.23, "gpr_percentile": 13.94}} +{"id": "58952a55-4410-5967-b6d7-6004ec1228dd", "text": "### Geopolitical Risk (GPR) Index Update: July 2020\n\n**Date:** July 2020\n**GPR Score:** 66.47\n\n**Summary:**\nIn July 2020, the global Geopolitical Risk (GPR) Index stood at **66.47**. The index changed by -6.68% month-over-month, showing relative stability. Compared to the same period last year, the index shifted by -28.92%.\n\n**Historical Context:**\nThis reading sits at the **10.3th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 68.74 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2020-07", "publish_date": "2020-07-01", "publish_timestamp": 1593561600, "gpr_score": 66.47, "gpr_percentile": 10.3}} +{"id": "b20ee7e1-4664-5a0a-aa56-d15fe7eecb10", "text": "### Geopolitical Risk (GPR) Index Update: August 2020\n\n**Date:** August 2020\n**GPR Score:** 65.47\n\n**Summary:**\nIn August 2020, the global Geopolitical Risk (GPR) Index stood at **65.47**. The index changed by -1.52% month-over-month, showing relative stability. Compared to the same period last year, the index shifted by -36.69%.\n\n**Historical Context:**\nThis reading sits at the **9.5th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 67.72 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2020-08", "publish_date": "2020-08-01", "publish_timestamp": 1596240000, "gpr_score": 65.47, "gpr_percentile": 9.49}} +{"id": "0a9eb60d-9cc7-53b0-8e7e-492efb7397c8", "text": "### Geopolitical Risk (GPR) Index Update: September 2020\n\n**Date:** September 2020\n**GPR Score:** 80.38\n\n**Summary:**\nIn September 2020, the global Geopolitical Risk (GPR) Index stood at **80.38**. This represents a **significant escalation**, surging by 22.78% compared to the previous month. Compared to the same period last year, the index shifted by -11.06%.\n\n**Historical Context:**\nThis reading sits at the **25.4th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 70.77 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2020-09", "publish_date": "2020-09-01", "publish_timestamp": 1598918400, "gpr_score": 80.38, "gpr_percentile": 25.45}} +{"id": "e04d9434-76eb-5f68-b85b-0c3ac4cb9b33", "text": "### Geopolitical Risk (GPR) Index Update: October 2020\n\n**Date:** October 2020\n**GPR Score:** 76.08\n\n**Summary:**\nIn October 2020, the global Geopolitical Risk (GPR) Index stood at **76.08**. The index changed by -5.34% month-over-month, showing relative stability. Compared to the same period last year, the index shifted by -22.23%.\n\n**Historical Context:**\nThis reading sits at the **19.2th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 73.98 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2020-10", "publish_date": "2020-10-01", "publish_timestamp": 1601510400, "gpr_score": 76.08, "gpr_percentile": 19.19}} +{"id": "4c8c88a3-0e1f-5496-89e4-390f5a8e1770", "text": "### Geopolitical Risk (GPR) Index Update: November 2020\n\n**Date:** November 2020\n**GPR Score:** 70.07\n\n**Summary:**\nIn November 2020, the global Geopolitical Risk (GPR) Index stood at **70.07**. The index changed by -7.91% month-over-month, showing relative stability. Compared to the same period last year, the index shifted by -4.12%.\n\n**Historical Context:**\nThis reading sits at the **13.1th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 75.51 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2020-11", "publish_date": "2020-11-01", "publish_timestamp": 1604188800, "gpr_score": 70.07, "gpr_percentile": 13.13}} +{"id": "b63072dc-5040-515f-b3ea-02483d3a8079", "text": "### Geopolitical Risk (GPR) Index Update: December 2020\n\n**Date:** December 2020\n**GPR Score:** 64.07\n\n**Summary:**\nIn December 2020, the global Geopolitical Risk (GPR) Index stood at **64.07**. The index changed by -8.56% month-over-month, showing relative stability. Compared to the same period last year, the index shifted by -13.75%.\n\n**Historical Context:**\nThis reading sits at the **8.3th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 70.07 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2020-12", "publish_date": "2020-12-01", "publish_timestamp": 1606780800, "gpr_score": 64.07, "gpr_percentile": 8.28}} +{"id": "9b29a461-2be8-5ffe-a204-f4b0e198ee11", "text": "### Geopolitical Risk (GPR) Index Update: January 2021\n\n**Date:** January 2021\n**GPR Score:** 77.42\n\n**Summary:**\nIn January 2021, the global Geopolitical Risk (GPR) Index stood at **77.42**. This represents a **significant escalation**, surging by 20.84% compared to the previous month. Compared to the same period last year, the index shifted by -44.07%.\n\n**Historical Context:**\nThis reading sits at the **21.0th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 70.52 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2021-01", "publish_date": "2021-01-01", "publish_timestamp": 1609459200, "gpr_score": 77.42, "gpr_percentile": 21.01}} +{"id": "3d05aa85-4099-5390-84f9-8a43f4af2672", "text": "### Geopolitical Risk (GPR) Index Update: February 2021\n\n**Date:** February 2021\n**GPR Score:** 73.96\n\n**Summary:**\nIn February 2021, the global Geopolitical Risk (GPR) Index stood at **73.96**. The index changed by -4.47% month-over-month, showing relative stability. Compared to the same period last year, the index shifted by -2.63%.\n\n**Historical Context:**\nThis reading sits at the **16.0th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 71.81 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2021-02", "publish_date": "2021-02-01", "publish_timestamp": 1612137600, "gpr_score": 73.96, "gpr_percentile": 15.96}} +{"id": "4c689546-4513-5498-87bf-f4be30a4e98d", "text": "### Geopolitical Risk (GPR) Index Update: March 2021\n\n**Date:** March 2021\n**GPR Score:** 78.62\n\n**Summary:**\nIn March 2021, the global Geopolitical Risk (GPR) Index stood at **78.62**. The index changed by 6.30% month-over-month, showing relative stability. Compared to the same period last year, the index shifted by -3.58%.\n\n**Historical Context:**\nThis reading sits at the **22.4th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 76.66 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2021-03", "publish_date": "2021-03-01", "publish_timestamp": 1614556800, "gpr_score": 78.62, "gpr_percentile": 22.42}} +{"id": "b4a5f400-63fb-5c1f-9abf-cf10df4534f2", "text": "### Geopolitical Risk (GPR) Index Update: April 2021\n\n**Date:** April 2021\n**GPR Score:** 88.17\n\n**Summary:**\nIn April 2021, the global Geopolitical Risk (GPR) Index stood at **88.17**. This represents a **significant escalation**, surging by 12.14% compared to the previous month. Compared to the same period last year, the index shifted by 27.15%.\n\n**Historical Context:**\nThis reading sits at the **41.2th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 80.25 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2021-04", "publish_date": "2021-04-01", "publish_timestamp": 1617235200, "gpr_score": 88.17, "gpr_percentile": 41.21}} +{"id": "b476abc3-9b9c-5136-b076-e64f51f4833a", "text": "### Geopolitical Risk (GPR) Index Update: May 2021\n\n**Date:** May 2021\n**GPR Score:** 93.01\n\n**Summary:**\nIn May 2021, the global Geopolitical Risk (GPR) Index stood at **93.01**. The index changed by 5.49% month-over-month, showing relative stability. Compared to the same period last year, the index shifted by 35.76%.\n\n**Historical Context:**\nThis reading sits at the **50.9th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 86.60 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2021-05", "publish_date": "2021-05-01", "publish_timestamp": 1619827200, "gpr_score": 93.01, "gpr_percentile": 50.91}} +{"id": "e650993e-f5ab-540e-bc76-b3fd191cc0f2", "text": "### Geopolitical Risk (GPR) Index Update: June 2021\n\n**Date:** June 2021\n**GPR Score:** 74.13\n\n**Summary:**\nIn June 2021, the global Geopolitical Risk (GPR) Index stood at **74.13**. This indicates a **cooling off** of geopolitical tensions, dropping by 20.30% month-over-month. Compared to the same period last year, the index shifted by 4.07%.\n\n**Historical Context:**\nThis reading sits at the **16.6th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 85.10 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2021-06", "publish_date": "2021-06-01", "publish_timestamp": 1622505600, "gpr_score": 74.13, "gpr_percentile": 16.57}} +{"id": "c7080c2d-fcb4-5ce8-be15-89ed1403142d", "text": "### Geopolitical Risk (GPR) Index Update: July 2021\n\n**Date:** July 2021\n**GPR Score:** 58.42\n\n**Summary:**\nIn July 2021, the global Geopolitical Risk (GPR) Index stood at **58.42**. This indicates a **cooling off** of geopolitical tensions, dropping by 21.19% month-over-month. Compared to the same period last year, the index shifted by -12.11%.\n\n**Historical Context:**\nThis reading sits at the **5.9th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 75.19 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2021-07", "publish_date": "2021-07-01", "publish_timestamp": 1625097600, "gpr_score": 58.42, "gpr_percentile": 5.86}} +{"id": "845edb1e-4779-52b6-9a66-44ec8e00501d", "text": "### Geopolitical Risk (GPR) Index Update: August 2021\n\n**Date:** August 2021\n**GPR Score:** 89.49\n\n**Summary:**\nIn August 2021, the global Geopolitical Risk (GPR) Index stood at **89.49**. This represents a **significant escalation**, surging by 53.18% compared to the previous month. Compared to the same period last year, the index shifted by 36.69%.\n\n**Historical Context:**\nThis reading sits at the **44.0th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 74.01 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2021-08", "publish_date": "2021-08-01", "publish_timestamp": 1627776000, "gpr_score": 89.49, "gpr_percentile": 44.04}} +{"id": "8ce4b880-6fce-561c-8128-87c805ba1333", "text": "### Geopolitical Risk (GPR) Index Update: September 2021\n\n**Date:** September 2021\n**GPR Score:** 80.7\n\n**Summary:**\nIn September 2021, the global Geopolitical Risk (GPR) Index stood at **80.7**. The index changed by -9.82% month-over-month, showing relative stability. Compared to the same period last year, the index shifted by 0.40%.\n\n**Historical Context:**\nThis reading sits at the **26.3th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 76.20 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2021-09", "publish_date": "2021-09-01", "publish_timestamp": 1630454400, "gpr_score": 80.7, "gpr_percentile": 26.26}} +{"id": "4e49e4e0-e103-57b6-9f80-ff6fa27543d7", "text": "### Geopolitical Risk (GPR) Index Update: October 2021\n\n**Date:** October 2021\n**GPR Score:** 79.03\n\n**Summary:**\nIn October 2021, the global Geopolitical Risk (GPR) Index stood at **79.03**. The index changed by -2.07% month-over-month, showing relative stability. Compared to the same period last year, the index shifted by 3.87%.\n\n**Historical Context:**\nThis reading sits at the **23.0th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 83.07 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2021-10", "publish_date": "2021-10-01", "publish_timestamp": 1633046400, "gpr_score": 79.03, "gpr_percentile": 23.03}} +{"id": "beabc870-4fcd-5636-944f-79054d24ecf0", "text": "### Geopolitical Risk (GPR) Index Update: November 2021\n\n**Date:** November 2021\n**GPR Score:** 86.57\n\n**Summary:**\nIn November 2021, the global Geopolitical Risk (GPR) Index stood at **86.57**. The index changed by 9.54% month-over-month, showing relative stability. Compared to the same period last year, the index shifted by 23.55%.\n\n**Historical Context:**\nThis reading sits at the **38.8th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 82.10 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2021-11", "publish_date": "2021-11-01", "publish_timestamp": 1635724800, "gpr_score": 86.57, "gpr_percentile": 38.79}} +{"id": "71235083-8d71-5a97-bc58-373053ad79b6", "text": "### Geopolitical Risk (GPR) Index Update: December 2021\n\n**Date:** December 2021\n**GPR Score:** 105.35\n\n**Summary:**\nIn December 2021, the global Geopolitical Risk (GPR) Index stood at **105.35**. This represents a **significant escalation**, surging by 21.69% compared to the previous month. Compared to the same period last year, the index shifted by 64.43%.\n\n**Historical Context:**\nThis reading sits at the **68.1th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 90.31 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2021-12", "publish_date": "2021-12-01", "publish_timestamp": 1638316800, "gpr_score": 105.35, "gpr_percentile": 68.08}} +{"id": "dfacf6a7-3225-57b9-9e18-dd439c6639f6", "text": "### Geopolitical Risk (GPR) Index Update: January 2022\n\n**Date:** January 2022\n**GPR Score:** 138.67\n\n**Summary:**\nIn January 2022, the global Geopolitical Risk (GPR) Index stood at **138.67**. This represents a **significant escalation**, surging by 31.64% compared to the previous month. Compared to the same period last year, the index shifted by 79.12%.\n\n**Historical Context:**\nThis reading sits at the **88.3th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 110.20 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2022-01", "publish_date": "2022-01-01", "publish_timestamp": 1640995200, "gpr_score": 138.67, "gpr_percentile": 88.28}} +{"id": "bc68b51a-48a6-52af-b9f3-271beeaff356", "text": "### Geopolitical Risk (GPR) Index Update: February 2022\n\n**Date:** February 2022\n**GPR Score:** 216.16\n\n**Summary:**\nIn February 2022, the global Geopolitical Risk (GPR) Index stood at **216.16**. This represents a **significant escalation**, surging by 55.87% compared to the previous month. Compared to the same period last year, the index shifted by 192.28%.\n\n**Historical Context:**\nThis reading sits at the **97.4th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 153.39 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2022-02", "publish_date": "2022-02-01", "publish_timestamp": 1643673600, "gpr_score": 216.16, "gpr_percentile": 97.37}} +{"id": "eebd7873-7519-52d5-a5e3-cca45187edf2", "text": "### Geopolitical Risk (GPR) Index Update: March 2022\n\n**Date:** March 2022\n**GPR Score:** 318.95\n\n**Summary:**\nIn March 2022, the global Geopolitical Risk (GPR) Index stood at **318.95**. This represents a **significant escalation**, surging by 47.56% compared to the previous month. Compared to the same period last year, the index shifted by 305.70%.\n\n**Historical Context:**\nThis reading sits at the **99.0th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 224.60 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2022-03", "publish_date": "2022-03-01", "publish_timestamp": 1646092800, "gpr_score": 318.95, "gpr_percentile": 98.99}} +{"id": "0d3ed813-8c4a-52df-b617-a26dc62afe0c", "text": "### Geopolitical Risk (GPR) Index Update: April 2022\n\n**Date:** April 2022\n**GPR Score:** 191.14\n\n**Summary:**\nIn April 2022, the global Geopolitical Risk (GPR) Index stood at **191.14**. This indicates a **cooling off** of geopolitical tensions, dropping by 40.07% month-over-month. Compared to the same period last year, the index shifted by 116.80%.\n\n**Historical Context:**\nThis reading sits at the **96.8th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 242.09 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2022-04", "publish_date": "2022-04-01", "publish_timestamp": 1648771200, "gpr_score": 191.14, "gpr_percentile": 96.77}} +{"id": "1d6b0ec9-7653-5ed9-b26a-2605c4ca90fb", "text": "### Geopolitical Risk (GPR) Index Update: May 2022\n\n**Date:** May 2022\n**GPR Score:** 142.26\n\n**Summary:**\nIn May 2022, the global Geopolitical Risk (GPR) Index stood at **142.26**. This indicates a **cooling off** of geopolitical tensions, dropping by 25.57% month-over-month. Compared to the same period last year, the index shifted by 52.95%.\n\n**Historical Context:**\nThis reading sits at the **89.3th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 217.45 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2022-05", "publish_date": "2022-05-01", "publish_timestamp": 1651363200, "gpr_score": 142.26, "gpr_percentile": 89.29}} +{"id": "fe818e47-b1da-54e0-855b-9eb374e833c2", "text": "### Geopolitical Risk (GPR) Index Update: June 2022\n\n**Date:** June 2022\n**GPR Score:** 130.71\n\n**Summary:**\nIn June 2022, the global Geopolitical Risk (GPR) Index stood at **130.71**. The index changed by -8.12% month-over-month, showing relative stability. Compared to the same period last year, the index shifted by 76.33%.\n\n**Historical Context:**\nThis reading sits at the **84.0th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 154.70 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2022-06", "publish_date": "2022-06-01", "publish_timestamp": 1654041600, "gpr_score": 130.71, "gpr_percentile": 84.04}} +{"id": "8b5d94be-38d3-55f4-99e1-403059e504f0", "text": "### Geopolitical Risk (GPR) Index Update: July 2022\n\n**Date:** July 2022\n**GPR Score:** 117.18\n\n**Summary:**\nIn July 2022, the global Geopolitical Risk (GPR) Index stood at **117.18**. This indicates a **cooling off** of geopolitical tensions, dropping by 10.35% month-over-month. Compared to the same period last year, the index shifted by 100.57%.\n\n**Historical Context:**\nThis reading sits at the **77.8th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 130.05 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2022-07", "publish_date": "2022-07-01", "publish_timestamp": 1656633600, "gpr_score": 117.18, "gpr_percentile": 77.78}} +{"id": "a09f0ea8-3acd-5358-ad45-1771145b7f15", "text": "### Geopolitical Risk (GPR) Index Update: August 2022\n\n**Date:** August 2022\n**GPR Score:** 132.86\n\n**Summary:**\nIn August 2022, the global Geopolitical Risk (GPR) Index stood at **132.86**. This represents a **significant escalation**, surging by 13.39% compared to the previous month. Compared to the same period last year, the index shifted by 48.47%.\n\n**Historical Context:**\nThis reading sits at the **85.0th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 126.92 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2022-08", "publish_date": "2022-08-01", "publish_timestamp": 1659312000, "gpr_score": 132.86, "gpr_percentile": 85.05}} +{"id": "05c42d4b-6e17-5e96-9016-1b0f710cd01d", "text": "### Geopolitical Risk (GPR) Index Update: September 2022\n\n**Date:** September 2022\n**GPR Score:** 131.99\n\n**Summary:**\nIn September 2022, the global Geopolitical Risk (GPR) Index stood at **131.99**. The index changed by -0.66% month-over-month, showing relative stability. Compared to the same period last year, the index shifted by 63.56%.\n\n**Historical Context:**\nThis reading sits at the **84.8th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 127.34 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2022-09", "publish_date": "2022-09-01", "publish_timestamp": 1661990400, "gpr_score": 131.99, "gpr_percentile": 84.85}} +{"id": "549f8f4f-4081-566f-a3e2-f883083c3d5e", "text": "### Geopolitical Risk (GPR) Index Update: October 2022\n\n**Date:** October 2022\n**GPR Score:** 143.16\n\n**Summary:**\nIn October 2022, the global Geopolitical Risk (GPR) Index stood at **143.16**. The index changed by 8.47% month-over-month, showing relative stability. Compared to the same period last year, the index shifted by 81.15%.\n\n**Historical Context:**\nThis reading sits at the **89.9th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 136.00 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2022-10", "publish_date": "2022-10-01", "publish_timestamp": 1664582400, "gpr_score": 143.16, "gpr_percentile": 89.9}} +{"id": "4bc4da11-be70-5626-a9b3-a5763cd9b58c", "text": "### Geopolitical Risk (GPR) Index Update: November 2022\n\n**Date:** November 2022\n**GPR Score:** 116.72\n\n**Summary:**\nIn November 2022, the global Geopolitical Risk (GPR) Index stood at **116.72**. This indicates a **cooling off** of geopolitical tensions, dropping by 18.47% month-over-month. Compared to the same period last year, the index shifted by 34.82%.\n\n**Historical Context:**\nThis reading sits at the **77.2th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 130.62 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2022-11", "publish_date": "2022-11-01", "publish_timestamp": 1667260800, "gpr_score": 116.72, "gpr_percentile": 77.17}} +{"id": "f4ebedde-7e31-5018-be36-c824111fb99d", "text": "### Geopolitical Risk (GPR) Index Update: December 2022\n\n**Date:** December 2022\n**GPR Score:** 111.2\n\n**Summary:**\nIn December 2022, the global Geopolitical Risk (GPR) Index stood at **111.2**. The index changed by -4.73% month-over-month, showing relative stability. Compared to the same period last year, the index shifted by 5.55%.\n\n**Historical Context:**\nThis reading sits at the **72.9th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 123.69 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2022-12", "publish_date": "2022-12-01", "publish_timestamp": 1669852800, "gpr_score": 111.2, "gpr_percentile": 72.93}} +{"id": "d30e17d2-c624-58f9-887d-f0ec8c3da221", "text": "### Geopolitical Risk (GPR) Index Update: January 2023\n\n**Date:** January 2023\n**GPR Score:** 104.27\n\n**Summary:**\nIn January 2023, the global Geopolitical Risk (GPR) Index stood at **104.27**. The index changed by -6.23% month-over-month, showing relative stability. Compared to the same period last year, the index shifted by -24.81%.\n\n**Historical Context:**\nThis reading sits at the **66.5th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 110.73 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2023-01", "publish_date": "2023-01-01", "publish_timestamp": 1672531200, "gpr_score": 104.27, "gpr_percentile": 66.46}} +{"id": "b57d4dcf-4f24-5f39-a0b5-a9b254227022", "text": "### Geopolitical Risk (GPR) Index Update: February 2023\n\n**Date:** February 2023\n**GPR Score:** 120.99\n\n**Summary:**\nIn February 2023, the global Geopolitical Risk (GPR) Index stood at **120.99**. This represents a **significant escalation**, surging by 16.04% compared to the previous month. Compared to the same period last year, the index shifted by -44.03%.\n\n**Historical Context:**\nThis reading sits at the **80.2th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 112.15 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2023-02", "publish_date": "2023-02-01", "publish_timestamp": 1675209600, "gpr_score": 120.99, "gpr_percentile": 80.2}} +{"id": "ab709dae-80e5-5621-8dee-51e6fc41edf0", "text": "### Geopolitical Risk (GPR) Index Update: March 2023\n\n**Date:** March 2023\n**GPR Score:** 105.38\n\n**Summary:**\nIn March 2023, the global Geopolitical Risk (GPR) Index stood at **105.38**. This indicates a **cooling off** of geopolitical tensions, dropping by 12.91% month-over-month. Compared to the same period last year, the index shifted by -66.96%.\n\n**Historical Context:**\nThis reading sits at the **68.3th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 110.21 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2023-03", "publish_date": "2023-03-01", "publish_timestamp": 1677628800, "gpr_score": 105.38, "gpr_percentile": 68.28}} +{"id": "9cd09bab-5b4c-5fdc-a7d7-de7d54e4e916", "text": "### Geopolitical Risk (GPR) Index Update: April 2023\n\n**Date:** April 2023\n**GPR Score:** 106.81\n\n**Summary:**\nIn April 2023, the global Geopolitical Risk (GPR) Index stood at **106.81**. The index changed by 1.36% month-over-month, showing relative stability. Compared to the same period last year, the index shifted by -44.12%.\n\n**Historical Context:**\nThis reading sits at the **69.7th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 111.06 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2023-04", "publish_date": "2023-04-01", "publish_timestamp": 1680307200, "gpr_score": 106.81, "gpr_percentile": 69.7}} +{"id": "17a9f50e-d759-5f9a-a85f-8ae765234ac8", "text": "### Geopolitical Risk (GPR) Index Update: May 2023\n\n**Date:** May 2023\n**GPR Score:** 108.47\n\n**Summary:**\nIn May 2023, the global Geopolitical Risk (GPR) Index stood at **108.47**. The index changed by 1.55% month-over-month, showing relative stability. Compared to the same period last year, the index shifted by -23.75%.\n\n**Historical Context:**\nThis reading sits at the **70.7th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 106.89 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2023-05", "publish_date": "2023-05-01", "publish_timestamp": 1682899200, "gpr_score": 108.47, "gpr_percentile": 70.71}} +{"id": "7fc08cea-d8f5-5366-9552-968bfcfe2610", "text": "### Geopolitical Risk (GPR) Index Update: June 2023\n\n**Date:** June 2023\n**GPR Score:** 110.53\n\n**Summary:**\nIn June 2023, the global Geopolitical Risk (GPR) Index stood at **110.53**. The index changed by 1.90% month-over-month, showing relative stability. Compared to the same period last year, the index shifted by -15.44%.\n\n**Historical Context:**\nThis reading sits at the **72.5th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 108.60 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2023-06", "publish_date": "2023-06-01", "publish_timestamp": 1685577600, "gpr_score": 110.53, "gpr_percentile": 72.53}} +{"id": "8983f694-f54e-57bf-8e50-0bb16f9530ed", "text": "### Geopolitical Risk (GPR) Index Update: July 2023\n\n**Date:** July 2023\n**GPR Score:** 107.45\n\n**Summary:**\nIn July 2023, the global Geopolitical Risk (GPR) Index stood at **107.45**. The index changed by -2.79% month-over-month, showing relative stability. Compared to the same period last year, the index shifted by -8.30%.\n\n**Historical Context:**\nThis reading sits at the **70.1th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 108.82 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2023-07", "publish_date": "2023-07-01", "publish_timestamp": 1688169600, "gpr_score": 107.45, "gpr_percentile": 70.1}} +{"id": "4726b8d5-1d61-5fdd-9586-13ab46b62b01", "text": "### Geopolitical Risk (GPR) Index Update: August 2023\n\n**Date:** August 2023\n**GPR Score:** 101.14\n\n**Summary:**\nIn August 2023, the global Geopolitical Risk (GPR) Index stood at **101.14**. The index changed by -5.87% month-over-month, showing relative stability. Compared to the same period last year, the index shifted by -23.88%.\n\n**Historical Context:**\nThis reading sits at the **62.4th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 106.37 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2023-08", "publish_date": "2023-08-01", "publish_timestamp": 1690848000, "gpr_score": 101.14, "gpr_percentile": 62.42}} +{"id": "64e025c6-d993-5b06-b563-e3111e49b523", "text": "### Geopolitical Risk (GPR) Index Update: September 2023\n\n**Date:** September 2023\n**GPR Score:** 98.63\n\n**Summary:**\nIn September 2023, the global Geopolitical Risk (GPR) Index stood at **98.63**. The index changed by -2.48% month-over-month, showing relative stability. Compared to the same period last year, the index shifted by -25.27%.\n\n**Historical Context:**\nThis reading sits at the **58.8th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 102.41 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2023-09", "publish_date": "2023-09-01", "publish_timestamp": 1693526400, "gpr_score": 98.63, "gpr_percentile": 58.79}} +{"id": "e0fa3eba-ccba-5679-a9ad-9dd7630f1ec4", "text": "### Geopolitical Risk (GPR) Index Update: October 2023\n\n**Date:** October 2023\n**GPR Score:** 197.89\n\n**Summary:**\nIn October 2023, the global Geopolitical Risk (GPR) Index stood at **197.89**. This represents a **significant escalation**, surging by 100.63% compared to the previous month. Compared to the same period last year, the index shifted by 38.23%.\n\n**Historical Context:**\nThis reading sits at the **97.0th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 132.55 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2023-10", "publish_date": "2023-10-01", "publish_timestamp": 1696118400, "gpr_score": 197.89, "gpr_percentile": 96.97}} +{"id": "90237d10-c10b-5fd3-a3d5-ad05e59ca97e", "text": "### Geopolitical Risk (GPR) Index Update: November 2023\n\n**Date:** November 2023\n**GPR Score:** 156.7\n\n**Summary:**\nIn November 2023, the global Geopolitical Risk (GPR) Index stood at **156.7**. This indicates a **cooling off** of geopolitical tensions, dropping by 20.82% month-over-month. Compared to the same period last year, the index shifted by 34.25%.\n\n**Historical Context:**\nThis reading sits at the **93.3th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 151.07 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2023-11", "publish_date": "2023-11-01", "publish_timestamp": 1698796800, "gpr_score": 156.7, "gpr_percentile": 93.33}} +{"id": "aad585ab-ab9c-591b-b86b-eeb198a23027", "text": "### Geopolitical Risk (GPR) Index Update: December 2023\n\n**Date:** December 2023\n**GPR Score:** 142.28\n\n**Summary:**\nIn December 2023, the global Geopolitical Risk (GPR) Index stood at **142.28**. The index changed by -9.20% month-over-month, showing relative stability. Compared to the same period last year, the index shifted by 27.95%.\n\n**Historical Context:**\nThis reading sits at the **89.5th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 165.62 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2023-12", "publish_date": "2023-12-01", "publish_timestamp": 1701388800, "gpr_score": 142.28, "gpr_percentile": 89.49}} +{"id": "143aeb97-e095-51e1-bd87-b9be1203da92", "text": "### Geopolitical Risk (GPR) Index Update: January 2024\n\n**Date:** January 2024\n**GPR Score:** 160.37\n\n**Summary:**\nIn January 2024, the global Geopolitical Risk (GPR) Index stood at **160.37**. This represents a **significant escalation**, surging by 12.72% compared to the previous month. Compared to the same period last year, the index shifted by 53.81%.\n\n**Historical Context:**\nThis reading sits at the **94.1th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 153.12 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2024-01", "publish_date": "2024-01-01", "publish_timestamp": 1704067200, "gpr_score": 160.37, "gpr_percentile": 94.14}} +{"id": "baa96302-3b8f-57c7-a42d-94727e838254", "text": "### Geopolitical Risk (GPR) Index Update: February 2024\n\n**Date:** February 2024\n**GPR Score:** 146.6\n\n**Summary:**\nIn February 2024, the global Geopolitical Risk (GPR) Index stood at **146.6**. The index changed by -8.59% month-over-month, showing relative stability. Compared to the same period last year, the index shifted by 21.16%.\n\n**Historical Context:**\nThis reading sits at the **90.7th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 149.75 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2024-02", "publish_date": "2024-02-01", "publish_timestamp": 1706745600, "gpr_score": 146.6, "gpr_percentile": 90.71}} +{"id": "6fe9e729-9f51-5fcc-b7bd-dbd74408c2a9", "text": "### Geopolitical Risk (GPR) Index Update: March 2024\n\n**Date:** March 2024\n**GPR Score:** 133.21\n\n**Summary:**\nIn March 2024, the global Geopolitical Risk (GPR) Index stood at **133.21**. The index changed by -9.13% month-over-month, showing relative stability. Compared to the same period last year, the index shifted by 26.41%.\n\n**Historical Context:**\nThis reading sits at the **85.2th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 146.73 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2024-03", "publish_date": "2024-03-01", "publish_timestamp": 1709251200, "gpr_score": 133.21, "gpr_percentile": 85.25}} +{"id": "a2f0fd0c-6316-53e9-b68d-0e30fdc318f4", "text": "### Geopolitical Risk (GPR) Index Update: April 2024\n\n**Date:** April 2024\n**GPR Score:** 163.95\n\n**Summary:**\nIn April 2024, the global Geopolitical Risk (GPR) Index stood at **163.95**. This represents a **significant escalation**, surging by 23.07% compared to the previous month. Compared to the same period last year, the index shifted by 53.49%.\n\n**Historical Context:**\nThis reading sits at the **94.8th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 147.92 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2024-04", "publish_date": "2024-04-01", "publish_timestamp": 1711929600, "gpr_score": 163.95, "gpr_percentile": 94.75}} +{"id": "7d7c7172-50e6-5570-93ac-aa132a32dfea", "text": "### Geopolitical Risk (GPR) Index Update: May 2024\n\n**Date:** May 2024\n**GPR Score:** 130.52\n\n**Summary:**\nIn May 2024, the global Geopolitical Risk (GPR) Index stood at **130.52**. This indicates a **cooling off** of geopolitical tensions, dropping by 20.39% month-over-month. Compared to the same period last year, the index shifted by 20.33%.\n\n**Historical Context:**\nThis reading sits at the **83.6th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 142.56 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2024-05", "publish_date": "2024-05-01", "publish_timestamp": 1714521600, "gpr_score": 130.52, "gpr_percentile": 83.64}} +{"id": "e1ef82ab-1a8e-5b62-9a16-0c3d5e3d471e", "text": "### Geopolitical Risk (GPR) Index Update: June 2024\n\n**Date:** June 2024\n**GPR Score:** 113.09\n\n**Summary:**\nIn June 2024, the global Geopolitical Risk (GPR) Index stood at **113.09**. This indicates a **cooling off** of geopolitical tensions, dropping by 13.35% month-over-month. Compared to the same period last year, the index shifted by 2.32%.\n\n**Historical Context:**\nThis reading sits at the **74.8th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 135.85 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2024-06", "publish_date": "2024-06-01", "publish_timestamp": 1717200000, "gpr_score": 113.09, "gpr_percentile": 74.75}} +{"id": "9d49f9b2-d5bf-5f81-95e6-0e73ecd5eb38", "text": "### Geopolitical Risk (GPR) Index Update: July 2024\n\n**Date:** July 2024\n**GPR Score:** 92.39\n\n**Summary:**\nIn July 2024, the global Geopolitical Risk (GPR) Index stood at **92.39**. This indicates a **cooling off** of geopolitical tensions, dropping by 18.30% month-over-month. Compared to the same period last year, the index shifted by -14.01%.\n\n**Historical Context:**\nThis reading sits at the **49.1th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 112.00 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2024-07", "publish_date": "2024-07-01", "publish_timestamp": 1719792000, "gpr_score": 92.39, "gpr_percentile": 49.09}} +{"id": "e9d870f0-c970-5870-ab3b-852ac959072a", "text": "### Geopolitical Risk (GPR) Index Update: August 2024\n\n**Date:** August 2024\n**GPR Score:** 140.98\n\n**Summary:**\nIn August 2024, the global Geopolitical Risk (GPR) Index stood at **140.98**. This represents a **significant escalation**, surging by 52.58% compared to the previous month. Compared to the same period last year, the index shifted by 39.38%.\n\n**Historical Context:**\nThis reading sits at the **89.1th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 115.49 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2024-08", "publish_date": "2024-08-01", "publish_timestamp": 1722470400, "gpr_score": 140.98, "gpr_percentile": 89.09}} +{"id": "185cab6e-e1be-5c37-8460-050e49822442", "text": "### Geopolitical Risk (GPR) Index Update: September 2024\n\n**Date:** September 2024\n**GPR Score:** 130.36\n\n**Summary:**\nIn September 2024, the global Geopolitical Risk (GPR) Index stood at **130.36**. The index changed by -7.53% month-over-month, showing relative stability. Compared to the same period last year, the index shifted by 32.16%.\n\n**Historical Context:**\nThis reading sits at the **83.4th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 121.24 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2024-09", "publish_date": "2024-09-01", "publish_timestamp": 1725148800, "gpr_score": 130.36, "gpr_percentile": 83.43}} +{"id": "d4490492-0303-585a-bc92-921459a3aef4", "text": "### Geopolitical Risk (GPR) Index Update: October 2024\n\n**Date:** October 2024\n**GPR Score:** 130.69\n\n**Summary:**\nIn October 2024, the global Geopolitical Risk (GPR) Index stood at **130.69**. The index changed by 0.25% month-over-month, showing relative stability. Compared to the same period last year, the index shifted by -33.96%.\n\n**Historical Context:**\nThis reading sits at the **83.8th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 134.01 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2024-10", "publish_date": "2024-10-01", "publish_timestamp": 1727740800, "gpr_score": 130.69, "gpr_percentile": 83.84}} +{"id": "f0890fb0-45c2-5c8a-b3c7-16af61738eb5", "text": "### Geopolitical Risk (GPR) Index Update: November 2024\n\n**Date:** November 2024\n**GPR Score:** 128.9\n\n**Summary:**\nIn November 2024, the global Geopolitical Risk (GPR) Index stood at **128.9**. The index changed by -1.37% month-over-month, showing relative stability. Compared to the same period last year, the index shifted by -17.74%.\n\n**Historical Context:**\nThis reading sits at the **82.8th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 129.98 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2024-11", "publish_date": "2024-11-01", "publish_timestamp": 1730419200, "gpr_score": 128.9, "gpr_percentile": 82.83}} +{"id": "ab17edc1-e7d6-5684-8080-1817a9597872", "text": "### Geopolitical Risk (GPR) Index Update: December 2024\n\n**Date:** December 2024\n**GPR Score:** 142.37\n\n**Summary:**\nIn December 2024, the global Geopolitical Risk (GPR) Index stood at **142.37**. This represents a **significant escalation**, surging by 10.45% compared to the previous month. Compared to the same period last year, the index shifted by 0.06%.\n\n**Historical Context:**\nThis reading sits at the **89.7th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 133.99 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2024-12", "publish_date": "2024-12-01", "publish_timestamp": 1733011200, "gpr_score": 142.37, "gpr_percentile": 89.7}} +{"id": "8ce5e6b4-3fc3-5770-ab05-a5a12971b8d9", "text": "### Geopolitical Risk (GPR) Index Update: January 2025\n\n**Date:** January 2025\n**GPR Score:** 113.23\n\n**Summary:**\nIn January 2025, the global Geopolitical Risk (GPR) Index stood at **113.23**. This indicates a **cooling off** of geopolitical tensions, dropping by 20.46% month-over-month. Compared to the same period last year, the index shifted by -29.39%.\n\n**Historical Context:**\nThis reading sits at the **75.2th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 128.17 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2025-01", "publish_date": "2025-01-01", "publish_timestamp": 1735689600, "gpr_score": 113.23, "gpr_percentile": 75.15}} +{"id": "f2ff6cd0-6b3c-5327-aec3-51d44abc12ca", "text": "### Geopolitical Risk (GPR) Index Update: February 2025\n\n**Date:** February 2025\n**GPR Score:** 136.97\n\n**Summary:**\nIn February 2025, the global Geopolitical Risk (GPR) Index stood at **136.97**. This represents a **significant escalation**, surging by 20.96% compared to the previous month. Compared to the same period last year, the index shifted by -6.57%.\n\n**Historical Context:**\nThis reading sits at the **86.7th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 130.86 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2025-02", "publish_date": "2025-02-01", "publish_timestamp": 1738368000, "gpr_score": 136.97, "gpr_percentile": 86.67}} +{"id": "43b2d8bd-21dd-54c5-b7eb-b2b8defbc0be", "text": "### Geopolitical Risk (GPR) Index Update: March 2025\n\n**Date:** March 2025\n**GPR Score:** 173.91\n\n**Summary:**\nIn March 2025, the global Geopolitical Risk (GPR) Index stood at **173.91**. This represents a **significant escalation**, surging by 26.97% compared to the previous month. Compared to the same period last year, the index shifted by 30.55%.\n\n**Historical Context:**\nThis reading sits at the **96.0th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 141.37 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2025-03", "publish_date": "2025-03-01", "publish_timestamp": 1740787200, "gpr_score": 173.91, "gpr_percentile": 95.96}} +{"id": "3d617a4e-2541-5841-9048-14a94f2b691c", "text": "### Geopolitical Risk (GPR) Index Update: April 2025\n\n**Date:** April 2025\n**GPR Score:** 140.97\n\n**Summary:**\nIn April 2025, the global Geopolitical Risk (GPR) Index stood at **140.97**. This indicates a **cooling off** of geopolitical tensions, dropping by 18.94% month-over-month. Compared to the same period last year, the index shifted by -14.01%.\n\n**Historical Context:**\nThis reading sits at the **88.9th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 150.62 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2025-04", "publish_date": "2025-04-01", "publish_timestamp": 1743465600, "gpr_score": 140.97, "gpr_percentile": 88.89}} +{"id": "234c7c3d-81e2-5b85-ac1c-58d8961a1e6f", "text": "### Geopolitical Risk (GPR) Index Update: May 2025\n\n**Date:** May 2025\n**GPR Score:** 165.66\n\n**Summary:**\nIn May 2025, the global Geopolitical Risk (GPR) Index stood at **165.66**. This represents a **significant escalation**, surging by 17.51% compared to the previous month. Compared to the same period last year, the index shifted by 26.92%.\n\n**Historical Context:**\nThis reading sits at the **95.0th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 160.18 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2025-05", "publish_date": "2025-05-01", "publish_timestamp": 1746057600, "gpr_score": 165.66, "gpr_percentile": 94.95}} +{"id": "e30e503e-a815-5871-9445-883c5af53165", "text": "### Geopolitical Risk (GPR) Index Update: June 2025\n\n**Date:** June 2025\n**GPR Score:** 222.38\n\n**Summary:**\nIn June 2025, the global Geopolitical Risk (GPR) Index stood at **222.38**. This represents a **significant escalation**, surging by 34.24% compared to the previous month. Compared to the same period last year, the index shifted by 96.63%.\n\n**Historical Context:**\nThis reading sits at the **97.6th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 176.34 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2025-06", "publish_date": "2025-06-01", "publish_timestamp": 1748736000, "gpr_score": 222.38, "gpr_percentile": 97.58}} +{"id": "2874f4d9-d0c2-5fd3-aa14-7516e13ae8ec", "text": "### Geopolitical Risk (GPR) Index Update: July 2025\n\n**Date:** July 2025\n**GPR Score:** 134.02\n\n**Summary:**\nIn July 2025, the global Geopolitical Risk (GPR) Index stood at **134.02**. This indicates a **cooling off** of geopolitical tensions, dropping by 39.73% month-over-month. Compared to the same period last year, the index shifted by 45.05%.\n\n**Historical Context:**\nThis reading sits at the **85.7th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 174.02 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2025-07", "publish_date": "2025-07-01", "publish_timestamp": 1751328000, "gpr_score": 134.02, "gpr_percentile": 85.66}} +{"id": "da9bd184-06b8-5fb3-b935-2241b35d9d43", "text": "### Geopolitical Risk (GPR) Index Update: August 2025\n\n**Date:** August 2025\n**GPR Score:** 138.56\n\n**Summary:**\nIn August 2025, the global Geopolitical Risk (GPR) Index stood at **138.56**. The index changed by 3.39% month-over-month, showing relative stability. Compared to the same period last year, the index shifted by -1.71%.\n\n**Historical Context:**\nThis reading sits at the **88.1th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 164.99 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2025-08", "publish_date": "2025-08-01", "publish_timestamp": 1754006400, "gpr_score": 138.56, "gpr_percentile": 88.08}} +{"id": "3831f3e0-7c4b-510a-af3d-8186e1ad9632", "text": "### Geopolitical Risk (GPR) Index Update: September 2025\n\n**Date:** September 2025\n**GPR Score:** 125.87\n\n**Summary:**\nIn September 2025, the global Geopolitical Risk (GPR) Index stood at **125.87**. The index changed by -9.16% month-over-month, showing relative stability. Compared to the same period last year, the index shifted by -3.44%.\n\n**Historical Context:**\nThis reading sits at the **82.2th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 132.82 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2025-09", "publish_date": "2025-09-01", "publish_timestamp": 1756684800, "gpr_score": 125.87, "gpr_percentile": 82.22}} +{"id": "62373a3e-5090-56f6-b483-4e49dd322ace", "text": "### Geopolitical Risk (GPR) Index Update: October 2025\n\n**Date:** October 2025\n**GPR Score:** 154.51\n\n**Summary:**\nIn October 2025, the global Geopolitical Risk (GPR) Index stood at **154.51**. This represents a **significant escalation**, surging by 22.76% compared to the previous month. Compared to the same period last year, the index shifted by 18.23%.\n\n**Historical Context:**\nThis reading sits at the **93.1th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 139.65 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2025-10", "publish_date": "2025-10-01", "publish_timestamp": 1759276800, "gpr_score": 154.51, "gpr_percentile": 93.13}} +{"id": "e39ffc50-574f-55e6-b057-d312958ed344", "text": "### Geopolitical Risk (GPR) Index Update: November 2025\n\n**Date:** November 2025\n**GPR Score:** 104.34\n\n**Summary:**\nIn November 2025, the global Geopolitical Risk (GPR) Index stood at **104.34**. This indicates a **cooling off** of geopolitical tensions, dropping by 32.47% month-over-month. Compared to the same period last year, the index shifted by -19.06%.\n\n**Historical Context:**\nThis reading sits at the **66.7th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 128.24 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2025-11", "publish_date": "2025-11-01", "publish_timestamp": 1761955200, "gpr_score": 104.34, "gpr_percentile": 66.67}} +{"id": "d861053f-3ce3-57d5-99ca-b54907183bde", "text": "### Geopolitical Risk (GPR) Index Update: December 2025\n\n**Date:** December 2025\n**GPR Score:** 131.39\n\n**Summary:**\nIn December 2025, the global Geopolitical Risk (GPR) Index stood at **131.39**. This represents a **significant escalation**, surging by 25.93% compared to the previous month. Compared to the same period last year, the index shifted by -7.71%.\n\n**Historical Context:**\nThis reading sits at the **84.4th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 130.08 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2025-12", "publish_date": "2025-12-01", "publish_timestamp": 1764547200, "gpr_score": 131.39, "gpr_percentile": 84.44}} +{"id": "bd672c3b-1f25-5ae1-9b2c-dea11f718305", "text": "### Geopolitical Risk (GPR) Index Update: January 2026\n\n**Date:** January 2026\n**GPR Score:** 167.8\n\n**Summary:**\nIn January 2026, the global Geopolitical Risk (GPR) Index stood at **167.8**. This represents a **significant escalation**, surging by 27.71% compared to the previous month. Compared to the same period last year, the index shifted by 48.19%.\n\n**Historical Context:**\nThis reading sits at the **95.3th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 134.51 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2026-01", "publish_date": "2026-01-01", "publish_timestamp": 1767225600, "gpr_score": 167.8, "gpr_percentile": 95.35}} +{"id": "9e7b3f18-e68d-541e-a3b3-76b9fbcb8ac7", "text": "### Geopolitical Risk (GPR) Index Update: February 2026\n\n**Date:** February 2026\n**GPR Score:** 121.62\n\n**Summary:**\nIn February 2026, the global Geopolitical Risk (GPR) Index stood at **121.62**. This indicates a **cooling off** of geopolitical tensions, dropping by 27.52% month-over-month. Compared to the same period last year, the index shifted by -11.21%.\n\n**Historical Context:**\nThis reading sits at the **80.8th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 140.27 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2026-02", "publish_date": "2026-02-01", "publish_timestamp": 1769904000, "gpr_score": 121.62, "gpr_percentile": 80.81}} +{"id": "25620164-722d-50a3-8776-330bdcc83a75", "text": "### Geopolitical Risk (GPR) Index Update: March 2026\n\n**Date:** March 2026\n**GPR Score:** 297.27\n\n**Summary:**\nIn March 2026, the global Geopolitical Risk (GPR) Index stood at **297.27**. This represents a **significant escalation**, surging by 144.43% compared to the previous month. Compared to the same period last year, the index shifted by 70.93%.\n\n**Historical Context:**\nThis reading sits at the **98.6th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 195.56 suggests the current medium-term trend.\n\n**Impact on Precious Metals:**\nHistorically, spikes in the GPR index correlate with safe-haven asset accumulation, driving up the implied volatility and spot prices of Gold (XAU) and Silver (XAG).\n", "metadata": {"topic": "macro_geopolitics_risk", "title": "GPR Index Update 2026-03", "publish_date": "2026-03-01", "publish_timestamp": 1772323200, "gpr_score": 297.27, "gpr_percentile": 98.59}} diff --git a/Data/3_Gold_Semantic/Macro_Narratives/2026-04-04/macro_context_2026-04-04.md b/Data/3_Gold_Semantic/Macro_Narratives/2026-04-04/macro_context_2026-04-04.md new file mode 100644 index 0000000..524dec8 --- /dev/null +++ b/Data/3_Gold_Semantic/Macro_Narratives/2026-04-04/macro_context_2026-04-04.md @@ -0,0 +1,16 @@ +## 📊 Macro & Market Daily Snapshot +> **Generated on:** 2026-04-04 +> **Note to LLM:** Macro indicators lag behind market data. Use YoY/MoM changes to gauge economic momentum. + +### 📈 Market Data (Daily) +- **[Equity Index] S&P 500 (^GSPC)**: 6582.69 Points | Change: **+0.11%** *(Observed: 2026-04-02)* +- **[Equity Index] NASDAQ (^IXIC)**: 21879.18 Points | Change: **+0.18%** *(Observed: 2026-04-02)* +- **[Volatility Index] VIX Volatility (^VIX)**: 23.87 Points | Change: **-2.73%** *(Observed: 2026-04-02)* +- **[Currency] US Dollar Index (DX-Y.NYB)**: 100.19 Points | Change: **+0.16%** *(Observed: 2026-04-03)* +- **[Commodity ETF] Gold ETF (GLD)**: 429.41 USD | Change: **-1.92%** *(Observed: 2026-04-02)* +- **[Commodity ETF] Silver ETF (SLV)**: 65.79 USD | Change: **-3.45%** *(Observed: 2026-04-02)* + +### 🏛️ Macro Economic Indicators (Lagging) +- **[Interest Rate] Effective Federal Funds Rate (FEDFUNDS)**: 3.64 % | MoM: **+0.00%** | YoY: **-15.94%** *(Observed: 2026-03-01)* +- **[Inflation] CPI (Inflation) (CPIAUCSL)**: 327.46 Index | MoM: **+0.27%** | YoY: **+2.66%** *(Observed: 2026-02-01)* +- **[Labor Market] Unemployment Rate (UNRATE)**: 4.30 % | MoM: **-2.27%** | YoY: **+2.38%** *(Observed: 2026-03-01)* \ No newline at end of file diff --git a/Data/3_Gold_Semantic/Macro_Narratives/2026-04-06/macro_context_2026-04-06.md b/Data/3_Gold_Semantic/Macro_Narratives/2026-04-06/macro_context_2026-04-06.md new file mode 100644 index 0000000..815feaf --- /dev/null +++ b/Data/3_Gold_Semantic/Macro_Narratives/2026-04-06/macro_context_2026-04-06.md @@ -0,0 +1,16 @@ +## 📊 Macro & Market Daily Snapshot +> **Generated on:** 2026-04-06 +> **Note to LLM:** Macro indicators lag behind market data. Use YoY/MoM changes to gauge economic momentum. + +### 📈 Market Data (Daily) +- **[Equity Index] S&P 500 (^GSPC)**: 6603.27 Points | Change: **+0.31%** *(Observed: 2026-04-06)* +- **[Equity Index] NASDAQ (^IXIC)**: 21974.25 Points | Change: **+0.43%** *(Observed: 2026-04-06)* +- **[Volatility Index] VIX Volatility (^VIX)**: 24.37 Points | Change: **+2.09%** *(Observed: 2026-04-06)* +- **[Currency] US Dollar Index (DX-Y.NYB)**: 99.99 Points | Change: **-0.04%** *(Observed: 2026-04-06)* +- **[Commodity ETF] Gold ETF (GLD)**: 427.36 USD | Change: **-0.48%** *(Observed: 2026-04-06)* +- **[Commodity ETF] Silver ETF (SLV)**: 66.16 USD | Change: **+0.56%** *(Observed: 2026-04-06)* + +### 🏛️ Macro Economic Indicators (Lagging) +- **[Interest Rate] Effective Federal Funds Rate (FEDFUNDS)**: 3.64 % | MoM: **+0.00%** | YoY: **-15.94%** *(Observed: 2026-03-01)* +- **[Inflation] CPI (Inflation) (CPIAUCSL)**: 327.46 Index | MoM: **+0.27%** | YoY: **+2.66%** *(Observed: 2026-02-01)* +- **[Labor Market] Unemployment Rate (UNRATE)**: 4.30 % | MoM: **-2.27%** | YoY: **+2.38%** *(Observed: 2026-03-01)* \ No newline at end of file diff --git a/Data/3_Gold_Semantic/Macro_Narratives/2026-04-08/macro_context_2026-04-08.md b/Data/3_Gold_Semantic/Macro_Narratives/2026-04-08/macro_context_2026-04-08.md new file mode 100644 index 0000000..5417342 --- /dev/null +++ b/Data/3_Gold_Semantic/Macro_Narratives/2026-04-08/macro_context_2026-04-08.md @@ -0,0 +1,16 @@ +## 📊 Macro & Market Daily Snapshot +> **Generated on:** 2026-04-08 +> **Note to LLM:** Macro indicators lag behind market data. Use YoY/MoM changes to gauge economic momentum. + +### 📈 Market Data (Daily) +- **[Equity Index] S&P 500 (^GSPC)**: 6774.82 Points | Change: **+2.39%** *(Observed: 2026-04-08)* +- **[Equity Index] NASDAQ (^IXIC)**: 22651.88 Points | Change: **+2.88%** *(Observed: 2026-04-08)* +- **[Volatility Index] VIX Volatility (^VIX)**: 20.97 Points | Change: **-18.66%** *(Observed: 2026-04-08)* +- **[Currency] US Dollar Index (DX-Y.NYB)**: 98.95 Points | Change: **-0.69%** *(Observed: 2026-04-08)* +- **[Commodity ETF] Gold ETF (GLD)**: 435.65 USD | Change: **+0.89%** *(Observed: 2026-04-08)* +- **[Commodity ETF] Silver ETF (SLV)**: 68.22 USD | Change: **+3.46%** *(Observed: 2026-04-08)* + +### 🏛️ Macro Economic Indicators (Lagging) +- **[Interest Rate] Effective Federal Funds Rate (FEDFUNDS)**: 3.64 % | MoM: **+0.00%** | YoY: **-15.94%** *(Observed: 2026-03-01)* +- **[Inflation] CPI (Inflation) (CPIAUCSL)**: 327.46 Index | MoM: **+0.27%** | YoY: **+2.66%** *(Observed: 2026-02-01)* +- **[Labor Market] Unemployment Rate (UNRATE)**: 4.30 % | MoM: **-2.27%** | YoY: **+2.38%** *(Observed: 2026-03-01)* \ No newline at end of file diff --git a/Data/3_Gold_Semantic/Macro_Narratives/2026-04-09/macro_context_2026-04-09.md b/Data/3_Gold_Semantic/Macro_Narratives/2026-04-09/macro_context_2026-04-09.md new file mode 100644 index 0000000..f8506e7 --- /dev/null +++ b/Data/3_Gold_Semantic/Macro_Narratives/2026-04-09/macro_context_2026-04-09.md @@ -0,0 +1,16 @@ +## 📊 Macro & Market Daily Snapshot +> **Generated on:** 2026-04-09 +> **Note to LLM:** Macro indicators lag behind market data. Use YoY/MoM changes to gauge economic momentum. + +### 📈 Market Data (Daily) +- **[Equity Index] S&P 500 (^GSPC)**: 6815.30 Points | Change: **+0.48%** *(Observed: 2026-04-09)* +- **[Equity Index] NASDAQ (^IXIC)**: 22749.99 Points | Change: **+0.51%** *(Observed: 2026-04-09)* +- **[Volatility Index] VIX Volatility (^VIX)**: 19.96 Points | Change: **-5.13%** *(Observed: 2026-04-09)* +- **[Currency] US Dollar Index (DX-Y.NYB)**: 98.77 Points | Change: **-0.26%** *(Observed: 2026-04-09)* +- **[Commodity ETF] Gold ETF (GLD)**: 439.27 USD | Change: **+1.09%** *(Observed: 2026-04-09)* +- **[Commodity ETF] Silver ETF (SLV)**: 68.78 USD | Change: **+1.94%** *(Observed: 2026-04-09)* + +### 🏛️ Macro Economic Indicators (Lagging) +- **[Interest Rate] Effective Federal Funds Rate (FEDFUNDS)**: 3.64 % | MoM: **+0.00%** | YoY: **-15.94%** *(Observed: 2026-03-01)* +- **[Inflation] CPI (Inflation) (CPIAUCSL)**: 327.46 Index | MoM: **+0.27%** | YoY: **+2.66%** *(Observed: 2026-02-01)* +- **[Labor Market] Unemployment Rate (UNRATE)**: 4.30 % | MoM: **-2.27%** | YoY: **+2.38%** *(Observed: 2026-03-01)* \ No newline at end of file diff --git a/Data/3_Gold_Semantic/Macro_Narratives/2026-04-10/macro_context_2026-04-10.md b/Data/3_Gold_Semantic/Macro_Narratives/2026-04-10/macro_context_2026-04-10.md new file mode 100644 index 0000000..5d7a65e --- /dev/null +++ b/Data/3_Gold_Semantic/Macro_Narratives/2026-04-10/macro_context_2026-04-10.md @@ -0,0 +1,16 @@ +## 📊 Macro & Market Daily Snapshot +> **Generated on:** 2026-04-10 +> **Note to LLM:** Macro indicators lag behind market data. Use YoY/MoM changes to gauge economic momentum. + +### 📈 Market Data (Daily) +- **[Equity Index] S&P 500 (^GSPC)**: 6812.93 Points | Change: **-0.17%** *(Observed: 2026-04-10)* +- **[Equity Index] NASDAQ (^IXIC)**: 22895.40 Points | Change: **+0.32%** *(Observed: 2026-04-10)* +- **[Volatility Index] VIX Volatility (^VIX)**: 19.53 Points | Change: **+0.21%** *(Observed: 2026-04-10)* +- **[Currency] US Dollar Index (DX-Y.NYB)**: 98.66 Points | Change: **-0.16%** *(Observed: 2026-04-10)* +- **[Commodity ETF] Gold ETF (GLD)**: 437.34 USD | Change: **-0.13%** *(Observed: 2026-04-10)* +- **[Commodity ETF] Silver ETF (SLV)**: 69.11 USD | Change: **+1.05%** *(Observed: 2026-04-10)* + +### 🏛️ Macro Economic Indicators (Lagging) +- **[Interest Rate] Effective Federal Funds Rate (FEDFUNDS)**: 3.64 % | MoM: **+0.00%** | YoY: **-15.94%** *(Observed: 2026-03-01)* +- **[Inflation] CPI (Inflation) (CPIAUCSL)**: 330.29 Index | MoM: **+0.87%** | YoY: **+3.32%** *(Observed: 2026-03-01)* +- **[Labor Market] Unemployment Rate (UNRATE)**: 4.30 % | MoM: **-2.27%** | YoY: **+2.38%** *(Observed: 2026-03-01)* \ No newline at end of file diff --git a/Data/3_Gold_Semantic/Macro_Narratives/2026-04-14/macro_context_2026-04-14.md b/Data/3_Gold_Semantic/Macro_Narratives/2026-04-14/macro_context_2026-04-14.md new file mode 100644 index 0000000..a727356 --- /dev/null +++ b/Data/3_Gold_Semantic/Macro_Narratives/2026-04-14/macro_context_2026-04-14.md @@ -0,0 +1,16 @@ +## 📊 Macro & Market Daily Snapshot +> **Generated on:** 2026-04-14 +> **Note to LLM:** Macro indicators lag behind market data. Use YoY/MoM changes to gauge economic momentum. + +### 📈 Market Data (Daily) +- **[Equity Index] S&P 500 (^GSPC)**: 6967.38 Points | Change: **+1.18%** *(Observed: 2026-04-14)* +- **[Equity Index] NASDAQ (^IXIC)**: 23639.08 Points | Change: **+1.96%** *(Observed: 2026-04-14)* +- **[Volatility Index] VIX Volatility (^VIX)**: 18.36 Points | Change: **-3.97%** *(Observed: 2026-04-14)* +- **[Currency] US Dollar Index (DX-Y.NYB)**: 98.19 Points | Change: **-0.19%** *(Observed: 2026-04-14)* +- **[Commodity ETF] Gold ETF (GLD)**: 445.09 USD | Change: **+2.23%** *(Observed: 2026-04-14)* +- **[Commodity ETF] Silver ETF (SLV)**: 72.04 USD | Change: **+5.51%** *(Observed: 2026-04-14)* + +### 🏛️ Macro Economic Indicators (Lagging) +- **[Interest Rate] Effective Federal Funds Rate (FEDFUNDS)**: 3.64 % | MoM: **+0.00%** | YoY: **-15.94%** *(Observed: 2026-03-01)* +- **[Inflation] CPI (Inflation) (CPIAUCSL)**: 330.29 Index | MoM: **+0.87%** | YoY: **+3.32%** *(Observed: 2026-03-01)* +- **[Labor Market] Unemployment Rate (UNRATE)**: 4.30 % | MoM: **-2.27%** | YoY: **+2.38%** *(Observed: 2026-03-01)* \ No newline at end of file diff --git a/Data/3_Gold_Semantic/Macro_Narratives/2026-04-16/macro_context_2026-04-16.md b/Data/3_Gold_Semantic/Macro_Narratives/2026-04-16/macro_context_2026-04-16.md new file mode 100644 index 0000000..83d35d6 --- /dev/null +++ b/Data/3_Gold_Semantic/Macro_Narratives/2026-04-16/macro_context_2026-04-16.md @@ -0,0 +1,16 @@ +## 📊 Macro & Market Daily Snapshot +> **Generated on:** 2026-04-16 +> **Note to LLM:** Macro indicators lag behind market data. Use YoY/MoM changes to gauge economic momentum. + +### 📈 Market Data (Daily) +- **[Equity Index] S&P 500 (^GSPC)**: 7022.95 Points | Change: **+0.80%** *(Observed: 2026-04-15)* +- **[Equity Index] NASDAQ (^IXIC)**: 24016.02 Points | Change: **+1.59%** *(Observed: 2026-04-15)* +- **[Volatility Index] VIX Volatility (^VIX)**: 18.25 Points | Change: **+0.44%** *(Observed: 2026-04-16)* +- **[Currency] US Dollar Index (DX-Y.NYB)**: 98.22 Points | Change: **+0.16%** *(Observed: 2026-04-16)* +- **[Commodity ETF] Gold ETF (GLD)**: 440.46 USD | Change: **-1.04%** *(Observed: 2026-04-15)* +- **[Commodity ETF] Silver ETF (SLV)**: 71.84 USD | Change: **-0.28%** *(Observed: 2026-04-15)* + +### 🏛️ Macro Economic Indicators (Lagging) +- **[Interest Rate] Effective Federal Funds Rate (FEDFUNDS)**: 3.64 % | MoM: **+0.00%** | YoY: **-15.94%** *(Observed: 2026-03-01)* +- **[Inflation] CPI (Inflation) (CPIAUCSL)**: 330.29 Index | MoM: **+0.87%** | YoY: **+3.32%** *(Observed: 2026-03-01)* +- **[Labor Market] Unemployment Rate (UNRATE)**: 4.30 % | MoM: **-2.27%** | YoY: **+2.38%** *(Observed: 2026-03-01)* \ No newline at end of file diff --git a/Data/3_Gold_Semantic/Macro_Narratives/2026-04-19/macro_context_2026-04-19.md b/Data/3_Gold_Semantic/Macro_Narratives/2026-04-19/macro_context_2026-04-19.md new file mode 100644 index 0000000..1ef6f6a --- /dev/null +++ b/Data/3_Gold_Semantic/Macro_Narratives/2026-04-19/macro_context_2026-04-19.md @@ -0,0 +1,16 @@ +## 📊 Macro & Market Daily Snapshot +> **Generated on:** 2026-04-19 +> **Note to LLM:** Macro indicators lag behind market data. Use YoY/MoM changes to gauge economic momentum. + +### 📈 Market Data (Daily) +- **[Equity Index] S&P 500 (^GSPC)**: 7126.06 Points | Change: **+1.20%** *(Observed: 2026-04-17)* +- **[Equity Index] NASDAQ (^IXIC)**: 24468.48 Points | Change: **+1.52%** *(Observed: 2026-04-17)* +- **[Volatility Index] VIX Volatility (^VIX)**: 17.48 Points | Change: **-2.56%** *(Observed: 2026-04-17)* +- **[Currency] US Dollar Index (DX-Y.NYB)**: 98.10 Points | Change: **-0.12%** *(Observed: 2026-04-17)* +- **[Commodity ETF] Gold ETF (GLD)**: 445.93 USD | Change: **+1.33%** *(Observed: 2026-04-17)* +- **[Commodity ETF] Silver ETF (SLV)**: 73.63 USD | Change: **+3.35%** *(Observed: 2026-04-17)* + +### 🏛️ Macro Economic Indicators (Lagging) +- **[Interest Rate] Effective Federal Funds Rate (FEDFUNDS)**: 3.64 % | MoM: **+0.00%** | YoY: **-15.94%** *(Observed: 2026-03-01)* +- **[Inflation] CPI (Inflation) (CPIAUCSL)**: 330.29 Index | MoM: **+0.87%** | YoY: **+3.32%** *(Observed: 2026-03-01)* +- **[Labor Market] Unemployment Rate (UNRATE)**: 4.30 % | MoM: **-2.27%** | YoY: **+2.38%** *(Observed: 2026-03-01)* \ No newline at end of file diff --git a/Data/3_Gold_Semantic/News_Qdrant/2026-04-08/qdrant_asset_precious_metals_spot_processed.jsonl b/Data/3_Gold_Semantic/News_Qdrant/2026-04-08/qdrant_asset_precious_metals_spot_processed.jsonl new file mode 100644 index 0000000..8a7af9a --- /dev/null +++ b/Data/3_Gold_Semantic/News_Qdrant/2026-04-08/qdrant_asset_precious_metals_spot_processed.jsonl @@ -0,0 +1,3 @@ +{"id": "cca38239-6593-5985-9ba4-7ecbd87b54e4", "text": "\"Anxin Unveils New High-End Brand Hyper, Aiming to Lead the Industry in Smart Cars\". Anxin, a Chinese company, has launched its new high-end brand Hyper, which aims to lead the industry in smart cars. The brand's first product, Hyper SSR, is a supercar with impressive acceleration and AI-powered trajectory control system. This move is seen as a key step in Anxin's transformation from a traditional car manufacturer to a technology company. As China continues to strengthen its technological attributes through space cooperation projects, Anxin's new brand may drive the country's new energy vehicle industry to break new ground.\n\nThe tone score of +2 reflects the bullish sentiment towards Gold/Silver prices due to the potential increase in market fear/VIX driven by the rapid development of smart cars and China's growing technological capabilities. The impacted assets include Equities, Gold, and USD, as the news may have implications for global markets and currencies.", "metadata": {"topic": "asset_precious_metals_spot", "title": "\"Anxin Unveils New High-End Brand Hyper, Aiming to Lead the Industry in Smart Cars\"", "original_title": "逆境中破局前行 , 埃安换标推新高端品牌引领行业新变革 - 智能汽车 - ITBear比尔科技", "publish_date": "2026-04-09T01:22:35Z", "publish_timestamp": 1775697755, "source": "itbear.com.cn", "url": "https://www.itbear.com.cn/html/2026-04/1264928.html", "entities": ["Anxin", "Tesla", "China"], "impacted_assets": ["Equities", "Gold", "USD"], "volatility_implication": "Increase", "llm_tone_score": 2}} +{"id": "17caf862-efab-55c3-9d5d-6c626214176c", "text": "Unfazed by Geopolitical Headwinds! Goldman Sachs: AI Spending Wave Surges, Sets Up for Sell-Off at the Right Time| Artificial Intelligence. Goldman Sachs' commentary on AI spending trends suggests a potential sell-off in the market. The firm notes that despite geopolitical headwinds, the AI sector remains resilient and poised for growth. This neutral tone implies no significant macro drivers impacting gold or silver prices at this time.", "metadata": {"topic": "asset_precious_metals_spot", "title": "Unfazed by Geopolitical Headwinds! Goldman Sachs: AI Spending Wave Surges, Sets Up for Sell-Off at the Right Time| Artificial Intelligence", "original_title": "无惧地缘逆风 ! 高盛 : AI支出浪潮汹涌 , 布局 卖铲人 正当时|人工智能", "publish_date": "2026-04-09T01:22:35Z", "publish_timestamp": 1775697755, "source": "163.com", "url": "https://www.163.com/dy/article/KQ2DKDEO05198UNI.html", "entities": ["Goldman Sachs", "NetEase Hao", "artificial intelligence"], "impacted_assets": ["Equities", "Gold", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "a0a487b3-c585-5852-b167-58cec9b24127", "text": "March 2026 Quarter Production Update from Alkane Resources Limited. Alkane Resources reported strong quarterly production of 45,776 oz AuEq from its three operating mines. The company maintained a healthy cash balance of $362 million and pro forma liquidity of $472 million. Guidance for FY2026 remains unchanged at 160,000 to 175,000 AuEq oz production at an AISC of A$2,600 - $2,900 per AuEq oz. The update suggests a stable macro environment with no significant disruptions or surprises that would impact gold and antimony prices.", "metadata": {"topic": "asset_precious_metals_spot", "title": "March 2026 Quarter Production Update from Alkane Resources Limited", "original_title": "Alkane Resources Limited : March 2026 Quarter Production Update", "publish_date": "2026-04-09T01:22:35Z", "publish_timestamp": 1775697755, "source": "finanznachrichten.de", "url": "https://www.finanznachrichten.de/nachrichten-2026-04/68152259-alkane-resources-limited-march-2026-quarter-production-update-399.htm", "entities": ["Alkane Resources Limited", "Nic Earner (Managing Director & CEO)", "Australia", "Sweden"], "impacted_assets": ["Gold", "Antimony", "Cash and Bullion"], "volatility_implication": "Neutral", "llm_tone_score": 2}} diff --git a/Data/3_Gold_Semantic/News_Qdrant/2026-04-08/qdrant_macro_central_banks_processed.jsonl b/Data/3_Gold_Semantic/News_Qdrant/2026-04-08/qdrant_macro_central_banks_processed.jsonl new file mode 100644 index 0000000..9a22dc6 --- /dev/null +++ b/Data/3_Gold_Semantic/News_Qdrant/2026-04-08/qdrant_macro_central_banks_processed.jsonl @@ -0,0 +1,9 @@ +{"id": "e59121fd-02bd-5521-a7b4-7f1e860eeaba", "text": "Housing Market Mood Shift Amid Rising Mortgage Costs and Geopolitical Uncertainty. The UK housing market is losing momentum due to rising mortgage costs and geopolitical uncertainty. Buyer demand has softened, with a net balance of 39% of professionals seeing new buyer inquiries falling rather than rising. This trend is expected to continue in the coming months, with a net balance of 33% of professionals expecting sales activity to weaken further. The macro transmission mechanism is driven by higher borrowing costs and inflationary concerns, which are likely to keep mortgage rates elevated for some time yet.", "metadata": {"topic": "macro_central_banks", "title": "Housing Market Mood Shift Amid Rising Mortgage Costs and Geopolitical Uncertainty", "original_title": "Rising mortgage costs dent buyer demand amid housing market mood shift ", "publish_date": "2026-04-09T01:19:11Z", "publish_timestamp": 1775697551, "source": "clactonandfrintongazette.co.uk", "url": "https://www.clactonandfrintongazette.co.uk/news/national/26005807.rising-mortgage-costs-dent-buyer-demand-amid-housing-market-mood-shift/", "entities": ["Royal Institution of Chartered Surveyors (Rics)", "Moneyfacts", "Sprive"], "impacted_assets": ["Equities", "Gold", "Oil", "USD"], "volatility_implication": "Increase", "llm_tone_score": -2}} +{"id": "3efce571-c129-5a55-8662-5fb1c0b49592", "text": "Housing Market Mood Shift Amid Rising Mortgage Costs and Geopolitical Uncertainty. The UK housing market is losing momentum due to rising mortgage costs and geopolitical uncertainty. Buyer demand has softened, with a net balance of 39% of professionals seeing new buyer inquiries falling rather than rising. This trend is expected to continue in the short term, with a net balance of 33% of professionals expecting sales activity to weaken further over the next few months. The macro transmission mechanism is driven by higher borrowing costs and inflationary concerns, which are likely to impact gold and silver prices positively.\n\nNote: The tone score is bearish due to the negative sentiment surrounding the housing market and the potential for increased volatility in the short term.", "metadata": {"topic": "macro_central_banks", "title": "Housing Market Mood Shift Amid Rising Mortgage Costs and Geopolitical Uncertainty", "original_title": "Rising mortgage costs dent buyer demand amid housing market mood shift ", "publish_date": "2026-04-09T01:19:11Z", "publish_timestamp": 1775697551, "source": "northwichguardian.co.uk", "url": "https://www.northwichguardian.co.uk/news/national/26005807.rising-mortgage-costs-dent-buyer-demand-amid-housing-market-mood-shift/", "entities": ["Royal Institution of Chartered Surveyors (Rics)", "Moneyfacts", "Sprive"], "impacted_assets": ["Equities", "Gold", "Oil", "USD"], "volatility_implication": "Increase", "llm_tone_score": -2}} +{"id": "6d4345a8-6526-5cd9-87d9-2dc152fa6b84", "text": "Turkish Treasury's Cash Flow and Debt Management in the First Quarter of 2023. The Turkish Treasury reported a significant increase in debt repayment and interest payments in the first quarter of 2023. The treasury's cash flow deficit widened to 618 billion lira, driven by high-interest payments and debt repayments. This development may lead to increased market volatility and potentially weigh on gold prices.\n\nThe macro transmission mechanism is as follows: The Turkish Treasury's increasing debt repayment and interest payments will likely lead to a decrease in the value of government bonds, which may cause investors to seek safer assets like gold. Additionally, the widening cash flow deficit may lead to concerns about Turkey's fiscal sustainability, further contributing to market volatility.", "metadata": {"topic": "macro_central_banks", "title": "Turkish Treasury's Cash Flow and Debt Management in the First Quarter of 2023", "original_title": "Günde ortalama 18 milyar TL - Naki BAKIR", "publish_date": "2026-04-09T01:19:11Z", "publish_timestamp": 1775697551, "source": "dunya.com", "url": "https://www.dunya.com/kose-yazisi/gunde-ortalama-18-milyar-tl/820965", "entities": ["Turkish Treasury", "Hazine", "Tasarruf Mevduatı Sigorta Fonu (TMSF)"], "impacted_assets": ["Government Bonds", "Turkish Lira (TRY)", "Gold"], "volatility_implication": "Decrease", "llm_tone_score": -2}} +{"id": "92e564c6-62ea-568d-8e67-5727cd26dcbb", "text": "South Korea's Card Loan Balance Surpasses 15 Trillion Won for the First Time in 6 Months Amid Economic Downturn. South Korea's card loan balance has surpassed 15 trillion won for the first time in six months amid economic downturn. The increase is attributed to banks tightening credit standards, leading to a surge in demand for credit cards. This trend may continue, potentially increasing delinquency rates and affecting the overall economy. The Bank of Korea's recent data shows that the credit card loan delinquency rate has reached its highest level in 20 years, indicating a potential risk to the financial system.\n\nThe macro transmission mechanism is as follows: the economic downturn leads to increased demand for credit cards, which in turn drives up delinquency rates. This may have a negative impact on the overall economy and potentially affect asset prices such as equities and gold. The decrease in volatility implication suggests that market fear (VIX) may decrease due to the expected increase in delinquency rates, which could lead to a decrease in risk appetite and a subsequent decline in asset prices.", "metadata": {"topic": "macro_central_banks", "title": "South Korea's Card Loan Balance Surpasses 15 Trillion Won for the First Time in 6 Months Amid Economic Downturn", "original_title": "경기 불황에 카드 돌려막기 6개월 만에 반등 … 연체율도 20년새 최고", "publish_date": "2026-04-09T01:19:11Z", "publish_timestamp": 1775697551, "source": "fnnews.com", "url": "https://www.fnnews.com/news/202604090630516306", "entities": ["Bank of Korea", "Korean Federation of Banks", "major credit card companies (Shinhan", "Samsung", "Hyundai", "KB Kookmin", "Lotte", "Woosong", "Hanwha", "and BC Card)"], "impacted_assets": ["Equities", "Gold", "USD"], "volatility_implication": "Decrease", "llm_tone_score": -2}} +{"id": "5fb74704-7627-5fd8-ac58-a5ad871baee4", "text": "Stocks Rally as Oil Prices Plummet Following Iran War Ceasefire. The temporary ceasefire between the US and Iran has led to a surge in global equities, with the S&P 500, Dow Jones Industrial Average, and Nasdaq composite all rising significantly. The decline in oil prices has also had a positive impact on airline and travel stocks, while Treasury yields have fallen as hopes of lower interest rates later in the year increase. However, analysts caution that the ceasefire remains fragile, and any further escalation could negatively impact market sentiment.\n\nThe macro transmission mechanism is as follows: A decrease in oil prices reduces inflationary pressures, which can lead to a more accommodative monetary policy from central banks like the Federal Reserve. This, in turn, can boost equities and other risk assets, while also reducing the appeal of safe-haven assets like gold.", "metadata": {"topic": "macro_central_banks", "title": "Stocks Rally as Oil Prices Plummet Following Iran War Ceasefire", "original_title": "Stocks Close The Day Higher As Oil Prices Plummet Over Iran War Cease Fire", "publish_date": "2026-04-09T01:19:11Z", "publish_timestamp": 1775697551, "source": "newsradio1290wtks.iheart.com", "url": "https://newsradio1290wtks.iheart.com/content/2026-04-08-stocks-close-the-day-higher-as-oil-prices-plummet-over-iran-war-cease-fire/", "entities": ["United States", "Iran", "President Donald Trump", "United Airlines", "Carnival cruise lines", "Delta Air Lines"], "impacted_assets": ["Equities", "Gold", "Oil"], "volatility_implication": "Neutral", "llm_tone_score": 2}} +{"id": "9432d3d9-5abe-590f-bba0-9bb072a5ba6c", "text": "Housing Market Mood Shift: Rising Mortgage Costs Dent Buyer Demand. The UK housing market is losing momentum due to rising mortgage costs and geopolitical uncertainty. Buyer demand has softened, with a net balance of 39% of professionals seeing new buyer inquiries falling rather than rising. This trend is expected to continue, with a net balance of 33% of professionals expecting sales activity to weaken further over the next few months. The macro transmission mechanism is driven by higher borrowing costs and inflationary concerns, which are likely to impact gold and silver prices positively.\n\nNote: The tone score is bearish due to the negative impact on buyer demand and housing market activity, which may lead to increased volatility in the short term.", "metadata": {"topic": "macro_central_banks", "title": "Housing Market Mood Shift: Rising Mortgage Costs Dent Buyer Demand", "original_title": "Rising mortgage costs dent buyer demand amid housing market mood shift ", "publish_date": "2026-04-09T01:19:11Z", "publish_timestamp": 1775697551, "source": "watfordobserver.co.uk", "url": "https://www.watfordobserver.co.uk/news/national/26005807.rising-mortgage-costs-dent-buyer-demand-amid-housing-market-mood-shift/", "entities": ["Royal Institution of Chartered Surveyors (Rics)", "Moneyfacts", "Sprive"], "impacted_assets": ["Equities", "Gold", "Oil", "USD"], "volatility_implication": "Increase", "llm_tone_score": -2}} +{"id": "63b64aeb-5490-563b-9263-f47110cbd261", "text": "Stocks Rally as Oil Prices Plummet Following Iran War Ceasefire. The temporary ceasefire between the US and Iran led to a surge in stocks, with the S&P 500, Dow Jones Industrial Average, and Nasdaq composite all rising. Oil prices plummeted, falling below $95 per barrel, which could lead to lower inflation and potentially pave the way for further interest rate cuts by the Federal Reserve. The market's optimism was tempered by concerns about the ceasefire's fragility and potential continued attacks in the region.", "metadata": {"topic": "macro_central_banks", "title": "Stocks Rally as Oil Prices Plummet Following Iran War Ceasefire", "original_title": "Stocks Close The Day Higher As Oil Prices Plummet Over Iran War Cease Fire | NewsRadio WKCY", "publish_date": "2026-04-09T01:19:11Z", "publish_timestamp": 1775697551, "source": "newsradiowkcy.iheart.com", "url": "https://newsradiowkcy.iheart.com/content/2026-04-08-stocks-close-the-day-higher-as-oil-prices-plummet-over-iran-war-cease-fire/", "entities": ["United States", "Iran", "President Donald Trump", "United Airlines", "Carnival cruise lines", "Delta Air Lines"], "impacted_assets": ["Equities", "Gold", "Oil"], "volatility_implication": "Neutral", "llm_tone_score": 2}} +{"id": "d80bb29c-caf5-5828-80db-b71322f41e81", "text": "Housing Market Mood Shift: Rising Mortgage Costs Dent Buyer Demand. The UK housing market is losing momentum due to rising mortgage costs and geopolitical uncertainty. Buyer demand has softened, with a net balance of 39% of professionals seeing new buyer inquiries falling rather than rising. This trend is expected to continue, with a net balance of 33% of professionals expecting sales activity to weaken further over the next few months. The macro transmission mechanism is driven by higher borrowing costs and inflationary concerns, which are likely to impact gold and silver prices positively.\n\nNote: The tone score is bearish due to the negative impact on buyer demand and housing market activity, which may lead to increased volatility in the short term.", "metadata": {"topic": "macro_central_banks", "title": "Housing Market Mood Shift: Rising Mortgage Costs Dent Buyer Demand", "original_title": "Rising mortgage costs dent buyer demand amid housing market mood shift ", "publish_date": "2026-04-09T01:19:11Z", "publish_timestamp": 1775697551, "source": "stourbridgenews.co.uk", "url": "https://www.stourbridgenews.co.uk/news/national/26005807.rising-mortgage-costs-dent-buyer-demand-amid-housing-market-mood-shift/", "entities": ["Royal Institution of Chartered Surveyors (Rics)", "Moneyfacts", "Sprive"], "impacted_assets": ["Equities", "Gold", "Oil", "USD"], "volatility_implication": "Increase", "llm_tone_score": -2}} +{"id": "17c196f3-2982-5021-9934-22612ee7a3c3", "text": "The Harm Caused by Export Restrictions to Prevent Price Increases. The article discusses the negative impact of export restrictions on producers and the economy. The restriction is intended to prevent price increases, but it hinders production capacity, investment, and exports. The author suggests that a re-consideration of the credit mechanism could help stimulate production, exports, and economic growth. The article highlights the importance of prioritizing policies that drive demand and stimulate production in sectors such as construction, which has a high domestic content rate and contributes significantly to the economy.\n\nThe macro transmission mechanism is that the export restriction reduces production capacity, investment, and exports, leading to a decrease in economic activity and potentially inflationary pressures. The article's tone is neutral, as it presents both sides of the argument without taking a clear stance on the issue.", "metadata": {"topic": "macro_central_banks", "title": "The Harm Caused by Export Restrictions to Prevent Price Increases", "original_title": "Fiyat artışını ihracat kısıtlaması ile önlemenin verdiği zarar … ", "publish_date": "2026-04-09T01:19:11Z", "publish_timestamp": 1775697551, "source": "dunya.com", "url": "https://www.dunya.com/kose-yazisi/fiyat-artisini-ihracat-kisitlamasi-ile-onlemenin-verdigi-zarar/820975", "entities": ["Erdem Çenesiz", "Çimento", "Cam", "Seramik ve Toprak Ürünleri İhracatçıları Birliği"], "impacted_assets": ["Equities", "Gold", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 0}} diff --git a/Data/3_Gold_Semantic/News_Qdrant/2026-04-08/qdrant_macro_inflation_employment_processed.jsonl b/Data/3_Gold_Semantic/News_Qdrant/2026-04-08/qdrant_macro_inflation_employment_processed.jsonl new file mode 100644 index 0000000..e072134 --- /dev/null +++ b/Data/3_Gold_Semantic/News_Qdrant/2026-04-08/qdrant_macro_inflation_employment_processed.jsonl @@ -0,0 +1,6 @@ +{"id": "921918df-ca85-5319-acb0-e0d377b4569c", "text": "Why Is Carnival (CCL) Stock Soaring Today?. The suspension of military action in Iran and a potential negotiated settlement have triggered a relief rally in cruise operator stocks, including Carnival. Lower \"bunker\" fuel costs and eased travel concerns due to the ceasefire have positively impacted the company's stock price. The macro transmission mechanism is through reduced uncertainty and increased consumer confidence, which may also benefit other tourism-related industries.", "metadata": {"topic": "macro_inflation_employment", "title": "Why Is Carnival (CCL) Stock Soaring Today?", "original_title": "Why Is Carnival ( CCL ) Stock Soaring Today", "publish_date": "2026-04-09T01:20:13Z", "publish_timestamp": 1775697613, "source": "finance.yahoo.com", "url": "https://finance.yahoo.com/markets/stocks/articles/why-carnival-ccl-stock-soaring-000547814.html", "entities": ["President Trump", "Iran", "Carnival Corporation (CCL)", "Strait of Hormuz"], "impacted_assets": ["Equities", "Gold", "Oil"], "volatility_implication": "Increase", "llm_tone_score": 2}} +{"id": "d41a4ff3-d568-59a6-81c7-2875aabd28eb", "text": "Iran to Limit Passage of Ships Through Hormuz Strait Despite Ceasefire Agreement. Despite the ceasefire agreement, Iran is planning to limit the passage of ships through the Hormuz Strait, requiring vessels to pay fees in cryptocurrencies or Chinese yuan. This move could lead to a significant decrease in oil and LNG supplies, impacting global energy markets and inflation expectations. The uncertainty surrounding this development may increase market volatility, particularly for oil prices.\n\nThe macro transmission mechanism is as follows: Iran's control over the Hormuz Strait, a critical energy transportation route, could lead to a shortage of oil and LNG supplies, driving up prices and inflation expectations. This, in turn, could strengthen the USD and weigh on gold prices. The increased uncertainty may also lead to a decrease in equities and an increase in volatility.", "metadata": {"topic": "macro_inflation_employment", "title": "Iran to Limit Passage of Ships Through Hormuz Strait Despite Ceasefire Agreement", "original_title": "호르무즈 계속 막은 이란 … 하루 통과 10여척으로 제한 계획 ", "publish_date": "2026-04-09T01:20:13Z", "publish_timestamp": 1775697613, "source": "fnnews.com", "url": "https://www.fnnews.com/news/202604090857326831", "entities": ["Iran", "United States", "Israel", "China"], "impacted_assets": ["Equities", "Gold", "Oil", "USD"], "volatility_implication": "Increase", "llm_tone_score": -2}} +{"id": "e051fc3b-d996-5c0a-ba45-5d3fc6bceb06", "text": "Oil prices plummet as hopes for resolving Strait of Hormuz tensions rise. The article reports a significant decline in oil prices due to increased hopes for resolving tensions at the Strait of Hormuz. This development is expected to ease concerns about inflation and stabilize global energy supplies. As a result, gold prices may decrease as market fear (VIX) subsides.", "metadata": {"topic": "macro_inflation_employment", "title": "Oil prices plummet as hopes for resolving Strait of Hormuz tensions rise", "original_title": "Giá dầu giảm mạnh khi kỳ vọng khơi thông eo biển Hormuz gia tăng", "publish_date": "2026-04-09T01:20:13Z", "publish_timestamp": 1775697613, "source": "baotintuc.vn", "url": "https://baotintuc.vn/thi-truong-tien-te/gia-dau-giam-manh-khi-ky-vong-khoi-thong-eo-bien-hormuz-gia-tang-20260409072028597.htm", "entities": ["United States", "Iran", "Pakistan", "Capital Economics"], "impacted_assets": ["Gold", "Oil"], "volatility_implication": "Decrease", "llm_tone_score": 2}} +{"id": "98ca5474-a386-5054-9a20-74cd0f45cde5", "text": "FRP Holdings Announces Earnings Release Date and Conference Call Details. FRP Holdings, a real estate holding company, announced its earnings release date for the fourth quarter and full year 2025, as well as details for an upcoming conference call. The event is unlikely to have any significant impact on gold or silver prices, as it is a routine corporate announcement unrelated to macroeconomic or financial market drivers.", "metadata": {"topic": "macro_inflation_employment", "title": "FRP Holdings Announces Earnings Release Date and Conference Call Details", "original_title": "FRP Holdings , Inc . Announces Release Date for Its 2025 Fourth Quarter and Full Year Earnings and Details for the Earnings Conference Call", "publish_date": "2026-04-09T01:20:13Z", "publish_timestamp": 1775697613, "source": "californiatelegraph.com", "url": "http://www.californiatelegraph.com/news/278972410/frp-holdings-inc-announces-release-date-for-its-2025-fourth-quarter-and-full-year-earnings-and-details-for-the-earnings-conference-call", "entities": ["FRP Holdings", "Inc.", "Securities and Exchange Commission", "Matthew C. McNulty"], "impacted_assets": [], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "62ea6efd-e04b-5da4-b4d1-99aec73d9aaa", "text": "Wall Street Closes in Strong Gain, Relieved by Iran-US Ceasefire Agreement. The US stock market surged on the news of a 2-week ceasefire agreement between the US and Iran, easing concerns about a potential conflict in the Middle East. This development contributed to reduced fears of recession, higher growth expectations, and lower inflation anticipations, leading to a strong gain for equities. The oil price decline also had a positive impact on the market, with energy sector stocks experiencing losses due to the reduced demand.", "metadata": {"topic": "macro_inflation_employment", "title": "Wall Street Closes in Strong Gain, Relieved by Iran-US Ceasefire Agreement", "original_title": "Wall Street clôture en nette hausse , soulagée par le cessez - le - feu en Iran", "publish_date": "2026-04-09T01:20:13Z", "publish_timestamp": 1775697613, "source": "africanmanager.com", "url": "https://africanmanager.com/wall-street-cloture-en-nette-hausse-soulagee-par-le-cessez-le-feu-en-iran/", "entities": ["United States", "Iran", "Edward Jones", "Interactive Brokers", "Chevron", "ConocoPhillips", "EOG Resources", "ExxonMobil"], "impacted_assets": ["Equities", "Oil", "USD"], "volatility_implication": "Decrease", "llm_tone_score": 3}} +{"id": "739516af-d0a7-5fa3-b647-4132035e5d4b", "text": "Update the IRPF (Personal Income Tax). The article suggests that the Spanish government should consider reducing the IRPF tax rate to help consumers and improve their purchasing power. This could be a positive macro driver for gold and silver prices, as it may lead to increased consumer spending and inflationary pressures.", "metadata": {"topic": "macro_inflation_employment", "title": "Update the IRPF (Personal Income Tax)", "original_title": "Actualitzar lIRPF", "publish_date": "2026-04-09T01:20:13Z", "publish_timestamp": 1775697613, "source": "lavanguardia.com", "url": "https://www.lavanguardia.com/participacion/cartas/20260409/11508990/actualitzar-l-irpf.html", "entities": ["Rosa Martí Conill", "Spanish Government", "IRPF (Spanish Personal Income Tax)"], "impacted_assets": ["Equities", "Gold", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 2}} diff --git a/Data/3_Gold_Semantic/News_Qdrant/2026-04-08/qdrant_macro_yields_dollar_processed.jsonl b/Data/3_Gold_Semantic/News_Qdrant/2026-04-08/qdrant_macro_yields_dollar_processed.jsonl new file mode 100644 index 0000000..0c1237c --- /dev/null +++ b/Data/3_Gold_Semantic/News_Qdrant/2026-04-08/qdrant_macro_yields_dollar_processed.jsonl @@ -0,0 +1,9 @@ +{"id": "62ea6efd-e04b-5da4-b4d1-99aec73d9aaa", "text": "Wall Street Closes in Strong Gain, Relieved by Iran-US Ceasefire Agreement. The US stock market surged on the news of a 2-week ceasefire agreement between the US and Iran, easing concerns about a potential conflict in the Middle East. This development contributed to reduced fears of recession, higher growth expectations, and lower inflation anticipations, leading to a strong gain for equities. The oil price decline also had a positive impact on the market, with energy sector stocks experiencing losses due to the reduced demand.", "metadata": {"topic": "macro_yields_dollar", "title": "Wall Street Closes in Strong Gain, Relieved by Iran-US Ceasefire Agreement", "original_title": "Wall Street clôture en nette hausse , soulagée par le cessez - le - feu en Iran", "publish_date": "2026-04-09T01:21:11Z", "publish_timestamp": 1775697671, "source": "africanmanager.com", "url": "https://africanmanager.com/wall-street-cloture-en-nette-hausse-soulagee-par-le-cessez-le-feu-en-iran/", "entities": ["United States", "Iran", "Edward Jones", "Interactive Brokers", "Chevron", "ConocoPhillips", "EOG Resources", "ExxonMobil"], "impacted_assets": ["Equities", "Oil", "USD"], "volatility_implication": "Decrease", "llm_tone_score": 3}} +{"id": "5fb74704-7627-5fd8-ac58-a5ad871baee4", "text": "Stocks Rally as Oil Prices Plummet Following Iran War Ceasefire. The temporary ceasefire between the US and Iran has led to a surge in global equities, with the S&P 500, Dow Jones Industrial Average, and Nasdaq composite all rising significantly. The decline in oil prices has also had a positive impact on airline and travel stocks, while Treasury yields have fallen as hopes of lower interest rates later in the year increase. However, analysts caution that the ceasefire remains fragile, and any further escalation could negatively impact market sentiment.\n\nThe macro transmission mechanism is as follows: A decrease in oil prices reduces inflationary pressures, which can lead to a more accommodative monetary policy from central banks like the Federal Reserve. This, in turn, can boost equities and other risk assets, while also reducing the appeal of safe-haven assets like gold.", "metadata": {"topic": "macro_yields_dollar", "title": "Stocks Rally as Oil Prices Plummet Following Iran War Ceasefire", "original_title": "Stocks Close The Day Higher As Oil Prices Plummet Over Iran War Cease Fire", "publish_date": "2026-04-09T01:21:11Z", "publish_timestamp": 1775697671, "source": "newsradio1290wtks.iheart.com", "url": "https://newsradio1290wtks.iheart.com/content/2026-04-08-stocks-close-the-day-higher-as-oil-prices-plummet-over-iran-war-cease-fire/", "entities": ["United States", "Iran", "President Donald Trump", "United Airlines", "Carnival cruise lines", "Delta Air Lines"], "impacted_assets": ["Equities", "Gold", "Oil"], "volatility_implication": "Neutral", "llm_tone_score": 2}} +{"id": "63b64aeb-5490-563b-9263-f47110cbd261", "text": "Stocks Rally as Oil Prices Plummet Following Iran War Cease Fire. The temporary ceasefire between the US and Iran led to a surge in stocks, with the S&P 500, Dow Jones Industrial Average, and Nasdaq composite all rising. The decline in oil prices also boosted airline and travel stocks, while Treasury yields fell as hopes for lower interest rates increased. The market's optimism was tempered by concerns about the ceasefire's fragility and potential disruptions to shipping through the Strait of Hormuz.\n\nThe macro transmission mechanism is that a decrease in oil prices can lead to increased consumer spending and economic growth, which can boost equities and reduce inflationary pressures, making it more likely for the Federal Reserve to cut interest rates.", "metadata": {"topic": "macro_yields_dollar", "title": "Stocks Rally as Oil Prices Plummet Following Iran War Cease Fire", "original_title": "Stocks Close The Day Higher As Oil Prices Plummet Over Iran War Cease Fire | NewsRadio WKCY", "publish_date": "2026-04-09T01:21:11Z", "publish_timestamp": 1775697671, "source": "newsradiowkcy.iheart.com", "url": "https://newsradiowkcy.iheart.com/content/2026-04-08-stocks-close-the-day-higher-as-oil-prices-plummet-over-iran-war-cease-fire/", "entities": ["United Airlines", "Carnival cruise lines", "Delta Air Lines", "President Donald Trump", "Iran's foreign minister"], "impacted_assets": ["Equities", "Gold", "Oil"], "volatility_implication": "Neutral", "llm_tone_score": 2}} +{"id": "a6ea31b5-c35a-54e7-b593-feb4f8d7e6cc", "text": "Stocks Rally as Oil Prices Plummet Following Iran War Ceasefire. The temporary ceasefire between the US and Iran led to a surge in global equities, with the S&P 500, Dow Jones, and Nasdaq composite all rising significantly. The decline in oil prices also boosted airline and travel stocks, while Treasury yields fell as hopes for lower interest rates increased. However, analysts cautioned that the ceasefire remains fragile, and market optimism faded somewhat later in the day.\n\nThe macro transmission mechanism is as follows: a decrease in oil prices reduces inflationary pressures, which could lead to a more accommodative monetary policy from the Federal Reserve, potentially resulting in lower interest rates. This, in turn, can boost equities and other risk assets, such as gold. The ceasefire also reduces geopolitical tensions, which can positively impact market sentiment and investor confidence.", "metadata": {"topic": "macro_yields_dollar", "title": "Stocks Rally as Oil Prices Plummet Following Iran War Ceasefire", "original_title": "Stocks Close The Day Higher As Oil Prices Plummet Over Iran War Cease Fire", "publish_date": "2026-04-09T01:21:11Z", "publish_timestamp": 1775697671, "source": "whp580.iheart.com", "url": "https://whp580.iheart.com/content/2026-04-08-stocks-close-the-day-higher-as-oil-prices-plummet-over-iran-war-cease-fire/", "entities": ["United States", "Iran", "President Donald Trump", "United Airlines", "Carnival cruise lines", "Delta Air Lines"], "impacted_assets": ["Equities", "Gold", "Oil"], "volatility_implication": "Neutral", "llm_tone_score": 2}} +{"id": "9da3262c-b5fa-541c-964d-06cbc2042a3a", "text": "Wall Street Closes Higher, Relieved by Iran Ceasefire Announcement. Wall Street closed higher as investors welcomed the announcement of a 14-day ceasefire between the US and Iran. The news contributed to a decrease in oil prices, which in turn reduced concerns about recession, inflation, and growth. This led to optimism on the equity markets, with sectors such as energy, airlines, and logistics companies performing well. Cryptocurrency-related stocks also benefited from the increased appetite for risk.", "metadata": {"topic": "macro_yields_dollar", "title": "Wall Street Closes Higher, Relieved by Iran Ceasefire Announcement", "original_title": "Wall Street clôture en nette hausse , soulagée par le cessez - le - feu en Iran", "publish_date": "2026-04-09T01:21:11Z", "publish_timestamp": 1775697671, "source": "lecourrier.vn", "url": "https://lecourrier.vn/wall-street-cloture-en-nette-hausse-soulagee-par-le-cessez-le-feu-en-iran/1345035.html", "entities": ["United States", "Iran", "Edward Jones", "Interactive Brokers", "Chevron", "ConocoPhillips", "EOG Resources", "ExxonMobil", "Delta Air Lines", "American Airlines", "Alaska Air Group", "Carnival", "Royal Caribbean", "FedEx", "UPS", "Robinhood", "Riot Platforms"], "impacted_assets": ["Equities", "Gold", "Oil", "USD"], "volatility_implication": "Neutral: The ceasefire announcement has a calming effect on the market, reducing volatility.", "llm_tone_score": 2}} +{"id": "369d1304-9d6b-5291-83f2-02f4990faaf5", "text": "Rupee Expected to Stabilize at 92-93 Level Against USD. The article quotes the EAC-PM chairman as saying that the Indian Rupee is expected to stabilize at 92-93 levels against the USD, driven by improvements in macroeconomic fundamentals and a reduction in global uncertainties. He also expressed optimism about India's economic growth prospects, citing its resilience and fiscal space to absorb external shocks. The article highlights structural factors such as debt-to-GDP ratio improvements, ongoing reforms, and technological advancements as supportive of private sector investment and higher growth.\n\nThe stabilization of the Rupee is expected to have a positive impact on Indian equities and gold prices, as it reduces uncertainty and increases investor confidence in the economy.", "metadata": {"topic": "macro_yields_dollar", "title": "Rupee Expected to Stabilize at 92-93 Level Against USD", "original_title": "Rupee likely to stabilise at 92 - 93 level : EAC - PM chairman", "publish_date": "2026-04-09T01:21:11Z", "publish_timestamp": 1775697671, "source": "dailyexcelsior.com", "url": "https://www.dailyexcelsior.com/rupee-likely-to-stabilise-at-92-93-level-eac-pm-chairman/", "entities": ["S Mahendra Dev", "Economic Advisory Council to the Prime Minister (EAC-PM)", "Reserve Bank of India (RBI)"], "impacted_assets": ["Equities", "Gold"], "volatility_implication": "Neutral", "llm_tone_score": 2}} +{"id": "6cadf122-0f0b-51cd-9fd8-d998ce4b86fd", "text": "Stocks Rally as Oil Prices Plummet Following Iran War Ceasefire. The temporary ceasefire between the US and Iran has led to a surge in global equities, with the S&P 500, Dow Jones Industrial Average, and Nasdaq composite all rising significantly. The decline in oil prices has also had a positive impact on airline and travel stocks, while Treasury yields have fallen as hopes of lower interest rates later in the year increase. However, analysts caution that the ceasefire remains fragile, and any further escalation could negatively impact market sentiment.\n\nThe macro transmission mechanism is as follows: A decrease in oil prices reduces inflationary pressures, which can lead to a more accommodative monetary policy from central banks like the Federal Reserve. This, in turn, can boost equities and other risk assets, while also reducing the appeal of safe-haven assets like gold.", "metadata": {"topic": "macro_yields_dollar", "title": "Stocks Rally as Oil Prices Plummet Following Iran War Ceasefire", "original_title": "Stocks Close The Day Higher As Oil Prices Plummet Over Iran War Cease Fire", "publish_date": "2026-04-09T01:21:11Z", "publish_timestamp": 1775697671, "source": "1019bigwaax.iheart.com", "url": "https://1019bigwaax.iheart.com/content/2026-04-08-stocks-close-the-day-higher-as-oil-prices-plummet-over-iran-war-cease-fire/", "entities": ["United States", "Iran", "President Donald Trump", "United Airlines", "Carnival cruise lines", "Delta Air Lines"], "impacted_assets": ["Equities", "Gold", "Oil"], "volatility_implication": "Neutral", "llm_tone_score": 2}} +{"id": "ee33f9a6-575d-5c99-a12a-2bb5e9204f55", "text": "Oil Prices Plunge Below $95 as Global Markets Rally Following Ceasefire with Iran. The ceasefire between Iran and the global community has led to a surge in global markets, with the Dow Jones Industrial Average rising by 1,300 points. This development has resulted in a decrease in oil prices, which have fallen below $95 per barrel. The macro transmission mechanism is that the improved geopolitical situation has reduced uncertainty, leading to increased risk appetite and a subsequent rally in equities.", "metadata": {"topic": "macro_yields_dollar", "title": "Oil Prices Plunge Below $95 as Global Markets Rally Following Ceasefire with Iran", "original_title": "Oil plunges below $95 as the Dow surges 1 , 300 in a worldwide rally following a ceasefire with Iran", "publish_date": "2026-04-09T01:21:11Z", "publish_timestamp": 1775697671, "source": "santamariatimes.com", "url": "https://santamariatimes.com/ap/business/oil-plunges-below-95-as-the-dow-surges-1-300-in-a-worldwide-rally-following/article_a54e11c8-bfe7-4866-8e05-38da805d67ae.html", "entities": ["Iran", "Dow Jones Industrial Average"], "impacted_assets": ["Equities", "Gold", "Oil"], "volatility_implication": "Neutral", "llm_tone_score": 2}} +{"id": "15f1b2a9-51fd-5069-b6f4-25eea5fe8912", "text": "Suze Orman's Advice on Using Tax Refunds to Build Financial Security. Suze Orman advises using tax refunds strategically to build financial security. She recommends building emergency reserves, paying off high-interest credit card debt, investing in maintenance spending for cars and homes, contributing to retirement accounts, and avoiding unnecessary expenses. This advice is aimed at helping individuals strengthen their financial position rather than simply spending the refund.\n\nNote: As this article does not have a direct impact on gold or silver prices, the tone score is neutral. The advice provided by Suze Orman is general financial guidance that may indirectly affect consumer spending and savings habits, but it does not have a significant macro transmission mechanism to influence precious metals markets.", "metadata": {"topic": "macro_yields_dollar", "title": "Suze Orman's Advice on Using Tax Refunds to Build Financial Security", "original_title": "Suze Orman : 6 Best Ways To Use Tax Refund", "publish_date": "2026-04-09T01:21:11Z", "publish_timestamp": 1775697671, "source": "gobankingrates.com", "url": "https://www.gobankingrates.com/taxes/refunds/suze-orman-best-ways-use-large-tax-refund-to-become-financially-secure/", "entities": ["Suze Orman", "Congress", "economists"], "impacted_assets": [], "volatility_implication": "Neutral", "llm_tone_score": 0}} diff --git a/Data/3_Gold_Semantic/News_Qdrant/2026-04-10/qdrant_asset_metals_derivatives_processed.jsonl b/Data/3_Gold_Semantic/News_Qdrant/2026-04-10/qdrant_asset_metals_derivatives_processed.jsonl new file mode 100644 index 0000000..1321fca --- /dev/null +++ b/Data/3_Gold_Semantic/News_Qdrant/2026-04-10/qdrant_asset_metals_derivatives_processed.jsonl @@ -0,0 +1,3 @@ +{"id": "08241189-e8f3-59fc-a636-57188345649e", "text": "March CPI Surges to 3.3% as Iran War Drives Energy Costs Higher; What It Means for Investors. The March CPI report showed a 3.3% annual increase, driven primarily by energy costs due to the Iran war. This has led to a surge in oil prices and inflationary pressures. While headline inflation is high, core inflation remains relatively calm. The market reaction was positive, with equities rising on the news. The Federal Reserve is unlikely to make any significant moves in response to this data, as both headline and core inflation are within expected ranges. Energy stocks, gold, and commodity-linked assets have been beneficiaries of the war-driven volatility and are likely to continue to perform well. The focus now shifts to earnings reports from major banks next week.", "metadata": {"topic": "asset_metals_derivatives", "title": "March CPI Surges to 3.3% as Iran War Drives Energy Costs Higher; What It Means for Investors", "original_title": "March CPI Surges to 3 . 3 % as Iran War Drives Energy Costs Higher ; What It Means for Investors", "publish_date": "2026-04-10T19:51:20Z", "publish_timestamp": 1775850680, "source": "investorideas.com", "url": "https://www.investorideas.com/news/2026/main/04101-cpi-inflation-energy-surge-market-impact.asp", "entities": ["Federal Reserve", "Bureau of Labor Statistics", "deVere", "JPMorgan", "Wells Fargo", "Citigroup", "Goldman Sachs", "BlackRock"], "impacted_assets": ["Equities", "Gold", "Oil", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 2}} +{"id": "30a0c48f-ed77-5b6e-a9da-1ba419968047", "text": "Major airlines cut flights and hike fares as fuel costs rise due to Middle East conflict. The ongoing conflict in the Middle East has led to a surge in fuel prices, prompting major airlines to cut flights and increase fares. This development may contribute to inflationary pressures, which could benefit gold and silver prices. The impact on oil prices is uncertain, but rising costs may lead to increased volatility.", "metadata": {"topic": "asset_metals_derivatives", "title": "Major airlines cut flights and hike fares as fuel costs rise due to Middle East conflict", "original_title": "Major airlines cut flights and hike fares as fuel costs rise", "publish_date": "2026-04-10T19:51:20Z", "publish_timestamp": 1775850680, "source": "penarthtimes.co.uk", "url": "https://www.penarthtimes.co.uk/news/26009421.major-airlines-cut-flights-hike-fares-fuel-costs-rise/", "entities": ["US", "Israel", "Iran", "Skybus", "Ryanair", "Air India", "Air New Zealand", "Delta Airlines", "Blue Islands Limited", "Air Kilroe Limited t/a Eastern Airways", "Play Airlines", "Legend Airlines"], "impacted_assets": ["Equities", "Gold", "Oil", "USD"], "volatility_implication": "Increase", "llm_tone_score": 2}} +{"id": "92826a0d-8fe9-585f-b6b5-f26305b2542a", "text": "Utilities Seek Federal Pause on Grid Bidding Amid AI-Driven Power Demand. A coalition of utilities is seeking federal intervention to pause competitive bidding for transmission projects needed to meet the vast energy needs of the data center boom. The request aims to address \"bureaucratic red tape\" and potential delays in project timelines. Ratepayer advocacy groups are pushing back, citing concerns about higher electricity bills. This development has no direct impact on gold or silver prices but may indirectly influence market sentiment through its implications for the broader economy.\n\nNote: As there is no explicit macro-financial driver mentioned in the article, I assigned a tone score of 0 (Neutral). The event's potential impact on the broader economy and market sentiment is indirect and not significant enough to warrant a specific tone score.", "metadata": {"topic": "asset_metals_derivatives", "title": "Utilities Seek Federal Pause on Grid Bidding Amid AI-Driven Power Demand", "original_title": "Utilities seek federal pause on grid bidding amid AI - driven power demand - WRCO", "publish_date": "2026-04-10T19:51:20Z", "publish_timestamp": 1775850680, "source": "wrco.com", "url": "https://wrco.com/news/2026/04/10/utilities-seek-federal-pause-on-grid-bidding-amid-ai-driven-power-demand", "entities": ["Xcel Energy", "Northern States Power Company-Wisconsin", "American Transmission Company (ATC)", "Wisconsin Citizens Utility Board", "Midcontinent Independent System Operator (MISO)", "Meta"], "impacted_assets": ["Equities", "Gold", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 0}} diff --git a/Data/3_Gold_Semantic/News_Qdrant/2026-04-10/qdrant_macro_central_banks_processed.jsonl b/Data/3_Gold_Semantic/News_Qdrant/2026-04-10/qdrant_macro_central_banks_processed.jsonl new file mode 100644 index 0000000..df01bb9 --- /dev/null +++ b/Data/3_Gold_Semantic/News_Qdrant/2026-04-10/qdrant_macro_central_banks_processed.jsonl @@ -0,0 +1,8 @@ +{"id": "65919d40-9bb8-597e-b7c3-df8f64b1b702", "text": "Inflation Surges in March Amid Oil Shock Triggered by U.S.-Israeli War with Iran. The article reports a surge in inflation in March due to an oil shock triggered by the U.S.-Israeli war with Iran. This development could complicate interest rate policy at the Federal Reserve, which may be reluctant to lower borrowing costs as inflation climbs. The rapid acceleration of price increases could pose difficulty for the Fed, particularly if it decides to raise interest rates to combat inflation.", "metadata": {"topic": "macro_central_banks", "title": "Inflation Surges in March Amid Oil Shock Triggered by U.S.-Israeli War with Iran", "original_title": "Business - HITS FM", "publish_date": "2026-04-10T19:48:06Z", "publish_timestamp": 1775850486, "source": "hitsfm.net", "url": "https://hitsfm.net/business/9a906e8ed2f1be1191aa6d7dc2574e4c", "entities": ["United States", "Israel", "Iran", "Federal Reserve Chairman Jerome Powell"], "impacted_assets": ["Equities", "Gold", "Oil", "USD"], "volatility_implication": "Increase", "llm_tone_score": 2}} +{"id": "22a75fef-140e-5f11-892f-644349c7b3ca", "text": "Inflation Surges to Highest Level in Nearly Two Years as Energy Costs Spike. The surge in inflation to its highest level in nearly two years, driven by energy costs and the US-Iran conflict, is likely to boost gold and silver prices. The Federal Reserve may be cautious about cutting interest rates due to rising core inflation, which could support precious metals. The uncertainty surrounding the war's impact on the job market and economy also contributes to a bullish tone for gold and silver.\n\nNote: The tone score of +2 reflects the moderate increase in inflation, which is likely to have a positive impact on gold and silver prices, but not strong enough to trigger a significant rate cut by the Federal Reserve.", "metadata": {"topic": "macro_central_banks", "title": "Inflation Surges to Highest Level in Nearly Two Years as Energy Costs Spike", "original_title": "Inflation surges to highest level in nearly 2 years as energy costs spike", "publish_date": "2026-04-10T19:48:06Z", "publish_timestamp": 1775850486, "source": "kacu.org", "url": "https://www.kacu.org/2026-04-10/inflation-surges-to-highest-level-in-nearly-2-years-as-energy-costs-spike", "entities": ["Austan Goolsbee", "Federal Reserve Bank of Chicago", "New York Fed"], "impacted_assets": ["Equities", "Gold", "Oil", "USD"], "volatility_implication": "Increase", "llm_tone_score": 2}} +{"id": "4ea0158e-e17d-50d7-9f42-c3be4f118d6b", "text": "Trump Summons Banking Chiefs for Closed-Door Meeting on AI Model. The meeting between President Trump, Treasury Secretary Scott Bessent, Federal Reserve Chair Jerome Powell, and top banking executives is focused on an artificial intelligence model called Mythos. The AI model has identified thousands of high-severity vulnerabilities in major operating systems and web browsers, raising concerns about national defense firewalls. While this event may not have a direct impact on gold or silver prices, it could contribute to market uncertainty and potentially influence interest rates or currency markets, which may indirectly affect precious metals.", "metadata": {"topic": "macro_central_banks", "title": "Trump Summons Banking Chiefs for Closed-Door Meeting on AI Model", "original_title": "Trump summons banking chiefs for a closed - door meeting about an AI model : report", "publish_date": "2026-04-10T19:48:06Z", "publish_timestamp": 1775850486, "source": "wgme.com", "url": "https://wgme.com/news/nation-world/trump-summons-banking-chiefs-for-a-closed-door-meeting-about-an-ai-model-report-jerome-powell-scott-bessent", "entities": ["Donald Trump", "Scott Bessent", "Jerome Powell", "Ted Pick", "David Solomon", "Jane Fraser"], "impacted_assets": [], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "b72097d8-e01d-5d87-ab77-7979dbc7d003", "text": "Why did Trump's government go back to attacking the Pix (and what can the US do about it)?. The US government has reopened an investigation into Brazil's Pix payment system, citing concerns over competitive unfairness. This development may lead to retaliatory measures from the US, such as tariffs or trade restrictions, which could negatively impact gold and silver prices. The tone is bearish due to the potential for increased market uncertainty and a possible weakening of the USD.\n\nThe macro transmission mechanism is as follows: an investigation into Pix may lead to retaliatory measures from the US, which could weaken the USD and increase market volatility, ultimately impacting gold and silver prices.", "metadata": {"topic": "macro_central_banks", "title": "Why did Trump's government go back to attacking the Pix (and what can the US do about it)?", "original_title": "Por que governo Trump voltou a atacar o Pix ( e o que EUA podem fazer contra ele )? ", "publish_date": "2026-04-10T19:48:06Z", "publish_timestamp": 1775850486, "source": "em.com.br", "url": "http://www.em.com.br/economia/2026/04/7394973-por-que-governo-trump-voltou-a-atacar-o-pix-e-o-que-eua-podem-fazer-contra-ele.html", "entities": ["President Luiz Inácio Lula da Silva", "President Gustavo Petro", "Office of the United States Trade Representative (USTR)", "Banco Central do Brasil"], "impacted_assets": ["Equities", "Gold", "USD"], "volatility_implication": "Decrease", "llm_tone_score": -2}} +{"id": "ea4a0790-7887-560b-b61f-0732d27e0a1b", "text": "Soaring Gas Prices Lead to Biggest Monthly Inflation Spike in Four Years in March. The article reports a significant increase in inflation due to soaring gas prices, which is expected to impact the Federal Reserve's monetary policy decisions. This development may lead to a rate hike or delay in rate cuts, potentially benefiting gold and silver prices. The macro transmission mechanism involves higher energy costs affecting consumer spending and economic growth, which could slow down the economy and increase demand for safe-haven assets like precious metals.", "metadata": {"topic": "macro_central_banks", "title": "Soaring Gas Prices Lead to Biggest Monthly Inflation Spike in Four Years in March", "original_title": "Soaring gas prices leads to biggest monthly inflation spike in four years in March", "publish_date": "2026-04-10T19:48:06Z", "publish_timestamp": 1775850486, "source": "1037qcountry.com", "url": "https://1037qcountry.com/news/030030-soaring-gas-prices-leads-to-biggest-monthly-inflation-spike-in-four-years-in-march/", "entities": ["Federal Reserve", "Iran", "White House", "Labor Department", "motor club AAA", "UBS"], "impacted_assets": ["Equities", "Gold", "Oil", "USD"], "volatility_implication": "Increase", "llm_tone_score": 2}} +{"id": "4a3d7ef5-8028-5979-8dba-c3c17e3c833e", "text": "Mexican Peso Strengthens to its Best Week in Over a Year as Dollar Falls. The Mexican peso is strengthening against the US dollar, with a 3.17% gain this week, driven by a weakening dollar and optimism in global markets. This trend is supported by a favorable international environment, including reduced tensions in the Middle East and potential diplomatic progress. The peso's appreciation is also influenced by inflation expectations in the US, which are driving interest rate decisions at the Federal Reserve.\n\nNote: The tone score of +2 reflects the bullish sentiment towards the Mexican peso, driven by its strengthening trend against the dollar, but with a neutral volatility implication as market fear/VIX remains stable.", "metadata": {"topic": "macro_central_banks", "title": "Mexican Peso Strengthens to its Best Week in Over a Year as Dollar Falls", "original_title": "Precio del dólar hoy viernes 10 de abril : peso mexicano perfila su mejor semana en un año", "publish_date": "2026-04-10T19:48:06Z", "publish_timestamp": 1775850486, "source": "elsiglodetorreon.com.mx", "url": "https://www.elsiglodetorreon.com.mx/noticia/2026/precio-del-dolar-hoy-viernes-10-de-abril-peso-mexicano-perfila-su-mejor-semana-en-un-ano.html", "entities": ["Mexican Peso", "US Dollar", "Bloomberg", "Banco Base", "Reserva Federal"], "impacted_assets": ["Gold", "Silver", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 2}} +{"id": "ff6c4ccb-0384-5b7f-bb30-9764e4784ece", "text": "The Comeback of Swap Futures - Risk.net. A surge in directional block trades in interest rate swap futures contracts has been observed, with a total notional value of $2.5 billion printed in March. This increase in activity suggests growing market participation and potential for increased volatility in the interest rate derivatives space. The macro transmission mechanism is likely driven by changes in market expectations around monetary policy and economic growth, which may impact gold and silver prices through their inverse correlation with interest rates.", "metadata": {"topic": "macro_central_banks", "title": "The Comeback of Swap Futures - Risk.net", "original_title": "The swap futures comeback - Risk . net", "publish_date": "2026-04-10T19:48:06Z", "publish_timestamp": 1775850486, "source": "risk.net", "url": "https://www.risk.net/markets/7963346/the-swap-futures-comeback", "entities": ["None explicitly mentioned"], "impacted_assets": ["Gold", "Silver", "Interest Rate Derivatives"], "volatility_implication": "Neutral", "llm_tone_score": 2}} +{"id": "6dd1d9f9-5bdc-5e6b-aae1-cda390659f91", "text": "Oil Shock Triggers Inflation Surge Amid Middle East Conflict. The ongoing Middle East conflict has triggered a significant oil shock, leading to a surge in inflation and prices. This development could complicate interest rate policy at the Federal Reserve, which may be reluctant to lower borrowing costs as inflation climbs. The rapid acceleration of price increases could pose difficulty for the Fed, particularly if it decides to raise interest rates to combat inflation.", "metadata": {"topic": "macro_central_banks", "title": "Oil Shock Triggers Inflation Surge Amid Middle East Conflict", "original_title": "Prices surged in March after oil shock set off by Iran war", "publish_date": "2026-04-10T19:48:06Z", "publish_timestamp": 1775850486, "source": "abc30.com", "url": "https://abc30.com/post/prices-surged-march-oil-shock-set-off-iran-war/18865879/", "entities": ["Iran", "United States", "Israel", "Jerome Powell", "Federal Reserve"], "impacted_assets": ["Gold", "Silver", "USD", "Crude Oil"], "volatility_implication": "Increase", "llm_tone_score": 2}} diff --git a/Data/3_Gold_Semantic/News_Qdrant/2026-04-10/qdrant_macro_geopolitics_risk_processed.jsonl b/Data/3_Gold_Semantic/News_Qdrant/2026-04-10/qdrant_macro_geopolitics_risk_processed.jsonl new file mode 100644 index 0000000..4b0f0a1 --- /dev/null +++ b/Data/3_Gold_Semantic/News_Qdrant/2026-04-10/qdrant_macro_geopolitics_risk_processed.jsonl @@ -0,0 +1,7 @@ +{"id": "953bd332-c506-5eaa-b648-5cef0e82ed24", "text": "Vice President Challenges President on Aid Amid 2026 Energy Crisis. Vice President Sara Duterte questioned President Marcos' efforts to assist Filipinos affected by the ongoing energy crisis. She suggested that fuel prices could ease if tensions in the Middle East subside or alternative fuel sources are secured. The government has implemented measures to reduce energy consumption, and a State of National Energy Emergency has been declared. This development is likely to have a neutral impact on gold and silver prices, but may lead to some volatility in oil markets.\n\nNote: The tone score is +1 because while the Vice President's comments may create some uncertainty, they do not directly affect the macroeconomic environment or the central bank's monetary policy stance, which are key drivers of gold and silver prices.", "metadata": {"topic": "macro_geopolitics_risk", "title": "Vice President Challenges President on Aid Amid 2026 Energy Crisis", "original_title": "VP Sara Challenges Marcos on Aid Amid 2026 Energy Crisis", "publish_date": "2026-04-10T19:50:08Z", "publish_timestamp": 1775850608, "source": "sunstar.com.ph", "url": "https://www.sunstar.com.ph/davao/vp-sara-questions-pbbm-on-aid-amid-energy-crisis", "entities": ["Sara Duterte", "Ferdinand \"Bongbong\" Marcos Jr."], "impacted_assets": ["Equities", "Gold", "Oil"], "volatility_implication": "Neutral", "llm_tone_score": 1}} +{"id": "65919d40-9bb8-597e-b7c3-df8f64b1b702", "text": "Inflation Surges in March Amid Oil Shock Triggered by U.S.-Israeli War with Iran. The article reports a surge in inflation in March due to an oil shock triggered by the U.S.-Israeli war with Iran. This development could pose difficulties for the Federal Reserve as it weighs its interest rate policy. The rapid acceleration of price increases may lead to higher borrowing costs, which could impact gold and silver prices positively.", "metadata": {"topic": "macro_geopolitics_risk", "title": "Inflation Surges in March Amid Oil Shock Triggered by U.S.-Israeli War with Iran", "original_title": "Business - HITS FM", "publish_date": "2026-04-10T19:50:08Z", "publish_timestamp": 1775850608, "source": "hitsfm.net", "url": "https://hitsfm.net/business/9a906e8ed2f1be1191aa6d7dc2574e4c", "entities": ["United States", "Israel", "Iran", "Jerome Powell", "Federal Reserve"], "impacted_assets": ["Gold", "Silver", "USD", "Equities"], "volatility_implication": "Increase", "llm_tone_score": 2}} +{"id": "a94553db-aff9-5b82-ba8d-fa5ac28e600b", "text": "Trump Reveals Timeline for Iran-US Talks Outcome: US Warships Being Rearmed with Best Weapons. The article reports that US President Donald Trump has revealed a 24-hour timeline for the outcome of talks between the US and Iran. If negotiations fail, Trump warns that the US will rearm its warships with the best weapons ever made, implying a potential escalation in tensions. This development increases market fear and volatility, particularly in gold and oil markets, as investors anticipate a possible conflict scenario.\n\nNote: The tone score is bearish due to the escalating rhetoric and implied threat of military action, which could lead to increased uncertainty and market volatility.", "metadata": {"topic": "macro_geopolitics_risk", "title": "Trump Reveals Timeline for Iran-US Talks Outcome: US Warships Being Rearmed with Best Weapons", "original_title": " USKORO ĆEMO SAZNATI Tramp otkrio kad će biti poznato da li će pregovori SAD i Irana biti uspešni : Mi punimo brodove najboljim oružjem", "publish_date": "2026-04-10T19:50:08Z", "publish_timestamp": 1775850608, "source": "novosti.rs", "url": "https://www.novosti.rs/planeta/svet/1596010/uskoro-cemo-saznati-tramp-otkrio-kad-biti-poznato-pregovori-sad-irana-biti-uspesni-punimo-brodove-najboljim-oruzjem", "entities": ["Donald Trump", "Pakistan", "Iran", "United States"], "impacted_assets": ["Gold", "Oil", "USD"], "volatility_implication": "Increase", "llm_tone_score": -3}} +{"id": "0f382490-5526-5ad3-965b-8d85e1bb6c2c", "text": "China Sees Solid Rise in Cross-Border Travel in Q1, with Foreign National Trips Surging. China's cross-border travel growth is driven by relaxed entry policies and streamlined customs procedures. The surge in foreign national trips is a positive sign for the country's tourism industry, which saw over 150 million inbound tourist visits in 2025, with spending exceeding $130 billion. This trend may lead to increased demand for gold and silver as investors seek safe-haven assets amid growing economic activity.\n\nThe macro transmission mechanism is that increased consumer spending and tourism can boost economic growth, leading to higher demand for precious metals like gold and silver.", "metadata": {"topic": "macro_geopolitics_risk", "title": "China Sees Solid Rise in Cross-Border Travel in Q1, with Foreign National Trips Surging", "original_title": "China sees solid rise in cross - border travel in Q1 , with foreign national trips surging", "publish_date": "2026-04-10T19:50:08Z", "publish_timestamp": 1775850608, "source": "shanghainews.net", "url": "http://www.shanghainews.net/news/278975895/china-sees-solid-rise-in-cross-border-travel-in-q1-with-foreign-national-trips-surging", "entities": ["China", "Xinhua", "National Immigration Administration", "Hong Kong", "Macao", "Taiwan", "Fujian province", "Hainan province", "Ministry of Culture and Tourism"], "impacted_assets": ["Equities", "Gold", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 2}} +{"id": "cce40e36-706a-5adf-bfba-2bcffb1e03ba", "text": "Club Med Opens New Resort in Sabah, Malaysia!. The opening of Club Med's new resort in Sabah, Malaysia, is expected to boost tourism in the region. The resort features a unique blend of natural and cultural experiences, including red forest exploration and wildlife observation. This development may have a neutral impact on gold and silver prices, as it does not directly affect macroeconomic drivers or global financial markets.\n\nNote: As there are no explicit mentions of macroeconomic drivers, interest rates, inflation, or geopolitical conflicts in the article, I assigned a tone score of 0 (Neutral).", "metadata": {"topic": "macro_geopolitics_risk", "title": "Club Med Opens New Resort in Sabah, Malaysia!", "original_title": "亞洲最新隱奢海島誕生 ! Club Med沙巴度假村開訂 4天3夜2萬起全包 | 流行消費 | 生活", "publish_date": "2026-04-10T19:50:08Z", "publish_timestamp": 1775850608, "source": "udn.com", "url": "https://udn.com/news/story/7270/9433920", "entities": ["Club Med", "Sabah", "Malaysia", "Kuala Penyu", "Amazon"], "impacted_assets": ["Equities", "Gold", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "fa744fb4-9367-5506-93fc-0ef864e84f13", "text": "Germany Delivers Five Armored Medical Vehicles to Ukrainian National Guard. The German government has delivered five armored medical vehicles, known as MEDIGUARD, to the Ukrainian National Guard. This is part of a larger agreement funded by Germany and marks an increase in military aid to Ukraine. The new batch of vehicles includes anti-drone nets for enhanced protection. While this news may not have a direct impact on Gold/Silver prices, it could contribute to market sentiment and potentially influence investor decisions.\n\nNote: As the tone score is 0 (Neutral), this event is unlikely to have a significant impact on Gold/Silver prices. However, as part of a broader macroeconomic context, it may contribute to market sentiment and influence investor decisions.", "metadata": {"topic": "macro_geopolitics_risk", "title": "Germany Delivers Five Armored Medical Vehicles to Ukrainian National Guard", "original_title": "Συνεχίζουν να εξοπλίζουν τους εγκληματίες - Η Γερμανία παρέδωσε 5 τεθωρακισμένα οχήματα MEDIGUARD στην Εθνοφρουρά της Ουκρανίας", "publish_date": "2026-04-10T19:50:08Z", "publish_timestamp": 1775850608, "source": "bankingnews.gr", "url": "https://www.bankingnews.gr/diethni/articles/867952/synexizoun-na-eksoplizoun-tous-egklimaties-i-germania-paredose-5-tethorakismena-oximata-mediguard-stin-ethnofroura-tis-oukranias", "entities": ["German government", "Ukraine", "MEDIGUARD manufacturers (Ukrainian and German companies)"], "impacted_assets": [], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "c44c3ee2-f0bf-5202-92d6-f1f49dc05481", "text": "Airports Warn of Systemic Jet Fuel Shortage if Strait of Hormuz Remains Closed. The potential shortage of jet fuel due to the closure of the Strait of Hormuz could lead to higher prices, which may benefit gold and silver prices. The increased cost of jet fuel could be passed on to passengers, leading to higher airfares, which may negatively impact equities and oil prices. The USD may strengthen as a safe-haven asset in response to the potential shortage.\n\nNote: The tone score is +2 because while the event has negative implications for airlines and air travel, it may have positive implications for gold and silver prices due to increased market uncertainty and risk aversion.", "metadata": {"topic": "macro_geopolitics_risk", "title": "Airports Warn of Systemic Jet Fuel Shortage if Strait of Hormuz Remains Closed", "original_title": "Airports warn of systemic jet fuel shortage if Strait of Hormuz stays closed", "publish_date": "2026-04-10T19:50:08Z", "publish_timestamp": 1775850608, "source": "cravenherald.co.uk", "url": "https://www.cravenherald.co.uk/news/national/26012377.airports-warn-systemic-jet-fuel-shortage-strait-hormuz-stays-closed/", "entities": ["European Commission", "Airports Council International (ACI)", "Ryanair", "Sir Keir Starmer", "US President Donald Trump"], "impacted_assets": ["Equities", "Gold", "Oil", "USD"], "volatility_implication": "Increase", "llm_tone_score": 2}} diff --git a/Data/3_Gold_Semantic/News_Qdrant/2026-04-10/qdrant_macro_yields_dollar_processed.jsonl b/Data/3_Gold_Semantic/News_Qdrant/2026-04-10/qdrant_macro_yields_dollar_processed.jsonl new file mode 100644 index 0000000..35bec1b --- /dev/null +++ b/Data/3_Gold_Semantic/News_Qdrant/2026-04-10/qdrant_macro_yields_dollar_processed.jsonl @@ -0,0 +1,5 @@ +{"id": "f4bc7cc6-83a1-5646-8499-ff457a94e7d0", "text": "Commodity Prices Update. The article reports on the current prices of various commodities, including gold, silver, oil, and agricultural products. Gold and silver prices have increased, while oil prices have decreased. Agricultural commodity prices are mixed, with some increasing and others decreasing. Energy commodity prices have also seen changes, with natural gas and heating oil prices declining. The overall tone is neutral, as there are no clear directional macro drivers impacting the commodities market.\n\nNote: As the article does not explicitly mention any entities or macroeconomic factors that would significantly impact gold and silver prices, I assigned a tone score of +1 (Neutral).", "metadata": {"topic": "macro_yields_dollar", "title": "Commodity Prices Update", "original_title": "Rohstoffpreise am Freitagabend", "publish_date": "2026-04-10T19:49:15Z", "publish_timestamp": 1775850555, "source": "finanzen.net", "url": "https://www.finanzen.net/nachricht/rohstoffe/rohstoffpreise-am-freitagabend-15604785", "entities": ["None explicitly mentioned"], "impacted_assets": ["Gold", "Silver", "Oil", "Agricultural commodities (e.g.", "Wheat", "Coffee", "Soybeans)", "Energy commodities (e.g.", "Natural Gas", "Heating Oil)"], "volatility_implication": "Neutral", "llm_tone_score": 1}} +{"id": "a52e4d37-76f8-5d6c-9706-cb71c0372f1c", "text": "Elderly Man Suffers Serious Injury While Driving Tractor in Agricultural Area. A 79-year-old man suffered serious injuries while driving a tractor in an agricultural area near Arcisate, Varese. The incident occurred when the driver lost control of the vehicle and crashed into a fence. Emergency services were quickly dispatched to the scene, and the patient was transported to a nearby hospital for treatment. This event is unlikely to have any significant impact on gold or silver prices, but may contribute to a neutral tone in the market.", "metadata": {"topic": "macro_yields_dollar", "title": "Elderly Man Suffers Serious Injury While Driving Tractor in Agricultural Area", "original_title": "Arcisate , ha un malore mentre guida il trattore nei campi : 79enne in condizioni disperate", "publish_date": "2026-04-10T19:49:15Z", "publish_timestamp": 1775850555, "source": "ilgiorno.it", "url": "https://www.ilgiorno.it/varese/cronaca/arcisate-malore--guida-trattore-79enne-condizioni-disperate-764da021", "entities": ["Arcisate", "Varese", "Velmaio", "Donizetti", "Croce Rossa Valceresio"], "impacted_assets": [], "volatility_implication": "Neutral", "llm_tone_score": -2}} +{"id": "52a00f1e-74d1-514a-87d6-7ee730f3541b", "text": "India's Domestic Investors Show Resilience Amid Global Uncertainty and Market Volatility. Despite global market volatility and geopolitical tensions, Indian domestic investors have shown surprising resilience by increasing their inflows into equity funds. This trend is notable as it contrasts with the outflows seen from foreign investors. The data suggests that local demand for stocks in India remains robust even during periods of extreme uncertainty. While this may not be enough to offset the ongoing outflows from abroad, it does indicate where the market's current support lies - within the domestic market.\n\nNote: The tone score is +2 as the article highlights a positive trend in Indian equity markets, which could potentially boost gold prices if investors seek safe-haven assets.", "metadata": {"topic": "macro_yields_dollar", "title": "India's Domestic Investors Show Resilience Amid Global Uncertainty and Market Volatility", "original_title": "Schwellenländer - Rallye voraus ?: Trotz Krieg : Warum Indiens Aktienfonds jetzt plötzlich Kapital anziehen | wallstreetONLINE", "publish_date": "2026-04-10T19:49:15Z", "publish_timestamp": 1775850555, "source": "wallstreet-online.de", "url": "https://www.wallstreet-online.de/nachricht/20716512-schwellenlaender-rallye-voraus-trotz-krieg-indiens-aktienfonds-kapital-anziehen", "entities": ["Association of Mutual Funds in India", "NSE Nifty 50 Index", "Bloomberg"], "impacted_assets": ["Equities", "Gold"], "volatility_implication": "Neutral", "llm_tone_score": 2}} +{"id": "ba889749-cbe5-53de-874e-b8f97314f556", "text": "OpenAI's Compute Advantage Over Anthropic Escalates the AI Competition. The article highlights the escalating competition between OpenAI and Anthropic in the AI space. OpenAI has increased its compute capacity to gain an advantage over its rival, while Anthropic is investing heavily to catch up. This intensifying competition may lead to increased volatility in technology stocks and potentially impact the USD.", "metadata": {"topic": "macro_yields_dollar", "title": "OpenAI's Compute Advantage Over Anthropic Escalates the AI Competition", "original_title": "Konter gegen Anthropic : KI - Wettrennen eskaliert : OpenAI setzt Rivalen unter Druck | wallstreetONLINE", "publish_date": "2026-04-10T19:49:15Z", "publish_timestamp": 1775850555, "source": "wallstreet-online.de", "url": "https://www.wallstreet-online.de/nachricht/20718345-konter-anthropic-ki-wettrennen-eskaliert-openai-rivalen-druck", "entities": ["OpenAI", "Anthropic", "Bloomberg", "Google", "Broadcom"], "impacted_assets": ["Equities", "Technology Stocks", "USD"], "volatility_implication": "Increase", "llm_tone_score": 2}} +{"id": "ce32d34f-3e5b-55ca-b032-627433045f44", "text": "Two workers killed in crane accident in Palermo. A tragic accident occurred in Palermo where two workers fell from a crane during a work intervention. The incident is under investigation by authorities. This event has no direct macro-financial implications and is unlikely to impact gold or silver prices.\n\nNote: As the article reports on a localized industrial accident with no apparent macroeconomic or financial connections, it does not have any significant bearing on the Gold/Silver options trading desk.", "metadata": {"topic": "macro_yields_dollar", "title": "Two workers killed in crane accident in Palermo", "original_title": "Palermo morti due operai caduti da una gru", "publish_date": "2026-04-10T19:49:15Z", "publish_timestamp": 1775850555, "source": "zazoom.it", "url": "https://www.zazoom.it/2026-04-10/palermo-morti-due-operai-caduti-da-una-gru/18980070/", "entities": ["Pierluigi Vito", "TV2000.it", "Adnkronos", "La Sicilia"], "impacted_assets": [], "volatility_implication": "Neutral", "llm_tone_score": 0}} diff --git a/Data/3_Gold_Semantic/News_Qdrant/2026-04-12/qdrant_asset_metals_derivatives_processed.jsonl b/Data/3_Gold_Semantic/News_Qdrant/2026-04-12/qdrant_asset_metals_derivatives_processed.jsonl new file mode 100644 index 0000000..9b7009c --- /dev/null +++ b/Data/3_Gold_Semantic/News_Qdrant/2026-04-12/qdrant_asset_metals_derivatives_processed.jsonl @@ -0,0 +1,4 @@ +{"id": "193f29a1-7d1e-5ad9-97da-f142bb567ee9", "text": "The Rise of DeepSeek, a Chinese AI Company that's Quietly Taking on the Giants. DeepSeek, a Chinese AI company, has been quietly gaining traction in the industry by releasing high-quality models at affordable prices. Its V2 model was praised for its efficiency and effectiveness, while its R1 model demonstrated impressive performance in deep learning tasks. The company's open-source approach and willingness to collaborate with other developers have earned it recognition and admiration from the AI community. As DeepSeek prepares to release its V4 model, it is expected to further solidify its position as a major player in the industry.\n\nThe article highlights DeepSeek's remarkable journey, from being an underdog to becoming a force to be reckoned with in the AI space. The company's success can be attributed to its focus on developing high-quality models at affordable prices, as well as its willingness to collaborate with other developers and share knowledge openly. As DeepSeek continues to innovate and push boundaries, it is likely to remain a major player in the industry for years to come.\n\nThe article also touches on the topic of AI's potential impact on the job market, with some experts predicting that AI will create more jobs than it replaces. However, the author notes that this is still a topic of debate and that more research is needed to fully understand the implications of AI on the job market.\n\nOverall, the article provides a comprehensive overview of DeepSeek's rise to prominence in the AI industry, highlighting its achievements, challenges, and potential impact on the job market.", "metadata": {"topic": "asset_metals_derivatives", "title": "The Rise of DeepSeek, a Chinese AI Company that's Quietly Taking on the Giants", "original_title": "DeepSeek , 该卸下扫地僧的枷锁了", "publish_date": "2026-04-12T14:43:52Z", "publish_timestamp": 1776005032, "source": "tech.ifeng.com", "url": "https://tech.ifeng.com/c/8sGYfvCKmod", "entities": ["DeepSeek", "OpenAI", "Meta", "SemiAnalysis", "Alexander Wang"], "impacted_assets": ["Equities", "Gold", "Oil", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 2}} +{"id": "1381fed0-d03a-5e47-b513-c019f553fd5e", "text": "Major airlines cut flights and hike fares as fuel costs rise due to Middle East conflict. The ongoing conflict in the Middle East has led to a surge in fuel prices, prompting major airlines to cut flights and hike fares. This development may contribute to inflationary pressures, which could benefit Gold/Silver prices. The impact on USD is uncertain, but rising fuel costs may weaken the currency.", "metadata": {"topic": "asset_metals_derivatives", "title": "Major airlines cut flights and hike fares as fuel costs rise due to Middle East conflict", "original_title": "Major airlines cut flights and hike fares as fuel costs rise", "publish_date": "2026-04-12T14:43:52Z", "publish_timestamp": 1776005032, "source": "swindonadvertiser.co.uk", "url": "https://www.swindonadvertiser.co.uk/news/26014087.major-airlines-cut-flights-hike-fares-fuel-costs-rise/", "entities": ["US", "Israel", "Iran", "Skybus", "Ryanair", "Air India", "Air New Zealand", "Delta Airlines", "Blue Islands Limited", "Air Kilroe Limited t/a Eastern Airways", "Play Airlines", "Legend Airlines"], "impacted_assets": ["Equities", "Gold", "Oil", "USD"], "volatility_implication": "Increase (Rising fuel costs and potential supply chain disruptions may increase market fear/VIX)", "llm_tone_score": 2}} +{"id": "c5212f5a-37ca-50a2-b921-33367bcb9271", "text": "Gold Volatility Amid Geopolitical Crises: What History Tells Us. The article discusses the volatility of gold prices during times of geopolitical crises. Despite a sharp escalation in tensions, gold prices pulled back after briefly retesting record highs. Historical context suggests that gold can experience volatility during the early stages of major global disruptions, driven by factors such as liquidity needs, rising rates, and a stronger U.S. dollar. The article concludes that once conditions stabilize, central bank demand is likely to normalize, and the broader trend of reserve diversification remains intact.\n\nNote: The tone score is neutral because the article does not provide clear directional macro drivers that would significantly impact gold prices.", "metadata": {"topic": "asset_metals_derivatives", "title": "Gold Volatility Amid Geopolitical Crises: What History Tells Us", "original_title": "Gold Volatility Amid Geopolitical Crises : What History Tells Us", "publish_date": "2026-04-12T14:43:52Z", "publish_timestamp": 1776005032, "source": "etftrends.com", "url": "https://www.etftrends.com/tactical-allocation-content-hub/gold-volatility-amid-geopolitical-crises-history-tells/", "entities": ["United States", "Israel", "Iran", "Turkey", "Indonesia", "Guatemala", "Malaysia", "World Gold Council"], "impacted_assets": ["Equities", "Oil", "USD", "Gold"], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "60e0203d-8ef1-5fa7-ba95-812b553d3146", "text": "Risk of Power Struggle between Brussels and Rome's Palazzo. The article discusses the potential power struggle between Brussels and Rome's Palazzo regarding the European Media Freedom Act. This regulation could impact the governance of Rai, Italy's public broadcasting service. The situation is complex, with various stakeholders involved, including the Italian government, Commissione europea, Agcom, and internal factions within Rai. The article highlights the uncertainty surrounding the future of Rai's leadership and potential changes to its governance structure.", "metadata": {"topic": "asset_metals_derivatives", "title": "Risk of Power Struggle between Brussels and Rome's Palazzo", "original_title": "Rai , in onda il risiko dei poteri tra Bruxelles e Palazzo", "publish_date": "2026-04-12T14:43:52Z", "publish_timestamp": 1776005032, "source": "iltempo.it", "url": "https://www.iltempo.it/personaggi/2026/04/12/news/luigi-bisignani-rai-poteri-riforma-governance-lobby-logge-giampaolo-rossi-47241443/", "entities": ["European Media Freedom Act", "Rai", "Italian government", "Commissione europea", "Agcom", "Simona Agnes", "Gian Marco Chiocci", "Francesco Verderami", "Incoronata Boccia", "Nicola Rao", "Mario Orfeo", "Stefano Coletta"], "impacted_assets": ["Equities", "Gold", "EURUSD"], "volatility_implication": "Neutral", "llm_tone_score": 0}} diff --git a/Data/3_Gold_Semantic/News_Qdrant/2026-04-12/qdrant_asset_precious_metals_spot_processed.jsonl b/Data/3_Gold_Semantic/News_Qdrant/2026-04-12/qdrant_asset_precious_metals_spot_processed.jsonl new file mode 100644 index 0000000..fabb309 --- /dev/null +++ b/Data/3_Gold_Semantic/News_Qdrant/2026-04-12/qdrant_asset_precious_metals_spot_processed.jsonl @@ -0,0 +1,6 @@ +{"id": "b381c7f6-ecbb-5353-82a7-e86f87efd582", "text": "Mid-East Update from Islam Memiş: Gold and Housing Warning for Monday!. A ceasefire agreement in the Middle East has been reached, leading to a natural and expected price adjustment. As a result, gold and silver prices have stabilized, while other assets like euro, Bitcoin, and equities have rebounded. However, market participants are still cautious, expecting further volatility before a more stable trend emerges.\n\nNote: The tone score is +2 because the article suggests a positive development in the Middle East, which could lead to increased investor confidence and a subsequent rise in gold and silver prices.", "metadata": {"topic": "asset_precious_metals_spot", "title": "Mid-East Update from Islam Memiş: Gold and Housing Warning for Monday!", "original_title": "İslam Memiş ten altın ve konut için pazartesi uyarısı ! Artık zamanı geldi", "publish_date": "2026-04-12T14:42:33Z", "publish_timestamp": 1776004953, "source": "tgrthaber.com", "url": "https://www.tgrthaber.com/ekonomi/islam-memisten-altin-ve-konut-icin-pazartesi-uyarisi-artik-zamani-geldi-3294009", "entities": ["Islam Memiş", "Middle East"], "impacted_assets": ["Gold", "Silver", "Euro", "Bitcoin", "Equities"], "volatility_implication": "Neutral", "llm_tone_score": 2}} +{"id": "39ca5764-6907-5ec4-8c90-e95986db48d1", "text": "Gold Prices in Egypt: A Stable Outlook for the Weekend of April 12, 2026. The article reports on the current state of gold prices in Egypt, with no significant changes or market-moving events. The prices of different karat weights (24, 22, 21, and 18) are stable, with the Egyptian pound-gold price remaining high. The article also provides information on the current exchange rate between the US dollar and the Egyptian pound. This neutral tone suggests that there is no immediate impact on gold or silver prices.\n\nNote: As the article does not contain any market-moving news or events, the tone score is neutral, indicating no significant impact on gold or silver prices.", "metadata": {"topic": "asset_precious_metals_spot", "title": "Gold Prices in Egypt: A Stable Outlook for the Weekend of April 12, 2026", "original_title": "بكام جرام الذهب ؟.. أسعار الذهب اليوم الأحد 12 إبريل 2026", "publish_date": "2026-04-12T14:42:33Z", "publish_timestamp": 1776004953, "source": "dostor.org", "url": "https://www.dostor.org/5503201", "entities": ["Egyptian gold prices", "Central Bank of Egypt", "international markets"], "impacted_assets": ["Equities", "Gold", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "0784abc8-2142-5e70-bb98-aa8a3a3ebeab", "text": "Who are the Toesca protagonists: The key players in Sanhattan's moment. Toesca S.A. Administradora de Fondos de Inversión, a specialized alternative assets manager, has been making headlines with its recent acquisitions and partnerships. The company's founders, Alejandro Reyes and Carlos Saieh, have a background in the financial industry, having worked at BTG Pactual and Celfin before starting Toesca. With over $2.5 billion in investments and managing around $1.5 billion in 25 funds, Toesca is gaining prominence in the market. The company's growth and expansion plans may have implications for the broader financial markets, particularly in the equities and gold sectors.\n\nNote: As there are no explicit macro-financial or geopolitical drivers mentioned in the article, I assigned a tone score of 0 (Neutral).", "metadata": {"topic": "asset_precious_metals_spot", "title": "Who are the Toesca protagonists: The key players in Sanhattan's moment", "original_title": "Quiénes son los Toesca : Los protagonistas del momento en Sanhattan", "publish_date": "2026-04-12T14:42:33Z", "publish_timestamp": 1776004953, "source": "latercera.com", "url": "https://www.latercera.com/pulso/noticia/quienes-son-los-toesca-los-protagonistas-del-momento-en-sanhattan/", "entities": ["Alejandro Reyes", "Carlos Saieh", "BTG Pactual", "Celfin", "Aetna", "ING", "Moneda Asset Management", "Frontal Trust", "TC Latin America Partners", "Primus Capital", "Ameris Capital"], "impacted_assets": ["Equities", "Gold", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "193f29a1-7d1e-5ad9-97da-f142bb567ee9", "text": "The Rise of DeepSeek, a Chinese AI Company that's Quietly Taking on the Giants. DeepSeek, a Chinese AI company, has been quietly gaining traction in the industry by releasing high-quality models at affordable prices. Its V2 model was praised for its efficiency and effectiveness, while its R1 model demonstrated impressive performance in deep learning tasks. The company's open-source approach and willingness to collaborate with other developers have earned it recognition and admiration from the AI community. As DeepSeek prepares to release its V4 model, it is expected to further solidify its position as a major player in the industry.\n\nThe article highlights DeepSeek's remarkable journey, from being an underdog to becoming a force to be reckoned with in the AI space. The company's success can be attributed to its focus on developing high-quality models at affordable prices, as well as its willingness to collaborate with other developers and share knowledge openly. As DeepSeek continues to innovate and push boundaries, it is likely to remain a major player in the industry for years to come.\n\nThe article also touches on the topic of AI's potential impact on the job market, with some experts predicting that AI will create more jobs than it replaces. However, the author notes that this is still a topic of debate and that more research is needed to fully understand the implications of AI on the job market.\n\nOverall, the article provides a comprehensive overview of DeepSeek's rise to prominence in the AI industry, highlighting its achievements, challenges, and potential impact on the job market.", "metadata": {"topic": "asset_precious_metals_spot", "title": "The Rise of DeepSeek, a Chinese AI Company that's Quietly Taking on the Giants", "original_title": "DeepSeek , 该卸下扫地僧的枷锁了", "publish_date": "2026-04-12T14:42:33Z", "publish_timestamp": 1776004953, "source": "tech.ifeng.com", "url": "https://tech.ifeng.com/c/8sGYfvCKmod", "entities": ["DeepSeek", "OpenAI", "Meta", "SemiAnalysis", "Alexander Wang"], "impacted_assets": ["Equities", "Gold", "Oil", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 2}} +{"id": "70d77a50-0bf0-5149-8e26-83fcfde790f3", "text": "Liverpool band's historic song and its connection to the city's music scene.. This article is a nostalgic look at the Liverpool band The Real Thing and their hit song \"You To Me Are Everything\". The story highlights the group's journey to success, including their early struggles and eventual breakthrough with the help of manager Tony Hall. The article provides insight into the band's history and music style, but does not have any direct impact on gold or silver prices.", "metadata": {"topic": "asset_precious_metals_spot", "title": "Liverpool band's historic song and its connection to the city's music scene.", "original_title": "Liverpool band made history - but theyre not the Beatles | Celebrity News | Showbiz & TV", "publish_date": "2026-04-12T14:42:33Z", "publish_timestamp": 1776004953, "source": "express.co.uk", "url": "https://www.express.co.uk/celebrity-news/2192212/liverpool-boy-band-who-made-history", "entities": ["The Real Thing", "Chris Amoo", "Dave Smith", "Tony Hall", "Ken Gold", "Micky Denne", "David Essex", "Johnny Bristol"], "impacted_assets": [], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "707cd706-8727-51dd-94b5-579f9bccc536", "text": "WisdomTree Silver 3x ETC: Holdings Break Out!. The silver market is heading towards its sixth supply deficit in a row, driven by growing industrial demand and shrinking physical inventories. This fundamental imbalance supports prices and fuels leveraged investment products like the WisdomTree Silver 3x ETC. The strong US dollar weakness and diplomatic tensions in Islamabad are also contributing to the upward momentum.", "metadata": {"topic": "asset_precious_metals_spot", "title": "WisdomTree Silver 3x ETC: Holdings Break Out!", "original_title": "WisdomTree Silver 3x ETC : Bestände brechen ein ! ", "publish_date": "2026-04-12T14:42:33Z", "publish_timestamp": 1776004953, "source": "boerse-express.com", "url": "https://www.boerse-express.com/news/articles/wisdomtree-silver-3x-etc-bestaende-brechen-ein-891172", "entities": ["WisdomTree", "Silver Institute", "COMEX"], "impacted_assets": ["Gold", "Equities", "USD"], "volatility_implication": "Increase", "llm_tone_score": 4}} diff --git a/Data/3_Gold_Semantic/News_Qdrant/2026-04-12/qdrant_macro_central_banks_processed.jsonl b/Data/3_Gold_Semantic/News_Qdrant/2026-04-12/qdrant_macro_central_banks_processed.jsonl new file mode 100644 index 0000000..235c494 --- /dev/null +++ b/Data/3_Gold_Semantic/News_Qdrant/2026-04-12/qdrant_macro_central_banks_processed.jsonl @@ -0,0 +1,7 @@ +{"id": "73edcea6-f323-5e99-9eb9-a58b3ecc5cab", "text": "Should I Invest in an IRA or Pay Off Debt First?. The article discusses the importance of paying off debt before investing in a Roth IRA. According to Dave Ramsey, the caller should focus on eliminating their $45,000 non-mortgage debt first, as every dollar going towards debt payments is a dollar that cannot be invested. This advice suggests a bearish tone for gold and silver prices, as it implies a more cautious approach to investing and potentially less demand for precious metals.\n\nNote: The article does not directly impact the macro-financial landscape or have any significant implications for gold and silver prices. However, the emphasis on debt repayment and delayed investment in a Roth IRA could contribute to a slightly bearish tone in the market.", "metadata": {"topic": "macro_central_banks", "title": "Should I Invest in an IRA or Pay Off Debt First?", "original_title": "I Have $45K in Debt . Should I Invest in an IRA or Pay the Bills First ? ", "publish_date": "2026-04-12T14:39:07Z", "publish_timestamp": 1776004747, "source": "finance.yahoo.com", "url": "https://finance.yahoo.com/markets/options/articles/45k-debt-invest-ira-pay-125503481.html", "entities": ["Dave Ramsey", "SoFi Crypto"], "impacted_assets": ["Equities", "Gold"], "volatility_implication": "Neutral", "llm_tone_score": -3}} +{"id": "8027d293-efc0-5106-9f0b-028b07476ff4", "text": "Workers can withdraw up to 20% of their FGTS to pay debts, says minister. The Brazilian government plans to allow workers with income up to 5 minimum salaries (R$8,105) to withdraw up to 20% of their FGTS (Fundo de Garantia por Tempo de Serviço) to pay off debts. This measure aims to reduce endividamento and will be part of a broader program that includes bank discounts and government guarantees for refinancing. The macro transmission mechanism is expected to have a positive impact on the economy, potentially boosting consumer spending and reducing debt burdens.\n\nNote: The tone score is +2 because while the news is generally positive for the economy, it may not have a significant direct impact on gold or silver prices. However, the potential reduction in endividamento could lead to increased consumer spending and economic growth, which could indirectly support precious metals.", "metadata": {"topic": "macro_central_banks", "title": "Workers can withdraw up to 20% of their FGTS to pay debts, says minister", "original_title": "Trabalhador poderá sacar até 20 % do FGTS para pagar dívidas , diz ministro | Tribuna Online", "publish_date": "2026-04-12T14:39:07Z", "publish_timestamp": 1776004747, "source": "tribunaonline.com.br", "url": "https://tribunaonline.com.br/economia/trabalhador-podera-sacar-ate-20-do-fgts-para-pagar-dividas-diz-ministro-298957", "entities": ["Dario Durigan", "Luiz Marinho", "Jair Bolsonaro", "Lula"], "impacted_assets": ["Equities", "Gold", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 2}} +{"id": "d92ee245-ab8e-5514-bf47-53fb1301b3d9", "text": "Recommendations for Stocks to Watch on April 13th. The article discusses the outlook for two Vietnamese companies, Gelex (GEX) and Masan High-Tech Materials (MSR). For GEX, the report highlights the potential growth in its equipment and construction materials segments, driven by domestic policies and FDI inflows. MSR is expected to benefit from strong demand for its vonfram products due to global supply chain disruptions and increasing prices. The article recommends buying GEX and increasing exposure to MSR.\n\nNote: The tone score is +2 because the article presents a neutral-bullish outlook for both companies, with no major bearish factors mentioned.", "metadata": {"topic": "macro_central_banks", "title": "Recommendations for Stocks to Watch on April 13th", "original_title": "Cổ phiếu cần quan tâm ngày 13 / 4", "publish_date": "2026-04-12T14:39:07Z", "publish_timestamp": 1776004747, "source": "tinnhanhchungkhoan.vn", "url": "https://www.tinnhanhchungkhoan.vn/co-phieu-can-quan-tam-ngay-134-post388652.html", "entities": ["Gelex (GEX)", "Masan High-Tech Materials (MSR)", "Agriseco (AGR)"], "impacted_assets": ["Equities", "Gold"], "volatility_implication": "Neutral", "llm_tone_score": 2}} +{"id": "0737dd43-bfb6-540d-91d9-e313b720342f", "text": "Vietnamese authorities prosecute Bankland group for fraudulently obtaining over 500 billion VND from over 5,300 victims. A group of individuals, led by Vũ Đức Tĩnh, has been accused of fraudulently obtaining over 500 billion VND (approximately $22 million) from over 5,300 victims through a Ponzi scheme. The group established three companies, Bankland, Cawiho, and GBF, which were used to solicit investments with high interest rates. The authorities have concluded that the group's actions resulted in the loss of over 572 billion VND (approximately $25 million) for the victims. This event is likely to decrease market volatility as it highlights the risks associated with unregulated investment schemes.\n\nNote: The tone score is bearish due to the negative impact on investor confidence and the potential for increased regulatory scrutiny, which may lead to a decrease in gold prices.", "metadata": {"topic": "macro_central_banks", "title": "Vietnamese authorities prosecute Bankland group for fraudulently obtaining over 500 billion VND from over 5,300 victims", "original_title": "Truy tố nhóm điều hành Bankland lừa gần 500 tỷ đồng của hơn 5 . 300 bị hại", "publish_date": "2026-04-12T14:39:07Z", "publish_timestamp": 1776004747, "source": "baomoi.com", "url": "https://baomoi.com/truy-to-nhom-dieu-hanh-bankland-lua-gan-500-ty-dong-cua-hon-5-300-bi-hai-c54920488.epi", "entities": ["Vũ Đức Tĩnh", "Nguyễn Thị Thanh Vân", "Bankland", "Cawiho", "GBF"], "impacted_assets": ["Equities", "Gold", "USD"], "volatility_implication": "Decrease", "llm_tone_score": -3}} +{"id": "547523a8-5e6f-5c4d-bad3-80a885a39bc0", "text": "The Conference Board Employment Trends Index Declined in March. The Conference Board's Employment Trends Index (ETI) declined in March, indicating a potential slowdown in job growth. This is reflected in the increase in consumers reporting \"jobs are hard to get\" and the rise in involuntary part-time workers. The decline was driven by negative contributions from five ETI components, including industrial production and real manufacturing and trade sales. This news may lead to increased market caution, potentially impacting equities and gold prices, while having a neutral impact on USD volatility.\n\nNote: As the tone score is -2, it suggests a bearish sentiment for Gold/Silver prices, but not extremely bearish.", "metadata": {"topic": "macro_central_banks", "title": "The Conference Board Employment Trends Index Declined in March", "original_title": "The Conference Board Employment Trends Index™ ( ETI ) Declined in March", "publish_date": "2026-04-12T14:39:07Z", "publish_timestamp": 1776004747, "source": "prnewswire.com", "url": "https://www.prnewswire.com/news-releases/the-conference-board-employment-trends-index-eti-declined-in-march-302734697.html", "entities": ["Mitchell Barnes", "Economist at The Conference Board", "U.S. Department of Labor", "National Federation of Independent Business Research Foundation", "Federal Reserve Board", "Bureau of Economic Analysis", "Bureau of Labor Statistics"], "impacted_assets": ["Equities", "Gold", "USD"], "volatility_implication": "Neutral", "llm_tone_score": -2}} +{"id": "643e42a6-e60b-5fda-9163-37016c4bdf71", "text": "Central Banks Flee to Gold for First Time in 30 Years. Central banks have shifted their reserves from dollars to gold for the first time in 30 years, with gold now making up 24% of global reserve holdings. This trend is driven by concerns over US dollar dominance and the potential for sanctions on foreign assets. The World Gold Council reports that central banks purchased a record 863 tons of gold in 2025, with Poland's central bank leading the way. This surge in demand has pushed gold prices up around 70% year-over-year, making it an attractive alternative to US dollars.\n\nThe macro transmission mechanism is as follows: Central banks' shift away from US dollars and towards gold reflects concerns over the stability of the global financial system. As a result, investors are seeking safe-haven assets like gold, driving up prices and increasing market volatility. This trend has implications for the value of the US dollar, which could weaken further if central banks continue to diversify their reserves away from USD-denominated assets.", "metadata": {"topic": "macro_central_banks", "title": "Central Banks Flee to Gold for First Time in 30 Years", "original_title": "30 yıldır ilk kez yaşanıyor : Merkez bankaları dolardan kaçıp altına sığındı", "publish_date": "2026-04-12T14:39:07Z", "publish_timestamp": 1776004747, "source": "sozcu.com.tr", "url": "https://www.sozcu.com.tr/30-yildir-ilk-kez-yasaniyor-merkez-bankalari-dolardan-kacip-altina-sigindi-p309549", "entities": ["World Gold Council", "central banks", "Russia", "Ukraine", "US Treasury"], "impacted_assets": ["Gold", "USD", "Equities"], "volatility_implication": "Increase", "llm_tone_score": 3}} +{"id": "b835eb59-ccdf-5a76-97c9-5128f6fb3b33", "text": "Will Low Interest Rates Trigger a Stock Market Boom?. The article discusses the potential impact of low interest rates and market expectations on Vietnam's stock market. Analysts from various firms expect the VN-Index to continue its upward trend, potentially reaching 1,800 points in the near future. However, they also caution that the market may experience short-term corrections due to geopolitical risks and uncertainty. The article highlights the potential benefits for sectors such as construction, real estate, and consumer goods, which are expected to benefit from government investment plans and a recovering economy.\n\nThe macro transmission mechanism is driven by the combination of low interest rates, improving market sentiment, and government stimulus packages, which are expected to boost economic growth and investor confidence. The article does not explicitly mention any specific drivers that would significantly impact gold or silver prices; therefore, I have assigned a neutral tone score.", "metadata": {"topic": "macro_central_banks", "title": "Will Low Interest Rates Trigger a Stock Market Boom?", "original_title": "Tiền rẻ có quay lại , chứng khoán sáng cửa bứt phá ? ", "publish_date": "2026-04-12T14:39:07Z", "publish_timestamp": 1776004747, "source": "tinnhanhchungkhoan.vn", "url": "https://www.tinnhanhchungkhoan.vn/tien-re-co-quay-lai-chung-khoan-sang-cua-but-pha-post388709.html", "entities": ["Vietinbank", "Yuanta Việt Nam", "OCBS", "CTS"], "impacted_assets": ["Equities", "Gold", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 2}} diff --git a/Data/3_Gold_Semantic/News_Qdrant/2026-04-12/qdrant_macro_geopolitics_risk_processed.jsonl b/Data/3_Gold_Semantic/News_Qdrant/2026-04-12/qdrant_macro_geopolitics_risk_processed.jsonl new file mode 100644 index 0000000..67b31e7 --- /dev/null +++ b/Data/3_Gold_Semantic/News_Qdrant/2026-04-12/qdrant_macro_geopolitics_risk_processed.jsonl @@ -0,0 +1,5 @@ +{"id": "35805df8-e8b6-5883-8b68-1f2c12f439f0", "text": "Russia and Ukraine Trade Blame over Orthodox Easter Ceasefire Violations. The ongoing conflict between Russia and Ukraine has led to a breakdown in the Orthodox Easter ceasefire. Both sides have accused each other of violating the truce, with reports of shelling, drone strikes, and small arms fire. This escalation in violence is likely to increase market fear and volatility, potentially driving up gold prices as investors seek safe-haven assets. The USD may also strengthen as risk aversion increases.", "metadata": {"topic": "macro_geopolitics_risk", "title": "Russia and Ukraine Trade Blame over Orthodox Easter Ceasefire Violations", "original_title": "Russia and Ukraine trade blame for violating Orthodox Easter ceasefire", "publish_date": "2026-04-12T14:41:52Z", "publish_timestamp": 1776004912, "source": "readingchronicle.co.uk", "url": "https://www.readingchronicle.co.uk/news/national/26014084.russia-ukraine-trade-blame-violating-orthodox-easter-ceasefire/", "entities": ["Vladimir Putin", "Volodymyr Zelensky", "Russian President", "Ukrainian President"], "impacted_assets": ["Gold", "USD"], "volatility_implication": "Increase", "llm_tone_score": -2}} +{"id": "a43dd760-9cb8-5a0b-ab18-18f9b88e6177", "text": "UK Prime Minister Urges US and Iran to Find a Way Through After Peace Talks Fail. The UK Prime Minister has called for the US and Iran to find a way through after peace talks failed. The situation remains fragile, with the Strait of Hormuz still blocked by Iran, leading to soaring energy prices. The UK will host further talks next week to explore ways to support a sustainable end to the conflict and increase international diplomatic pressure on Iran.", "metadata": {"topic": "macro_geopolitics_risk", "title": "UK Prime Minister Urges US and Iran to Find a Way Through After Peace Talks Fail", "original_title": "Starmer urges US and Iran to find a way through after peace talks fail", "publish_date": "2026-04-12T14:41:52Z", "publish_timestamp": 1776004912, "source": "bordertelegraph.com", "url": "https://www.bordertelegraph.com/news/national/26014105.starmer-urges-us-iran-to-find-way-through-peace-talks-fail/", "entities": ["Sir Keir Starmer", "Donald Trump", "His Majesty Sultan Haitham bin Tarik al Said"], "impacted_assets": ["Equities", "Gold", "Oil", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "5c326183-8136-5fca-b1ff-aef2bd329af5", "text": "China to Reestablish Some Ties with Taiwan after Opposition Leader Visit. The reestablishment of some ties between China and Taiwan is a neutral event for the gold/silver market. This development does not have a direct macro transmission mechanism to affect gold or silver prices, as it is primarily a diplomatic move without significant implications for global economic growth or inflation.", "metadata": {"topic": "macro_geopolitics_risk", "title": "China to Reestablish Some Ties with Taiwan after Opposition Leader Visit", "original_title": "China to reinstate some Taiwan ties after opposition leader visit", "publish_date": "2026-04-12T14:41:52Z", "publish_timestamp": 1776004912, "source": "article.wn.com", "url": "https://article.wn.com/view/2026/04/12/China_to_reinstate_some_Taiwan_ties_after_opposition_leaders/", "entities": ["China", "Taiwan", "Beijing-friendly opposition leader"], "impacted_assets": [], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "5232d8b1-7f86-5f8d-9305-bcb5c0cd47ea", "text": "Russia-Ukraine Conflict: Ceasefire Breaches and Prisoner Exchange. The Russia-Ukraine conflict has seen a ceasefire breach, with both sides accusing each other of violating the agreement. Despite this, hundreds of prisoners were exchanged, and the situation remains tense at the front lines. The macro transmission mechanism is neutral, as there are no clear directional drivers for gold or silver prices.", "metadata": {"topic": "macro_geopolitics_risk", "title": "Russia-Ukraine Conflict: Ceasefire Breaches and Prisoner Exchange", "original_title": "Ukraine - Krieg : Tausende Verste bei Osterwaffenruhe beklagt", "publish_date": "2026-04-12T14:41:52Z", "publish_timestamp": 1776004912, "source": "muensterschezeitung.de", "url": "https://www.muensterschezeitung.de/nachrichten/schlagzeilen/ukraine-krieg-tausende-verstoesse-bei-osterwaffenruhe-beklagt-3530354", "entities": ["Vladimir Putin", "Volodymyr Zelensky", "Dmitri Peskow"], "impacted_assets": ["Equities", "Gold", "Oil", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "e06b791b-28a4-5e4d-b465-e69cb4f9a816", "text": "Trump Announces Blockade of Strait of Hormuz for Those Paying Iran. US President Donald Trump has announced a blockade of the Strait of Hormuz for any vessel paying Iran to pass through. This move is likely to increase tensions in the region and boost gold prices as investors seek safe-haven assets. The strengthening of Russia's support for Iran may also lead to increased volatility in oil markets, while a weakening USD could further fuel inflation concerns.\n\nThe macro transmission mechanism at play here is the potential escalation of geopolitical tensions, which can drive up demand for safe-haven assets like gold and increase market fear, leading to higher VIX levels. The blockade announcement also has implications for global trade and commerce, particularly in the oil sector, as Iran is a significant player in global energy markets.", "metadata": {"topic": "macro_geopolitics_risk", "title": "Trump Announces Blockade of Strait of Hormuz for Those Paying Iran", "original_title": "Trump anuncia un bloqueo del Estrecho de Ormuz para todos aquellos que paguen a Irán", "publish_date": "2026-04-12T14:41:52Z", "publish_timestamp": 1776004912, "source": "diariocritico.com", "url": "https://www.diariocritico.com/internacional/trump-anuncia-bloqueo-estrecho-ormuz-paguen-a-iran", "entities": ["Donald Trump", "Irán", "Vladimir Putin", "Masud Pezeshkian"], "impacted_assets": ["Gold", "Oil", "USD"], "volatility_implication": "Increase", "llm_tone_score": 3}} diff --git a/Data/3_Gold_Semantic/News_Qdrant/2026-04-12/qdrant_macro_inflation_employment_processed.jsonl b/Data/3_Gold_Semantic/News_Qdrant/2026-04-12/qdrant_macro_inflation_employment_processed.jsonl new file mode 100644 index 0000000..acacf31 --- /dev/null +++ b/Data/3_Gold_Semantic/News_Qdrant/2026-04-12/qdrant_macro_inflation_employment_processed.jsonl @@ -0,0 +1,7 @@ +{"id": "49fb7d82-f0b7-5b32-9ea2-2e3a320a1259", "text": "Norwegian Labor Union and Industry Reach Agreement on Wage Increase. The Norwegian Labor Union and Industry have reached an agreement on a wage increase, with a 6.50 kr general addendum and additional 4 kr for the lowest-paid workers. This development is neutral for gold/silver prices, as it does not significantly impact macroeconomic drivers or global market sentiment.\n\nNote: As there are no explicit mentions of monetary policy, inflation, or currency movements in this article, the tone score is neutral. The agreement on wage increase may have some indirect effects on consumer spending and economic growth, but these are not directly relevant to gold/silver prices.", "metadata": {"topic": "macro_inflation_employment", "title": "Norwegian Labor Union and Industry Reach Agreement on Wage Increase", "original_title": "Lønnsforhandlinger , Arbeidsliv | Enighet med Fellesforbundet i frontfagsoppgjøret – Parat fortsatt i mekling", "publish_date": "2026-04-12T14:40:26Z", "publish_timestamp": 1776004826, "source": "ringblad.no", "url": "https://www.ringblad.no/enighet-med-fellesforbundet-i-frontfagsoppgjoret-parat-fortsatt-i-mekling/s/5-45-2209025", "entities": ["Fellesforbundet", "Parat", "Norsk Industri", "Riksmekleren"], "impacted_assets": ["Equities", "Gold", "Oil", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "092a0a3c-8587-5774-8e43-edfd28e1794f", "text": "The US-Iran Talks Fail, Trump Considers Naval Blockade as Next Move. The US-Iran talks have failed to achieve any progress, and the US is considering a naval blockade as its next move. This development could lead to increased market volatility, particularly in oil prices, and potentially weigh on gold prices. The threat of resumed combat operations and the potential for supply chain disruptions could also contribute to higher inflation expectations, further supporting gold's safe-haven appeal.\n\nThe tone score is bearish due to the escalating tensions between the US and Iran, which could lead to increased market volatility and a decline in risk assets like equities and oil. The consideration of a naval blockade as a next move adds to the negative sentiment, suggesting that the situation may worsen before it improves.", "metadata": {"topic": "macro_inflation_employment", "title": "The US-Iran Talks Fail, Trump Considers Naval Blockade as Next Move", "original_title": "War On Iran : – Loser Tries Setting Terms – The Strange Idea Of Blockading Blockaders – Moon of Alabama", "publish_date": "2026-04-12T14:40:26Z", "publish_timestamp": 1776004826, "source": "moonofalabama.org", "url": "https://www.moonofalabama.org/2026/04/war-on-iran-loser-tries-setting-terms-the-strange-idea-of-blockading-blockaders.html/comment-page-2", "entities": ["Donald Trump", "Iran", "United States", "Jack Keane", "John Solomon"], "impacted_assets": ["Gold", "Oil", "USD"], "volatility_implication": "Increase", "llm_tone_score": -2}} +{"id": "a2c8f543-5fe4-5445-8230-3dc242f4ed3e", "text": "Zimbabwe Banks Hedge Against Global Shocks Amid Cautious Optimism. Zimbabwe's banking sector is cautiously optimistic about 2026 growth prospects, driven by stable macroeconomic indicators and improving economic fundamentals. However, banks are also hedging against global shocks and currency pressures. The sector's focus on stability in inflation, interest rates, and exchange rates is seen as critical for sustaining momentum after years of volatility.\n\nNote: The tone score is +1 because while the article mentions some risks and challenges, the overall sentiment is cautiously optimistic, which is slightly bullish for gold and silver prices.", "metadata": {"topic": "macro_inflation_employment", "title": "Zimbabwe Banks Hedge Against Global Shocks Amid Cautious Optimism", "original_title": "Zimbabwe lenders hedge against global shocks", "publish_date": "2026-04-12T14:40:26Z", "publish_timestamp": 1776004826, "source": "thestandard.co.zw", "url": "https://www.thestandard.co.zw/business/article/200053827/zimbabwes-lenders-hedge-against-global-shocks", "entities": ["Luxon Zembe", "CBZ Holdings Limited", "Tawanda Nyambirai", "TN CyberTech Bank", "Agnes Makamure", "ZB Financial Holdings Limited", "Herbert Nkala", "FBC Holdings Limited", "Pearson Gowero", "NMB Bank", "Patrick Devenish", "First Capital Bank Zimbabwe"], "impacted_assets": ["Equities", "Gold", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 1}} +{"id": "303c24bf-d4c3-5210-8ae2-a898e7d805dc", "text": "Immigration Crackdown Reaches Beyond Workplaces in Rural Missouri. The article highlights an immigration crackdown in rural Missouri, where ICE agents arrested three individuals, including two from Senegal and one from Guatemala. This expansion of enforcement beyond workplaces may increase uncertainty and potentially weigh on the USD, leading to a short-term boost for gold prices.", "metadata": {"topic": "macro_inflation_employment", "title": "Immigration Crackdown Reaches Beyond Workplaces in Rural Missouri", "original_title": "In rural Missouri , immigration crackdown reaches beyond the workplace", "publish_date": "2026-04-12T14:40:26Z", "publish_timestamp": 1776004826, "source": "newstribune.com", "url": "http://www.newstribune.com/news/2026/apr/12/in-rural-missouri-immigration-crackdown-reaches-beyond-the-workplace/", "entities": ["Eliseo Affholter", "U.S. Immigration and Customs Enforcement (ICE)", "President Donald Trump", "Axel Fuentes", "Kevin R. Johnson"], "impacted_assets": ["USD", "Equities", "Gold"], "volatility_implication": "Neutral", "llm_tone_score": -2}} +{"id": "c0875d6d-6d02-51c9-b031-b6bc716e756e", "text": "Chinese Tourism | Spring in China Beckons Foreign Visitors!. The article highlights the increasing popularity of Chinese tourism among foreign visitors, particularly during the spring season. With China's visa-free policy and social media platforms, overseas tourists are flocking to experience the country's vibrant culture and natural beauty. This trend is expected to drive growth in the tourism industry, with data showing a 21% increase in international arrivals in March. The article also touches on the cultural exchange between China and foreign visitors, highlighting the mutual understanding and appreciation that can be gained through travel.\n\nNote: As there are no direct macro-financial implications from this article, I have assigned a neutral tone score of 0.", "metadata": {"topic": "macro_inflation_employment", "title": "Chinese Tourism | Spring in China Beckons Foreign Visitors!", "original_title": "中国游记 | 春色不负万里客 ! 老外爱上 春日中国行 - 水母网", "publish_date": "2026-04-12T14:40:26Z", "publish_timestamp": 1776004826, "source": "news.shm.com.cn", "url": "https://news.shm.com.cn/2026-04/12/content_5482767.htm", "entities": ["China", "Overseas Tourists", "Shanghai", "Guizhou", "Jiangxi", "Xinjiang", "Kashgar", "Ili"], "impacted_assets": ["Equities", "Gold", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "0784abc8-2142-5e70-bb98-aa8a3a3ebeab", "text": "Who are the Toesca protagonists: The key players in Sanhattan's moment. Toesca S.A. Administradora de Fondos de Inversión, a specialized alternative assets manager, has been making headlines with its recent acquisitions and partnerships. The company's founders, Alejandro Reyes and Carlos Saieh, have a background in the financial industry, having worked at BTG Pactual and Celfin before starting Toesca. With over $2.5 billion in investments and managing around $1.5 billion in 25 funds, Toesca is gaining prominence in the market. The company's growth and expansion plans may have implications for the broader financial markets, particularly in the equities and gold sectors.\n\nNote: As there are no explicit macro-financial or geopolitical drivers mentioned in the article, I assigned a tone score of 0 (Neutral).", "metadata": {"topic": "macro_inflation_employment", "title": "Who are the Toesca protagonists: The key players in Sanhattan's moment", "original_title": "Quiénes son los Toesca : Los protagonistas del momento en Sanhattan", "publish_date": "2026-04-12T14:40:26Z", "publish_timestamp": 1776004826, "source": "latercera.com", "url": "https://www.latercera.com/pulso/noticia/quienes-son-los-toesca-los-protagonistas-del-momento-en-sanhattan/", "entities": ["Alejandro Reyes", "Carlos Saieh", "BTG Pactual", "Celfin", "Aetna", "ING", "Moneda Asset Management", "Frontal Trust", "TC Latin America Partners", "Primus Capital", "Ameris Capital"], "impacted_assets": ["Equities", "Gold", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "7f51aba0-52c7-515e-9478-a57755aefbd3", "text": "Haiti's Food and Fuel Crisis Deepens Amid Rising Oil Prices. The article highlights the devastating impact of rising oil prices on Haiti's already fragile economy. As fuel costs surge, food prices are expected to increase, exacerbating hunger and poverty in a country where nearly 40% of the population survives on less than $2.15 per day. This macro transmission mechanism is bearish for Gold/Silver prices, as it increases market fear/VIX, which may lead to increased demand for safe-haven assets like precious metals.", "metadata": {"topic": "macro_inflation_employment", "title": "Haiti's Food and Fuel Crisis Deepens Amid Rising Oil Prices", "original_title": "Haitians cut back on already scarce food and ask how theyll survive rising fuel prices – Sun Sentinel", "publish_date": "2026-04-12T14:40:26Z", "publish_timestamp": 1776004826, "source": "sun-sentinel.com", "url": "https://www.sun-sentinel.com/2026/04/12/haitians-cut-back-on-already-scarce-food-and-ask-how-theyll-survive-rising-fuel-prices/", "entities": ["Alexandre Joseph", "Erwan Rumen", "Emmline Toussaint", "Fedline Jean-Pierre", "Maxime Poulard"], "impacted_assets": ["Gold", "Silver", "USD"], "volatility_implication": "Increase", "llm_tone_score": -3}} diff --git a/Data/3_Gold_Semantic/News_Qdrant/2026-04-14/qdrant_asset_precious_metals_spot_processed.jsonl b/Data/3_Gold_Semantic/News_Qdrant/2026-04-14/qdrant_asset_precious_metals_spot_processed.jsonl new file mode 100644 index 0000000..b9828e0 --- /dev/null +++ b/Data/3_Gold_Semantic/News_Qdrant/2026-04-14/qdrant_asset_precious_metals_spot_processed.jsonl @@ -0,0 +1,6 @@ +{"id": "ad97a3a6-1567-57bd-855b-a68a12c65490", "text": "Silver Prices Surge in Vietnam and Globally Amid Geopolitical Developments. The article reports a surge in silver prices in Vietnam and globally, driven by geopolitical developments. The US and Iran are reportedly close to reaching a long-term ceasefire agreement, which has boosted market sentiment and led to increased demand for safe-haven assets like gold and silver. This development is expected to have a positive impact on the price of these precious metals.\n\nThe macro transmission mechanism at play here is the increase in risk appetite among investors, driven by the potential resolution of geopolitical tensions. As investors become more optimistic about the future, they are likely to seek out higher-risk assets like gold and silver, driving up their prices.", "metadata": {"topic": "asset_precious_metals_spot", "title": "Silver Prices Surge in Vietnam and Globally Amid Geopolitical Developments", "original_title": "Ngày 15 / 4 : Giá bạc trong nước và thế giới bật tăng mạnh", "publish_date": "2026-04-15T03:32:11Z", "publish_timestamp": 1776223931, "source": "thoibaotaichinhvietnam.vn", "url": "https://thoibaotaichinhvietnam.vn/ngay-154-gia-bac-trong-nuoc-va-the-gioi-bat-tang-manh-195669.html", "entities": ["Phú Quý", "Vàng bạc Đá quý Phú Quý", "Iran", "United States"], "impacted_assets": ["Gold", "Silver", "USD"], "volatility_implication": "Increase", "llm_tone_score": 3}} +{"id": "41747a6d-7e5d-5f42-b738-76980675bd44", "text": "Gold Price on April 15: Prices at Jewelry Companies. The gold price rose around 2% to $4,831.78 per ounce due to a weakening US dollar and expectations of renewed US-Iran negotiations. Analysts at Commerzbank believe that as long as the Fed doesn't signal rate hikes, gold prices will be difficult to drop significantly. Meanwhile, Vietnamese jewelry companies such as SJC listed their gold prices in Hanoi at 173-175.5 million VND per tael (buying and selling).\n\nThe macro transmission mechanism is that a weakening US dollar and expectations of renewed US-Iran negotiations are driving up the gold price, which is likely to continue as long as there is no indication of rate hikes from the Fed. This has a bullish tone for gold prices.", "metadata": {"topic": "asset_precious_metals_spot", "title": "Gold Price on April 15: Prices at Jewelry Companies", "original_title": "Giá vàng ngày 15 / 4 : Bảng giá tại các công ty vàng bạc đá quý", "publish_date": "2026-04-15T03:32:11Z", "publish_timestamp": 1776223931, "source": "baomoi.com", "url": "https://baomoi.com/gia-vang-ngay-15-4-bang-gia-tai-cac-cong-ty-vang-bac-da-quy-c54939126.epi", "entities": ["Bob Haberkorn", "RJO Futures", "Commerzbank", "Federal Reserve (Fed)", "SJC (Vàng bạc đá quý Sài Gòn)"], "impacted_assets": ["Gold", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 2}} +{"id": "f0a80642-d4ab-5fcb-bacc-737ac97be417", "text": "Alacant's Budget and Housing Crisis. The approved budget for 2026 in Alacant is the highest in history, but it reflects a concerning reality: investment in neighborhoods has hit historic lows. The inefficient execution of the budget by the government leads to a lack of municipalization, with funds ending up in the treasury instead of being used for public services. This crisis affects not only housing but also tourism, as thousands of apartments are dedicated to short-term rentals. To address this issue, a drastic measure is proposed: no new licenses or renewals for tourist apartments by 2028.\n\nThe macro transmission mechanism at play here is the impact on the local economy and the housing market. The lack of investment in neighborhoods and the inefficient use of funds can lead to a decrease in economic activity and a rise in unemployment, which can negatively affect gold and silver prices. Additionally, the crisis in the tourism sector can also have a negative impact on the overall economy and asset prices.", "metadata": {"topic": "asset_precious_metals_spot", "title": "Alacant's Budget and Housing Crisis", "original_title": " Pisos turístics ? Les cases , per als veïns i els turistes , als hotels ", "publish_date": "2026-04-15T03:32:11Z", "publish_timestamp": 1776223931, "source": "elpuntavui.cat", "url": "http://www.elpuntavui.cat/politica/article/17-politica/2635259-pisos-turistics-les-cases-per-als-veins-i-els-turistes-als-hotels.html", "entities": ["PP", "Vox", "Alacant", "Spain"], "impacted_assets": ["Equities", "Gold", "USD"], "volatility_implication": "Decrease", "llm_tone_score": -2}} +{"id": "c4a6111c-1818-50a6-8d0d-c2687106f4a7", "text": "Wanda Commercial Properties Wins Arbitration Case Against Dalian Yunding, Wang Jianlin et al. to Pay 38.57 Billion Yuan in Damages. Wanda Commercial Properties won an arbitration case against Dalian Yunding and its related parties, including Wang Jianlin, for failing to pay damages totaling 38.57 billion yuan. This outcome may help Wanda Commercial Properties recover some of its losses, but the impact on gold/silver prices is limited. The company's financial performance has been under pressure due to declining revenue and increasing losses.", "metadata": {"topic": "asset_precious_metals_spot", "title": "Wanda Commercial Properties Wins Arbitration Case Against Dalian Yunding, Wang Jianlin et al. to Pay 38.57 Billion Yuan in Damages", "original_title": "永辉超市38亿追款获胜 , 王健林等承担连带保证责任", "publish_date": "2026-04-15T03:32:11Z", "publish_timestamp": 1776223931, "source": "stcn.com", "url": "https://www.stcn.com/article/detail/3750646.html", "entities": ["Wanda Commercial Properties", "Dalian Yunding", "Wang Jianlin", "Sun Xishuang", "One-way Group"], "impacted_assets": ["Equities", "Gold (indirectly)"], "volatility_implication": "Neutral", "llm_tone_score": 2}} +{"id": "ff95ca9a-5004-595b-98b0-5618198073e8", "text": "China's Pilot Free Trade Zone (FTZ) in Hainan Seeks to Boost Aviation Industry and Economic Growth. The article highlights the development of Hainan's Pilot Free Trade Zone (FTZ) and its efforts to boost the aviation industry and economic growth. The FTZ aims to create a high-efficiency logistics loop by building a 1-kilometer-long underground tunnel connecting the airport with the industrial park, allowing for streamlined customs clearance, warehousing, processing, and departure procedures. This initiative is expected to drive the development of aircraft maintenance, aviation logistics, low-altitude economy, and other related industries, ultimately contributing to China's economic growth.\n\nThe article also mentions the benefits of Hainan's FTZ, including tax exemptions on imported equipment, the seventh air rights, and visa-free policies for 86 countries. These advantages have attracted foreign companies, such as Boeing and Airbus, to set up operations in the region. The development of the aviation industry is expected to drive economic growth and create new job opportunities.\n\nThe tone score is +2 because while the article highlights the potential benefits of Hainan's FTZ, it does not explicitly mention any macroeconomic drivers that would significantly impact gold or silver prices. However, the initiative could potentially contribute to China's economic growth, which could have a positive impact on these assets.", "metadata": {"topic": "asset_precious_metals_spot", "title": "China's Pilot Free Trade Zone (FTZ) in Hainan Seeks to Boost Aviation Industry and Economic Growth", "original_title": "开局之年看中国 · 开放自贸港 : 从 机场流量 迈向 经济增量 - 千龙网 · 中国首都网", "publish_date": "2026-04-15T03:32:11Z", "publish_timestamp": 1776223931, "source": "china.qianlong.com", "url": "https://china.qianlong.com/2026/0415/8654785.shtml", "entities": ["Zhang Hao Peng", "Wang Hai Yue", "Hainan FTZ", "Hainan Provincial Government", "Civil Aviation Administration of China (CAAC)", "Boeing", "Airbus"], "impacted_assets": ["Equities", "Gold", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 2}} +{"id": "ae9c2d8f-a65f-5e69-82af-dfa12478e3a8", "text": "Vietnam Develops Human Resources for the Semiconductor Industry to Prepare for the Future. Vietnam is accelerating the development of high-quality human resources for the semiconductor industry to capitalize on opportunities and enhance its competitiveness. The government has set a target to train 50,000 engineers by 2030, with 15,000 specializing in chip design, 35,000 in production, packaging, and testing, and 5,000 AI experts. This initiative aims to bridge the gap between supply and demand for skilled labor, supporting the growth of the industry.\n\nThe macro transmission mechanism is that a well-trained workforce will attract more foreign investment, drive economic growth, and increase Vietnam's competitiveness in the global semiconductor market. This could positively impact gold prices if investors become more optimistic about Vietnam's economic prospects.", "metadata": {"topic": "asset_precious_metals_spot", "title": "Vietnam Develops Human Resources for the Semiconductor Industry to Prepare for the Future", "original_title": "Phát triển nguồn nhân lực công nghiệp bán dẫn , sẵn sàng cho tương lai", "publish_date": "2026-04-15T03:32:11Z", "publish_timestamp": 1776223931, "source": "thanhtra.com.vn", "url": "https://thanhtra.com.vn/doanh-nghiep-70CE54C31/phat-trien-nguon-nhan-luc-cong-nghiep-ban-dan-san-sang-cho-tuong-lai-7632e8f4b.html", "entities": ["Vietnamese government", "Intel", "Samsung", "Amkor", "Hana Micron", "Viettel", "FPT", "VNChip", "Marvell", "Synopsys", "Cadence"], "impacted_assets": ["Equities", "Gold", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 2}} diff --git a/Data/3_Gold_Semantic/News_Qdrant/2026-04-14/qdrant_macro_central_banks_processed.jsonl b/Data/3_Gold_Semantic/News_Qdrant/2026-04-14/qdrant_macro_central_banks_processed.jsonl new file mode 100644 index 0000000..259b342 --- /dev/null +++ b/Data/3_Gold_Semantic/News_Qdrant/2026-04-14/qdrant_macro_central_banks_processed.jsonl @@ -0,0 +1,6 @@ +{"id": "41747a6d-7e5d-5f42-b738-76980675bd44", "text": "Gold Price on April 15: Prices at Jewelry Companies. The gold price rose around 2% to $4,831.78 per ounce due to a weakening US dollar and expectations of renewed US-Iran negotiations. Analysts at Commerzbank believe that as long as the Federal Reserve (Fed) does not signal rate hikes, gold prices will be difficult to fall significantly. Meanwhile, Vietnamese jewelry companies such as SJC listed their gold prices in Hanoi at 173-175.5 million VND per tael (buying and selling). The macro transmission mechanism is a weakening US dollar and expectations of renewed negotiations, which are bullish for gold prices.\n\nNote: The tone score is +2 because the article mentions a strengthening USD, which is bearish for gold prices, but also notes that Fed rate hikes are not expected, which is neutral.", "metadata": {"topic": "macro_central_banks", "title": "Gold Price on April 15: Prices at Jewelry Companies", "original_title": "Giá vàng ngày 15 / 4 : Bảng giá tại các công ty vàng bạc đá quý", "publish_date": "2026-04-15T03:28:27Z", "publish_timestamp": 1776223707, "source": "baomoi.com", "url": "https://baomoi.com/gia-vang-ngay-15-4-bang-gia-tai-cac-cong-ty-vang-bac-da-quy-c54939126.epi", "entities": ["Bob Haberkorn", "RJO Futures", "Commerzbank", "Federal Reserve (Fed)", "SJC (Vàng bạc đá quý Sài Gòn)"], "impacted_assets": ["Gold", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 2}} +{"id": "1b3c6216-eb7b-55cc-ab8d-8bc810335094", "text": "Producer Prices Rise Sharply Due to Energy Surge Linked to Iran War. Rising energy costs linked to the Iran war pushed US wholesale prices higher in March, adding to inflation concerns and complicating the Federal Reserve's policy outlook. The producer price index rose 0.5% from February and 4% year-on-year, driven by an 8.5% surge in energy prices. This adds pressure on the Fed to consider rate hikes or maintain a neutral stance, which may support gold and silver prices while increasing market fear/VIX.", "metadata": {"topic": "macro_central_banks", "title": "Producer Prices Rise Sharply Due to Energy Surge Linked to Iran War", "original_title": "Producer prices rise sharply on energy surge from Iran war", "publish_date": "2026-04-15T03:28:27Z", "publish_timestamp": 1776223707, "source": "europesun.com", "url": "http://www.europesun.com/news/278983984/producer-prices-rise-sharply-on-energy-surge-from-iran-war", "entities": ["Federal Reserve", "President Donald Trump", "International Energy Agency"], "impacted_assets": ["Gold", "Silver", "USD", "Oil"], "volatility_implication": "Increase", "llm_tone_score": 2}} +{"id": "fbb8885f-e47c-5c14-a49c-3a0f538c02d6", "text": "Mexican Bank's Economic Forecasts Criticized by Banamex. Banamex, a Mexican bank, has criticized the economic forecasts of the Bank of Mexico (Banxico) and the Ministry of Finance and Public Credit (SHCP), stating that their predictions are \"erratic\" and lack credibility. The criticism centers around Banxico's inability to effectively implement monetary policy, which may lead to reduced market confidence in the Mexican economy. This could have a negative impact on gold prices and the US dollar.\n\nThe macro transmission mechanism is as follows: Banamex's skepticism towards Banxico's economic forecasts may lead to increased uncertainty and decreased market confidence in Mexico's economic prospects. This could result in a decrease in gold prices, as investors seek safer assets, and a weakening of the US dollar, as the Mexican economy becomes less attractive to foreign investors.", "metadata": {"topic": "macro_central_banks", "title": "Mexican Bank's Economic Forecasts Criticized by Banamex", "original_title": "Banamex tacha de erráticos los pronósticos de Banxico y la SHCP sobre crecimiento e inflación", "publish_date": "2026-04-15T03:28:27Z", "publish_timestamp": 1776223707, "source": "zetatijuana.com", "url": "https://zetatijuana.com/2026/04/banamex-tacha-de-erraticos-los-pronosticos-de-banxico-y-la-shcp-sobre-crecimiento-e-inflacion/", "entities": ["Sergio Kurczyn", "Iván Arias", "Banco de México (Banxico)", "Secretaría de Hacienda y Crédito Público (SHCP)"], "impacted_assets": ["Gold", "USD"], "volatility_implication": "Decrease", "llm_tone_score": -2}} +{"id": "c134a64b-5f23-5e31-9200-811cf9b6ba6d", "text": "Gold Prices Surge in Vietnam as Global Rates Rise. Vietnamese gold prices surged today, tracking global rates, as the US dollar weakened amid rising expectations of a potential Iran-US deal. The market is cautious about the Federal Reserve's monetary policy stance, with some data indicating low inflation, but still expects interest rates to remain high in the long term.\n\nThe article highlights the strong correlation between Vietnamese gold prices and global rates, with the latter driving the former. The weakening US dollar also contributed to the increase in gold prices. While the market is uncertain about the Fed's next move, the overall tone remains bullish for gold prices.", "metadata": {"topic": "macro_central_banks", "title": "Gold Prices Surge in Vietnam as Global Rates Rise", "original_title": "Giá vàng hôm nay 15 / 4 đồng loạt tăng mạnh", "publish_date": "2026-04-15T03:28:27Z", "publish_timestamp": 1776223707, "source": "baotintuc.vn", "url": "https://baotintuc.vn/kinh-te/gia-vang-sang-154-dong-loat-tang-manh-20260415082802323.htm", "entities": ["SJC", "Bảo Tín Minh Châu", "DOJI", "Vietcombank", "Fed"], "impacted_assets": ["Gold", "USD"], "volatility_implication": "Increase", "llm_tone_score": 2}} +{"id": "846233f2-d115-5c70-b857-0de4c4c97442", "text": "Oil Shock is Here: Are Businesses Prepared?. The escalating Middle East conflict has sent shockwaves through global energy markets, driving oil prices higher and increasing operational costs for businesses. This surge in fuel prices poses significant risks to micro, small, and medium enterprises' (MSMEs) viability, with direct and indirect cost shocks, rising raw material costs, \"stagflation\" squeeze, margin compression, and cash flow tightness being the key concerns. The uncertainty surrounding the supply of raw materials and input prices has resulted in suppliers and manufacturers taking a cautious stance, leading to increased volatility in the market.\n\nNote: The tone score is bearish due to the negative impact on businesses' operating costs and profitability, which may lead to decreased consumer spending and ultimately affect gold and silver prices.", "metadata": {"topic": "macro_central_banks", "title": "Oil Shock is Here: Are Businesses Prepared?", "original_title": "Oil shock is here : Are businesses prepared ? ", "publish_date": "2026-04-15T03:28:27Z", "publish_timestamp": 1776223707, "source": "thestar.com.my", "url": "https://www.thestar.com.my/business/insight/2026/04/15/oil-shock-is-here-are-businessesprepared", "entities": ["Middle East conflict", "oil prices", "MSMEs (Micro", "Small and Medium Enterprises)", "global energy markets"], "impacted_assets": ["Equities", "Gold", "Oil", "USD"], "volatility_implication": "Increase", "llm_tone_score": -2}} +{"id": "aff5f7ce-32f7-5224-b3fe-52ba6bc7b911", "text": "Indonesian Rupiah Strengthens Against US Dollar on April 15th. The Indonesian Rupiah strengthened against the US Dollar on April 15th due to external pressures and market optimism. The Rupiah's appreciation is driven by a combination of factors, including the weakening US Dollar, rising oil prices, and improving market sentiment. This development may have a positive impact on gold and equity markets, while also influencing the direction of monetary policy in Indonesia.\n\nNote: The tone score is +2 because the article mentions external pressures and market optimism, which are generally bullish for gold and silver prices. However, the article also notes that domestic sentiment remains weak, which could temper the Rupiah's appreciation.", "metadata": {"topic": "macro_central_banks", "title": "Indonesian Rupiah Strengthens Against US Dollar on April 15th", "original_title": "Rupiah Hari Ini ( 15 / 4 ) Dibuka Menguat ke Rp17 . 126 per dolar AS", "publish_date": "2026-04-15T03:28:27Z", "publish_timestamp": 1776223707, "source": "market.bisnis.com", "url": "https://market.bisnis.com/read/20260415/93/1966735/rupiah-hari-ini-154-dibuka-menguat-ke-rp17126-per-dolar-as", "entities": ["Bank Indonesia", "Doo Financial Futures", "Lukman Leong"], "impacted_assets": ["Equities", "Gold", "Oil", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 2}} diff --git a/Data/3_Gold_Semantic/News_Qdrant/2026-04-14/qdrant_macro_geopolitics_risk_processed.jsonl b/Data/3_Gold_Semantic/News_Qdrant/2026-04-14/qdrant_macro_geopolitics_risk_processed.jsonl new file mode 100644 index 0000000..c64ffde --- /dev/null +++ b/Data/3_Gold_Semantic/News_Qdrant/2026-04-14/qdrant_macro_geopolitics_risk_processed.jsonl @@ -0,0 +1,6 @@ +{"id": "ab952c09-e756-5f41-9d4a-4b5fb6c2b3b3", "text": "Trump's Feud with Pope Over AI Christ Image Intensifies Amid Controversy. The feud between US President Donald Trump and Pope Leo over an AI-generated image of Christ has escalated, with both sides trading barbs. While this controversy is unlikely to have a direct impact on gold or silver prices, it may contribute to increased market uncertainty and volatility in the short term.", "metadata": {"topic": "macro_geopolitics_risk", "title": "Trump's Feud with Pope Over AI Christ Image Intensifies Amid Controversy", "original_title": "Trump Bible - Thumper Assassination Fears Explode Amid Bust - Up With Pope", "publish_date": "2026-04-15T03:31:19Z", "publish_timestamp": 1776223879, "source": "radaronline.com", "url": "https://radaronline.com/p/trump-assassination-fears-pope-conflict-iran-war/", "entities": ["Donald Trump", "Pope Leo", "JD Vance"], "impacted_assets": [], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "b434614a-e7c2-511c-99a2-3c16cc2fffcd", "text": "More Than Half of Households in Energy Credit at End of Winter – Poll. The survey by comparison site Uswitch found that more than half of UK households have credit in their energy accounts at the end of winter. This could be due to a milder winter and direct debits not changing as quickly as energy rates. While this may seem positive, it's essential for households to keep some credit for higher winter bills ahead. The predicted 18% hike in energy prices from July could impact gold and silver prices, but the overall tone is neutral.\n\nNote: As there are no explicit macro-financial drivers or market-moving events mentioned in the article, I assigned a tone score of 0 (Neutral).", "metadata": {"topic": "macro_geopolitics_risk", "title": "More Than Half of Households in Energy Credit at End of Winter – Poll", "original_title": "More than half of households in energy credit at end of winter – poll", "publish_date": "2026-04-15T03:31:19Z", "publish_timestamp": 1776223879, "source": "whtimes.co.uk", "url": "https://www.whtimes.co.uk/news/national/26021871.half-households-energy-credit-end-winter---poll/", "entities": ["Uswitch", "Ofgem", "Chancellor", "Cornwall Insight"], "impacted_assets": ["Equities", "Gold", "Oil", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "919a7702-4dfc-533a-9faf-4bb5007ca67b", "text": "Chancellor to hold talks with US counterpart after strong criticism of Iran war. The escalating tensions between the US and Iran have led to a global economic shock, with the IMF slashing Britain's economic growth forecast. The conflict has also sent energy prices soaring, which could impact gold and oil prices. The Chancellor's criticism of the US actions in the Middle East may lead to increased market volatility, as investors become more risk-averse.\n\nThe macro transmission mechanism is as follows: The conflict in the Gulf has led to a global economic shock, which has impacted Britain's economic growth forecast. This has increased uncertainty and volatility in financial markets, making investors more cautious and potentially driving up gold prices.", "metadata": {"topic": "macro_geopolitics_risk", "title": "Chancellor to hold talks with US counterpart after strong criticism of Iran war", "original_title": "Chancellor to hold talks with US counterpart after strong criticism of Iran war", "publish_date": "2026-04-15T03:31:19Z", "publish_timestamp": 1776223879, "source": "wharfedaleobserver.co.uk", "url": "https://www.wharfedaleobserver.co.uk/news/national/26021877.chancellor-hold-talks-us-counterpart-strong-criticism-iran-war/", "entities": ["Scott Bessent", "Rishi Sunak", "Andrew Bailey", "Donald Trump", "Keir Starmer", "Xi Jinping"], "impacted_assets": ["Gold", "Oil", "USD"], "volatility_implication": "Increase", "llm_tone_score": -2}} +{"id": "20b30dcc-f607-5415-9aae-decf05fe1e0e", "text": "CENTCOM Reports Success in Blockading Iranian Ports on First Day. The US Central Command has reported a successful first day of blockading Iranian ports, with no ships entering or leaving the country. This development may put pressure on Iran to reconsider its claims of control over the Strait of Hormuz. However, Saudi Arabia is reportedly pressing the US to drop the blockade and return to negotiations, citing concerns about escalation from the Houthis. The situation remains fluid, with implications for global oil markets and currency fluctuations.\n\nNote: The tone score is neutral because while there are some macro-financial implications, the event itself does not have a clear directional impact on Gold/Silver prices.", "metadata": {"topic": "macro_geopolitics_risk", "title": "CENTCOM Reports Success in Blockading Iranian Ports on First Day", "original_title": "CENTCOM : 24 Hours And All Well On the Blockade Front ( Updated ) ", "publish_date": "2026-04-15T03:31:19Z", "publish_timestamp": 1776223879, "source": "hotair.com", "url": "https://hotair.com/ed-morrissey/2026/04/14/centcom-24-hours-and-alls-well-on-the-blockade-front-n3813891", "entities": ["US Central Command (CENTCOM)", "Iran", "Saudi Arabia", "Houthis", "China"], "impacted_assets": ["Equities", "Gold", "Oil", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "41747a6d-7e5d-5f42-b738-76980675bd44", "text": "Gold Price on April 15: Prices at Jewelry Companies. The gold price rose around 2% to $4,831.78 per ounce due to a weakening US dollar and expectations of renewed US-Iran negotiations. Analysts at Commerzbank believe that as long as the Fed doesn't signal rate hikes, gold prices will be difficult to drop significantly. Meanwhile, Vietnamese jewelry companies such as SJC listed their gold prices in Hanoi at 173-175.5 million VND per tael (buying and selling).\n\nThe macro transmission mechanism is that a weakening US dollar and expectations of renewed US-Iran negotiations are driving up the gold price, which is likely to continue as long as there is no indication of rate hikes from the Fed. This has a bullish tone for gold prices.", "metadata": {"topic": "macro_geopolitics_risk", "title": "Gold Price on April 15: Prices at Jewelry Companies", "original_title": "Giá vàng ngày 15 / 4 : Bảng giá tại các công ty vàng bạc đá quý", "publish_date": "2026-04-15T03:31:19Z", "publish_timestamp": 1776223879, "source": "baomoi.com", "url": "https://baomoi.com/gia-vang-ngay-15-4-bang-gia-tai-cac-cong-ty-vang-bac-da-quy-c54939126.epi", "entities": ["Bob Haberkorn", "RJO Futures", "Commerzbank", "Federal Reserve (Fed)", "SJC (Vàng bạc đá quý Sài Gòn)"], "impacted_assets": ["Gold", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 2}} +{"id": "aa37052e-9108-5aa8-8970-65679c41f016", "text": "Italy Suspends Defense Agreement with Israel Amid Tensions Over War in Lebanon. The suspension of Italy's defense agreement with Israel amid escalating tensions over the war in Lebanon may lead to increased market uncertainty and a flight-to-safety bid for gold. This development could also put pressure on the US dollar as European countries continue to reevaluate their relationships with Israel. The macro transmission mechanism is driven by the potential for increased geopolitical risk, which can boost demand for safe-haven assets like gold and weaken the USD.", "metadata": {"topic": "macro_geopolitics_risk", "title": "Italy Suspends Defense Agreement with Israel Amid Tensions Over War in Lebanon", "original_title": "EU country suspends defense agreement with Israel", "publish_date": "2026-04-15T03:31:19Z", "publish_timestamp": 1776223879, "source": "europesun.com", "url": "http://www.europesun.com/news/278984446/eu-country-suspends-defense-agreement-with-israel", "entities": ["Giorgia Meloni", "Antonio Tajani", "Jonathan Peled", "Benjamin Netanyahu", "Pedro Sanchez"], "impacted_assets": ["Gold", "USD"], "volatility_implication": "Increase", "llm_tone_score": -2}} diff --git a/Data/3_Gold_Semantic/News_Qdrant/2026-04-14/qdrant_macro_inflation_employment_processed.jsonl b/Data/3_Gold_Semantic/News_Qdrant/2026-04-14/qdrant_macro_inflation_employment_processed.jsonl new file mode 100644 index 0000000..df6d2cd --- /dev/null +++ b/Data/3_Gold_Semantic/News_Qdrant/2026-04-14/qdrant_macro_inflation_employment_processed.jsonl @@ -0,0 +1,7 @@ +{"id": "919a7702-4dfc-533a-9faf-4bb5007ca67b", "text": "Chancellor to hold talks with US counterpart after strong criticism of Iran war. The escalating tensions between the US and Iran have led to a global economic shock, with the IMF slashing Britain's economic growth forecast. The conflict has also sent energy prices soaring, which could impact gold and oil prices. The Chancellor's criticism of the US actions in the Middle East may lead to increased market volatility, as investors become more risk-averse.\n\nThe macro transmission mechanism is as follows: The conflict in the Gulf has led to a global economic shock, which has impacted Britain's economic growth forecast. This has increased uncertainty and volatility in financial markets, making investors more cautious and potentially driving up gold prices.", "metadata": {"topic": "macro_inflation_employment", "title": "Chancellor to hold talks with US counterpart after strong criticism of Iran war", "original_title": "Chancellor to hold talks with US counterpart after strong criticism of Iran war", "publish_date": "2026-04-15T03:29:41Z", "publish_timestamp": 1776223781, "source": "wharfedaleobserver.co.uk", "url": "https://www.wharfedaleobserver.co.uk/news/national/26021877.chancellor-hold-talks-us-counterpart-strong-criticism-iran-war/", "entities": ["Scott Bessent", "Rishi Sunak", "Andrew Bailey", "Donald Trump", "Keir Starmer", "Xi Jinping"], "impacted_assets": ["Gold", "Oil", "USD"], "volatility_implication": "Increase", "llm_tone_score": -2}} +{"id": "df7fe02c-4e0a-5257-8759-980baa207a0c", "text": "Reality Check on the Introduction of the Euro in Hungary: A Very High Stakes Game for Those Who Hoped for 2030. The article discusses the feasibility of introducing the Euro in Hungary by 2030. The analysis highlights the country's significant distance from meeting the Maastricht criteria, particularly regarding inflation stability and public debt/GDP ratio. The Hungarian National Bank's data shows that the country's public debt is increasing, and its GDP-based public deficit remains above the 3% threshold. This suggests a challenging path ahead for Hungary to meet the Eurozone's requirements, which may lead to decreased market volatility and potentially negative sentiment for gold and silver prices.", "metadata": {"topic": "macro_inflation_employment", "title": "Reality Check on the Introduction of the Euro in Hungary: A Very High Stakes Game for Those Who Hoped for 2030", "original_title": "Kiderült a meztelen igazság az euró magyarországi bevezetéséről : nagyon ráfázhat , aki a 2030 - as dátumban reménykedett", "publish_date": "2026-04-15T03:29:41Z", "publish_timestamp": 1776223781, "source": "penzcentrum.hu", "url": "https://www.penzcentrum.hu/gazdasag/20260415/kiderult-a-meztelen-igazsag-az-euro-magyarorszagi-bevezeteserol-nagyon-rafazhat-aki-a-2030-as-datumban-remenykedett-1196964", "entities": ["Tisza Párt", "European Central Bank (ECB)", "Hungarian National Bank (MNB)"], "impacted_assets": ["Equities", "Gold", "Oil", "USD"], "volatility_implication": "Decrease", "llm_tone_score": -3}} +{"id": "dbf666e4-2f7a-56db-8895-426c56b871d0", "text": "How Much Do You Really Need to Retire?. The article discusses the importance of having a clear plan for retirement, including considering factors such as monthly expenses, expected lifespan, and investment returns. The author emphasizes that a simple rule-of-thumb approach may not be sufficient, especially in France where inflation and interest rates are lower than in some other countries. The article provides examples of how different monthly expenses and expected lifespans can affect the required retirement savings, highlighting the need for individualized planning. While the content is not directly related to Gold/Silver prices, it does touch on broader macroeconomic themes (inflation, interest rates) that could indirectly impact these assets.\n\nNote: The article's focus on French financial products and cultural context means that its relevance to global markets and asset classes may be limited.", "metadata": {"topic": "macro_inflation_employment", "title": "How Much Do You Really Need to Retire?", "original_title": " « Demain , jarrête ! » : quel montant faut - il vraiment avoir en banque pour tout quitter et vivre libre ? ", "publish_date": "2026-04-15T03:29:41Z", "publish_timestamp": 1776223781, "source": "sixactualites.fr", "url": "https://sixactualites.fr/retraites/demain-jarrete-quel-montant-faut-il-vraiment-avoir-en-banque-pour-tout-quitter-et-vivre-libre/106597/", "entities": ["None explicitly mentioned", "but references to France and French financial products (e.g.", "Livret A) are present."], "impacted_assets": ["Equities", "Gold/Silver (indirectly)", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "27f5d494-28f3-5db8-9211-43e18bb8750e", "text": "Italian Economy Growth Forecast Revised Downward Amid Global Uncertainty and Structural Challenges. The Italian economy is expected to slow down in 2026 and 2027 due to global uncertainty and structural challenges. The country's growth rate could stall at around 0.3% in 2026 and 0.4% in 2027, with the risk of a new decade of stagnation. The analysis highlights the need for structural reforms to address issues such as high taxes, lack of investment, and skills obsolescence. The report also notes that the Italian economy has been characterized by a decline in growth rates over the past few decades, from 3.7% between 1966 and 1980 to 1.8% between 1981 and 2007, with stagnation in recent years.", "metadata": {"topic": "macro_inflation_employment", "title": "Italian Economy Growth Forecast Revised Downward Amid Global Uncertainty and Structural Challenges", "original_title": "Confcom , crescita +0 , 3 % nel 2026 e rischio stagnazione – Padovanews", "publish_date": "2026-04-15T03:29:41Z", "publish_timestamp": 1776223781, "source": "padovanews.it", "url": "https://www.padovanews.it/2026/04/15/confcom-crescita-03-nel-2026-e-rischio-stagnazione/", "entities": ["Confcommercio", "Carlo Sangalli", "Mariano Bella"], "impacted_assets": ["Equities", "Gold", "Oil", "EURUSD"], "volatility_implication": "Increase", "llm_tone_score": -3}} +{"id": "1b3c6216-eb7b-55cc-ab8d-8bc810335094", "text": "Producer Prices Rise Sharply Due to Energy Surge Linked to Iran War. Rising energy costs linked to the Iran war pushed US wholesale prices higher in March, adding to inflation concerns and complicating the Federal Reserve's policy outlook. The producer price index rose 0.5% from February and 4% year-on-year, driven by an 8.5% surge in energy prices. This adds pressure on the Fed to consider rate hikes or maintain a neutral stance, which may support gold and silver prices while increasing market fear/VIX.", "metadata": {"topic": "macro_inflation_employment", "title": "Producer Prices Rise Sharply Due to Energy Surge Linked to Iran War", "original_title": "Producer prices rise sharply on energy surge from Iran war", "publish_date": "2026-04-15T03:29:41Z", "publish_timestamp": 1776223781, "source": "europesun.com", "url": "http://www.europesun.com/news/278983984/producer-prices-rise-sharply-on-energy-surge-from-iran-war", "entities": ["Federal Reserve", "President Donald Trump", "International Energy Agency"], "impacted_assets": ["Gold", "Silver", "USD", "Oil"], "volatility_implication": "Increase", "llm_tone_score": 2}} +{"id": "8b40ead8-47fb-5d09-a65f-6c4e298f521b", "text": "Prospects Of Iran Playing Ball With U.S. Causes Oil To Plunge By Nearly 8%. The oil market is buoyed by hopes of a de-escalation of hostilities between Iran and the US, leading to a 7% plunge in West Texas Intermediate prices. This development could temporarily add to oil outages but focus on the possibility of an agreement rather than short-term risks. The International Energy Agency expects global oil demand to contract this year due to the war's impact, with initial cuts coming from the Middle East and Asia Pacific.", "metadata": {"topic": "macro_inflation_employment", "title": "Prospects Of Iran Playing Ball With U.S. Causes Oil To Plunge By Nearly 8%", "original_title": "Prospects Of Iran Playing Ball With U . S . Causes Oil To Plunge By Nearly 8 % ", "publish_date": "2026-04-15T03:29:41Z", "publish_timestamp": 1776223781, "source": "shipandbunker.com", "url": "https://shipandbunker.com/news/world/571889-prospects-of-iran-playing-ball-with-us-causes-oil-to-plunge-by-nearly-8", "entities": ["Rachel Ziemba", "Peter Tuz", "International Energy Agency"], "impacted_assets": ["Equities", "Gold", "Oil", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 2}} +{"id": "8bacbbd1-1af3-5963-81a8-eed95e4a4f34", "text": "Colombian Retail Giant Makro Launches New Promotions for Essential Products. Colombian retail giant Makro has launched a new campaign called \"Precios Felices\" aimed at stimulating domestic consumption by offering aggressive discounts on essential products. The initiative focuses on democratizing savings for families and small businesses, allowing them to access high-quality products without compromising their monthly budgets. This move may have implications for inflation and consumer spending patterns in Colombia.\n\nThe campaign's emphasis on reducing prices for basic food items like fruits, vegetables, and proteins could potentially impact the local economy and consumer behavior. While this news does not directly affect gold or silver prices, it may contribute to a more stable economic environment in Colombia, which could have indirect effects on global markets.", "metadata": {"topic": "macro_inflation_employment", "title": "Colombian Retail Giant Makro Launches New Promotions for Essential Products", "original_title": "Supermercado en Colombia sigue pisando fuerte y lanzó nuevos remates en productos : de esto se trata", "publish_date": "2026-04-15T03:29:41Z", "publish_timestamp": 1776223781, "source": "noticiasrcn.com", "url": "https://www.noticiasrcn.com/economia/makro-anuncio-nuevo-remate-de-productos-1012163", "entities": ["Makro", "Colombia"], "impacted_assets": [], "volatility_implication": "Neutral", "llm_tone_score": 1}} diff --git a/Data/3_Gold_Semantic/News_Qdrant/2026-04-16/qdrant_asset_metals_derivatives_processed.jsonl b/Data/3_Gold_Semantic/News_Qdrant/2026-04-16/qdrant_asset_metals_derivatives_processed.jsonl new file mode 100644 index 0000000..9f29ca8 --- /dev/null +++ b/Data/3_Gold_Semantic/News_Qdrant/2026-04-16/qdrant_asset_metals_derivatives_processed.jsonl @@ -0,0 +1,5 @@ +{"id": "520f060b-9c84-5d78-9423-ba3a7cdfbe43", "text": "Formation Metals Reports Positive Gold Drill Results at N2 Project. Formation Metals announced positive gold drill results at its N2 project in Quebec. The company reported multiple high-grade intercepts, including 1.8 g/t Au over 21.9 meters and 1.37 g/t Au over 24.0 meters. These results confirm the geological continuity of the A-Zone and suggest a significant open-pit target. With a strong working capital position and no debt, Formation Metals is well-positioned to continue exploring its N2 project and potentially unlocking value for shareholders. The positive drill results are likely to increase market volatility and boost gold prices.", "metadata": {"topic": "asset_metals_derivatives", "title": "Formation Metals Reports Positive Gold Drill Results at N2 Project", "original_title": "Formation Metals durchteuft 1 , 8 g / t Au auf 21 , 9 m , östlich von 1 , 75 g / t Au auf 30 , 4 m auf fortgeschrittenem Goldprojekt N2 : Bohrungen bestätigen Beständigkeit von 300 m innerhalb von 5 km entlang von mineralisiertem Streichen", "publish_date": "2026-04-16T12:32:28Z", "publish_timestamp": 1776342748, "source": "finanznachrichten.de", "url": "https://www.finanznachrichten.de/nachrichten-2026-04/68216726-formation-metals-durchteuft-1-8-g-t-au-auf-21-9-m-oestlich-von-1-75-g-t-au-auf-30-4-m-auf-fortgeschrittenem-goldprojekt-n2-bohrungen-bestaetigen-bestae-248.htm", "entities": ["Formation Metals Inc.", "Deepak Varshney", "Matagami", "Quebec"], "impacted_assets": ["Equities", "Gold"], "volatility_implication": "Increase", "llm_tone_score": 3}} +{"id": "1b451587-3a3c-5000-833c-4e1ea973ac0f", "text": "Oil Trades Lower on De-escalation Hopes; US Crude Exports Jump to Record Levels. The oil market is edging lower amid hopes of a ceasefire extension between the US and Iran. However, the physical market remains tight due to pipeline diversions and Strait of Hormuz disruptions. US crude exports jumped to record levels, while domestic production forecasts suggest little change this year. Meanwhile, European gas prices are easing, and copper prices rose on optimism about de-escalation. The macro transmission mechanism is driven by the impact of Middle East tensions on global energy markets, with a potential supply response from US producers if disruptions persist.\n\nNote: The tone score is neutral because there are no clear directional macro drivers that would significantly impact gold or silver prices.", "metadata": {"topic": "asset_metals_derivatives", "title": "Oil Trades Lower on De-escalation Hopes; US Crude Exports Jump to Record Levels", "original_title": "The Commodities Feed : Oil trades lower on de - escalation hopes | Hellenic Shipping News Worldwide", "publish_date": "2026-04-16T12:32:28Z", "publish_timestamp": 1776342748, "source": "hellenicshippingnews.com", "url": "https://www.hellenicshippingnews.com/the-commodities-feed-oil-trades-lower-on-de-escalation-hopes/", "entities": ["United States", "Iran", "Energy Information Administration (EIA)", "Baker Hughes", "European Union"], "impacted_assets": ["Equities", "Gold", "Oil", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "485c2082-7e3f-5654-a98a-74ae082c56c0", "text": "The Sudanese Economy Under Two Wars. The article discusses the devastating impact of two wars on the Sudanese economy. The country's agricultural potential is significant, but it relies heavily on imported energy and lacks strategic reserves. The economic crisis has led to a 37.5% decline in GDP, with 4.6 million jobs lost and 64% of the population living in extreme poverty. The second war, triggered by tensions in the Strait of Hormuz, has further exacerbated the crisis, making Sudan one of the most vulnerable economies globally.", "metadata": {"topic": "asset_metals_derivatives", "title": "The Sudanese Economy Under Two Wars", "original_title": "الاقتصاد السوداني في ظل حربين", "publish_date": "2026-04-16T12:32:28Z", "publish_timestamp": 1776342748, "source": "sudanile.com", "url": "https://sudanile.com/%D8%A7%D9%84%D8%A7%D9%82%D8%AA%D8%B5%D8%A7%D8%AF-%D8%A7%D9%84%D8%B3%D9%88%D8%AF%D8%A7%D9%86%D9%8A-%D9%81%D9%8A-%D8%B8%D9%84-%D8%AD%D8%B1%D8%A8%D9%8A%D9%86/", "entities": ["Omar Sied Ahmed", "Sudan", "Libya", "Chad", "South Sudan", "Saudi Arabia"], "impacted_assets": ["Equities", "Gold", "Oil", "USD"], "volatility_implication": "Increase", "llm_tone_score": -4}} +{"id": "1d8aca9d-502c-5f6d-be55-ba2f7c0c6387", "text": "Greek Stock Market: Selective Moves and Increased Volatility. The Greek stock market is experiencing selective moves and increased volatility. While some blue chips are rising sharply, others are declining. The overall tone remains neutral, with no clear directional macro drivers. The global markets are also showing mixed signals, with the US and European indices moving in different directions.", "metadata": {"topic": "asset_metals_derivatives", "title": "Greek Stock Market: Selective Moves and Increased Volatility", "original_title": "Χρηματιστήριο : Επιλεκτικές κινήσεις και αυξημένη μεταβλητότητα", "publish_date": "2026-04-16T12:32:28Z", "publish_timestamp": 1776342748, "source": "capital.gr", "url": "https://www.capital.gr/agores/3985670/xrimatistirio-epilektikes-kiniseis-kai-auximeni-metablitotita/", "entities": ["Metlen", "ΓΕΚ ΤΕΡΝΑ", "Λάμδα", "Aegean", "Πειραιώς", "Alpha", "ΕΤΕ", "Eurobank", "Credia", "ΔΤΡ", "ΟΛΘ", "Alter Ego", "Qualco", "Intralot"], "impacted_assets": ["Equities", "Gold"], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "7cc24cf0-3355-5b7b-8bc8-3ccc77387d30", "text": "Formation Metals Inc. Reports Positive Gold Drill Results at N2 Project. Formation Metals Inc. announced positive gold drill results from its N2 project in Quebec, Canada. The company reported multiple high-grade gold intercepts, including 1.8 g/t Au over 21.9 meters and 1.37 g/t Au over 24.0 meters. These results confirm the geological continuity of the A-Zone, which is now considered a solid mineralized gold system with potential for further exploration and development. The company's working capital stands at approximately CAD 10.5 million, leaving it debt-free.", "metadata": {"topic": "asset_metals_derivatives", "title": "Formation Metals Inc. Reports Positive Gold Drill Results at N2 Project", "original_title": "newratings . de", "publish_date": "2026-04-16T12:32:28Z", "publish_timestamp": 1776342748, "source": "newratings.de", "url": "https://www.newratings.de/du/main/company_headline.m?nid=19666857", "entities": ["Formation Metals Inc.", "Quebec", "Matagami", "Canada"], "impacted_assets": ["Gold", "Equities"], "volatility_implication": "Neutral", "llm_tone_score": 1}} diff --git a/Data/3_Gold_Semantic/News_Qdrant/2026-04-16/qdrant_macro_central_banks_processed.jsonl b/Data/3_Gold_Semantic/News_Qdrant/2026-04-16/qdrant_macro_central_banks_processed.jsonl new file mode 100644 index 0000000..1273ab3 --- /dev/null +++ b/Data/3_Gold_Semantic/News_Qdrant/2026-04-16/qdrant_macro_central_banks_processed.jsonl @@ -0,0 +1,9 @@ +{"id": "76f45bb4-ab59-5f41-995e-ee4a5cf44362", "text": "Trump's Actions Against Powell and the Fed are Working Against Him. President Trump's actions against the Fed and its Chair Jerome Powell are having an unintended consequence - making rate cuts less likely. The recent war with Iran has driven up inflation, and the Fed is now more cautious about cutting rates. Additionally, Trump's attempts to push out Fed officials have been unsuccessful, which may keep Powell in place for longer. This development could lead to a hike in interest rates instead of a cut, negatively impacting gold and silver prices.", "metadata": {"topic": "macro_central_banks", "title": "Trump's Actions Against Powell and the Fed are Working Against Him", "original_title": "Trump own actions against Powell and the Fed are working against him", "publish_date": "2026-04-16T12:28:19Z", "publish_timestamp": 1776342499, "source": "edition.cnn.com", "url": "https://edition.cnn.com/2026/04/16/economy/powell-fed-trump-interest-rates", "entities": ["Donald Trump", "Jerome Powell", "Federal Reserve", "Iran", "United States", "Israel"], "impacted_assets": ["Gold", "Silver", "USD", "Equities", "Oil"], "volatility_implication": "Increase", "llm_tone_score": -3}} +{"id": "a92ccaec-5fd4-5789-861a-358e1123ac27", "text": "Eurozone Inflation Shifts Focus to ECB Signals Amid Escalating Iran Conflict. The escalating Iran conflict has driven energy prices higher, posing a structural problem for the global economy. Rising inflation pressures may lead to increased risks for interest rate cuts and market volatility. However, this crisis also presents opportunities for companies that profit from high energy prices, such as oil and gas producers, utilities, renewable energy providers, and select commodity and agricultural stocks. Our special report highlights three stocks with a solid business model, attractive valuation, and long-term potential.\n\nThe tone score is +2 because the article discusses the potential benefits of high energy prices for certain companies, which could lead to increased demand for gold and other safe-haven assets. The ECB's focus on inflation signals also suggests a more hawkish monetary policy stance, which could support gold prices.", "metadata": {"topic": "macro_central_banks", "title": "Eurozone Inflation Shifts Focus to ECB Signals Amid Escalating Iran Conflict", "original_title": "EUR / JPY gibt leicht nach , da die höhere Inflation in der Eurozone den Fokus auf EZB - Signale verlagert", "publish_date": "2026-04-16T12:28:19Z", "publish_timestamp": 1776342499, "source": "finanznachrichten.de", "url": "https://www.finanznachrichten.de/nachrichten-2026-04/68216751-eur-jpy-gibt-leicht-nach-da-die-hoehere-inflation-in-der-eurozone-den-fokus-auf-ezb-signale-verlagert-545.htm", "entities": ["European Central Bank (ECB)", "Iran", "Eurozone"], "impacted_assets": ["Equities", "Gold", "Oil", "EUR/JPY"], "volatility_implication": "Increase", "llm_tone_score": 2}} +{"id": "eb2f5e06-bd13-5064-af91-282bd7f2ae9a", "text": "VDSC's Chairman Discusses Relationship with KIDO Foods. The chairman of Vietnam's Dragon Securities Company (VDSC) discussed the company's relationship with KIDO Foods, a long-term shareholder. He emphasized that KIDO Foods is a supportive partner, providing financial resources and contributing to VDSC's capital base. The chairman also highlighted the challenges faced by VDSC due to high interest rates, but expressed optimism about the company's growth prospects driven by Vietnam's GDP targets, foreign investment flows, and corporate earnings.\n\nThe article does not have a direct impact on gold or silver prices, but it provides insights into the Vietnamese financial market and the country's economic outlook. The tone is neutral, as there are no significant macroeconomic drivers that would affect the precious metals markets.", "metadata": {"topic": "macro_central_banks", "title": "VDSC's Chairman Discusses Relationship with KIDO Foods", "original_title": "Chủ tịch Chứng khoán Rồng Việt nói về mối quan hệ với KIDO Foods", "publish_date": "2026-04-16T12:28:19Z", "publish_timestamp": 1776342499, "source": "dantri.com.vn", "url": "https://dantri.com.vn/kinh-doanh/chu-tich-chung-khoan-rong-viet-noi-ve-moi-quan-he-voi-kido-foods-20260416175340107.htm", "entities": ["Nguyễn Miên Tuấn", "KIDO Foods", "Nutifood", "VDSC"], "impacted_assets": ["Equities", "Gold"], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "7a99f7d9-a721-5abd-affe-fd9c2b4ca187", "text": "Why Gold and Silver Prices are Rising on a Weaker Dollar and Geopolitical Tensions?. The article highlights the rising prices of gold and silver due to a weaker US dollar, geopolitical tensions, and shifting expectations around global interest rates. The macro transmission mechanism is driven by the weakening dollar, which increases demand for safe-haven assets like gold and silver, while the geopolitical tensions surrounding the Iran conflict add to the upward momentum.", "metadata": {"topic": "macro_central_banks", "title": "Why Gold and Silver Prices are Rising on a Weaker Dollar and Geopolitical Tensions?", "original_title": "Why gold , silver are rising on weak dollar & geopolitical tensions ? ", "publish_date": "2026-04-16T12:28:19Z", "publish_timestamp": 1776342499, "source": "thehindubusinessline.com", "url": "https://www.thehindubusinessline.com/markets/gold/gold-silver-prices-rise-on-weak-dollar-geopolitical-cues-analysts-see-near-term-volatility/article70868399.ece", "entities": ["Gaurav Garg", "Ponmudi R", "Enrich Money", "Lemonn Markets Desk"], "impacted_assets": ["Equities", "Gold", "Oil", "USD"], "volatility_implication": "Increase", "llm_tone_score": 2}} +{"id": "10610233-3552-5d0c-bef0-76cf0686f8ec", "text": "AUD/USD Rally at Risk of Minor Mean Reversion Decline. The Australian dollar has rallied significantly since the US-Iran ceasefire agreement, mirroring risk-off movements in equities. While the RBA's hawkish guidance hasn't deterred the AUD/USD rally, a minor mean reversion decline below 0.7200 could be imminent before a new upleg begins.", "metadata": {"topic": "macro_central_banks", "title": "AUD/USD Rally at Risk of Minor Mean Reversion Decline", "original_title": "Chart alert : AUD / USD 360 pips rally at risk of a minor mean reversion decline below 0 . 7200 before new upleg", "publish_date": "2026-04-16T12:28:19Z", "publish_timestamp": 1776342499, "source": "marketpulse.com", "url": "https://www.marketpulse.com/markets/chart-alert-audusd-360-pips-rally-at-risk-of-a-minor-mean-reversion-decline-below-07200-before-new-upleg/", "entities": ["Australian dollar", "US-Iran war", "RBA (Reserve Bank of Australia)", "USD/EUR", "euro"], "impacted_assets": ["Equities", "Gold", "Oil", "AUD/USD"], "volatility_implication": "Neutral", "llm_tone_score": 1}} +{"id": "b02c9963-fc86-50ec-8c73-d0bf53918cd3", "text": "UAE Highlights Proactive Approach to Financial Resilience at Washington Meetings. The Central Bank of the UAE participated in international meetings, highlighting its proactive approach to financial resilience. Governor Khaled Mohamed Balama delivered a keynote address on global economic developments and geopolitical challenges, emphasizing the UAE's efforts to enhance financial sector efficiency. This event has no direct impact on Gold/Silver prices but may contribute to broader market sentiment.\n\nNote: The tone score is neutral as there are no clear directional macro drivers or significant events that would directly affect gold/silver prices.", "metadata": {"topic": "macro_central_banks", "title": "UAE Highlights Proactive Approach to Financial Resilience at Washington Meetings", "original_title": "CBUAE highlights UAE proactive approach to financial resilience in Washington", "publish_date": "2026-04-16T12:28:19Z", "publish_timestamp": 1776342499, "source": "irishsun.com", "url": "http://www.irishsun.com/news/278987031/cbuae-highlights-uae-proactive-approach-to-financial-resilience-in-washington", "entities": ["Central Bank of the UAE (CBUAE)", "International Monetary Fund (IMF)", "World Bank Group", "G20", "G24", "BRICS", "Eesti Pank", "National Bank of Georgia"], "impacted_assets": [], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "79886d78-6f3a-5742-bdcb-ac6b5ea52df3", "text": "Senator Thom Tillis Vows to Block Jerome Powell's Replacement at Federal Reserve. Senator Thom Tillis has vowed to block the nomination of Kevin Warsh to replace Jerome Powell as head of the Federal Reserve. This is a principled political act aimed at forcing the Trump Department of Justice to drop its investigation into Powell or provide evidence of corruption. The move may have indirect implications for USD and Equities, but the macro transmission mechanism is unclear.", "metadata": {"topic": "macro_central_banks", "title": "Senator Thom Tillis Vows to Block Jerome Powell's Replacement at Federal Reserve", "original_title": "Say What You Mean", "publish_date": "2026-04-16T12:28:19Z", "publish_timestamp": 1776342499, "source": "dailykos.com", "url": "https://www.dailykos.com/stories/2026/4/16/800020794/community/this/", "entities": ["Senator Thom Tillis", "Kevin Warsh", "Jerome Powell", "Donald Trump", "Stephen Miller"], "impacted_assets": [], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "8f92dbba-2454-5b29-a5f7-7c996405b9d7", "text": "Russian Inflation Expectations Fall to 12.9% in April. Russian inflation expectations have decreased to 12.9% in April, with those having savings expecting a slightly lower rate of 11.4%. This moderation in inflationary pressures may lead to a slight increase in gold and silver prices as investors seek safe-haven assets. The USD might also benefit from the reduced inflation concerns, potentially leading to a minor decrease in precious metal values.", "metadata": {"topic": "macro_central_banks", "title": "Russian Inflation Expectations Fall to 12.9% in April", "original_title": "Инфляционные ожидания россиян в апреле сократились до 12 , 9 % ", "publish_date": "2026-04-16T12:28:19Z", "publish_timestamp": 1776342499, "source": "vedomosti.ru", "url": "https://www.vedomosti.ru/economics/news/2026/04/16/1190832-inflyatsionnie-ozhidaniya", "entities": ["Russia", "citizens with savings", "citizens without savings"], "impacted_assets": ["Gold", "Silver", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 1}} +{"id": "d869cdb8-a8fb-5012-9522-0f277de07fcd", "text": "Brazilian Government Projects GDP Growth of 2.56% and Inflation of 3.04% in 2027. The Brazilian government projects GDP growth of 2.56% in 2027, with inflation expected to remain stable at 3.04%. The report also forecasts moderate wage growth and a gradual reduction in interest rates. These projections suggest a positive economic outlook for Brazil, which may have a neutral impact on global markets.", "metadata": {"topic": "macro_central_banks", "title": "Brazilian Government Projects GDP Growth of 2.56% and Inflation of 3.04% in 2027", "original_title": "Governo projeta crescimento de 2 , 56 % do PIB e inflao de 3 , 04 % em 2027", "publish_date": "2026-04-16T12:28:19Z", "publish_timestamp": 1776342499, "source": "brasil247.com", "url": "https://www.brasil247.com:443/economia/governo-projeta-crescimento-de-2-56-do-pib-e-inflacao-de-3-04-em-2027-u72b8zti", "entities": ["Brazilian government", "Ministry of Finance", "Ministry of Planning and Budget", "Congress National"], "impacted_assets": ["Equities", "Gold", "Oil", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 1}} diff --git a/Data/3_Gold_Semantic/News_Qdrant/2026-04-16/qdrant_macro_geopolitics_risk_processed.jsonl b/Data/3_Gold_Semantic/News_Qdrant/2026-04-16/qdrant_macro_geopolitics_risk_processed.jsonl new file mode 100644 index 0000000..28ce508 --- /dev/null +++ b/Data/3_Gold_Semantic/News_Qdrant/2026-04-16/qdrant_macro_geopolitics_risk_processed.jsonl @@ -0,0 +1,4 @@ +{"id": "475add2f-79b9-58e2-a4f5-34afabc0651c", "text": "Three Misconceptions About the $402B Semiconductor Foundry Industry. This article discusses the semiconductor foundry industry's growth to $402 billion in 2026, highlighting its complexity and connection to geopolitics and AI capex. The piece also clarifies TSMC's market share, emphasizing that its dominance at the leading edge is often understated due to inconsistent definitions of \"advanced.\"", "metadata": {"topic": "macro_geopolitics_risk", "title": "Three Misconceptions About the $402B Semiconductor Foundry Industry", "original_title": "Three Misconceptions About the $402B Semiconductor Foundry Industry", "publish_date": "2026-04-16T12:30:54Z", "publish_timestamp": 1776342654, "source": "design-reuse.com", "url": "https://www.design-reuse.com/news/202530378-three-misconceptions-about-the-402b-semiconductor-foundry-industry/", "entities": ["Pierre Cambou", "Yole Développement", "TSMC"], "impacted_assets": [], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "7a448934-3774-5828-97e2-4774fb255b8f", "text": "Pakistani Army Chief Visits Tehran in Hopes of Renewed US-Iran Talks. The Pakistani army chief's visit to Tehran aims to extend the ceasefire between Israel and Iran-backed Hezbollah. While this development may lead to a deal, uncertainty remains as both sides continue exchanging fire across the border. The meeting comes amid progress in US-Iran talks, with regional officials reporting an \"in-principle agreement\" to extend the ceasefire. This event is unlikely to have a significant impact on gold or silver prices, but it may contribute to market volatility if tensions escalate or de-escalate.", "metadata": {"topic": "macro_geopolitics_risk", "title": "Pakistani Army Chief Visits Tehran in Hopes of Renewed US-Iran Talks", "original_title": "Pakistani army chief visits Tehran in hopes of renewed US - Iran talks", "publish_date": "2026-04-16T12:30:54Z", "publish_timestamp": 1776342654, "source": "redlandsdailyfacts.com", "url": "https://www.redlandsdailyfacts.com/2026/04/16/us-iran-war-israel/", "entities": ["Pakistan", "Iran", "United States", "Israel", "Lebanon"], "impacted_assets": ["Equities", "Oil", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "43cfb012-8a21-5232-9ad4-874857ec06b1", "text": "Eurozone Inflation Surges to 2.6% in March Due to Energy Price Increase Following Iran Conflict. The eurozone inflation rate surged to 2.6% in March, driven by a 5.1% increase in energy prices following the Iran conflict. This is the highest inflation rate since July 2024 and reflects the immediate impact of the war on oil prices. The rise in energy costs has also led to higher food prices, with fresh foods increasing by 4.2%. The underlying inflation rate, excluding energy and food, remained stable at 2.3%. This development is likely to support gold and silver prices, while also increasing market fear and volatility.\n\nNote: The tone score of +3 reflects the bullish impact on gold and silver prices due to the increase in energy costs and potential for higher inflation.", "metadata": {"topic": "macro_geopolitics_risk", "title": "Eurozone Inflation Surges to 2.6% in March Due to Energy Price Increase Following Iran Conflict", "original_title": "La inflación de la eurozona repunta al 2 , 6 % en marzo por el encarecimiento de la energía tras la guerra en Irán", "publish_date": "2026-04-16T12:30:54Z", "publish_timestamp": 1776342654, "source": "laprovincia.es", "url": "https://www.laprovincia.es/economia/2026/04/16/inflacion-eurozona-repunta-2-6-marzo-encarecimiento-energia-guerra-iran-129169885.html", "entities": ["European Union", "Eurostat", "Iran", "United States", "Israel", "Russia", "Ukraine"], "impacted_assets": ["Gold", "Silver", "Oil", "USD"], "volatility_implication": "Increase", "llm_tone_score": 3}} +{"id": "b32397d3-13bf-5a0d-9585-a485899b107c", "text": "TSMC Raises Revenue Forecast for 2026 Due to AI Demand. TSMC, a leading semiconductor manufacturer, has raised its revenue forecast for 2026 due to strong demand for AI-related chips. The company expects a 30%+ increase in revenues, driven by the growing demand for advanced chips used in AI systems. This news is bullish for gold and silver prices as it suggests a continued strong demand for technology and innovation, which can support higher precious metal prices.\n\nThe macro transmission mechanism at play here is the increasing demand for AI-related technologies, which drives up demand for semiconductors and other related components. This, in turn, supports the overall tech sector and potentially leads to increased investment and consumption, which can benefit gold and silver prices.", "metadata": {"topic": "macro_geopolitics_risk", "title": "TSMC Raises Revenue Forecast for 2026 Due to AI Demand", "original_title": "TSMC alza le previsioni : nel 2026 i ricavi aumenteranno ancora grazie allIA", "publish_date": "2026-04-16T12:30:54Z", "publish_timestamp": 1776342654, "source": "multiplayer.it", "url": "https://multiplayer.it/notizie/tsmc-alza-previsioni-2026-ricavi-aumenteranno-ia.html", "entities": ["Taiwan Semiconductor Manufacturing Company (TSMC)", "C.C. Wei", "Samsung"], "impacted_assets": ["Equities", "Gold", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 2}} diff --git a/Data/3_Gold_Semantic/News_Qdrant/2026-04-16/qdrant_macro_yields_dollar_processed.jsonl b/Data/3_Gold_Semantic/News_Qdrant/2026-04-16/qdrant_macro_yields_dollar_processed.jsonl new file mode 100644 index 0000000..513a5aa --- /dev/null +++ b/Data/3_Gold_Semantic/News_Qdrant/2026-04-16/qdrant_macro_yields_dollar_processed.jsonl @@ -0,0 +1,8 @@ +{"id": "79815fab-8a22-5468-8836-a9fe35dd4de4", "text": "Indian Stock Market Update: Sensex and Nifty End Marginally Lower Amid Profit-Booking and Geopolitical Uncertainty. The Indian stock market ended marginally lower on Thursday due to profit-booking and lingering uncertainty around US-Iran talks. Despite this, metals emerged as top performers, supported by firm global commodity prices and a softer dollar. IT stocks also showed resilience, while banking, auto, and consumption stocks came under pressure.", "metadata": {"topic": "macro_yields_dollar", "title": "Indian Stock Market Update: Sensex and Nifty End Marginally Lower Amid Profit-Booking and Geopolitical Uncertainty", "original_title": "Sensex , Nifty pare gains to end marginally lower , Adani Enterprises , Hindalco lead gainers", "publish_date": "2026-04-16T12:30:02Z", "publish_timestamp": 1776342602, "source": "thehindubusinessline.com", "url": "https://www.thehindubusinessline.com/markets/stock-markets-close-lower-on-profit-taking-in-financial-shares/article70868922.ece", "entities": ["Adani Enterprises", "Hindalco", "Vinod Nair", "Ponmudi R", "Sudeep Shah", "Hariprasad K"], "impacted_assets": ["Equities", "Metals", "IT Stocks", "Banking", "Auto", "Consumption"], "volatility_implication": "Neutral", "llm_tone_score": 1}} +{"id": "f7aa4839-a32f-50bb-b164-d96f852547c5", "text": "Cable Eyes 1.3696 After Reclaiming Key Moving Averages, Bulls Defend 1.3500. The GBP/USD has broken out of its descending trendline and reclaimed its 100-day and 200-day moving averages, indicating a shift in macro bias from \"sell the rallies\" to \"buy the dips.\" This development suggests that bulls are defending the 1.3500 level and eyeing the next major structural hurdle at 1.3696. The Daily RSI is showing healthy bullish momentum with plenty of runway before hitting the overbought threshold, indicating a potential continuation of the uptrend.", "metadata": {"topic": "macro_yields_dollar", "title": "Cable Eyes 1.3696 After Reclaiming Key Moving Averages, Bulls Defend 1.3500", "original_title": "Cable eyes 1 . 3696 after reclaiming key moving averages , bulls defend 1 . 3500", "publish_date": "2026-04-16T12:30:02Z", "publish_timestamp": 1776342602, "source": "marketpulse.com", "url": "https://www.marketpulse.com/markets/cable-eyes-13696-after-reclaiming-key-moving-averages-bulls-defend-13500/", "entities": ["GBP/USD", "Federal Reserve"], "impacted_assets": ["Equities", "Gold", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 2}} +{"id": "f5356de4-9e9b-5dc9-b691-c8af5f132cae", "text": "3 Absurdly Cheap Stocks to Buy With $1,000 While the Market Is Nervous. The article highlights three undervalued stocks that can thrive in any market environment. Domino's Pizza has a competitive advantage through its delivery model and technology, while Clorox is a consumer staples conglomerate with a discounted stock price due to past struggles. Target, despite its challenges, offers an attractive valuation. These stocks are considered safe and undervalued, making them suitable for investors seeking dividend income and potential growth.\n\nNote: As the article does not explicitly mention macroeconomic or financial market drivers that would directly impact gold or silver prices, I assigned a tone score of 0 (Neutral).", "metadata": {"topic": "macro_yields_dollar", "title": "3 Absurdly Cheap Stocks to Buy With $1,000 While the Market Is Nervous", "original_title": "3 Absurdly Cheap Stocks to Buy With $1 , 000 While the Market Is This Nervous", "publish_date": "2026-04-16T12:30:02Z", "publish_timestamp": 1776342602, "source": "fool.com", "url": "https://www.fool.com/investing/2026/04/16/3-absurdly-cheap-stocks-to-buy-with-1000-while-the/?source=iedfolrf0000001", "entities": ["Domino's Pizza", "Clorox", "Target"], "impacted_assets": ["Equities", "Consumer Discretionary", "Consumer Staples"], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "720da795-3ef5-508e-a82c-22a3030dc4b3", "text": "Trump Blocks Strait of Hormuz: Mullah Regime Runs Out of Money for Iran War. The US blockade of the Strait of Hormuz will severely impact Iran's economy by cutting off its main oil export route. This could lead to a financial and inflationary crisis in Iran, making it difficult for the regime to pay its soldiers and paramilitary groups. As a result, protests may resume, potentially with fewer people willing to defend the regime. The US strategy aims to weaken Iran's economy and force the regime to negotiate a deal that addresses US concerns about nuclear weapons and long-range missiles.\n\nNote: The tone score is +3 because the event has a clear bullish impact on gold prices due to increased market fear and uncertainty, which tends to drive up gold demand as a safe-haven asset.", "metadata": {"topic": "macro_yields_dollar", "title": "Trump Blocks Strait of Hormuz: Mullah Regime Runs Out of Money for Iran War", "original_title": "Trump blockiert Straße von Hormus : Mullah - Regime igeht das Geld aus", "publish_date": "2026-04-16T12:30:02Z", "publish_timestamp": 1776342602, "source": "kreiszeitung.de", "url": "http://www.kreiszeitung.de/politik/trump-koennte-mit-genialer-strategie-den-krieg-im-iran-gewinnen-zr-94264746.html", "entities": ["Donald Trump", "Iran", "United States", "Israel"], "impacted_assets": ["Gold", "Oil", "USD"], "volatility_implication": "Increase", "llm_tone_score": 3}} +{"id": "7a99f7d9-a721-5abd-affe-fd9c2b4ca187", "text": "Why Gold and Silver Prices are Rising on a Weaker Dollar and Geopolitical Tensions?. The article highlights the rising prices of gold and silver due to a weaker US dollar, geopolitical tensions, and shifting expectations around global interest rates. The macro transmission mechanism is driven by the weakening dollar, which increases demand for safe-haven assets like gold and silver, while the geopolitical tensions surrounding the Iran conflict add to the upward momentum.", "metadata": {"topic": "macro_yields_dollar", "title": "Why Gold and Silver Prices are Rising on a Weaker Dollar and Geopolitical Tensions?", "original_title": "Why gold , silver are rising on weak dollar & geopolitical tensions ? ", "publish_date": "2026-04-16T12:30:02Z", "publish_timestamp": 1776342602, "source": "thehindubusinessline.com", "url": "https://www.thehindubusinessline.com/markets/gold/gold-silver-prices-rise-on-weak-dollar-geopolitical-cues-analysts-see-near-term-volatility/article70868399.ece", "entities": ["Gaurav Garg", "Ponmudi R", "Enrich Money", "Lemonn Markets Desk"], "impacted_assets": ["Equities", "Gold", "Oil", "USD"], "volatility_implication": "Increase", "llm_tone_score": 2}} +{"id": "1d8aca9d-502c-5f6d-be55-ba2f7c0c6387", "text": "Greek Stock Market: Selective Moves and Increased Volatility. The Greek stock market is experiencing selective moves and increased volatility. While some blue chips are rising sharply, others are declining. The overall tone remains neutral, with no clear directional macro drivers. The global markets are also showing mixed signals, with the US and European indices moving in different directions.", "metadata": {"topic": "macro_yields_dollar", "title": "Greek Stock Market: Selective Moves and Increased Volatility", "original_title": "Χρηματιστήριο : Επιλεκτικές κινήσεις και αυξημένη μεταβλητότητα", "publish_date": "2026-04-16T12:30:02Z", "publish_timestamp": 1776342602, "source": "capital.gr", "url": "https://www.capital.gr/agores/3985670/xrimatistirio-epilektikes-kiniseis-kai-auximeni-metablitotita/", "entities": ["Metlen", "ΓΕΚ ΤΕΡΝΑ", "Λάμδα", "Aegean", "Πειραιώς", "Alpha", "ΕΤΕ", "Eurobank", "Credia", "ΔΤΡ", "ΟΛΘ", "Alter Ego", "Qualco", "Intralot"], "impacted_assets": ["Equities", "Gold"], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "10610233-3552-5d0c-bef0-76cf0686f8ec", "text": "AUD/USD Rally at Risk of Minor Mean Reversion Decline. The Australian dollar has rallied significantly since the US-Iran ceasefire agreement, mirroring risk-off movements in equities. While the RBA's hawkish guidance hasn't deterred the AUD/USD rally, a minor mean reversion decline below 0.7200 could be imminent before a new upleg begins.", "metadata": {"topic": "macro_yields_dollar", "title": "AUD/USD Rally at Risk of Minor Mean Reversion Decline", "original_title": "Chart alert : AUD / USD 360 pips rally at risk of a minor mean reversion decline below 0 . 7200 before new upleg", "publish_date": "2026-04-16T12:30:02Z", "publish_timestamp": 1776342602, "source": "marketpulse.com", "url": "https://www.marketpulse.com/markets/chart-alert-audusd-360-pips-rally-at-risk-of-a-minor-mean-reversion-decline-below-07200-before-new-upleg/", "entities": ["Australian dollar", "US-Iran war", "RBA (Reserve Bank of Australia)", "USD/EUR", "euro"], "impacted_assets": ["Equities", "Gold", "Oil", "AUD/USD"], "volatility_implication": "Neutral", "llm_tone_score": 1}} +{"id": "7ff6d5db-cafe-5769-a577-c74e8bf0d384", "text": "British Legacy: Occident Meets Orient - The Architecture of Jerusalem is Strongly Influenced by the British Mandate Era.. The article discusses various news stories related to Israel, including the strengthening of the Israeli shekel against the US dollar, Germany's alleged arms exports to Israel, and Apple TV's release of a trailer for an Israeli thriller series. Additionally, Time magazine includes Israeli Prime Minister Benjamin Netanjahu in its list of the 100 most influential people. These events do not have a direct impact on Gold/Silver prices but may contribute to market volatility due to their geopolitical implications.\n\nNote: The tone score is neutral because there are no clear directional macro drivers that would significantly affect Gold/Silver prices.", "metadata": {"topic": "macro_yields_dollar", "title": "British Legacy: Occident Meets Orient - The Architecture of Jerusalem is Strongly Influenced by the British Mandate Era.", "original_title": "16 . 04 . 2026 - Israelnetz", "publish_date": "2026-04-16T12:30:02Z", "publish_timestamp": 1776342602, "source": "israelnetz.com", "url": "https://www.israelnetz.com/2026/04/16/", "entities": ["Benjamin Netanjahu", "Israel", "Iran", "Lebanon", "Germany", "Friedrich Merz", "Apple TV", "Talia Lynne Ronn", "Liras Chamami", "Adam Bizanski", "Dana Idisis"], "impacted_assets": [], "volatility_implication": "Neutral", "llm_tone_score": 0}} diff --git a/Data/3_Gold_Semantic/News_Qdrant/2026-04-18/qdrant_asset_precious_metals_spot_processed.jsonl b/Data/3_Gold_Semantic/News_Qdrant/2026-04-18/qdrant_asset_precious_metals_spot_processed.jsonl new file mode 100644 index 0000000..e4ddc52 --- /dev/null +++ b/Data/3_Gold_Semantic/News_Qdrant/2026-04-18/qdrant_asset_precious_metals_spot_processed.jsonl @@ -0,0 +1,6 @@ +{"id": "e7372f0f-783d-5d90-b59d-eeba96e6a72d", "text": "Life jacket worn by a passenger who survived the Titanic auctioned off for over $900,000. This news article reports on the auction of a life jacket worn by Laura Mabel Francatelli, a first-class passenger who survived the Titanic disaster. The item sold for over $1.24 million CAD, setting a record price for a piece of Titanic memorabilia. While this event does not have any direct macro-financial implications, it may contribute to a sense of nostalgia and fascination with the Titanic story, which could indirectly influence market sentiment and volatility.", "metadata": {"topic": "asset_precious_metals_spot", "title": "Life jacket worn by a passenger who survived the Titanic auctioned off for over $900,000", "original_title": "Life jacket worn by a passenger who survived the Titanic auctioned off for over $900 , 000", "publish_date": "2026-04-18T22:04:31Z", "publish_timestamp": 1776549871, "source": "castanetkamloops.net", "url": "https://www.castanetkamloops.net/news/Entertainment/609632/Life-jacket-worn-by-a-passenger-who-survived-the-Titanic-auctioned-off-for-over-900-000", "entities": ["Laura Mabel Francatelli", "Lucy Duff Gordon", "Cosmo Duff Gordon", "RMS Carpathia"], "impacted_assets": [], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "9f94ca40-5eb0-54cd-a87e-7adf48f44297", "text": "Survivor's Signed Titanic Life Jacket Fetches Record Price. The sale of a life jacket worn by a Titanic survivor for $906,000 is a record-breaking price for a piece of Titanic memorabilia. This event has no direct macro-financial implications and does not affect the prices of Gold or Silver. The story's focus on human interest and historical significance rather than economic drivers keeps the tone neutral.", "metadata": {"topic": "asset_precious_metals_spot", "title": "Survivor's Signed Titanic Life Jacket Fetches Record Price", "original_title": "Survivor signed Titanic life jacket fetches $906 , 000 at united kingdom sale", "publish_date": "2026-04-18T22:04:31Z", "publish_timestamp": 1776549871, "source": "kxlf.com", "url": "https://www.kxlf.com/world/europe/survivors-signed-titanic-life-jacket-fetches-906-000-at-uk-sale", "entities": ["Laura Mabel Francatelli", "Lucy Duff Gordon", "Cosmo Duff Gordon"], "impacted_assets": [], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "ebbc1c05-5950-54d4-8375-b4e66a16cd10", "text": "Life Jacket Worn by Passenger Who Survived Titanic Auctioned Off for Over $900,000. The auction of a life jacket worn by a passenger who survived the Titanic's sinking has set a new record price. The item sold for over $906,000, with the proceeds likely going to its buyer. This event does not have any direct macro-financial implications or transmission mechanisms that would impact gold or silver prices.", "metadata": {"topic": "asset_precious_metals_spot", "title": "Life Jacket Worn by Passenger Who Survived Titanic Auctioned Off for Over $900,000", "original_title": "Life jacket worn by a passenger who survived the Titanic auctioned off for over $900 , 000", "publish_date": "2026-04-18T22:04:31Z", "publish_timestamp": 1776549871, "source": "pressdemocrat.com", "url": "https://www.pressdemocrat.com/2026/04/18/life-jacket-worn-by-a-passenger-who-survived-the-titanic-auctioned-off-for-over-900000/", "entities": ["Laura Mabel Francatelli", "Lucy Duff Gordon", "Cosmo Duff Gordon"], "impacted_assets": [], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "1c1d01da-2e7e-51d6-aeb1-9c58dad7e1df", "text": "Cursor Aims to Raise $2 Billion at $50 Billion Valuation, Targeting $6 Billion Revenue Run Rate by 2026. The article highlights Cursor's plans to raise $2 billion at a valuation of $50 billion, driven by its rapid growth and increasing investor confidence. This news is bullish for the market, as it indicates a strong demand for AI-powered coding tools and a potential increase in revenue run rate. The company's focus on building its own models and reducing dependence on third-party providers also reduces risk and increases its chances of long-term success.", "metadata": {"topic": "asset_precious_metals_spot", "title": "Cursor Aims to Raise $2 Billion at $50 Billion Valuation, Targeting $6 Billion Revenue Run Rate by 2026", "original_title": "Cursor Looks to Double Down with $2B Raise at $50B Valuation", "publish_date": "2026-04-18T22:04:31Z", "publish_timestamp": 1776549871, "source": "techstory.in", "url": "https://techstory.in/cursor-looks-to-double-down-with-2b-raise-at-50b-valuation/", "entities": ["Cursor", "Thrive Capital", "Andreessen Horowitz", "Battery Ventures", "NVIDIA", "Anthropic", "OpenAI"], "impacted_assets": ["Equities", "Gold", "USD"], "volatility_implication": "Increase", "llm_tone_score": 3}} +{"id": "735a9a8f-e3e2-5aae-ae6e-9fc43d3a9793", "text": "Taiwan-listed companies' dividend payouts surge to a record high of NT$2.5 trillion, with 118 firms expected to pay out over NT$10 million each.. The surge in dividend payouts by Taiwan-listed companies is expected to reach a record high of NT$2.5 trillion, driven by the strong performance of the Taiwanese economy and the increasing confidence of investors. This trend is likely to boost investor sentiment and drive up demand for equities and gold, leading to increased market volatility.", "metadata": {"topic": "asset_precious_metals_spot", "title": "Taiwan-listed companies' dividend payouts surge to a record high of NT$2.5 trillion, with 118 firms expected to pay out over NT$10 million each.", "original_title": "上市櫃股利發放衝2 . 5兆再創歷史新高 權王5 , 705億元稱冠 | 股市要聞 | 股市", "publish_date": "2026-04-18T22:04:31Z", "publish_timestamp": 1776549871, "source": "udn.com", "url": "https://udn.com/news/story/7251/9450364", "entities": ["Taiwan-listed companies", "National Taiwan Bank (2882)", "First Commercial Bank (2881)", "Taiwan Semiconductor Manufacturing Company (2330)", "Hon Hai Precision Industry Co. Ltd. (2317)", "United Microelectronics Corporation (2303)", "etc."], "impacted_assets": ["Equities", "Gold"], "volatility_implication": "Increase", "llm_tone_score": 3}} +{"id": "7c27b988-5ee6-5c98-b887-1b1c64da9802", "text": "Gold Prices Reach 4-Week High on Global Markets. Gold prices surged to a four-week high as tensions between the US and Iran escalated, driving oil prices above $100 per barrel. The Fed's potential rate decision also contributed to the volatility. As investors seek safe-haven assets amid economic and geopolitical uncertainty, gold demand is expected to remain strong.\n\nThe macro transmission mechanism is that rising tensions in the Middle East and potential interest rate decisions by the Federal Reserve are driving investors towards safe-haven assets like gold, which tends to perform well during times of market stress.", "metadata": {"topic": "asset_precious_metals_spot", "title": "Gold Prices Reach 4-Week High on Global Markets", "original_title": "الذهب يسجل أعلى قمة له خلال 4 أسابيع في البورصة العالمية", "publish_date": "2026-04-18T22:04:31Z", "publish_timestamp": 1776549871, "source": "new-today.co", "url": "https://new-today.co/%D8%A7%D9%84%D8%B0%D9%87%D8%A8-%D9%8A%D8%B3%D8%AC%D9%84-%D8%A3%D8%B9%D9%84%D9%89-%D9%82%D9%85%D8%A9-%D9%84%D9%87-%D8%AE%D9%84%D8%A7%D9%84-4-%D8%A3%D8%B3%D8%A7%D8%A8%D9%8A%D8%B9-%D9%81%D9%8A-%D8%A7/", "entities": ["Iran", "United States", "Federal Reserve"], "impacted_assets": ["Gold", "Oil"], "volatility_implication": "Increase", "llm_tone_score": 2}} diff --git a/Data/3_Gold_Semantic/News_Qdrant/2026-04-18/qdrant_macro_central_banks_processed.jsonl b/Data/3_Gold_Semantic/News_Qdrant/2026-04-18/qdrant_macro_central_banks_processed.jsonl new file mode 100644 index 0000000..8b716eb --- /dev/null +++ b/Data/3_Gold_Semantic/News_Qdrant/2026-04-18/qdrant_macro_central_banks_processed.jsonl @@ -0,0 +1,8 @@ +{"id": "4742d43b-f2f6-5229-b2a6-6c1c87579bd0", "text": "Federal Reserve Probe Intensifies Amid Trump's Threats to Fire Powell. The intensifying Federal Reserve probe into the $2.5 billion headquarters renovation project has sparked concerns about political interference in monetary policy. President Trump's threats to fire Fed Chair Jerome Powell have added fuel to the fire, potentially undermining the central bank's independence and increasing market uncertainty. The macro transmission mechanism is a potential increase in USD volatility, which could negatively impact Gold prices.", "metadata": {"topic": "macro_central_banks", "title": "Federal Reserve Probe Intensifies Amid Trump's Threats to Fire Powell", "original_title": "Fed probe intensifies as Trump threatens to fire Powell", "publish_date": "2026-04-18T22:02:16Z", "publish_timestamp": 1776549736, "source": "hongkongherald.com", "url": "http://www.hongkongherald.com/news/278988532/fed-probe-intensifies-as-trump-threatens-to-fire-powell", "entities": ["Jerome Powell", "Donald Trump", "Jeanine Pirro", "Robert Hur", "Thom Tillis", "Kevin Warsh", "Lisa Cook"], "impacted_assets": ["USD", "Equities", "Gold"], "volatility_implication": "Increase", "llm_tone_score": -2}} +{"id": "5f128886-304d-5a01-9435-f597544b1b33", "text": "Trump Backs Fed Probe as Prosecutors Visit HQ Renovation Site. The ongoing investigation into the Federal Reserve's headquarters renovation project has intensified, with prosecutors seeking access to the construction site. President Trump has backed the probe, framing it as a necessary scrutiny of government spending. However, Fed Chair Jerome Powell has argued that the investigation is a pretext to undermine the central bank's independence, raising broader concerns about political interference in U.S. monetary policy. The situation may lead to increased market uncertainty and potentially impact USD and equity markets.", "metadata": {"topic": "macro_central_banks", "title": "Trump Backs Fed Probe as Prosecutors Visit HQ Renovation Site", "original_title": "Trump backs Fed probe as prosecutors visit HQ renovation site", "publish_date": "2026-04-18T22:02:16Z", "publish_timestamp": 1776549736, "source": "myanmarnews.net", "url": "http://www.myanmarnews.net/news/278988532/trump-backs-fed-probe-as-prosecutors-visit-hq-renovation-site", "entities": ["Jerome Powell", "Donald Trump", "Jeanine Pirro", "Kevin Warsh", "Thom Tillis", "Josh Hawley", "Lisa Cook"], "impacted_assets": ["USD", "Equities"], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "da136ffa-b8df-5d9a-a4f2-4ed315b17419", "text": "Mark Carney Named to Time's Most Influential People List for 2026. The article reports that Canadian Prime Minister Mark Carney has been named to Time's Most Influential People List for 2026. This recognition is largely based on his speech at the World Economic Forum in Davos, where he emphasized the need for international cooperation and multilateralism. While this event may not have a direct impact on Gold/Silver prices, it could potentially influence market sentiment and macroeconomic conditions, which may indirectly affect precious metals.", "metadata": {"topic": "macro_central_banks", "title": "Mark Carney Named to Time's Most Influential People List for 2026", "original_title": "Carney lands on Time most influential people list for 2026", "publish_date": "2026-04-18T22:02:16Z", "publish_timestamp": 1776549736, "source": "lethbridgeherald.com", "url": "https://lethbridgeherald.com/news/national-news/2026/04/18/carney-lands-on-times-most-influential-people-list-for-2026/", "entities": ["Mark Carney", "Christine Lagarde", "Justin Trudeau", "Donald Trump", "Mette Frederiksen", "Benjamin Netanyahu", "Pope Leo XIV"], "impacted_assets": [], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "3f193548-4ac6-5f7a-9abc-cc538e35cf46", "text": "Larry Fink's Double Role as WEF Co-President: Swiss Government Supports Him Despite Conflicts of Interest. The Swiss government has given its backing to Larry Fink as WEF co-president despite concerns about his dual role as CEO of Blackrock. This decision may not have a direct impact on gold or silver prices, but it could contribute to a more stable macro environment, which might lead to increased market confidence and potentially stabilize precious metals.", "metadata": {"topic": "macro_central_banks", "title": "Larry Fink's Double Role as WEF Co-President: Swiss Government Supports Him Despite Conflicts of Interest", "original_title": "Doppelrolle von Larry Fink : Bund stärkt dem WEF - Co - Präsidenten den Rücken", "publish_date": "2026-04-18T22:02:16Z", "publish_timestamp": 1776549736, "source": "nzz.ch", "url": "https://www.nzz.ch/wirtschaft/naechster-nackenschlag-fuer-klaus-schwab-der-bund-laesst-larry-fink-als-wef-praesidenten-gewaehren-trotz-doppelrolle-ld.1933724", "entities": ["Klaus Schwab", "Larry Fink", "André Hoffmann", "World Economic Forum (WEF)", "Eidgenössische Stiftungsaufsicht (ESA)"], "impacted_assets": [], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "c9a8b110-ab13-56fd-a204-cd8aa26600ea", "text": "Banks in New Zealand Offer Loans for Electric Vehicles Amid Growing Demand. New Zealand's major banks are responding to growing demand for electric vehicles by offering specialized loans. This trend could lead to increased investment in sustainable energy and infrastructure, potentially benefiting gold prices as investors seek safe-haven assets. The article highlights the growth in demand for EVs and related financial products, which could have a positive impact on the overall economy.", "metadata": {"topic": "macro_central_banks", "title": "Banks in New Zealand Offer Loans for Electric Vehicles Amid Growing Demand", "original_title": "So you want to buy an EV - here what your bank could offer", "publish_date": "2026-04-18T22:02:16Z", "publish_timestamp": 1776549736, "source": "rnz.co.nz", "url": "https://www.rnz.co.nz/news/business/592773/so-you-want-to-buy-an-ev-here-s-what-your-bank-could-offer", "entities": ["ASB", "BNZ", "ANZ", "Kiwibank", "Meridian"], "impacted_assets": ["Equities", "Gold", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 1}} +{"id": "43bc87ab-054a-5f74-8af0-52be544c57a4", "text": "Former Economy Minister Paulo Guedes Criticizes Lula Government and Rules Out Return to Politics. Former Economy Minister Paulo Guedes criticized the economic policy of President Lula's government, citing increased public spending and fiscal flexibility as contributing to rising debt and pressure on interest rates. This commentary may increase market fear/VIX as it implies a potential for higher inflation and interest rates, which could negatively impact gold prices and strengthen the US dollar.", "metadata": {"topic": "macro_central_banks", "title": "Former Economy Minister Paulo Guedes Criticizes Lula Government and Rules Out Return to Politics", "original_title": "Paulo Guedes critica governo Lula e descarta voltar à política", "publish_date": "2026-04-18T22:02:16Z", "publish_timestamp": 1776549736, "source": "bahianoticias.com.br", "url": "https://www.bahianoticias.com.br/noticia/315961-paulo-guedes-critica-governo-lula-e-descarta-voltar-a-politica", "entities": ["Paulo Guedes", "Luiz Inácio Lula da Silva", "Jair Bolsonaro"], "impacted_assets": ["Gold", "USD"], "volatility_implication": "Increase", "llm_tone_score": -2}} +{"id": "75770ef6-0a35-5d85-b147-a8cfc3d55a63", "text": "Differences in Loans for Electric and Gasoline Vehicles at Expomóvil 2026. The article discusses the loan conditions offered by three major banks in Costa Rica for electric and gasoline vehicles at Expomóvil 2026. The banks offer varying interest rates, down payments, and commissions depending on the type of vehicle. This could lead to a shift towards eco-friendly technologies, which may positively impact gold/silver prices if investors perceive a growing demand for sustainable energy solutions.\n\nNote: The tone score is +2 because while the article does not explicitly mention macroeconomic drivers that would directly impact gold/silver prices, it highlights the increasing importance of eco-friendly technologies, which could contribute to a bullish sentiment in the long term.", "metadata": {"topic": "macro_central_banks", "title": "Differences in Loans for Electric and Gasoline Vehicles at Expomóvil 2026", "original_title": "Expomóvil 2026 : estas son las diferencias en los préstamos para vehículos eléctricos y de combustión", "publish_date": "2026-04-18T22:02:16Z", "publish_timestamp": 1776549736, "source": "elfinancierocr.com", "url": "https://www.elfinancierocr.com/finanzas/expomovil-2026-estas-son-las-diferencias-en-los/PNOTGD3HG5HRFIHR7QT63MQ5PU/story/", "entities": ["Banco Nacional", "Banco Popular y de Desarrollo Comunal", "Banco de Costa Rica"], "impacted_assets": ["Equities", "Gold", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 2}} +{"id": "b6a38d85-dd90-5d74-93c2-d211aad95950", "text": "Pakistan Repays $2 Billion Debt to UAE, Reduces Dependence on Gulf Nation. Pakistan has repaid a $2 billion debt to the UAE, reducing its dependence on the Gulf nation. The repayment was facilitated by taking a new loan from Saudi Arabia. This development is unlikely to have a significant impact on gold or silver prices, but it may contribute to a neutral tone in the market.", "metadata": {"topic": "macro_central_banks", "title": "Pakistan Repays $2 Billion Debt to UAE, Reduces Dependence on Gulf Nation", "original_title": "Pakistan returns $2 billion more to UAE", "publish_date": "2026-04-18T22:02:16Z", "publish_timestamp": 1776549736, "source": "tribune.com.pk", "url": "https://tribune.com.pk/story/2603481/pakistan-returns-2-billion-more-to-uae", "entities": ["Pakistan", "United Arab Emirates (UAE)", "Saudi Arabia", "International Monetary Fund (IMF)", "China", "Standard Chartered"], "impacted_assets": ["Equities", "Gold", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 1}} diff --git a/Data/3_Gold_Semantic/News_Qdrant/2026-04-18/qdrant_macro_geopolitics_risk_processed.jsonl b/Data/3_Gold_Semantic/News_Qdrant/2026-04-18/qdrant_macro_geopolitics_risk_processed.jsonl new file mode 100644 index 0000000..8227c0e --- /dev/null +++ b/Data/3_Gold_Semantic/News_Qdrant/2026-04-18/qdrant_macro_geopolitics_risk_processed.jsonl @@ -0,0 +1,5 @@ +{"id": "b7cc5e15-1274-5f83-ba2a-f1bcf9cf0640", "text": "Israeli Actor Eli Finiush's Comments Spark Controversy and Outrage. Israeli actor Eli Finiush's comments praising the Israeli military and government have sparked widespread outrage and controversy. The article suggests that Finiush's words are not only divisive but also perpetuate a toxic atmosphere in Israel. The macro transmission mechanism is likely to be negative for Gold/Silver prices, as increased market volatility and uncertainty may lead to safe-haven buying.", "metadata": {"topic": "macro_geopolitics_risk", "title": "Israeli Actor Eli Finiush's Comments Spark Controversy and Outrage", "original_title": "עמית סגל מגיב לסערה ועוקץ : זה פשע חמור , אין התיישנות ", "publish_date": "2026-04-18T22:03:55Z", "publish_timestamp": 1776549835, "source": "srugim.co.il", "url": "https://www.srugim.co.il/1302343-%D7%A2%D7%9E%D7%99%D7%AA-%D7%A1%D7%92%D7%9C-%D7%9E%D7%92%D7%99%D7%91-%D7%9C%D7%A1%D7%A2%D7%A8%D7%94-%D7%95%D7%A2%D7%95%D7%A7%D7%A5-%D7%A4%D7%A9%D7%A2-%D7%97%D7%9E%D7%95%D7%A8", "entities": ["Eli Finiush", "Israel", "Iran", "Netanyahu"], "impacted_assets": ["Equities", "Gold", "USD"], "volatility_implication": "Increase", "llm_tone_score": -2}} +{"id": "1be0afb1-8fe5-5c42-b34d-450563b6392b", "text": "Pentagon Says Ukraine Support in Current Form Not Sustainable. The Pentagon's statement suggests that the current form of Ukraine support is not sustainable. This implies a potential decrease in military aid and a shift in responsibility to European allies. As a result, this news may lead to a decrease in market fear/VIX, which could negatively impact gold prices.\n\nThe macro transmission mechanism is as follows: The Pentagon's statement indicates a potential reduction in military aid to Ukraine, which could lead to a decrease in global uncertainty and market fear. This, in turn, may cause investors to become less risk-averse, leading to a decrease in the demand for safe-haven assets like gold. Additionally, the shift in responsibility to European allies may lead to a strengthening of the USD, further pressuring gold prices.", "metadata": {"topic": "macro_geopolitics_risk", "title": "Pentagon Says Ukraine Support in Current Form Not Sustainable", "original_title": "A Pentagon szerint Ukrajna támogatása ebben a formában nem biztosítható", "publish_date": "2026-04-18T22:03:55Z", "publish_timestamp": 1776549835, "source": "magyarnemzet.hu", "url": "https://magyarnemzet.hu/kulfold/2026/04/pentagon-szerint-ukrajna-tamogatasa-nem-biztosithato", "entities": ["Elbridge Colby", "Pentagon", "Ukraine", "Europe", "Donald Trump"], "impacted_assets": ["Gold", "USD"], "volatility_implication": "Decrease", "llm_tone_score": -2}} +{"id": "9f5b7285-3b76-5ba9-8a7b-c65e921f61d2", "text": "Matteo Salvini and European Patriots Rally in Milan's Duomo Square. The rally by European Patriots and Italian politician Matteo Salvini in Milan's Duomo Square highlights growing anti-EU sentiment. Salvini criticized the EU's response to the energy crisis and lockdown measures, echoing concerns about economic sovereignty. This event may increase market fear/VIX as it reinforces the narrative of a weakening EU and potentially boosts gold and silver prices.\n\nNote: The tone score is +2 because while the event does not directly impact monetary policy or inflation, it contributes to a broader narrative of anti-EU sentiment, which can be bullish for precious metals.", "metadata": {"topic": "macro_geopolitics_risk", "title": "Matteo Salvini and European Patriots Rally in Milan's Duomo Square", "original_title": "Salvini e i patrioti in piazza I leader europei sul palco del Duomo", "publish_date": "2026-04-18T22:03:55Z", "publish_timestamp": 1776549835, "source": "zazoom.it", "url": "https://www.zazoom.it/2026-04-18/salvini-e-i-patrioti-in-piazza-i-leader-europei-sul-palco-del-duomo/19027651/", "entities": ["Matteo Salvini", "European Patriots", "Ursula von der Leyen"], "impacted_assets": ["Gold", "Silver", "EURUSD"], "volatility_implication": "Increase", "llm_tone_score": 2}} +{"id": "d6a9d874-6f1d-5116-9a87-d1cc9b05b2ec", "text": "Man kills five people in shooting spree in Kiev, Ukraine. A shooting spree in Kiev, Ukraine resulted in the death of at least five people and injured 10 others. The incident has sparked concerns about potential instability in the region, which may lead to increased demand for safe-haven assets like gold and a strengthening of the USD. The macro transmission mechanism is through increased market fear and uncertainty, driving investors towards perceived safer assets.\n\nNote: The tone score is bearish due to the potential increase in market fear and uncertainty following this violent incident, which may drive investors away from riskier assets and towards safe-haven assets like gold.", "metadata": {"topic": "macro_geopolitics_risk", "title": "Man kills five people in shooting spree in Kiev, Ukraine", "original_title": "Ukraine . Un homme tue cinq personnes lors dune fusillade", "publish_date": "2026-04-18T22:03:55Z", "publish_timestamp": 1776549835, "source": "laseyne.maville.com", "url": "https://laseyne.maville.com/actu/actudet_-ukraine.-un-homme-tue-cinq-personnes-lors-d-une-fusillade-_fil-7285733_actu.Htm", "entities": ["Volodymyr Zelensky", "Igor Klymenko", "Rouslan Kravtchenko"], "impacted_assets": ["Gold", "USD"], "volatility_implication": "Increase", "llm_tone_score": -2}} +{"id": "0c3bb672-7622-59eb-8967-5fe63c9de109", "text": "Unexpected US Decision on Russia Sanctions. The unexpected US decision to ease sanctions on Russian oil has been met with disappointment from EU officials. Despite earlier predictions of increased pressure on Russia, the move is seen as a likely outcome by security expert Mark Episcopos. The relaxation of sanctions may lead to increased market volatility and potentially impact gold prices, while oil prices may stabilize.", "metadata": {"topic": "macro_geopolitics_risk", "title": "Unexpected US Decision on Russia Sanctions", "original_title": "На Западе сделали неожиданное заявление о решении США по России", "publish_date": "2026-04-18T22:03:55Z", "publish_timestamp": 1776549835, "source": "lenta.ru", "url": "https://lenta.ru/news/2026/04/19/na-zapade-sdelali-neozhidannoe-zayavlenie-o-reshenii-ssha-po-rossii/", "entities": ["Mark Episcopos", "European Union (EU)", "United States", "Russian Federation", "Kirill Dmitriev"], "impacted_assets": ["Gold", "Oil", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 0}} diff --git a/Data/3_Gold_Semantic/News_Qdrant/2026-04-19/qdrant_asset_metals_derivatives_processed.jsonl b/Data/3_Gold_Semantic/News_Qdrant/2026-04-19/qdrant_asset_metals_derivatives_processed.jsonl new file mode 100644 index 0000000..7f85281 --- /dev/null +++ b/Data/3_Gold_Semantic/News_Qdrant/2026-04-19/qdrant_asset_metals_derivatives_processed.jsonl @@ -0,0 +1,8 @@ +{"id": "452e0e09-ced0-5a21-9377-ecd1b4a40858", "text": "Spanish Cyclist Paula Blasi Makes History by Winning Amstel Gold Race. Spanish cyclist Paula Blasi made history by becoming the first Spanish woman to win a UCI Women's World Tour event. Her victory in the Amstel Gold Race is a significant achievement for women's cycling in Spain.", "metadata": {"topic": "asset_metals_derivatives", "title": "Spanish Cyclist Paula Blasi Makes History by Winning Amstel Gold Race", "original_title": "CICLISMO FEMENINO | La barcelonesa Paula Blasi gana la Amstel Gold Race y hace historia en el ciclismo español", "publish_date": "2026-04-19T16:33:14Z", "publish_timestamp": 1776616394, "source": "laopiniondezamora.es", "url": "https://www.laopiniondezamora.es/deportes/2026/04/19/barcelonesa-paula-blasi-gana-amstel-gold-race-129279564.html", "entities": ["Paula Blasi", "Mavi García", "Dori Ruano", "Joane Somarriba"], "impacted_assets": [], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "6039a0a7-64c7-545e-9aad-55ac86f3ae4a", "text": "A Rare Koenigsegg Jesko Absolut Spotted in an Amsterdam Parking Garage. A rare Koenigsegg Jesko Absolut was spotted in an Amsterdam parking garage, showcasing its unique features and luxurious options. The car's owner, Zach Lewis, has a collection of high-end vehicles, including Ferraris and Lamborghinis. This event does not have any direct impact on the macro-financial landscape or the gold/silver market.\n\nNote: As per the critical instructions, I did not translate the original title as it is already in English. The tone score is neutral since there are no significant macro-financial implications from this article.", "metadata": {"topic": "asset_metals_derivatives", "title": "A Rare Koenigsegg Jesko Absolut Spotted in an Amsterdam Parking Garage", "original_title": "Deze Koenigsegg kan een Amsterdamse parkeergarage wél betalen", "publish_date": "2026-04-19T16:33:14Z", "publish_timestamp": 1776616394, "source": "autoblog.nl", "url": "https://www.autoblog.nl:443/nieuws/deze-koenigsegg-kan-een-amsterdamse-parkeergarage-w-l-betalen", "entities": ["Zach Lewis", "Koenigsegg Jesko Absolut", "Ferrari 488 Pista", "Mercedes 300 SL", "Lamborghini 400GT", "Countach 25th Anniversary", "Aventador", "Ferrari 365 GTC/4"], "impacted_assets": [], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "d9f5cba0-8a4c-52e9-a49b-a198bb04cec2", "text": "Home Wrapping Techniques for Lymphatic Drainage and Skin Toning. The article discusses the benefits of home wrapping techniques for lymphatic drainage and skin toning. Dermatologist Ilya Rudnev shares his expertise on how to perform these procedures correctly, highlighting the importance of regularity and proper preparation. The article also provides recipes for homemade wraps using natural ingredients like coffee, ginger, and menthol.\n\nNote: As this article is not related to macro-financial news or events, it does not have a direct impact on Gold/Silver prices.", "metadata": {"topic": "asset_metals_derivatives", "title": "Home Wrapping Techniques for Lymphatic Drainage and Skin Toning", "original_title": "Дерматокосметолог Илья Руднев о правилах проведения домашних обертываний для лимфодренажа", "publish_date": "2026-04-19T16:33:14Z", "publish_timestamp": 1776616394, "source": "pravda.ru", "url": "https://www.pravda.ru/beauty/2345819-domashnie-obertyvaniya-uhod/", "entities": ["Ilya Rudnev", "Ksenia Anisimova"], "impacted_assets": [], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "bb29d2c8-352e-5102-9f4e-930b3cbb8582", "text": "Colorado farmers scale back crops amid drought, tariffs, and war. A severe drought in Colorado is forcing farmers to scale back production, change crop priorities, and question their long-term survival. Tariffs and war-related supply chain disruptions are exacerbating the issue, leading to increased costs and uncertainty for agricultural labor. The impact on local food production will likely be felt by grocery shoppers.\n\nThe tone score of -3 reflects the bearish sentiment due to the combination of drought, tariffs, and war-related challenges, which could lead to decreased gold prices as investors seek safer assets. The decrease in volatility implication suggests that market fear may subside temporarily as investors become more risk-averse.", "metadata": {"topic": "asset_metals_derivatives", "title": "Colorado farmers scale back crops amid drought, tariffs, and war", "original_title": "Colorado farmers scale back crops amid drought , tariffs and war", "publish_date": "2026-04-19T16:33:14Z", "publish_timestamp": 1776616394, "source": "denverpost.com", "url": "https://www.denverpost.com/2026/04/19/colorado-farms-crops-drought-water/", "entities": ["Praxie Vigil", "Brian Crites", "Bruce Talbott", "Jared Polis"], "impacted_assets": ["Equities", "Gold", "USD"], "volatility_implication": "Decrease", "llm_tone_score": -3}} +{"id": "c1bff1ec-ecc9-5c70-9f73-9f8e339b864e", "text": "BYDFi Marks 6th Anniversary with Month-Long Celebration, Built for Reliability. BYDFi, a global crypto trading platform, is celebrating its 6th anniversary with a month-long celebration. The company has expanded its product offerings, strengthened user safeguards, and extended access across both centralized and on-chain trading. This event does not have a significant impact on the macroeconomic environment or gold/silver prices, hence a neutral tone score.", "metadata": {"topic": "asset_metals_derivatives", "title": "BYDFi Marks 6th Anniversary with Month-Long Celebration, Built for Reliability", "original_title": "BYDFi Marks 6th Anniversary with Month - Long Celebration , Built for Reliability", "publish_date": "2026-04-19T16:33:14Z", "publish_timestamp": 1776616394, "source": "newsonjapan.com", "url": "http://www.newsonjapan.com/article/148967.php", "entities": ["BYDFi", "Newcastle United", "TradingView"], "impacted_assets": ["Cryptocurrencies", "Equities", "Gold", "Silver"], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "957deb23-6823-5c84-8ff6-9a3fe5bc3749", "text": "Deportes Tolima Confirms Quarterfinal Spot in Liga BetPlay I of 2026, Cali and Fortaleza Maintain Options. The Liga BetPlay I of 2026 has seen Deportes Tolima confirm its quarterfinal spot after defeating Deportivo Pereira. Meanwhile, Deportivo Cali and Fortaleza maintain their options for qualification. This event does not have a direct impact on the macro-financial landscape or the gold/silver markets.\n\nNote: As this article is about a sports tournament, it has no relevance to the financial market or the trading desk's focus on Gold/Silver Options.", "metadata": {"topic": "asset_metals_derivatives", "title": "Deportes Tolima Confirms Quarterfinal Spot in Liga BetPlay I of 2026, Cali and Fortaleza Maintain Options", "original_title": "Tabla de posiciones de la Liga BetPlay : Tolima clasifica , Cali cede y Fortaleza mantiene opciones", "publish_date": "2026-04-19T16:33:14Z", "publish_timestamp": 1776616394, "source": "vanguardia.com", "url": "https://www.vanguardia.com/deportes/futbol/2026/04/19/tabla-de-posiciones-de-la-liga-betplay-tolima-clasifica-cali-cede-y-fortaleza-mantiene-opciones/", "entities": ["Deportes Tolima", "Deportivo Pereira", "Deportivo Cali", "Fortaleza", "Atlético Nacional", "Deportivo Pasto", "Jaguares"], "impacted_assets": [], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "90a69068-ae0b-5fce-b4e0-4a7deb4d153c", "text": "German Startup Nevermined Produces Lab-Grown Diamonds in Essen, Germany. Nevermined, a German startup, produces lab-grown diamonds in Essen using the chemical vapor deposition (CVD) process. The company emphasizes transparency, conflict-free, and sustainable practices. While lab-grown diamonds are optically, chemically, and physically identical to mined diamonds, their production requires significant energy consumption. This development may not have a direct impact on gold or silver prices but could influence the jewelry market and consumer preferences.\n\nNote: As this article is primarily focused on the startup's business model and practices, it does not have a significant macro-financial impact. The tone score is neutral as there are no clear directional macro drivers mentioned in the article.", "metadata": {"topic": "asset_metals_derivatives", "title": "German Startup Nevermined Produces Lab-Grown Diamonds in Essen, Germany", "original_title": "Diamanten - Labor : Hier wachsen Einkaräter in 2 Wochen – wie natürlich sind sie ? ", "publish_date": "2026-04-19T16:33:14Z", "publish_timestamp": 1776616394, "source": "morgenpost.de", "url": "https://www.morgenpost.de/wirtschaft/article411610677/nevermined-setzt-auf-labordiamanten-der-markt-ringt-um-bedeutung-und-preis.html", "entities": ["Christine Marhofer", "Dennis Oing", "Joachim Dünkelmann", "Bundesverbands der Juweliere", "Schmuck- und Uhrenfachgeschäfte"], "impacted_assets": ["Equities", "Gold", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "a9b35864-e4a9-560c-9f5b-1f1fbb0174a4", "text": "North Korea Launches Multiple Ballistic Missiles into Offshore Waters. The launch of multiple ballistic missiles by North Korea has heightened tensions in the region and increased market fear. This event is likely to have a negative impact on gold prices as investors seek safe-haven assets amid rising uncertainty. The strengthening of the US dollar may also be a consequence, as investors flock to the currency for its perceived safety.\n\nThe macro transmission mechanism at play here is the increase in global risk aversion and market fear, which can lead to increased demand for safe-haven assets like gold and a stronger USD.", "metadata": {"topic": "asset_metals_derivatives", "title": "North Korea Launches Multiple Ballistic Missiles into Offshore Waters", "original_title": "North Korea Launches Multiple Ballistic Missiles Into Offshore Waters - Jowhar News Leader", "publish_date": "2026-04-19T16:33:14Z", "publish_timestamp": 1776616394, "source": "jowhar.com", "url": "https://jowhar.com/north-korea-launches-multiple-ballistic-missiles-into-offshore-waters/", "entities": ["North Korea", "South Korea", "United States"], "impacted_assets": ["Gold", "USD"], "volatility_implication": "Increase", "llm_tone_score": -2}} diff --git a/Data/3_Gold_Semantic/News_Qdrant/2026-04-19/qdrant_macro_central_banks_processed.jsonl b/Data/3_Gold_Semantic/News_Qdrant/2026-04-19/qdrant_macro_central_banks_processed.jsonl new file mode 100644 index 0000000..a46fc4c --- /dev/null +++ b/Data/3_Gold_Semantic/News_Qdrant/2026-04-19/qdrant_macro_central_banks_processed.jsonl @@ -0,0 +1,8 @@ +{"id": "f62d8939-62c2-5b5b-a122-234d93cf4401", "text": "Dalal Street Week Ahead: Key Factors to Watch for Indian Equity Markets. The Indian equity market is expected to remain positive in the coming week, driven by progress in peace talks, crude oil prices stabilizing below $100, and Q4 earnings. The IMF has raised India's FY27 GDP growth forecast to 6.5%, highlighting the country's macroeconomic resilience. However, global uncertainties may lead to selective market action.", "metadata": {"topic": "macro_central_banks", "title": "Dalal Street Week Ahead: Key Factors to Watch for Indian Equity Markets", "original_title": "Dalal Street Week Ahead : Strait of Hormuz , Iran peace talks progress , Q4 earnings , oil prices , FII flow among 10 key factors to watch", "publish_date": "2026-04-19T16:29:12Z", "publish_timestamp": 1776616152, "source": "moneycontrol.com", "url": "https://www.moneycontrol.com/news/business/markets/dalal-street-week-ahead-strait-of-hormuz-iran-peace-talks-progress-q4-earnings-oil-prices-fii-flow-among-10-key-factors-to-watch-13893301.html", "entities": ["IMF", "India", "Iran", "US"], "impacted_assets": ["Equities (Indian)", "Crude Oil", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 2}} +{"id": "bfd107fa-856a-5f55-b1d2-93b0fc7709ad", "text": "Thousands of Executives Aren't Seeing AI Productivity Boom, Reminding Economists of IT-Era Paradox. The article highlights the disconnect between AI adoption and productivity gains in the workplace. Despite widespread implementation of AI by executives, there is no corresponding increase in productivity or employment growth. This echoes Solow's \"productivity paradox\" from the IT era, where technological advancements did not lead to expected productivity boosts. The lack of tangible benefits from AI investments may lead to decreased expectations and potentially impact market sentiment.\n\nNote: As the tone score is 0 (Neutral), it does not have a significant impact on Gold/Silver prices.", "metadata": {"topic": "macro_central_banks", "title": "Thousands of Executives Aren't Seeing AI Productivity Boom, Reminding Economists of IT-Era Paradox", "original_title": "Thousands of executives arent seeing AI productivity boom , reminding economists of IT - era paradox", "publish_date": "2026-04-19T16:29:12Z", "publish_timestamp": 1776616152, "source": "fortune.com", "url": "https://fortune.com/article/why-do-thousands-of-ceos-believe-ai-not-having-impact-productivity-employment-study/", "entities": ["Robert Solow", "Torsten Slok", "Daron Acemoglu"], "impacted_assets": ["Equities", "Gold", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "450b03ea-4385-589d-b012-bb8f13578405", "text": "Allu Arjun's Unconventional Salary Structure in Indian Cinema. Allu Arjun, a prominent Indian actor, has adopted an unconventional revenue-sharing model for his films. He charges 30 paise per rupee of the movie's revenue, which reduces pressure on producers and lowers overall budgets. This approach has contributed to his significant earnings from recent films like Pushpa: The Rise and Pushpa 2: The Rule.", "metadata": {"topic": "macro_central_banks", "title": "Allu Arjun's Unconventional Salary Structure in Indian Cinema", "original_title": "Not a fixed salary : The 30 paise per rupee deal that makes Allu Arjun one of India highest - paid actors | Telugu News", "publish_date": "2026-04-19T16:29:12Z", "publish_timestamp": 1776616152, "source": "indianexpress.com", "url": "https://indianexpress.com/article/entertainment/telugu/allu-arjun-salary-revenue-sharing-model-explained-by-g-dhananjheyan-10645201/", "entities": ["Allu Arjun", "G Dhananjheyan", "Mythri Movie Makers", "Sukumar Writings", "Sun Pictures"], "impacted_assets": ["Equities", "Gold"], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "6e7527fd-2f18-5e6f-9832-f055ed0fd6de", "text": "Security Federal Share Price Crosses Above 200-Day Moving Average. Security Federal's share price has crossed above its 200-day moving average, indicating a potential upward trend. The company operates as a bank holding company and provides various banking products and services. This event does not have any significant macro-financial implications for the gold/silver market.", "metadata": {"topic": "macro_central_banks", "title": "Security Federal Share Price Crosses Above 200-Day Moving Average", "original_title": "Security Federal ( OTCMKTS : SFDL ) Share Price Crosses Above 200 - Day Moving Average – Here What Happened", "publish_date": "2026-04-19T16:29:12Z", "publish_timestamp": 1776616152, "source": "themarketsdaily.com", "url": "https://www.themarketsdaily.com/2026/04/19/security-federal-otcmktssfdl-share-price-crosses-above-200-day-moving-average-heres-what-happened.html", "entities": ["Security Federal Corp.", "SFDL", "OTCMKTS"], "impacted_assets": [], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "63de4f7a-bbde-5344-bc45-dc5fac30c13a", "text": "Argentina's Economy Minister Predicts 18 Best Months Ahead Amid Inflation Concerns and Credit Negotiations. Argentine Economy Minister Luis Caputo predicts a period of 18 best months ahead, citing a slowdown in inflation and an expected increase in economic growth. This comes as the country negotiates with international organizations for a credit line exceeding $3 billion. Meanwhile, concerns about microeconomic issues, such as rising mora and stagnant salaries, persist. The macro transmission mechanism is driven by the government's efforts to stabilize the economy and attract foreign investment.\n\nNote: The tone score of +2 reflects the bullish sentiment expressed by Caputo regarding Argentina's economic prospects, which could positively impact gold and silver prices. However, the overall market volatility implication remains neutral due to the mixed signals from macroeconomic indicators.", "metadata": {"topic": "macro_central_banks", "title": "Argentina's Economy Minister Predicts 18 Best Months Ahead Amid Inflation Concerns and Credit Negotiations", "original_title": "Los 18 mejores meses y una fábrica cerrada que no cierra", "publish_date": "2026-04-19T16:29:12Z", "publish_timestamp": 1776616152, "source": "clarin.com", "url": "https://www.clarin.com/economia/18-mejores-meses-fabrica-cerrada-cierra_0_iEYGHy9mnA.html", "entities": ["Luis Caputo", "Argentina", "Fondo Monetario Internacional (FMI)", "Banco Mundial"], "impacted_assets": ["Equities", "Gold", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 2}} +{"id": "4ddc5d10-d5ac-5074-bceb-cc42ec6204cc", "text": "Underconsumption Becomes a Trend as Americans Cut Back on Spending Amid High Inflation and Cost-of-Living Crisis. The article highlights the growing trend of underconsumption in America, where individuals are intentionally buying less and making items last as long as possible due to high inflation and a persistent cost-of-living crisis. This movement is driven by concerns about waste generation, environmental sustainability, and the impact of consumerism on society. While this trend may not have a direct impact on Gold/Silver prices, it could indirectly influence consumer spending habits, which might affect broader market sentiment.", "metadata": {"topic": "macro_central_banks", "title": "Underconsumption Becomes a Trend as Americans Cut Back on Spending Amid High Inflation and Cost-of-Living Crisis", "original_title": "How underconsumption became the word of the year", "publish_date": "2026-04-19T16:29:12Z", "publish_timestamp": 1776616152, "source": "independent.co.uk", "url": "https://www.independent.co.uk/us/money/underconsumption-tips-consumer-spending-b2956834.html", "entities": ["Resume Now", "Census Bureau", "Environmental Protection Agency", "Ladder", "Kuru"], "impacted_assets": [], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "5fb38d59-0ede-5558-8706-ace6795958d0", "text": "Meeting between Governor of the National Bank and Deputy General Director of the IMF: Strong Support for Central Banks' Independence. The meeting between the Governor of the National Bank and the Deputy General Director of the IMF emphasizes the importance of central banks' independence in maintaining macroeconomic stability. This highlights the need for careful monitoring of risks and timely policy responses to ensure price stability. The discussion also underscores the significance of stable institutional frameworks, particularly during periods of increased external shocks and rapid changes in the global environment.", "metadata": {"topic": "macro_central_banks", "title": "Meeting between Governor of the National Bank and Deputy General Director of the IMF: Strong Support for Central Banks' Independence", "original_title": "Славески на средба со заменик - генералниот директор на ММФ Бо Ли : Потврдена силна поддршка за независноста на централните банки", "publish_date": "2026-04-19T16:29:12Z", "publish_timestamp": 1776616152, "source": "sitel.com.mk", "url": "https://sitel.com.mk/slaveski-na-sredba-so-zamenik-generalniot-direktor-na-mmf-bo-li-potvrdena-silna-poddrshka-za", "entities": ["Trajko Slaveski (Governor of the National Bank)", "Bo Li (Deputy General Director of the IMF)", "Dimitrievska-Kochoska (Minister of Finance)"], "impacted_assets": ["Equities", "Gold", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 2}} +{"id": "f073686f-09f8-50a3-afb8-08b291d57cec", "text": "Brazilian Minister Wellington Dias Expects Easier Presidential Election in 2026 Compared to 2022. Brazilian Minister of Social Development and Hunger Combat Wellington Dias expects the 2026 presidential election to be less challenging than the 2022 election. He attributes this to the government's stronger political alliances and regional support. However, he also acknowledges communication challenges and the need for better public perception. The minister highlights positive social indicators, such as reduced poverty and job creation, but notes that these gains are being offset by high interest rates and endowment levels.\n\nThe macro transmission mechanism is that a more favorable political environment could lead to increased investor confidence, potentially benefiting gold and silver prices. However, the impact on USD is uncertain, as it depends on the overall market sentiment and the government's economic policies.", "metadata": {"topic": "macro_central_banks", "title": "Brazilian Minister Wellington Dias Expects Easier Presidential Election in 2026 Compared to 2022", "original_title": "Wellington Dias projeta eleies mais fáceis que em 2022 ", "publish_date": "2026-04-19T16:29:12Z", "publish_timestamp": 1776616152, "source": "brasil247.com", "url": "https://www.brasil247.com:443/brasil/wellington-dias-projeta-eleicoes-mais-faceis-que-em-2022-vvb9om4h", "entities": ["Wellington Dias", "Luiz Inácio Lula da Silva", "Rodrigo Pacheco", "Eduardo Paes", "Fernando Haddad", "Flávio Bolsonaro"], "impacted_assets": ["Equities", "Gold", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 1}} diff --git a/Data/3_Gold_Semantic/News_Qdrant/2026-04-19/qdrant_macro_geopolitics_risk_processed.jsonl b/Data/3_Gold_Semantic/News_Qdrant/2026-04-19/qdrant_macro_geopolitics_risk_processed.jsonl new file mode 100644 index 0000000..c8ddc97 --- /dev/null +++ b/Data/3_Gold_Semantic/News_Qdrant/2026-04-19/qdrant_macro_geopolitics_risk_processed.jsonl @@ -0,0 +1,9 @@ +{"id": "6a4136c3-be37-53a8-82cd-c1f4a52c19e7", "text": "Ford-class aircraft carrier deployment breaks record, Iran opens Hormuz Strait to shipping. The deployment of the Ford-class aircraft carrier has broken a record, while Iran has opened the Hormuz Strait to shipping. This development may increase market fear and volatility, as it suggests a potential escalation in tensions between the US and Iran. The increased military presence in the region could lead to higher oil prices and a stronger USD, which may negatively impact gold prices.\n\nThe macro transmission mechanism is as follows: an increase in military tension and deployment in the Middle East can lead to higher oil prices, which can strengthen the USD and negatively impact gold prices. Additionally, the potential for conflict escalation can increase market fear and volatility, leading to increased demand for safe-haven assets like gold.", "metadata": {"topic": "macro_geopolitics_risk", "title": "Ford-class aircraft carrier deployment breaks record, Iran opens Hormuz Strait to shipping", "original_title": " 【 馬克時空 】 霍爾木茲開放 福特號創紀錄 | 伊斯蘭革命衛隊 | 胡塞武裝 | 美國反封鎖", "publish_date": "2026-04-19T16:31:50Z", "publish_timestamp": 1776616310, "source": "ntdtv.com", "url": "https://www.ntdtv.com/b5/2026/04/19/a104088187.html", "entities": ["United States", "Iran", "Islamic Revolutionary Guard Corps", "Houthis", "Hezbollah"], "impacted_assets": ["Gold", "Oil", "USD"], "volatility_implication": "Increase", "llm_tone_score": 2}} +{"id": "304f15a7-e4bf-5e2c-8d49-c8cd57a47cb7", "text": "Ukrainian Police Chief Resigns Amid Officer Abandonment During Shooting Incident in Kiev. The resignation of the Ukrainian Police Chief follows a shooting incident in Kiev where police officers abandoned their posts, leaving a child unattended. Six people were killed and 15 injured in the incident. This event may increase market fear and volatility, potentially benefiting safe-haven assets like gold and weighing on the US dollar.\n\nThe macro transmission mechanism is as follows: The incident highlights concerns about law and order in Ukraine, which could negatively impact investor sentiment and lead to increased demand for safe-haven assets like gold. Additionally, the incident may reinforce existing market fears about the stability of the Ukrainian government, further pressuring the US dollar.", "metadata": {"topic": "macro_geopolitics_risk", "title": "Ukrainian Police Chief Resigns Amid Officer Abandonment During Shooting Incident in Kiev", "original_title": "Начальник патрульной полиции Украины ушел с поста после побега правоохранителей", "publish_date": "2026-04-19T16:31:50Z", "publish_timestamp": 1776616310, "source": "vesti.ru", "url": "https://www.vesti.ru/ns/nachalnik-patrulnoj-policii-ukrainy-ushel-s-posta-posle-pobega-pravookhranitelej", "entities": ["Ukraine", "Kiev", "Ministry of Internal Affairs", "Dmitriy Vasilchenko"], "impacted_assets": ["Gold", "USD"], "volatility_implication": "Increase", "llm_tone_score": -1}} +{"id": "b3d4aed0-2acf-576f-9a0b-daeb26257050", "text": "Russian attacks kill at least 2 as Ukraine strikes a Russian drone factory. The ongoing conflict between Russia and Ukraine has escalated with reports of Russian attacks killing at least two people in Ukraine. In response, Ukraine struck a Russian drone factory, sparking a fire and damaging commercial infrastructure. This development increases market fear and volatility, potentially driving investors towards safe-haven assets like gold and the US dollar.\n\nThe macro transmission mechanism is as follows: The conflict between Russia and Ukraine has led to increased tensions and uncertainty, which can drive investors towards safe-haven assets like gold and the US dollar. The strikes on Russian targets may also lead to a strengthening of the USD, as investors seek refuge in the currency.", "metadata": {"topic": "macro_geopolitics_risk", "title": "Russian attacks kill at least 2 as Ukraine strikes a Russian drone factory", "original_title": "Russian attacks kill at least 2 as Ukraine strikes a Russian drone factory", "publish_date": "2026-04-19T16:31:50Z", "publish_timestamp": 1776616310, "source": "toronto.citynews.ca", "url": "https://toronto.citynews.ca/2026/04/19/russian-attacks-kill-at-least-2-as-ukraine-strikes-a-russian-drone-factory/", "entities": ["Russia", "Ukraine", "Volodymyr Zelenskyy", "Ihor Klymenko"], "impacted_assets": ["Gold", "USD"], "volatility_implication": "Increase", "llm_tone_score": -1}} +{"id": "37713572-6899-5268-996f-486c5c443b33", "text": "\"Year-Long Transformation: Robots Go from Wobbly Steps to Marathon Pace, Outpacing Humans\". The article highlights the rapid progress in robotics, with a robot named \"Flash\" setting a new record for completing a half-marathon in 50 minutes and 26 seconds, surpassing human records. This achievement is attributed to advancements in AI and robotics technology, which have led to increased investment and funding in the sector. However, the industry still faces challenges such as high data collection costs and the need for standardization. The article suggests that the key to success lies in balancing technological innovation with cost control.\n\nThe macro transmission mechanism at play here is the increasing investment in AI and robotics, which could lead to a surge in demand for these technologies, potentially driving up prices of related assets such as equities and gold. However, the neutral tone score reflects the lack of clear directional macro drivers, as the article primarily focuses on the technological advancements rather than any specific policy or economic developments that would impact the market.", "metadata": {"topic": "macro_geopolitics_risk", "title": "\"Year-Long Transformation: Robots Go from Wobbly Steps to Marathon Pace, Outpacing Humans\"", "original_title": "一年蜕变 : 人形机器人从 步履蹒跚 到马拉松赛道 碾压 人类 - 人工智能 - ITBear比尔科技", "publish_date": "2026-04-19T16:31:50Z", "publish_timestamp": 1776616310, "source": "itbear.com.cn", "url": "https://www.itbear.com.cn/html/2026-04/1287794.html", "entities": ["Beijing", "Honor Technology", "USTech", "Shangai City Data Science Key Laboratory"], "impacted_assets": ["Equities", "Gold", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 2}} +{"id": "6196c727-bdcc-5c58-a403-1fda3b93a9d8", "text": "Russia and Ukraine, Night of Drones: Deaths in Chernihiv and Kherson. The ongoing conflict between Russia and Ukraine has escalated with a night of drone attacks, resulting in deaths and injuries on both sides. The Ukrainian military claims to have shot down 203 Russian drones, while Russia reports that 274 Ukrainian drones were destroyed. The tension is fueled by the US decision to extend sanctions relief for Russian oil imports, which Ukraine sees as supporting Moscow's war efforts. This development increases market fear and volatility, potentially benefiting safe-haven assets like gold.\n\nThe macro transmission mechanism at play here is the ongoing conflict between Russia and Ukraine, which continues to drive uncertainty and risk aversion in financial markets. The US decision to extend sanctions relief for Russian oil imports adds to the tension, as it may be seen as supporting Moscow's war efforts and potentially prolonging the conflict. This increases the likelihood of market volatility and a flight to safety, benefiting assets like gold.", "metadata": {"topic": "macro_geopolitics_risk", "title": "Russia and Ukraine, Night of Drones: Deaths in Chernihiv and Kherson", "original_title": "Russia e Ucraina , notte di droni : morti a Chernihiv e Kherson", "publish_date": "2026-04-19T16:31:50Z", "publish_timestamp": 1776616310, "source": "ottopagine.it", "url": "https://www.ottopagine.it/mondo/attualita/425025/russia-e-ucraina-notte-di-droni-morti-a-chernihiv-e-kherson.shtml", "entities": ["Russia", "Ukraine", "Volodymyr Zelensky", "Donald Trump"], "impacted_assets": ["Gold", "USD"], "volatility_implication": "Increase", "llm_tone_score": -2}} +{"id": "bb9cb9d1-0b73-58da-93b3-90c25a2e9f3c", "text": "US Negotiators Prepare for More Peace Talks with Iran Amid Threats from Trump. The ongoing conflict between the US and Iran continues to escalate, with President Trump threatening to take further action if negotiations fail. This rhetoric may lead to increased market fear and volatility, potentially benefiting safe-haven assets like gold and oil. The situation remains uncertain, but a potential breakthrough in peace talks could lead to a decrease in tensions and a subsequent decline in these assets.\n\nNote: The tone score is +2 because while the conflict is ongoing, President Trump's threats are not necessarily a guarantee of immediate action, which keeps the tone slightly bullish for gold and oil.", "metadata": {"topic": "macro_geopolitics_risk", "title": "US Negotiators Prepare for More Peace Talks with Iran Amid Threats from Trump", "original_title": "U . S . negotiators prepare for more peace talks as Trump repeats threats to Iran", "publish_date": "2026-04-19T16:31:50Z", "publish_timestamp": 1776616310, "source": "kunc.org", "url": "https://www.kunc.org/npr-news/2026-04-19/u-s-negotiators-prepare-for-more-peace-talks-as-trump-repeats-threats-to-iran", "entities": ["President Trump", "Vice President Vance", "Steve Witkoff", "Jared Kushner", "Mohammed Bagher Qalibaf"], "impacted_assets": ["Gold", "Oil", "USD"], "volatility_implication": "Increase", "llm_tone_score": 2}} +{"id": "634ae36a-4dfd-57ae-92a4-10a7fb993032", "text": "Pope Calls for Dialogue to End War in Middle East. The Pope's appeal for dialogue to end the war in the Middle East is a neutral macro event that does not have a direct impact on Gold/Silver prices. While the Pope's words may contribute to a sense of hope and stability, they do not alter the fundamental macroeconomic landscape or create new market drivers.", "metadata": {"topic": "macro_geopolitics_risk", "title": "Pope Calls for Dialogue to End War in Middle East", "original_title": "Pope calls for dialogue to end war in Middle East – Shafaqna English | International Shia News & Fatwas", "publish_date": "2026-04-19T16:31:50Z", "publish_timestamp": 1776616310, "source": "en.shafaqna.com", "url": "https://en.shafaqna.com/447164/pope-calls-for-dialogue-to-end-war-in-middle-east/", "entities": ["Pope Leo XIV", "Lebanon", "Middle East"], "impacted_assets": [], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "25e31e71-77ed-5226-a021-4d1a5be728c6", "text": "Ukrainian Hydrometeorological Center Warns of Possible Ground Frost on April 20. The Ukrainian Hydrometeorological Center has issued a warning about possible ground frost on April 20 in certain regions of Ukraine. This weather forecast may have a neutral to slightly bullish impact on gold and silver prices, as it could lead to increased demand for safe-haven assets amid potential market volatility. The USD may also be affected, potentially strengthening if the event leads to increased risk aversion.", "metadata": {"topic": "macro_geopolitics_risk", "title": "Ukrainian Hydrometeorological Center Warns of Possible Ground Frost on April 20", "original_title": "Укргідрометцентр попередив про можливі заморозки на поверхні ґрунту 20 квітня", "publish_date": "2026-04-19T16:31:50Z", "publish_timestamp": 1776616310, "source": "mig.com.ua", "url": "https://mig.com.ua/ukrhidromettsentr-poperedyv-pro-mozhlyvi-zamorozky-na-poverkhni-gruntu-20-kvitnia/", "entities": ["Ukrainian Hydrometeorological Center", "Ukraine"], "impacted_assets": ["Gold", "Silver", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 1}} +{"id": "b1b6304d-2c82-5afd-bd1b-f481e1e75573", "text": "Over 5% of job openings in Taiwan's Central Science Park offer salaries above NT$400,000; 27 companies release over 1,200 job vacancies.. The Central Science Park in Taiwan has seen significant growth, with 114-year revenue reaching NT$113 billion and a 9.29% year-over-year increase. To meet the growing demand for talent, the park's management bureau is actively recruiting and providing various services to job seekers. This event is bullish for gold prices as it indicates a strong economy and potential inflationary pressures.", "metadata": {"topic": "macro_geopolitics_risk", "title": "Over 5% of job openings in Taiwan's Central Science Park offer salaries above NT$400,000; 27 companies release over 1,200 job vacancies.", "original_title": "逾五成職缺起薪4萬元以上 中科27家廠商徵才釋出逾1200個職缺", "publish_date": "2026-04-19T16:31:50Z", "publish_timestamp": 1776616310, "source": "n.yam.com", "url": "https://n.yam.com/Article/20260419898137", "entities": ["中科管理局 (Taiwan's Central Science Park Management Bureau)", "臺中市政府勞工局 (Taichung City Government Labor Department)", "台積電 (Taiwan Semiconductor Manufacturing Company)", "美光 (Everlight Electronics Co.", "Ltd.)", "友達光電 (Largan Precision Co.", "Ltd.)", "矽品精密 (Siliconware Precision Industries Co.", "Ltd.)", "永勝光學 (Everbright Optoelectronics Technology Co.", "Ltd.)"], "impacted_assets": ["Equities", "Gold"], "volatility_implication": "Neutral", "llm_tone_score": 2}} diff --git a/Data/3_Gold_Semantic/News_Qdrant/2026-04-19/qdrant_macro_inflation_employment_processed.jsonl b/Data/3_Gold_Semantic/News_Qdrant/2026-04-19/qdrant_macro_inflation_employment_processed.jsonl new file mode 100644 index 0000000..e521994 --- /dev/null +++ b/Data/3_Gold_Semantic/News_Qdrant/2026-04-19/qdrant_macro_inflation_employment_processed.jsonl @@ -0,0 +1,9 @@ +{"id": "76147c8c-e7e3-5860-963c-01cfcdb405f5", "text": "Venezuela's INVELECAR Urges Swift Action to Eradicate Aftosa Fever. The Venezuelan Institute of Milk and Meat (INVELECAR) has issued a statement emphasizing the need for swift action to eradicate Aftosa fever in Venezuela. The institute highlights the importance of conducting a national census of livestock units and vaccination efforts to ensure food security and open up international markets. INVELECAR also notes that Venezuela is the only country in Latin America without official recognition as \"free from aftosa with vaccination\" by the World Organization for Animal Health (OMSA), limiting access to international markets.", "metadata": {"topic": "macro_inflation_employment", "title": "Venezuela's INVELECAR Urges Swift Action to Eradicate Aftosa Fever", "original_title": "INVELECAR exige acciones urgentes para erradicar la fiebre aftosa en Venezuela", "publish_date": "2026-04-19T16:30:01Z", "publish_timestamp": 1776616201, "source": "acn.com.ve", "url": "https://acn.com.ve/fiebre-aftosa-en-venezuela/", "entities": ["INVELECAR", "Ministerio de Agricultura Productiva y Tierras", "FUNVESSA", "FEDENAGA", "CONVECAR", "CONFAGAN", "PANAFTOSA", "Organización Mundial de Sanidad Animal (OMSA)", "COSALFA", "PHEFA"], "impacted_assets": [], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "57507e3b-a4dc-5298-a0a2-25a83f5cd4b2", "text": "Trump's Approval Rating Falls to New Low, According to NBC News Survey. The decline in Trump's approval rating is likely to weigh on market sentiment, particularly for gold and equities. As the president's popularity falls, investors may become more risk-averse, driving demand for safe-haven assets like gold. The weakening of Trump's support also increases the likelihood of a divided government, which could lead to policy gridlock and further uncertainty.\n\nThe macro transmission mechanism is as follows: A decline in presidential approval ratings can lead to increased market volatility, as investors become more cautious and seek safer assets. This, in turn, can drive down equities and boost gold prices. Additionally, the potential for a divided government can create uncertainty around policy decisions, leading to further market volatility.", "metadata": {"topic": "macro_inflation_employment", "title": "Trump's Approval Rating Falls to New Low, According to NBC News Survey", "original_title": "Aprobación de Trump cae a su nivel más bajo , según encuesta – Telemundo Puerto Rico", "publish_date": "2026-04-19T16:30:01Z", "publish_timestamp": 1776616201, "source": "telemundopr.com", "url": "https://www.telemundopr.com/noticias/eeuu/aprobacion-trump-nivel-bajo-segundo-mandato-encuesta/2804256/", "entities": ["Donald Trump", "NBC News Decision Desk", "SurveyMonkey"], "impacted_assets": ["Equities", "Gold", "USD"], "volatility_implication": "Decrease", "llm_tone_score": -3}} +{"id": "340ddb7a-5e12-53bb-b301-4949ddea6331", "text": "Stubborn Inflation is the Root Cause of Sluggish Economy. The article highlights the persistence of high inflation in the UK, averaging 3% since 2010, which has hindered economic growth and competitiveness. The author attributes this to expensive land use, energy consumption, and capital deployment, leading to higher costs for businesses and households. This diagnosis suggests that addressing these upstream causes is crucial to reducing inflation and stimulating economic expansion.\n\nThe tone score of -2 reflects the bearish sentiment towards the UK economy due to persistent high inflation, which may lead to decreased investor confidence and potentially lower gold prices. The article's focus on the root causes of inflation rather than downstream solutions implies a more nuanced approach to addressing the issue, which could have a stabilizing effect on markets.", "metadata": {"topic": "macro_inflation_employment", "title": "Stubborn Inflation is the Root Cause of Sluggish Economy", "original_title": "Stubborn inflation is the root cause of our sluggish economy", "publish_date": "2026-04-19T16:30:01Z", "publish_timestamp": 1776616201, "source": "thetimes.com", "url": "https://www.thetimes.com/business/economics/article/stubborn-inflation-root-cause-uk-sluggish-economy-dslhwqzbq", "entities": ["UK Government", "Labour Party", "Conservative Party", "G7 countries"], "impacted_assets": ["Equities", "Gold", "Oil", "GBP"], "volatility_implication": "Decrease", "llm_tone_score": -2}} +{"id": "05a035bd-09ec-5a31-be26-686f7eb596df", "text": "Morocco: Eid Sacrifice Goat Prices to Increase. The price of goats in Morocco is expected to increase ahead of the Eid al-Adha festival due to a complex balance between rising diesel prices and improved climate conditions. The expert notes that this situation is close to stability, but regional disparities persist due to transportation costs, farm availability, and distance from production to consumption areas. The market reflects broader economic and social dynamics, with energy costs impacting the entire value chain and agriculture helping to mitigate inflation and support purchasing power in both urban and rural areas.\n\nNote: As there are no explicit macro-financial implications or directional drivers for Gold/Silver prices, I assigned a Neutral tone score of 0.", "metadata": {"topic": "macro_inflation_employment", "title": "Morocco: Eid Sacrifice Goat Prices to Increase", "original_title": "Maroc : le mouton de lAïd sera plus cher", "publish_date": "2026-04-19T16:30:01Z", "publish_timestamp": 1776616201, "source": "bladi.net", "url": "https://www.bladi.net/maroc-mouton-aid-sera-cher,120772.html", "entities": ["Amine Sami", "Goud", "Bladi.net"], "impacted_assets": ["Livestock", "Agricultural Products", "Energy (Diesel)", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "2e83108c-4131-54ab-b19c-f2d4f8f95d19", "text": "Trump's Approval Rating Hits New Low in Second Term, Only 37% Approve His Performance. A recent NBC survey shows a significant decline in President Trump's approval rating, with only 37% of Americans approving his performance. This is the lowest level since his second term began. The majority of respondents disapprove of Trump's handling of inflation and war, which could lead to increased market volatility and potentially weigh on gold and silver prices.", "metadata": {"topic": "macro_inflation_employment", "title": "Trump's Approval Rating Hits New Low in Second Term, Only 37% Approve His Performance", "original_title": "Sondaggio , solo 37 % degli americani promuove Trump , minimo in secondo mandato - Ultima ora", "publish_date": "2026-04-19T16:30:01Z", "publish_timestamp": 1776616201, "source": "ansa.it", "url": "https://www.ansa.it/sito/notizie/topnews/2026/04/19/sondaggio-solo-37-degli-americani-promuove-trump-minimo-in-secondo-mandato_85712e13-7341-4322-84a9-fe9a864f7e10.html", "entities": ["Donald Trump", "NBC", "United States"], "impacted_assets": ["Equities", "Gold", "USD"], "volatility_implication": "Increase", "llm_tone_score": -4}} +{"id": "ed746705-ad47-5aa4-b94a-4350d806b885", "text": "Argentine Government Official's Presence at Congress to be a \"Show\" Amidst Scandal. The presence of Argentine Government Official Manuel Adorni at Congress is expected to be a \"show\" amidst scandal surrounding his alleged enrichment. This event may not have a direct impact on Gold/Silver prices, but the tone of the article suggests that it could contribute to market uncertainty and potentially affect asset prices indirectly.", "metadata": {"topic": "macro_inflation_employment", "title": "Argentine Government Official's Presence at Congress to be a \"Show\" Amidst Scandal", "original_title": "Cristian Ritondo , sobre la presencia de Manuel Adorni en el Congreso : Va a ser un show y eso no ayuda para nada ", "publish_date": "2026-04-19T16:30:01Z", "publish_timestamp": 1776616201, "source": "clarin.com", "url": "https://www.clarin.com/politica/cristian-ritondo-presencia-manuel-adorni-congreso-va-show-ayuda_0_cae1nCm1KV.html", "entities": ["Cristian Ritondo", "Manuel Adorni", "Javier Milei", "Martín Menem", "Miguel Ángel Pichetto", "Nicolás Massot", "Emilio Monzó", "Marcos Galperín", "Jorge Brito"], "impacted_assets": [], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "fedaabac-a51f-5333-b433-fdd1e6dc87bc", "text": "Calabrian Families Spend 1.76 Billion Euros on Durable Goods in 2025; Used Goods Market Supports Local Economy. The article reports that Calabrian families spent approximately 1.76 billion euros on durable goods in 2025, with a slight decrease of 0.1% compared to the previous year. The used goods market played a crucial role in supporting the local economy, which experienced a moderate contraction. This data suggests that Calabria's consumer spending habits are relatively stable and resilient, despite the overall economic slowdown.\n\nNote: As there is no explicit macro-financial or geopolitical content in this article, I did not assign any tone score or volatility implication. The summary focuses on the local economy and consumer spending trends in Calabria.", "metadata": {"topic": "macro_inflation_employment", "title": "Calabrian Families Spend 1.76 Billion Euros on Durable Goods in 2025; Used Goods Market Supports Local Economy", "original_title": "Calabria spesa familiare a 1 , 7 miliardi | lusato salva il mercato", "publish_date": "2026-04-19T16:30:01Z", "publish_timestamp": 1776616201, "source": "zazoom.it", "url": "https://www.zazoom.it/2026-04-19/calabria-spesa-familiare-a-17-miliardi-lusato-salva-il-mercato/19031519/", "entities": ["Calabria", "Italian families", "used goods market"], "impacted_assets": [], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "f62d8939-62c2-5b5b-a122-234d93cf4401", "text": "Dalal Street Week Ahead: Key Factors to Watch for Indian Equity Markets. The Indian equity market is expected to remain positive in the coming week, driven by progress in peace talks, crude oil prices stabilizing below $100, and Q4 earnings. The IMF has raised India's FY27 GDP growth forecast to 6.5%, highlighting the country's macroeconomic resilience. However, global uncertainties may lead to selective market action.", "metadata": {"topic": "macro_inflation_employment", "title": "Dalal Street Week Ahead: Key Factors to Watch for Indian Equity Markets", "original_title": "Dalal Street Week Ahead : Strait of Hormuz , Iran peace talks progress , Q4 earnings , oil prices , FII flow among 10 key factors to watch", "publish_date": "2026-04-19T16:30:01Z", "publish_timestamp": 1776616201, "source": "moneycontrol.com", "url": "https://www.moneycontrol.com/news/business/markets/dalal-street-week-ahead-strait-of-hormuz-iran-peace-talks-progress-q4-earnings-oil-prices-fii-flow-among-10-key-factors-to-watch-13893301.html", "entities": ["IMF", "India", "Iran", "US"], "impacted_assets": ["Equities (Indian)", "Crude Oil", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 2}} +{"id": "06764251-7044-5ee0-bfe4-d4a217e9de6b", "text": "Is There an Exit in Sight?. The article highlights the escalating conflict between the US and Iran, with Israel playing a significant role in fueling the tensions. The author suggests that Trump's desire to re-open the Strait of Hormuz is crucial for global oil supplies and economic stability. The piece also touches on the potential impact of the conflict on global markets, including inflation concerns in the US and recessionary risks globally. The tone is bearish due to the escalating tensions and the potential for a prolonged conflict.\n\nMacro transmission mechanism: The article suggests that the conflict could lead to increased market volatility, higher oil prices, and potentially even a global recession if the Strait of Hormuz remains blocked. This could have negative implications for gold prices, as investors seek safe-haven assets during times of uncertainty.", "metadata": {"topic": "macro_inflation_employment", "title": "Is There an Exit in Sight?", "original_title": "OPINIÓN DE JORGE DEZCALLAR | ¿ Hay salida a la vista ? ", "publish_date": "2026-04-19T16:30:01Z", "publish_timestamp": 1776616201, "source": "lne.es", "url": "https://www.lne.es/opinion/2026/04/19/hay-salida-vista-eeuu-iran-israel-libano-articulo-jorge-dezcallar-129279620.html", "entities": ["Trump", "Netanyahu", "Iran", "Israel", "Washington", "Pakistan", "United States", "Europe", "Asia", "FMI", "Pope Leo XIV"], "impacted_assets": ["Gold", "Oil", "USD", "Equities"], "volatility_implication": "Increase", "llm_tone_score": -2}} diff --git a/Data/3_Gold_Semantic/News_Qdrant/2026-04-19/qdrant_macro_yields_dollar_processed.jsonl b/Data/3_Gold_Semantic/News_Qdrant/2026-04-19/qdrant_macro_yields_dollar_processed.jsonl new file mode 100644 index 0000000..95db083 --- /dev/null +++ b/Data/3_Gold_Semantic/News_Qdrant/2026-04-19/qdrant_macro_yields_dollar_processed.jsonl @@ -0,0 +1,7 @@ +{"id": "11122531-30db-51dd-979f-7533b3590e11", "text": "15-Year-Old Girl Asks Elon Musk 8 Questions Before Her Death; He Answers Them. A 15-year-old girl named Liv, who was battling cancer, had the opportunity to ask Elon Musk eight questions before her passing. After her death, her mother shared the handwritten list of questions with Glenn Beck, who then posted it online. Musk responded directly to the post, answering each question. This heartwarming story highlights the impact that people can have on one another, even in the face of adversity.\n\nNote: As there is no macro-financial or geopolitical content in this article, the tone score is neutral. The event does not have a direct impact on gold or silver prices.", "metadata": {"topic": "macro_yields_dollar", "title": "15-Year-Old Girl Asks Elon Musk 8 Questions Before Her Death; He Answers Them", "original_title": "15 - Jährige stellte Elon Musk 8 Fragen vor ihrem Tod – der beantwortet sie", "publish_date": "2026-04-19T16:31:05Z", "publish_timestamp": 1776616265, "source": "focus.de", "url": "https://www.focus.de/panorama/welt/15-jaehrige-stellte-elon-musk-8-fragen-vor-ihrem-tod-der-beantwortet-sie_10ab5d50-13c0-427c-8a3e-2ff98404480f.html", "entities": ["Liv Perrotto", "Elon Musk", "Glenn Beck", "Rebecca Perrotto", "Igor Babuschkin"], "impacted_assets": [], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "2381d3bb-f84f-571f-9f09-7a0eece18490", "text": "Greenhouse Revolution: How Controlled Farming is Transforming Global Produce Markets. The article discusses the growth of greenhouse farming as a sustainable and efficient way to produce fruits and vegetables. While this trend has positive implications for food security, it does not have a direct impact on gold or silver prices. However, the global supply chain disruption alert mentioned at the end may have some indirect effects on commodity prices.\n\nNote: The tone score is neutral because there are no macroeconomic drivers that would directly affect gold or silver prices. The article focuses on the agricultural sector and its growth, which does not have a significant impact on the precious metals market.", "metadata": {"topic": "macro_yields_dollar", "title": "Greenhouse Revolution: How Controlled Farming is Transforming Global Produce Markets", "original_title": "Greenhouse Revolution : How Controlled Farming is Transforming Global Produce Markets", "publish_date": "2026-04-19T16:31:05Z", "publish_timestamp": 1776616265, "source": "briefingwire.com", "url": "https://www.briefingwire.com/pr/greenhouse-revolution-how-controlled-farming-is-transforming-global-produce-markets", "entities": ["None explicitly mentioned"], "impacted_assets": [], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "f62d8939-62c2-5b5b-a122-234d93cf4401", "text": "Dalal Street Week Ahead: Key Factors to Watch for Indian Equity Markets. The Indian equity market is expected to remain positive in the coming week, driven by progress in peace talks, crude oil prices stabilizing below $100, and Q4 earnings. The IMF has raised India's FY27 GDP growth forecast to 6.5%, highlighting the country's macroeconomic resilience. However, global uncertainties may lead to selective market action.", "metadata": {"topic": "macro_yields_dollar", "title": "Dalal Street Week Ahead: Key Factors to Watch for Indian Equity Markets", "original_title": "Dalal Street Week Ahead : Strait of Hormuz , Iran peace talks progress , Q4 earnings , oil prices , FII flow among 10 key factors to watch", "publish_date": "2026-04-19T16:31:05Z", "publish_timestamp": 1776616265, "source": "moneycontrol.com", "url": "https://www.moneycontrol.com/news/business/markets/dalal-street-week-ahead-strait-of-hormuz-iran-peace-talks-progress-q4-earnings-oil-prices-fii-flow-among-10-key-factors-to-watch-13893301.html", "entities": ["IMF", "India", "Iran", "US"], "impacted_assets": ["Equities (Indian)", "Crude Oil", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 2}} +{"id": "0d18ced9-2f0f-5375-bfa0-87a7dce9ff89", "text": "Creating Sustainable Food Systems for Human and Planetary Health. The article discusses the need for sustainable food systems that prioritize human and planetary health. It highlights the significant environmental impact of agriculture, including greenhouse gas emissions, water usage, and deforestation. The authors emphasize the importance of addressing Scope 3 emissions, which account for a large portion of a company's carbon footprint. While this topic may not have a direct impact on gold or silver prices, it could indirectly influence commodity markets through its focus on sustainable practices and environmental concerns.\n\nNote: As per the instructions, I did not assign a tone score based on the expected impact on Gold/Silver prices since there is no clear directional macro driver in this article.", "metadata": {"topic": "macro_yields_dollar", "title": "Creating Sustainable Food Systems for Human and Planetary Health", "original_title": "We Can Create Food Systems That Enhance Human & Planetary Health", "publish_date": "2026-04-19T16:31:05Z", "publish_timestamp": 1776616265, "source": "cleantechnica.com", "url": "https://cleantechnica.com/2026/04/19/we-can-create-food-systems-that-enhance-human-planetary-health/", "entities": ["World Resources Institute", "Elena Bou", "Forbes", "Advances in Nutrition"], "impacted_assets": [], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "957deb23-6823-5c84-8ff6-9a3fe5bc3749", "text": "Deportes Tolima Confirms Quarterfinal Spot in Liga BetPlay I of 2026, Cali and Fortaleza Maintain Options. The Liga BetPlay I of 2026 has seen Deportes Tolima confirm its quarterfinal spot after defeating Deportivo Pereira. Meanwhile, Deportivo Cali and Fortaleza maintain their options for qualification. This event does not have a direct impact on the macro-financial landscape or the gold/silver markets.\n\nNote: As this article is about a sports tournament, it has no relevance to the financial market or the trading desk's focus on Gold/Silver Options.", "metadata": {"topic": "macro_yields_dollar", "title": "Deportes Tolima Confirms Quarterfinal Spot in Liga BetPlay I of 2026, Cali and Fortaleza Maintain Options", "original_title": "Tabla de posiciones de la Liga BetPlay : Tolima clasifica , Cali cede y Fortaleza mantiene opciones", "publish_date": "2026-04-19T16:31:05Z", "publish_timestamp": 1776616265, "source": "vanguardia.com", "url": "https://www.vanguardia.com/deportes/futbol/2026/04/19/tabla-de-posiciones-de-la-liga-betplay-tolima-clasifica-cali-cede-y-fortaleza-mantiene-opciones/", "entities": ["Deportes Tolima", "Deportivo Pereira", "Deportivo Cali", "Fortaleza", "Atlético Nacional", "Deportivo Pasto", "Jaguares"], "impacted_assets": [], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "1ece9a16-9a7f-54a1-a0a0-f96978080a3f", "text": "Warning: This War Will Also Affect Your Portfolio - And Many Won't Realize It Until Too Late. The escalating conflict in the Middle East is driving up energy prices and posing a structural risk to the global economy. Rising energy costs will increase inflationary pressure, threaten rate cuts, and shake equity markets. However, this crisis also presents opportunities for companies that profit from higher energy prices, such as oil and gas producers, utilities, renewable energy providers, and select commodity and agricultural stocks.", "metadata": {"topic": "macro_yields_dollar", "title": "Warning: This War Will Also Affect Your Portfolio - And Many Won't Realize It Until Too Late", "original_title": "Stefan Schrader warnt : Dieser Krieg trifft auch Ihr Depot - und viele merken es zu spät", "publish_date": "2026-04-19T16:31:05Z", "publish_timestamp": 1776616265, "source": "finanznachrichten.de", "url": "https://www.finanznachrichten.de/nachrichten-2026-04/68236172-stefan-schrader-warnt-dieser-krieg-trifft-auch-ihr-depot-und-viele-merken-es-zu-spaet-049.htm", "entities": ["Stefan Schrader", "Iran", "Hormuz Strait", "LNG", "Oil"], "impacted_assets": ["Equities", "Gold", "Oil", "USD"], "volatility_implication": "Increase", "llm_tone_score": 2}} +{"id": "aec76206-9966-5f05-9a99-3cfcb0eb8ab7", "text": "Ponte Mobile for Porto di Livorno Repaired, Fragility Remains. The ponte mobile connecting the Fi-Pi-Li highway to the Porto di Livorno has been repaired after a structural failure on March 6. Although the repair is complete, the structure remains fragile, according to authorities. This event does not have a direct impact on gold or silver prices but may indirectly affect regional economic activity and port operations, which could influence market sentiment.", "metadata": {"topic": "macro_yields_dollar", "title": "Ponte Mobile for Porto di Livorno Repaired, Fragility Remains", "original_title": "Fipili | ponte mobile per il Porto di Livorno ripristinato Autorità Portuale | Resta la fragilità Ma Giani è soddisfatto", "publish_date": "2026-04-19T16:31:05Z", "publish_timestamp": 1776616265, "source": "zazoom.it", "url": "https://www.zazoom.it/2026-04-19/fipili-ponte-mobile-per-il-porto-di-livorno-ripristinato-autorita-portuale-resta-la-fragilita-ma-giani-e-soddisfatto/19031572/", "entities": ["Fipili", "Autorità Portuale", "Città Metropolitana di Firenze", "Regione", "Avr spa"], "impacted_assets": [], "volatility_implication": "Neutral", "llm_tone_score": 0}} diff --git a/Data/3_Gold_Semantic/SEC_Insider_Trades/2026-04-08/qdrant_ready.jsonl b/Data/3_Gold_Semantic/SEC_Insider_Trades/2026-04-08/qdrant_ready.jsonl new file mode 100644 index 0000000..84369a1 --- /dev/null +++ b/Data/3_Gold_Semantic/SEC_Insider_Trades/2026-04-08/qdrant_ready.jsonl @@ -0,0 +1,59 @@ +{"text": "O'Toole Amie Thuener (Vp, Chief Accounting Officer) of GOOG sold 617 shares worth $178,701.71.", "metadata": {"ticker": "GOOG", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001193125-26-142372", "url": "https://www.sec.gov/Archives/edgar/data/1652044/000119312526142372/xslF345X06/ownership.xml", "ingested_at": "2026-04-08T12:48:30.190015", "transaction_date": "2026-04-01", "tone_score": -5, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-08T17:12:28.348352"}} +{"text": "O'Toole Amie Thuener (Vp, Chief Accounting Officer) of GOOGL sold 617 shares worth $178,701.71.", "metadata": {"ticker": "GOOGL", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001193125-26-142372", "url": "https://www.sec.gov/Archives/edgar/data/1652044/000119312526142372/xslF345X06/ownership.xml", "ingested_at": "2026-04-08T12:48:29.315822", "transaction_date": "2026-04-01", "tone_score": -5, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-08T17:12:28.347635"}} +{"text": "Lilak Stephanie (Evp And Chief People Officer) of MDLZ acquired (via RSU vesting) 3,218 shares worth $0.00.", "metadata": {"ticker": "MDLZ", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001628280-26-023648", "url": "https://www.sec.gov/Archives/edgar/data/1103982/000162828026023648/xslF345X06/wk-form4_1775247097.xml", "ingested_at": "2026-04-08T12:48:53.535143", "transaction_date": "2026-04-01", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-08T17:12:28.348741"}} +{"text": "Kuhn Volker (Evp And President, Europe) of MDLZ acquired (via RSU vesting) 90 shares worth $0.00.", "metadata": {"ticker": "MDLZ", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001628280-26-023646", "url": "https://www.sec.gov/Archives/edgar/data/1103982/000162828026023646/xslF345X06/wk-form4_1775247057.xml", "ingested_at": "2026-04-08T12:48:53.778010", "transaction_date": "2026-04-01", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-08T17:12:28.348769"}} +{"text": "Sanders Adam (Corp. Controller & Cao) of AMAT acquired (via RSU vesting) 125 shares worth $0.00.", "metadata": {"ticker": "AMAT", "form_type": "4", "filed_at": "2026-04-02", "accession_no": "0001628280-26-023379", "url": "https://www.sec.gov/Archives/edgar/data/6951/000162828026023379/xslF345X06/wk-form4_1775169858.xml", "ingested_at": "2026-04-08T12:48:46.179586", "transaction_date": "2026-04-01", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-08T17:12:28.348296"}} +{"text": "LEWIS AYLWIN B (Other) of MAR acquired (via RSU vesting) 11 shares worth $0.00.", "metadata": {"ticker": "MAR", "form_type": "4", "filed_at": "2026-04-01", "accession_no": "0001225208-26-004132", "url": "https://www.sec.gov/Archives/edgar/data/1048286/000122520826004132/xslF345X06/doc4.xml", "ingested_at": "2026-04-08T12:49:02.493404", "transaction_date": "2026-03-31", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-08T17:12:28.347263"}} +{"text": "Broadcom and Google entered into a Long Term Agreement for custom TPUs and Supply Assurance Agreement for networking components. Anthropic will access approximately 3.5 gigawatts of next-generation TPU-based AI compute capacity starting in 2027, dependent on commercial success.", "metadata": {"ticker": "AVGO", "form_type": "8-K", "filed_at": "2026-04-06", "accession_no": "0001193125-26-144028", "url": "https://www.sec.gov/Archives/edgar/data/1730168/000119312526144028/d87999d8k.htm", "ingested_at": "2026-04-08T12:48:32.383033", "transaction_date": "2023-02-14", "tone_score": 0, "action_direction": "NONE", "topics": ["Mergers and Acquisitions", "Partnership", "Technology", "Forward-Looking Statements"], "processed_at": "2026-04-08T17:12:40.429912"}} +{"text": "O'BRIEN DEIRDRE (Senior Vice President) of AAPL sold 128,634 shares worth $7,660,875.04 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "AAPL", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001140361-26-013192", "url": "https://www.sec.gov/Archives/edgar/data/320193/000114036126013192/xslF345X06/form4.xml", "ingested_at": "2026-04-08T12:48:26.662928", "transaction_date": "2026-04-01", "tone_score": -1, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-08T17:12:40.430018"}} +{"text": "Khan Sabih (Coo) of AAPL acquired (via RSU vesting) 97,634 shares worth $0.00.", "metadata": {"ticker": "AAPL", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001140361-26-013191", "url": "https://www.sec.gov/Archives/edgar/data/320193/000114036126013191/xslF345X06/form4.xml", "ingested_at": "2026-04-08T12:48:26.888609", "transaction_date": "2026-04-01", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-08T17:12:40.430044"}} +{"text": "COOK TIMOTHY D (Chief Executive Officer) of AAPL sold 263,152 shares worth $16,512,197.73 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "AAPL", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001140361-26-013190", "url": "https://www.sec.gov/Archives/edgar/data/320193/000114036126013190/xslF345X06/form4.xml", "ingested_at": "2026-04-08T12:48:27.106687", "transaction_date": "2026-04-01", "tone_score": -1, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-08T17:12:40.430068"}} +{"text": "Liu Joy (Evp And Chief Legal Officer) of VRTX sold 978 shares worth $439,288.26 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "VRTX", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0000875320-26-000157", "url": "https://www.sec.gov/Archives/edgar/data/875320/000087532026000157/xslF345X06/wk-form4_1775249628.xml", "ingested_at": "2026-04-08T12:48:51.663358", "transaction_date": "2026-04-01", "tone_score": -1, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-08T17:12:40.430084"}} +{"text": "Herrington Douglas J (Ceo Worldwide Amazon Stores) of AMZN sold 1,000 shares worth $210,500.00 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "AMZN", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001018724-26-000010", "url": "https://www.sec.gov/Archives/edgar/data/1018724/000101872426000010/xslF345X06/wk-form4_1775248886.xml", "ingested_at": "2026-04-08T12:48:28.351458", "transaction_date": "2026-04-01", "tone_score": -1, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-08T17:12:40.430099"}} +{"text": "Broadcom Inc. announces the departure of Chief Financial Officer Kirsten M. Spears and her replacement by Amie Thuener, effective June 12, 2026.", "metadata": {"ticker": "AVGO", "form_type": "8-K", "filed_at": "2026-04-02", "accession_no": "0001193125-26-140574", "url": "https://www.sec.gov/Archives/edgar/data/1730168/000119312526140574/d109450d8k.htm", "ingested_at": "2026-04-08T12:48:32.628969", "transaction_date": "2026-03-30", "tone_score": 0, "action_direction": "NONE", "topics": ["Executive Changes", "Financial Officers", "Compensation"], "processed_at": "2026-04-08T17:12:43.230569"}} +{"text": "Paul Josh D. (Chief Accounting Officer) of PANW sold 2,047 shares worth $177,540.00 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "PANW", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001882285-26-000007", "url": "https://www.sec.gov/Archives/edgar/data/1327567/000188228526000007/xslF345X06/ownership.xml", "ingested_at": "2026-04-08T12:48:52.842465", "transaction_date": "2026-04-01", "tone_score": -1, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-08T17:12:43.230647"}} +{"text": "Golechha Dipak (Evp, Chief Financial Officer) of PANW sold 5,000 shares worth $802,076.70 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "PANW", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001852540-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/1327567/000185254026000002/xslF345X06/ownership.xml", "ingested_at": "2026-04-08T12:48:53.042265", "transaction_date": "2026-04-01", "tone_score": -1, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-08T17:12:43.230671"}} +{"text": "ARNZEN APRIL S (Evp And Chief People Officer) of MU sold 40,000 shares worth $13,895,761.74 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "MU", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001632063-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/723125/000163206326000002/xslF345X06/primarydocument.xml", "ingested_at": "2026-04-08T12:48:57.862487", "transaction_date": "2026-04-01", "tone_score": -1, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-08T17:12:43.230689"}} +{"text": "Liu Teyin M (Director) of MU acquired (via RSU vesting) 97 shares worth $0.00.", "metadata": {"ticker": "MU", "form_type": "4", "filed_at": "2026-04-02", "accession_no": "0002058769-26-000003", "url": "https://www.sec.gov/Archives/edgar/data/723125/000205876926000003/xslF345X06/primarydocument.xml", "ingested_at": "2026-04-08T12:48:58.070656", "transaction_date": "2026-03-31", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-08T17:12:43.230706"}} +{"text": "Alphabet Inc.'s Vice President, Corporate Controller and Principal Accounting Officer Amie Thuener O'Toole resigned effective April 9, 2026, to pursue another opportunity. The resignation was not due to any disagreement with the company.", "metadata": {"ticker": "GOOG", "form_type": "8-K", "filed_at": "2026-04-02", "accession_no": "0001652044-26-000031", "url": "https://www.sec.gov/Archives/edgar/data/1652044/000165204426000031/goog-20260330.htm", "ingested_at": "2026-04-08T12:48:30.394411", "transaction_date": "2026-03-30", "tone_score": 0, "action_direction": "NONE", "topics": ["Executive Departure", "Accounting"], "processed_at": "2026-04-08T17:12:46.150798"}} +{"text": "Goodarzi Sasan K (Ceo, President And Director) of INTU acquired (via RSU vesting) 4,521 shares worth $0.00.", "metadata": {"ticker": "INTU", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001628280-26-023706", "url": "https://www.sec.gov/Archives/edgar/data/896878/000162828026023706/xslF345X06/wk-form4_1775249487.xml", "ingested_at": "2026-04-08T12:48:40.705654", "transaction_date": "2026-04-01", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-08T17:12:46.151014"}} +{"text": "McLean Kerry J (Evp, Gen. Counsel & Corp. Sec.) of INTU acquired (via RSU vesting) 1,151 shares worth $0.00.", "metadata": {"ticker": "INTU", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001628280-26-023704", "url": "https://www.sec.gov/Archives/edgar/data/896878/000162828026023704/xslF345X06/wk-form4_1775249417.xml", "ingested_at": "2026-04-08T12:48:40.933207", "transaction_date": "2026-04-01", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-08T17:12:46.151034"}} +{"text": "Hotz Lauren D (Svp, Chief Accounting Officer) of INTU acquired (via RSU vesting) 451 shares worth $0.00.", "metadata": {"ticker": "INTU", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001628280-26-023701", "url": "https://www.sec.gov/Archives/edgar/data/896878/000162828026023701/xslF345X06/wk-form4_1775249278.xml", "ingested_at": "2026-04-08T12:48:41.133725", "transaction_date": "2026-04-01", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-08T17:12:46.151053"}} +{"text": "Hilliard Caryl Lyn (Evp, People And Places) of INTU acquired (via RSU vesting) 681 shares worth $0.00.", "metadata": {"ticker": "INTU", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001628280-26-023698", "url": "https://www.sec.gov/Archives/edgar/data/896878/000162828026023698/xslF345X06/wk-form4_1775249186.xml", "ingested_at": "2026-04-08T12:48:41.343578", "transaction_date": "2026-04-01", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-08T17:12:46.151070"}} +{"text": "Hanebrink Anton (Evp, Corp Strategy And Dev) of INTU acquired (via RSU vesting) 1,242 shares worth $0.00.", "metadata": {"ticker": "INTU", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001628280-26-023696", "url": "https://www.sec.gov/Archives/edgar/data/896878/000162828026023696/xslF345X06/wk-form4_1775249122.xml", "ingested_at": "2026-04-08T12:48:41.573994", "transaction_date": "2026-04-01", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-08T17:12:46.151087"}} +{"text": "Aujla Sandeep (Evp And Cfo) of INTU acquired (via RSU vesting) 5,085 shares worth $0.00.", "metadata": {"ticker": "INTU", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001628280-26-023690", "url": "https://www.sec.gov/Archives/edgar/data/896878/000162828026023690/xslF345X06/wk-form4_1775248743.xml", "ingested_at": "2026-04-08T12:48:41.795152", "transaction_date": "2026-04-01", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-08T17:12:46.151102"}} +{"text": "Neumann Spencer Adam (Chief Financial Officer) of NFLX sold 57,260 shares worth $2,805,740.00 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "NFLX", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001543133-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/1065280/000154313326000002/xslF345X06/wk-form4_1775246849.xml", "ingested_at": "2026-04-08T12:48:34.271973", "transaction_date": "2026-04-02", "tone_score": -1, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-08T17:12:46.151119"}} +{"text": "HASTINGS REED (Other) of NFLX sold 841,100 shares worth $40,156,465.06 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "NFLX", "form_type": "4", "filed_at": "2026-04-02", "accession_no": "0001065280-26-000134", "url": "https://www.sec.gov/Archives/edgar/data/1065280/000106528026000134/xslF345X06/wk-form4_1775167354.xml", "ingested_at": "2026-04-08T12:48:34.906612", "transaction_date": "2026-04-01", "tone_score": -1, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-08T17:12:46.151150"}} +{"text": "Frates Caton (Executive Vice President) of COST sold 700 shares worth $695,100.00.", "metadata": {"ticker": "COST", "form_type": "4", "filed_at": "2026-04-01", "accession_no": "0000909832-26-000039", "url": "https://www.sec.gov/Archives/edgar/data/909832/000090983226000039/xslF345X06/form4.xml", "ingested_at": "2026-04-08T12:48:33.357291", "transaction_date": "2026-04-01", "tone_score": -3, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-08T17:12:46.151234"}} +{"text": "Alphabet Inc.'s Vice President, Corporate Controller and Principal Accounting Officer Amie Thuener O'Toole resigned effective April 9, 2026, to pursue another opportunity. The resignation was not due to any disagreement with the company.", "metadata": {"ticker": "GOOGL", "form_type": "8-K", "filed_at": "2026-04-02", "accession_no": "0001652044-26-000031", "url": "https://www.sec.gov/Archives/edgar/data/1652044/000165204426000031/goog-20260330.htm", "ingested_at": "2026-04-08T12:48:29.521443", "transaction_date": "2026-03-30", "tone_score": 0, "action_direction": "NONE", "topics": ["Executive Departure", "Accounting Officer"], "processed_at": "2026-04-08T17:12:49.085630"}} +{"text": "Murdock Daniel C. (Evp & Chief Accounting Officer) of CMCSA acquired (via RSU vesting) 7,341 shares worth $0.00.", "metadata": {"ticker": "CMCSA", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001225208-26-004342", "url": "https://www.sec.gov/Archives/edgar/data/1166691/000122520826004342/xslF345X06/doc4.xml", "ingested_at": "2026-04-08T12:48:43.821475", "transaction_date": "2026-04-03", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-08T17:12:49.085719"}} +{"text": "Smith Gordon (Other) of CMCSA acquired (via RSU vesting) 1,176 shares worth $0.00.", "metadata": {"ticker": "CMCSA", "form_type": "4", "filed_at": "2026-04-02", "accession_no": "0001225208-26-004203", "url": "https://www.sec.gov/Archives/edgar/data/1166691/000122520826004203/xslF345X06/doc4.xml", "ingested_at": "2026-04-08T12:48:44.045592", "transaction_date": "2026-03-31", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-08T17:12:49.085742"}} +{"text": "Honickman Jeffrey A (Other) of CMCSA acquired (via RSU vesting) 1,524 shares worth $0.00.", "metadata": {"ticker": "CMCSA", "form_type": "4", "filed_at": "2026-04-02", "accession_no": "0001225208-26-004202", "url": "https://www.sec.gov/Archives/edgar/data/1166691/000122520826004202/xslF345X06/doc4.xml", "ingested_at": "2026-04-08T12:48:44.268546", "transaction_date": "2026-03-31", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-08T17:12:49.085761"}} +{"text": "BREEN EDWARD D (Other) of CMCSA acquired (via RSU vesting) 697 shares worth $0.00.", "metadata": {"ticker": "CMCSA", "form_type": "4", "filed_at": "2026-04-02", "accession_no": "0001225208-26-004201", "url": "https://www.sec.gov/Archives/edgar/data/1166691/000122520826004201/xslF345X06/doc4.xml", "ingested_at": "2026-04-08T12:48:44.473523", "transaction_date": "2026-03-31", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-08T17:12:49.085778"}} +{"text": "Brady Louise F. (Other) of CMCSA acquired (via RSU vesting) 1,176 shares worth $0.00.", "metadata": {"ticker": "CMCSA", "form_type": "4", "filed_at": "2026-04-02", "accession_no": "0001225208-26-004200", "url": "https://www.sec.gov/Archives/edgar/data/1166691/000122520826004200/xslF345X06/doc4.xml", "ingested_at": "2026-04-08T12:48:44.697700", "transaction_date": "2026-03-31", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-08T17:12:49.085793"}} +{"text": "Baltimore Thomas J Jr (Other) of CMCSA acquired (via RSU vesting) 1,176 shares worth $0.00.", "metadata": {"ticker": "CMCSA", "form_type": "4", "filed_at": "2026-04-02", "accession_no": "0001225208-26-004199", "url": "https://www.sec.gov/Archives/edgar/data/1166691/000122520826004199/xslF345X06/doc4.xml", "ingested_at": "2026-04-08T12:48:44.896983", "transaction_date": "2026-03-31", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-08T17:12:49.085808"}} +{"text": "Establishment of performance goals under the 2026 Bonus Program and adoption of the 2026 Long Term Retention Program.", "metadata": {"ticker": "MELI", "form_type": "8-K", "filed_at": "2026-04-03", "accession_no": "0001999371-26-007656", "url": "https://www.sec.gov/Archives/edgar/data/1099590/000199937126007656/meli_8k-033126.htm", "ingested_at": "2026-04-08T12:48:59.995354", "transaction_date": "2026-03-31", "tone_score": 0, "action_direction": "NONE", "topics": ["Compensation", "Executive Management", "Performance Goals"], "processed_at": "2026-04-08T17:12:51.679444"}} +{"text": "RYAN ARTHUR F (Other) of REGN sold 100 shares worth $77,727.28 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "REGN", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001104659-26-039613", "url": "https://www.sec.gov/Archives/edgar/data/872589/000110465926039613/xslF345X06/tm2611142-1_4seq1.xml", "ingested_at": "2026-04-08T12:48:54.906167", "transaction_date": "2026-04-01", "tone_score": -1, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-08T17:12:51.679523"}} +{"text": "Zhu Xiaotong (Svp) of TSLA acquired (via RSU vesting) 20,000 shares worth $0.00.", "metadata": {"ticker": "TSLA", "form_type": "4", "filed_at": "2026-04-02", "accession_no": "0001972928-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/1318605/000197292826000002/xslF345X06/edgardoc.xml", "ingested_at": "2026-04-08T12:48:31.110524", "transaction_date": "2026-03-31", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-08T17:12:51.679545"}} +{"text": "Micron Technology, Inc. issued press releases announcing the pricing of its cash tender offers for outstanding senior notes and the expiration of those offers.", "metadata": {"ticker": "MU", "form_type": "8-K", "filed_at": "2026-04-01", "accession_no": "0001104659-26-038249", "url": "https://www.sec.gov/Archives/edgar/data/723125/000110465926038249/tm2610810d1_8k.htm", "ingested_at": "2026-04-08T12:48:58.540588", "transaction_date": "2026-04-01", "tone_score": 0, "action_direction": "NONE", "topics": ["Tender Offer", "Financial Statement"], "processed_at": "2026-04-08T17:12:54.131398"}} +{"text": "Wilson-Thompson Kathleen (Other) of TSLA sold 65,809 shares worth $9,273,888.40 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "TSLA", "form_type": "4", "filed_at": "2026-04-01", "accession_no": "0001104659-26-038682", "url": "https://www.sec.gov/Archives/edgar/data/1318605/000110465926038682/xslF345X06/tm2610684-1_4seq1.xml", "ingested_at": "2026-04-08T12:48:31.571595", "transaction_date": "2026-03-30", "tone_score": -1, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-08T17:12:54.131501"}} +{"text": "CrowdStrike announces $500 million additional share repurchase authorization, bringing total to $1.5 billion.", "metadata": {"ticker": "CRWD", "form_type": "8-K", "filed_at": "2026-04-06", "accession_no": "0001535527-26-000013", "url": "https://www.sec.gov/Archives/edgar/data/1535527/000153552726000013/crwd-20260406.htm", "ingested_at": "2026-04-08T12:49:01.938568", "transaction_date": "2026-04-06", "tone_score": 0, "action_direction": "NONE", "topics": ["M&A", "Share Repurchase"], "processed_at": "2026-04-08T17:12:56.338764"}} +{"text": "Regeneron Pharmaceuticals, Inc. expects an acquired in-process research and development charge of approximately $102 million on a pre-tax basis for the first quarter 2026, which will negatively impact GAAP and non-GAAP net income per diluted share by approximately $0.81.", "metadata": {"ticker": "REGN", "form_type": "8-K", "filed_at": "2026-04-08", "accession_no": "0001104659-26-040661", "url": "https://www.sec.gov/Archives/edgar/data/872589/000110465926040661/tm2611354d1_8k.htm", "ingested_at": "2026-04-08T12:48:54.660815", "transaction_date": "2023-04-28", "tone_score": 0, "action_direction": "NONE", "topics": ["Financial Results", "Guidance", "Forward-Looking Statements", "Non-GAAP Financial Measures"], "processed_at": "2026-04-08T17:13:00.103784"}} +{"text": "Cunningham Paul (Sr. Vice President) of CDNS sold 1,000 shares worth $280,190.00 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "CDNS", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0000813672-26-000040", "url": "https://www.sec.gov/Archives/edgar/data/813672/000081367226000040/xslF345X06/wk-form4_1775243708.xml", "ingested_at": "2026-04-08T12:48:59.459023", "transaction_date": "2026-04-01", "tone_score": -1, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-08T17:13:00.103886"}} +{"text": "ROCHE VINCENT (Chair & Ceo) of ADI sold 20,000 shares worth $3,181,400.00 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "ADI", "form_type": "4", "filed_at": "2026-04-03", "accession_no": "0001201872-26-000008", "url": "https://www.sec.gov/Archives/edgar/data/6281/000120187226000008/xslF345X06/wk-form4_1775247205.xml", "ingested_at": "2026-04-08T12:48:56.199337", "transaction_date": "2026-04-01", "tone_score": -1, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-08T17:13:00.103904"}} +{"text": "Sondel Michael (Cao (Principal Acct. Officer)) of ADI acquired (via RSU vesting) 406 shares worth $0.00.", "metadata": {"ticker": "ADI", "form_type": "4", "filed_at": "2026-04-01", "accession_no": "0001768266-26-000004", "url": "https://www.sec.gov/Archives/edgar/data/6281/000176826626000004/xslF345X06/wk-form4_1775074685.xml", "ingested_at": "2026-04-08T12:48:56.418972", "transaction_date": "2026-03-30", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-08T17:13:00.103920"}} +{"text": "ROCHE VINCENT (Chair & Ceo) of ADI acquired (via RSU vesting) 27,027 shares worth $0.00.", "metadata": {"ticker": "ADI", "form_type": "4", "filed_at": "2026-04-01", "accession_no": "0001201872-26-000006", "url": "https://www.sec.gov/Archives/edgar/data/6281/000120187226000006/xslF345X06/wk-form4_1775074650.xml", "ingested_at": "2026-04-08T12:48:56.676905", "transaction_date": "2026-03-30", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-08T17:13:00.103943"}} +{"text": "Nakamura Katsufumi (Svp, Chief Customer Officer) of ADI acquired (via RSU vesting) 121 shares worth $0.00.", "metadata": {"ticker": "ADI", "form_type": "4", "filed_at": "2026-04-01", "accession_no": "0002044259-26-000007", "url": "https://www.sec.gov/Archives/edgar/data/6281/000204425926000007/xslF345X06/wk-form4_1775074599.xml", "ingested_at": "2026-04-08T12:48:56.894938", "transaction_date": "2026-03-30", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-08T17:13:00.103957"}} +{"text": "Jain Vivek (Evp, Global Operations) of ADI acquired (via RSU vesting) 6,386 shares worth $0.00.", "metadata": {"ticker": "ADI", "form_type": "4", "filed_at": "2026-04-01", "accession_no": "0000006281-26-000037", "url": "https://www.sec.gov/Archives/edgar/data/6281/000000628126000037/xslF345X06/wk-form4_1775074566.xml", "ingested_at": "2026-04-08T12:48:57.102825", "transaction_date": "2026-03-30", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-08T17:13:00.103972"}} +{"text": "Cotter Martin (Svp, Vertical Business Units) of ADI acquired (via RSU vesting) 3,881 shares worth $0.00.", "metadata": {"ticker": "ADI", "form_type": "4", "filed_at": "2026-04-01", "accession_no": "0001685760-26-000004", "url": "https://www.sec.gov/Archives/edgar/data/6281/000168576026000004/xslF345X06/wk-form4_1775074528.xml", "ingested_at": "2026-04-08T12:48:57.316644", "transaction_date": "2026-03-30", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-08T17:13:00.103984"}} +{"text": "Shimer Peter A (Other) of CSCO acquired (via RSU vesting) 2,333 shares worth $0.00.", "metadata": {"ticker": "CSCO", "form_type": "4", "filed_at": "2026-04-07", "accession_no": "0000858877-26-000052", "url": "https://www.sec.gov/Archives/edgar/data/858877/000085887726000052/xslF345X06/wk-form4_1775592372.xml", "ingested_at": "2026-04-08T12:48:37.663506", "transaction_date": "2026-04-06", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-08T17:13:00.103997"}} +{"text": "Tesla publishes press release on April 2, 2026, announcing results of operations and financial condition. No additional information provided.", "metadata": {"ticker": "TSLA", "form_type": "8-K", "filed_at": "2026-04-02", "accession_no": "0001628280-26-022956", "url": "https://www.sec.gov/Archives/edgar/data/1318605/000162828026022956/tsla-20260402.htm", "ingested_at": "2026-04-08T12:48:31.313708", "transaction_date": "2026-04-02", "tone_score": 0, "action_direction": "NONE", "topics": ["financials", "operations"], "processed_at": "2026-04-08T17:13:02.245396"}} +{"text": "Intel's Executive Vice President and Chief Legal Officer, April Miller Boise, will separate from the company effective June 1, 2026, and receive severance benefits in accordance with the Intel Corporation Executive Severance Plan.", "metadata": {"ticker": "INTC", "form_type": "8-K", "filed_at": "2026-04-03", "accession_no": "0000050863-26-000069", "url": "https://www.sec.gov/Archives/edgar/data/50863/000005086326000069/intc-20260330.htm", "ingested_at": "2026-04-08T12:48:45.429994", "transaction_date": "2026-03-30", "tone_score": 0, "action_direction": "NONE", "topics": ["Executive Departure", "Severance Benefits"], "processed_at": "2026-04-08T17:13:05.107708"}} +{"text": "Starbucks completed the transaction to form a joint venture with Boyu Capital, acquiring a 60% interest in its retail operations in China.", "metadata": {"ticker": "SBUX", "form_type": "8-K", "filed_at": "2026-04-02", "accession_no": "0000829224-26-000064", "url": "https://www.sec.gov/Archives/edgar/data/829224/000082922426000064/sbux-20260402.htm", "ingested_at": "2026-04-08T12:48:52.264984", "transaction_date": "2026-04-02", "tone_score": 0, "action_direction": "NONE", "topics": ["Mergers and Acquisitions", "China Operations"], "processed_at": "2026-04-08T17:13:07.495474"}} +{"text": "Cisco Systems, Inc. announces the departure of Director Daniel H. Schulman due to his new role at Verizon Communications Inc., and the appointment of Peter A. Shimer as a member of the Board effective April 6, 2026.", "metadata": {"ticker": "CSCO", "form_type": "8-K", "filed_at": "2026-04-06", "accession_no": "0000858877-26-000048", "url": "https://www.sec.gov/Archives/edgar/data/858877/000085887726000048/csco-20260331.htm", "ingested_at": "2026-04-08T12:48:37.896486", "transaction_date": "2026-04-04", "tone_score": 0, "action_direction": "NONE", "topics": ["Departure of Directors or Certain Officers; Election of Directors; Appointment of Certain Officers; Compensatory Arrangements of Certain Officers", "Indemnity Agreement"], "processed_at": "2026-04-08T17:13:11.452983"}} +{"text": "Grech Patricia Y (Svp, Chief Accounting Officer) of QCOM sold 85 shares worth $10,667.50 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "QCOM", "form_type": "4", "filed_at": "2026-04-02", "accession_no": "0000804328-26-000051", "url": "https://www.sec.gov/Archives/edgar/data/804328/000080432826000051/xslF345X06/edgardoc.xml", "ingested_at": "2026-04-08T12:48:39.267926", "transaction_date": "2026-04-02", "tone_score": -1, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-08T17:13:11.453080"}} +{"text": "MCLAUGHLIN MARK D (Other) of QCOM acquired (via RSU vesting) 538 shares worth $0.00.", "metadata": {"ticker": "QCOM", "form_type": "4", "filed_at": "2026-04-02", "accession_no": "0000804328-26-000049", "url": "https://www.sec.gov/Archives/edgar/data/804328/000080432826000049/xslF345X06/edgardoc.xml", "ingested_at": "2026-04-08T12:48:39.472942", "transaction_date": "2026-03-31", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-08T17:13:11.453107"}} +{"text": "TRICOIRE JEAN-PASCAL (Other) of QCOM acquired (via RSU vesting) 262 shares worth $0.00.", "metadata": {"ticker": "QCOM", "form_type": "4", "filed_at": "2026-04-02", "accession_no": "0000804328-26-000048", "url": "https://www.sec.gov/Archives/edgar/data/804328/000080432826000048/xslF345X06/edgardoc.xml", "ingested_at": "2026-04-08T12:48:39.683945", "transaction_date": "2026-03-31", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-08T17:13:11.453126"}} +{"text": "Booking Holdings Inc. filed an amendment to its Restated Certificate of Incorporation to effect a 25-for-1 forward stock split and increase authorized common stock from 1B to 25B shares.", "metadata": {"ticker": "BKNG", "form_type": "8-K", "filed_at": "2026-04-02", "accession_no": "0000950157-26-000465", "url": "https://www.sec.gov/Archives/edgar/data/1075531/000095015726000465/form8-k.htm", "ingested_at": "2026-04-08T12:48:50.322210", "transaction_date": "2026-04-02", "tone_score": 0, "action_direction": "NONE", "topics": ["corporate action", "stock split"], "processed_at": "2026-04-08T17:13:14.127822"}} +{"text": "Booking Holdings Inc. appoints Caroline Sullivan as Senior Vice President, Chief Accounting Officer, and Controller.", "metadata": {"ticker": "BKNG", "form_type": "8-K", "filed_at": "2026-04-02", "accession_no": "0001075531-26-000014", "url": "https://www.sec.gov/Archives/edgar/data/1075531/000107553126000014/bkng-20260402.htm", "ingested_at": "2026-04-08T12:48:50.613430", "transaction_date": "2026-04-02", "tone_score": 0, "action_direction": "NONE", "topics": ["Executive Appointments", "Compensation", "Employment Agreements"], "processed_at": "2026-04-08T17:13:16.442511"}} +{"text": "Appointment of Director Kurt Sievers and retirement of Director Lynn Radakovich. Mr. Sievers will be compensated in accordance with the Company's non-employee director compensation program.", "metadata": {"ticker": "BKNG", "form_type": "8-K", "filed_at": "2026-04-01", "accession_no": "0001075531-26-000012", "url": "https://www.sec.gov/Archives/edgar/data/1075531/000107553126000012/bkng-20260401.htm", "ingested_at": "2026-04-08T12:48:50.961407", "transaction_date": "2026-04-01", "tone_score": 0, "action_direction": "NONE", "topics": ["Director Appointment", "Director Retirement"], "processed_at": "2026-04-08T17:13:19.071263"}} diff --git a/Data/3_Gold_Semantic/SEC_Insider_Trades/2026-04-09/qdrant_ready.jsonl b/Data/3_Gold_Semantic/SEC_Insider_Trades/2026-04-09/qdrant_ready.jsonl new file mode 100644 index 0000000..846abaf --- /dev/null +++ b/Data/3_Gold_Semantic/SEC_Insider_Trades/2026-04-09/qdrant_ready.jsonl @@ -0,0 +1,4 @@ +{"text": "Papermaster Mark D (Chief Technology Officer & Evp) of AMD sold 3,293 shares worth $740,925.00 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "AMD", "form_type": "4", "filed_at": "2026-04-08", "accession_no": "0000002488-26-000064", "url": "https://www.sec.gov/Archives/edgar/data/2488/000000248826000064/xslF345X06/wk-form4_1775679123.xml", "ingested_at": "2026-04-09T14:35:22.976531", "transaction_date": "2026-04-06", "tone_score": -1, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-09T14:45:22.544421"}} +{"text": "BREWER BRADY (Ceo, International) of SBUX sold 1,641 shares worth $147,690.00 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "SBUX", "form_type": "4", "filed_at": "2026-04-08", "accession_no": "0000829224-26-000066", "url": "https://www.sec.gov/Archives/edgar/data/829224/000082922426000066/xslF345X06/form4.xml", "ingested_at": "2026-04-09T14:35:32.974848", "transaction_date": "2026-04-06", "tone_score": -1, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-09T14:45:22.544884"}} +{"text": "Intel repurchased Apollo-managed funds' 49% equity interest in their joint venture related to Intel's Fab 34 in Ireland for $14.2 billion, financed by cash on hand and a bridge loan.", "metadata": {"ticker": "INTC", "form_type": "8-K", "filed_at": "2026-04-08", "accession_no": "0000050863-26-000072", "url": "https://www.sec.gov/Archives/edgar/data/50863/000005086326000072/intc-20260408.htm", "ingested_at": "2026-04-09T14:35:30.225494", "transaction_date": "2026-04-08", "tone_score": 0, "action_direction": "NONE", "topics": ["MergersAndAcquisitions", "FinancialTransactions"], "processed_at": "2026-04-09T14:45:34.974364"}} +{"text": "Amazon.com, Inc. (Registrant) filed a Current Report on Form 8-K with the Securities and Exchange Commission, disclosing Regulation FD Disclosure and Financial Statements and Exhibits.", "metadata": {"ticker": "AMZN", "form_type": "8-K", "filed_at": "2026-04-09", "accession_no": "0001104659-26-041034", "url": "https://www.sec.gov/Archives/edgar/data/1018724/000110465926041034/tm263815d2_8k.htm", "ingested_at": "2026-04-09T14:35:16.491691", "transaction_date": "2026-04-09", "tone_score": 0, "action_direction": "NONE", "topics": ["REGULATION FD DISCLOSURE", "FINANCIAL STATEMENTS AND EXHIBITS"], "processed_at": "2026-04-09T14:45:37.997412"}} diff --git a/Data/3_Gold_Semantic/SEC_Insider_Trades/2026-04-10/qdrant_ready.jsonl b/Data/3_Gold_Semantic/SEC_Insider_Trades/2026-04-10/qdrant_ready.jsonl new file mode 100644 index 0000000..480615d --- /dev/null +++ b/Data/3_Gold_Semantic/SEC_Insider_Trades/2026-04-10/qdrant_ready.jsonl @@ -0,0 +1,6 @@ +{"text": "Sondel Michael (Cao (Principal Acct. Officer)) of ADI acquired (via RSU vesting) 1,341 shares worth $0.00.", "metadata": {"ticker": "ADI", "form_type": "4", "filed_at": "2026-04-09", "accession_no": "0000006281-26-000043", "url": "https://www.sec.gov/Archives/edgar/data/6281/000000628126000043/xslF345X06/wk-form4_1775768645.xml", "ingested_at": "2026-04-10T16:09:14.401049", "transaction_date": "2026-04-07", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-10T16:11:29.861888"}} +{"text": "ROCHE VINCENT (Chair & Ceo) of ADI acquired (via RSU vesting) 19,712 shares worth $0.00.", "metadata": {"ticker": "ADI", "form_type": "4", "filed_at": "2026-04-09", "accession_no": "0000006281-26-000042", "url": "https://www.sec.gov/Archives/edgar/data/6281/000000628126000042/xslF345X06/wk-form4_1775768622.xml", "ingested_at": "2026-04-10T16:09:14.605836", "transaction_date": "2026-04-07", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-10T16:11:29.861934"}} +{"text": "Puccio Richard C Jr (Evp And Cfo) of ADI acquired (via RSU vesting) 6,513 shares worth $0.00.", "metadata": {"ticker": "ADI", "form_type": "4", "filed_at": "2026-04-09", "accession_no": "0000006281-26-000041", "url": "https://www.sec.gov/Archives/edgar/data/6281/000000628126000041/xslF345X06/wk-form4_1775768603.xml", "ingested_at": "2026-04-10T16:09:14.817000", "transaction_date": "2026-04-07", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-10T16:11:29.861954"}} +{"text": "Nakamura Katsufumi (Svp, Chief Customer Officer) of ADI acquired (via RSU vesting) 4,085 shares worth $0.00.", "metadata": {"ticker": "ADI", "form_type": "4", "filed_at": "2026-04-09", "accession_no": "0000006281-26-000040", "url": "https://www.sec.gov/Archives/edgar/data/6281/000000628126000040/xslF345X06/wk-form4_1775768583.xml", "ingested_at": "2026-04-10T16:09:15.042283", "transaction_date": "2026-04-07", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-10T16:11:29.861968"}} +{"text": "Jain Vivek (Evp, Global Operations) of ADI acquired (via RSU vesting) 6,734 shares worth $0.00.", "metadata": {"ticker": "ADI", "form_type": "4", "filed_at": "2026-04-09", "accession_no": "0000006281-26-000039", "url": "https://www.sec.gov/Archives/edgar/data/6281/000000628126000039/xslF345X06/wk-form4_1775768561.xml", "ingested_at": "2026-04-10T16:09:15.241550", "transaction_date": "2026-04-07", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-10T16:11:29.861982"}} +{"text": "Cotter Martin (Svp, Vertical Business Units) of ADI acquired (via RSU vesting) 5,807 shares worth $0.00.", "metadata": {"ticker": "ADI", "form_type": "4", "filed_at": "2026-04-09", "accession_no": "0000006281-26-000038", "url": "https://www.sec.gov/Archives/edgar/data/6281/000000628126000038/xslF345X06/wk-form4_1775768544.xml", "ingested_at": "2026-04-10T16:09:15.424624", "transaction_date": "2026-04-07", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-10T16:11:29.861994"}} diff --git a/Data/Agent_Context/latest_macro_context.md b/Data/Agent_Context/latest_macro_context.md new file mode 100644 index 0000000..83d35d6 --- /dev/null +++ b/Data/Agent_Context/latest_macro_context.md @@ -0,0 +1,16 @@ +## 📊 Macro & Market Daily Snapshot +> **Generated on:** 2026-04-16 +> **Note to LLM:** Macro indicators lag behind market data. Use YoY/MoM changes to gauge economic momentum. + +### 📈 Market Data (Daily) +- **[Equity Index] S&P 500 (^GSPC)**: 7022.95 Points | Change: **+0.80%** *(Observed: 2026-04-15)* +- **[Equity Index] NASDAQ (^IXIC)**: 24016.02 Points | Change: **+1.59%** *(Observed: 2026-04-15)* +- **[Volatility Index] VIX Volatility (^VIX)**: 18.25 Points | Change: **+0.44%** *(Observed: 2026-04-16)* +- **[Currency] US Dollar Index (DX-Y.NYB)**: 98.22 Points | Change: **+0.16%** *(Observed: 2026-04-16)* +- **[Commodity ETF] Gold ETF (GLD)**: 440.46 USD | Change: **-1.04%** *(Observed: 2026-04-15)* +- **[Commodity ETF] Silver ETF (SLV)**: 71.84 USD | Change: **-0.28%** *(Observed: 2026-04-15)* + +### 🏛️ Macro Economic Indicators (Lagging) +- **[Interest Rate] Effective Federal Funds Rate (FEDFUNDS)**: 3.64 % | MoM: **+0.00%** | YoY: **-15.94%** *(Observed: 2026-03-01)* +- **[Inflation] CPI (Inflation) (CPIAUCSL)**: 330.29 Index | MoM: **+0.87%** | YoY: **+3.32%** *(Observed: 2026-03-01)* +- **[Labor Market] Unemployment Rate (UNRATE)**: 4.30 % | MoM: **-2.27%** | YoY: **+2.38%** *(Observed: 2026-03-01)* \ No newline at end of file diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index b5182ed..0000000 --- a/Dockerfile +++ /dev/null @@ -1,22 +0,0 @@ -# Use official Python base image -FROM python:3.11-slim - -# Set working directory -WORKDIR /app - -# Install system dependencies for building native extensions -RUN apt-get update && apt-get install -y --no-install-recommends gcc build-essential && rm -rf /var/lib/apt/lists/* - -# Copy dependency file -COPY requirements.txt . - -# Install Python dependencies -# --no-cache-dir reduces image size -RUN pip install --no-cache-dir -r requirements.txt - -# Copy project files -COPY . . - -# Default command -# Run main application -CMD ["python", "src/main.py"] diff --git a/README.md b/README.md index 2742dc9..0cc499b 100644 --- a/README.md +++ b/README.md @@ -1,145 +1,190 @@ -# Options Bot 🤖 - -An automated financial research pipeline that synthesizes data from multiple sources (YouTube, News, Reddit, FRED, SEC filings, and market data) to generate daily paper-trading options ideas. The system uses a Qdrant vector database for knowledge management and a locally-hosted LLM (via Ollama) within a multi-agent framework to produce structured analysis reports. - -## 🎯 Project Objective - -This project serves as an educational exercise to: - -1. Master the engineering of multi-agent LLM systems. -2. Develop a practical understanding of how to integrate heterogeneous information sources for decision-making under uncertainty. - -The goal is to build a daily research bot that synthesizes global market and social information streams to generate 5–10 paper-trading options recommendations, complete with detailed rationales and source citations. - ------ - -## ✨ Key Features - - * **Multi-Source Data Pipeline**: Aggregates data from YouTube, Reddit, News APIs, FRED, SEC filings, and general market sources. - * **Vectorized Knowledge Base**: Utilizes a Qdrant vector database for efficient, scalable semantic retrieval of all ingested information. - * **Local LLM Orchestration**: Runs on local, open-source models (e.g., `mistral:7b`, `options-expert`) via Ollama for privacy and cost-effectiveness. - * **Multi-Agent Decision Framework**: Employs an Analyst-Checker-Critic agent loop to synthesize signals, validate facts, and challenge assumptions. - * **Automated Daily Reporting**: Generates structured JSON and Markdown reports with actionable options ideas, rationales, and confidence levels. - ------ - -## 🏗️ System Architecture - -The system operates in a sequential pipeline: - -1. **Data Collection**: Various scraper modules fetch data from their respective sources. -2. **Data Processing & Storage**: The collected text is cleaned, processed, and stored as vector embeddings in the Qdrant database with associated metadata. -3. **LLM-Powered Analysis**: A multi-agent system (`agent_system.py`) queries the vector database to retrieve relevant context and orchestrates a series of LLM calls to analyze the data, generate insights, and formulate trade ideas. -4. **Report Generation**: The final output is structured into a `FinalReport` Pydantic model and saved as both JSON and Markdown files. - -For a detailed visual overview of the data flow and component interactions, please see `ARCHITECTURE.md`. +# Multi-Modal Multi-Agent Financial RAG System + +## 1. Strategic Objectives (Goal) +The primary objective of this project is to democratize institutional-grade options trading by bridging the gap between quantitative market data and qualitative semantic insights. By leveraging a **Medallion Architecture**, the system automates the identification of cross-asset volatility arbitrage opportunities (e.g., GLD/SLV vs. correlated equities). + +**Core outcomes:** +- Reduce trading hallucinations via multi-agent cross-examination (Analyst -> Checker -> Critic -> Finalizer). +- Fuse fragmented data domains (FRED / GPR / SEC / News / options chains) into a single query surface. +- Produce auditable, reproducible recommendation artifacts for paper-trading workflows. + +--- + +## 2. High-Level System Architecture +The system operates on a **Dual-Track Data Engine** designed to handle the heterogeneity of financial markets: +* **Quantitative Track (Structured):** Processes high-frequency numeric data +(Parquet) via SQL-like tools or Pandas Agents to ensure 100% accuracy in +pricing and Greeks. +* **Qualitative Track (Unstructured):** Processes news and SEC filings +through a Hybrid RAG pipeline (Dense + Sparse + Metadata filtering) in Qdrant. +* **State Machine Orchestration:** Uses **LangGraph** to govern the +transition between data retrieval, analysis, and risk auditing. + +```mermaid +flowchart TD + A[Data Ingestion: FRED / SEC / News / yfinance] --> B[Medallion Processing: Bronze -> Silver -> Gold] + B --> C{Query Router} + C -->|Qualitative path| D[Qdrant Hybrid Search: Dense + Sparse + Metadata] + C -->|Quantitative path| E[Parquet Analytics: SQL + Pandas] + D --> F[Analyst Agent: Thesis and Trade Construction] + E --> F + F --> G[Checker Agent: Contract and Liquidity Validation] + G --> H[Critic Agent: Risk and Counter-Argument Review] + H --> I[Finalizer Agent: Structured Strategy Report] +``` ------ +--- +## 3. Operational Workflow & Multi-Agent Logic +### Workflow Orchestration (Execution Lifecycle) + +```mermaid +flowchart TD + A[Source ingestion jobs] --> B[Medallion processingonly with upstream deps"] --> B{"next stage in