From bfd79826f0977146f38981ac70837316d5e0620b Mon Sep 17 00:00:00 2001 From: "Xinxin(Maxine)" Date: Wed, 13 May 2026 22:39:13 -0400 Subject: [PATCH 1/4] Make outputs informational and add goal presets Clarify frontend copy and UI to emphasize that reads are informational (not trade execution), add goal-based default signal presets and state logic in the query builder, and improve layout/styling for timeline and market-read sections. Move missing-evidence disclosure handling out of conversation_reply into evidence_coverage_note/status_note: split quick-take tails, append disclosures to report.evidence_coverage_note, and update finalizer prompt instructions and markdown organization. Also remove the quick_query_quality UI precheck, tweak macro bucket rendering, and adjust several render/section titles for clearer presentation. Files changed: Frontend/app.py, Frontend/renderers.py, Frontend/styles.py, Scripts/agents/finalizer.py, Scripts/agents/prompts.py. --- Frontend/app.py | 11 +-- Frontend/renderers.py | 140 +++++++++++++++--------------------- Frontend/styles.py | 65 ++++++++++++++++- Scripts/agents/finalizer.py | 75 ++++++++++++++----- Scripts/agents/prompts.py | 14 ++-- 5 files changed, 194 insertions(+), 111 deletions(-) diff --git a/Frontend/app.py b/Frontend/app.py index 1a07ebf..10c2b39 100644 --- a/Frontend/app.py +++ b/Frontend/app.py @@ -188,8 +188,8 @@ def _render_product_header() -> None:
AutoOptions

Financial Intelligence Workspace

- Built for non-experts who need a rigorous market read without forcing a trade. - The system cross-checks options microstructure, filings, macro context, and execution reality before it allows conviction. + AutoOptions works like a research agent: it gathers market evidence and turns options, filings, news, and macro data into clear signals and directional context. + It supports decision-making, not trade execution. Outputs are informational only and do not provide strike-level investment instructions.

@@ -374,10 +374,11 @@ def _render_result_workspace( with tab_context: context_mode = st.radio( - "Evidence view", + "Evidence context selector", ["Structured Signals", "News & Events"], horizontal=True, key="evidence_context_mode", + label_visibility="collapsed", ) if context_mode == "Structured Signals": render_phase1_silver(final_state, st.container()) @@ -402,8 +403,8 @@ def main() -> None: { "role": "assistant", "content": ( - "I lower the barrier for non-experts by turning options, filings, and macro evidence into a disciplined market read. " - "Deterministic guardrails cross-check microstructure, executive behavior, and event evidence, so if the case is weak I will refuse to force a trade." + "I gather options, filing, news, and macro evidence, then translate it into clear market signals for decision support. " + "This is an informational market read, not trade execution or investment advice." ), } ] diff --git a/Frontend/renderers.py b/Frontend/renderers.py index ce550e3..568bc86 100644 --- a/Frontend/renderers.py +++ b/Frontend/renderers.py @@ -13,7 +13,6 @@ evidence_blend_summary, load_ticker_universe, normalize_state, - quick_query_quality, sanitize_text, state_query_quality, ) @@ -94,6 +93,13 @@ }, } +_GOAL_DEFAULT_SIGNALS: Dict[str, List[str]] = { + "options posture": ["IV skew", "put-call ratio", "liquidity"], + "sec filing risk": ["SEC Form 4 insider flow", "SEC 8-K event risk"], + "macro regime": ["news narrative", "macro regime narrative"], + "geopolitics narrative": ["GPR context", "macro regime narrative"], +} + _LIQUIDITY_FIELDS = [ "executable_option_volume", "executable_open_interest", @@ -670,9 +676,17 @@ def render_query_builder() -> Optional[Dict[str, Any]]: signal_state_key = "qb_signals" ticker_state_key = "qb_ticker" goal_state_key = "qb_goal" - default_signals = ["IV skew", "put-call ratio"] - selected_signals = [str(x) for x in st.session_state.get(signal_state_key, default_signals)] + previous_goal_state_key = "qb_previous_goal" selected_goal = str(st.session_state.get(goal_state_key) or goal_options[0]) + if selected_goal not in goal_options: + selected_goal = goal_options[0] + default_signals = _GOAL_DEFAULT_SIGNALS.get(selected_goal, ["IV skew", "put-call ratio", "liquidity"]) + if signal_state_key not in st.session_state: + st.session_state[signal_state_key] = [s for s in default_signals if s in signal_options] + elif st.session_state.get(previous_goal_state_key) != selected_goal: + st.session_state[signal_state_key] = [s for s in default_signals if s in signal_options] + st.session_state[previous_goal_state_key] = selected_goal + selected_signals = [str(x) for x in st.session_state.get(signal_state_key, default_signals)] force_asset = _event_asset_required(selected_signals) if ticker_state_key not in st.session_state: @@ -708,6 +722,15 @@ def render_query_builder() -> Optional[Dict[str, Any]]: ) time_window = str(time_window or "Past week") + goal_index = goal_options.index(selected_goal) if selected_goal in goal_options else 0 + goal = st.selectbox("Goal", goal_options, index=goal_index, key=goal_state_key) + if str(goal) != selected_goal: + selected_goal = str(goal) + default_signals = _GOAL_DEFAULT_SIGNALS.get(selected_goal, ["IV skew", "put-call ratio", "liquidity"]) + st.session_state[signal_state_key] = [s for s in default_signals if s in signal_options] + st.session_state[previous_goal_state_key] = selected_goal + selected_signals = [str(x) for x in st.session_state.get(signal_state_key, default_signals)] + signals = st.multiselect( "Signal chips", signal_options, @@ -715,8 +738,6 @@ def render_query_builder() -> Optional[Dict[str, Any]]: max_selections=3, key=signal_state_key, ) - goal_index = goal_options.index(selected_goal) if selected_goal in goal_options else 0 - goal = st.selectbox("Goal", goal_options, index=goal_index, key=goal_state_key) query = _compose_builder_query(str(ticker), str(time_window), [str(x) for x in signals], str(goal)) builder_contract = _build_builder_contract( ticker=str(ticker), @@ -741,7 +762,7 @@ def render_query_guide_buttons(current_query: str = "") -> Optional[Dict[str, An
Query Guide
Build an evidence-ready market question
-
Choose a workflow, signal, time window, and goal. The system cross-checks options microstructure, executive behavior, event evidence, and deterministic guardrails so weak or contradictory setups can be downgraded instead of overclaimed.
+
We turn options, filings, and macro evidence into a disciplined market read that is easier to understand. Deterministic guardrails cross-check microstructure, executive behavior, and event evidence. This output is informational only; investment decisions remain the investor's responsibility.
""", unsafe_allow_html=True, @@ -750,10 +771,6 @@ def render_query_guide_buttons(current_query: str = "") -> Optional[Dict[str, An if builder_query: return builder_query - quality = quick_query_quality(current_query) - st.caption(f"Query quality pre-check: {quality['score']}/100") - if quality["suggestions"]: - st.caption("Make it stronger: " + " ".join(quality["suggestions"][:2])) templates = _load_query_guide_examples() if not templates: return None @@ -784,7 +801,7 @@ def _render_silver_readable_parts(normalized_state: Dict[str, Any]) -> None: grouped = group_metrics_by_category(silver) st.markdown( - f'
{_surface_title_html("Part 4 · Signal Explorer")}
', + _surface_title_html("Part 2 · Signal Explorer"), unsafe_allow_html=True, ) if not silver: @@ -1039,10 +1056,11 @@ def _render_metric_rows(keys: List[str], values: Dict[str, Any], *, compact: boo def _render_macro_groups(keys: List[str], values: Dict[str, Any]) -> None: buckets: Dict[str, List[str]] = {} for key in keys: - buckets.setdefault(_macro_bucket(key), []).append(key) + bucket = _macro_bucket(key) + if bucket in {"Policy and Rates", "Inflation and Labor"}: + continue + buckets.setdefault(bucket, []).append(key) order = [ - "Policy and Rates", - "Inflation and Labor", "Market Regime Gauges", "Dollar and Safe-Haven Context", "Other Macro Signals", @@ -1193,10 +1211,11 @@ def _extract_markdown_sections(md: str) -> Dict[str, str]: def _render_time_consistency(normalized_state: Dict[str, Any]) -> None: rows = normalized_state.get("source_predicates") or [] + st.markdown("---") st.markdown( """ """ - + _surface_title_html("Part 5 · Time Consistency Timeline") + + _surface_title_html("Time Consistency Timeline") + """
How the evidence windows line up across options, macro, filings, and narrative sources.
""", @@ -1286,13 +1305,7 @@ def render_phase1_silver(state: Dict[str, Any], target) -> None: } st.markdown( - """ -
-""" - + _surface_title_html("Part 1 · Query Expansion Thesis") - + """ -
- """, + _surface_title_html("Part 1 · Query Expansion Thesis"), unsafe_allow_html=True, ) st.write(sanitize_text(hyde.get("paragraph", "HyDE anticipation is not available yet."))) @@ -1301,38 +1314,8 @@ def render_phase1_silver(state: Dict[str, Any], target) -> None: if hyde.get("whitelisted_tickers"): st.markdown(f"**Expanded Universe:** {', '.join(hyde.get('whitelisted_tickers', []))}") - st.markdown( - f""" -
- {_surface_title_html("Part 2 · Target Tickers and Scope")} - Target Tickers: {", ".join(metadata_with_lineage.get("tickers", [])) or "N/A"}
- Requested Window: {metadata_with_lineage.get("time_window", "N/A")}
- Data Sources: {", ".join(metadata_with_lineage.get("source_types", [])) or "N/A"}
- Signal Type: {metadata_with_lineage.get("event_keyword", "N/A")}
- Direction Bias: {metadata_with_lineage.get("action_direction", "N/A")}
- Latest Update Date: {metadata_with_lineage.get("latest_update_date", "Unknown")} -
- """, - unsafe_allow_html=True, - ) - st.markdown( - f""" -
- {_surface_title_html("Part 3 · Metadata Health")} - query_quality_score: {quality['score']}/100
- mapped_metrics: {quality['metrics_count']}
- time_window: {quality['time_window']}
- ticker_coverage: {", ".join(quality['in_universe']) if quality['in_universe'] else "None"} -
- """, - unsafe_allow_html=True, - ) - if quality["suggestions"]: - st.info("Make the next query stronger: " + " ".join(quality["suggestions"])) - _render_silver_readable_parts(normalized) _render_time_consistency(normalized) - st.success(evidence_blend_summary(normalized)) def render_phase2_gold(state: Dict[str, Any], target) -> None: @@ -1487,7 +1470,6 @@ def _render_risk_card(target, title: str, value: str, level: str, subtitle: str) def render_final_dashboard(state: Dict[str, Any]) -> None: normalized = normalize_state(state) - st.markdown("---") st.header("Strategy Dashboard") final_strategy = normalized.get("final_strategy") or {} @@ -1546,59 +1528,55 @@ def render_final_dashboard(state: Dict[str, Any]) -> None: ) macro_summary = final_report.get("macro_summary") or "No macro summary available." - convo = final_report.get("conversation_reply") or "No final narrative available." status_note = final_report.get("status_note") or "" asset_options_read = markdown_sections.get("Asset / Options Read") or "No asset/options read available." key_risks = final_report.get("key_risks_and_hedges") or [] macro_summary = sanitize_text(macro_summary) - convo = _frontend_quick_take(convo) or sanitize_text(convo) status_note = sanitize_text(status_note) st.markdown( f""" -
-
Executive Summary
- {convo} -
+
+
Macro Regime Narrative
+
{escape(macro_summary)}
+
""", unsafe_allow_html=True, ) - if status_note: - st.markdown( - f""" -
-
Status Note
- {escape(status_note)} -
- """, - unsafe_allow_html=True, - ) + st.markdown( f""" -
-
Macro Regime Narrative
- {macro_summary} -
+
+
Asset / Options Read
+
{escape(sanitize_text(asset_options_read))}
+
""", unsafe_allow_html=True, ) st.markdown( - f""" -
-
Asset / Options Read
- {escape(sanitize_text(asset_options_read))} -
+ """ +
+
Risk Controls and Hedges
+
""", unsafe_allow_html=True, ) - - st.markdown('
Risk Controls and Hedges
', unsafe_allow_html=True) if key_risks: for rk in key_risks: - st.markdown(f"- {sanitize_text(rk)}") + st.markdown(f"{sanitize_text(rk)}") else: st.info("No explicit risk/hedge block produced.") + if status_note: + st.markdown( + f""" +
+
Status Note
+
{escape(status_note)}
+
+ """, + unsafe_allow_html=True, + ) def render_footer_disclaimer() -> None: st.markdown( diff --git a/Frontend/styles.py b/Frontend/styles.py index a27fa90..ad37274 100644 --- a/Frontend/styles.py +++ b/Frontend/styles.py @@ -651,20 +651,28 @@ def inject_theme() -> None: display: grid; gap: 14px; margin: 10px 0 10px 0; + max-width: 100%; + overflow-x: hidden; + box-sizing: border-box; } .timeline-row { display: grid; gap: 8px; margin: 0; + min-width: 0; + max-width: 100%; } .timeline-row-head { - display: flex; - justify-content: space-between; + display: grid; + grid-template-columns: minmax(0, 1fr) auto; align-items: flex-end; gap: 14px; + min-width: 0; } .timeline-row-bar { display: block; + min-width: 0; + max-width: 100%; } .timeline-label { font-size: 12px; @@ -677,6 +685,8 @@ def inject_theme() -> None: height: 12px; background: rgba(39,76,119,0.12); border-radius: 999px; + max-width: 100%; + overflow: hidden; } .timeline-bar { position: absolute; @@ -689,6 +699,7 @@ def inject_theme() -> None: color: var(--text-muted); text-align: right; line-height: 1.35; + overflow-wrap: anywhere; } .timeline-note-inline { flex: 0 0 auto; @@ -749,6 +760,56 @@ def inject_theme() -> None: margin-bottom: 6px; font-weight: 700; } + .market-read-section { + border-left: 4px solid rgba(39,76,119,0.32); + padding: 2px 0 12px 14px; + margin: 8px 0 14px 0; + } + .market-read-section.market-read-status { + border-left-color: rgba(176,141,87,0.62); + margin-top: 16px; + } + .market-read-title { + color: var(--text-main) !important; + font-size: 1.02rem; + line-height: 1.3; + font-weight: 900; + margin-bottom: 6px; + } + .market-read-body { + color: var(--text-main) !important; + font-size: 1rem; + line-height: 1.6; + font-weight: 520; + max-width: 1080px; + } + .structured-part-title { + font-size: 13px; + text-transform: uppercase; + letter-spacing: .05em; + color: var(--text-muted) !important; + margin: 18px 0 8px 0; + font-weight: 850; + } + .structured-part-title::after { + content: none; + } + .structured-signal-lines { + display: grid; + gap: 6px; + margin: 2px 0 14px 0; + } + .structured-signal-lines div { + color: var(--text-main) !important; + font-size: 0.98rem; + line-height: 1.45; + } + .structured-signal-lines span { + display: inline-block; + min-width: 170px; + color: #274c77 !important; + font-weight: 850; + } .metric-row { border: 1px solid var(--accent-border); border-radius: 10px; diff --git a/Scripts/agents/finalizer.py b/Scripts/agents/finalizer.py index 3703bc7..20a9a71 100644 --- a/Scripts/agents/finalizer.py +++ b/Scripts/agents/finalizer.py @@ -199,21 +199,26 @@ class FinalReport(BaseModel): def to_markdown(self) -> str: """Converts the structured Pydantic object into a clean, readable Markdown report for UI display.""" md_lines = [ - f"# 📊 Institutional Options Strategy Report", + f"# 📊 Market Read for Decision Support", f"**Generated on:** {self.report_date}", f"**Overall Confidence Score:** {self.confidence_score * 100:.1f}%", ] direct_conclusion = _trim_to_word_limit(self.conversation_reply.strip(), 100) if self.conversation_reply else "" - status_note = _trim_to_word_limit((self.status_note or "").strip(), 60) macro_backdrop = _trim_to_word_limit((self.macro_summary or "").strip(), 150) asset_options_read = _trim_to_word_limit(_build_asset_options_section_text(self), 150) recommendation_mode = _trim_to_word_limit(_build_recommendation_mode_text(self), 150) risks_text = _trim_to_word_limit(_build_risks_section_text(self), 150) + disclosure_parts = [ + str(self.evidence_coverage_note or "").strip(), + str(self.status_note or "").strip(), + ] + missing_info_disclosure = _trim_to_word_limit( + " ".join(part for part in disclosure_parts if part), + 120, + ) if direct_conclusion: - md_lines += [f"\n## Direct Conclusion", direct_conclusion] - if status_note: - md_lines += [f"\n> Note: {status_note}"] + md_lines += [f"\n## Quick Take", direct_conclusion] if macro_backdrop: md_lines += [f"\n## Macro / Event Backdrop", macro_backdrop] if asset_options_read: @@ -222,6 +227,8 @@ def to_markdown(self) -> str: md_lines += [f"\n## Recommendation Mode", recommendation_mode] if risks_text: md_lines += [f"\n## Risks / What Would Change the View", risks_text] + if missing_info_disclosure: + md_lines += [f"\n## Missing Info Disclosure", missing_info_disclosure] return "\n".join(md_lines) @@ -1596,13 +1603,9 @@ def _illustrative_structure_text( def _build_non_actionable_risk_sentence(report: FinalReport, *, state: Dict[str, Any]) -> str: - severity = _evidence_coverage_severity(state) - disclosure_sentence = "" - if severity == "hard_gap" and not _direct_answer_includes_missing_slot_disclosure(state): - disclosure_sentence = _missing_slot_disclosure_sentence(state) why_not_now = _why_not_now_sentence(state) summary_caveat = _summary_caveat_seed(state) - risk_bits = [bit for bit in (disclosure_sentence, why_not_now, summary_caveat) if bit] + risk_bits = [bit for bit in (why_not_now, summary_caveat) if bit] return " ".join(dict.fromkeys(risk_bits)).strip() @@ -1647,6 +1650,45 @@ def _render_directional_watchlist_reply( return _trim_to_word_limit(body) +_QUICK_TAKE_DISCLOSURE_MARKERS = ( + "No supplemental news was retrieved", + "Some requested evidence was not retrieved", + "Missing source(s):", + "Cannot assess reliably", + "IV skew and options liquidity posture were not retrieved", + "Main caution:", +) + + +def _split_quick_take_disclosure_tail(text: str) -> tuple[str, str]: + body = str(text or "").strip() + if not body: + return "", "" + first_idx: Optional[int] = None + for marker in _QUICK_TAKE_DISCLOSURE_MARKERS: + idx = body.find(marker) + if idx >= 0 and (first_idx is None or idx < first_idx): + first_idx = idx + if first_idx is None: + return body, "" + lead = body[:first_idx].strip(" \n\t.;") + disclosure = body[first_idx:].strip(" \n\t") + return lead, disclosure + + +def _append_evidence_coverage_note(report: FinalReport, note: str) -> None: + clean = str(note or "").strip() + if not clean: + return + existing = str(report.evidence_coverage_note or "").strip() + if existing and clean.lower() in existing.lower(): + return + if existing: + report.evidence_coverage_note = f"{existing} {clean}".strip() + else: + report.evidence_coverage_note = clean + + def _build_query_first_reply( report: FinalReport, *, @@ -1669,6 +1711,10 @@ def _build_query_first_reply( user_query=user_query, ) risk_sentence = _build_non_actionable_risk_sentence(report, state=state) + evidence_sentence, evidence_disclosure = _split_quick_take_disclosure_tail(evidence_sentence) + risk_sentence, risk_disclosure = _split_quick_take_disclosure_tail(risk_sentence) + _append_evidence_coverage_note(report, evidence_disclosure) + _append_evidence_coverage_note(report, risk_disclosure) posture_takeaway = _posture_takeaway(state) direct_answer_seed_present = bool(_direct_answer_seed(state)) direct_answer_includes_posture = _direct_answer_includes_posture_takeaway(state) @@ -1701,23 +1747,20 @@ def _build_query_first_reply( if recommendation_mode == "directional_watchlist": reply = _render_directional_watchlist_reply( evidence_sentence=evidence_sentence, - risk_sentence=risk_sentence or "Main caution: the evidence is not strong enough to promote a clean trade idea.", + risk_sentence=risk_sentence, ) else: if _market_read_only_flag(state): reply = _render_market_read_only_reply( state=state, evidence_sentence=evidence_sentence, - risk_sentence=risk_sentence or "Main risk: define the invalidation level before upgrading the posture.", + risk_sentence=risk_sentence, ) else: reply = _render_informational_only_reply( evidence_sentence=evidence_sentence, - risk_sentence=risk_sentence or "Main caution: the evidence is not strong enough to promote a clean trade idea.", + risk_sentence=risk_sentence, ) - soft_note = _soft_missing_metric_tail_note(report, state=state) - if soft_note: - reply = _trim_to_word_limit(f"{reply} {soft_note}") if reason_sentence: reply = _trim_to_word_limit(f"{reply} {reason_sentence.strip()}") return reply diff --git a/Scripts/agents/prompts.py b/Scripts/agents/prompts.py index 15049d6..f4f86b3 100644 --- a/Scripts/agents/prompts.py +++ b/Scripts/agents/prompts.py @@ -481,8 +481,8 @@ def get_finalizer_prompt() -> ChatPromptTemplate: " For SEC-driven queries, Sentence 1 must mention the insider flow or selling direction/strength before any mode caveat.\n" " For SEC-driven queries, treat the structured SEC analysis bundle as authoritative: do not recalculate tone, categories, or filing interpretation from raw payload fragments.\n" " For cross-asset queries, Sentence 1 must mention the IV versus VIX regime interpretation before any mode caveat.\n" - " If the scope contract or retrieval outcome says strict sources / query slots are missing and the read is blocked,\n" - " state briefly which required evidence is missing and therefore which part of the query cannot be answered reliably.\n" + " If the scope contract or retrieval outcome says strict sources / query slots are missing, keep that disclosure out of conversation_reply.\n" + " Place missing-evidence disclosure in evidence_coverage_note or status_note so markdown can render it as the final Missing Info Disclosure section.\n" " For SEC-driven queries, treat SELL, BUY, and ACQUIRE/VEST as distinct categories:\n" " ACQUIRE/VEST is vesting-related acquisition, not open-market buying or selling.\n" " Sentence 2 should extend the evidence-backed read or main caveat; do not use conversation_reply to restate the Recommendation Mode boundary.\n" @@ -490,14 +490,14 @@ def get_finalizer_prompt() -> ChatPromptTemplate: " If market_read_only=true, keep the tone confident and posture-oriented rather than apologetic.\n" " If must_explain_why_not_now=true, include the exact why-not-now reasoning from the revision constraints.\n" " Do NOT use conversation_reply to narrate the macro backdrop; macro context belongs in macro_summary.\n" - " If a requested metric is missing but the remaining posture/read evidence is still valid, disclose it briefly at the tail of Direct Conclusion\n" - " as a light note. Do not let that note dominate the answer, and do not promote it into Risks unless the read is actually blocked.\n" + " If a requested metric is missing but the remaining posture/read evidence is still valid, do not append that note to conversation_reply.\n" + " Put it in evidence_coverage_note or status_note only.\n" " If trade_ideas is empty, do not leak 'directional_watchlist only', 'informational only', 'no strike-level options structure',\n" " or similar boundary language into conversation_reply. Keep those boundaries in the Recommendation Mode section only.\n\n" "13. REPORT SECTION DISCIPLINE:\n" - " The downstream markdown report will be organized as Direct Conclusion, Macro / Event Backdrop,\n" - " Asset / Options Read, Recommendation Mode, and Risks / What Would Change the View.\n" - " Direct Conclusion should contain evidence and the read conclusion only.\n" + " The downstream markdown report will be organized as Quick Take, Macro / Event Backdrop,\n" + " Asset / Options Read, Recommendation Mode, Risks / What Would Change the View, and an optional final Missing Info Disclosure.\n" + " Quick Take should contain evidence and the read conclusion only; do not put missing-evidence notes there.\n" " Asset / Options Read should contain evidence recap only, and it must read as financial analysis rather than pipeline or process narration.\n" " If the upstream contract already provides a posture rationale, keep that rationale near the top of Asset / Options Read rather than inventing a new explanation.\n" " Recommendation Mode is the ONLY section that should explain whether the pipeline is withholding a concrete options structure.\n" From daaa696acdd92e5441f3d2da6e9a73c488a17fb4 Mon Sep 17 00:00:00 2001 From: "Xinxin(Maxine)" Date: Wed, 13 May 2026 22:41:51 -0400 Subject: [PATCH 2/4] Add daily data ingest GitHub workflow Add .github/workflows/daily-data-ingest.yml: a scheduled and manual pipeline that runs weekdays at 17:05 America/New_York (post-market) and supports a qdrant_full_refresh dispatch input. The job (collect-and-qdrant-ingest) runs on ubuntu-latest, restores runtime state, sets up Python 3.11, installs dependencies, validates required secrets/vars, and runs Scripts ingest --with-qdrant (optionally --qdrant-full-refresh). Ingest reports are appended to the Actions summary and ingested dashboard artifacts are uploaded. Environment/configuration for FRED, SEC, Qdrant, OpenAI/Ollama, embedding and retriever settings are sourced from secrets and repository variables; concurrency group 'daily-data-ingest' and a 180-minute timeout are configured. --- .github/workflows/daily-data-ingest.yml | 110 ++ .../2026-05-06/gpr_narrative_corpus.md | 1292 +++++++++++++++++ .../2026-05-06/qdrant_gpr_input.jsonl | 76 + .../2026-04-21/macro_context_2026-04-21.md | 16 + .../2026-04-22/macro_context_2026-04-22.md | 10 + .../2026-04-23/macro_context_2026-04-23.md | 16 + .../2026-04-24/macro_context_2026-04-24.md | 16 + .../2026-04-25/macro_context_2026-04-25.md | 16 + .../2026-04-26/macro_context_2026-04-26.md | 16 + .../2026-05-06/macro_context_2026-05-06.md | 16 + .../2026-05-07/macro_context_2026-05-07.md | 16 + .../2026-05-08/macro_context_2026-05-08.md | 16 + .../2026-05-09/macro_context_2026-05-09.md | 16 + .../2026-05-10/macro_context_2026-05-10.md | 16 + .../2026-05-11/macro_context_2026-05-11.md | 16 + .../2026-05-12/macro_context_2026-05-12.md | 16 + ...qdrant_macro_yields_dollar_processed.jsonl | 7 + ...qdrant_macro_central_banks_processed.jsonl | 8 + ...qdrant_macro_yields_dollar_processed.jsonl | 6 + ...qdrant_macro_yields_dollar_processed.jsonl | 7 + ...qdrant_macro_central_banks_processed.jsonl | 8 + ...qdrant_macro_yields_dollar_processed.jsonl | 9 + ...qdrant_macro_central_banks_processed.jsonl | 8 + ...qdrant_macro_yields_dollar_processed.jsonl | 8 + ...qdrant_macro_central_banks_processed.jsonl | 6 + ...qdrant_macro_central_banks_processed.jsonl | 9 + ...qdrant_macro_yields_dollar_processed.jsonl | 6 + ...qdrant_macro_central_banks_processed.jsonl | 0 ...qdrant_macro_central_banks_processed.jsonl | 6 + ...qdrant_macro_yields_dollar_processed.jsonl | 6 + ...qdrant_macro_central_banks_processed.jsonl | 0 .../2026-04-12/qdrant_ready.jsonl | 10 + .../2026-04-19/qdrant_ready.jsonl | 70 + .../2026-04-23/qdrant_ready.jsonl | 34 + .../2026-05-06/qdrant_ready.jsonl | 106 ++ .../2026-05-11/qdrant_ready.jsonl | 77 + 36 files changed, 2071 insertions(+) create mode 100644 .github/workflows/daily-data-ingest.yml create mode 100644 Data/3_Gold_Semantic/GPR_index/2026-05-06/gpr_narrative_corpus.md create mode 100644 Data/3_Gold_Semantic/GPR_index/2026-05-06/qdrant_gpr_input.jsonl create mode 100644 Data/3_Gold_Semantic/Macro_Narratives/2026-04-21/macro_context_2026-04-21.md create mode 100644 Data/3_Gold_Semantic/Macro_Narratives/2026-04-22/macro_context_2026-04-22.md create mode 100644 Data/3_Gold_Semantic/Macro_Narratives/2026-04-23/macro_context_2026-04-23.md create mode 100644 Data/3_Gold_Semantic/Macro_Narratives/2026-04-24/macro_context_2026-04-24.md create mode 100644 Data/3_Gold_Semantic/Macro_Narratives/2026-04-25/macro_context_2026-04-25.md create mode 100644 Data/3_Gold_Semantic/Macro_Narratives/2026-04-26/macro_context_2026-04-26.md create mode 100644 Data/3_Gold_Semantic/Macro_Narratives/2026-05-06/macro_context_2026-05-06.md create mode 100644 Data/3_Gold_Semantic/Macro_Narratives/2026-05-07/macro_context_2026-05-07.md create mode 100644 Data/3_Gold_Semantic/Macro_Narratives/2026-05-08/macro_context_2026-05-08.md create mode 100644 Data/3_Gold_Semantic/Macro_Narratives/2026-05-09/macro_context_2026-05-09.md create mode 100644 Data/3_Gold_Semantic/Macro_Narratives/2026-05-10/macro_context_2026-05-10.md create mode 100644 Data/3_Gold_Semantic/Macro_Narratives/2026-05-11/macro_context_2026-05-11.md create mode 100644 Data/3_Gold_Semantic/Macro_Narratives/2026-05-12/macro_context_2026-05-12.md create mode 100644 Data/3_Gold_Semantic/News_Qdrant/2026-04-21/qdrant_macro_yields_dollar_processed.jsonl create mode 100644 Data/3_Gold_Semantic/News_Qdrant/2026-04-22/qdrant_macro_central_banks_processed.jsonl create mode 100644 Data/3_Gold_Semantic/News_Qdrant/2026-04-22/qdrant_macro_yields_dollar_processed.jsonl create mode 100644 Data/3_Gold_Semantic/News_Qdrant/2026-04-24/qdrant_macro_yields_dollar_processed.jsonl create mode 100644 Data/3_Gold_Semantic/News_Qdrant/2026-04-25/qdrant_macro_central_banks_processed.jsonl create mode 100644 Data/3_Gold_Semantic/News_Qdrant/2026-04-25/qdrant_macro_yields_dollar_processed.jsonl create mode 100644 Data/3_Gold_Semantic/News_Qdrant/2026-04-26/qdrant_macro_central_banks_processed.jsonl create mode 100644 Data/3_Gold_Semantic/News_Qdrant/2026-05-06/qdrant_macro_yields_dollar_processed.jsonl create mode 100644 Data/3_Gold_Semantic/News_Qdrant/2026-05-07/qdrant_macro_central_banks_processed.jsonl create mode 100644 Data/3_Gold_Semantic/News_Qdrant/2026-05-08/qdrant_macro_central_banks_processed.jsonl create mode 100644 Data/3_Gold_Semantic/News_Qdrant/2026-05-09/qdrant_macro_yields_dollar_processed.jsonl create mode 100644 Data/3_Gold_Semantic/News_Qdrant/2026-05-10/qdrant_macro_central_banks_processed.jsonl create mode 100644 Data/3_Gold_Semantic/News_Qdrant/2026-05-11/qdrant_macro_central_banks_processed.jsonl create mode 100644 Data/3_Gold_Semantic/News_Qdrant/2026-05-11/qdrant_macro_yields_dollar_processed.jsonl create mode 100644 Data/3_Gold_Semantic/News_Qdrant/2026-05-12/qdrant_macro_central_banks_processed.jsonl create mode 100644 Data/3_Gold_Semantic/SEC_Insider_Trades/2026-04-12/qdrant_ready.jsonl create mode 100644 Data/3_Gold_Semantic/SEC_Insider_Trades/2026-04-19/qdrant_ready.jsonl create mode 100644 Data/3_Gold_Semantic/SEC_Insider_Trades/2026-04-23/qdrant_ready.jsonl create mode 100644 Data/3_Gold_Semantic/SEC_Insider_Trades/2026-05-06/qdrant_ready.jsonl create mode 100644 Data/3_Gold_Semantic/SEC_Insider_Trades/2026-05-11/qdrant_ready.jsonl diff --git a/.github/workflows/daily-data-ingest.yml b/.github/workflows/daily-data-ingest.yml new file mode 100644 index 0000000..5b57abf --- /dev/null +++ b/.github/workflows/daily-data-ingest.yml @@ -0,0 +1,110 @@ +name: Daily data ingest + +on: + workflow_dispatch: + inputs: + qdrant_full_refresh: + description: "Re-embed all Gold files instead of only latest watermarks" + required: false + default: "false" + type: choice + options: + - "false" + - "true" + schedule: + # Weekdays after the US cash-market close. + - cron: "5 17 * * 1-5" + timezone: "America/New_York" + +concurrency: + group: daily-data-ingest + cancel-in-progress: false + +jobs: + collect-and-qdrant-ingest: + runs-on: ubuntu-latest + timeout-minutes: 180 + + env: + FRED_API_KEY: ${{ secrets.FRED_API_KEY }} + SEC_USER_AGENT: ${{ secrets.SEC_USER_AGENT }} + QDRANT_HOST: ${{ secrets.QDRANT_HOST }} + QDRANT_API_KEY: ${{ secrets.QDRANT_API_KEY }} + OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} + OPENAI_BASE_URL: ${{ secrets.OPENAI_BASE_URL }} + OLLAMA_HOST: ${{ secrets.OLLAMA_HOST }} + OLLAMA_BASE_URL: ${{ secrets.OLLAMA_HOST }} + INGESTION_LLM_PROVIDER: ${{ vars.INGESTION_LLM_PROVIDER || 'openai' }} + OPENAI_INGESTION_MODEL: ${{ vars.OPENAI_INGESTION_MODEL || 'gpt-4o-mini' }} + OLLAMA_INGESTION_MODEL: ${{ vars.OLLAMA_INGESTION_MODEL || 'llama3:latest' }} + EMBEDDING_PROVIDER: ${{ vars.EMBEDDING_PROVIDER || 'huggingface' }} + EMBEDDING_MODEL_NAME: ${{ vars.EMBEDDING_MODEL_NAME || 'BAAI/bge-large-en-v1.5' }} + EMBEDDING_DEVICE: cpu + RETRIEVER_DEVICE: cpu + + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Restore runtime state + uses: actions/cache@v4 + with: + path: config/runtime + key: runtime-state-${{ github.ref_name }}-${{ github.run_number }} + restore-keys: | + runtime-state-${{ github.ref_name }}- + + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: "3.11" + cache: pip + + - name: Install dependencies + run: python -m pip install -r requirements.txt + + - name: Validate required secrets + shell: bash + run: | + test -n "$FRED_API_KEY" + test -n "$SEC_USER_AGENT" + test -n "$QDRANT_HOST" + test -n "$QDRANT_API_KEY" + if [ "$INGESTION_LLM_PROVIDER" = "ollama" ]; then + test -n "$OLLAMA_HOST" + else + test -n "$OPENAI_API_KEY" + fi + + - name: Collect data and ingest latest Gold files into Qdrant + shell: bash + run: | + EXTRA_ARGS=() + if [ "${{ github.event.inputs.qdrant_full_refresh }}" = "true" ]; then + EXTRA_ARGS+=(--qdrant-full-refresh) + fi + python -m Scripts ingest \ + --with-qdrant \ + --report-dir logs/github-actions \ + "${EXTRA_ARGS[@]}" + + - name: Publish dashboard summary + if: always() + shell: bash + run: | + if [ -f logs/github-actions/ingest_report.md ]; then + cat logs/github-actions/ingest_report.md >> "$GITHUB_STEP_SUMMARY" + fi + + - name: Upload ingest dashboard artifact + if: always() + uses: actions/upload-artifact@v4 + with: + name: ingest-dashboard + path: | + logs/github-actions/ingest_report.json + logs/github-actions/ingest_report.md + logs/github-actions/ingest_dashboard.html + logs/runs/** + logs/*/ingestion.log + if-no-files-found: warn diff --git a/Data/3_Gold_Semantic/GPR_index/2026-05-06/gpr_narrative_corpus.md b/Data/3_Gold_Semantic/GPR_index/2026-05-06/gpr_narrative_corpus.md new file mode 100644 index 0000000..4644602 --- /dev/null +++ b/Data/3_Gold_Semantic/GPR_index/2026-05-06/gpr_narrative_corpus.md @@ -0,0 +1,1292 @@ +### 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.3th 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.8th 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.1th 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 **15.9th 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.1th 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.8th 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.5th 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.8th 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.2th 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.7th 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 **67.9th 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.1th 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.2th 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 **98.8th 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.6th 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.1th 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 **83.9th 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.6th 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 **84.9th 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.7th 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.7th 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.0th 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.8th 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.3th 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.2th 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.6th 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.6th 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.4th 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.0th 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.3th 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.7th 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 **96.8th 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.2th 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.3th 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.0th 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.5th 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.1th 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.6th 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.5th 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.6th 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.0th 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 **88.9th 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.3th 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.7th 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.7th 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.5th 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.0th 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.98 + +**Summary:** +In February 2025, the global Geopolitical Risk (GPR) Index stood at **136.98**. This represents a **significant escalation**, surging by 20.97% compared to the previous month. Compared to the same period last year, the index shifted by -6.56%. + +**Historical Context:** +This reading sits at the **86.5th 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:** 174.11 + +**Summary:** +In March 2025, the global Geopolitical Risk (GPR) Index stood at **174.11**. This represents a **significant escalation**, surging by 27.11% compared to the previous month. Compared to the same period last year, the index shifted by 30.70%. + +**Historical Context:** +This reading sits at the **95.8th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 141.44 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 19.03% month-over-month. Compared to the same period last year, the index shifted by -14.01%. + +**Historical Context:** +This reading sits at the **88.7th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 150.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: May 2025 + +**Date:** May 2025 +**GPR Score:** 166.05 + +**Summary:** +In May 2025, the global Geopolitical Risk (GPR) Index stood at **166.05**. This represents a **significant escalation**, surging by 17.79% compared to the previous month. Compared to the same period last year, the index shifted by 27.22%. + +**Historical Context:** +This reading sits at the **95.0th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 160.38 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:** 221.13 + +**Summary:** +In June 2025, the global Geopolitical Risk (GPR) Index stood at **221.13**. This represents a **significant escalation**, surging by 33.18% compared to the previous month. Compared to the same period last year, the index shifted by 95.53%. + +**Historical Context:** +This reading sits at the **97.4th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 176.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: July 2025 + +**Date:** July 2025 +**GPR Score:** 134.22 + +**Summary:** +In July 2025, the global Geopolitical Risk (GPR) Index stood at **134.22**. This indicates a **cooling off** of geopolitical tensions, dropping by 39.30% month-over-month. Compared to the same period last year, the index shifted by 45.27%. + +**Historical Context:** +This reading sits at the **85.5th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 173.80 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.23% 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 **87.9th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 164.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: 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.1th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 132.88 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 **92.9th 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.5th 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:** 130.96 + +**Summary:** +In December 2025, the global Geopolitical Risk (GPR) Index stood at **130.96**. This represents a **significant escalation**, surging by 25.51% compared to the previous month. Compared to the same period last year, the index shifted by -8.01%. + +**Historical Context:** +This reading sits at the **84.1th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 129.94 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:** 168.63 + +**Summary:** +In January 2026, the global Geopolitical Risk (GPR) Index stood at **168.63**. This represents a **significant escalation**, surging by 28.77% compared to the previous month. Compared to the same period last year, the index shifted by 48.92%. + +**Historical Context:** +This reading sits at the **95.2th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 134.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: February 2026 + +**Date:** February 2026 +**GPR Score:** 120.75 + +**Summary:** +In February 2026, the global Geopolitical Risk (GPR) Index stood at **120.75**. This indicates a **cooling off** of geopolitical tensions, dropping by 28.40% month-over-month. Compared to the same period last year, the index shifted by -11.85%. + +**Historical Context:** +This reading sits at the **80.0th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 140.11 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:** 326.99 + +**Summary:** +In March 2026, the global Geopolitical Risk (GPR) Index stood at **326.99**. This represents a **significant escalation**, surging by 170.81% compared to the previous month. Compared to the same period last year, the index shifted by 87.80%. + +**Historical Context:** +This reading sits at the **99.0th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 205.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: April 2026 + +**Date:** April 2026 +**GPR Score:** 230.77 + +**Summary:** +In April 2026, the global Geopolitical Risk (GPR) Index stood at **230.77**. This indicates a **cooling off** of geopolitical tensions, dropping by 29.43% month-over-month. Compared to the same period last year, the index shifted by 63.70%. + +**Historical Context:** +This reading sits at the **97.6th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 226.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). + + +--- + diff --git a/Data/3_Gold_Semantic/GPR_index/2026-05-06/qdrant_gpr_input.jsonl b/Data/3_Gold_Semantic/GPR_index/2026-05-06/qdrant_gpr_input.jsonl new file mode 100644 index 0000000..24e1a10 --- /dev/null +++ b/Data/3_Gold_Semantic/GPR_index/2026-05-06/qdrant_gpr_input.jsonl @@ -0,0 +1,76 @@ +{"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.3th 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.3}} +{"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.75}} +{"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.8th 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.82}} +{"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.5}} +{"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.49}} +{"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.91}} +{"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.28}} +{"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.48}} +{"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.4}} +{"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.1th 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.15}} +{"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.1}} +{"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.27}} +{"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": 20.97}} +{"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 **15.9th 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.93}} +{"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.38}} +{"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.1th 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.13}} +{"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.8th 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.81}} +{"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.5th 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.53}} +{"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.8th 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.85}} +{"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": 43.95}} +{"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.2th 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.21}} +{"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": 22.98}} +{"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.7th 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.71}} +{"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 **67.9th 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": 67.94}} +{"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.1th 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.1}} +{"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.2th 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.18}} +{"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 **98.8th 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.79}} +{"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.6th 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.57}} +{"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.1th 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.11}} +{"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 **83.9th 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": 83.87}} +{"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.6th 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.62}} +{"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 **84.9th 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": 84.88}} +{"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.7th 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.68}} +{"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.7th 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.72}} +{"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.0th 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.02}} +{"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.8th 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.78}} +{"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.3th 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.33}} +{"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.24}} +{"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.2th 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.15}} +{"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.6th 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.56}} +{"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.6th 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.56}} +{"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.4th 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.38}} +{"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.0th 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": 69.96}} +{"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.3th 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.3}} +{"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.7th 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.67}} +{"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 **96.8th 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.77}} +{"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.2th 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.15}} +{"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.3th 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.31}} +{"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.0th 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": 93.95}} +{"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.5th 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.52}} +{"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.1th 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.08}} +{"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.6th 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.56}} +{"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.5th 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.47}} +{"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.6th 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.6}} +{"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.0th 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": 48.99}} +{"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 **88.9th 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": 88.91}} +{"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.3th 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.27}} +{"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.7th 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.67}} +{"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.7th 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.66}} +{"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.5th 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.52}} +{"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.0th 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.0}} +{"id": "f2ff6cd0-6b3c-5327-aec3-51d44abc12ca", "text": "### Geopolitical Risk (GPR) Index Update: February 2025\n\n**Date:** February 2025\n**GPR Score:** 136.98\n\n**Summary:**\nIn February 2025, the global Geopolitical Risk (GPR) Index stood at **136.98**. This represents a **significant escalation**, surging by 20.97% compared to the previous month. Compared to the same period last year, the index shifted by -6.56%.\n\n**Historical Context:**\nThis reading sits at the **86.5th 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.98, "gpr_percentile": 86.49}} +{"id": "43b2d8bd-21dd-54c5-b7eb-b2b8defbc0be", "text": "### Geopolitical Risk (GPR) Index Update: March 2025\n\n**Date:** March 2025\n**GPR Score:** 174.11\n\n**Summary:**\nIn March 2025, the global Geopolitical Risk (GPR) Index stood at **174.11**. This represents a **significant escalation**, surging by 27.11% compared to the previous month. Compared to the same period last year, the index shifted by 30.70%.\n\n**Historical Context:**\nThis reading sits at the **95.8th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 141.44 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": 174.11, "gpr_percentile": 95.77}} +{"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 19.03% 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.7th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 150.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 2025-04", "publish_date": "2025-04-01", "publish_timestamp": 1743465600, "gpr_score": 140.97, "gpr_percentile": 88.71}} +{"id": "234c7c3d-81e2-5b85-ac1c-58d8961a1e6f", "text": "### Geopolitical Risk (GPR) Index Update: May 2025\n\n**Date:** May 2025\n**GPR Score:** 166.05\n\n**Summary:**\nIn May 2025, the global Geopolitical Risk (GPR) Index stood at **166.05**. This represents a **significant escalation**, surging by 17.79% compared to the previous month. Compared to the same period last year, the index shifted by 27.22%.\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.38 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": 166.05, "gpr_percentile": 94.96}} +{"id": "e30e503e-a815-5871-9445-883c5af53165", "text": "### Geopolitical Risk (GPR) Index Update: June 2025\n\n**Date:** June 2025\n**GPR Score:** 221.13\n\n**Summary:**\nIn June 2025, the global Geopolitical Risk (GPR) Index stood at **221.13**. This represents a **significant escalation**, surging by 33.18% compared to the previous month. Compared to the same period last year, the index shifted by 95.53%.\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 176.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 2025-06", "publish_date": "2025-06-01", "publish_timestamp": 1748736000, "gpr_score": 221.13, "gpr_percentile": 97.38}} +{"id": "2874f4d9-d0c2-5fd3-aa14-7516e13ae8ec", "text": "### Geopolitical Risk (GPR) Index Update: July 2025\n\n**Date:** July 2025\n**GPR Score:** 134.22\n\n**Summary:**\nIn July 2025, the global Geopolitical Risk (GPR) Index stood at **134.22**. This indicates a **cooling off** of geopolitical tensions, dropping by 39.30% month-over-month. Compared to the same period last year, the index shifted by 45.27%.\n\n**Historical Context:**\nThis reading sits at the **85.5th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 173.80 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.22, "gpr_percentile": 85.48}} +{"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.23% 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 **87.9th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 164.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 2025-08", "publish_date": "2025-08-01", "publish_timestamp": 1754006400, "gpr_score": 138.56, "gpr_percentile": 87.9}} +{"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.1th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 132.88 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.06}} +{"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 **92.9th 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": 92.94}} +{"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.5th 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.53}} +{"id": "d861053f-3ce3-57d5-99ca-b54907183bde", "text": "### Geopolitical Risk (GPR) Index Update: December 2025\n\n**Date:** December 2025\n**GPR Score:** 130.96\n\n**Summary:**\nIn December 2025, the global Geopolitical Risk (GPR) Index stood at **130.96**. This represents a **significant escalation**, surging by 25.51% compared to the previous month. Compared to the same period last year, the index shifted by -8.01%.\n\n**Historical Context:**\nThis reading sits at the **84.1th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 129.94 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": 130.96, "gpr_percentile": 84.07}} +{"id": "bd672c3b-1f25-5ae1-9b2c-dea11f718305", "text": "### Geopolitical Risk (GPR) Index Update: January 2026\n\n**Date:** January 2026\n**GPR Score:** 168.63\n\n**Summary:**\nIn January 2026, the global Geopolitical Risk (GPR) Index stood at **168.63**. This represents a **significant escalation**, surging by 28.77% compared to the previous month. Compared to the same period last year, the index shifted by 48.92%.\n\n**Historical Context:**\nThis reading sits at the **95.2th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 134.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 2026-01", "publish_date": "2026-01-01", "publish_timestamp": 1767225600, "gpr_score": 168.63, "gpr_percentile": 95.16}} +{"id": "9e7b3f18-e68d-541e-a3b3-76b9fbcb8ac7", "text": "### Geopolitical Risk (GPR) Index Update: February 2026\n\n**Date:** February 2026\n**GPR Score:** 120.75\n\n**Summary:**\nIn February 2026, the global Geopolitical Risk (GPR) Index stood at **120.75**. This indicates a **cooling off** of geopolitical tensions, dropping by 28.40% month-over-month. Compared to the same period last year, the index shifted by -11.85%.\n\n**Historical Context:**\nThis reading sits at the **80.0th percentile** of all historically recorded geopolitical risk levels. A 3-month moving average of 140.11 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": 120.75, "gpr_percentile": 80.04}} +{"id": "25620164-722d-50a3-8776-330bdcc83a75", "text": "### Geopolitical Risk (GPR) Index Update: March 2026\n\n**Date:** March 2026\n**GPR Score:** 326.99\n\n**Summary:**\nIn March 2026, the global Geopolitical Risk (GPR) Index stood at **326.99**. This represents a **significant escalation**, surging by 170.81% compared to the previous month. Compared to the same period last year, the index shifted by 87.80%.\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 205.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 2026-03", "publish_date": "2026-03-01", "publish_timestamp": 1772323200, "gpr_score": 326.99, "gpr_percentile": 98.99}} +{"id": "e56866d5-9274-51fb-8f07-c73e70a6dad3", "text": "### Geopolitical Risk (GPR) Index Update: April 2026\n\n**Date:** April 2026\n**GPR Score:** 230.77\n\n**Summary:**\nIn April 2026, the global Geopolitical Risk (GPR) Index stood at **230.77**. This indicates a **cooling off** of geopolitical tensions, dropping by 29.43% month-over-month. Compared to the same period last year, the index shifted by 63.70%.\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 226.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 2026-04", "publish_date": "2026-04-01", "publish_timestamp": 1775001600, "gpr_score": 230.77, "gpr_percentile": 97.58}} diff --git a/Data/3_Gold_Semantic/Macro_Narratives/2026-04-21/macro_context_2026-04-21.md b/Data/3_Gold_Semantic/Macro_Narratives/2026-04-21/macro_context_2026-04-21.md new file mode 100644 index 0000000..78a8b6d --- /dev/null +++ b/Data/3_Gold_Semantic/Macro_Narratives/2026-04-21/macro_context_2026-04-21.md @@ -0,0 +1,16 @@ +## 📊 Macro & Market Daily Snapshot +> **Generated on:** 2026-04-21 +> **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)**: 7064.01 Points | Change: **-0.63%** *(Observed: 2026-04-21)* +- **[Equity Index] NASDAQ (^IXIC)**: 24259.96 Points | Change: **-0.59%** *(Observed: 2026-04-21)* +- **[Volatility Index] VIX Volatility (^VIX)**: 19.50 Points | Change: **+3.34%** *(Observed: 2026-04-21)* +- **[Currency] US Dollar Index (DX-Y.NYB)**: 98.35 Points | Change: **+0.30%** *(Observed: 2026-04-21)* +- **[Commodity ETF] Gold ETF (GLD)**: 429.57 USD | Change: **-2.83%** *(Observed: 2026-04-21)* +- **[Commodity ETF] Silver ETF (SLV)**: 68.49 USD | Change: **-5.07%** *(Observed: 2026-04-21)* + +### 🏛️ 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-22/macro_context_2026-04-22.md b/Data/3_Gold_Semantic/Macro_Narratives/2026-04-22/macro_context_2026-04-22.md new file mode 100644 index 0000000..5e5e095 --- /dev/null +++ b/Data/3_Gold_Semantic/Macro_Narratives/2026-04-22/macro_context_2026-04-22.md @@ -0,0 +1,10 @@ +## 📊 Macro & Market Daily Snapshot +> **Generated on:** 2026-04-22 +> **Note to LLM:** Macro indicators lag behind market data. Use YoY/MoM changes to gauge economic momentum. + +### 📈 Market Data (Daily) + +### 🏛️ 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-23/macro_context_2026-04-23.md b/Data/3_Gold_Semantic/Macro_Narratives/2026-04-23/macro_context_2026-04-23.md new file mode 100644 index 0000000..413b592 --- /dev/null +++ b/Data/3_Gold_Semantic/Macro_Narratives/2026-04-23/macro_context_2026-04-23.md @@ -0,0 +1,16 @@ +## 📊 Macro & Market Daily Snapshot +> **Generated on:** 2026-04-23 +> **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)**: 7133.17 Points | Change: **-0.07%** *(Observed: 2026-04-23)* +- **[Equity Index] NASDAQ (^IXIC)**: 24576.78 Points | Change: **-0.33%** *(Observed: 2026-04-23)* +- **[Volatility Index] VIX Volatility (^VIX)**: 19.20 Points | Change: **+1.48%** *(Observed: 2026-04-23)* +- **[Currency] US Dollar Index (DX-Y.NYB)**: 98.60 Points | Change: **+0.01%** *(Observed: 2026-04-23)* +- **[Commodity ETF] Gold ETF (GLD)**: 434.39 USD | Change: **-0.20%** *(Observed: 2026-04-23)* +- **[Commodity ETF] Silver ETF (SLV)**: 69.03 USD | Change: **-1.90%** *(Observed: 2026-04-23)* + +### 🏛️ 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-24/macro_context_2026-04-24.md b/Data/3_Gold_Semantic/Macro_Narratives/2026-04-24/macro_context_2026-04-24.md new file mode 100644 index 0000000..bb8b8ac --- /dev/null +++ b/Data/3_Gold_Semantic/Macro_Narratives/2026-04-24/macro_context_2026-04-24.md @@ -0,0 +1,16 @@ +## 📊 Macro & Market Daily Snapshot +> **Generated on:** 2026-04-24 +> **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)**: 7158.19 Points | Change: **+0.70%** *(Observed: 2026-04-24)* +- **[Equity Index] NASDAQ (^IXIC)**: 24805.33 Points | Change: **+1.50%** *(Observed: 2026-04-24)* +- **[Volatility Index] VIX Volatility (^VIX)**: 18.68 Points | Change: **-3.26%** *(Observed: 2026-04-24)* +- **[Currency] US Dollar Index (DX-Y.NYB)**: 98.56 Points | Change: **-0.24%** *(Observed: 2026-04-24)* +- **[Commodity ETF] Gold ETF (GLD)**: 433.55 USD | Change: **+0.58%** *(Observed: 2026-04-24)* +- **[Commodity ETF] Silver ETF (SLV)**: 69.20 USD | Change: **+1.20%** *(Observed: 2026-04-24)* + +### 🏛️ 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-25/macro_context_2026-04-25.md b/Data/3_Gold_Semantic/Macro_Narratives/2026-04-25/macro_context_2026-04-25.md new file mode 100644 index 0000000..3b07ab1 --- /dev/null +++ b/Data/3_Gold_Semantic/Macro_Narratives/2026-04-25/macro_context_2026-04-25.md @@ -0,0 +1,16 @@ +## 📊 Macro & Market Daily Snapshot +> **Generated on:** 2026-04-25 +> **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)**: 7165.08 Points | Change: **+0.80%** *(Observed: 2026-04-24)* +- **[Equity Index] NASDAQ (^IXIC)**: 24836.60 Points | Change: **+1.63%** *(Observed: 2026-04-24)* +- **[Volatility Index] VIX Volatility (^VIX)**: 18.71 Points | Change: **-3.11%** *(Observed: 2026-04-24)* +- **[Currency] US Dollar Index (DX-Y.NYB)**: 98.51 Points | Change: **-0.29%** *(Observed: 2026-04-24)* +- **[Commodity ETF] Gold ETF (GLD)**: 433.25 USD | Change: **+0.51%** *(Observed: 2026-04-24)* +- **[Commodity ETF] Silver ETF (SLV)**: 68.79 USD | Change: **+0.60%** *(Observed: 2026-04-24)* + +### 🏛️ 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-26/macro_context_2026-04-26.md b/Data/3_Gold_Semantic/Macro_Narratives/2026-04-26/macro_context_2026-04-26.md new file mode 100644 index 0000000..dd04736 --- /dev/null +++ b/Data/3_Gold_Semantic/Macro_Narratives/2026-04-26/macro_context_2026-04-26.md @@ -0,0 +1,16 @@ +## 📊 Macro & Market Daily Snapshot +> **Generated on:** 2026-04-26 +> **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)**: 7165.08 Points | Change: **+0.80%** *(Observed: 2026-04-24)* +- **[Equity Index] NASDAQ (^IXIC)**: 24836.60 Points | Change: **+1.63%** *(Observed: 2026-04-24)* +- **[Volatility Index] VIX Volatility (^VIX)**: 18.71 Points | Change: **-3.11%** *(Observed: 2026-04-24)* +- **[Currency] US Dollar Index (DX-Y.NYB)**: 98.51 Points | Change: **-0.00%** *(Observed: 2026-04-26)* +- **[Commodity ETF] Gold ETF (GLD)**: 433.25 USD | Change: **+0.51%** *(Observed: 2026-04-24)* +- **[Commodity ETF] Silver ETF (SLV)**: 68.79 USD | Change: **+0.60%** *(Observed: 2026-04-24)* + +### 🏛️ 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-05-06/macro_context_2026-05-06.md b/Data/3_Gold_Semantic/Macro_Narratives/2026-05-06/macro_context_2026-05-06.md new file mode 100644 index 0000000..1748a0b --- /dev/null +++ b/Data/3_Gold_Semantic/Macro_Narratives/2026-05-06/macro_context_2026-05-06.md @@ -0,0 +1,16 @@ +## 📊 Macro & Market Daily Snapshot +> **Generated on:** 2026-05-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)**: 7347.07 Points | Change: **+1.21%** *(Observed: 2026-05-06)* +- **[Equity Index] NASDAQ (^IXIC)**: 25701.84 Points | Change: **+1.48%** *(Observed: 2026-05-06)* +- **[Volatility Index] VIX Volatility (^VIX)**: 17.10 Points | Change: **-1.61%** *(Observed: 2026-05-06)* +- **[Currency] US Dollar Index (DX-Y.NYB)**: 98.01 Points | Change: **-0.48%** *(Observed: 2026-05-06)* +- **[Commodity ETF] Gold ETF (GLD)**: 431.46 USD | Change: **+3.15%** *(Observed: 2026-05-06)* +- **[Commodity ETF] Silver ETF (SLV)**: 69.99 USD | Change: **+6.19%** *(Observed: 2026-05-06)* + +### 🏛️ Macro Economic Indicators (Lagging) +- **[Interest Rate] Effective Federal Funds Rate (FEDFUNDS)**: 3.64 % | MoM: **+0.00%** | YoY: **-15.94%** *(Observed: 2026-04-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-05-07/macro_context_2026-05-07.md b/Data/3_Gold_Semantic/Macro_Narratives/2026-05-07/macro_context_2026-05-07.md new file mode 100644 index 0000000..c46eb44 --- /dev/null +++ b/Data/3_Gold_Semantic/Macro_Narratives/2026-05-07/macro_context_2026-05-07.md @@ -0,0 +1,16 @@ +## 📊 Macro & Market Daily Snapshot +> **Generated on:** 2026-05-07 +> **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)**: 7326.97 Points | Change: **-0.52%** *(Observed: 2026-05-07)* +- **[Equity Index] NASDAQ (^IXIC)**: 25762.04 Points | Change: **-0.30%** *(Observed: 2026-05-07)* +- **[Volatility Index] VIX Volatility (^VIX)**: 17.31 Points | Change: **-0.46%** *(Observed: 2026-05-07)* +- **[Currency] US Dollar Index (DX-Y.NYB)**: 98.11 Points | Change: **+0.09%** *(Observed: 2026-05-07)* +- **[Commodity ETF] Gold ETF (GLD)**: 431.67 USD | Change: **+0.16%** *(Observed: 2026-05-07)* +- **[Commodity ETF] Silver ETF (SLV)**: 71.84 USD | Change: **+2.44%** *(Observed: 2026-05-07)* + +### 🏛️ Macro Economic Indicators (Lagging) +- **[Interest Rate] Effective Federal Funds Rate (FEDFUNDS)**: 3.64 % | MoM: **+0.00%** | YoY: **-15.94%** *(Observed: 2026-04-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-05-08/macro_context_2026-05-08.md b/Data/3_Gold_Semantic/Macro_Narratives/2026-05-08/macro_context_2026-05-08.md new file mode 100644 index 0000000..07c6fef --- /dev/null +++ b/Data/3_Gold_Semantic/Macro_Narratives/2026-05-08/macro_context_2026-05-08.md @@ -0,0 +1,16 @@ +## 📊 Macro & Market Daily Snapshot +> **Generated on:** 2026-05-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)**: 7385.28 Points | Change: **+0.66%** *(Observed: 2026-05-08)* +- **[Equity Index] NASDAQ (^IXIC)**: 26114.83 Points | Change: **+1.20%** *(Observed: 2026-05-08)* +- **[Volatility Index] VIX Volatility (^VIX)**: 17.27 Points | Change: **+1.11%** *(Observed: 2026-05-08)* +- **[Currency] US Dollar Index (DX-Y.NYB)**: 97.91 Points | Change: **-0.35%** *(Observed: 2026-05-08)* +- **[Commodity ETF] Gold ETF (GLD)**: 432.24 USD | Change: **+0.13%** *(Observed: 2026-05-08)* +- **[Commodity ETF] Silver ETF (SLV)**: 72.47 USD | Change: **+1.21%** *(Observed: 2026-05-08)* + +### 🏛️ Macro Economic Indicators (Lagging) +- **[Interest Rate] Effective Federal Funds Rate (FEDFUNDS)**: 3.64 % | MoM: **+0.00%** | YoY: **-15.94%** *(Observed: 2026-04-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: **+0.00%** | YoY: **+2.38%** *(Observed: 2026-04-01)* \ No newline at end of file diff --git a/Data/3_Gold_Semantic/Macro_Narratives/2026-05-09/macro_context_2026-05-09.md b/Data/3_Gold_Semantic/Macro_Narratives/2026-05-09/macro_context_2026-05-09.md new file mode 100644 index 0000000..3a5bb1e --- /dev/null +++ b/Data/3_Gold_Semantic/Macro_Narratives/2026-05-09/macro_context_2026-05-09.md @@ -0,0 +1,16 @@ +## 📊 Macro & Market Daily Snapshot +> **Generated on:** 2026-05-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)**: 7398.93 Points | Change: **+0.84%** *(Observed: 2026-05-08)* +- **[Equity Index] NASDAQ (^IXIC)**: 26247.08 Points | Change: **+1.71%** *(Observed: 2026-05-08)* +- **[Volatility Index] VIX Volatility (^VIX)**: 17.19 Points | Change: **+0.64%** *(Observed: 2026-05-08)* +- **[Currency] US Dollar Index (DX-Y.NYB)**: 97.84 Points | Change: **-0.42%** *(Observed: 2026-05-08)* +- **[Commodity ETF] Gold ETF (GLD)**: 433.77 USD | Change: **+0.48%** *(Observed: 2026-05-08)* +- **[Commodity ETF] Silver ETF (SLV)**: 73.01 USD | Change: **+1.97%** *(Observed: 2026-05-08)* + +### 🏛️ Macro Economic Indicators (Lagging) +- **[Interest Rate] Effective Federal Funds Rate (FEDFUNDS)**: 3.64 % | MoM: **+0.00%** | YoY: **-15.94%** *(Observed: 2026-04-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: **+0.00%** | YoY: **+2.38%** *(Observed: 2026-04-01)* \ No newline at end of file diff --git a/Data/3_Gold_Semantic/Macro_Narratives/2026-05-10/macro_context_2026-05-10.md b/Data/3_Gold_Semantic/Macro_Narratives/2026-05-10/macro_context_2026-05-10.md new file mode 100644 index 0000000..f4f59ae --- /dev/null +++ b/Data/3_Gold_Semantic/Macro_Narratives/2026-05-10/macro_context_2026-05-10.md @@ -0,0 +1,16 @@ +## 📊 Macro & Market Daily Snapshot +> **Generated on:** 2026-05-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)**: 7398.93 Points | Change: **+0.84%** *(Observed: 2026-05-08)* +- **[Equity Index] NASDAQ (^IXIC)**: 26247.08 Points | Change: **+1.71%** *(Observed: 2026-05-08)* +- **[Volatility Index] VIX Volatility (^VIX)**: 17.19 Points | Change: **+0.64%** *(Observed: 2026-05-08)* +- **[Currency] US Dollar Index (DX-Y.NYB)**: 97.84 Points | Change: **-0.42%** *(Observed: 2026-05-08)* +- **[Commodity ETF] Gold ETF (GLD)**: 433.77 USD | Change: **+0.48%** *(Observed: 2026-05-08)* +- **[Commodity ETF] Silver ETF (SLV)**: 73.01 USD | Change: **+1.97%** *(Observed: 2026-05-08)* + +### 🏛️ Macro Economic Indicators (Lagging) +- **[Interest Rate] Effective Federal Funds Rate (FEDFUNDS)**: 3.64 % | MoM: **+0.00%** | YoY: **-15.94%** *(Observed: 2026-04-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: **+0.00%** | YoY: **+2.38%** *(Observed: 2026-04-01)* \ No newline at end of file diff --git a/Data/3_Gold_Semantic/Macro_Narratives/2026-05-11/macro_context_2026-05-11.md b/Data/3_Gold_Semantic/Macro_Narratives/2026-05-11/macro_context_2026-05-11.md new file mode 100644 index 0000000..9ee91e6 --- /dev/null +++ b/Data/3_Gold_Semantic/Macro_Narratives/2026-05-11/macro_context_2026-05-11.md @@ -0,0 +1,16 @@ +## 📊 Macro & Market Daily Snapshot +> **Generated on:** 2026-05-11 +> **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)**: 7412.84 Points | Change: **+0.19%** *(Observed: 2026-05-11)* +- **[Equity Index] NASDAQ (^IXIC)**: 26274.12 Points | Change: **+0.10%** *(Observed: 2026-05-11)* +- **[Volatility Index] VIX Volatility (^VIX)**: 18.38 Points | Change: **+6.92%** *(Observed: 2026-05-11)* +- **[Currency] US Dollar Index (DX-Y.NYB)**: 98.11 Points | Change: **+0.27%** *(Observed: 2026-05-11)* +- **[Commodity ETF] Gold ETF (GLD)**: 434.65 USD | Change: **+0.20%** *(Observed: 2026-05-11)* +- **[Commodity ETF] Silver ETF (SLV)**: 78.00 USD | Change: **+6.83%** *(Observed: 2026-05-11)* + +### 🏛️ Macro Economic Indicators (Lagging) +- **[Interest Rate] Effective Federal Funds Rate (FEDFUNDS)**: 3.64 % | MoM: **+0.00%** | YoY: **-15.94%** *(Observed: 2026-04-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: **+0.00%** | YoY: **+2.38%** *(Observed: 2026-04-01)* \ No newline at end of file diff --git a/Data/3_Gold_Semantic/Macro_Narratives/2026-05-12/macro_context_2026-05-12.md b/Data/3_Gold_Semantic/Macro_Narratives/2026-05-12/macro_context_2026-05-12.md new file mode 100644 index 0000000..54dee59 --- /dev/null +++ b/Data/3_Gold_Semantic/Macro_Narratives/2026-05-12/macro_context_2026-05-12.md @@ -0,0 +1,16 @@ +## 📊 Macro & Market Daily Snapshot +> **Generated on:** 2026-05-12 +> **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)**: 7400.96 Points | Change: **-0.16%** *(Observed: 2026-05-12)* +- **[Equity Index] NASDAQ (^IXIC)**: 26088.20 Points | Change: **-0.71%** *(Observed: 2026-05-12)* +- **[Volatility Index] VIX Volatility (^VIX)**: 17.99 Points | Change: **-2.12%** *(Observed: 2026-05-12)* +- **[Currency] US Dollar Index (DX-Y.NYB)**: 98.30 Points | Change: **+0.37%** *(Observed: 2026-05-12)* +- **[Commodity ETF] Gold ETF (GLD)**: 432.93 USD | Change: **-0.40%** *(Observed: 2026-05-12)* +- **[Commodity ETF] Silver ETF (SLV)**: 78.55 USD | Change: **+0.71%** *(Observed: 2026-05-12)* + +### 🏛️ Macro Economic Indicators (Lagging) +- **[Interest Rate] Effective Federal Funds Rate (FEDFUNDS)**: 3.64 % | MoM: **+0.00%** | YoY: **-15.94%** *(Observed: 2026-04-01)* +- **[Inflation] CPI (Inflation) (CPIAUCSL)**: 332.41 Index | MoM: **+0.64%** | YoY: **+3.95%** *(Observed: 2026-04-01)* +- **[Labor Market] Unemployment Rate (UNRATE)**: 4.30 % | MoM: **+0.00%** | YoY: **+2.38%** *(Observed: 2026-04-01)* \ No newline at end of file diff --git a/Data/3_Gold_Semantic/News_Qdrant/2026-04-21/qdrant_macro_yields_dollar_processed.jsonl b/Data/3_Gold_Semantic/News_Qdrant/2026-04-21/qdrant_macro_yields_dollar_processed.jsonl new file mode 100644 index 0000000..930e249 --- /dev/null +++ b/Data/3_Gold_Semantic/News_Qdrant/2026-04-21/qdrant_macro_yields_dollar_processed.jsonl @@ -0,0 +1,7 @@ +{"id": "967d7823-ca11-5ed4-a9c4-5426b8fa9ccc", "text": "\"Australien's Beachgoer Ignoring Harry and Meghan Becomes Internet Star\". A beachgoer in Sydney, Australia, became an internet sensation after ignoring Prince Harry and Duchess of Meghan Markle during their visit to Bondi Beach. The incident has sparked discussions about the couple's royal duties versus their personal lives and commercial interests. This event is unlikely to have a significant impact on gold or silver prices but may influence sentiment around British Commonwealth nations.\n\nNote: As this article does not contain any macro-financial information, I did not assign a tone score based on the typical criteria for Gold/Silver options trading desk.", "metadata": {"topic": "macro_yields_dollar", "title": "\"Australien's Beachgoer Ignoring Harry and Meghan Becomes Internet Star\"", "original_title": " „ Sorry , wer ?: Australierin auf Strandtuch ignoriert Harry und Meghan – und wird Internet - Star", "publish_date": "2026-04-21T17:34:00Z", "publish_timestamp": 1776792840, "source": "kreiszeitung.de", "url": "https://www.kreiszeitung.de/boulevard/sorry-wer-australierin-auf-strandtuch-ignoriert-harry-und-meghan-und-wird-internet-star-zr-94272569.html", "entities": ["Prince Harry", "Duchess of Sussex Meghan Markle", "Australia"], "impacted_assets": [], "volatility_implication": "Neutral", "llm_tone_score": 2}} +{"id": "22af10a8-a17a-5a05-8610-49999a75b691", "text": "India's Credit Resilience Tested by West Asia Crisis. Moody's warns that a prolonged West Asia crisis will hurt India's credit stability by widening the trade deficit and reducing remittances. The agency highlights the importance of maintaining investor confidence and managing macroeconomic trade-offs to preserve credit resilience. While India's external position remains relatively sound, the crisis may amplify price pressures and threaten agricultural production and food security.\n\nThe report notes that a prolonged disruption would pose more material challenges, potentially entrenching inflation, straining fiscal and monetary policy flexibility, and testing external investor confidence. The effectiveness and timeliness of policy actions will remain central to preserving macroeconomic and credit resilience amid this external shock.", "metadata": {"topic": "macro_yields_dollar", "title": "India's Credit Resilience Tested by West Asia Crisis", "original_title": "West Asia crisis tests India credit resilience : Moody warns investor confidence is now the key to stability", "publish_date": "2026-04-21T17:34:00Z", "publish_timestamp": 1776792840, "source": "indianexpress.com", "url": "https://indianexpress.com/article/business/moodys-india-credit-stability-west-asia-energy-shock-investor-confidence-10648775/", "entities": ["Moody's Ratings", "Reserve Bank of India (RBI)", "Sanjay Malhotra"], "impacted_assets": ["Equities", "Gold", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "8b1a911e-233b-5153-805c-ba519214562f", "text": "ABF Spins Off Food Assets into Two FTSE-Listed Companies. ABF announced the spin-off of its food assets into two FTSE-listed companies, creating a pure-play food producer (ABF FoodCo) and a separate retailer (Primark). The move aims to unlock value for shareholders by providing more focused investment opportunities. The CEO suggests that individual investors may find the new entities more attractive than the current combined business.", "metadata": {"topic": "macro_yields_dollar", "title": "ABF Spins Off Food Assets into Two FTSE-Listed Companies", "original_title": "ABF spins - off food – key takeaways", "publish_date": "2026-04-21T17:34:00Z", "publish_timestamp": 1776792840, "source": "just-food.com", "url": "https://www.just-food.com/features/abf-spins-off-food-primark-demerger-key-takeaways/", "entities": ["Associated British Foods (ABF)", "Primark", "Wittington Investments", "George Weston"], "impacted_assets": [], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "e55e7445-d5c2-51d0-b7b3-dbdb0bdfefc8", "text": "Apple CEO Tim Cook Steps Down: How He Transformed Apple After Steve Jobs' Death. Tim Cook is stepping down as CEO of Apple after 15 years, during which he transformed the company into a global powerhouse. Under his leadership, Apple's market capitalization grew from $350 billion to over $4 trillion. While Cook's departure may not have significant macro implications, it could lead to some short-term market volatility as investors adjust their expectations.\n\nNote: The tone score is neutral-bullish because while there are no clear directional macro drivers in this news, the overall narrative is positive and highlights Apple's success under Tim Cook's leadership.", "metadata": {"topic": "macro_yields_dollar", "title": "Apple CEO Tim Cook Steps Down: How He Transformed Apple After Steve Jobs' Death", "original_title": "Apple - CEO tritt zurück : So hat Tim Cook Apple 15 Jahre nach Steve Jobs verändert", "publish_date": "2026-04-21T17:34:00Z", "publish_timestamp": 1776792840, "source": "freitag.de", "url": "https://www.freitag.de/autoren/the-guardian/apple-ceo-tritt-zurueck-so-hat-tim-cook-apple-15-jahre-nach-steve-jobs-veraendert", "entities": ["Tim Cook", "Steve Jobs", "John Ternus"], "impacted_assets": ["Equities", "Gold", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 2}} +{"id": "2f1c3f4f-d404-507e-b5ce-5d4e6843b3a2", "text": "Strategy Buys 34,164 Bitcoins, Solana Breaks Records. The article discusses the recent buying activity of Strategy, which acquired 34,164 Bitcoins worth $2.54 billion, and Solana's record-breaking quarter with $1.1 billion in economic activity. Both assets show strength, but gains are limited. The article highlights the potential for institutional investors to enter the market through presales, offering higher returns than current prices.", "metadata": {"topic": "macro_yields_dollar", "title": "Strategy Buys 34,164 Bitcoins, Solana Breaks Records", "original_title": "Bitcoin News : Was hinter dem 2 , 54 - Milliarden - Kauf von Strategy und Solanas Rekordquartal steckt", "publish_date": "2026-04-21T17:34:00Z", "publish_timestamp": 1776792840, "source": "wallstreet-online.de", "url": "https://www.wallstreet-online.de/nachricht/20761948-bitcoin-news-2-54-milliarden-kauf-strategy-solanas-rekordquartal-steckt", "entities": ["Strategy", "Solana", "Artemis", "Goldman Sachs", "CoinMarketCap", "CoinDCX", "Coinpedia"], "impacted_assets": ["Equities", "Gold", "Oil", "USD", "Bitcoin (BTC)", "Solana (SOL)"], "volatility_implication": "Neutral", "llm_tone_score": 2}} +{"id": "fe7deddf-d9fa-5e36-bda3-820cb99a2729", "text": "LXP Q2 2025 Earnings Call Transcript. The earnings call transcript from LXP (LXP) discusses the company's Q2 2025 results, highlighting strong leasing activity and same-store NOI growth. The report also touches on the company's investment strategy, including the sale of a property in Chillicothe, Ohio, and the repurchase of trust preferred securities. The macro transmission mechanism is neutral, as there are no significant macroeconomic drivers or market-moving events discussed in the transcript.\n\nNote: As this is an earnings call transcript from a real estate company, it does not have a direct impact on gold/silver prices.", "metadata": {"topic": "macro_yields_dollar", "title": "LXP Q2 2025 Earnings Call Transcript", "original_title": "LXP ( LXP ) Q2 2025 Earnings Call Transcript", "publish_date": "2026-04-21T17:34:00Z", "publish_timestamp": 1776792840, "source": "finance.yahoo.com", "url": "https://finance.yahoo.com/markets/stocks/articles/lxp-lxp-q2-2025-earnings-162139528.html", "entities": ["Will Eglin", "Nathan Brunner", "Brendan Mullinix", "James Dudley", "Heather"], "impacted_assets": [], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "1a0a0f57-c7ca-5865-834b-1d9b9c4af065", "text": "Failure of Trinamool Government to Address Potato Farmer Woes Likely to Impact Bengal Poll Outcome. The article discusses the struggles of potato farmers in West Bengal, India, who are facing difficulties due to restrictions on selling their produce outside the state. The ruling Trinamool Congress government has been accused of ignoring the issue, which may impact the upcoming state election. The opposition BJP is framing this crisis as part of a broader \"agrarian crisis\" under the Trinamool government and will try to make it an electoral issue.\n\nNote: As there are no direct macro-financial implications from this article, I have assigned a neutral tone score. However, the potential impact on agricultural commodities and INR cannot be ruled out entirely, especially if the situation escalates or affects other states in India.", "metadata": {"topic": "macro_yields_dollar", "title": "Failure of Trinamool Government to Address Potato Farmer Woes Likely to Impact Bengal Poll Outcome", "original_title": "Trinamool govt failure to address potato farmer woes likely to impact Bengal poll outcome", "publish_date": "2026-04-21T17:34:00Z", "publish_timestamp": 1776792840, "source": "ianslive.in", "url": "https://ianslive.in/potato-farmers-woe-likely-to-reflect-in-west-bengal-assembly-mandate--20260421192724", "entities": ["Mamata Banerjee", "Samik Bhattacharya", "Abhishek Banerjee", "Bharatiya Janata Party (BJP)", "Trinamool Congress"], "impacted_assets": [], "volatility_implication": "Neutral", "llm_tone_score": 0}} diff --git a/Data/3_Gold_Semantic/News_Qdrant/2026-04-22/qdrant_macro_central_banks_processed.jsonl b/Data/3_Gold_Semantic/News_Qdrant/2026-04-22/qdrant_macro_central_banks_processed.jsonl new file mode 100644 index 0000000..934264f --- /dev/null +++ b/Data/3_Gold_Semantic/News_Qdrant/2026-04-22/qdrant_macro_central_banks_processed.jsonl @@ -0,0 +1,8 @@ +{"id": "396eb631-a45c-5e70-a90f-162c26d63e6b", "text": "RBI Signals Pause in Rate Hikes for Now, but Keeps FY27 Rate Hike Option Open if Oil and Monsoon Risks Persist. The RBI's MPC is willing to look through the current supply-driven inflation spike for now, but has flagged a possible policy tightening from FY27 if oil and monsoon risks persist. The committee highlighted the risk of \"lower growth with higher inflation\" due to external factors like the Middle East conflict and El-Nino conditions. While the immediate price shock is largely supply-driven, the MPC warned that prolonged conflicts could lead to second-round effects and impact the broader economy.", "metadata": {"topic": "macro_central_banks", "title": "RBI Signals Pause in Rate Hikes for Now, but Keeps FY27 Rate Hike Option Open if Oil and Monsoon Risks Persist", "original_title": "MPC signals pause for now but keeps H2FY27 rate hike on table if oil , monsoon risks persist : Report", "publish_date": "2026-04-23T03:52:44Z", "publish_timestamp": 1776916364, "source": "middleeaststar.com", "url": "http://www.middleeaststar.com/news/279006102/mpc-signals-pause-for-now-but-keeps-h2fy27-rate-hike-on-table-if-oil-monsoon-risks-persist-report", "entities": ["Reserve Bank of India (RBI)", "Monetary Policy Committee (MPC)", "ICICI Global Markets Research", "Saugata Bhattacharya", "Dr. Gupta", "Prof. Singh", "Dr. Kumar"], "impacted_assets": ["Gold", "Silver", "Equities", "Oil", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 2}} +{"id": "6a50babf-ec77-5d73-b668-e7843e8ab8e9", "text": "Oil Shock Delays New Zealand Economy Recovery, But Does Not Derail It. The oil shock caused by the Iran conflict has delayed New Zealand's economic recovery, but Finance Minister Nicola Willis believes it will not derail growth. Inflation is currently above target at 3.1%, increasing the likelihood of further interest-rate hikes later this year. The government will release updated forecasts for GDP, inflation, and unemployment in its budget on May 28.\n\nThe macro transmission mechanism is as follows: higher oil prices lead to increased costs and reduced consumer spending, which can slow down economic growth. This, in turn, may prompt the central bank to hike interest rates to combat inflationary pressures, potentially affecting gold and silver prices.", "metadata": {"topic": "macro_central_banks", "title": "Oil Shock Delays New Zealand Economy Recovery, But Does Not Derail It", "original_title": "New Zealand says oil shock delays economy recovery but does not derail it", "publish_date": "2026-04-23T03:52:44Z", "publish_timestamp": 1776916364, "source": "businesstimes.com.sg", "url": "https://www.businesstimes.com.sg/international/new-zealand-says-oil-shock-delays-economys-recovery-does-not-derail-it", "entities": ["Nicola Willis", "Treasury", "Moody's"], "impacted_assets": ["Equities", "Gold", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 1}} +{"id": "ca7cf97e-9455-5c0c-a9b7-92ba60517c5f", "text": "Stocks Erase Early Gains as Crude Prices Jump on Iran Concerns. The market's attention is on Capitol Hill as Kevin Warsh appears before the Senate Banking Committee for a confirmation hearing as the new Fed Chair. Meanwhile, Iran concerns are driving crude oil prices higher, which may impact gold and equity markets. Strong US retail sales data and positive Q1 earnings results from UnitedHealth Group and General Electric are supporting stock gains, but the overall tone remains neutral.\n\nNote: The tone score is 0 because there are no clear directional macro drivers in this article.", "metadata": {"topic": "macro_central_banks", "title": "Stocks Erase Early Gains as Crude Prices Jump on Iran Concerns", "original_title": "Stocks Erase Early Gains as Crude Prices Jump on Iran Concerns", "publish_date": "2026-04-23T03:52:44Z", "publish_timestamp": 1776916364, "source": "finance.yahoo.com", "url": "https://finance.yahoo.com/markets/stocks/articles/stocks-erase-early-gains-crude-152628449.html", "entities": ["Kevin Warsh", "Thom Tillis", "President Trump", "Vice President Pence", "UnitedHealth Group", "General Electric"], "impacted_assets": ["Equities", "Gold", "Oil"], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "2bc2e23d-5390-5697-a2a2-ea3910dad1a1", "text": "Interview with Frank Elderson, Member of the Executive Board of the ECB and Vice-Chair of the Supervisory Board of the ECB. The ECB's Executive Board member, Frank Elderson, emphasizes the central bank's role in considering climate and nature crises when making monetary policy decisions. He highlights the importance of banks identifying and managing climate-related risks, such as flood-prone mortgage loans or power plants using river water for cooling. While the ECB is already incorporating climate considerations into its economic models and collateral valuation, Elderson suggests exploring more structural instruments to achieve dual objectives, including price stability and climate goals. The discussion does not have a direct impact on gold/silver prices but may influence market sentiment and volatility in the broader financial markets.\n\nNote: As the tone score is 0 (Neutral), it indicates that this interview does not have a significant directional impact on gold/silver prices.", "metadata": {"topic": "macro_central_banks", "title": "Interview with Frank Elderson, Member of the Executive Board of the ECB and Vice-Chair of the Supervisory Board of the ECB", "original_title": "Interview With NRC : ECB", "publish_date": "2026-04-23T03:52:44Z", "publish_timestamp": 1776916364, "source": "miragenews.com", "url": "https://www.miragenews.com/interview-with-nrc-ecb-1660656/", "entities": ["European Central Bank (ECB)", "Frank Elderson", "Milieudefensie", "ING"], "impacted_assets": ["Equities", "Gold", "Oil", "EUR"], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "c0a8abc5-ac10-58c2-bea7-d361cbe610e3", "text": "\"First Home\" Mortgage Package for 2026 with 1.20% Interest Rate Announced!. The Turkish government has announced a new mortgage package for 2026 with an interest rate of 1.20%. The package details are still unclear, but it is expected to be available through banks and have a repayment period of up to 180 months. This news may positively impact the housing market and potentially increase demand for gold as a safe-haven asset.\n\nThe macro transmission mechanism is that lower interest rates can stimulate economic growth by making borrowing cheaper, which can lead to increased consumer spending and investment in the housing sector. This can have a positive impact on gold prices as investors seek safer assets during times of economic uncertainty.", "metadata": {"topic": "macro_central_banks", "title": "\"First Home\" Mortgage Package for 2026 with 1.20% Interest Rate Announced!", "original_title": "2026 Da Gelecek : 1 , 20 Faizli İlk Evim Kredisi Başvuru Tarihleri ve Şartları Açıklandı ! ", "publish_date": "2026-04-23T03:52:44Z", "publish_timestamp": 1776916364, "source": "haberyazar.com", "url": "https://www.haberyazar.com/gundem/2026da-gelecek-120-faizli-ilk-evim-kredisi-basvuru-tarihleri-ve-sartlari-aciklandi/16894", "entities": ["Turkish government", "banks", "homeowners"], "impacted_assets": ["Equities", "Gold", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 2}} +{"id": "0c16eb38-56bb-567e-9a8e-902f8f533f26", "text": "Central Banks' Gold Purchases and Sales in Q1 2026. In the first two months of 2026, the gold market saw a divergence in central banks' actions. While some, like Poland, continued to buy gold to achieve their long-term reserve targets and mitigate risks from external government decisions, others, such as Russia and Turkey, sold gold to address fiscal pressures and stabilize their economies. This dichotomy may lead to increased market volatility and potentially support gold prices.\n\nNote: The tone score is +2 because while there are some bearish elements (Russia and Turkey selling gold), the overall trend of central banks buying gold is bullish for gold prices.", "metadata": {"topic": "macro_central_banks", "title": "Central Banks' Gold Purchases and Sales in Q1 2026", "original_title": "Điểm tin 8h ngày 23 / 4 - VnEconomy", "publish_date": "2026-04-23T03:52:44Z", "publish_timestamp": 1776916364, "source": "vneconomy.vn", "url": "https://vneconomy.vn/diem-tin-8h-ngay-234-s626.htm", "entities": ["Poland", "Uzbekistan", "Kazakhstan", "China", "Russia", "Turkey"], "impacted_assets": ["Gold", "USD"], "volatility_implication": "Increase", "llm_tone_score": 2}} +{"id": "0ae40359-3149-5845-9e2a-0ba2609df5eb", "text": "Vietnam National Assembly Discusses Income Tax Threshold. The Vietnamese National Assembly is debating the income tax threshold, with some members suggesting increasing it from 500 million VND to 3 billion VND. This discussion may have implications for the country's economic policies and potentially affect the value of gold and other assets. The macro transmission mechanism is through changes in government policies and regulations, which can impact market sentiment and volatility.\n\nNote: The tone score is neutral because the article discusses a policy debate without any clear directional macro drivers that would significantly impact gold or silver prices.", "metadata": {"topic": "macro_central_banks", "title": "Vietnam National Assembly Discusses Income Tax Threshold", "original_title": "Quốc hội mổ xẻ ngưỡng chịu thuế , nâng bao nhiêu là hợp lý ? ", "publish_date": "2026-04-23T03:52:44Z", "publish_timestamp": 1776916364, "source": "phunuonline.com.vn", "url": "https://www.phunuonline.com.vn/quoc-hoi-mo-xe-nguong-chiu-thue-nang-bao-nhieu-la-hop-ly-a1580836.html", "entities": ["Nguyễn Duy Thanh", "Trịnh Thị Tú Anh", "Nguyễn Thị Việt Nga", "Vietnamese Government"], "impacted_assets": ["Equities", "Gold", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "bcc6b3f3-bbc1-55fd-a9e2-d51aff322173", "text": "Gold Price on April 23: Prices at Jewelry Companies. The gold price increased by 0.5% to $4,735.65 per ounce on April 23, following a decline of 1% the previous day. Analyst Jim Wyckoff notes that the market is showing signs of buying at the bottom after a sharp drop in March. The recent surge in oil prices and concerns about inflation have contributed to gold's decline, but the metal remains a popular hedge against inflation. In Vietnam, the SJC gold price was listed at 166.70-169.20 million VND per tael (buying-selling).", "metadata": {"topic": "macro_central_banks", "title": "Gold Price on April 23: Prices at Jewelry Companies", "original_title": "Giá vàng ngày 23 / 4 : Bảng giá tại các công ty vàng bạc đá quý", "publish_date": "2026-04-23T03:52:44Z", "publish_timestamp": 1776916364, "source": "baomoi.com", "url": "https://baomoi.com/gia-vang-ngay-23-4-bang-gia-tai-cac-cong-ty-vang-bac-da-quy-c55002075.epi", "entities": ["Jim Wyckoff", "Kitco Metals", "Vàng bạc đá quý Sài Gòn (SJC)", "Công ty Cổ phần Đầu tư vàng Phú Quý"], "impacted_assets": ["Gold", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 2}} diff --git a/Data/3_Gold_Semantic/News_Qdrant/2026-04-22/qdrant_macro_yields_dollar_processed.jsonl b/Data/3_Gold_Semantic/News_Qdrant/2026-04-22/qdrant_macro_yields_dollar_processed.jsonl new file mode 100644 index 0000000..e3942f4 --- /dev/null +++ b/Data/3_Gold_Semantic/News_Qdrant/2026-04-22/qdrant_macro_yields_dollar_processed.jsonl @@ -0,0 +1,6 @@ +{"id": "a139d550-1b03-57a2-9980-7366d3a21cb2", "text": "Asian shares retreat from record highs amid higher oil prices and Middle East tensions. Asian shares retreated from record highs as investors took profits and concerns about higher oil prices and Middle East tensions mounted. The Nikkei fell over 1% after hitting a new high for the second day, while markets in Taiwan and South Korea also turned lower. Higher oil prices were partly to blame, with Brent crude futures up 1.3% to $103.18 a barrel. The increased tension in the Middle East is starting to spook investors as further ship seizures erode hopes of more peace talks.\n\nNote: The tone score is neutral because there are no clear directional macro drivers that would significantly impact gold or silver prices. The article primarily discusses market movements and global events, but does not provide any specific information that would drive a strong bullish or bearish sentiment in the precious metals markets.", "metadata": {"topic": "macro_yields_dollar", "title": "Asian shares retreat from record highs amid higher oil prices and Middle East tensions", "original_title": "Asian shares track Wall Street to record highs but higher oil prices from Gulf shipping woes a risk", "publish_date": "2026-04-23T03:56:06Z", "publish_timestamp": 1776916566, "source": "businesstimes.com.sg", "url": "https://www.businesstimes.com.sg/companies-markets/capital-markets-currencies/asian-shares-track-wall-street-record-highs-higher-oil-prices-gulf-shipping-woes-risk", "entities": ["Nick Twidale", "ATFX Global", "Laura Cooper", "Nuveen"], "impacted_assets": ["Equities", "Gold", "Oil", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "ca7cf97e-9455-5c0c-a9b7-92ba60517c5f", "text": "Stocks Erase Early Gains as Crude Prices Jump on Iran Concerns. The market's attention is on Capitol Hill as Kevin Warsh appears before the Senate Banking Committee for a confirmation hearing as the new Fed Chair. Meanwhile, Iran concerns are driving crude oil prices higher, which may impact gold and equity markets. Strong US retail sales data and positive Q1 earnings results from UnitedHealth Group and General Electric are supporting stock gains, but the overall tone remains neutral.\n\nNote: The tone score is 0 because there are no clear directional macro drivers in this article.", "metadata": {"topic": "macro_yields_dollar", "title": "Stocks Erase Early Gains as Crude Prices Jump on Iran Concerns", "original_title": "Stocks Erase Early Gains as Crude Prices Jump on Iran Concerns", "publish_date": "2026-04-23T03:56:06Z", "publish_timestamp": 1776916566, "source": "finance.yahoo.com", "url": "https://finance.yahoo.com/markets/stocks/articles/stocks-erase-early-gains-crude-152628449.html", "entities": ["Kevin Warsh", "Thom Tillis", "President Trump", "Vice President Pence", "UnitedHealth Group", "General Electric"], "impacted_assets": ["Equities", "Gold", "Oil"], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "f1511049-da77-5593-8485-828f391a49aa", "text": "SK Hynix Records All-Time High Sales and Profits Amid AI Memory Demand Surge. SK Hynix reported record-high sales and profits in the first quarter, driven by surging demand for high-performance memory chips fueled by the AI boom. The company expects this trend to continue, with customers prioritizing quantity over price. As a result, SK Hynix plans to accelerate its investment in AI infrastructure, including the development of high-bandwidth memory (HBM) and server-use DRAM. This will likely drive up demand for these products, potentially increasing prices and volatility in the market.", "metadata": {"topic": "macro_yields_dollar", "title": "SK Hynix Records All-Time High Sales and Profits Amid AI Memory Demand Surge", "original_title": "현금 쌓인 SK하이닉스 … 다른 데 안 쓴다 , 재투자가 최선 ", "publish_date": "2026-04-23T03:56:06Z", "publish_timestamp": 1776916566, "source": "newspim.com", "url": "https://www.newspim.com/news/view/20260423000602", "entities": ["SK Hynix", "AI", "memory demand", "server market"], "impacted_assets": ["Equities", "Gold", "USD"], "volatility_implication": "Increase", "llm_tone_score": 3}} +{"id": "4dce5769-6888-5042-a87b-311a83bccf0f", "text": "Should You Buy Government Bonds in Times of Political Crisis?. The article discusses the risks and uncertainties associated with buying government bonds during a political crisis. It highlights how political instability can lead to increased borrowing costs for governments, reduced tolerance for risk among investors, and pressure on public finances. The article concludes that while government bonds remain a relatively safe investment, they are not completely isolated from the reality of politics and economics in a country. This event is likely to increase market fear/VIX, as it highlights potential risks and uncertainties in the financial markets.\n\nNote: The tone score is -2 because the article emphasizes the potential risks and uncertainties associated with buying government bonds during a political crisis, which could lead to increased borrowing costs and reduced investor confidence.", "metadata": {"topic": "macro_yields_dollar", "title": "Should You Buy Government Bonds in Times of Political Crisis?", "original_title": "Merită să mai cumperi titluri de stat în plină criză politică ? ", "publish_date": "2026-04-23T03:56:06Z", "publish_timestamp": 1776916566, "source": "cotidianul.ro", "url": "https://www.cotidianul.ro/merita-sa-mai-cumperi-titluri-de-stat-in-criza-plina-criza-politica/", "entities": ["Romania", "government bonds", "investors"], "impacted_assets": ["Equities", "Government Bonds", "USD"], "volatility_implication": "Increase", "llm_tone_score": -2}} +{"id": "44b5f2a7-25de-5361-a991-8e5e3ce7a0f8", "text": "Asia shares track Wall Street to record highs. Asian shares retreated from record highs as investors took profits after a technology-driven rally. The S&P 500 and Nasdaq notched fresh record-closing highs overnight, but the gains were tempered by concerns about rising energy prices and tensions in the Middle East. Oil prices rose for a fourth straight day, while Treasury yields edged up. The dollar held onto small gains from overnight. The macro transmission mechanism is neutral, with no clear directional drivers impacting gold or silver prices.", "metadata": {"topic": "macro_yields_dollar", "title": "Asia shares track Wall Street to record highs", "original_title": "Asia shares track Wall Street to record highs", "publish_date": "2026-04-23T03:56:06Z", "publish_timestamp": 1776916566, "source": "perthnow.com.au", "url": "https://www.perthnow.com.au/news/business/asia-shares-track-wall-street-to-record-highs-c-22181029", "entities": ["ATFX Global", "Nuveen", "GE Vernova", "Boeing", "Tesla", "Iran"], "impacted_assets": ["Equities", "Gold", "Oil", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "305eb94d-5494-5f27-acea-5c339d728e34", "text": "Sandra Echeverría Accused of Extortion by MetaXchange. A legal controversy surrounding actress Sandra Echeverría and her investment in MetaXchange has taken a new turn with an accusation of extortion. The case began as an accusation of fraud but shifted after the detention of MetaXchange's director and the company's subsequent legal response. The dispute centers around payments made to investors, which MetaXchange claims are legitimate returns on investments. The case remains ongoing, with both sides presenting their versions of events and evidence.\n\nNote: This article does not have a direct impact on Gold/Silver prices or macro-financial markets.", "metadata": {"topic": "macro_yields_dollar", "title": "Sandra Echeverría Accused of Extortion by MetaXchange", "original_title": "Denuncian a Sandra Echeverría por presunta extorsión : ¿ qué pasó con la famosa actriz de Televisa ?; MetaXchange responde a acusaciones", "publish_date": "2026-04-23T03:56:06Z", "publish_timestamp": 1776916566, "source": "elmanana.com.mx", "url": "https://www.elmanana.com.mx/escena/2026/4/22/denuncian-sandra-echeverria-por-presunta-extorsion-que-paso-con-la-famosa-actriz-de-televisa-174716.html", "entities": ["Sandra Echeverría", "MetaXchange", "Nazaret 'N'"], "impacted_assets": [], "volatility_implication": "Neutral", "llm_tone_score": 0}} diff --git a/Data/3_Gold_Semantic/News_Qdrant/2026-04-24/qdrant_macro_yields_dollar_processed.jsonl b/Data/3_Gold_Semantic/News_Qdrant/2026-04-24/qdrant_macro_yields_dollar_processed.jsonl new file mode 100644 index 0000000..06108ee --- /dev/null +++ b/Data/3_Gold_Semantic/News_Qdrant/2026-04-24/qdrant_macro_yields_dollar_processed.jsonl @@ -0,0 +1,7 @@ +{"id": "07aa6855-f325-5073-b63c-fd32df4b0c09", "text": "Chilean Stock Market Projections for the Next 12 Months. The article discusses the performance and prospects of various companies listed on the IPSA index in Chile. The tone is neutral-bullish due to mixed signals from individual companies. SQM-B, a mining company, has seen a strong rebound driven by the lithium market, while Banco de Chile and Banco Santander have reported positive results despite inflationary pressures. Falabella, a retailer, has achieved record profits and reduced its debt-to-EBITDA ratio. The overall macro transmission mechanism is influenced by global events, such as the conflict in the Middle East, which may impact Chile's inflation rate.\n\nNote: As this article primarily focuses on individual company performances rather than macroeconomic drivers, the tone score is slightly more neutral-bullish. However, the indirect impact of global events on Chile's economy and inflation rate keeps the overall tone from being strongly bullish or bearish.", "metadata": {"topic": "macro_yields_dollar", "title": "Chilean Stock Market Projections for the Next 12 Months", "original_title": "Acciones IPSA : las proyecciones a 12 meses | Diario Financiero", "publish_date": "2026-04-24T18:09:44Z", "publish_timestamp": 1777054184, "source": "df.cl", "url": "https://www.df.cl/senal-df/senales-financieras/acciones-de-empresas-ipsa-las-proyecciones-a-12-meses", "entities": ["IPSA", "Parque Arauco", "MallPlaza", "Engie Energía", "Entel", "CMPC", "Cencosud", "SQM-B", "BCI Corredor de Bolsa", "Banco de Chile", "Banco Santander", "Falabella"], "impacted_assets": ["Equities", "Gold (indirectly)"], "volatility_implication": "Neutral", "llm_tone_score": 2}} +{"id": "e1baa4f2-e1af-5612-8d67-23b02effc3f0", "text": "Record Numbers Fade Away, Market Reacts Surprisingly Cooled: Newmont - Stock Under Pressure: Profit Surge Does Not Convince Investors. The escalating conflict in Iran has driven energy prices sharply higher. This structural problem poses growing risks to the global economy, increasing inflationary pressure and threatening interest rate cuts. However, where risks arise, opportunities also emerge. Companies that benefit from a sustained higher energy price level include oil and gas producers, utilities, renewable energies, and select commodity and agricultural stocks. Our special report highlights three stocks that fit this profile: crisis profiteers with solid business models, attractive valuations, and long-term potential.\n\nNote: The article's focus on the impact of the Iran conflict on energy prices and the subsequent opportunities for certain companies does not have a direct bearing on gold or silver prices. Therefore, the tone score is neutral.", "metadata": {"topic": "macro_yields_dollar", "title": "Record Numbers Fade Away, Market Reacts Surprisingly Cooled: Newmont - Stock Under Pressure: Profit Surge Does Not Convince Investors", "original_title": "Rekordzahlen verpuffen , Markt reagiert überraschend kühl : Newmont - Aktie unter Druck : Gewinnsprung überzeugt Anleger nicht", "publish_date": "2026-04-24T18:09:44Z", "publish_timestamp": 1777054184, "source": "finanznachrichten.de", "url": "https://www.finanznachrichten.de/nachrichten-2026-04/68299448-rekordzahlen-verpuffen-markt-reagiert-ueberraschend-kuehl-newmont-aktie-unter-druck-gewinnsprung-ueberzeugt-anleger-nicht-088.htm", "entities": ["Newmont", "Iran", "Strait of Hormuz", "LNG", "Oil"], "impacted_assets": ["Equities", "Gold", "Oil", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "273db729-246c-5ec2-85fb-a4a848445bc2", "text": "DZ Bank upgrades Intel to \"Hold\" and sets fair value at $80. The DZ Bank has upgraded its rating on Intel from \"Sell\" to \"Hold\" and set a fair value of $80. This positive assessment is attributed to the company's successful recovery from its largest crisis in under a year, led by CEO Tan. This impressive performance has exceeded expectations, making it a bullish sign for Intel's future growth prospects.\n\nNote: The tone score is +2 because while this news is generally positive for Intel and its stock price, it may not have a significant impact on the broader macroeconomic environment or gold/silver prices.", "metadata": {"topic": "macro_yields_dollar", "title": "DZ Bank upgrades Intel to \"Hold\" and sets fair value at $80", "original_title": "newratings . de", "publish_date": "2026-04-24T18:09:44Z", "publish_timestamp": 1777054184, "source": "newratings.de", "url": "https://www.newratings.de/du/main/company_headline.m?nid=19697363", "entities": ["Intel", "DZ Bank", "Ingo Wermann", "Tan"], "impacted_assets": ["Equities", "Technology Stocks"], "volatility_implication": "Neutral", "llm_tone_score": 2}} +{"id": "8c4b0f23-dc52-5c2d-809e-7361a56e1976", "text": "The Federal Reserve is facing its most significant reform in decades. The article discusses the potential reforms to the Federal Reserve proposed by Kevin Warsh, a nominee for Fed chairman. Warsh criticizes the Fed's use of quantitative easing and its handling of inflation, suggesting changes to the way inflation is measured, managed, and communicated. His plan aims to reduce the Fed's balance sheet, change the inflation measurement framework, improve communication, and make the Fed more accountable for inflation control. This could lead to a stronger USD and potentially higher gold prices.\n\nNote: The tone score is +2 because while Warsh's proposals are generally bullish for gold (e.g., reducing the Fed's balance sheet), his criticism of the Fed's handling of inflation and his emphasis on accountability may also be seen as a warning sign for investors, which could lead to some market volatility.", "metadata": {"topic": "macro_yields_dollar", "title": "The Federal Reserve is facing its most significant reform in decades", "original_title": "La Reserva Federal se enfrenta a su mayor reforma en décadas", "publish_date": "2026-04-24T18:09:44Z", "publish_timestamp": 1777054184, "source": "df.cl", "url": "https://www.df.cl/senal-df/senales-financieras/la-reserva-federal-se-enfrenta-a-su-mayor-reforma-en-decadas", "entities": ["Kevin Warsh", "Scott Bessent", "Thom Tillis", "Donald Trump", "Jerome Powell"], "impacted_assets": ["Gold", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 2}} +{"id": "e9089f0a-517a-57f0-bfeb-14eb886c719e", "text": "Saudi Riyal to Pakistani Rupee Rate Update for April 24, 2026. The Saudi Riyal (SAR) is trading at a relatively stable rate against the Pakistani Rupee (PKR), with no significant changes from previous sessions. This stability provides mixed economic signals for remittance receivers, importers, foreign exchange reserves, and exporters. While the steady rupee value supports Pakistan's external buffers and keeps exports competitive, it also means purchasing power remains steady but does not expand, requiring careful household budgeting amid persistent inflation. The macro transmission mechanism is primarily driven by the stability of the SAR/PKR rate, which has a neutral impact on gold and silver prices.", "metadata": {"topic": "macro_yields_dollar", "title": "Saudi Riyal to Pakistani Rupee Rate Update for April 24, 2026", "original_title": "Saudi Riyal to Pakistani Rupee Rate Today – April 24 , 2026", "publish_date": "2026-04-24T18:09:44Z", "publish_timestamp": 1777054184, "source": "arynews.tv", "url": "https://arynews.tv/saudi-riyal-to-pakistani-rupee-rate-today-april-24-2026", "entities": ["State Bank of Pakistan", "Saudi Arabia", "Pakistan"], "impacted_assets": ["Equities", "Gold", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "925de9e2-3e96-5702-b25f-74ec479a24ef", "text": "Meta Lays Off Thousands of Employees to Invest in AI, Why?. Meta's decision to lay off thousands of employees and invest in AI is part of a broader trend among tech giants. The move aims to increase efficiency and reduce costs by automating tasks that were previously performed by humans. While this may lead to short-term pain for affected workers, it could ultimately benefit shareholders as the company becomes more competitive in the market.", "metadata": {"topic": "macro_yields_dollar", "title": "Meta Lays Off Thousands of Employees to Invest in AI, Why?", "original_title": "Meta ontslaat duizenden werknemers om te investeren in AI , waarom eigenlijk ? ", "publish_date": "2026-04-24T18:09:44Z", "publish_timestamp": 1777054184, "source": "nos.nl", "url": "https://nos.nl/artikel/2611855-meta-ontslaat-duizenden-werknemers-om-te-investeren-in-ai-waarom-eigenlijk", "entities": ["Mark Zuckerberg", "Amazon", "Oracle", "Meta", "ING", "Jan Slijkerman", "Henk Volberda", "Nico Inberg"], "impacted_assets": ["Equities", "Gold", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 2}} +{"id": "75a1556d-10a0-5f1b-8927-7e8f6fa0cb23", "text": "Bitcoin Prognose: Analysts Expect Up to $250,000 by Year-End. The article highlights the convergence of analyst predictions for Bitcoin's price by year-end, with some expecting up to $250,000. Institutional buyers are driving the market, and historical data suggests that smaller projects in early stages can outperform Bitcoin's gains. This trend is expected to repeat itself, potentially leading to increased market volatility.\n\nNote: The tone score of +3 indicates a bullish sentiment for Gold/Silver prices due to the potential increase in market fear/VIX driven by the predicted price surge in Bitcoin.", "metadata": {"topic": "macro_yields_dollar", "title": "Bitcoin Prognose: Analysts Expect Up to $250,000 by Year-End", "original_title": "Bitcoin Prognose : Analysten sehen 250 . 000 Dollar bis Jahresende - diese Daten stützen die These", "publish_date": "2026-04-24T18:09:44Z", "publish_timestamp": 1777054184, "source": "finanznachrichten.de", "url": "https://www.finanznachrichten.de/nachrichten-2026-04/68299434-bitcoin-prognose-analysten-sehen-250-000-dollar-bis-jahresende-diese-daten-stuetzen-die-these-712.htm", "entities": ["Strategy", "Bernstein", "Fundstrat", "Citi", "Kraken", "BlackRock", "Cathie Wood", "CLARITY Act", "Dogecoin", "Shiba Inu", "PEPE"], "impacted_assets": ["Gold", "Silver", "Equities", "Cryptocurrencies"], "volatility_implication": "Increase", "llm_tone_score": 3}} diff --git a/Data/3_Gold_Semantic/News_Qdrant/2026-04-25/qdrant_macro_central_banks_processed.jsonl b/Data/3_Gold_Semantic/News_Qdrant/2026-04-25/qdrant_macro_central_banks_processed.jsonl new file mode 100644 index 0000000..695f6dd --- /dev/null +++ b/Data/3_Gold_Semantic/News_Qdrant/2026-04-25/qdrant_macro_central_banks_processed.jsonl @@ -0,0 +1,8 @@ +{"id": "747d9811-b2fc-566e-bc56-e35ce6352ed6", "text": "Many Vietnamese Securities Companies and Businesses Post Low Profit Due to Self-Dealing, Lowest in Four Quarters. Vietnamese securities companies and businesses are experiencing low profits due to self-dealing, with many reporting losses or decreased earnings. The main drivers of this trend are the impact of market fluctuations, particularly in response to geopolitical events, and the increasing competition in brokerage fees and margin lending. This has led to a decrease in profitability for many companies, with some even considering reducing their reliance on self-dealing to improve their return on equity (ROE). The situation is expected to continue affecting the overall performance of the securities industry, potentially leading to a decrease in market volatility.", "metadata": {"topic": "macro_central_banks", "title": "Many Vietnamese Securities Companies and Businesses Post Low Profit Due to Self-Dealing, Lowest in Four Quarters", "original_title": " Chơi dao với tự doanh , lợi nhuận công ty chứng khoán thấp nhất 4 quý", "publish_date": "2026-04-25T18:10:04Z", "publish_timestamp": 1777140604, "source": "tuoitre.vn", "url": "https://tuoitre.vn/choi-dao-voi-tu-doanh-loi-nhuan-cong-ty-chung-khoan-thap-nhat-4-quy-20260425194635717.htm", "entities": ["EVS", "VDS", "SBS", "OCBS", "Chứng khoán An Bình (ABS)", "Chứng khoán SHS", "Nguyễn Thế Minh", "Nguyễn Duy Linh", "Nguyễn Thị Thu Hiền", "TCBS", "NDAN", "VPB", "GEX", "DGW"], "impacted_assets": ["Equities", "Gold", "USD"], "volatility_implication": "Decrease", "llm_tone_score": -2}} +{"id": "9489fe48-5bdd-5379-941f-ac9a051b96da", "text": "Justice Department Drops Criminal Investigation into Federal Reserve Chair Jerome Powell. The Justice Department has dropped its criminal investigation into Federal Reserve Chair Jerome Powell, clearing the way for his replacement to be confirmed. This development is likely to have a neutral impact on gold and silver prices, as it does not introduce any significant macroeconomic or geopolitical drivers that would affect market sentiment.", "metadata": {"topic": "macro_central_banks", "title": "Justice Department Drops Criminal Investigation into Federal Reserve Chair Jerome Powell", "original_title": "Justice Department drops criminal investigation into Federal Reserve Chair Jerome Powell", "publish_date": "2026-04-25T18:10:04Z", "publish_timestamp": 1777140604, "source": "ky3.com", "url": "https://www.ky3.com/2026/04/25/justice-department-drops-criminal-investigation-into-federal-reserve-chair-jerome-powell/", "entities": ["Jerome Powell", "Jeannine Pirro", "Donald Trump", "Kevin Warsh", "John Thune", "Karoline Leavitt"], "impacted_assets": ["Equities", "Gold", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 1}} +{"id": "1ced9af9-6acb-586c-b798-fc02e6c713e4", "text": "Insurance Company Agribank Reports 17% Increase in Q1 Profit. Agribank Insurance Company (ABI) reported a 17% increase in Q1 profit, driven by growth in both insurance and banking businesses. The company's bancassurance model through its parent bank, Agribank, contributed significantly to the profit growth. ABI's financial performance was also boosted by an increase in interest income from deposits. However, the company faces pressure from rising claims expenses and relies heavily on its bancassurance channel and deposit-based investments.\n\nThe macro transmission mechanism is as follows: The strong Q1 results of Agribank Insurance Company (ABI) are largely driven by the growth in its banking business, which is closely tied to the interest rate environment. As interest rates rise, ABI's deposit-based investments become more attractive, leading to increased profits. This positive trend may have a neutral impact on market volatility, as it does not significantly alter the overall macroeconomic landscape.", "metadata": {"topic": "macro_central_banks", "title": "Insurance Company Agribank Reports 17% Increase in Q1 Profit", "original_title": "Hưởng lợi từ ngân hàng mẹ và lãi suất tiền gửi , Bảo hiểm Agribank tăng 17 % lợi nhuận quý 1", "publish_date": "2026-04-25T18:10:04Z", "publish_timestamp": 1777140604, "source": "vietstock.vn", "url": "https://vietstock.vn/2026/04/huong-loi-tu-ngan-hang-me-va-lai-suat-tien-gui-bao-hiem-agribank-tang-17-loi-nhuan-quy-1-737-1434045.htm", "entities": ["Agribank", "Agribank Insurance Company (ABI)", "Vietnam"], "impacted_assets": ["Equities", "Gold", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 2}} +{"id": "f946ee69-044a-560b-a3ab-9603e9e7fb1e", "text": "Confirmation Vote for Next Fed Chair Scheduled. The scheduled confirmation vote for Kevin Warsh as the next Federal Reserve chairman is a neutral event for gold and silver prices. The market will focus on the macro implications of Warsh's potential appointment rather than any immediate impact on interest rates or inflation. The dropped investigation into Jerome Powell may also reduce uncertainty, keeping volatility in check.", "metadata": {"topic": "macro_central_banks", "title": "Confirmation Vote for Next Fed Chair Scheduled", "original_title": "Senate vote to confirm Kevin Warsh as Fed Chair scheduled for next week", "publish_date": "2026-04-25T18:10:04Z", "publish_timestamp": 1777140604, "source": "washingtonexaminer.com", "url": "https://www.washingtonexaminer.com/news/senate/4543080/senate-vote-confirm-warsh-fed-chair-scheduled-next-week/", "entities": ["Kevin Warsh", "Jerome Powell", "Thom Tillis"], "impacted_assets": ["USD", "Equities"], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "7d853ac3-73ee-5da6-830b-97eff203ca62", "text": "Treasury Secretary Bessent Rules Out Running for Office, Leaves Door Open to Fed Chairman Role. Treasury Secretary Scott Bessent has ruled out a run for office, removing a potential macro driver that could impact gold and silver prices. His willingness to consider serving as Fed chairman, however, keeps the door open for future market-moving events. The lack of any clear directional macro drivers in this news piece results in a neutral tone score.", "metadata": {"topic": "macro_central_banks", "title": "Treasury Secretary Bessent Rules Out Running for Office, Leaves Door Open to Fed Chairman Role", "original_title": "Bessent takes running for office off the table but stays open to Fed chairman", "publish_date": "2026-04-25T18:10:04Z", "publish_timestamp": 1777140604, "source": "washingtonexaminer.com", "url": "https://www.washingtonexaminer.com/news/white-house/4543147/bessent-not-running-for-office-open-to-fed-chair/", "entities": ["Scott Bessent", "Donald Trump", "Federal Reserve"], "impacted_assets": ["USD", "Equities"], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "afaaa0bb-ddc2-576f-9f5f-ca9b72958ab1", "text": "Entry-level job seekers in Kansas and Missouri feel the hiring slowdown. The article highlights the struggles of entry-level job seekers in Kansas and Missouri, with many facing a slow hiring market. The unemployment rate may be low on paper, but the reality is that young workers are having trouble finding employment. This is attributed to economic uncertainty caused by various factors such as wars, shifting immigration policy, inflation, tariffs, interest rates, and oil prices. As a result, businesses are being more selective in their hiring processes, making it even harder for job seekers to find work. This macro environment is likely to increase market fear/VIX, which could lead to increased volatility in asset prices, including Gold and Silver.", "metadata": {"topic": "macro_central_banks", "title": "Entry-level job seekers in Kansas and Missouri feel the hiring slowdown", "original_title": "Entry - level job seekers in Kansas and Missouri feel the hiring slowdown : It rough out here ", "publish_date": "2026-04-25T18:10:04Z", "publish_timestamp": 1777140604, "source": "kcur.org", "url": "https://www.kcur.org/news/2026-04-25/entry-level-job-seekers-in-kansas-and-missouri-feel-the-hiring-slowdown-its-rough-out-here", "entities": ["Arthur Mayo", "Gracie Chrisco", "Emma Shoemaker", "Harry Brewer", "Bureau of Labor Statistics", "Morgan Hunter"], "impacted_assets": ["Equities", "Gold", "USD"], "volatility_implication": "Increase", "llm_tone_score": -2}} +{"id": "95b2103b-3dfa-56fb-8d64-acba6e61979b", "text": "Oil Shock Looms as Strait of Hormuz Closure Threatens to Crush Demand. The closure of the Strait of Hormuz is expected to crush oil demand as countries with large reserves are already drawing down their stockpiles and paying a premium for supplies. As the crisis deepens, analysts warn that the impact will spread globally, affecting industries such as petrochemicals in Asia and Europe, and even impacting daily life for consumers. The International Monetary Fund has reduced its global growth forecast, while the European Central Bank has warned of a possible recession. With oil prices already surging, the potential for further price increases is high, with some analysts predicting Brent crude could reach $250 per barrel in extreme scenarios.", "metadata": {"topic": "macro_central_banks", "title": "Oil Shock Looms as Strait of Hormuz Closure Threatens to Crush Demand", "original_title": "صدمة مليار برميل نفط على وشك سحق الطلب", "publish_date": "2026-04-25T18:10:04Z", "publish_timestamp": 1777140604, "source": "arabic.rt.com", "url": "https://arabic.rt.com/business/1782435-%D8%B5%D8%AF%D9%85%D8%A9-%D9%85%D9%84%D9%8A%D8%A7%D8%B1-%D8%A8%D8%B1%D9%85%D9%8A%D9%84-%D9%86%D9%81%D8%B7-%D8%B9%D9%84%D9%89-%D9%88%D8%B4%D9%83-%D8%B3%D8%AD%D9%82-%D8%A7%D9%84%D8%B7%D9%84%D8%A8/", "entities": ["United States", "Iran", "Israel", "European Central Bank", "FGE NexantECA", "Germany", "International Monetary Fund"], "impacted_assets": ["Equities", "Gold", "Oil", "USD"], "volatility_implication": "Increase", "llm_tone_score": -4}} +{"id": "1e7932b8-0465-55f3-9353-3273ea82961c", "text": "Have Markets Lost Touch with Reality?. The article discusses the complex macroeconomic context and its impact on financial markets. Despite ongoing geopolitical tensions, market indicators suggest a disconnect between reality and expectations. The Federal Reserve's monetary policy decisions remain crucial, with interest rates influencing inflation expectations. The solid earnings of technology companies, particularly in AI, support market stability. However, the rapid evolution of AI is causing disruptions in certain industries, potentially leading to an \"excess supply\" in the software segment.\n\nThe article highlights the importance of AI in driving growth and its potential impact on various asset classes. The emergence of new markets, fueled by technology, presents opportunities for investors. Overall, the tone remains neutral, as there are no clear directional macro drivers that would significantly impact gold or silver prices.", "metadata": {"topic": "macro_central_banks", "title": "Have Markets Lost Touch with Reality?", "original_title": "Candriam : i mercati hanno perso il contatto con la realta ? - PAROLA AL MERCATO", "publish_date": "2026-04-25T18:10:04Z", "publish_timestamp": 1777140604, "source": "borsaitaliana.it", "url": "https://www.borsaitaliana.it/borsa/notizie/radiocor/finanza/dettaglio/candriam-i-mercati-hanno-perso-il-contatto-con-la-realta--parola-al-mercato-nRC_25042026_1334_274150240.html", "entities": ["Candriam", "Federal Reserve", "Iran", "Italy", "Europe", "UK"], "impacted_assets": ["Equities", "Gold", "Oil", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 0}} diff --git a/Data/3_Gold_Semantic/News_Qdrant/2026-04-25/qdrant_macro_yields_dollar_processed.jsonl b/Data/3_Gold_Semantic/News_Qdrant/2026-04-25/qdrant_macro_yields_dollar_processed.jsonl new file mode 100644 index 0000000..3dc2d9e --- /dev/null +++ b/Data/3_Gold_Semantic/News_Qdrant/2026-04-25/qdrant_macro_yields_dollar_processed.jsonl @@ -0,0 +1,9 @@ +{"id": "b4ca246d-31e8-5f6c-8107-1406affdc563", "text": "Spain's Tax Agency Cracks Down on Portuguese Residency Loophole. The Spanish Tax Agency is tightening its grip on a loophole that allowed Spanish citizens to avoid paying taxes by claiming residency in Portugal. This move could lead to increased tax compliance and potentially reduce the attractiveness of Portugal's low-tax regime for Spanish investors. The impact on gold prices may be neutral, but it could contribute to a decrease in market volatility as investors become more cautious about their tax obligations.\n\nNote: The tone score is bearish because the news suggests that the Spanish Tax Agency is increasing its scrutiny of taxpayers who have been exploiting this loophole, which could lead to increased compliance and potentially reduce the attractiveness of Portugal's low-tax regime.", "metadata": {"topic": "macro_yields_dollar", "title": "Spain's Tax Agency Cracks Down on Portuguese Residency Loophole", "original_title": "Mudarse a Portugal ya no renta | El Norte de Castilla", "publish_date": "2026-04-25T18:11:56Z", "publish_timestamp": 1777140716, "source": "elnortedecastilla.es", "url": "https://www.elnortedecastilla.es/nacional/mudarse-portugal-renta-20260426182558-ntrc.html", "entities": ["Spanish Tax Agency", "Portugal", "Tribunal Económico Administrativo Central (TEAC)", "dPG Legal"], "impacted_assets": ["Equities", "Gold", "USD"], "volatility_implication": "Decrease", "llm_tone_score": -2}} +{"id": "22c2a653-2735-5105-b432-621ea2d38fac", "text": "Microsoft allows users to pause Windows Update indefinitely. Microsoft has introduced an option to pause Windows Update indefinitely, allowing users to delay updates by 35 days at a time. This change applies to quality and feature updates, but not critical security patches marked as urgent. The move is seen as a response to user feedback and regulatory pressure, particularly from the European Union's Digital Markets Act. While this change may improve the daily lives of millions of users, its impact on gold and silver prices is likely to be neutral.", "metadata": {"topic": "macro_yields_dollar", "title": "Microsoft allows users to pause Windows Update indefinitely", "original_title": "Microsoft cede : ya puedes pausar Windows Update casi para siempre", "publish_date": "2026-04-25T18:11:56Z", "publish_timestamp": 1777140716, "source": "que.es", "url": "https://www.que.es/2026/04/25/microsoft-pausar-windows-update-indefinido/", "entities": ["Microsoft", "Windows 11", "Release Preview", "The Verge", "Apple", "macOS"], "impacted_assets": [], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "e325bbcb-eca8-5563-9dcc-ae0b4a6baa79", "text": "Federal Judge to Decide Whether Medicare Can Distribute Hemp-Marijuana Cannabinoids Without FDA Approval. A federal judge will decide whether Medicare can distribute hemp-marijuana cannabinoids without FDA approval. The case involves MMJ International Holdings, an FDA IND-stage pharmaceutical cannabinoid developer, challenging CMS's Substance Access Beneficiary Engagement Incentive program. The outcome of this litigation carries direct market implications for investors tracking the regulated pharmaceutical cannabinoid sector.", "metadata": {"topic": "macro_yields_dollar", "title": "Federal Judge to Decide Whether Medicare Can Distribute Hemp-Marijuana Cannabinoids Without FDA Approval", "original_title": "MMJ International Holdings : Federal Judge to Decide Whether Medicare Can Distribute Hemp - Marijuana Cannabinoids Without FDA Approval", "publish_date": "2026-04-25T18:11:56Z", "publish_timestamp": 1777140716, "source": "finanznachrichten.de", "url": "https://www.finanznachrichten.de/nachrichten-2026-04/68302563-mmj-international-holdings-federal-judge-to-decide-whether-medicare-can-distribute-hemp-marijuana-cannabinoids-without-fda-approval-200.htm", "entities": ["MMJ International Holdings", "CMS", "FDA", "DEA", "Charlotte's Web"], "impacted_assets": ["Pharmaceuticals", "Equities", "Gold"], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "78580699-08f9-5a87-830b-77fa20c5ef22", "text": "China's New \"King of the Road\": Chinese Automakers Gain Ground on German Brands like Mercedes, Volkswagen, and BMW. The article highlights China's growing presence in the automotive industry, with local brands like Geely and Nio gaining ground on German luxury car manufacturers such as Mercedes, Volkswagen, and BMW. This trend is driven by China's focus on electric vehicles (BEVs), software, and batteries, which are key areas where Chinese companies excel. The article suggests that this shift may lead to a decline in the competitiveness of German brands in the Chinese market, potentially impacting their stock prices and the value of the USD.\n\nThe tone score is bearish because it highlights the challenges faced by German luxury car manufacturers in China, which could negatively impact their financial performance and the value of the USD. The article's focus on China's growing presence in the automotive industry also suggests a decrease in market volatility as investors become more comfortable with the country's increasing influence in this sector.", "metadata": {"topic": "macro_yields_dollar", "title": "China's New \"King of the Road\": Chinese Automakers Gain Ground on German Brands like Mercedes, Volkswagen, and BMW", "original_title": "Der neue „ König der Straße : China schlägt deutsche Autobauer wie Mercedes , Volkswagen und BMW", "publish_date": "2026-04-25T18:11:56Z", "publish_timestamp": 1777140716, "source": "merkur.de", "url": "http://www.merkur.de/wirtschaft/wie-mercedes-volkswagen-und-bmw-der-neue-koenig-der-strasse-china-zerlegt-deutsche-autobauer-zr-94272692.html", "entities": ["Geely", "Nio", "Zeekr", "Cui Dongshu", "Gan Jiayue", "Frank Schwope", "Carl Hahn", "Robert Cisek", "Ralf Brandstätter", "Yale Zhang"], "impacted_assets": ["Equities", "Gold", "USD"], "volatility_implication": "Decrease", "llm_tone_score": -2}} +{"id": "e8bbcf01-8ad7-5e41-8cb7-7229feea0be2", "text": "Is it still worth being a landlord?. The introduction of the Renters' Rights Act and new regulations for landlords may lead to a decrease in landlord profitability due to increased administrative burdens and reduced tax relief. This could negatively impact the demand for buy-to-let properties, potentially driving down gold prices as investors seek safer assets. The strengthening USD could also contribute to lower gold prices.", "metadata": {"topic": "macro_yields_dollar", "title": "Is it still worth being a landlord?", "original_title": "More rules , less profit : is it still worth being a landlord ? ", "publish_date": "2026-04-25T18:11:56Z", "publish_timestamp": 1777140716, "source": "thetimes.com", "url": "https://www.thetimes.com/money/mortgages/article/money-landlord-uk-law-change-rules-2gv0c6g5t", "entities": ["Chris Norris", "National Residential Landlords Association", "George Osborne", "Rachel Reeves", "Lucian Cook", "Savills"], "impacted_assets": ["Equities", "Gold", "USD"], "volatility_implication": "Decrease", "llm_tone_score": -2}} +{"id": "560b876a-a119-5526-8ef4-858aa1c653ce", "text": "Paolini Loses to Baptiste in WTA Madrid 2026. Italian tennis player Jasmine Paolini lost to American Hailey Baptiste in the WTA Madrid 2026 tournament. The match ended with a score of 5-7, 3-6. Despite Paolini's efforts, she was unable to overcome Baptiste's strong performance. This event has no macro-financial implications and is not expected to impact gold or silver prices.\n\nNote: As the article is about a tennis match, it does not have any direct relevance to finance or macroeconomics. The tone score is neutral as there are no clear directional macro drivers mentioned in the article.", "metadata": {"topic": "macro_yields_dollar", "title": "Paolini Loses to Baptiste in WTA Madrid 2026", "original_title": "LIVE Paolini - Baptiste 5 - 7 3 - 6 WTA Madrid 2026 in DIRETTA | lazzurra si arrende ad una grande statunitense", "publish_date": "2026-04-25T18:11:56Z", "publish_timestamp": 1777140716, "source": "zazoom.it", "url": "https://www.zazoom.it/2026-04-25/live-paolini-baptiste-5-7-3-6-wta-madrid-2026-in-diretta-lazzurra-si-arrende-ad-una-grande-statunitense/19070807/", "entities": ["Jasmine Paolini", "Hailey Baptiste", "Laura Siegemund", "Kaitlin Quevedo"], "impacted_assets": [], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "6a8a323d-c103-5e5f-af5e-db53f99cddfd", "text": "Ukraine and Azerbaijan Agree on Military-Technical Cooperation. Ukrainian President Volodymyr Selenskyj and Azerbaijani President Ilham Aliyev have agreed to strengthen military-technical cooperation. This development may boost oil prices as Azerbaijan is a significant oil producer and exporter. The agreement could also lead to increased market fear, driving up gold prices.", "metadata": {"topic": "macro_yields_dollar", "title": "Ukraine and Azerbaijan Agree on Military-Technical Cooperation", "original_title": "Selenskyj vereinbart Rüstungskooperation mit Aserbaidschan", "publish_date": "2026-04-25T18:11:56Z", "publish_timestamp": 1777140716, "source": "finanznachrichten.de", "url": "https://www.finanznachrichten.de/nachrichten-2026-04/68302577-selenskyj-vereinbart-ruestungskooperation-mit-aserbaidschan-016.htm", "entities": ["Wolodymyr Selenskyj", "Ilham Aliyev", "Iran", "Russia"], "impacted_assets": ["Gold", "Oil"], "volatility_implication": "Increase", "llm_tone_score": 2}} +{"id": "00872a99-80be-5789-9cf4-97c909158c56", "text": "Moroccan Economic News and Developments. This article is a collection of various news stories from Morocco, covering topics such as real estate services, healthcare advancements, business acquisitions, tax reminders, air traffic growth, agricultural initiatives, and law enforcement operations. While these developments may have some indirect impact on the macroeconomic environment, they do not have a direct bearing on gold or silver prices.", "metadata": {"topic": "macro_yields_dollar", "title": "Moroccan Economic News and Developments", "original_title": "Actu immobilier - Médias24 - Numéro un de linformation économique marocaine", "publish_date": "2026-04-25T18:11:56Z", "publish_timestamp": 1777140716, "source": "medias24.com", "url": "https://medias24.com/categorie/immo/actu-immobilier/", "entities": ["SRM Casablanca-Settat", "Fondation Mohammed VI des Sciences et de la Santé (FM6SS)", "Agence Internationale de l'Energie Atomique (AIEA)", "Mediterrania Capital Partners", "Amcor Flexibles Mohammédia"], "impacted_assets": [], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "97e4a2d3-7b58-5142-a61c-9fb391f8fb8e", "text": "Investment Choices in Casablanca's Real Estate Market in 2026. The Moroccan real estate market is shifting, with a shortage of small surfaces and rising prices affecting the residential sector. Industrial and logistical segments are offering higher returns, attracting investors. The president of the Association régionale des agentes immobilières Casablanca-Settat notes that experienced investors are turning to industrial and logistical properties, which offer 10% yields. In contrast, the residential market is experiencing a decline in small apartments and rising prices, making it less attractive for investors.\n\nNote: The tone score is +2 because while there are some positive trends mentioned (e.g., higher returns in industrial and logistical segments), the overall tone is more neutral, as the article presents both sides of the story without a clear directional bias.", "metadata": {"topic": "macro_yields_dollar", "title": "Investment Choices in Casablanca's Real Estate Market in 2026", "original_title": "Immobilier . Les nouveaux choix dinvestissement en 2026 à Casablanca", "publish_date": "2026-04-25T18:11:56Z", "publish_timestamp": 1777140716, "source": "medias24.com", "url": "https://medias24.com/2026/04/25/immobilier-les-nouveaux-choix-dinvestissement-en-2026-a-casablanca-1665529/", "entities": ["Asaad Sadqi", "Association régionale des agences immobilières Casablanca-Settat"], "impacted_assets": ["Equities", "Gold", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 2}} diff --git a/Data/3_Gold_Semantic/News_Qdrant/2026-04-26/qdrant_macro_central_banks_processed.jsonl b/Data/3_Gold_Semantic/News_Qdrant/2026-04-26/qdrant_macro_central_banks_processed.jsonl new file mode 100644 index 0000000..70b466e --- /dev/null +++ b/Data/3_Gold_Semantic/News_Qdrant/2026-04-26/qdrant_macro_central_banks_processed.jsonl @@ -0,0 +1,8 @@ +{"id": "0c960cbe-9130-55bc-9798-4c2b4f915461", "text": "USD/VND Exchange Rate Forecast for April 27: Strong Fluctuations Expected. The article forecasts strong fluctuations in the USD/VND exchange rate for April 27. The US Dollar Index is expected to continue its downward trend due to market expectations of a potential Fed rate cut and concerns over inflation. Meanwhile, the Vietnam State Bank's OMO operations are expected to support liquidity in the system. The overall tone remains bullish for the USD, with a slight increase in volatility expected.\n\nNote: The article does not explicitly mention Gold or Silver prices, but the tone suggests that the market is more focused on macroeconomic drivers rather than commodity prices.", "metadata": {"topic": "macro_central_banks", "title": "USD/VND Exchange Rate Forecast for April 27: Strong Fluctuations Expected", "original_title": "Tỷ giá USD / VND hôm nay 27 / 4 : Dự báo biến động mạnh", "publish_date": "2026-04-27T01:38:16Z", "publish_timestamp": 1777253896, "source": "danviet.vn", "url": "https://danviet.vn/ty-gia-usd-vnd-hom-nay-27-4-du-bao-bien-dong-manh-d1421986.html", "entities": ["Federal Reserve", "Vietnam State Bank", "US Dollar Index"], "impacted_assets": ["Equities", "Gold", "Oil", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 2}} +{"id": "60b446c2-cf00-5a76-a072-af9dc80e3b50", "text": "How much does $1 million earn in a 30-day fixed-term deposit?. The article highlights the current interest rates and returns on a 30-day fixed-term deposit in Argentina. With interest rates ranging from 15% to 25%, investors can earn around $15,205.48 in interests for a $1 million investment. This information may influence investors' decisions regarding gold/silver investments, potentially impacting prices.\n\nNote: The tone score is neutral-bullish because the article focuses on fixed-term deposits and interest rates, which could lead to a slight increase in demand for safe-haven assets like gold/silver if market volatility increases.", "metadata": {"topic": "macro_central_banks", "title": "How much does $1 million earn in a 30-day fixed-term deposit?", "original_title": "Cambia el plazo fijo : cuánto rinde invertir $1 . 000 . 000 a 30 días", "publish_date": "2026-04-27T01:38:16Z", "publish_timestamp": 1777253896, "source": "tn.com.ar", "url": "https://tn.com.ar/economia/2026/04/26/plazo-fijo-cuanto-rinde-invertir-1000000-a-30-dias/", "entities": ["Banco de la Nación Argentina", "Banco Galicia y Buenos Aires S.A.", "Banco BBVA Argentina S.A.", "etc. (list of banks mentioned)"], "impacted_assets": ["Equities", "Fixed Income"], "volatility_implication": "Neutral", "llm_tone_score": 2}} +{"id": "e7533226-dbf8-588f-8411-0f4b223f7400", "text": "The Test for Canada's Prime Minister Mark Carney. This article discusses the challenges facing Canadian Prime Minister Mark Carney as he navigates his ambitious plans for the country. While Carney has enjoyed a positive reception globally and domestically, he now faces the test of delivering on his promises, particularly in the areas of housing, energy, and trade. The article highlights the expectations placed on him to balance his global ambitions with domestic priorities.\n\nNote: As there is no direct macro-financial impact mentioned in the article, I have assigned a neutral tone score. However, the article does touch on themes related to economic policy and international relations, which could indirectly affect asset prices.", "metadata": {"topic": "macro_central_banks", "title": "The Test for Canada's Prime Minister Mark Carney", "original_title": "Canada Carney has enjoyed a long political honeymoon . Now comes the test", "publish_date": "2026-04-27T01:38:16Z", "publish_timestamp": 1777253896, "source": "bbc.co.uk", "url": "https://www.bbc.co.uk/news/articles/c70d249rd0go", "entities": ["Mark Carney", "Justin Trudeau", "Christine Lagarde", "Donald Trump"], "impacted_assets": ["CAD", "Equities", "Energy"], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "2941bea5-35e5-5694-be0f-c3be20428fc9", "text": "Vietnam's Ministry of Construction proposes to delay privatization of Viglacera due to valuation difficulties.. The Vietnamese government's plan to privatize Viglacera has been delayed due to difficulties in valuing the company. This is attributed to changes in Viglacera's business scope and structure, making it challenging to determine its value. The delay is expected to push back the privatization process until 2026-2030. Meanwhile, Viglacera will focus on adjusting its strategy in the real estate sector, targeting mid-range products that meet market demand.\n\nThe tone score is +1 because while there are some macroeconomic implications (e.g., impact on real estate and construction), they are not directly affecting gold or silver prices. The overall tone is neutral, as the news does not have a significant directional impact on the markets.", "metadata": {"topic": "macro_central_banks", "title": "Vietnam's Ministry of Construction proposes to delay privatization of Viglacera due to valuation difficulties.", "original_title": "Bộ Xây dựng đề xuất hoãn thoái vốn Viglacera vì vướng định giá", "publish_date": "2026-04-27T01:38:16Z", "publish_timestamp": 1777253896, "source": "danviet.vn", "url": "https://danviet.vn/bo-xay-dung-de-xuat-hoan-thoai-von-viglacera-vi-vuong-dinh-gia-d1422001.html", "entities": ["Nguyễn Văn Sinh", "Nguyễn Anh Tuấn", "Viglacera", "Ministry of Construction", "Government of Vietnam"], "impacted_assets": ["Equities", "Gold", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 1}} +{"id": "bcf027c2-4820-57ae-9176-dd2db968c963", "text": "German Construction Industry 2026: Between Recovery and Crisis. The article discusses the mixed signals in Germany's construction industry for 2026. While some sectors show signs of recovery, others are hampered by geopolitical tensions and reduced growth expectations. The government has halved its economic growth forecast to 0.5%, citing the Iran-Krieg as a major factor. The report highlights the challenges faced by commercial property owners, with energy efficiency becoming increasingly important for asset value and financing.", "metadata": {"topic": "macro_central_banks", "title": "German Construction Industry 2026: Between Recovery and Crisis", "original_title": "Bauwirtschaft 2026 : Zwischen Aufschwung und Krise", "publish_date": "2026-04-27T01:38:16Z", "publish_timestamp": 1777253896, "source": "boerse-express.com", "url": "https://www.boerse-express.com/news/articles/bauwirtschaft-2026-zwischen-aufschwung-und-krise-898168", "entities": ["Federal Ministry of Economics", "Institute of German Economy (IW)", "GRR GARBE Retail", "Thomas Wagner"], "impacted_assets": ["Equities", "Real Estate", "Gold"], "volatility_implication": "Neutral", "llm_tone_score": 1}} +{"id": "68121a61-e567-5905-a9c6-3881987c68bd", "text": "Shooting takes place at White House Correspondents' Association dinner and Iran peace hopes fade. A shooting incident occurred at the White House Correspondents' Association dinner, prompting evacuations and an exchange of gunfire. The suspect, a California teacher and engineer, was arrested and charged with multiple counts. Meanwhile, Iran peace talks were called off after President Trump canceled the US delegation's trip to Pakistan due to unsatisfactory terms. These events are unlikely to have a direct impact on Gold/Silver prices but may contribute to market volatility.", "metadata": {"topic": "macro_central_banks", "title": "Shooting takes place at White House Correspondents' Association dinner and Iran peace hopes fade", "original_title": "Shooting takes place at Correspondent dinner , and Iran peace hopes fade : Weekend Rundown", "publish_date": "2026-04-27T01:38:16Z", "publish_timestamp": 1777253896, "source": "nbcnews.com", "url": "https://www.nbcnews.com/news/us-news/weekend-rundown-april-26-rcna341942", "entities": ["Cole Tomas Allen", "Donald Trump", "Jerome Powell", "Kevin Warsh", "Steve Witkoff", "Jared Kushner", "Thom Tillis"], "impacted_assets": [], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "d14f5f3d-e0d4-5c5e-9e7b-295faa9fcbbd", "text": "EU's $105 billion aid package for Ukraine sparks concerns over sustainability and potential for prolonged conflict.. The EU's $105 billion aid package for Ukraine has raised concerns about the sustainability of the funding and potential for prolonged conflict. The package is seen as a \"gift\" by some, with hopes to prolong the military conflict another year. This development may increase market fear/VIX, particularly in the gold and USD markets.\n\nNote: The tone score is bearish due to the uncertainty surrounding the aid package's sustainability and the potential for prolonged conflict, which could negatively impact gold prices.", "metadata": {"topic": "macro_central_banks", "title": "EU's $105 billion aid package for Ukraine sparks concerns over sustainability and potential for prolonged conflict.", "original_title": "Tiết lộ điều che giấu sau khoản tiền 90 tỷ euro dành cho Ukraine", "publish_date": "2026-04-27T01:38:16Z", "publish_timestamp": 1777253896, "source": "danviet.vn", "url": "https://danviet.vn/tiet-lo-dieu-che-giau-sau-khoan-tien-90-ty-euro-danh-cho-ukraine-d1422021.html", "entities": ["Ursula von der Leyen", "Viktor Orban", "Antonio Costa", "Dmitry Belik"], "impacted_assets": ["Gold", "USD", "EUR"], "volatility_implication": "Increase", "llm_tone_score": -2}} +{"id": "0163f4e1-292c-51f1-ad13-8d5b29eefa63", "text": "Indonesian Stock Market Expected to Test 7,000 Level with Global Pressure. The article discusses the potential impact of global events on the Indonesian stock market, including the FOMC meeting and data releases from major economies. It also highlights the importance of monitoring geopolitical tensions in the Middle East and the potential for continued volatility in energy prices.", "metadata": {"topic": "macro_central_banks", "title": "Indonesian Stock Market Expected to Test 7,000 Level with Global Pressure", "original_title": "Rekomendasi Saham dan Pergerakan IHSG Hari Ini , Senin 27 April 2026", "publish_date": "2026-04-27T01:38:16Z", "publish_timestamp": 1777253896, "source": "market.bisnis.com", "url": "https://market.bisnis.com/read/20260427/189/1969454/rekomendasi-saham-dan-pergerakan-ihsg-hari-ini-senin-27-april-2026", "entities": ["Federal Open Market Committee (FOMC)", "Bank of Japan", "Bank Sentral Eropa (ECB)", "Bank of England"], "impacted_assets": ["Equities", "Gold", "Oil"], "volatility_implication": "Neutral", "llm_tone_score": 1}} diff --git a/Data/3_Gold_Semantic/News_Qdrant/2026-05-06/qdrant_macro_yields_dollar_processed.jsonl b/Data/3_Gold_Semantic/News_Qdrant/2026-05-06/qdrant_macro_yields_dollar_processed.jsonl new file mode 100644 index 0000000..ac2b1c6 --- /dev/null +++ b/Data/3_Gold_Semantic/News_Qdrant/2026-05-06/qdrant_macro_yields_dollar_processed.jsonl @@ -0,0 +1,8 @@ +{"id": "78947559-85f5-5984-98d3-aa0c5428d43e", "text": "Bitcoin Price Prediction After 3-Month High: Will BTC USD Reach $84,000?. The article discusses the recent rally in Bitcoin prices, which has reached a three-month high. This is attributed to shifting geopolitical signals and changing investor behavior, particularly following reports of a possible easing in tensions between the US and Iran. The S&P 500 rose to a record high, while West Texas Intermediate crude dropped, reducing inflation pressure. Momentum indicators point to strengthening demand for Bitcoin, but uncertainty remains due to the ongoing negotiations between the US and Iran.", "metadata": {"topic": "macro_yields_dollar", "title": "Bitcoin Price Prediction After 3-Month High: Will BTC USD Reach $84,000?", "original_title": "Bitcoin USD price prediction after 3 - month high : Bitcoin price today hits 3 - month high after US - Iran peace agreement reports : Will BTC USD reach $84 , 000 as ETF inflows rise and investors pivot away from gold ? ", "publish_date": "2026-05-06T15:26:14Z", "publish_timestamp": 1778081174, "source": "economictimes.indiatimes.com", "url": "https://economictimes.indiatimes.com/news/international/us/bitcoin-price-today-hits-3-month-high-after-us-iran-peace-agreement-reports-will-btc-usd-reach-84000-as-etf-inflows-rise-and-investors-pivot-away-from-gold/articleshow/130858117.cms", "entities": ["US-Iran", "White House", "Steve Witkoff", "Jared Kushner", "Iran's Revolutionary Guards Navy", "Donald Trump"], "impacted_assets": ["Equities", "Gold", "Oil", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 2}} +{"id": "74e726a9-70c6-50d8-aec3-2acae6e3fa82", "text": "Kelp Could Be the Biofuel Answer to High Gas Prices, but There Are Plenty of Hurdles. The article discusses the potential for kelp-based biofuels as a sustainable alternative to petroleum-based fuels. While researchers have made progress in breeding high-yielding kelp strains and developing production processes, industry development is hindered by a lack of demonstrated demand and government support. The story highlights the challenges facing the development of kelp-based biofuels, including inconsistent government interest and the need for sustained funding.\n\nThe tone score is neutral because the article presents a balanced view of the potential and challenges of kelp-based biofuels without highlighting any specific macroeconomic or geopolitical drivers that would impact gold or silver prices. The entities mentioned are primarily research institutions and government agencies, which do not have a direct impact on precious metals markets.", "metadata": {"topic": "macro_yields_dollar", "title": "Kelp Could Be the Biofuel Answer to High Gas Prices, but There Are Plenty of Hurdles", "original_title": "Gas crisis ? Kelp could be the biofuel answer to high gas prices , but there plenty of hurdles", "publish_date": "2026-05-06T15:26:14Z", "publish_timestamp": 1778081174, "source": "fortune.com", "url": "https://fortune.com/2026/05/06/gas-crisis-fuel-kelp-biofuel-shortage-farmers/", "entities": ["Scott Lindell", "Woods Hole Oceanographic Institution", "Department of Energy", "MARINER program"], "impacted_assets": ["Equities", "Gold", "Oil"], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "fd18ba8b-456d-5925-90a3-43adb7dd071b", "text": "US-Iran Memorandum to End War Within Reach. The potential agreement between the US and Iran to end the Gulf war could lead to a decrease in market fear/VIX. A memorandum ending the war would likely result in increased optimism, causing global oil prices to plunge (as seen with Brent crude futures falling 11%). This development could also boost equities and weaken the USD. The macro transmission mechanism is driven by reduced geopolitical tensions and potential for increased trade and economic cooperation between the US and Iran.", "metadata": {"topic": "macro_yields_dollar", "title": "US-Iran Memorandum to End War Within Reach", "original_title": "Multiple sources suggest US - Iran memo to end war within reach", "publish_date": "2026-05-06T15:26:14Z", "publish_timestamp": 1778081174, "source": "dailysabah.com", "url": "https://www.dailysabah.com/world/mid-east/multiple-sources-suggest-us-iran-memo-to-end-war-within-reach", "entities": ["Donald Trump", "Iran", "Pakistan", "Steve Witkoff", "Jared Kushner"], "impacted_assets": ["Gold", "Oil", "Equities", "USD"], "volatility_implication": "Decrease", "llm_tone_score": 2}} +{"id": "53da5583-b9e4-5a96-ad46-df72cd38ea35", "text": "The Quiet Rate Shift Powering One of This Year's Strongest Trades. The article highlights the positive impact of a quiet rate shift on U.S. banks' net interest margins. The Federal Reserve's holding of the fed funds target at 3.75% and a positively sloped yield curve are widening bank NIMs, creating an earnings tailwind for financial institutions. This is reflected in the performance of ETFs such as KBE, KBWB, and IYF, which offer different angles on the trade. The article notes that sustained federal funds rates at 3.75% and a positively sloped yield curve are widening bank NIMs, with the 10-year Treasury yield climbing toward the top of its 12-month range.\n\nThe macro transmission mechanism is as follows: the Federal Reserve's monetary policy decisions influence short-term interest rates, which in turn affect long-term yields and net interest margins for banks. As a result, financial institutions' earnings are boosted, leading to increased demand for their shares and ETFs that track these sectors.", "metadata": {"topic": "macro_yields_dollar", "title": "The Quiet Rate Shift Powering One of This Year's Strongest Trades", "original_title": "The Quiet Rate Shift Powering One of This Year Strongest Trades", "publish_date": "2026-05-06T15:26:14Z", "publish_timestamp": 1778081174, "source": "finance.yahoo.com", "url": "https://finance.yahoo.com/markets/stocks/articles/quiet-rate-shift-powering-one-142342208.html", "entities": ["Federal Reserve", "U.S. banks", "SPDR S&P Bank ETF (KBE)", "Invesco KBW Bank ETF (KBWB)", "iShares U.S. Financials ETF (IYF)"], "impacted_assets": ["Equities", "Gold"], "volatility_implication": "Neutral", "llm_tone_score": 2}} +{"id": "b1d8b189-6158-52f8-9232-7713367f8ad1", "text": "India Won't Be Spared the AI Jobs Reset. The article highlights the growing trend of job cuts in various industries, with AI being a significant factor. While this news doesn't have a direct impact on gold or silver prices, it can contribute to a neutral tone in the market, as the macro implications are unclear. The discussion around AI's potential to replace jobs may lead to increased uncertainty, which could be reflected in higher volatility for some asset classes.", "metadata": {"topic": "macro_yields_dollar", "title": "India Won't Be Spared the AI Jobs Reset", "original_title": "Moneycontrol Pro Panorama | India wont be spared the AI Jobs reset", "publish_date": "2026-05-06T15:26:14Z", "publish_timestamp": 1778081174, "source": "chinatechnews.com", "url": "https://www.chinatechnews.com/2026/05/06/121248-moneycontrol-pro-panorama-india-wont-be-spared-the-ai-jobs-reset", "entities": ["L&T", "AI", "India"], "impacted_assets": [], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "a5089467-d58b-5356-b415-69c9127b6bd2", "text": "Oil Prices Fall, Stocks Rise on Hopes for Strait of Hormuz Reopening. The market is reacting positively to hopes of a deal to reopen the Strait of Hormuz, which could lead to lower oil prices and reduced inflationary pressures. This has boosted stock markets worldwide, with major indices such as the S&P 500 and Dow Jones Industrial Average reaching record highs. The news has also led to a decline in oil prices, with Brent crude falling 5.8% to $103.54 per barrel. Meanwhile, Treasury yields have eased sharply, which could bring down rates for mortgages and other kinds of loans going to U.S. households and businesses, potentially boosting the economy.", "metadata": {"topic": "macro_yields_dollar", "title": "Oil Prices Fall, Stocks Rise on Hopes for Strait of Hormuz Reopening", "original_title": "Oil prices fall , stocks rise on hopes for Strait of Hormuz reopening", "publish_date": "2026-05-06T15:26:14Z", "publish_timestamp": 1778081174, "source": "pasadenastarnews.com", "url": "https://www.pasadenastarnews.com/2026/05/06/wall-street-oil-markets/", "entities": ["United States", "Iran", "China", "President Donald Trump", "AMD", "Super Micro Computer", "Nvidia", "CVS Health", "Walt Disney Co.", "Uber Technologies", "United Airlines", "Carnival", "Royal Caribbean"], "impacted_assets": ["Equities", "Oil", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 2}} +{"id": "1a5dc45c-1f4e-5baa-a2a1-17a3d4437f73", "text": "Biontech Adapts to New Reality Amid Job Cuts and Restructuring. Biontech, a leading biotech company, is undergoing significant restructuring efforts, including job cuts and site closures. The main driver behind this development is the decline in demand for COVID-19 vaccines. As a result, the company is shifting its strategic focus towards cancer medicine. Financially, Biontech has strong support from investors. The macro transmission mechanism at play here is the impact of declining vaccine sales on the company's financials and the subsequent need to restructure operations. This event is likely to decrease market fear/VIX as it does not have a direct bearing on interest rates or inflation.", "metadata": {"topic": "macro_yields_dollar", "title": "Biontech Adapts to New Reality Amid Job Cuts and Restructuring", "original_title": "So stellt sich Biontech auf", "publish_date": "2026-05-06T15:26:14Z", "publish_timestamp": 1778081174, "source": "noz.de", "url": "https://www.noz.de/deutschland-welt/wirtschaft/artikel/so-stellt-sich-biontech-auf-50609809", "entities": ["Biontech", "Curevac", "Pfizer", "Bristol Myers Squibb"], "impacted_assets": ["Equities", "Gold", "USD"], "volatility_implication": "Decrease", "llm_tone_score": -2}} +{"id": "ba78a609-fae7-5ca6-b94b-84b9a15aa4ad", "text": "Iranian Foreign Minister Abbas Araghchi's Meeting with Chinese Counterpart Wang Yi in Beijing to Discuss US-Iran War. The meeting between Iranian Foreign Minister Abbas Araghchi and Chinese counterpart Wang Yi in Beijing highlights China's significant stakes in the US-Iran war. Analysts suggest that shared interests between the US and China in reopening the Strait of Hormuz could create a path towards peace. China's balancing act between criticizing US actions and promoting regional stability may influence the direction of the conflict. The meeting comes ahead of Trump's meeting with Xi Jinping, which could impact global markets.\n\nNote: As there is no direct mention of gold or silver prices in the article, I have assigned a neutral tone score (0). However, the potential for increased tensions between the US and Iran, as well as the possibility of China playing a diplomatic role in resolving the conflict, may indirectly impact gold and silver prices.", "metadata": {"topic": "macro_yields_dollar", "title": "Iranian Foreign Minister Abbas Araghchi's Meeting with Chinese Counterpart Wang Yi in Beijing to Discuss US-Iran War", "original_title": "Araghchi in Beijing : How China could shape the direction of the US - Iran war", "publish_date": "2026-05-06T15:26:14Z", "publish_timestamp": 1778081174, "source": "aljazeera.com", "url": "https://www.aljazeera.com/news/2026/5/6/araghchi-in-beijing-how-china-could-shape-the-direction-of-the-us-iran-war", "entities": ["Abbas Araghchi", "Wang Yi", "Donald Trump", "Xi Jinping", "Marco Rubio", "Ayatollah Ali Khamenei"], "impacted_assets": ["Equities", "Gold", "Oil", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 0}} diff --git a/Data/3_Gold_Semantic/News_Qdrant/2026-05-07/qdrant_macro_central_banks_processed.jsonl b/Data/3_Gold_Semantic/News_Qdrant/2026-05-07/qdrant_macro_central_banks_processed.jsonl new file mode 100644 index 0000000..46830ac --- /dev/null +++ b/Data/3_Gold_Semantic/News_Qdrant/2026-05-07/qdrant_macro_central_banks_processed.jsonl @@ -0,0 +1,6 @@ +{"id": "719247db-2315-539c-9c47-977c782cdfde", "text": "How a swap line for Persian Gulf allies would break with the past. The potential establishment of dollar liquidity swap lines for Persian Gulf allies indicates a proactive stance by the U.S. to stabilize financial conditions amid geopolitical tensions, particularly concerning the Strait of Hormuz. This move could lead to a weakening of the USD and increased demand for safe-haven assets like gold and silver, as market participants seek refuge from potential instability.", "metadata": {"topic": "macro_central_banks", "title": "How a swap line for Persian Gulf allies would break with the past", "original_title": "How a swap line for Persian Gulf allies would break with the past", "publish_date": "2026-05-07T17:55:23Z", "publish_timestamp": 1778176523, "source": "insurancenewsnet.com", "url": "https://insurancenewsnet.com/oarticle/how-a-swap-line-for-persian-gulf-allies-would-break-with-the-past-13", "entities": ["United States", "United Arab Emirates", "Federal Reserve"], "impacted_assets": ["Gold", "USD", "Equities"], "volatility_implication": "Increase", "llm_tone_score": 2}} +{"id": "0dfb06d8-2e53-502e-b18f-f69343fd2a4d", "text": "Fed holds rates steady amid the most dissents in decades. The Federal Reserve's decision to maintain interest rates amidst significant internal dissent suggests a potential for future policy shifts, which could create uncertainty in the markets. This environment may lead to a stronger USD and lower gold prices as investors react to the Fed's cautious stance and the implications of leadership changes.", "metadata": {"topic": "macro_central_banks", "title": "Fed holds rates steady amid the most dissents in decades", "original_title": "Fed holds rates steady amid the most dissents in decades", "publish_date": "2026-05-07T17:55:23Z", "publish_timestamp": 1778176523, "source": "insurancenewsnet.com", "url": "https://insurancenewsnet.com/oarticle/fed-holds-rates-steady-amid-the-most-dissents-in-decades-8", "entities": ["Federal Reserve", "Jerome Powell", "Kevin Warsh"], "impacted_assets": ["Gold", "USD", "Equities"], "volatility_implication": "Increase", "llm_tone_score": -3}} +{"id": "a43c2e59-8296-5243-b5fd-0359e1c753df", "text": "US long-term mortgage rate bounces back to levels seen 4 weeks ago. The rise in long-term mortgage rates, driven by bond market volatility and inflation concerns linked to the conflict in the Middle East, suggests a tightening of financial conditions. Higher borrowing costs may dampen consumer spending and housing market activity, potentially leading to increased market fear and volatility, which could support safe-haven assets like gold and silver amidst economic uncertainty.", "metadata": {"topic": "macro_central_banks", "title": "US long-term mortgage rate bounces back to levels seen 4 weeks ago", "original_title": "US long - term mortgage rate bounce back to levels seen 4 weeks ago", "publish_date": "2026-05-07T17:55:23Z", "publish_timestamp": 1778176523, "source": "insurancenewsnet.com", "url": "https://insurancenewsnet.com/oarticle/average-us-long-term-mortgage-rate-ticks-up-to-6-37", "entities": ["Freddie Mac", "Lisa Sturtevant", "U.S. Treasury"], "impacted_assets": ["Gold", "Silver", "Real Estate", "Bonds"], "volatility_implication": "Increase", "llm_tone_score": -2}} +{"id": "0f891655-a06d-5202-bba8-77fb3fa9266a", "text": "Best money market account rates today, May 7, 2026 (earn up to 4.01% APY). The article discusses the current state of money market account rates, which remain elevated due to the Federal Reserve's decision to maintain interest rates. While the national average is low, some banks offer competitive rates above 4% APY, indicating a stable interest environment that does not significantly impact gold or silver prices.", "metadata": {"topic": "macro_central_banks", "title": "Best money market account rates today, May 7, 2026 (earn up to 4.01% APY)", "original_title": "Best money market account rates today , May 7 , 2026 ( earn up to 4 . 01 % APY ) ", "publish_date": "2026-05-07T17:55:23Z", "publish_timestamp": 1778176523, "source": "finance.yahoo.com", "url": "https://finance.yahoo.com/personal-finance/banking/article/money-market-account-rates-today-thursday-may-7-2026-100000969.html", "entities": ["Federal Reserve", "FDIC", "financial institutions"], "impacted_assets": ["Gold", "USD", "Equities"], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "5508deef-8cc0-5f17-80c9-8194d7c340d9", "text": "US stocks: S&P 500, Nasdaq at record highs as oil pullback brings relief. The S&P 500 and Nasdaq reached record highs, buoyed by a significant drop in oil prices amid optimism for a US-Iran peace deal, which could stabilize crude supplies. This positive sentiment in equities, coupled with expectations that the Federal Reserve will maintain interest rates, suggests a decrease in market volatility and a bearish outlook for gold as investors shift focus to riskier assets.", "metadata": {"topic": "macro_central_banks", "title": "US stocks: S&P 500, Nasdaq at record highs as oil pullback brings relief", "original_title": "US stocks : S & P 500 , Nasdaq at record highs as oil pullback brings relief", "publish_date": "2026-05-07T17:55:23Z", "publish_timestamp": 1778176523, "source": "businesstimes.com.sg", "url": "https://www.businesstimes.com.sg/companies-markets/capital-markets-currencies/us-stocks-sp-500-nasdaq-record-highs-oil-pullback-brings-relief", "entities": ["S&P 500", "Nasdaq", "US Federal Reserve"], "impacted_assets": ["Equities", "Oil", "Gold"], "volatility_implication": "Decrease", "llm_tone_score": -2}} +{"id": "0e3d8da6-34df-52a4-8fa3-0b35beefb8c3", "text": "Haddad says Lula will not make populist packages and criticizes Tarcísio for minimizing government aid. Fernando Haddad's assertion that President Lula will avoid populist spending measures ahead of the election suggests a commitment to fiscal discipline, which may stabilize the Brazilian economy. This stance could strengthen the Brazilian Real and reduce inflationary pressures, leading to a bearish outlook for Gold and Silver as safe-haven assets.", "metadata": {"topic": "macro_central_banks", "title": "Haddad says Lula will not make populist packages and criticizes Tarcísio for minimizing government aid", "original_title": "Haddad diz que Lula não fará pacotes de bondades e critica Tarcísio por minimizar ajuda do governo", "publish_date": "2026-05-07T17:55:23Z", "publish_timestamp": 1778176523, "source": "estadao.com.br", "url": "https://www.estadao.com.br/politica/haddad-diz-que-lula-nao-fara-pacotes-de-bondades-como-bolsonaro-para-ganhar-eleicao/", "entities": ["Fernando Haddad", "Luiz Inácio Lula da Silva", "Tarcísio de Freitas"], "impacted_assets": ["Gold", "Silver", "Equities", "Brazilian Real"], "volatility_implication": "Decrease", "llm_tone_score": -2}} diff --git a/Data/3_Gold_Semantic/News_Qdrant/2026-05-08/qdrant_macro_central_banks_processed.jsonl b/Data/3_Gold_Semantic/News_Qdrant/2026-05-08/qdrant_macro_central_banks_processed.jsonl new file mode 100644 index 0000000..819efde --- /dev/null +++ b/Data/3_Gold_Semantic/News_Qdrant/2026-05-08/qdrant_macro_central_banks_processed.jsonl @@ -0,0 +1,9 @@ +{"id": "d3ed2a0b-458b-5765-accf-6dd58c968d89", "text": "Turkey Industrial Output Falls 1.1% in March. The decline in Turkey's industrial output may not have a direct impact on gold and silver prices. However, the overall bearish tone of the news, combined with the potential for rate hikes in June, could lead to increased market volatility and a slight increase in safe-haven demand for precious metals like gold.", "metadata": {"topic": "macro_central_banks", "title": "Turkey Industrial Output Falls 1.1% in March", "original_title": "Turkey Industrial Output Falls 1 . 1 % In March", "publish_date": "2026-05-08T15:20:09Z", "publish_timestamp": 1778253609, "source": "rttnews.com", "url": "https://www.rttnews.com/story.aspx?Id=3649559", "entities": ["Turkey", "Jerome Powell", "Federal Reserve"], "impacted_assets": ["Gold", "USD"], "volatility_implication": "Neutral", "llm_tone_score": -2}} +{"id": "bb9005ff-a172-5270-ae8d-9dbcc50b0d11", "text": "Top CD Rates from Major Banks as of May 8, 2026. The article highlights the top CD rates from major banks in the United States as of May 8, 2026. The rates range from 2.00% to 4.00% APY for terms stretching from four months to 14 months. The benefits of opening a CD with a big bank include keeping all banking activities in one place, having access to more CD options, and potentially receiving relationship rate bumps as a loyalty perk.", "metadata": {"topic": "macro_central_banks", "title": "Top CD Rates from Major Banks as of May 8, 2026", "original_title": "Top CD rates from major banks May 8 , 2026 : Chase CDs , Bank of America CDs , Citibank CDs , and more", "publish_date": "2026-05-08T15:20:09Z", "publish_timestamp": 1778253609, "source": "fortune.com", "url": "https://fortune.com/article/major-bank-cd-rates-05-08-2026/", "entities": ["Chase", "Bank of America", "Citibank", "Wells Fargo", "American Express"], "impacted_assets": ["CDs", "Savings Accounts", "Checking Accounts", "Auto Loans", "Mortgages"], "volatility_implication": "Neutral", "llm_tone_score": 1}} +{"id": "3ac80cdd-1b10-5240-94fc-869a95e91254", "text": "The Bank of Brazil Mourns the Death of Economist Chico Lopes, Former President of the Monetary Authority. The Bank of Brazil has paid tribute to the late economist Chico Lopes, a former president of the monetary authority. Lopes was instrumental in creating and institutionalizing the Monetary Policy Committee (Copom), which guides the country's monetary policy decisions. His legacy is marked by his dedication to addressing Brazil's chronic inflation issues during the 1980s and 1990s. This event has no direct macroeconomic implications for gold or silver prices.\n\nNote: As per the tone scoring rubric, a neutral score of 0 is assigned since this news article does not contain any directional macro drivers that would impact gold or silver prices.", "metadata": {"topic": "macro_central_banks", "title": "The Bank of Brazil Mourns the Death of Economist Chico Lopes, Former President of the Monetary Authority", "original_title": "BC lamenta morte do economista Chico Lopes , ex - presidente da autoridade monetária", "publish_date": "2026-05-08T15:20:09Z", "publish_timestamp": 1778253609, "source": "jornaldebrasilia.com.br", "url": "https://jornaldebrasilia.com.br/noticias/economia/bc-lamenta-morte-do-economista-chico-lopes-ex-presidente-da-autoridade-monetaria/", "entities": ["Francisco Lafaiete de Pádua Lopes", "Banco Central do Brasil", "Universidade Federal do Rio de Janeiro (UFRJ)", "Escola de Pós-Graduação em Economia da Fundação Getulio Vargas (FGV)", "University of Harvard"], "impacted_assets": [], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "f9ba8d07-e868-5e65-beba-2675f59e80e8", "text": "US Economy Adds 115,000 Jobs in April, Beating Expectations. The US economy added 115,000 jobs in April, exceeding expectations. This strong job market data may lead to a more hawkish Fed stance, potentially benefiting precious metals like gold and silver. The Federal Reserve has been cautious about inflationary pressures, but the strong labor market could influence their decision-making process.\n\nNote: The tone score is +2 because while the news is slightly positive for gold and silver prices, it's not extremely bullish or bearish. The job market data may lead to a more hawkish Fed stance, which could benefit precious metals, but it's not a clear-cut directional signal.", "metadata": {"topic": "macro_central_banks", "title": "US Economy Adds 115,000 Jobs in April, Beating Expectations", "original_title": "L économie américaine a cr 115 . 000 emplois en avril , plus que prévu , le taux d", "publish_date": "2026-05-08T15:20:09Z", "publish_timestamp": 1778253609, "source": "abcbourse.com", "url": "https://www.abcbourse.com/marches/newsContent/696582", "entities": ["Jerome Powell", "US Department of Labor", "Federal Reserve"], "impacted_assets": ["Equities", "Gold", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 2}} +{"id": "a6909b61-0282-56b7-b5df-23e6b4110787", "text": "US Job Market Resists Slight Rise in Gold Prices Despite Strong Employment Data. The US job market showed resilience in April, with a higher-than-expected number of new jobs created. This has led to a slight increase in gold prices, but the impact is limited due to the lack of significant macro drivers. The Federal Reserve's monetary policy stance remains unchanged, and investors are focused on global interest rate developments. The ongoing central bank buying of gold continues to support prices.\n\nNote: The tone score is neutral because there are no clear directional macro drivers that would significantly impact gold prices. The slight increase in gold prices is mainly due to the resilience of the US job market, which has limited implications for monetary policy and interest rates.", "metadata": {"topic": "macro_central_banks", "title": "US Job Market Resists Slight Rise in Gold Prices Despite Strong Employment Data", "original_title": "Lor en légère hausse malgré la résistance de lemploi américain en avril", "publish_date": "2026-05-08T15:20:09Z", "publish_timestamp": 1778253609, "source": "abcbourse.com", "url": "https://www.abcbourse.com/marches/newsContent/696583", "entities": ["Federal Reserve", "United States Department of Labor", "Wall Street Journal", "Critical Metals"], "impacted_assets": ["Equities", "Gold", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "5b362e2d-ada6-5f16-803a-937028bb9012", "text": "US Employers Add 115,000 Jobs in April Despite Iran War-Related Global Oil Shock. The US labor market showed resilience in April, adding 115,000 jobs despite the global oil shock caused by the Iran war. Healthcare and transportation sectors drove job growth, while manufacturing continued to shed jobs. The unemployment rate remained low at 4.3%, and average hourly earnings rose 0.2% from March. The Federal Reserve's inflation target of 2% is still within reach, but wage gains are being eroded by inflation. The macro transmission mechanism suggests a neutral impact on Gold/Silver prices, as the labor market's resilience may not significantly alter the Fed's monetary policy stance or global economic growth expectations.", "metadata": {"topic": "macro_central_banks", "title": "US Employers Add 115,000 Jobs in April Despite Iran War-Related Global Oil Shock", "original_title": "US employers added 115 , 000 jobs in April despite Iran war global oil shock", "publish_date": "2026-05-08T15:20:09Z", "publish_timestamp": 1778253609, "source": "katc.com", "url": "https://www.katc.com/politics/economy/us-employers-added-115-000-jobs-in-april-despite-iran-wars-global-oil-shock", "entities": ["United States", "Iran", "Israel", "Federal Reserve", "Oxford Economics", "ADP", "Labor Department", "Navy Federal Credit Union"], "impacted_assets": ["Equities", "Gold", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 1}} +{"id": "051c2435-ccd2-55c1-bbdd-39069fd48484", "text": "Portugal Trade Deficit Widens In March. Portugal's trade deficit increased in March due to faster-growing imports outpacing exports. This development has no significant macro transmission mechanism that would directly affect the gold or silver markets, hence a neutral tone score.", "metadata": {"topic": "macro_central_banks", "title": "Portugal Trade Deficit Widens In March", "original_title": "Portugal Trade Deficit Widens In March", "publish_date": "2026-05-08T15:20:09Z", "publish_timestamp": 1778253609, "source": "rttnews.com", "url": "https://www.rttnews.com/story.aspx?Id=3649670", "entities": ["Portugal", "Statistics Portugal"], "impacted_assets": [], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "3cd87d6e-9e29-5cdd-a32e-4315b53608b1", "text": "Young Couple in Australia Saves $800 per Week by Refinancing Home Loan. A young couple in Australia refinanced their home loan to save $800 per week. They initially took out a high-interest loan from a non-bank institution due to being rejected by traditional banks. After 12 months, they were able to refinance at a lower interest rate, reducing their weekly payments. This trend is reflected in the increasing demand for refinancing seen in Australia, particularly around central bank rate hikes.\n\nThe macro transmission mechanism here is the impact of monetary policy on the housing market and consumer spending. As interest rates rise, borrowers may seek to refinance their loans at more favorable terms, which can lead to increased demand for refinancing and potentially affect the broader economy.", "metadata": {"topic": "macro_central_banks", "title": "Young Couple in Australia Saves $800 per Week by Refinancing Home Loan", "original_title": "Teuer finanzieren , günstig umschulden : Paar spart mit Hauskauf - Trick 800 Dollar pro Woche", "publish_date": "2026-05-08T15:20:09Z", "publish_timestamp": 1778253609, "source": "focus.de", "url": "https://www.focus.de/immobilien/paar-spart-800-australische-dollar-pro-woche-nachdem-es-fuer-seine-hypothek-einen-zinssatz-von-9-prozent-schulterte_0fe81e63-484f-4827-88ea-d5e910475341.html", "entities": ["Rachael Dalton", "Gavin Staindl", "Fiona McLean", "Loan Market", "Equifax"], "impacted_assets": ["Equities", "Gold", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 1}} +{"id": "7c3419b9-b95a-5a56-9c0a-f865c7203c37", "text": "Gold Heads for Weekly Gain as Hopes for US-Iran Deal Ease Inflation Fears. The market is pricing in a potential US-Iran peace agreement, which has eased inflation concerns and led to a rise in gold prices. This development, combined with a weaker dollar and lower Treasury yields, has supported the precious metals complex. The upcoming US employment report will be closely watched for clues on the Federal Reserve's monetary stance.\n\nThe macro transmission mechanism is as follows: A potential peace deal between the US and Iran reduces the likelihood of higher interest rates, which in turn eases inflation concerns and supports gold prices. Additionally, a weaker dollar makes gold more attractive to foreign investors, further driving up prices.", "metadata": {"topic": "macro_central_banks", "title": "Gold Heads for Weekly Gain as Hopes for US-Iran Deal Ease Inflation Fears", "original_title": "Gold heads for weekly gain as hopes for US - Iran deal ease inflation fears", "publish_date": "2026-05-08T15:20:09Z", "publish_timestamp": 1778253609, "source": "zawya.com", "url": "https://www.zawya.com/en/economy/global/gold-heads-for-weekly-gain-as-hopes-for-us-iran-deal-ease-inflation-fears-jz3swgsi", "entities": ["United States", "Iran", "Federal Reserve"], "impacted_assets": ["Equities", "Gold", "Oil", "USD"], "volatility_implication": "Neutral", "llm_tone_score": 2}} diff --git a/Data/3_Gold_Semantic/News_Qdrant/2026-05-09/qdrant_macro_yields_dollar_processed.jsonl b/Data/3_Gold_Semantic/News_Qdrant/2026-05-09/qdrant_macro_yields_dollar_processed.jsonl new file mode 100644 index 0000000..4c17c1d --- /dev/null +++ b/Data/3_Gold_Semantic/News_Qdrant/2026-05-09/qdrant_macro_yields_dollar_processed.jsonl @@ -0,0 +1,6 @@ +{"id": "9ce39c16-5ab7-50c9-9da2-e43b0d797edf", "text": "Jewelry Heist Foiled by Police in Pavia. A jewelry heist was foiled by police in Pavia when they intervened just as the thieves were about to leave with stolen goods. The incident highlights the importance of vigilance and caution when dealing with suspicious individuals claiming to be law enforcement officials.", "metadata": {"topic": "macro_yields_dollar", "title": "Jewelry Heist Foiled by Police in Pavia", "original_title": "Lanziana truffata consegna i gioielli , la polizia sventa il colpo", "publish_date": "2026-05-09T15:16:18Z", "publish_timestamp": 1778339778, "source": "laprovinciapavese.gelocal.it", "url": "https://laprovinciapavese.gelocal.it/pavia/cronaca/2026/05/09/news/l_anziana_truffata_consegna_i_gioielli_la_polizia_sventa_il_colpo-15615620/", "entities": ["Andrea Lenoci", "Pavia", "Torre del Gallo"], "impacted_assets": [], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "8604bbb4-940c-56cd-b992-aa215a88d3a2", "text": "Oil Market Under Pressure: Goldman Sachs Warns of Critical Supply Situation. The oil market remains under pressure due to the ongoing conflict in the Middle East and concerns over supply disruptions. Goldman Sachs warns of a critical supply situation, with global reserves reaching an eight-year low. This could lead to further price increases if geopolitical tensions escalate. The efficiency of the refining sector is coming into focus, with investors looking at specialized operators that can optimize complex distillation processes under high cost pressure.", "metadata": {"topic": "macro_yields_dollar", "title": "Oil Market Under Pressure: Goldman Sachs Warns of Critical Supply Situation", "original_title": "Ölmarkt unter Spannung : Goldman Sachs sieht kritische Versorgungslage", "publish_date": "2026-05-09T15:16:18Z", "publish_timestamp": 1778339778, "source": "finanzen.ch", "url": "https://www.finanzen.ch/nachrichten/rohstoffe/oelmarkt-unter-spannung-goldman-sachs-sieht-kritische-versorgungslage-1036133363", "entities": ["Goldman Sachs", "Iran", "US-Sorte WTI", "Nordseesorte Brent"], "impacted_assets": ["Equities", "Gold", "Oil", "USD"], "volatility_implication": "Increase", "llm_tone_score": 3}} +{"id": "aed1d669-d4d0-501c-b1a8-1e158e6e011a", "text": "Gustavo Henrique's Goal-Scoring Streak Continues at Corinthians. This article highlights the goal-scoring streak of Gustavo Henrique, a defender for Corinthians, who has scored 10 goals in 97 games. The article provides statistics on his performance at Corinthians, Flamengo, and Santos, as well as his overall career numbers. The event does not have any direct impact on gold or silver prices, but it may be seen as a positive development for the sports industry, which could potentially boost consumer confidence and spending.\n\nNote: As per the tone scoring rubric, I assigned a score of 0 (Neutral) since there are no clear directional macro drivers that would directly impact gold or silver prices.", "metadata": {"topic": "macro_yields_dollar", "title": "Gustavo Henrique's Goal-Scoring Streak Continues at Corinthians", "original_title": "Gustavo Henrique se firma como zagueiro artilheiro no Corinthians", "publish_date": "2026-05-09T15:16:18Z", "publish_timestamp": 1778339778, "source": "lance.com.br", "url": "https://www.lance.com.br/corinthians/gustavo-henrique-se-firma-como-zagueiro-artilheiro-no-corinthians.html", "entities": ["Gustavo Henrique", "Corinthians", "Santa Fe", "Flamengo", "Santos", "Fenerbahçe", "Real Valladolid"], "impacted_assets": [], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "376b6737-0954-5c8e-9521-9a8326355431", "text": "Gordon Brown Returns to Government as Sir Keir Starmer Shrugs Off Resignation Calls. Former UK Prime Minister Gordon Brown has returned to government as special envoy for global finance. This move is part of Sir Keir Starmer's efforts to stabilize his premiership amid discontent among Labour MPs following poor election results. The appointments may help mitigate market concerns, but the overall impact on financial markets is expected to be neutral.", "metadata": {"topic": "macro_yields_dollar", "title": "Gordon Brown Returns to Government as Sir Keir Starmer Shrugs Off Resignation Calls", "original_title": "Brown returns to government as Starmer shrugs off resignation calls", "publish_date": "2026-05-09T15:16:18Z", "publish_timestamp": 1778339778, "source": "cityam.com", "url": "https://www.cityam.com/gordon-brown-returns-to-government-as-starmer-shrugs-off-resignation-calls/", "entities": ["Gordon Brown", "Sir Keir Starmer", "Baroness Harriet Harman", "Nigel Farage", "Kemi Badenoch"], "impacted_assets": [], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "68c1aac2-87ef-5016-83e4-9357854879b2", "text": "Japan Tests New Budget-Friendly Drone Made of Cardboard for Military Use. Japan is testing a new budget-friendly drone made of cardboard, dubbed \"AirKamuy 150\", which could be used for military purposes such as surveillance, deception, or attack. The drone's simplicity and low cost (around $2,000-$2,500 per unit) make it an attractive option for large-scale deployments. While this development may not have a direct impact on gold or silver prices, it could potentially influence global defense spending patterns and indirectly affect the USD.", "metadata": {"topic": "macro_yields_dollar", "title": "Japan Tests New Budget-Friendly Drone Made of Cardboard for Military Use", "original_title": "AirKamuy 150 : Japan testet neue Billig - Drohne aus Wellpappe", "publish_date": "2026-05-09T15:16:18Z", "publish_timestamp": 1778339778, "source": "t-online.de", "url": "https://www.t-online.de/nachrichten/ausland/internationale-politik/id_101248394/airkamuy-150-japan-testet-neue-billig-drohne-aus-wellpappe.html", "entities": ["Shinjirō Koizumi", "AirKamuy", "Japan"], "impacted_assets": [], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "e1d0c757-3cb8-58c8-b022-a32418088937", "text": "Advanced Technologies Tested in Switzerland to Reduce Pesticide Use. A project in Switzerland has tested advanced technologies to reduce pesticide use on around 2000 hectares of farmland. The results show a reduction of up to 80% in herbicides used for maraîchère cultures, but only a 5% reduction for large-scale farming. Experts acknowledge the challenges and costs associated with adopting these technologies, highlighting the need for further development and investment.\n\nThe article does not have any direct impact on Gold/Silver prices or macro-financial markets. The tone is neutral, as it presents a mixed bag of results from the project without providing clear directional macro drivers.", "metadata": {"topic": "macro_yields_dollar", "title": "Advanced Technologies Tested in Switzerland to Reduce Pesticide Use", "original_title": "Des technologies de pointe testées en Suisse pour réduire le recours aux pesticides", "publish_date": "2026-05-09T15:16:18Z", "publish_timestamp": 1778339778, "source": "rts.ch", "url": "https://www.rts.ch/info/environnement/2026/article/des-technologies-de-pointe-testees-en-suisse-pour-reduire-le-recours-aux-pesticides-29234281.html", "entities": ["Thomas Käser", "Christian Eggenberger", "Robert Finger", "Andreas Distel"], "impacted_assets": [], "volatility_implication": "Neutral", "llm_tone_score": 0}} diff --git a/Data/3_Gold_Semantic/News_Qdrant/2026-05-10/qdrant_macro_central_banks_processed.jsonl b/Data/3_Gold_Semantic/News_Qdrant/2026-05-10/qdrant_macro_central_banks_processed.jsonl new file mode 100644 index 0000000..e69de29 diff --git a/Data/3_Gold_Semantic/News_Qdrant/2026-05-11/qdrant_macro_central_banks_processed.jsonl b/Data/3_Gold_Semantic/News_Qdrant/2026-05-11/qdrant_macro_central_banks_processed.jsonl new file mode 100644 index 0000000..ccfa46c --- /dev/null +++ b/Data/3_Gold_Semantic/News_Qdrant/2026-05-11/qdrant_macro_central_banks_processed.jsonl @@ -0,0 +1,6 @@ +{"id": "570336b4-702f-542b-bfe6-4d1bfec38c2e", "text": "Manufacturing revenue drops 42% as conflict shock ripples through Australian supply chains. The significant drop in manufacturing revenue in Australia, attributed to disruptions from the Middle East conflict, signals a broader economic slowdown that could lead to increased demand for safe-haven assets like gold and silver. As manufacturers face rising costs and declining margins, market uncertainty is likely to escalate, contributing to higher volatility and potential upward pressure on precious metals.", "metadata": {"topic": "macro_central_banks", "title": "Manufacturing revenue drops 42% as conflict shock ripples through Australian supply chains", "original_title": "Manufacturing revenue drops 42 % as conflict shock ripples through Australian supply chains", "publish_date": "2026-05-12T02:17:32Z", "publish_timestamp": 1778552252, "source": "dynamicbusiness.com", "url": "https://dynamicbusiness.com/topics/news/manufacturing-revenue-drops-42-as-conflict-shock-ripples-through-australian-supply-chains.html", "entities": ["Unleashed", "Jarrod Adam", "Peter Turner"], "impacted_assets": ["Gold", "Silver", "Equities", "Oil"], "volatility_implication": "Increase", "llm_tone_score": -4}} +{"id": "dd44bf47-83c9-50a3-8ff5-b77577781bbd", "text": "The Dollar’s 50% Tipping Point (The Greatest Wealth Transfer in History). The discussion highlights a critical juncture where the US dollar's dominance in global trade may fall below 50%, potentially leading to a significant shift in the global financial landscape. As central banks accumulate alternative assets like gold in anticipation of this transition, the implications for gold and silver prices are bullish, suggesting increased demand as investors seek safe havens amidst a weakening dollar.", "metadata": {"topic": "macro_central_banks", "title": "The Dollar’s 50% Tipping Point (The Greatest Wealth Transfer in History)", "original_title": "the battle for your democratic / fascist cash .... ", "publish_date": "2026-05-12T02:17:32Z", "publish_timestamp": 1778552252, "source": "yourdemocracy.net", "url": "https://yourdemocracy.net/drupal/node/59734", "entities": ["US Dollar", "BRICS nations", "central banks", "global trade", "gold"], "impacted_assets": ["Gold", "Silver", "USD"], "volatility_implication": "Increase", "llm_tone_score": 4}} +{"id": "ec727d3e-a39e-5913-ab0a-c92a15e7fff8", "text": "Households to slam brakes on spending as Iran war sends costs surging, warns EY. The ongoing conflict in the Middle East, particularly the war in Iran, is expected to severely impact UK consumer spending and economic growth, leading to a significant slowdown in discretionary spending. This situation, compounded by rising energy prices and inflation, is likely to increase market volatility and drive investors towards safe-haven assets like gold and silver as economic uncertainty escalates.", "metadata": {"topic": "macro_central_banks", "title": "Households to slam brakes on spending as Iran war sends costs surging, warns EY", "original_title": "Households to slam brakes on spending as Iran war sends cost surging , warns EY", "publish_date": "2026-05-12T02:17:32Z", "publish_timestamp": 1778552252, "source": "cotswoldjournal.co.uk", "url": "https://www.cotswoldjournal.co.uk/news/national/26097483.households-slam-brakes-spending-iran-war-sends-cost-surging-warns-ey/", "entities": ["EY", "UK economy", "Strait of Hormuz"], "impacted_assets": ["Gold", "Silver", "Equities", "Oil"], "volatility_implication": "Increase", "llm_tone_score": -4}} +{"id": "8029137d-a420-5ed7-a4b1-158abeafc973", "text": "Emerging Markets Surge, Franklin Templeton Emerging Market Monthly Income Fund Performance Leads. The easing geopolitical tensions in the Middle East and strong performance in AI technology stocks have led to a significant recovery in emerging markets, with the MSCI Emerging Markets Index rising 6.9% weekly. This positive sentiment is likely to reduce market volatility, potentially leading to a decrease in demand for safe-haven assets like gold and silver as investors shift towards riskier assets.", "metadata": {"topic": "macro_central_banks", "title": "Emerging Markets Surge, Franklin Templeton Emerging Market Monthly Income Fund Performance Leads", "original_title": "新興市場驚漲 富坦新興月收益基金績效一路領先", "publish_date": "2026-05-12T02:17:32Z", "publish_timestamp": 1778552252, "source": "ec.ltn.com.tw", "url": "https://ec.ltn.com.tw/article/breakingnews/5433724", "entities": ["Franklin Templeton", "MSCI Emerging Markets Index", "AI Technology Sector"], "impacted_assets": ["Emerging Markets", "Equities", "Gold", "Silver"], "volatility_implication": "Decrease", "llm_tone_score": 3}} +{"id": "bf99b1d5-6a7e-5d44-af69-5fe4d4009fa8", "text": "San Francisco edges LA in post-pandemic recovery. The contrasting recovery trajectories of San Francisco and Los Angeles post-pandemic highlight a tech-driven resurgence in San Francisco, particularly in AI, which is attracting new residents and boosting the local economy. In contrast, Los Angeles faces ongoing population declines and economic challenges, exacerbated by immigration policies and a struggling entertainment industry, potentially increasing market uncertainty and driving investors towards safe-haven assets like gold and silver.", "metadata": {"topic": "macro_central_banks", "title": "San Francisco edges LA in post-pandemic recovery", "original_title": "San Francisco edges LA in post - pandemic recovery", "publish_date": "2026-05-12T02:17:32Z", "publish_timestamp": 1778552252, "source": "marinij.com", "url": "https://www.marinij.com/2026/05/11/san-francisco-edges-la-in-post-pandemic-recovery/", "entities": ["San Francisco", "Los Angeles", "Trump administration", "Silicon Valley", "UCLA Anderson School of Management"], "impacted_assets": ["Gold", "Silver", "Equities", "Real Estate"], "volatility_implication": "Increase", "llm_tone_score": 2}} +{"id": "b41feabd-9664-5e6a-8982-e69da3773edd", "text": "ASEAN's elusive search for financial safety. The ASEAN+3 group's efforts to enhance financial safety through the CMIM arrangement amid rising geopolitical tensions in the Middle East could lead to increased market volatility. By transitioning to a Paid-in Capital Fund, the region aims to create a more robust financial safety net, which may bolster demand for safe-haven assets like gold and silver as investors seek protection against potential financial instability.", "metadata": {"topic": "macro_central_banks", "title": "ASEAN's elusive search for financial safety", "original_title": "ASEAN elusive search for financial safety - The HinduBusinessLine", "publish_date": "2026-05-12T02:17:32Z", "publish_timestamp": 1778552252, "source": "thehindubusinessline.com", "url": "https://www.thehindubusinessline.com/opinion/aseans-elusive-search-for-financial-safety/article70965393.ece", "entities": ["ASEAN+3", "China", "Japan", "South Korea", "IMF"], "impacted_assets": ["Gold", "Silver", "Equities", "USD"], "volatility_implication": "Increase", "llm_tone_score": 2}} diff --git a/Data/3_Gold_Semantic/News_Qdrant/2026-05-11/qdrant_macro_yields_dollar_processed.jsonl b/Data/3_Gold_Semantic/News_Qdrant/2026-05-11/qdrant_macro_yields_dollar_processed.jsonl new file mode 100644 index 0000000..067d9f2 --- /dev/null +++ b/Data/3_Gold_Semantic/News_Qdrant/2026-05-11/qdrant_macro_yields_dollar_processed.jsonl @@ -0,0 +1,6 @@ +{"id": "7fede627-d5b4-5b24-ba2d-f43a62d67d34", "text": "EMGA secures a $25 million financing for the Vietnamese company EVF. The announcement of a $25 million financing secured by Emerging Markets Global Advisory (EMGA) for the EVF company in Vietnam indicates a positive development for the local SME sector, which is crucial for economic growth. However, this event does not have a direct impact on gold or silver prices, as it primarily pertains to regional financial markets and does not signal broader macroeconomic shifts.", "metadata": {"topic": "macro_yields_dollar", "title": "EMGA secures a $25 million financing for the Vietnamese company EVF", "original_title": "GNW - News : EMGA vermittelt eine Fremdfinanzierung in Höhe von 25 Mio . US - Dollar für das vietnamesische Unternehmen EVF", "publish_date": "2026-05-12T02:20:03Z", "publish_timestamp": 1778552403, "source": "finanzen.net", "url": "https://www.finanzen.net/nachricht/aktien/gnw-news-emga-vermittelt-eine-fremdfinanzierung-in-hoehe-von-25-mio-us-dollar-fuer-das-vietnamesische-unternehmen-evf-15677358", "entities": ["EMGA", "EVF", "OFID"], "impacted_assets": ["Equities", "Gold", "Silver"], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "cbfffc4c-a5cf-53e5-b9d2-ce99cb7e4603", "text": "New Treasury Bill Auction: This is the Yield for Three and Nine Months. The upcoming Treasury bill auction indicates a marginal yield of 2.123% for three-month bills and 2.471% for nine-month bills, reflecting a stable interest rate environment. As the Treasury aims to finance €55 billion in 2026, the focus on medium to long-term debt suggests a potential cooling of inflation expectations, which may lead to a stronger USD and reduced demand for safe-haven assets like gold and silver.", "metadata": {"topic": "macro_yields_dollar", "title": "New Treasury Bill Auction: This is the Yield for Three and Nine Months", "original_title": "Nueva subasta de Letras del Tesoro : esta es la rentabilidad a tres y nueve meses", "publish_date": "2026-05-12T02:20:03Z", "publish_timestamp": 1778552403, "source": "abc.es", "url": "https://www.abc.es/economia/cuentas-corrientes/nueva-subasta-letras-tesoro-rentabilidad-tres-nueve-20260512010437-nt.html", "entities": ["Treasury", "Euro", "Debt"], "impacted_assets": ["Equities", "Gold", "USD"], "volatility_implication": "Decrease", "llm_tone_score": -3}} +{"id": "dd44bf47-83c9-50a3-8ff5-b77577781bbd", "text": "The Dollar’s 50% Tipping Point (The Greatest Wealth Transfer in History). The discussion highlights a critical juncture where the US dollar's dominance in global trade may fall below 50%, potentially leading to a significant shift in the global financial landscape. As central banks accumulate alternative assets like gold in anticipation of this transition, the implications for gold and silver prices are bullish, suggesting increased demand as investors seek safe havens amidst a weakening dollar.", "metadata": {"topic": "macro_yields_dollar", "title": "The Dollar’s 50% Tipping Point (The Greatest Wealth Transfer in History)", "original_title": "the battle for your democratic / fascist cash .... ", "publish_date": "2026-05-12T02:20:03Z", "publish_timestamp": 1778552403, "source": "yourdemocracy.net", "url": "https://yourdemocracy.net/drupal/node/59734", "entities": ["US Dollar", "BRICS nations", "central banks", "global trade", "gold"], "impacted_assets": ["Gold", "Silver", "USD"], "volatility_implication": "Increase", "llm_tone_score": 4}} +{"id": "62ab0459-2cb8-573a-9a40-0501d8dd8aab", "text": "The State Transfers Holdings in Housing and Infrastructure to the Caisse des Dépôts. The French government's transfer of assets to the Caisse des Dépôts aims to strengthen its role as a shareholder in strategic sectors, particularly housing and infrastructure. While this move is intended to stabilize capital and support investment programs, it does not directly impact macroeconomic conditions such as inflation or interest rates, leading to a neutral effect on gold and silver prices.", "metadata": {"topic": "macro_yields_dollar", "title": "The State Transfers Holdings in Housing and Infrastructure to the Caisse des Dépôts", "original_title": "L État cède à la Caisse des Dépôts des participations dans le logement et les infrastructures", "publish_date": "2026-05-12T02:20:03Z", "publish_timestamp": 1778552403, "source": "paris.maville.com", "url": "https://paris.maville.com/actu/actudet_-l-etat-cede-a-la-caisse-des-depots-des-participations-dans-le-logement-et-les-infrastructures-_fil-7315001_actu.Htm", "entities": ["Caisse des Dépôts", "Société pour le logement intermédiaire", "Autoroutes et tunnel du Mont-Blanc"], "impacted_assets": ["Equities", "Gold", "Silver"], "volatility_implication": "Neutral", "llm_tone_score": 0}} +{"id": "e04bf97a-910b-5540-b0ab-d378cb225150", "text": "Tech Giants Reactivate Bond Issuances to Finance AI. The resurgence of bond issuances by major tech companies like Alphabet and Amazon to finance AI investments indicates a strong demand for corporate debt, which may signal confidence in economic stability. This trend could lead to a strengthening of the USD and a cooling of inflation expectations, potentially exerting downward pressure on gold and silver prices as investors shift towards equities and corporate bonds.", "metadata": {"topic": "macro_yields_dollar", "title": "Tech Giants Reactivate Bond Issuances to Finance AI", "original_title": "Los gigantes tecnológicos reactivan las emisiones de bonos para financiar la IA", "publish_date": "2026-05-12T02:20:03Z", "publish_timestamp": 1778552403, "source": "expansion.com", "url": "https://www.expansion.com/mercados/renta-fija/2026/05/12/6a021aa2468aebce698b4592.html", "entities": ["Alphabet", "Amazon", "BofA", "Mizuho", "Morgan Stanley"], "impacted_assets": ["Equities", "Gold", "USD"], "volatility_implication": "Decrease", "llm_tone_score": -2}} +{"id": "4d427844-7920-55fb-adc5-b6af985cfff9", "text": "Robinhood prepares for its second investment fund IPO amid the rise of AI. Robinhood's launch of its second investment fund, RVII, reflects a growing trend towards democratizing investment in startups, particularly in the AI sector. While this may attract retail investors and stimulate equity markets, it does not directly influence gold or silver prices, leading to a neutral impact on market volatility.", "metadata": {"topic": "macro_yields_dollar", "title": "Robinhood prepares for its second investment fund IPO amid the rise of AI", "original_title": "Robinhood se prepara para su segundo IPO de fondos de inversión en medio del auge de la IA", "publish_date": "2026-05-12T02:20:03Z", "publish_timestamp": 1778552403, "source": "cadena3.com", "url": "https://www.cadena3.com/noticia/tecnologia/robinhood-se-prepara-para-su-segundo-ipo-de-fondos-de-inversion-en-medio-del-auge-de-la-ia_550308", "entities": ["Robinhood", "Vlad Tenev", "OpenAI"], "impacted_assets": ["Equities", "Gold", "Silver"], "volatility_implication": "Neutral", "llm_tone_score": 0}} diff --git a/Data/3_Gold_Semantic/News_Qdrant/2026-05-12/qdrant_macro_central_banks_processed.jsonl b/Data/3_Gold_Semantic/News_Qdrant/2026-05-12/qdrant_macro_central_banks_processed.jsonl new file mode 100644 index 0000000..e69de29 diff --git a/Data/3_Gold_Semantic/SEC_Insider_Trades/2026-04-12/qdrant_ready.jsonl b/Data/3_Gold_Semantic/SEC_Insider_Trades/2026-04-12/qdrant_ready.jsonl new file mode 100644 index 0000000..338aab0 --- /dev/null +++ b/Data/3_Gold_Semantic/SEC_Insider_Trades/2026-04-12/qdrant_ready.jsonl @@ -0,0 +1,10 @@ +{"text": "Key John P. (Director) of PANW sold 1,572 shares worth $272,459.04.", "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", "transaction_date": "2026-04-08", "tone_score": -3, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-12T10:47:32.053811"}} +{"text": "Porat Ruth (President And Cio) of GOOGL acquired (via RSU vesting) 83,899 shares worth $0.00.", "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", "transaction_date": "2026-04-08", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-12T10:47:32.053843"}} +{"text": "Schindler Philipp (Svp, Chief Business Officer) of GOOGL acquired (via RSU vesting) 106,272 shares worth $0.00.", "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", "transaction_date": "2026-04-08", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-12T10:47:32.053855"}} +{"text": "Ashkenazi Anat (Svp, Chief Financial Officer) of GOOGL acquired (via RSU vesting) 87,255 shares worth $0.00.", "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", "transaction_date": "2026-04-08", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-12T10:47:32.053863"}} +{"text": "WALKER JOHN KENT (President, Global Affairs, Clo) of GOOGL acquired (via RSU vesting) 83,899 shares worth $0.00.", "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", "transaction_date": "2026-04-08", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-12T10:47:32.053873"}} +{"text": "Velaga S. Ram (President, Isg) of AVGO sold 30,215 shares worth $10,638,012.48.", "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", "transaction_date": "2026-04-08", "tone_score": -3, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-12T10:47:32.054065"}} +{"text": "TAN HOCK E (President And Ceo) of AVGO acquired (via RSU vesting) 22,000 shares worth $0.00.", "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", "transaction_date": "2026-04-08", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-12T10:47:32.054084"}} +{"text": "PAGE JUSTINE (Other) of AVGO sold 2,018 shares worth $712,354.20.", "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", "transaction_date": "2026-04-08", "tone_score": -3, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-12T10:47:32.054094"}} +{"text": "Kawwas Charlie B (President, Ssg) of AVGO sold 10,000 shares worth $3,452,270.00.", "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", "transaction_date": "2026-04-08", "tone_score": -3, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-12T10:47:32.054103"}} +{"text": "Alphabet Inc. announces equity awards for executive officers Anat Ashkenazi, Ruth Porat, Philipp Schindler, and Kent Walker.", "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", "transaction_date": "2026-04-07", "tone_score": 0, "action_direction": "NONE", "topics": ["Executive Compensation", "Stock Awards"], "processed_at": "2026-04-12T10:47:33.764377"}} diff --git a/Data/3_Gold_Semantic/SEC_Insider_Trades/2026-04-19/qdrant_ready.jsonl b/Data/3_Gold_Semantic/SEC_Insider_Trades/2026-04-19/qdrant_ready.jsonl new file mode 100644 index 0000000..2051b33 --- /dev/null +++ b/Data/3_Gold_Semantic/SEC_Insider_Trades/2026-04-19/qdrant_ready.jsonl @@ -0,0 +1,70 @@ +{"text": "Palkhiwala Akash J. (Evp, Cfo & Coo) of QCOM sold 2,500 shares worth $325,854.09 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "QCOM", "form_type": "4", "filed_at": "2026-04-13", "accession_no": "0000804328-26-000053", "url": "https://www.sec.gov/Archives/edgar/data/804328/000080432826000053/xslF345X06/edgardoc.xml", "ingested_at": "2026-04-19T12:35:36.371235", "transaction_date": "2026-04-13", "tone_score": -1, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-19T12:36:02.039238"}} +{"text": "Herrington Douglas J (Ceo Worldwide Amazon Stores) of AMZN sold 20,500 shares worth $5,022,500.00 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "AMZN", "form_type": "4", "filed_at": "2026-04-16", "accession_no": "0001936006-26-000012", "url": "https://www.sec.gov/Archives/edgar/data/1018724/000193600626000012/xslF345X06/wk-form4_1776377549.xml", "ingested_at": "2026-04-19T12:35:26.077058", "transaction_date": "2026-04-14", "tone_score": -1, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-19T12:36:02.039336"}} +{"text": "Dickinson Andrew D (Chief Financial Officer) of GILD sold 3,000 shares worth $422,880.00 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "GILD", "form_type": "4", "filed_at": "2026-04-16", "accession_no": "0001310204-26-000014", "url": "https://www.sec.gov/Archives/edgar/data/882095/000131020426000014/xslF345X06/wk-form4_1776379311.xml", "ingested_at": "2026-04-19T12:35:44.991763", "transaction_date": "2026-04-15", "tone_score": -1, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-19T12:36:02.040422"}} +{"text": "Mercier Johanna (Chief Comm & Corp Aff Officer) of GILD sold 3,000 shares worth $422,880.00 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "GILD", "form_type": "4", "filed_at": "2026-04-16", "accession_no": "0001782135-26-000014", "url": "https://www.sec.gov/Archives/edgar/data/882095/000178213526000014/xslF345X06/wk-form4_1776379208.xml", "ingested_at": "2026-04-19T12:35:45.204359", "transaction_date": "2026-04-15", "tone_score": -1, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-19T12:36:02.040453"}} +{"text": "Palo Alto Networks, Inc. entered into three lease amendments extending the term of its leases for properties in Santa Clara, California.", "metadata": {"ticker": "PANW", "form_type": "8-K", "filed_at": "2026-04-13", "accession_no": "0001193125-26-151637", "url": "https://www.sec.gov/Archives/edgar/data/1327567/000119312526151637/d49517d8k.htm", "ingested_at": "2026-04-19T12:35:44.220961", "transaction_date": "2026-04-08", "tone_score": 0, "action_direction": "NONE", "topics": ["lease", "real estate", "agreement"], "processed_at": "2026-04-19T12:36:03.940840"}} +{"text": "ALLEN SCOTT R. (Cvp, Chief Accounting Officer) of MU acquired (via RSU vesting) 912 shares worth $0.00.", "metadata": {"ticker": "MU", "form_type": "4", "filed_at": "2026-04-17", "accession_no": "0001652149-26-000003", "url": "https://www.sec.gov/Archives/edgar/data/723125/000165214926000003/xslF345X06/primarydocument.xml", "ingested_at": "2026-04-19T12:35:47.001533", "transaction_date": "2026-04-15", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-19T12:36:03.940921"}} +{"text": "CORDANO MICHAEL D (Evp, Worldwide Sales) of MU sold 3,407 shares worth $1,482,045.00.", "metadata": {"ticker": "MU", "form_type": "4", "filed_at": "2026-04-16", "accession_no": "0001201490-26-000003", "url": "https://www.sec.gov/Archives/edgar/data/723125/000120149026000003/xslF345X06/primarydocument.xml", "ingested_at": "2026-04-19T12:35:47.179128", "transaction_date": "2026-04-14", "tone_score": -3, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-19T12:36:03.940939"}} +{"text": "Sadana Sumit (Evp And Chief Business Officer) of MU sold 24,000 shares worth $10,112,400.00.", "metadata": {"ticker": "MU", "form_type": "4", "filed_at": "2026-04-14", "accession_no": "0001311079-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/723125/000131107926000002/xslF345X06/primarydocument.xml", "ingested_at": "2026-04-19T12:35:47.373584", "transaction_date": "2026-04-10", "tone_score": -5, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-19T12:36:03.940955"}} +{"text": "CORDANO MICHAEL D (Evp, Worldwide Sales) of MU sold 3,407 shares worth $1,433,699.67.", "metadata": {"ticker": "MU", "form_type": "4", "filed_at": "2026-04-13", "accession_no": "0001201490-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/723125/000120149026000002/xslF345X06/primarydocument.xml", "ingested_at": "2026-04-19T12:35:47.571747", "transaction_date": "2026-04-09", "tone_score": -3, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-19T12:36:03.940966"}} +{"text": "Papermaster Mark D (Chief Technology Officer & Evp) of AMD sold 39,109 shares worth $8,988,215.00 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "AMD", "form_type": "4", "filed_at": "2026-04-17", "accession_no": "0000002488-26-000066", "url": "https://www.sec.gov/Archives/edgar/data/2488/000000248826000066/xslF345X06/wk-form4_1776456710.xml", "ingested_at": "2026-04-19T12:35:31.056886", "transaction_date": "2026-04-15", "tone_score": -1, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-19T12:36:03.940978"}} +{"text": "D'Ambrosio Christopher (Corp. Vp) of ADP sold 543 shares worth $106,286.82 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "ADP", "form_type": "4", "filed_at": "2026-04-15", "accession_no": "0001225208-26-004518", "url": "https://www.sec.gov/Archives/edgar/data/8670/000122520826004518/xslF345X06/doc4.xml", "ingested_at": "2026-04-19T12:35:46.228779", "transaction_date": "2026-04-14", "tone_score": -1, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-19T12:36:03.940990"}} +{"text": "Borders Ben (Principal Accounting Officer) of AAPL acquired (via RSU vesting) 2,609 shares worth $0.00.", "metadata": {"ticker": "AAPL", "form_type": "4", "filed_at": "2026-04-17", "accession_no": "0001140361-26-015421", "url": "https://www.sec.gov/Archives/edgar/data/320193/000114036126015421/xslF345X06/form4.xml", "ingested_at": "2026-04-19T12:35:24.521100", "transaction_date": "2026-04-15", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-19T12:36:03.941001"}} +{"text": "Parekh Kevan (Senior Vice President, Cfo) of AAPL acquired (via RSU vesting) 15,721 shares worth $0.00.", "metadata": {"ticker": "AAPL", "form_type": "4", "filed_at": "2026-04-17", "accession_no": "0001140361-26-015420", "url": "https://www.sec.gov/Archives/edgar/data/320193/000114036126015420/xslF345X06/form4.xml", "ingested_at": "2026-04-19T12:35:24.749900", "transaction_date": "2026-04-15", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-19T12:36:03.941012"}} +{"text": "Vijayaraghavan Ravi K (Other) of SNPS acquired (via RSU vesting) 453 shares worth $0.00.", "metadata": {"ticker": "SNPS", "form_type": "4", "filed_at": "2026-04-17", "accession_no": "0001804954-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/883241/000180495426000002/xslF345X06/edgardoc.xml", "ingested_at": "2026-04-19T12:35:48.073643", "transaction_date": "2026-04-16", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-19T12:36:03.941022"}} +{"text": "Shimer Peter A (Other) of SNPS acquired (via RSU vesting) 453 shares worth $0.00.", "metadata": {"ticker": "SNPS", "form_type": "4", "filed_at": "2026-04-17", "accession_no": "0002067677-26-000007", "url": "https://www.sec.gov/Archives/edgar/data/883241/000206767726000007/xslF345X06/edgardoc.xml", "ingested_at": "2026-04-19T12:35:48.272177", "transaction_date": "2026-04-16", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-19T12:36:03.941031"}} +{"text": "SCHWARZ JOHN (Other) of SNPS acquired (via RSU vesting) 453 shares worth $0.00.", "metadata": {"ticker": "SNPS", "form_type": "4", "filed_at": "2026-04-17", "accession_no": "0001184223-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/883241/000118422326000002/xslF345X06/edgardoc.xml", "ingested_at": "2026-04-19T12:35:48.491233", "transaction_date": "2026-04-16", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-19T12:36:03.941040"}} +{"text": "Sargent Jeannine P (Other) of SNPS acquired (via RSU vesting) 453 shares worth $0.00.", "metadata": {"ticker": "SNPS", "form_type": "4", "filed_at": "2026-04-17", "accession_no": "0001331845-26-000003", "url": "https://www.sec.gov/Archives/edgar/data/883241/000133184526000003/xslF345X06/edgardoc.xml", "ingested_at": "2026-04-19T12:35:48.685917", "transaction_date": "2026-04-16", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-19T12:36:03.941050"}} +{"text": "PAINTER ROBERT G (Other) of SNPS acquired (via RSU vesting) 453 shares worth $0.00.", "metadata": {"ticker": "SNPS", "form_type": "4", "filed_at": "2026-04-17", "accession_no": "0001665364-26-000005", "url": "https://www.sec.gov/Archives/edgar/data/883241/000166536426000005/xslF345X06/edgardoc.xml", "ingested_at": "2026-04-19T12:35:48.881034", "transaction_date": "2026-04-16", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-19T12:36:03.941058"}} +{"text": "JOHNSON MERCEDES (Other) of SNPS acquired (via RSU vesting) 453 shares worth $0.00.", "metadata": {"ticker": "SNPS", "form_type": "4", "filed_at": "2026-04-17", "accession_no": "0001225110-26-000006", "url": "https://www.sec.gov/Archives/edgar/data/883241/000122511026000006/xslF345X06/edgardoc.xml", "ingested_at": "2026-04-19T12:35:49.079895", "transaction_date": "2026-04-16", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-19T12:36:03.941067"}} +{"text": "CHIZEN BRUCE R (Other) of SNPS acquired (via RSU vesting) 453 shares worth $0.00.", "metadata": {"ticker": "SNPS", "form_type": "4", "filed_at": "2026-04-17", "accession_no": "0001032834-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/883241/000103283426000002/xslF345X06/edgardoc.xml", "ingested_at": "2026-04-19T12:35:49.266521", "transaction_date": "2026-04-16", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-19T12:36:03.941075"}} +{"text": "CHAFFIN JANICE (Other) of SNPS acquired (via RSU vesting) 453 shares worth $0.00.", "metadata": {"ticker": "SNPS", "form_type": "4", "filed_at": "2026-04-17", "accession_no": "0001202443-26-000005", "url": "https://www.sec.gov/Archives/edgar/data/883241/000120244326000005/xslF345X06/edgardoc.xml", "ingested_at": "2026-04-19T12:35:49.478353", "transaction_date": "2026-04-16", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-19T12:36:03.941083"}} +{"text": "Webster Aaron (Evp, Global Chief Risk Officer) of PYPL acquired (via RSU vesting) 12,405 shares worth $0.00.", "metadata": {"ticker": "PYPL", "form_type": "4", "filed_at": "2026-04-16", "accession_no": "0001862209-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/1633917/000186220926000002/xslF345X06/edgardoc.xml", "ingested_at": "2026-04-19T12:35:51.404982", "transaction_date": "2026-04-15", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-19T12:36:03.941094"}} +{"text": "Scotti Diego (Evp, Gm Consumer Group) of PYPL acquired (via RSU vesting) 13,339 shares worth $0.00.", "metadata": {"ticker": "PYPL", "form_type": "4", "filed_at": "2026-04-16", "accession_no": "0001621597-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/1633917/000162159726000002/xslF345X06/edgardoc.xml", "ingested_at": "2026-04-19T12:35:51.622240", "transaction_date": "2026-04-15", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-19T12:36:03.941105"}} +{"text": "Natali Chris (Svp, Chief Accounting Officer) of PYPL acquired (via RSU vesting) 3,669 shares worth $0.00.", "metadata": {"ticker": "PYPL", "form_type": "4", "filed_at": "2026-04-16", "accession_no": "0001905272-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/1633917/000190527226000002/xslF345X06/edgardoc.xml", "ingested_at": "2026-04-19T12:35:51.814860", "transaction_date": "2026-04-15", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-19T12:36:03.941114"}} +{"text": "Keller Frank (Evp, Gm, Large Ent & Mer Plat.) of PYPL acquired (via RSU vesting) 2,546 shares worth $0.00.", "metadata": {"ticker": "PYPL", "form_type": "4", "filed_at": "2026-04-16", "accession_no": "0002006416-26-000003", "url": "https://www.sec.gov/Archives/edgar/data/1633917/000200641626000003/xslF345X06/edgardoc.xml", "ingested_at": "2026-04-19T12:35:51.994360", "transaction_date": "2026-04-15", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-19T12:36:03.941123"}} +{"text": "Coletti Robert E. (Other) of CTAS acquired (via RSU vesting) 12,544 shares worth $0.00.", "metadata": {"ticker": "CTAS", "form_type": "4", "filed_at": "2026-04-13", "accession_no": "0000950103-26-005654", "url": "https://www.sec.gov/Archives/edgar/data/723254/000095010326005654/xslF345X06/dp245145_coletti.xml", "ingested_at": "2026-04-19T12:35:54.172183", "transaction_date": "2026-04-09", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-19T12:36:03.941145"}} +{"text": "Annual meeting of stockholders held on April 16, 2026. Stockholders elected the Board of Directors and voted on proposals regarding executive compensation, independent registered public accounting firm, and permitting stockholders to act by written consent.", "metadata": {"ticker": "TXN", "form_type": "8-K", "filed_at": "2026-04-17", "accession_no": "0000097476-26-000094", "url": "https://www.sec.gov/Archives/edgar/data/97476/000009747626000094/txn-20260416.htm", "ingested_at": "2026-04-19T12:35:36.864967", "transaction_date": "2026-04-16", "tone_score": 0, "action_direction": "NONE", "topics": ["Board of Directors", "Executive Compensation", "Independent Registered Public Accounting Firm", "Stockholder Proposals"], "processed_at": "2026-04-19T12:36:06.465433"}} +{"text": "Coleman Amy (Evp, Chief Human Resources Off) of MSFT acquired (via RSU vesting) 1,364 shares worth $0.00.", "metadata": {"ticker": "MSFT", "form_type": "4", "filed_at": "2026-04-15", "accession_no": "0000789019-26-000070", "url": "https://www.sec.gov/Archives/edgar/data/789019/000078901926000070/xslF345X06/form4.xml", "ingested_at": "2026-04-19T12:35:25.242998", "transaction_date": "2026-04-15", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-19T12:36:06.465522"}} +{"text": "Amazon.com, Inc. (the “Company”) and Globalstar, Inc., a Delaware corporation (“Globalstar”), issued a joint press release announcing they have entered into a definitive merger agreement for the Company to acquire Globalstar.", "metadata": {"ticker": "AMZN", "form_type": "8-K", "filed_at": "2026-04-14", "accession_no": "0001104659-26-042880", "url": "https://www.sec.gov/Archives/edgar/data/1018724/000110465926042880/tm2611746d1_8k.htm", "ingested_at": "2026-04-19T12:35:26.269520", "transaction_date": "2026-04-14", "tone_score": 0, "action_direction": "NONE", "topics": ["Mergers and Acquisitions", "Regulatory Approvals"], "processed_at": "2026-04-19T12:36:08.674165"}} +{"text": "Hennessy John L. (Director) of GOOGL sold 1,050 shares worth $348,232.37.", "metadata": {"ticker": "GOOGL", "form_type": "4", "filed_at": "2026-04-17", "accession_no": "0001193125-26-162189", "url": "https://www.sec.gov/Archives/edgar/data/1652044/000119312526162189/xslF345X06/ownership.xml", "ingested_at": "2026-04-19T12:35:27.801943", "transaction_date": "2026-04-15", "tone_score": -3, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-19T12:36:08.674257"}} +{"text": "Fogel Glenn D (Ceo And President) of BKNG sold 16,726 shares worth $3,100,294.06 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "BKNG", "form_type": "4", "filed_at": "2026-04-16", "accession_no": "0001516908-26-000016", "url": "https://www.sec.gov/Archives/edgar/data/1075531/000151690826000016/xslF345X06/form4-04162026_040401.xml", "ingested_at": "2026-04-19T12:35:42.535972", "transaction_date": "2026-04-15", "tone_score": -1, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-19T12:36:08.674276"}} +{"text": "Oberg Kathleen K. (Other) of ADBE acquired (via RSU vesting) 900 shares worth $0.00.", "metadata": {"ticker": "ADBE", "form_type": "4", "filed_at": "2026-04-17", "accession_no": "0000796343-26-000097", "url": "https://www.sec.gov/Archives/edgar/data/796343/000079634326000097/xslF345X06/wk-form4_1776458315.xml", "ingested_at": "2026-04-19T12:35:32.403448", "transaction_date": "2026-04-15", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-19T12:36:08.674291"}} +{"text": "Desmond Laura (Other) of ADBE acquired (via RSU vesting) 900 shares worth $0.00.", "metadata": {"ticker": "ADBE", "form_type": "4", "filed_at": "2026-04-17", "accession_no": "0000796343-26-000095", "url": "https://www.sec.gov/Archives/edgar/data/796343/000079634326000095/xslF345X06/wk-form4_1776458263.xml", "ingested_at": "2026-04-19T12:35:32.578119", "transaction_date": "2026-04-15", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-19T12:36:08.674304"}} +{"text": "Pandey Dheeraj (Other) of ADBE acquired (via RSU vesting) 900 shares worth $0.00.", "metadata": {"ticker": "ADBE", "form_type": "4", "filed_at": "2026-04-17", "accession_no": "0000796343-26-000094", "url": "https://www.sec.gov/Archives/edgar/data/796343/000079634326000094/xslF345X06/wk-form4_1776458256.xml", "ingested_at": "2026-04-19T12:35:32.757316", "transaction_date": "2026-04-15", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-19T12:36:08.674314"}} +{"text": "AMON CRISTIANO R (Other) of ADBE acquired (via RSU vesting) 900 shares worth $0.00.", "metadata": {"ticker": "ADBE", "form_type": "4", "filed_at": "2026-04-17", "accession_no": "0000796343-26-000093", "url": "https://www.sec.gov/Archives/edgar/data/796343/000079634326000093/xslF345X06/wk-form4_1776458249.xml", "ingested_at": "2026-04-19T12:35:32.932284", "transaction_date": "2026-04-15", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-19T12:36:08.674323"}} +{"text": "Banse Amy (Other) of ADBE acquired (via RSU vesting) 900 shares worth $0.00.", "metadata": {"ticker": "ADBE", "form_type": "4", "filed_at": "2026-04-17", "accession_no": "0000796343-26-000092", "url": "https://www.sec.gov/Archives/edgar/data/796343/000079634326000092/xslF345X06/wk-form4_1776458241.xml", "ingested_at": "2026-04-19T12:35:33.140495", "transaction_date": "2026-04-15", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-19T12:36:08.674332"}} +{"text": "Boulden Melanie (Other) of ADBE acquired (via RSU vesting) 900 shares worth $0.00.", "metadata": {"ticker": "ADBE", "form_type": "4", "filed_at": "2026-04-17", "accession_no": "0000796343-26-000091", "url": "https://www.sec.gov/Archives/edgar/data/796343/000079634326000091/xslF345X06/wk-form4_1776458225.xml", "ingested_at": "2026-04-19T12:35:33.339076", "transaction_date": "2026-04-15", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-19T12:36:08.674340"}} +{"text": "Neumann Spencer Adam (Other) of ADBE acquired (via RSU vesting) 900 shares worth $0.00.", "metadata": {"ticker": "ADBE", "form_type": "4", "filed_at": "2026-04-17", "accession_no": "0000796343-26-000090", "url": "https://www.sec.gov/Archives/edgar/data/796343/000079634326000090/xslF345X06/wk-form4_1776458175.xml", "ingested_at": "2026-04-19T12:35:33.531639", "transaction_date": "2026-04-15", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-19T12:36:08.674350"}} +{"text": "ROSENSWEIG DANIEL (Other) of ADBE acquired (via RSU vesting) 900 shares worth $0.00.", "metadata": {"ticker": "ADBE", "form_type": "4", "filed_at": "2026-04-17", "accession_no": "0000796343-26-000089", "url": "https://www.sec.gov/Archives/edgar/data/796343/000079634326000089/xslF345X06/wk-form4_1776458165.xml", "ingested_at": "2026-04-19T12:35:33.722168", "transaction_date": "2026-04-15", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-19T12:36:08.674359"}} +{"text": "Ricks David A (Other) of ADBE acquired (via RSU vesting) 900 shares worth $0.00.", "metadata": {"ticker": "ADBE", "form_type": "4", "filed_at": "2026-04-17", "accession_no": "0000796343-26-000088", "url": "https://www.sec.gov/Archives/edgar/data/796343/000079634326000088/xslF345X06/wk-form4_1776458157.xml", "ingested_at": "2026-04-19T12:35:33.941098", "transaction_date": "2026-04-15", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-19T12:36:08.674368"}} +{"text": "CALDERONI FRANK (Other) of ADBE acquired (via RSU vesting) 900 shares worth $0.00.", "metadata": {"ticker": "ADBE", "form_type": "4", "filed_at": "2026-04-17", "accession_no": "0000796343-26-000087", "url": "https://www.sec.gov/Archives/edgar/data/796343/000079634326000087/xslF345X06/wk-form4_1776458150.xml", "ingested_at": "2026-04-19T12:35:34.176642", "transaction_date": "2026-04-15", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-19T12:36:08.674376"}} +{"text": "Wadhwani David (President, C&P) of ADBE acquired (via RSU vesting) 4,518 shares worth $0.00.", "metadata": {"ticker": "ADBE", "form_type": "4", "filed_at": "2026-04-17", "accession_no": "0000796343-26-000083", "url": "https://www.sec.gov/Archives/edgar/data/796343/000079634326000083/xslF345X06/wk-form4_1776457714.xml", "ingested_at": "2026-04-19T12:35:34.391804", "transaction_date": "2026-04-15", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-19T12:36:08.674387"}} +{"text": "Pentland Adele Louise (Chief Legal Officer & Evp) of ADBE acquired (via RSU vesting) 1,752 shares worth $0.00.", "metadata": {"ticker": "ADBE", "form_type": "4", "filed_at": "2026-04-17", "accession_no": "0000796343-26-000082", "url": "https://www.sec.gov/Archives/edgar/data/796343/000079634326000082/xslF345X06/wk-form4_1776457706.xml", "ingested_at": "2026-04-19T12:35:34.652566", "transaction_date": "2026-04-15", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-19T12:36:08.674396"}} +{"text": "NARAYEN SHANTANU (Chair And Ceo) of ADBE acquired (via RSU vesting) 12,412 shares worth $0.00.", "metadata": {"ticker": "ADBE", "form_type": "4", "filed_at": "2026-04-17", "accession_no": "0000796343-26-000081", "url": "https://www.sec.gov/Archives/edgar/data/796343/000079634326000081/xslF345X06/wk-form4_1776457697.xml", "ingested_at": "2026-04-19T12:35:34.831388", "transaction_date": "2026-04-15", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-19T12:36:08.674406"}} +{"text": "Forusz Jillian (Svp & Cao) of ADBE acquired (via RSU vesting) 925 shares worth $0.00.", "metadata": {"ticker": "ADBE", "form_type": "4", "filed_at": "2026-04-17", "accession_no": "0000796343-26-000080", "url": "https://www.sec.gov/Archives/edgar/data/796343/000079634326000080/xslF345X06/wk-form4_1776457685.xml", "ingested_at": "2026-04-19T12:35:35.029970", "transaction_date": "2026-04-15", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-19T12:36:08.674415"}} +{"text": "Durn Daniel (Evp & Cfo) of ADBE acquired (via RSU vesting) 6,942 shares worth $0.00.", "metadata": {"ticker": "ADBE", "form_type": "4", "filed_at": "2026-04-17", "accession_no": "0000796343-26-000079", "url": "https://www.sec.gov/Archives/edgar/data/796343/000079634326000079/xslF345X06/wk-form4_1776457673.xml", "ingested_at": "2026-04-19T12:35:35.228211", "transaction_date": "2026-04-15", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-19T12:36:08.674424"}} +{"text": "Chen Gloria (Evp, Chief People Officer) of ADBE acquired (via RSU vesting) 4,849 shares worth $0.00.", "metadata": {"ticker": "ADBE", "form_type": "4", "filed_at": "2026-04-17", "accession_no": "0000796343-26-000078", "url": "https://www.sec.gov/Archives/edgar/data/796343/000079634326000078/xslF345X06/wk-form4_1776457655.xml", "ingested_at": "2026-04-19T12:35:35.422772", "transaction_date": "2026-04-15", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-19T12:36:08.674433"}} +{"text": "Chakravarthy Anil (President, Cxo) of ADBE acquired (via RSU vesting) 4,518 shares worth $0.00.", "metadata": {"ticker": "ADBE", "form_type": "4", "filed_at": "2026-04-17", "accession_no": "0000796343-26-000077", "url": "https://www.sec.gov/Archives/edgar/data/796343/000079634326000077/xslF345X06/wk-form4_1776457638.xml", "ingested_at": "2026-04-19T12:35:35.630627", "transaction_date": "2026-04-15", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-19T12:36:08.674442"}} +{"text": "Balazs Lara (Chief Marketing Officer & Evp) of ADBE acquired (via RSU vesting) 3,794 shares worth $0.00.", "metadata": {"ticker": "ADBE", "form_type": "4", "filed_at": "2026-04-17", "accession_no": "0000796343-26-000076", "url": "https://www.sec.gov/Archives/edgar/data/796343/000079634326000076/xslF345X06/wk-form4_1776457629.xml", "ingested_at": "2026-04-19T12:35:35.825677", "transaction_date": "2026-04-15", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-19T12:36:08.674452"}} +{"text": "Tuszik Oliver (Evp, Global Sales) of CSCO acquired (via RSU vesting) 2,260 shares worth $0.00.", "metadata": {"ticker": "CSCO", "form_type": "4", "filed_at": "2026-04-13", "accession_no": "0000858877-26-000054", "url": "https://www.sec.gov/Archives/edgar/data/858877/000085887726000054/xslF345X06/wk-form4_1776110926.xml", "ingested_at": "2026-04-19T12:35:31.602504", "transaction_date": "2026-04-10", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-19T12:36:08.674460"}} +{"text": "Velaga S. Ram (President, Isg) of AVGO sold 8,000 shares worth $2,964,178.40.", "metadata": {"ticker": "AVGO", "form_type": "4", "filed_at": "2026-04-14", "accession_no": "0001730168-26-000034", "url": "https://www.sec.gov/Archives/edgar/data/1730168/000173016826000034/xslF345X06/wk-form4_1776201940.xml", "ingested_at": "2026-04-19T12:35:28.614837", "transaction_date": "2026-04-10", "tone_score": -3, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-19T12:36:08.674469"}} +{"text": "DELLY GAYLA J (Other) of AVGO sold 1,000 shares worth $358,310.00.", "metadata": {"ticker": "AVGO", "form_type": "4", "filed_at": "2026-04-13", "accession_no": "0001730168-26-000032", "url": "https://www.sec.gov/Archives/edgar/data/1730168/000173016826000032/xslF345X06/wk-form4_1776114425.xml", "ingested_at": "2026-04-19T12:35:28.884105", "transaction_date": "2026-04-09", "tone_score": -3, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-19T12:36:08.674477"}} +{"text": "KIMMITT ROBERT M (Other) of META sold 580 shares worth $386,860.00 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "META", "form_type": "4", "filed_at": "2026-04-17", "accession_no": "0000950103-26-005904", "url": "https://www.sec.gov/Archives/edgar/data/1326801/000095010326005904/xslF345X06/ownership.xml", "ingested_at": "2026-04-19T12:35:26.838703", "transaction_date": "2026-04-15", "tone_score": -1, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-19T12:36:08.674486"}} +{"text": "Olivan Javier (Chief Operating Officer) of META sold 4,665 shares worth $2,936,559.28 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "META", "form_type": "4", "filed_at": "2026-04-15", "accession_no": "0000950103-26-005766", "url": "https://www.sec.gov/Archives/edgar/data/1326801/000095010326005766/xslF345X06/ownership.xml", "ingested_at": "2026-04-19T12:35:27.060981", "transaction_date": "2026-04-13", "tone_score": -1, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-19T12:36:08.674498"}} +{"text": "COST declares quarterly cash dividend and increases it from $1.30 to $1.47 per share.", "metadata": {"ticker": "COST", "form_type": "8-K", "filed_at": "2026-04-15", "accession_no": "0000909832-26-000041", "url": "https://www.sec.gov/Archives/edgar/data/909832/000090983226000041/cost-20260415.htm", "ingested_at": "2026-04-19T12:35:29.355189", "transaction_date": "2026-04-15", "tone_score": 0, "action_direction": "NONE", "topics": ["dividend", "shareholder"], "processed_at": "2026-04-19T12:36:10.100393"}} +{"text": "ANGOVE DUNCAN (Other) of HON acquired (via RSU vesting) 625 shares worth $0.00.", "metadata": {"ticker": "HON", "form_type": "4", "filed_at": "2026-04-16", "accession_no": "0000773840-26-000042", "url": "https://www.sec.gov/Archives/edgar/data/773840/000077384026000042/xslF345X06/wk-form4_1776378358.xml", "ingested_at": "2026-04-19T12:35:38.463320", "transaction_date": "2026-04-15", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-19T12:36:10.100480"}} +{"text": "DAVIS D SCOTT (Other) of HON acquired (via RSU vesting) 625 shares worth $0.00.", "metadata": {"ticker": "HON", "form_type": "4", "filed_at": "2026-04-16", "accession_no": "0001227733-26-000003", "url": "https://www.sec.gov/Archives/edgar/data/773840/000122773326000003/xslF345X06/wk-form4_1776378340.xml", "ingested_at": "2026-04-19T12:35:38.673820", "transaction_date": "2026-04-15", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-19T12:36:10.100497"}} +{"text": "Lieblein Grace (Other) of HON acquired (via RSU vesting) 625 shares worth $0.00.", "metadata": {"ticker": "HON", "form_type": "4", "filed_at": "2026-04-16", "accession_no": "0000773840-26-000041", "url": "https://www.sec.gov/Archives/edgar/data/773840/000077384026000041/xslF345X06/wk-form4_1776378307.xml", "ingested_at": "2026-04-19T12:35:38.871753", "transaction_date": "2026-04-15", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-19T12:36:10.100509"}} +{"text": "Watson Robin (Other) of HON acquired (via RSU vesting) 813 shares worth $0.00.", "metadata": {"ticker": "HON", "form_type": "4", "filed_at": "2026-04-16", "accession_no": "0000773840-26-000040", "url": "https://www.sec.gov/Archives/edgar/data/773840/000077384026000040/xslF345X06/wk-form4_1776378280.xml", "ingested_at": "2026-04-19T12:35:39.080072", "transaction_date": "2026-04-15", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-19T12:36:10.100521"}} +{"text": "BURKE KEVIN (Other) of HON acquired (via RSU vesting) 625 shares worth $0.00.", "metadata": {"ticker": "HON", "form_type": "4", "filed_at": "2026-04-16", "accession_no": "0000773840-26-000039", "url": "https://www.sec.gov/Archives/edgar/data/773840/000077384026000039/xslF345X06/wk-form4_1776378260.xml", "ingested_at": "2026-04-19T12:35:39.265988", "transaction_date": "2026-04-15", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-19T12:36:10.100531"}} +{"text": "LAMACH MICHAEL W (Other) of HON acquired (via RSU vesting) 625 shares worth $0.00.", "metadata": {"ticker": "HON", "form_type": "4", "filed_at": "2026-04-16", "accession_no": "0000773840-26-000038", "url": "https://www.sec.gov/Archives/edgar/data/773840/000077384026000038/xslF345X06/wk-form4_1776378242.xml", "ingested_at": "2026-04-19T12:35:39.442357", "transaction_date": "2026-04-15", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-19T12:36:10.100541"}} +{"text": "AYER WILLIAM S (Other) of HON acquired (via RSU vesting) 625 shares worth $0.00.", "metadata": {"ticker": "HON", "form_type": "4", "filed_at": "2026-04-16", "accession_no": "0000773840-26-000037", "url": "https://www.sec.gov/Archives/edgar/data/773840/000077384026000037/xslF345X06/wk-form4_1776378222.xml", "ingested_at": "2026-04-19T12:35:39.641732", "transaction_date": "2026-04-15", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-19T12:36:10.100551"}} +{"text": "ARNOLD CRAIG (Other) of HON acquired (via RSU vesting) 359 shares worth $0.00.", "metadata": {"ticker": "HON", "form_type": "4", "filed_at": "2026-04-16", "accession_no": "0000773840-26-000036", "url": "https://www.sec.gov/Archives/edgar/data/773840/000077384026000036/xslF345X06/wk-form4_1776378199.xml", "ingested_at": "2026-04-19T12:35:39.818041", "transaction_date": "2026-04-15", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-19T12:36:10.100569"}} +{"text": "Williamson Stephen (Other) of HON acquired (via RSU vesting) 625 shares worth $0.00.", "metadata": {"ticker": "HON", "form_type": "4", "filed_at": "2026-04-16", "accession_no": "0000773840-26-000035", "url": "https://www.sec.gov/Archives/edgar/data/773840/000077384026000035/xslF345X06/wk-form4_1776378175.xml", "ingested_at": "2026-04-19T12:35:40.026345", "transaction_date": "2026-04-15", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-19T12:36:10.100579"}} +{"text": "NOOYI INDRA K (Other) of HON acquired (via RSU vesting) 256 shares worth $0.00.", "metadata": {"ticker": "HON", "form_type": "4", "filed_at": "2026-04-16", "accession_no": "0000773840-26-000034", "url": "https://www.sec.gov/Archives/edgar/data/773840/000077384026000034/xslF345X06/wk-form4_1776378144.xml", "ingested_at": "2026-04-19T12:35:40.218691", "transaction_date": "2026-04-15", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-19T12:36:10.100590"}} +{"text": "Steinberg Marc (Other) of HON acquired (via RSU vesting) 605 shares worth $0.00.", "metadata": {"ticker": "HON", "form_type": "4", "filed_at": "2026-04-16", "accession_no": "0000773840-26-000033", "url": "https://www.sec.gov/Archives/edgar/data/773840/000077384026000033/xslF345X06/wk-form4_1776378118.xml", "ingested_at": "2026-04-19T12:35:40.411209", "transaction_date": "2026-04-15", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-19T12:36:10.100599"}} +{"text": "Flint Deborah (Other) of HON acquired (via RSU vesting) 625 shares worth $0.00.", "metadata": {"ticker": "HON", "form_type": "4", "filed_at": "2026-04-16", "accession_no": "0000773840-26-000032", "url": "https://www.sec.gov/Archives/edgar/data/773840/000077384026000032/xslF345X06/wk-form4_1776378094.xml", "ingested_at": "2026-04-19T12:35:40.586962", "transaction_date": "2026-04-15", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-19T12:36:10.100610"}} +{"text": "Netflix announces financial results for Q1 2026 and Reed Hastings' decision to not stand for re-election as a director.", "metadata": {"ticker": "NFLX", "form_type": "8-K", "filed_at": "2026-04-16", "accession_no": "0001065280-26-000137", "url": "https://www.sec.gov/Archives/edgar/data/1065280/000106528026000137/nflx-20260410.htm", "ingested_at": "2026-04-19T12:35:30.384401", "transaction_date": "2026-04-16", "tone_score": 0, "action_direction": "NONE", "topics": ["Financial Results", "Executive Change"], "processed_at": "2026-04-19T12:36:11.639212"}} +{"text": "PepsiCo reports financial results for the 12 weeks ended March 21, 2026.", "metadata": {"ticker": "PEP", "form_type": "8-K", "filed_at": "2026-04-16", "accession_no": "0000077476-26-000019", "url": "https://www.sec.gov/Archives/edgar/data/77476/000007747626000019/pep-20260416.htm", "ingested_at": "2026-04-19T12:35:29.836521", "transaction_date": "2026-04-16", "tone_score": 0, "action_direction": "NONE", "topics": ["Financial Results", "Press Release"], "processed_at": "2026-04-19T12:36:13.027077"}} +{"text": "Hock E. Tan and Tracey T. Travis notified Meta Platforms, Inc. that they will not stand for re-election to the Board of Directors at the 2026 Annual Meeting.", "metadata": {"ticker": "META", "form_type": "8-K", "filed_at": "2026-04-14", "accession_no": "0001628280-26-025108", "url": "https://www.sec.gov/Archives/edgar/data/1326801/000162828026025108/meta-20260408.htm", "ingested_at": "2026-04-19T12:35:27.245749", "transaction_date": "2026-04-08", "tone_score": 0, "action_direction": "NONE", "topics": ["Director Departure", "Board of Directors"], "processed_at": "2026-04-19T12:36:14.870101"}} diff --git a/Data/3_Gold_Semantic/SEC_Insider_Trades/2026-04-23/qdrant_ready.jsonl b/Data/3_Gold_Semantic/SEC_Insider_Trades/2026-04-23/qdrant_ready.jsonl new file mode 100644 index 0000000..eb63980 --- /dev/null +++ b/Data/3_Gold_Semantic/SEC_Insider_Trades/2026-04-23/qdrant_ready.jsonl @@ -0,0 +1,34 @@ +{"text": "Sentonas Michael (President) of CRWD acquired (via RSU vesting) 36,304 shares worth $0.00.", "metadata": {"ticker": "CRWD", "form_type": "4", "filed_at": "2026-04-20", "accession_no": "0001968270-26-000007", "url": "https://www.sec.gov/Archives/edgar/data/1535527/000196827026000007/xslF345X06/form4-04202026_090404.xml", "ingested_at": "2026-04-23T10:58:26.392077", "transaction_date": "2026-04-16", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-23T10:58:56.125567"}} +{"text": "Saha Anurag (Chief Accounting Officer) of CRWD sold 20,098 shares worth $1,353,658.46 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "CRWD", "form_type": "4", "filed_at": "2026-04-20", "accession_no": "0001921602-26-000004", "url": "https://www.sec.gov/Archives/edgar/data/1535527/000192160226000004/xslF345X06/form4-04202026_090405.xml", "ingested_at": "2026-04-23T10:58:26.199141", "transaction_date": "2026-04-16", "tone_score": -1, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-23T10:58:56.125533"}} +{"text": "Kurtz George (President And Ceo) of CRWD sold 5,000 shares worth $2,134,153.01 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "CRWD", "form_type": "4", "filed_at": "2026-04-21", "accession_no": "0001778564-26-000014", "url": "https://www.sec.gov/Archives/edgar/data/1535527/000177856426000014/xslF345X06/form4-04212026_080401.xml", "ingested_at": "2026-04-23T10:58:25.707933", "transaction_date": "2026-04-17", "tone_score": -1, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-23T10:58:56.125049"}} +{"text": "Kurtz George (President And Ceo) of CRWD acquired (via RSU vesting) 66,558 shares worth $0.00.", "metadata": {"ticker": "CRWD", "form_type": "4", "filed_at": "2026-04-20", "accession_no": "0001778564-26-000012", "url": "https://www.sec.gov/Archives/edgar/data/1535527/000177856426000012/xslF345X06/form4-04202026_090401.xml", "ingested_at": "2026-04-23T10:58:26.608190", "transaction_date": "2026-04-16", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-23T10:58:56.126588"}} +{"text": "Jassy Andrew R (President And Ceo) of AMZN sold 31,000 shares worth $7,905,000.00 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "AMZN", "form_type": "4", "filed_at": "2026-04-21", "accession_no": "0001374545-26-000004", "url": "https://www.sec.gov/Archives/edgar/data/1018724/000137454526000004/xslF345X06/wk-form4_1776804668.xml", "ingested_at": "2026-04-23T10:58:20.868931", "transaction_date": "2026-04-17", "tone_score": -1, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-23T10:58:56.126642"}} +{"text": "TXN reports Q1 results and provides non-GAAP measures, including free cash flow and ratios based on it. The company believes these measures provide insight into its liquidity and financial performance.", "metadata": {"ticker": "TXN", "form_type": "8-K", "filed_at": "2026-04-22", "accession_no": "0000097476-26-000097", "url": "https://www.sec.gov/Archives/edgar/data/97476/000009747626000097/txn-20260422.htm", "ingested_at": "2026-04-23T10:58:46.919158", "transaction_date": "2026-04-22", "tone_score": 0, "action_direction": "NONE", "topics": ["financials", "non-gaap", "cash_flow"], "processed_at": "2026-04-23T10:59:01.486731"}} +{"text": "IBM reports financial results for the period ended March 31, 2026, including consolidated financial statements. The company also discloses non-GAAP information and provides reconciliations to GAAP measures.", "metadata": {"ticker": "IBM", "form_type": "8-K", "filed_at": "2026-04-22", "accession_no": "0000051143-26-000036", "url": "https://www.sec.gov/Archives/edgar/data/51143/000005114326000036/ibm-20260422.htm", "ingested_at": "2026-04-23T10:58:33.482761", "transaction_date": "2026-04-22", "tone_score": 0, "action_direction": "NONE", "topics": ["Financial Results", "Non-GAAP Information", "GAAP Measures"], "processed_at": "2026-04-23T10:59:07.551978"}} +{"text": "NXP Semiconductors N.V. redeems US$750 million of 3.875% senior notes due June 2026, in accordance with the terms of the applicable indenture.", "metadata": {"ticker": "NXPI", "form_type": "8-K", "filed_at": "2026-04-20", "accession_no": "0001413447-26-000016", "url": "https://www.sec.gov/Archives/edgar/data/1413447/000141344726000016/nxpi-20260420.htm", "ingested_at": "2026-04-23T10:58:40.316961", "transaction_date": "2026-04-20", "tone_score": 0, "action_direction": "NONE", "topics": ["Mergers and Acquisitions", "Financial Reporting"], "processed_at": "2026-04-23T10:59:12.369111"}} +{"text": "CrowdStrike Holdings, Inc. (CRWD) announces a performance-and service-based equity award to Michael Sentonas, President, under the Company's 2019 Equity Incentive Plan.", "metadata": {"ticker": "CRWD", "form_type": "8-K", "filed_at": "2026-04-21", "accession_no": "0001535527-26-000018", "url": "https://www.sec.gov/Archives/edgar/data/1535527/000153552726000018/crwd-20260416.htm", "ingested_at": "2026-04-23T10:58:25.908682", "transaction_date": "2026-04-16", "tone_score": 0, "action_direction": "NONE", "topics": ["Executive Compensation", "Equity Awards", "Performance-Based Awards"], "processed_at": "2026-04-23T10:59:19.007845"}} +{"text": "CSX Corporation issued a press release and its CSX Quarterly Financial Report on financial and operating results for the quarter ended March 31, 2026.", "metadata": {"ticker": "CSX", "form_type": "8-K", "filed_at": "2026-04-22", "accession_no": "0000277948-26-000013", "url": "https://www.sec.gov/Archives/edgar/data/277948/000027794826000013/csx-20260422.htm", "ingested_at": "2026-04-23T10:58:27.407571", "transaction_date": "2026-04-22", "tone_score": 0, "action_direction": "NONE", "topics": ["Financial Results", "Quarterly Report"], "processed_at": "2026-04-23T10:59:23.627471"}} +{"text": "Amgen Inc.'s Executive Vice President and Chief Technology Officer David M. Reese is retiring on June 30, 2026, with responsibilities redistributed to other executives. Dr. Reese will remain employed until his retirement date.", "metadata": {"ticker": "AMGN", "form_type": "8-K", "filed_at": "2026-04-22", "accession_no": "0000318154-26-000048", "url": "https://www.sec.gov/Archives/edgar/data/318154/000031815426000048/amgn-20260422.htm", "ingested_at": "2026-04-23T10:58:20.336983", "transaction_date": "2026-04-22", "tone_score": 0, "action_direction": "NONE", "topics": ["Executive Departure", "Leadership Change"], "processed_at": "2026-04-23T10:59:29.584547"}} +{"text": "WALL JOHN M (Sr. Vp & Cfo) of CDNS sold 21,500 shares worth $6,653,175.00 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "CDNS", "form_type": "4", "filed_at": "2026-04-20", "accession_no": "0000813672-26-000041", "url": "https://www.sec.gov/Archives/edgar/data/813672/000081367226000041/xslF345X06/wk-form4_1776720828.xml", "ingested_at": "2026-04-23T10:58:24.268053", "transaction_date": "2026-04-16", "tone_score": -1, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-23T10:59:29.584725"}} +{"text": "TYSOE RONALD W (Other) of CTAS sold 11,000 shares worth $834,607.42.", "metadata": {"ticker": "CTAS", "form_type": "4", "filed_at": "2026-04-22", "accession_no": "0000950103-26-006061", "url": "https://www.sec.gov/Archives/edgar/data/723254/000095010326006061/xslF345X06/ownership.xml", "ingested_at": "2026-04-23T10:58:27.938327", "transaction_date": "2026-04-20", "tone_score": -3, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-23T10:59:29.584785"}} +{"text": "Apple announces CEO Tim Cook's transition to Executive Chair and appoints John Ternus as new CEO, effective September 1, 2026. Ternus brings extensive executive leadership experience in the technology industry.", "metadata": {"ticker": "AAPL", "form_type": "8-K", "filed_at": "2026-04-20", "accession_no": "0001140361-26-015711", "url": "https://www.sec.gov/Archives/edgar/data/320193/000114036126015711/ef20071035_8k.htm", "ingested_at": "2026-04-23T10:58:13.042881", "transaction_date": "2026-04-20", "tone_score": 0, "action_direction": "NONE", "topics": ["CEO Transition", "Executive Leadership", "Technology Industry"], "processed_at": "2026-04-23T10:59:34.765018"}} +{"text": "Intuitive Surgical, Inc. issued a press release announcing its financial results for the quarter ended March 31, 2026.", "metadata": {"ticker": "ISRG", "form_type": "8-K", "filed_at": "2026-04-21", "accession_no": "0001035267-26-000029", "url": "https://www.sec.gov/Archives/edgar/data/1035267/000103526726000029/isrg-20260421.htm", "ingested_at": "2026-04-23T10:58:34.703026", "transaction_date": "2026-04-21", "tone_score": 0, "action_direction": "NONE", "topics": ["Financial Results", "Press Release"], "processed_at": "2026-04-23T10:59:39.428856"}} +{"text": "Synopsys holds its Annual Meeting of Stockholders and approves the Amended and Restated Equity Incentive Plan.", "metadata": {"ticker": "SNPS", "form_type": "8-K", "filed_at": "2026-04-20", "accession_no": "0001193125-26-164085", "url": "https://www.sec.gov/Archives/edgar/data/883241/000119312526164085/d467081d8k.htm", "ingested_at": "2026-04-23T10:58:43.985158", "transaction_date": "2026-04-16", "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", "Submission of Matters to a Vote of Security Holders"], "processed_at": "2026-04-23T10:59:47.560990"}} +{"text": "WITTMAN VANESSA AMES (Director) of BKNG sold 1,125 shares worth $216,000.00 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "BKNG", "form_type": "4", "filed_at": "2026-04-21", "accession_no": "0001229265-26-000009", "url": "https://www.sec.gov/Archives/edgar/data/1075531/000122926526000009/xslF345X06/form4-04212026_050401.xml", "ingested_at": "2026-04-23T10:58:23.573803", "transaction_date": "2026-04-17", "tone_score": -1, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-23T10:59:47.561072"}} +{"text": "Durn Daniel (Evp & Cfo) of ADBE sold 1,336 shares worth $331,354.85.", "metadata": {"ticker": "ADBE", "form_type": "4", "filed_at": "2026-04-22", "accession_no": "0000796343-26-000103", "url": "https://www.sec.gov/Archives/edgar/data/796343/000079634326000103/xslF345X06/wk-form4_1776890002.xml", "ingested_at": "2026-04-23T10:58:14.109827", "transaction_date": "2026-04-20", "tone_score": -3, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-23T10:59:47.561113"}} +{"text": "Comcast Corporation reports its results of operations for the three months ended March 31, 2026 and provides a press release with non-GAAP financial measures.", "metadata": {"ticker": "CMCSA", "form_type": "8-K", "filed_at": "2026-04-23", "accession_no": "0001628280-26-026685", "url": "https://www.sec.gov/Archives/edgar/data/1166691/000162828026026685/cmcsa-20260423.htm", "ingested_at": "2026-04-23T10:58:24.736952", "transaction_date": "2026-04-23", "tone_score": 0, "action_direction": "NONE", "topics": ["Financial Results", "Non-GAAP Financial Measures"], "processed_at": "2026-04-23T10:59:52.853717"}} +{"text": "You Harry L. (Other) of AVGO acquired (via RSU vesting) 864 shares worth $0.00.", "metadata": {"ticker": "AVGO", "form_type": "4", "filed_at": "2026-04-22", "accession_no": "0001730168-26-000043", "url": "https://www.sec.gov/Archives/edgar/data/1730168/000173016826000043/xslF345X06/wk-form4_1776891530.xml", "ingested_at": "2026-04-23T10:58:21.777688", "transaction_date": "2026-04-20", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-23T10:59:52.853959"}} +{"text": "PAGE JUSTINE (Other) of AVGO acquired (via RSU vesting) 864 shares worth $0.00.", "metadata": {"ticker": "AVGO", "form_type": "4", "filed_at": "2026-04-22", "accession_no": "0001359561-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/1730168/000135956126000002/xslF345X06/wk-form4_1776891400.xml", "ingested_at": "2026-04-23T10:58:21.998374", "transaction_date": "2026-04-20", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-23T10:59:52.853980"}} +{"text": "Low Check Kian (Other) of AVGO acquired (via RSU vesting) 981 shares worth $0.00.", "metadata": {"ticker": "AVGO", "form_type": "4", "filed_at": "2026-04-22", "accession_no": "0001692615-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/1730168/000169261526000002/xslF345X06/wk-form4_1776891263.xml", "ingested_at": "2026-04-23T10:58:22.197148", "transaction_date": "2026-04-20", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-23T10:59:52.854000"}} +{"text": "DELLY GAYLA J (Other) of AVGO acquired (via RSU vesting) 864 shares worth $0.00.", "metadata": {"ticker": "AVGO", "form_type": "4", "filed_at": "2026-04-22", "accession_no": "0001218358-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/1730168/000121835826000002/xslF345X06/wk-form4_1776891128.xml", "ingested_at": "2026-04-23T10:58:22.388010", "transaction_date": "2026-04-20", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-23T10:59:52.854019"}} +{"text": "Bryant Diane M (Other) of AVGO acquired (via RSU vesting) 864 shares worth $0.00.", "metadata": {"ticker": "AVGO", "form_type": "4", "filed_at": "2026-04-22", "accession_no": "0001730168-26-000041", "url": "https://www.sec.gov/Archives/edgar/data/1730168/000173016826000041/xslF345X06/wk-form4_1776890926.xml", "ingested_at": "2026-04-23T10:58:22.594876", "transaction_date": "2026-04-20", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-23T10:59:52.854038"}} +{"text": "Hao Kenneth (Director) of AVGO acquired (via RSU vesting) 864 shares worth $0.00.", "metadata": {"ticker": "AVGO", "form_type": "4", "filed_at": "2026-04-22", "accession_no": "0001193125-26-170554", "url": "https://www.sec.gov/Archives/edgar/data/1730168/000119312526170554/xslF345X06/ownership.xml", "ingested_at": "2026-04-23T10:58:22.817504", "transaction_date": "2026-04-20", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-23T10:59:52.854056"}} +{"text": "Netflix authorizes additional $25 billion in share repurchases; $6.8 billion available as of March 31, 2026.", "metadata": {"ticker": "NFLX", "form_type": "8-K", "filed_at": "2026-04-23", "accession_no": "0001065280-26-000139", "url": "https://www.sec.gov/Archives/edgar/data/1065280/000106528026000139/nflx-20260422.htm", "ingested_at": "2026-04-23T10:58:39.193341", "transaction_date": "2026-04-22", "tone_score": 0, "action_direction": "NONE", "topics": ["Share Repurchase", "Corporate Action"], "processed_at": "2026-04-23T10:59:56.752841"}} +{"text": "Olivan Javier (Chief Operating Officer) of META sold 1,555 shares worth $1,057,539.95 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "META", "form_type": "4", "filed_at": "2026-04-22", "accession_no": "0000950103-26-006068", "url": "https://www.sec.gov/Archives/edgar/data/1326801/000095010326006068/xslF345X06/ownership.xml", "ingested_at": "2026-04-23T10:58:37.030398", "transaction_date": "2026-04-20", "tone_score": -1, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-23T10:59:56.752949"}} +{"text": "Tesla releases its financial results for the quarter ended March 31, 2026.", "metadata": {"ticker": "TSLA", "form_type": "8-K", "filed_at": "2026-04-22", "accession_no": "0001628280-26-026551", "url": "https://www.sec.gov/Archives/edgar/data/1318605/000162828026026551/tsla-20260422.htm", "ingested_at": "2026-04-23T10:58:46.432495", "transaction_date": "2026-04-22", "tone_score": 0, "action_direction": "NONE", "topics": ["financial_results", "quarterly_update"], "processed_at": "2026-04-23T11:00:00.433352"}} +{"text": "BREWER BRADY (Ceo, International) of SBUX sold 588 shares worth $58,800.00 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "SBUX", "form_type": "4", "filed_at": "2026-04-21", "accession_no": "0000829224-26-000068", "url": "https://www.sec.gov/Archives/edgar/data/829224/000082922426000068/xslF345X06/form4.xml", "ingested_at": "2026-04-23T10:58:43.442968", "transaction_date": "2026-04-17", "tone_score": -1, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-04-23T11:00:00.433453"}} +{"text": "Adobe Inc. announces the approval of the Adobe Inc. 2019 Equity Incentive Plan to increase the available share reserve by 12 million shares at its 2026 Annual Meeting.", "metadata": {"ticker": "ADBE", "form_type": "8-K", "filed_at": "2026-04-21", "accession_no": "0000796343-26-000101", "url": "https://www.sec.gov/Archives/edgar/data/796343/000079634326000101/adbe-20260415.htm", "ingested_at": "2026-04-23T10:58:14.309707", "transaction_date": "2026-04-15", "tone_score": 0, "action_direction": "NONE", "topics": ["Corporate Governance", "Executive Compensation", "Stockholder Approval"], "processed_at": "2026-04-23T11:00:08.706618"}} +{"text": "Broadcom Inc. held its 2026 Annual Meeting of Stockholders on April 20, 2026 and voted on three matters: the election of directors, ratification of PricewaterhouseCoopers LLP as independent registered public accounting firm, and advisory vote to approve named executive officer compensation.", "metadata": {"ticker": "AVGO", "form_type": "8-K", "filed_at": "2026-04-21", "accession_no": "0001730168-26-000039", "url": "https://www.sec.gov/Archives/edgar/data/1730168/000173016826000039/avgo-20260420.htm", "ingested_at": "2026-04-23T10:58:23.007620", "transaction_date": "2026-04-20", "tone_score": 0, "action_direction": "NONE", "topics": ["Corporate Governance", "Executive Compensation", "Audit Committee"], "processed_at": "2026-04-23T11:00:16.667283"}} +{"text": "Lam Research Corporation (the “Company”) issued a press release announcing its financial results for the fiscal quarter ended March 29, 2026.", "metadata": {"ticker": "LRCX", "form_type": "8-K", "filed_at": "2026-04-22", "accession_no": "0000707549-26-000020", "url": "https://www.sec.gov/Archives/edgar/data/707549/000070754926000020/lrcx-20260422.htm", "ingested_at": "2026-04-23T10:58:35.578959", "transaction_date": "2026-04-22", "tone_score": 0, "action_direction": "NONE", "topics": ["Financial Results", "Press Release"], "processed_at": "2026-04-23T11:00:21.838465"}} +{"text": "Honeywell International Inc. is filing this Current Report on Form 8-K to recast historical segment information as set forth in its Annual Report on Form 10-K for the year ended December 31, 2025.", "metadata": {"ticker": "HON", "form_type": "8-K", "filed_at": "2026-04-23", "accession_no": "0000773840-26-000058", "url": "https://www.sec.gov/Archives/edgar/data/773840/000077384026000058/hon-20260423_d2.htm", "ingested_at": "2026-04-23T10:58:30.220377", "transaction_date": "2026-02-17", "tone_score": 0, "action_direction": "NONE", "topics": ["Segment Reporting", "Business Reorganization"], "processed_at": "2026-04-23T11:00:28.117691"}} +{"text": "Honeywell International Inc. issued a press release announcing its first quarter 2026 earnings.", "metadata": {"ticker": "HON", "form_type": "8-K", "filed_at": "2026-04-23", "accession_no": "0000773840-26-000055", "url": "https://www.sec.gov/Archives/edgar/data/773840/000077384026000055/hon-20260423.htm", "ingested_at": "2026-04-23T10:58:30.477860", "transaction_date": "2026-04-23", "tone_score": 0, "action_direction": "NONE", "topics": ["financials", "earnings"], "processed_at": "2026-04-23T11:00:31.690480"}} diff --git a/Data/3_Gold_Semantic/SEC_Insider_Trades/2026-05-06/qdrant_ready.jsonl b/Data/3_Gold_Semantic/SEC_Insider_Trades/2026-05-06/qdrant_ready.jsonl new file mode 100644 index 0000000..7febdbf --- /dev/null +++ b/Data/3_Gold_Semantic/SEC_Insider_Trades/2026-05-06/qdrant_ready.jsonl @@ -0,0 +1,106 @@ +{"text": "Kurtz George (President And Ceo) of CRWD sold 2,882 shares worth $1,350,401.61.", "metadata": {"ticker": "CRWD", "form_type": "4", "filed_at": "2026-05-05", "accession_no": "0001778564-26-000034", "url": "https://www.sec.gov/Archives/edgar/data/1535527/000177856426000034/xslF345X06/form4-05052026_090502.xml", "ingested_at": "2026-05-06T11:42:54.554962", "transaction_date": "2026-05-04", "tone_score": -5, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:43:31.381222"}} +{"text": "Yunus Mohammad (Sr. Vice President) of TXN sold 102,196 shares worth $13,818,950.95.", "metadata": {"ticker": "TXN", "form_type": "4", "filed_at": "2026-04-30", "accession_no": "0000097476-26-000123", "url": "https://www.sec.gov/Archives/edgar/data/97476/000009747626000123/xslF345X06/wk-form4_1777580913.xml", "ingested_at": "2026-05-06T11:43:22.414209", "transaction_date": "2026-04-29", "tone_score": -3, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:43:31.380826"}} +{"text": "Roberts Mark T. (Sr. Vice President) of TXN sold 45,911 shares worth $7,871,934.21.", "metadata": {"ticker": "TXN", "form_type": "4", "filed_at": "2026-05-01", "accession_no": "0000097476-26-000126", "url": "https://www.sec.gov/Archives/edgar/data/97476/000009747626000126/xslF345X06/wk-form4_1777668574.xml", "ingested_at": "2026-05-06T11:43:22.234633", "transaction_date": "2026-04-30", "tone_score": -3, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:43:31.380810"}} +{"text": "Gary Mark (Sr. Vice President) of TXN sold 27,378 shares worth $3,822,671.05.", "metadata": {"ticker": "TXN", "form_type": "4", "filed_at": "2026-05-01", "accession_no": "0000097476-26-000127", "url": "https://www.sec.gov/Archives/edgar/data/97476/000009747626000127/xslF345X06/wk-form4_1777668580.xml", "ingested_at": "2026-05-06T11:43:22.051289", "transaction_date": "2026-04-30", "tone_score": -3, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:43:31.380596"}} +{"text": "Knecht Julie C. (Vp & Chief Accounting Officer) of TXN sold 15,509 shares worth $2,774,786.29.", "metadata": {"ticker": "TXN", "form_type": "4", "filed_at": "2026-05-04", "accession_no": "0000097476-26-000129", "url": "https://www.sec.gov/Archives/edgar/data/97476/000009747626000129/xslF345X06/wk-form4_1777926695.xml", "ingested_at": "2026-05-06T11:43:21.856041", "transaction_date": "2026-04-30", "tone_score": -5, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:43:31.380579"}} +{"text": "ACE HEATHER S (Evp, Chief Hr Officer) of QCOM sold 3,200 shares worth $569,024.00 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "QCOM", "form_type": "4", "filed_at": "2026-05-04", "accession_no": "0000804328-26-000063", "url": "https://www.sec.gov/Archives/edgar/data/804328/000080432826000063/xslF345X06/edgardoc.xml", "ingested_at": "2026-05-06T11:43:17.899572", "transaction_date": "2026-05-04", "tone_score": -1, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:43:31.381019"}} +{"text": "Ilan Haviv (Chairman, President & Ceo) of TXN sold 40,000 shares worth $5,606,450.00.", "metadata": {"ticker": "TXN", "form_type": "4", "filed_at": "2026-05-05", "accession_no": "0000097476-26-000131", "url": "https://www.sec.gov/Archives/edgar/data/97476/000009747626000131/xslF345X06/wk-form4_1778014233.xml", "ingested_at": "2026-05-06T11:43:21.676484", "transaction_date": "2026-05-04", "tone_score": -5, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:43:31.380431"}} +{"text": "Grech Patricia Y (Svp, Chief Accounting Officer) of QCOM sold 192 shares worth $33,024.00 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "QCOM", "form_type": "4", "filed_at": "2026-04-30", "accession_no": "0000804328-26-000062", "url": "https://www.sec.gov/Archives/edgar/data/804328/000080432826000062/xslF345X06/edgardoc.xml", "ingested_at": "2026-05-06T11:43:18.096709", "transaction_date": "2026-04-30", "tone_score": -1, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:43:31.381053"}} +{"text": "AMON CRISTIANO R (President & Ceo) of QCOM sold 10,000 shares worth $1,800,000.00 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "QCOM", "form_type": "4", "filed_at": "2026-05-04", "accession_no": "0000804328-26-000064", "url": "https://www.sec.gov/Archives/edgar/data/804328/000080432826000064/xslF345X06/edgardoc.xml", "ingested_at": "2026-05-06T11:43:17.687867", "transaction_date": "2026-05-04", "tone_score": -1, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:43:31.380838"}} +{"text": "Podbere Burt W. (Chief Financial Officer) of CRWD sold 1,933 shares worth $883,799.43.", "metadata": {"ticker": "CRWD", "form_type": "4", "filed_at": "2026-05-05", "accession_no": "0001778610-26-000013", "url": "https://www.sec.gov/Archives/edgar/data/1535527/000177861026000013/xslF345X06/form4-05052026_090504.xml", "ingested_at": "2026-05-06T11:42:54.733972", "transaction_date": "2026-05-04", "tone_score": -5, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:43:31.382170"}} +{"text": "Kurtz George (President And Ceo) of CRWD sold 9,069 shares worth $4,172,433.89 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "CRWD", "form_type": "4", "filed_at": "2026-05-05", "accession_no": "0001778564-26-000033", "url": "https://www.sec.gov/Archives/edgar/data/1535527/000177856426000033/xslF345X06/form4-05052026_090501.xml", "ingested_at": "2026-05-06T11:42:54.915257", "transaction_date": "2026-05-01", "tone_score": -1, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:43:31.382211"}} +{"text": "Kurtz George (President And Ceo) of CRWD sold 5,000 shares worth $2,232,793.22 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "CRWD", "form_type": "4", "filed_at": "2026-05-01", "accession_no": "0001778564-26-000029", "url": "https://www.sec.gov/Archives/edgar/data/1535527/000177856426000029/xslF345X06/form4-05012026_080501.xml", "ingested_at": "2026-05-06T11:42:55.145920", "transaction_date": "2026-04-29", "tone_score": -1, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:43:31.382234"}} +{"text": "Kurtz George (President And Ceo) of CRWD sold 5,000 shares worth $2,273,647.67 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "CRWD", "form_type": "4", "filed_at": "2026-04-29", "accession_no": "0001778564-26-000027", "url": "https://www.sec.gov/Archives/edgar/data/1535527/000177856426000027/xslF345X06/form4-04292026_080401.xml", "ingested_at": "2026-05-06T11:42:55.347182", "transaction_date": "2026-04-27", "tone_score": -1, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:43:31.382259"}} +{"text": "Herrington Douglas J (Ceo Worldwide Amazon Stores) of AMZN sold 28,500 shares worth $7,828,150.00 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "AMZN", "form_type": "4", "filed_at": "2026-05-05", "accession_no": "0001936006-26-000014", "url": "https://www.sec.gov/Archives/edgar/data/1018724/000193600626000014/xslF345X06/wk-form4_1778013858.xml", "ingested_at": "2026-05-06T11:42:51.311928", "transaction_date": "2026-05-01", "tone_score": -1, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:43:31.382273"}} +{"text": "BEZOS JEFFREY P (Executive Chair) of AMZN acquired (via RSU vesting) 1,253,797 shares worth $0.00.", "metadata": {"ticker": "AMZN", "form_type": "4", "filed_at": "2026-05-05", "accession_no": "0001018724-26-000016", "url": "https://www.sec.gov/Archives/edgar/data/1018724/000101872426000016/xslF345X06/wk-form4_1778013416.xml", "ingested_at": "2026-05-06T11:42:51.521763", "transaction_date": "2026-05-01", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:43:31.382288"}} +{"text": "RUBINSTEIN JONATHAN (Other) of AMZN sold 3,706 shares worth $1,011,812.12 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "AMZN", "form_type": "4", "filed_at": "2026-05-04", "accession_no": "0001209522-26-000008", "url": "https://www.sec.gov/Archives/edgar/data/1018724/000120952226000008/xslF345X06/wk-form4_1777928327.xml", "ingested_at": "2026-05-06T11:42:51.723686", "transaction_date": "2026-04-30", "tone_score": -1, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:43:31.382303"}} +{"text": "Upadhyay Suketu (Other) of VRTX acquired (via RSU vesting) 796 shares worth $0.00.", "metadata": {"ticker": "VRTX", "form_type": "4", "filed_at": "2026-05-05", "accession_no": "0000875320-26-000193", "url": "https://www.sec.gov/Archives/edgar/data/875320/000087532026000193/xslF345X06/wk-form4_1778017445.xml", "ingested_at": "2026-05-06T11:43:22.895847", "transaction_date": "2026-05-01", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:43:31.382500"}} +{"text": "Thornberry Nancy (Other) of VRTX acquired (via RSU vesting) 870 shares worth $0.00.", "metadata": {"ticker": "VRTX", "form_type": "4", "filed_at": "2026-05-05", "accession_no": "0000875320-26-000191", "url": "https://www.sec.gov/Archives/edgar/data/875320/000087532026000191/xslF345X06/wk-form4_1778017046.xml", "ingested_at": "2026-05-06T11:43:23.094243", "transaction_date": "2026-05-01", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:43:31.382535"}} +{"text": "Schneider Jennifer (Other) of VRTX acquired (via RSU vesting) 1,268 shares worth $0.00.", "metadata": {"ticker": "VRTX", "form_type": "4", "filed_at": "2026-05-05", "accession_no": "0000875320-26-000189", "url": "https://www.sec.gov/Archives/edgar/data/875320/000087532026000189/xslF345X06/wk-form4_1778016579.xml", "ingested_at": "2026-05-06T11:43:23.288180", "transaction_date": "2026-05-01", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:43:31.382553"}} +{"text": "MCKENZIE DIANA (Other) of VRTX acquired (via RSU vesting) 1,739 shares worth $0.00.", "metadata": {"ticker": "VRTX", "form_type": "4", "filed_at": "2026-05-05", "accession_no": "0000875320-26-000185", "url": "https://www.sec.gov/Archives/edgar/data/875320/000087532026000185/xslF345X06/wk-form4_1778015893.xml", "ingested_at": "2026-05-06T11:43:23.652956", "transaction_date": "2026-05-01", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:43:31.382576"}} +{"text": "Liu Joy (Evp And Chief Legal Officer) of VRTX sold 1,104 shares worth $469,222.08 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "VRTX", "form_type": "4", "filed_at": "2026-05-05", "accession_no": "0000875320-26-000183", "url": "https://www.sec.gov/Archives/edgar/data/875320/000087532026000183/xslF345X06/wk-form4_1778015480.xml", "ingested_at": "2026-05-06T11:43:23.906689", "transaction_date": "2026-05-01", "tone_score": -1, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:43:31.382591"}} +{"text": "Garber Alan M (Other) of VRTX acquired (via RSU vesting) 472 shares worth $0.00.", "metadata": {"ticker": "VRTX", "form_type": "4", "filed_at": "2026-05-05", "accession_no": "0000875320-26-000179", "url": "https://www.sec.gov/Archives/edgar/data/875320/000087532026000179/xslF345X06/wk-form4_1778014724.xml", "ingested_at": "2026-05-06T11:43:24.305996", "transaction_date": "2026-05-01", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:43:31.382612"}} +{"text": "Bhatia Sangeeta N. (Other) of VRTX sold 1,261 shares worth $134,746.14 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "VRTX", "form_type": "4", "filed_at": "2026-05-05", "accession_no": "0000875320-26-000175", "url": "https://www.sec.gov/Archives/edgar/data/875320/000087532026000175/xslF345X06/wk-form4_1778014276.xml", "ingested_at": "2026-05-06T11:43:24.684258", "transaction_date": "2026-05-01", "tone_score": -1, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:43:31.382632"}} +{"text": "Vertex Pharmaceuticals Incorporated announces the departure of Suketu Upadhyay from its board of directors due to scheduling conflicts with his new role at Incyte Corporation. The company will reduce the size of its board to ten members following his departure.", "metadata": {"ticker": "VRTX", "form_type": "8-K", "filed_at": "2026-04-29", "accession_no": "0000875320-26-000166", "url": "https://www.sec.gov/Archives/edgar/data/875320/000087532026000166/vrtx-20260428.htm", "ingested_at": "2026-05-06T11:43:25.095217", "transaction_date": "2026-04-28", "tone_score": 0, "action_direction": "NONE", "topics": ["Director Departure", "Board Size Reduction"], "processed_at": "2026-05-06T11:43:34.487515"}} +{"text": "ROCHE VINCENT (Chair & Ceo) of ADI sold 20,000 shares worth $3,979,100.00 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "ADI", "form_type": "4", "filed_at": "2026-05-04", "accession_no": "0001201872-26-000011", "url": "https://www.sec.gov/Archives/edgar/data/6281/000120187226000011/xslF345X06/wk-form4_1777933351.xml", "ingested_at": "2026-05-06T11:42:46.935256", "transaction_date": "2026-05-01", "tone_score": -1, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:43:34.487609"}} +{"text": "Bluestone Jeffrey (Other) of GILD acquired (via RSU vesting) 1,146 shares worth $0.00.", "metadata": {"ticker": "GILD", "form_type": "4", "filed_at": "2026-05-04", "accession_no": "0000882095-26-000010", "url": "https://www.sec.gov/Archives/edgar/data/882095/000088209526000010/xslF345X06/wk-form4_1777927225.xml", "ingested_at": "2026-05-06T11:42:57.192034", "transaction_date": "2026-04-30", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:43:34.487632"}} +{"text": "BARTON JACQUELINE K (Other) of GILD acquired (via RSU vesting) 1,146 shares worth $0.00.", "metadata": {"ticker": "GILD", "form_type": "4", "filed_at": "2026-05-04", "accession_no": "0001183680-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/882095/000118368026000002/xslF345X06/wk-form4_1777927002.xml", "ingested_at": "2026-05-06T11:42:57.381254", "transaction_date": "2026-04-30", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:43:34.487648"}} +{"text": "Horning Sandra (Other) of GILD acquired (via RSU vesting) 1,146 shares worth $0.00.", "metadata": {"ticker": "GILD", "form_type": "4", "filed_at": "2026-05-04", "accession_no": "0001638709-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/882095/000163870926000002/xslF345X06/wk-form4_1777926706.xml", "ingested_at": "2026-05-06T11:42:57.605883", "transaction_date": "2026-04-30", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:43:34.487662"}} +{"text": "LOVE TED W (Other) of GILD acquired (via RSU vesting) 1,146 shares worth $0.00.", "metadata": {"ticker": "GILD", "form_type": "4", "filed_at": "2026-05-04", "accession_no": "0001188919-26-000004", "url": "https://www.sec.gov/Archives/edgar/data/882095/000118891926000004/xslF345X06/wk-form4_1777926511.xml", "ingested_at": "2026-05-06T11:42:57.798864", "transaction_date": "2026-04-30", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:43:34.487674"}} +{"text": "Rodriguez Javier (Other) of GILD acquired (via RSU vesting) 1,146 shares worth $0.00.", "metadata": {"ticker": "GILD", "form_type": "4", "filed_at": "2026-05-04", "accession_no": "0001415548-26-000003", "url": "https://www.sec.gov/Archives/edgar/data/882095/000141554826000003/xslF345X06/wk-form4_1777926298.xml", "ingested_at": "2026-05-06T11:42:57.985519", "transaction_date": "2026-04-30", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:43:34.487687"}} +{"text": "WELTERS ANTHONY (Other) of GILD acquired (via RSU vesting) 1,146 shares worth $0.00.", "metadata": {"ticker": "GILD", "form_type": "4", "filed_at": "2026-05-04", "accession_no": "0001213307-26-000003", "url": "https://www.sec.gov/Archives/edgar/data/882095/000121330726000003/xslF345X06/wk-form4_1777926175.xml", "ingested_at": "2026-05-06T11:42:58.177032", "transaction_date": "2026-04-30", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:43:34.487699"}} +{"text": "MANWANI HARISH (Other) of GILD acquired (via RSU vesting) 1,370 shares worth $0.00.", "metadata": {"ticker": "GILD", "form_type": "4", "filed_at": "2026-05-04", "accession_no": "0001527726-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/882095/000152772626000002/xslF345X06/wk-form4_1777926054.xml", "ingested_at": "2026-05-06T11:42:58.443426", "transaction_date": "2026-04-30", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:43:34.487712"}} +{"text": "Vertex Pharmaceuticals Incorporated reported its consolidated financial results for the three months ended March 31, 2026 and issued a press release on May 4, 2026.", "metadata": {"ticker": "VRTX", "form_type": "8-K", "filed_at": "2026-05-04", "accession_no": "0000875320-26-000171", "url": "https://www.sec.gov/Archives/edgar/data/875320/000087532026000171/vrtx-20260504.htm", "ingested_at": "2026-05-06T11:43:24.864637", "transaction_date": "2026-05-04", "tone_score": 0, "action_direction": "NONE", "topics": ["financial_results", "press_release"], "processed_at": "2026-05-06T11:43:36.814839"}} +{"text": "O'Day Daniel Patrick (Chairman & Ceo) of GILD sold 10,000 shares worth $1,291,608.37 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "GILD", "form_type": "4", "filed_at": "2026-04-29", "accession_no": "0001638643-26-000020", "url": "https://www.sec.gov/Archives/edgar/data/882095/000163864326000020/xslF345X06/wk-form4_1777499620.xml", "ingested_at": "2026-05-06T11:42:59.129610", "transaction_date": "2026-04-28", "tone_score": -1, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:43:36.814934"}} +{"text": "Drobac Daniel James (Vp & Chief Accounting Officer) of TMUS acquired (via RSU vesting) 37 shares worth $0.00.", "metadata": {"ticker": "TMUS", "form_type": "4", "filed_at": "2026-05-04", "accession_no": "0001283699-26-000070", "url": "https://www.sec.gov/Archives/edgar/data/1283699/000128369926000070/xslF345X06/wk-form4_1777930619.xml", "ingested_at": "2026-05-06T11:43:20.269183", "transaction_date": "2026-05-01", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:43:36.814959"}} +{"text": "Almeida Andre (Chief Broadband, Ent. & Emerg) of TMUS bought 5,097 shares worth $1,000,015.78.", "metadata": {"ticker": "TMUS", "form_type": "4", "filed_at": "2026-05-04", "accession_no": "0001283699-26-000069", "url": "https://www.sec.gov/Archives/edgar/data/1283699/000128369926000069/xslF345X06/wk-form4_1777930593.xml", "ingested_at": "2026-05-06T11:43:20.447199", "transaction_date": "2026-05-01", "tone_score": 5, "action_direction": "BUY", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:43:36.814978"}} +{"text": "Katz Michael J. (Chief Bus. And Prod. Officer) of TMUS sold 5,000 shares worth $979,050.00.", "metadata": {"ticker": "TMUS", "form_type": "4", "filed_at": "2026-05-04", "accession_no": "0001283699-26-000066", "url": "https://www.sec.gov/Archives/edgar/data/1283699/000128369926000066/xslF345X06/wk-form4_1777930505.xml", "ingested_at": "2026-05-06T11:43:20.657645", "transaction_date": "2026-05-01", "tone_score": -5, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:43:36.814995"}} +{"text": "QUALCOMM Incorporated issued a press release regarding its financial results for the second quarter of fiscal 2026.", "metadata": {"ticker": "QCOM", "form_type": "8-K", "filed_at": "2026-04-29", "accession_no": "0000804328-26-000060", "url": "https://www.sec.gov/Archives/edgar/data/804328/000080432826000060/qcom-20260429.htm", "ingested_at": "2026-05-06T11:43:18.293520", "transaction_date": "2026-04-29", "tone_score": 0, "action_direction": "NONE", "topics": ["financial_results", "press_release"], "processed_at": "2026-05-06T11:43:38.720251"}} +{"text": "Hardy Andrew (Evp, Chief Sales Officer) of NXPI acquired (via RSU vesting) 7,363 shares worth $0.00.", "metadata": {"ticker": "NXPI", "form_type": "4", "filed_at": "2026-05-01", "accession_no": "0002054266-26-000006", "url": "https://www.sec.gov/Archives/edgar/data/1413447/000205426626000006/xslF345X06/wk-form4_1777630489.xml", "ingested_at": "2026-05-06T11:43:14.994042", "transaction_date": "2026-04-30", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:43:38.720328"}} +{"text": "Sotomayor Rafael (Ceo & President) of NXPI acquired (via RSU vesting) 1,495 shares worth $0.00.", "metadata": {"ticker": "NXPI", "form_type": "4", "filed_at": "2026-05-01", "accession_no": "0002066642-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/1413447/000206664226000002/xslF345X06/wk-form4_1777630482.xml", "ingested_at": "2026-05-06T11:43:15.188167", "transaction_date": "2026-04-29", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:43:38.720351"}} +{"text": "MEHROTRA SANJAY (President And Ceo) of MU sold 40,000 shares worth $21,450,554.88 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "MU", "form_type": "4", "filed_at": "2026-05-05", "accession_no": "0001242654-26-000005", "url": "https://www.sec.gov/Archives/edgar/data/723125/000124265426000005/xslF345X06/primarydocument.xml", "ingested_at": "2026-05-06T11:43:10.406650", "transaction_date": "2026-05-01", "tone_score": -1, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:43:38.720384"}} +{"text": "RAY MICHAEL CHARLES (Svp, Chief Legal Officer) of MU sold 7,601 shares worth $4,061,206.91 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "MU", "form_type": "4", "filed_at": "2026-05-05", "accession_no": "0001593199-26-000003", "url": "https://www.sec.gov/Archives/edgar/data/723125/000159319926000003/xslF345X06/primarydocument.xml", "ingested_at": "2026-05-06T11:43:10.586738", "transaction_date": "2026-05-01", "tone_score": -1, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:43:38.720407"}} +{"text": "Santos Esteban (Evp, Operations) of AMGN acquired (via RSU vesting) 1,338 shares worth $0.00.", "metadata": {"ticker": "AMGN", "form_type": "4", "filed_at": "2026-05-05", "accession_no": "0000318154-26-000068", "url": "https://www.sec.gov/Archives/edgar/data/318154/000031815426000068/xslF345X06/form4.xml", "ingested_at": "2026-05-06T11:42:48.866151", "transaction_date": "2026-05-02", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:43:38.720434"}} +{"text": "REESE DAVID M (Evp & Chief Technology Officer) of AMGN acquired (via RSU vesting) 1,433 shares worth $0.00.", "metadata": {"ticker": "AMGN", "form_type": "4", "filed_at": "2026-05-05", "accession_no": "0000318154-26-000067", "url": "https://www.sec.gov/Archives/edgar/data/318154/000031815426000067/xslF345X06/form4.xml", "ingested_at": "2026-05-06T11:42:49.046507", "transaction_date": "2026-05-02", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:43:38.720450"}} +{"text": "Miller Derek (Svp, Human Resources) of AMGN acquired (via RSU vesting) 365 shares worth $0.00.", "metadata": {"ticker": "AMGN", "form_type": "4", "filed_at": "2026-05-05", "accession_no": "0000318154-26-000066", "url": "https://www.sec.gov/Archives/edgar/data/318154/000031815426000066/xslF345X06/form4.xml", "ingested_at": "2026-05-06T11:42:49.261539", "transaction_date": "2026-05-02", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:43:38.720464"}} +{"text": "Khosla Rachna (Svp, Business Development) of AMGN acquired (via RSU vesting) 225 shares worth $0.00.", "metadata": {"ticker": "AMGN", "form_type": "4", "filed_at": "2026-05-05", "accession_no": "0000318154-26-000065", "url": "https://www.sec.gov/Archives/edgar/data/318154/000031815426000065/xslF345X06/form4.xml", "ingested_at": "2026-05-06T11:42:49.440349", "transaction_date": "2026-05-02", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:43:38.720480"}} +{"text": "Grygiel Nancy A. (Svp & Cco) of AMGN sold 1,479 shares worth $400,450.55.", "metadata": {"ticker": "AMGN", "form_type": "4", "filed_at": "2026-05-05", "accession_no": "0000318154-26-000064", "url": "https://www.sec.gov/Archives/edgar/data/318154/000031815426000064/xslF345X06/form4.xml", "ingested_at": "2026-05-06T11:42:49.621028", "transaction_date": "2026-05-02", "tone_score": -3, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:43:38.720497"}} +{"text": "Griffith Peter H. (Evp & Cfo) of AMGN acquired (via RSU vesting) 1,433 shares worth $0.00.", "metadata": {"ticker": "AMGN", "form_type": "4", "filed_at": "2026-05-05", "accession_no": "0000318154-26-000063", "url": "https://www.sec.gov/Archives/edgar/data/318154/000031815426000063/xslF345X06/form4.xml", "ingested_at": "2026-05-06T11:42:49.818179", "transaction_date": "2026-05-02", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:43:38.720512"}} +{"text": "Graham Jonathan P (Evp & Gen. Counsel & Sec.) of AMGN acquired (via RSU vesting) 1,257 shares worth $0.00.", "metadata": {"ticker": "AMGN", "form_type": "4", "filed_at": "2026-05-05", "accession_no": "0000318154-26-000062", "url": "https://www.sec.gov/Archives/edgar/data/318154/000031815426000062/xslF345X06/form4.xml", "ingested_at": "2026-05-06T11:42:49.994953", "transaction_date": "2026-05-02", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:43:38.720526"}} +{"text": "Gordon Murdo (Evp, Global Commercial Ops) of AMGN acquired (via RSU vesting) 1,593 shares worth $0.00.", "metadata": {"ticker": "AMGN", "form_type": "4", "filed_at": "2026-05-05", "accession_no": "0000318154-26-000061", "url": "https://www.sec.gov/Archives/edgar/data/318154/000031815426000061/xslF345X06/form4.xml", "ingested_at": "2026-05-06T11:42:50.175048", "transaction_date": "2026-05-02", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:43:38.720540"}} +{"text": "Busch Matthew C. (Vp, Finance & Cao) of AMGN acquired (via RSU vesting) 68 shares worth $0.00.", "metadata": {"ticker": "AMGN", "form_type": "4", "filed_at": "2026-05-05", "accession_no": "0000318154-26-000060", "url": "https://www.sec.gov/Archives/edgar/data/318154/000031815426000060/xslF345X06/form4.xml", "ingested_at": "2026-05-06T11:42:50.380628", "transaction_date": "2026-05-02", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:43:38.720553"}} +{"text": "Bradway Robert A (Chairman, Ceo And President) of AMGN acquired (via RSU vesting) 5,057 shares worth $0.00.", "metadata": {"ticker": "AMGN", "form_type": "4", "filed_at": "2026-05-05", "accession_no": "0000318154-26-000058", "url": "https://www.sec.gov/Archives/edgar/data/318154/000031815426000058/xslF345X06/form4.xml", "ingested_at": "2026-05-06T11:42:50.561909", "transaction_date": "2026-05-02", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:43:38.720567"}} +{"text": "Amazon.com, Inc. announced its first quarter 2026 financial results and provided information regarding the inclusion of non-GAAP financial measures.", "metadata": {"ticker": "AMZN", "form_type": "8-K", "filed_at": "2026-04-29", "accession_no": "0001018724-26-000012", "url": "https://www.sec.gov/Archives/edgar/data/1018724/000101872426000012/amzn-20260429.htm", "ingested_at": "2026-05-06T11:42:51.945028", "transaction_date": "2026-04-29", "tone_score": 0, "action_direction": "NONE", "topics": ["financial_results", "non_gaap_financial_measures"], "processed_at": "2026-05-06T11:43:40.973978"}} +{"text": "Gilead Sciences, Inc. held its 2026 annual meeting of stockholders, where nine directors were elected and three proposals were voted on.", "metadata": {"ticker": "GILD", "form_type": "8-K", "filed_at": "2026-05-04", "accession_no": "0000882095-26-000008", "url": "https://www.sec.gov/Archives/edgar/data/882095/000088209526000008/gild-20260430.htm", "ingested_at": "2026-05-06T11:42:58.855911", "transaction_date": "2026-04-30", "tone_score": 0, "action_direction": "NONE", "topics": ["Director Elections", "Accounting Firm Selection", "Executive Compensation", "Equity Incentive Plan", "Independent Board Chair Policy"], "processed_at": "2026-05-06T11:43:44.220757"}} +{"text": "Burton Eve B (Other) of INTU acquired (via RSU vesting) 118 shares worth $0.00.", "metadata": {"ticker": "INTU", "form_type": "4", "filed_at": "2026-05-05", "accession_no": "0001628280-26-030785", "url": "https://www.sec.gov/Archives/edgar/data/896878/000162828026030785/xslF345X06/wk-form4_1778019075.xml", "ingested_at": "2026-05-06T11:43:02.625543", "transaction_date": "2026-05-03", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:43:44.220853"}} +{"text": "SEC filing for IBM's annual meeting and stockholder approval of the 2026 Long-Term Performance Plan.", "metadata": {"ticker": "IBM", "form_type": "8-K", "filed_at": "2026-05-01", "accession_no": "0000051143-26-000043", "url": "https://www.sec.gov/Archives/edgar/data/51143/000005114326000043/ibm-20260428.htm", "ingested_at": "2026-05-06T11:43:01.013922", "transaction_date": "2026-04-28", "tone_score": 0, "action_direction": "NONE", "topics": ["Compensatory Arrangements of Certain Officers", "Amendment to By-laws", "Submission of Matters to a Vote of Security Holders"], "processed_at": "2026-05-06T11:43:47.203792"}} +{"text": "Amgen announces first quarter 2026 earnings press release and reconciliation of non-GAAP financial measures, including non-GAAP earnings per share, operating income, tax rate, and free cash flow.", "metadata": {"ticker": "AMGN", "form_type": "8-K", "filed_at": "2026-04-30", "accession_no": "0000318154-26-000054", "url": "https://www.sec.gov/Archives/edgar/data/318154/000031815426000054/amgn-20260430.htm", "ingested_at": "2026-05-06T11:42:50.760784", "transaction_date": "2026-04-30", "tone_score": 0, "action_direction": "NONE", "topics": ["Financial Results", "Non-GAAP Measures", "Earnings Release"], "processed_at": "2026-05-06T11:43:50.077382"}} +{"text": "AMD announces its financial results for the first quarter of 2026 and provides a presentation regarding its financial performance.", "metadata": {"ticker": "AMD", "form_type": "8-K", "filed_at": "2026-05-05", "accession_no": "0000002488-26-000072", "url": "https://www.sec.gov/Archives/edgar/data/2488/000000248826000072/amd-20260505.htm", "ingested_at": "2026-05-06T11:42:48.381320", "transaction_date": "2026-05-05", "tone_score": 0, "action_direction": "NONE", "topics": ["Financial Results", "Presentation"], "processed_at": "2026-05-06T11:43:52.135111"}} +{"text": "Marriott International, Inc. (\"Marriott\") is issuing a press release reporting financial results for the quarter ended March 31, 2026.", "metadata": {"ticker": "MAR", "form_type": "8-K", "filed_at": "2026-05-06", "accession_no": "0001048286-26-000012", "url": "https://www.sec.gov/Archives/edgar/data/1048286/000104828626000012/mar-20260506.htm", "ingested_at": "2026-05-06T11:43:06.934568", "transaction_date": "2026-05-06", "tone_score": 0, "action_direction": "NONE", "topics": ["Financial Results", "Press Release"], "processed_at": "2026-05-06T11:43:54.404599"}} +{"text": "Reed Monica P (Other) of ISRG acquired (via RSU vesting) 531 shares worth $0.00.", "metadata": {"ticker": "ISRG", "form_type": "4", "filed_at": "2026-04-30", "accession_no": "0001854171-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/1035267/000185417126000002/xslF345X06/edgardoc.xml", "ingested_at": "2026-05-06T11:43:03.612621", "transaction_date": "2026-04-30", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:43:54.404702"}} +{"text": "NACHTSHEIM JAMI K (Other) of ISRG acquired (via RSU vesting) 531 shares worth $0.00.", "metadata": {"ticker": "ISRG", "form_type": "4", "filed_at": "2026-04-30", "accession_no": "0001223017-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/1035267/000122301726000002/xslF345X06/edgardoc.xml", "ingested_at": "2026-05-06T11:43:03.796116", "transaction_date": "2026-04-30", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:43:54.404722"}} +{"text": "Leonard Keith R (Other) of ISRG acquired (via RSU vesting) 531 shares worth $0.00.", "metadata": {"ticker": "ISRG", "form_type": "4", "filed_at": "2026-04-30", "accession_no": "0001416180-26-000004", "url": "https://www.sec.gov/Archives/edgar/data/1035267/000141618026000004/xslF345X06/edgardoc.xml", "ingested_at": "2026-05-06T11:43:04.027167", "transaction_date": "2026-04-30", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:43:54.404737"}} +{"text": "Ladd Amy L (Other) of ISRG acquired (via RSU vesting) 531 shares worth $0.00.", "metadata": {"ticker": "ISRG", "form_type": "4", "filed_at": "2026-04-30", "accession_no": "0001781750-26-000004", "url": "https://www.sec.gov/Archives/edgar/data/1035267/000178175026000004/xslF345X06/edgardoc.xml", "ingested_at": "2026-05-06T11:43:04.204958", "transaction_date": "2026-04-30", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:43:54.404751"}} +{"text": "Kolli Sreelakshmi (Other) of ISRG acquired (via RSU vesting) 531 shares worth $0.00.", "metadata": {"ticker": "ISRG", "form_type": "4", "filed_at": "2026-04-30", "accession_no": "0001689392-26-000006", "url": "https://www.sec.gov/Archives/edgar/data/1035267/000168939226000006/xslF345X06/edgardoc.xml", "ingested_at": "2026-05-06T11:43:04.400058", "transaction_date": "2026-04-30", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:43:54.404765"}} +{"text": "Johnson Amal M (Other) of ISRG acquired (via RSU vesting) 531 shares worth $0.00.", "metadata": {"ticker": "ISRG", "form_type": "4", "filed_at": "2026-04-30", "accession_no": "0001388397-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/1035267/000138839726000002/xslF345X06/edgardoc.xml", "ingested_at": "2026-05-06T11:43:04.610589", "transaction_date": "2026-04-30", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:43:54.404780"}} +{"text": "CHEW LEWIS (Other) of ISRG acquired (via RSU vesting) 531 shares worth $0.00.", "metadata": {"ticker": "ISRG", "form_type": "4", "filed_at": "2026-04-30", "accession_no": "0001224994-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/1035267/000122499426000002/xslF345X06/edgardoc.xml", "ingested_at": "2026-05-06T11:43:04.811932", "transaction_date": "2026-04-30", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:43:54.404794"}} +{"text": "Beery Joseph C (Other) of ISRG acquired (via RSU vesting) 531 shares worth $0.00.", "metadata": {"ticker": "ISRG", "form_type": "4", "filed_at": "2026-04-30", "accession_no": "0001249557-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/1035267/000124955726000002/xslF345X06/edgardoc.xml", "ingested_at": "2026-05-06T11:43:05.013165", "transaction_date": "2026-04-30", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:43:54.404809"}} +{"text": "BARRATT CRAIG H (Other) of ISRG acquired (via RSU vesting) 750 shares worth $0.00.", "metadata": {"ticker": "ISRG", "form_type": "4", "filed_at": "2026-04-30", "accession_no": "0001277620-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/1035267/000127762026000002/xslF345X06/edgardoc.xml", "ingested_at": "2026-05-06T11:43:05.198898", "transaction_date": "2026-04-30", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:43:54.404822"}} +{"text": "Ladd Amy L (Other) of ISRG sold 619 shares worth $291,886.50 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "ISRG", "form_type": "4", "filed_at": "2026-04-29", "accession_no": "0001781750-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/1035267/000178175026000002/xslF345X06/edgardoc.xml", "ingested_at": "2026-05-06T11:43:05.400892", "transaction_date": "2026-04-28", "tone_score": -1, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:43:54.404837"}} +{"text": "ADP announces availability of Q3 earnings release on its website.", "metadata": {"ticker": "ADP", "form_type": "8-K", "filed_at": "2026-04-29", "accession_no": "0000008670-26-000016", "url": "https://www.sec.gov/Archives/edgar/data/8670/000000867026000016/adp-20260429.htm", "ingested_at": "2026-05-06T11:42:47.483779", "transaction_date": "2026-04-29", "tone_score": 0, "action_direction": "NONE", "topics": ["Financial Results", "Earnings Release"], "processed_at": "2026-05-06T11:43:56.059373"}} +{"text": "Cunningham Paul (Sr. Vice President) of CDNS sold 1,000 shares worth $337,490.00 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "CDNS", "form_type": "4", "filed_at": "2026-05-05", "accession_no": "0000813672-26-000049", "url": "https://www.sec.gov/Archives/edgar/data/813672/000081367226000049/xslF345X06/wk-form4_1778015633.xml", "ingested_at": "2026-05-06T11:42:53.291491", "transaction_date": "2026-05-01", "tone_score": -1, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:43:56.059467"}} +{"text": "Scannell Paul (Sr. Vice President) of CDNS sold 10,500 shares worth $3,559,500.00 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "CDNS", "form_type": "4", "filed_at": "2026-05-05", "accession_no": "0000813672-26-000048", "url": "https://www.sec.gov/Archives/edgar/data/813672/000081367226000048/xslF345X06/wk-form4_1778015627.xml", "ingested_at": "2026-05-06T11:42:53.471322", "transaction_date": "2026-05-01", "tone_score": -1, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:43:56.059489"}} +{"text": "Apple issues press release regarding its financial results for its second fiscal quarter ended March 28, 2026.", "metadata": {"ticker": "AAPL", "form_type": "8-K", "filed_at": "2026-04-30", "accession_no": "0000320193-26-000011", "url": "https://www.sec.gov/Archives/edgar/data/320193/000032019326000011/aapl-20260430.htm", "ingested_at": "2026-05-06T11:42:45.668208", "transaction_date": "2026-04-30", "tone_score": 0, "action_direction": "NONE", "topics": ["financial_results", "press_release"], "processed_at": "2026-05-06T11:43:58.021287"}} +{"text": "Natali Chris (Svp, Chief Accounting Officer) of PYPL sold 1,337 shares worth $66,128.02.", "metadata": {"ticker": "PYPL", "form_type": "4", "filed_at": "2026-04-30", "accession_no": "0001905272-26-000004", "url": "https://www.sec.gov/Archives/edgar/data/1633917/000190527226000004/xslF345X06/edgardoc.xml", "ingested_at": "2026-05-06T11:43:16.807576", "transaction_date": "2026-04-29", "tone_score": -5, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:43:58.021377"}} +{"text": "Keller Frank (Pres., Checkout Sol. & Paypal) of PYPL sold 10,732 shares worth $536,204.72.", "metadata": {"ticker": "PYPL", "form_type": "4", "filed_at": "2026-04-30", "accession_no": "0002006416-26-000005", "url": "https://www.sec.gov/Archives/edgar/data/1633917/000200641626000005/xslF345X06/edgardoc.xml", "ingested_at": "2026-05-06T11:43:17.010715", "transaction_date": "2026-04-29", "tone_score": -3, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:43:58.021400"}} +{"text": "SEC filing for ISRG: Board of Directors election and compensation approval, as well as amendment to incentive award plan.", "metadata": {"ticker": "ISRG", "form_type": "8-K", "filed_at": "2026-05-04", "accession_no": "0001035267-26-000035", "url": "https://www.sec.gov/Archives/edgar/data/1035267/000103526726000035/isrg-20260430.htm", "ingested_at": "2026-05-06T11:43:03.137670", "transaction_date": "2026-04-30", "tone_score": 0, "action_direction": "NONE", "topics": ["Board of Directors", "Compensation", "Incentive Award Plan"], "processed_at": "2026-05-06T11:44:00.615915"}} +{"text": "Neumann Spencer Adam (Chief Financial Officer) of NFLX acquired (via RSU vesting) 27,603 shares worth $0.00.", "metadata": {"ticker": "NFLX", "form_type": "4", "filed_at": "2026-05-05", "accession_no": "0001065280-26-000170", "url": "https://www.sec.gov/Archives/edgar/data/1065280/000106528026000170/xslF345X06/wk-form4_1778021149.xml", "ingested_at": "2026-05-06T11:43:11.084052", "transaction_date": "2026-05-04", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:44:00.616004"}} +{"text": "SARANDOS THEODORE A (Co-Ceo) of NFLX sold 108,776 shares worth $2,402,626.72.", "metadata": {"ticker": "NFLX", "form_type": "4", "filed_at": "2026-05-05", "accession_no": "0001065280-26-000169", "url": "https://www.sec.gov/Archives/edgar/data/1065280/000106528026000169/xslF345X06/wk-form4_1778021110.xml", "ingested_at": "2026-05-06T11:43:11.297131", "transaction_date": "2026-05-04", "tone_score": -5, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:44:00.616033"}} +{"text": "Peters Gregory K (Co-Ceo) of NFLX acquired (via RSU vesting) 81,464 shares worth $0.00.", "metadata": {"ticker": "NFLX", "form_type": "4", "filed_at": "2026-05-05", "accession_no": "0001065280-26-000168", "url": "https://www.sec.gov/Archives/edgar/data/1065280/000106528026000168/xslF345X06/wk-form4_1778021060.xml", "ingested_at": "2026-05-06T11:43:11.478482", "transaction_date": "2026-05-04", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:44:00.616053"}} +{"text": "Willems Cletus R (Chief Global Affairs Officer) of NFLX acquired (via RSU vesting) 9,195 shares worth $0.00.", "metadata": {"ticker": "NFLX", "form_type": "4", "filed_at": "2026-05-05", "accession_no": "0001065280-26-000167", "url": "https://www.sec.gov/Archives/edgar/data/1065280/000106528026000167/xslF345X06/wk-form4_1778020947.xml", "ingested_at": "2026-05-06T11:43:11.659761", "transaction_date": "2026-05-04", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:44:00.616070"}} +{"text": "HYMAN DAVID A (Chief Legal Officer) of NFLX sold 22,798 shares worth $504,020.65.", "metadata": {"ticker": "NFLX", "form_type": "4", "filed_at": "2026-05-05", "accession_no": "0001065280-26-000166", "url": "https://www.sec.gov/Archives/edgar/data/1065280/000106528026000166/xslF345X06/wk-form4_1778020893.xml", "ingested_at": "2026-05-06T11:43:11.842643", "transaction_date": "2026-05-04", "tone_score": -5, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:44:00.616087"}} +{"text": "HASTINGS REED (Other) of NFLX sold 815,100 shares worth $37,956,938.16 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "NFLX", "form_type": "4", "filed_at": "2026-05-04", "accession_no": "0001065280-26-000150", "url": "https://www.sec.gov/Archives/edgar/data/1065280/000106528026000150/xslF345X06/wk-form4_1777925127.xml", "ingested_at": "2026-05-06T11:43:14.121753", "transaction_date": "2026-05-01", "tone_score": -1, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:44:00.616183"}} +{"text": "Chandrasekaran Nagasubramaniyan (Evp, Ct & Ops Off, Gm Foundry) of INTC acquired (via RSU vesting) 46,657 shares worth $0.00.", "metadata": {"ticker": "INTC", "form_type": "4", "filed_at": "2026-05-04", "accession_no": "0000050863-26-000087", "url": "https://www.sec.gov/Archives/edgar/data/50863/000005086326000087/xslF345X06/form4.xml", "ingested_at": "2026-05-06T11:43:01.637437", "transaction_date": "2026-04-30", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:44:00.616196"}} +{"text": "Miller Boise April (Evp And Chief Legal Officer) of INTC sold 40,256 shares worth $4,006,518.66.", "metadata": {"ticker": "INTC", "form_type": "4", "filed_at": "2026-05-04", "accession_no": "0000050863-26-000086", "url": "https://www.sec.gov/Archives/edgar/data/50863/000005086326000086/xslF345X06/form4.xml", "ingested_at": "2026-05-06T11:43:01.830788", "transaction_date": "2026-05-01", "tone_score": -5, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:44:00.616209"}} +{"text": "KLA Corporation announces selected financial and operating results for its third quarter of fiscal year 2026.", "metadata": {"ticker": "KLAC", "form_type": "8-K", "filed_at": "2026-04-29", "accession_no": "0000319201-26-000014", "url": "https://www.sec.gov/Archives/edgar/data/319201/000031920126000014/klac-20260429.htm", "ingested_at": "2026-05-06T11:43:05.900128", "transaction_date": "2026-04-29", "tone_score": 0, "action_direction": "NONE", "topics": ["Financial Results", "Operating Results"], "processed_at": "2026-05-06T11:44:02.513315"}} +{"text": "PayPal Holdings, Inc. issued a press release announcing its financial results for the quarter ended March 31, 2026.", "metadata": {"ticker": "PYPL", "form_type": "8-K", "filed_at": "2026-05-05", "accession_no": "0001633917-26-000065", "url": "https://www.sec.gov/Archives/edgar/data/1633917/000163391726000065/pypl-20260505.htm", "ingested_at": "2026-05-06T11:43:16.577370", "transaction_date": "2026-05-05", "tone_score": 0, "action_direction": "NONE", "topics": ["Financial Results", "Press Release"], "processed_at": "2026-05-06T11:44:04.563385"}} +{"text": "ARNOLD FRANCES (Director) of GOOGL sold 102 shares worth $37,842.00.", "metadata": {"ticker": "GOOGL", "form_type": "4", "filed_at": "2026-05-01", "accession_no": "0001193125-26-201851", "url": "https://www.sec.gov/Archives/edgar/data/1652044/000119312526201851/xslF345X06/ownership.xml", "ingested_at": "2026-05-06T11:42:59.659323", "transaction_date": "2026-04-30", "tone_score": -3, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:44:04.563464"}} +{"text": "Porat Ruth (President And Cio) of GOOGL acquired (via RSU vesting) 254,342 shares worth $0.00.", "metadata": {"ticker": "GOOGL", "form_type": "4", "filed_at": "2026-04-29", "accession_no": "0001193125-26-193335", "url": "https://www.sec.gov/Archives/edgar/data/1652044/000119312526193335/xslF345X06/ownership.xml", "ingested_at": "2026-05-06T11:42:59.838111", "transaction_date": "2025-11-11", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:44:04.563494"}} +{"text": "Schindler Philipp (Svp, Chief Business Officer) of GOOGL acquired (via RSU vesting) 24,014 shares worth $0.00.", "metadata": {"ticker": "GOOGL", "form_type": "4", "filed_at": "2026-04-29", "accession_no": "0001193125-26-192974", "url": "https://www.sec.gov/Archives/edgar/data/1652044/000119312526192974/xslF345X06/ownership.xml", "ingested_at": "2026-05-06T11:43:00.035382", "transaction_date": "2026-04-25", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:44:04.563512"}} +{"text": "PayPal Holdings, Inc. announced that Michelle Gill and Diego Scotti will cease to serve as EVPs effective June 2, 2026, and entered into separation agreements with them.", "metadata": {"ticker": "PYPL", "form_type": "8-K", "filed_at": "2026-04-30", "accession_no": "0001193125-26-197533", "url": "https://www.sec.gov/Archives/edgar/data/1633917/000119312526197533/d128781d8k.htm", "ingested_at": "2026-05-06T11:43:17.190826", "transaction_date": "2026-04-29", "tone_score": 0, "action_direction": "NONE", "topics": ["Executive Departure", "Compensation Arrangements"], "processed_at": "2026-05-06T11:44:07.190090"}} +{"text": "Wilson-Thompson Kathleen (Other) of TSLA sold 67,357 shares worth $9,985,389.94 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "TSLA", "form_type": "4", "filed_at": "2026-05-04", "accession_no": "0001104659-26-055079", "url": "https://www.sec.gov/Archives/edgar/data/1318605/000110465926055079/xslF345X06/tm2613330-1_4seq1.xml", "ingested_at": "2026-05-06T11:43:21.202608", "transaction_date": "2026-04-30", "tone_score": -1, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:44:07.190192"}} +{"text": "Forusz Jillian (Svp & Cao) of ADBE sold 755 shares worth $185,914.98.", "metadata": {"ticker": "ADBE", "form_type": "4", "filed_at": "2026-05-01", "accession_no": "0000796343-26-000107", "url": "https://www.sec.gov/Archives/edgar/data/796343/000079634326000107/xslF345X06/wk-form4_1777684649.xml", "ingested_at": "2026-05-06T11:42:46.202160", "transaction_date": "2026-04-30", "tone_score": -3, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:44:07.190213"}} +{"text": "NARAYEN SHANTANU (Chair And Ceo) of ADBE sold 75,000 shares worth $18,265,234.27.", "metadata": {"ticker": "ADBE", "form_type": "4", "filed_at": "2026-04-30", "accession_no": "0000796343-26-000105", "url": "https://www.sec.gov/Archives/edgar/data/796343/000079634326000105/xslF345X06/wk-form4_1777583385.xml", "ingested_at": "2026-05-06T11:42:46.403770", "transaction_date": "2026-04-28", "tone_score": -5, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:44:07.190231"}} +{"text": "Intel Corporation issued $6.5 billion in senior notes with varying interest rates and maturities.", "metadata": {"ticker": "INTC", "form_type": "8-K", "filed_at": "2026-04-30", "accession_no": "0001193125-26-197845", "url": "https://www.sec.gov/Archives/edgar/data/50863/000119312526197845/d143782d8k.htm", "ingested_at": "2026-05-06T11:43:02.144845", "transaction_date": "2026-04-30", "tone_score": 0, "action_direction": "NONE", "topics": ["SEC Filing", "Debt Offering", "Financial Instruments"], "processed_at": "2026-05-06T11:44:09.549179"}} +{"text": "Stevens Brian (Svp, Ctr & Chief Accoun Off) of MDLZ sold 104 shares worth $3,933.53.", "metadata": {"ticker": "MDLZ", "form_type": "4", "filed_at": "2026-05-04", "accession_no": "0001628280-26-029905", "url": "https://www.sec.gov/Archives/edgar/data/1103982/000162828026029905/xslF345X06/wk-form4_1777928157.xml", "ingested_at": "2026-05-06T11:43:07.510211", "transaction_date": "2026-04-30", "tone_score": -5, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:44:09.549275"}} +{"text": "RYAN ARTHUR F (Other) of REGN sold 100 shares worth $70,523.80 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "REGN", "form_type": "4", "filed_at": "2026-05-04", "accession_no": "0001187443-26-000008", "url": "https://www.sec.gov/Archives/edgar/data/872589/000118744326000008/xslF345X06/edgardoc.xml", "ingested_at": "2026-05-06T11:43:18.780279", "transaction_date": "2026-05-01", "tone_score": -1, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:44:09.549306"}} +{"text": "Microsoft Corporation announced its financial results for the fiscal quarter ended March 31, 2026, and furnished a press release as Exhibit 99.1 to this report.", "metadata": {"ticker": "MSFT", "form_type": "8-K", "filed_at": "2026-04-29", "accession_no": "0001193125-26-191457", "url": "https://www.sec.gov/Archives/edgar/data/789019/000119312526191457/msft-20260429.htm", "ingested_at": "2026-05-06T11:43:09.741385", "transaction_date": "2026-04-29", "tone_score": 0, "action_direction": "NONE", "topics": ["Financial Results", "Press Release"], "processed_at": "2026-05-06T11:44:11.879912"}} +{"text": "Alford Peggy (Other) of META sold 409 shares worth $251,342.77 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "META", "form_type": "4", "filed_at": "2026-05-05", "accession_no": "0000950103-26-006874", "url": "https://www.sec.gov/Archives/edgar/data/1326801/000095010326006874/xslF345X06/ownership.xml", "ingested_at": "2026-05-06T11:43:08.272194", "transaction_date": "2026-05-01", "tone_score": -1, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:44:11.879993"}} +{"text": "Alphabet Inc. is issuing a press release and holding a conference call regarding its financial results for the quarter ended March 31, 2026.", "metadata": {"ticker": "GOOGL", "form_type": "8-K", "filed_at": "2026-04-29", "accession_no": "0001652044-26-000043", "url": "https://www.sec.gov/Archives/edgar/data/1652044/000165204426000043/goog-20260429.htm", "ingested_at": "2026-05-06T11:43:00.224317", "transaction_date": "2026-04-29", "tone_score": 0, "action_direction": "NONE", "topics": ["Financial Results", "Conference Call", "Press Release"], "processed_at": "2026-05-06T11:44:14.237208"}} +{"text": "Olivan Javier (Chief Operating Officer) of META sold 1,555 shares worth $1,043,156.20 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "META", "form_type": "4", "filed_at": "2026-04-29", "accession_no": "0000950103-26-006451", "url": "https://www.sec.gov/Archives/edgar/data/1326801/000095010326006451/xslF345X06/ownership.xml", "ingested_at": "2026-05-06T11:43:08.697917", "transaction_date": "2026-04-27", "tone_score": -1, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:44:14.237318"}} +{"text": "Cisco announces the departure of M. Victoria Wong as Senior Vice President and Chief Accounting Officer, effective May 19, 2026, and her replacement by Nichlas A. Fink, who will also receive an award of restricted stock units with a grant date fair value equal to $500,000.", "metadata": {"ticker": "CSCO", "form_type": "8-K", "filed_at": "2026-05-01", "accession_no": "0000858877-26-000057", "url": "https://www.sec.gov/Archives/edgar/data/858877/000085887726000057/csco-20260427.htm", "ingested_at": "2026-05-06T11:42:55.867869", "transaction_date": "2026-04-27", "tone_score": 0, "action_direction": "NONE", "topics": ["Officer Departure", "Officer Appointment", "Compensatory Arrangements"], "processed_at": "2026-05-06T11:44:17.882444"}} +{"text": "Fernandes Neil J (Senior Vice President) of LRCX sold 18,170 shares worth $4,635,893.80 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "LRCX", "form_type": "4", "filed_at": "2026-05-04", "accession_no": "0000707549-26-000024", "url": "https://www.sec.gov/Archives/edgar/data/707549/000070754926000024/xslF345X06/wk-form4_1777915449.xml", "ingested_at": "2026-05-06T11:43:06.416838", "transaction_date": "2026-05-01", "tone_score": -1, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:44:17.882535"}} +{"text": "KELLY SARA (Evp, Chief Partner Officer) of SBUX sold 2,000 shares worth $210,000.00 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "SBUX", "form_type": "4", "filed_at": "2026-04-30", "accession_no": "0000829224-26-000082", "url": "https://www.sec.gov/Archives/edgar/data/829224/000082922426000082/xslF345X06/form4.xml", "ingested_at": "2026-05-06T11:43:19.462044", "transaction_date": "2026-04-29", "tone_score": -1, "action_direction": "SELL", "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-06T11:44:17.882557"}} +{"text": "Regeneron Pharmaceuticals, Inc. issued a press release announcing its financial and operating results for the quarter ended March 31, 2026.", "metadata": {"ticker": "REGN", "form_type": "8-K", "filed_at": "2026-04-29", "accession_no": "0000872589-26-000014", "url": "https://www.sec.gov/Archives/edgar/data/872589/000087258926000014/regn-20260429.htm", "ingested_at": "2026-05-06T11:43:18.964724", "transaction_date": "2026-04-29", "tone_score": 0, "action_direction": "NONE", "topics": ["financial_results", "operating_results"], "processed_at": "2026-05-06T11:44:20.083954"}} +{"text": "Meta Platforms, Inc. completed an offering of $15 billion in senior notes with varying interest rates and maturities.", "metadata": {"ticker": "META", "form_type": "8-K", "filed_at": "2026-05-04", "accession_no": "0001193125-26-204128", "url": "https://www.sec.gov/Archives/edgar/data/1326801/000119312526204128/d134616d8k.htm", "ingested_at": "2026-05-06T11:43:08.478925", "transaction_date": "2026-05-04", "tone_score": 0, "action_direction": "NONE", "topics": ["DEBT OFFERING", "SECURITIES REGULATION"], "processed_at": "2026-05-06T11:44:22.540465"}} +{"text": "Meta issued a press release and will hold a conference call regarding its financial results for the quarter ended March 31, 2026. The company is making reference to non-GAAP financial information in both the press release and the conference call.", "metadata": {"ticker": "META", "form_type": "8-K", "filed_at": "2026-04-29", "accession_no": "0001628280-26-028364", "url": "https://www.sec.gov/Archives/edgar/data/1326801/000162828026028364/meta-20260429.htm", "ingested_at": "2026-05-06T11:43:08.920224", "transaction_date": "2026-04-29", "tone_score": 0, "action_direction": "NONE", "topics": ["Financial Results", "Non-GAAP Financial Information", "Conference Call", "Press Release"], "processed_at": "2026-05-06T11:44:25.689040"}} diff --git a/Data/3_Gold_Semantic/SEC_Insider_Trades/2026-05-11/qdrant_ready.jsonl b/Data/3_Gold_Semantic/SEC_Insider_Trades/2026-05-11/qdrant_ready.jsonl new file mode 100644 index 0000000..46bc91a --- /dev/null +++ b/Data/3_Gold_Semantic/SEC_Insider_Trades/2026-05-11/qdrant_ready.jsonl @@ -0,0 +1,77 @@ +{"text": "GANDHI SAMEER K (Director) of CRWD sold 17,527 shares worth $9,230,016.29 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "CRWD", "form_type": "4", "filed_at": "2026-05-11", "accession_no": "0001201326-26-000007", "url": "https://www.sec.gov/Archives/edgar/data/1535527/000120132626000007/xslF345X06/form4-05112026_080506.xml", "ingested_at": "2026-05-11T22:37:12.066353", "transaction_date": "2026-05-08", "tone_score": -1, "action_direction": "SELL", "is_10b5_1_planned": true, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:50.567871"}} +{"text": "Leonard Shanon J (Sr. Vice President) of TXN acquired (via RSU vesting) 2,145 shares worth $0.00.", "metadata": {"ticker": "TXN", "form_type": "4", "filed_at": "2026-05-06", "accession_no": "0000097476-26-000133", "url": "https://www.sec.gov/Archives/edgar/data/97476/000009747626000133/xslF345X06/wk-form4_1778099209.xml", "ingested_at": "2026-05-11T22:37:39.084717", "transaction_date": "2026-05-05", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "is_10b5_1_planned": false, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:50.566905"}} +{"text": "AMON CRISTIANO R (President & Ceo) of QCOM sold 10,000 shares worth $1,850,000.00 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "QCOM", "form_type": "4", "filed_at": "2026-05-06", "accession_no": "0000804328-26-000065", "url": "https://www.sec.gov/Archives/edgar/data/804328/000080432826000065/xslF345X06/edgardoc.xml", "ingested_at": "2026-05-11T22:37:35.495275", "transaction_date": "2026-05-05", "tone_score": -1, "action_direction": "SELL", "is_10b5_1_planned": true, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:50.567260"}} +{"text": "Kurtz George (President And Ceo) of CRWD sold 1,902 shares worth $990,448.71 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "CRWD", "form_type": "4", "filed_at": "2026-05-11", "accession_no": "0001778564-26-000040", "url": "https://www.sec.gov/Archives/edgar/data/1535527/000177856426000040/xslF345X06/form4-05112026_080501.xml", "ingested_at": "2026-05-11T22:37:11.870639", "transaction_date": "2026-05-08", "tone_score": -1, "action_direction": "SELL", "is_10b5_1_planned": true, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:50.567837"}} +{"text": "Kurtz George (President And Ceo) of CRWD sold 3,098 shares worth $1,546,245.17 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "CRWD", "form_type": "4", "filed_at": "2026-05-11", "accession_no": "0001778564-26-000039", "url": "https://www.sec.gov/Archives/edgar/data/1535527/000177856426000039/xslF345X06/form4-05112026_080503.xml", "ingested_at": "2026-05-11T22:37:12.271114", "transaction_date": "2026-05-07", "tone_score": -1, "action_direction": "SELL", "is_10b5_1_planned": true, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:50.567899"}} +{"text": "Sentonas Michael (President) of CRWD sold 50,000 shares worth $23,900,000.20 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "CRWD", "form_type": "4", "filed_at": "2026-05-11", "accession_no": "0001968270-26-000009", "url": "https://www.sec.gov/Archives/edgar/data/1535527/000196827026000009/xslF345X06/form4-05112026_080501.xml", "ingested_at": "2026-05-11T22:37:12.485272", "transaction_date": "2026-05-07", "tone_score": -1, "action_direction": "SELL", "is_10b5_1_planned": true, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:50.569850"}} +{"text": "Kurtz George (President And Ceo) of CRWD sold 5,000 shares worth $2,356,624.05 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "CRWD", "form_type": "4", "filed_at": "2026-05-07", "accession_no": "0001778564-26-000036", "url": "https://www.sec.gov/Archives/edgar/data/1535527/000177856426000036/xslF345X06/form4-05072026_080501.xml", "ingested_at": "2026-05-11T22:37:12.702612", "transaction_date": "2026-05-05", "tone_score": -1, "action_direction": "SELL", "is_10b5_1_planned": true, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:50.569908"}} +{"text": "Jassy Andrew R (President And Ceo) of AMZN sold 31,352 shares worth $8,621,800.00 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "AMZN", "form_type": "4", "filed_at": "2026-05-06", "accession_no": "0001374545-26-000006", "url": "https://www.sec.gov/Archives/edgar/data/1018724/000137454526000006/xslF345X06/wk-form4_1778100121.xml", "ingested_at": "2026-05-11T22:37:05.181774", "transaction_date": "2026-05-04", "tone_score": -1, "action_direction": "SELL", "is_10b5_1_planned": true, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:50.569947"}} +{"text": "Busch Matthew C. (Vp, Finance & Cao) of AMGN acquired (via RSU vesting) 41 shares worth $0.00.", "metadata": {"ticker": "AMGN", "form_type": "4", "filed_at": "2026-05-11", "accession_no": "0000318154-26-000093", "url": "https://www.sec.gov/Archives/edgar/data/318154/000031815426000093/xslF345X06/form4.xml", "ingested_at": "2026-05-11T22:36:58.331094", "transaction_date": "2026-05-07", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "is_10b5_1_planned": false, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:50.570596"}} +{"text": "Santos Esteban (Evp, Operations) of AMGN acquired (via RSU vesting) 522 shares worth $0.00.", "metadata": {"ticker": "AMGN", "form_type": "4", "filed_at": "2026-05-11", "accession_no": "0000318154-26-000092", "url": "https://www.sec.gov/Archives/edgar/data/318154/000031815426000092/xslF345X06/form4.xml", "ingested_at": "2026-05-11T22:36:58.508716", "transaction_date": "2026-05-07", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "is_10b5_1_planned": false, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:50.570618"}} +{"text": "REESE DAVID M (Evp & Chief Technology Officer) of AMGN acquired (via RSU vesting) 556 shares worth $0.00.", "metadata": {"ticker": "AMGN", "form_type": "4", "filed_at": "2026-05-11", "accession_no": "0000318154-26-000091", "url": "https://www.sec.gov/Archives/edgar/data/318154/000031815426000091/xslF345X06/form4.xml", "ingested_at": "2026-05-11T22:36:58.702801", "transaction_date": "2026-05-07", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "is_10b5_1_planned": false, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:50.570641"}} +{"text": "Miller Derek (Svp, Human Resources) of AMGN acquired (via RSU vesting) 151 shares worth $0.00.", "metadata": {"ticker": "AMGN", "form_type": "4", "filed_at": "2026-05-11", "accession_no": "0000318154-26-000090", "url": "https://www.sec.gov/Archives/edgar/data/318154/000031815426000090/xslF345X06/form4.xml", "ingested_at": "2026-05-11T22:36:58.881137", "transaction_date": "2026-05-07", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "is_10b5_1_planned": false, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:50.570656"}} +{"text": "Khosla Rachna (Svp, Business Development) of AMGN acquired (via RSU vesting) 93 shares worth $0.00.", "metadata": {"ticker": "AMGN", "form_type": "4", "filed_at": "2026-05-11", "accession_no": "0000318154-26-000089", "url": "https://www.sec.gov/Archives/edgar/data/318154/000031815426000089/xslF345X06/form4.xml", "ingested_at": "2026-05-11T22:36:59.070453", "transaction_date": "2026-05-07", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "is_10b5_1_planned": false, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:50.570672"}} +{"text": "Grygiel Nancy A. (Svp & Cco) of AMGN acquired (via RSU vesting) 88 shares worth $0.00.", "metadata": {"ticker": "AMGN", "form_type": "4", "filed_at": "2026-05-11", "accession_no": "0000318154-26-000088", "url": "https://www.sec.gov/Archives/edgar/data/318154/000031815426000088/xslF345X06/form4.xml", "ingested_at": "2026-05-11T22:36:59.264038", "transaction_date": "2026-05-07", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "is_10b5_1_planned": false, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:50.570687"}} +{"text": "Griffith Peter H. (Evp & Cfo) of AMGN acquired (via RSU vesting) 556 shares worth $0.00.", "metadata": {"ticker": "AMGN", "form_type": "4", "filed_at": "2026-05-11", "accession_no": "0000318154-26-000087", "url": "https://www.sec.gov/Archives/edgar/data/318154/000031815426000087/xslF345X06/form4.xml", "ingested_at": "2026-05-11T22:36:59.458502", "transaction_date": "2026-05-07", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "is_10b5_1_planned": false, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:50.570700"}} +{"text": "Graham Jonathan P (Evp & Gen. Counsel & Sec.) of AMGN acquired (via RSU vesting) 499 shares worth $0.00.", "metadata": {"ticker": "AMGN", "form_type": "4", "filed_at": "2026-05-11", "accession_no": "0000318154-26-000086", "url": "https://www.sec.gov/Archives/edgar/data/318154/000031815426000086/xslF345X06/form4.xml", "ingested_at": "2026-05-11T22:36:59.657078", "transaction_date": "2026-05-07", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "is_10b5_1_planned": false, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:50.570713"}} +{"text": "Gordon Murdo (Evp, Global Commercial Ops) of AMGN acquired (via RSU vesting) 615 shares worth $0.00.", "metadata": {"ticker": "AMGN", "form_type": "4", "filed_at": "2026-05-11", "accession_no": "0000318154-26-000085", "url": "https://www.sec.gov/Archives/edgar/data/318154/000031815426000085/xslF345X06/form4.xml", "ingested_at": "2026-05-11T22:36:59.840662", "transaction_date": "2026-05-07", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "is_10b5_1_planned": false, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:50.570729"}} +{"text": "Bradway Robert A (Chairman, Ceo And President) of AMGN acquired (via RSU vesting) 2,079 shares worth $0.00.", "metadata": {"ticker": "AMGN", "form_type": "4", "filed_at": "2026-05-11", "accession_no": "0000318154-26-000084", "url": "https://www.sec.gov/Archives/edgar/data/318154/000031815426000084/xslF345X06/form4.xml", "ingested_at": "2026-05-11T22:37:00.037442", "transaction_date": "2026-05-07", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "is_10b5_1_planned": false, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:50.570742"}} +{"text": "Bradner James E. (Evp, Research And Development) of AMGN acquired (via RSU vesting) 446 shares worth $0.00.", "metadata": {"ticker": "AMGN", "form_type": "4", "filed_at": "2026-05-11", "accession_no": "0000318154-26-000083", "url": "https://www.sec.gov/Archives/edgar/data/318154/000031815426000083/xslF345X06/form4.xml", "ingested_at": "2026-05-11T22:37:00.214912", "transaction_date": "2026-05-07", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "is_10b5_1_planned": false, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:50.570755"}} +{"text": "Bradner James E. (Evp, Research And Development) of AMGN acquired (via RSU vesting) 3,744 shares worth $0.00.", "metadata": {"ticker": "AMGN", "form_type": "4", "filed_at": "2026-05-07", "accession_no": "0000318154-26-000082", "url": "https://www.sec.gov/Archives/edgar/data/318154/000031815426000082/xslF345X06/form4.xml", "ingested_at": "2026-05-11T22:37:00.395586", "transaction_date": "2026-05-05", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "is_10b5_1_planned": false, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:50.570768"}} +{"text": "Bradway Robert A (Chairman, Ceo And President) of AMGN acquired (via RSU vesting) 13,838 shares worth $0.00.", "metadata": {"ticker": "AMGN", "form_type": "4", "filed_at": "2026-05-07", "accession_no": "0000318154-26-000081", "url": "https://www.sec.gov/Archives/edgar/data/318154/000031815426000081/xslF345X06/form4.xml", "ingested_at": "2026-05-11T22:37:00.585427", "transaction_date": "2026-05-05", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "is_10b5_1_planned": false, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:50.570782"}} +{"text": "Busch Matthew C. (Vp, Finance & Cao) of AMGN acquired (via RSU vesting) 505 shares worth $0.00.", "metadata": {"ticker": "AMGN", "form_type": "4", "filed_at": "2026-05-07", "accession_no": "0000318154-26-000080", "url": "https://www.sec.gov/Archives/edgar/data/318154/000031815426000080/xslF345X06/form4.xml", "ingested_at": "2026-05-11T22:37:00.787922", "transaction_date": "2026-05-05", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "is_10b5_1_planned": false, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:50.570795"}} +{"text": "Gordon Murdo (Evp, Global Commercial Ops) of AMGN acquired (via RSU vesting) 4,142 shares worth $0.00.", "metadata": {"ticker": "AMGN", "form_type": "4", "filed_at": "2026-05-07", "accession_no": "0000318154-26-000079", "url": "https://www.sec.gov/Archives/edgar/data/318154/000031815426000079/xslF345X06/form4.xml", "ingested_at": "2026-05-11T22:37:00.966680", "transaction_date": "2026-05-05", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "is_10b5_1_planned": false, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:50.570809"}} +{"text": "Graham Jonathan P (Evp & Gen. Counsel & Sec.) of AMGN acquired (via RSU vesting) 3,017 shares worth $0.00.", "metadata": {"ticker": "AMGN", "form_type": "4", "filed_at": "2026-05-07", "accession_no": "0000318154-26-000078", "url": "https://www.sec.gov/Archives/edgar/data/318154/000031815426000078/xslF345X06/form4.xml", "ingested_at": "2026-05-11T22:37:01.160829", "transaction_date": "2026-05-05", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "is_10b5_1_planned": false, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:50.570825"}} +{"text": "Griffith Peter H. (Evp & Cfo) of AMGN acquired (via RSU vesting) 4,142 shares worth $0.00.", "metadata": {"ticker": "AMGN", "form_type": "4", "filed_at": "2026-05-07", "accession_no": "0000318154-26-000077", "url": "https://www.sec.gov/Archives/edgar/data/318154/000031815426000077/xslF345X06/form4.xml", "ingested_at": "2026-05-11T22:37:01.338601", "transaction_date": "2026-05-05", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "is_10b5_1_planned": false, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:50.570838"}} +{"text": "Grygiel Nancy A. (Svp & Cco) of AMGN acquired (via RSU vesting) 561 shares worth $0.00.", "metadata": {"ticker": "AMGN", "form_type": "4", "filed_at": "2026-05-07", "accession_no": "0000318154-26-000076", "url": "https://www.sec.gov/Archives/edgar/data/318154/000031815426000076/xslF345X06/form4.xml", "ingested_at": "2026-05-11T22:37:01.533093", "transaction_date": "2026-05-05", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "is_10b5_1_planned": false, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:50.570854"}} +{"text": "Khosla Rachna (Svp, Business Development) of AMGN acquired (via RSU vesting) 579 shares worth $0.00.", "metadata": {"ticker": "AMGN", "form_type": "4", "filed_at": "2026-05-07", "accession_no": "0000318154-26-000075", "url": "https://www.sec.gov/Archives/edgar/data/318154/000031815426000075/xslF345X06/form4.xml", "ingested_at": "2026-05-11T22:37:01.710754", "transaction_date": "2026-05-05", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "is_10b5_1_planned": false, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:50.570867"}} +{"text": "Miller Derek (Svp, Human Resources) of AMGN acquired (via RSU vesting) 1,033 shares worth $0.00.", "metadata": {"ticker": "AMGN", "form_type": "4", "filed_at": "2026-05-07", "accession_no": "0000318154-26-000074", "url": "https://www.sec.gov/Archives/edgar/data/318154/000031815426000074/xslF345X06/form4.xml", "ingested_at": "2026-05-11T22:37:01.904601", "transaction_date": "2026-05-05", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "is_10b5_1_planned": false, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:50.570879"}} +{"text": "REESE DAVID M (Evp & Chief Technology Officer) of AMGN acquired (via RSU vesting) 3,366 shares worth $0.00.", "metadata": {"ticker": "AMGN", "form_type": "4", "filed_at": "2026-05-07", "accession_no": "0000318154-26-000073", "url": "https://www.sec.gov/Archives/edgar/data/318154/000031815426000073/xslF345X06/form4.xml", "ingested_at": "2026-05-11T22:37:02.082819", "transaction_date": "2026-05-05", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "is_10b5_1_planned": false, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:50.570893"}} +{"text": "Santos Esteban (Evp, Operations) of AMGN acquired (via RSU vesting) 3,157 shares worth $0.00.", "metadata": {"ticker": "AMGN", "form_type": "4", "filed_at": "2026-05-07", "accession_no": "0000318154-26-000072", "url": "https://www.sec.gov/Archives/edgar/data/318154/000031815426000072/xslF345X06/form4.xml", "ingested_at": "2026-05-11T22:37:02.276113", "transaction_date": "2026-05-05", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "is_10b5_1_planned": false, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:50.570905"}} +{"text": "ISHRAK OMAR (Other) of AMGN acquired (via RSU vesting) 106 shares worth $0.00.", "metadata": {"ticker": "AMGN", "form_type": "4", "filed_at": "2026-05-07", "accession_no": "0000318154-26-000071", "url": "https://www.sec.gov/Archives/edgar/data/318154/000031815426000071/xslF345X06/form4.xml", "ingested_at": "2026-05-11T22:37:02.477437", "transaction_date": "2026-05-05", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "is_10b5_1_planned": false, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:50.570920"}} +{"text": "HOLLEY CHARLES M (Other) of AMGN acquired (via RSU vesting) 129 shares worth $0.00.", "metadata": {"ticker": "AMGN", "form_type": "4", "filed_at": "2026-05-07", "accession_no": "0000318154-26-000070", "url": "https://www.sec.gov/Archives/edgar/data/318154/000031815426000070/xslF345X06/form4.xml", "ingested_at": "2026-05-11T22:37:02.655785", "transaction_date": "2026-05-05", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "is_10b5_1_planned": false, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:50.570932"}} +{"text": "Drake Michael V (Other) of AMGN acquired (via RSU vesting) 80 shares worth $0.00.", "metadata": {"ticker": "AMGN", "form_type": "4", "filed_at": "2026-05-07", "accession_no": "0000318154-26-000069", "url": "https://www.sec.gov/Archives/edgar/data/318154/000031815426000069/xslF345X06/form4.xml", "ingested_at": "2026-05-11T22:37:02.835515", "transaction_date": "2026-05-05", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "is_10b5_1_planned": false, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:50.570944"}} +{"text": "SZKUTAK THOMAS J (Other) of INTU acquired (via RSU vesting) 63 shares worth $0.00.", "metadata": {"ticker": "INTU", "form_type": "4", "filed_at": "2026-05-11", "accession_no": "0001628280-26-033701", "url": "https://www.sec.gov/Archives/edgar/data/896878/000162828026033701/xslF345X06/wk-form4_1778535954.xml", "ingested_at": "2026-05-11T22:37:21.996531", "transaction_date": "2026-05-07", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "is_10b5_1_planned": false, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:50.571050"}} +{"text": "DALZELL RICHARD L (Other) of INTU acquired (via RSU vesting) 77 shares worth $0.00.", "metadata": {"ticker": "INTU", "form_type": "4", "filed_at": "2026-05-11", "accession_no": "0001628280-26-033698", "url": "https://www.sec.gov/Archives/edgar/data/896878/000162828026033698/xslF345X06/wk-form4_1778535882.xml", "ingested_at": "2026-05-11T22:37:22.182774", "transaction_date": "2026-05-07", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "is_10b5_1_planned": false, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:50.571064"}} +{"text": "SWAN ROBERT HOLMES (Other) of ADP bought 3,619 shares worth $745,694.95.", "metadata": {"ticker": "ADP", "form_type": "4", "filed_at": "2026-05-11", "accession_no": "0001225208-26-005087", "url": "https://www.sec.gov/Archives/edgar/data/8670/000122520826005087/xslF345X06/doc4.xml", "ingested_at": "2026-05-11T22:36:56.483373", "transaction_date": "2026-05-07", "tone_score": 3, "action_direction": "BUY", "is_10b5_1_planned": true, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:50.571090"}} +{"text": "Michaud Brian L. (Executive Vp) of ADP sold 848 shares worth $179,886.24 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "ADP", "form_type": "4", "filed_at": "2026-05-11", "accession_no": "0001225208-26-005086", "url": "https://www.sec.gov/Archives/edgar/data/8670/000122520826005086/xslF345X06/doc4.xml", "ingested_at": "2026-05-11T22:36:56.777490", "transaction_date": "2026-05-08", "tone_score": -1, "action_direction": "SELL", "is_10b5_1_planned": true, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:50.571105"}} +{"text": "Gilead Sciences, Inc. announced its financial results for the quarter ended March 31, 2026, on May 7, 2026. The report includes both GAAP and non-GAAP financial information, with a reconciliation provided in the attached press release.", "metadata": {"ticker": "GILD", "form_type": "8-K", "filed_at": "2026-05-07", "accession_no": "0000882095-26-000022", "url": "https://www.sec.gov/Archives/edgar/data/882095/000088209526000022/gild-20260507.htm", "ingested_at": "2026-05-11T22:37:14.844002", "transaction_date": "2026-05-07", "tone_score": 2, "action_direction": "NONE", "is_10b5_1_planned": false, "topics": ["Financial Results", "GAAP", "Non-GAAP", "Earnings Announcement"], "processed_at": "2026-05-11T22:37:51.948328"}} +{"text": "LEVINSON ARTHUR D (Director) of AAPL sold 255,000 shares worth $71,189,722.31.", "metadata": {"ticker": "AAPL", "form_type": "4", "filed_at": "2026-05-08", "accession_no": "0001140361-26-020298", "url": "https://www.sec.gov/Archives/edgar/data/320193/000114036126020298/xslF345X06/form4.xml", "ingested_at": "2026-05-11T22:36:55.245479", "transaction_date": "2026-05-06", "tone_score": -3, "action_direction": "SELL", "is_10b5_1_planned": false, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:51.948375"}} +{"text": "LOEB GARY (Evp & Chief Legal And Complian) of ISRG sold 400 shares worth $178,780.00 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "ISRG", "form_type": "4", "filed_at": "2026-05-11", "accession_no": "0001561733-26-000010", "url": "https://www.sec.gov/Archives/edgar/data/1035267/000156173326000010/xslF345X06/edgardoc.xml", "ingested_at": "2026-05-11T22:37:22.903703", "transaction_date": "2026-05-11", "tone_score": -1, "action_direction": "SELL", "is_10b5_1_planned": true, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:51.948394"}} +{"text": "Automatic Data Processing, Inc. executed an Underwriting Agreement to issue $1 billion in 5.000% senior notes due 2036. The notes were registered with the SEC and issued on May 7, 2026, under an Indenture with U.S. Bank Trust Company as trustee.", "metadata": {"ticker": "ADP", "form_type": "8-K", "filed_at": "2026-05-07", "accession_no": "0001193125-26-212131", "url": "https://www.sec.gov/Archives/edgar/data/8670/000119312526212131/d932558d8k.htm", "ingested_at": "2026-05-11T22:36:57.009840", "transaction_date": "2026-05-04", "tone_score": 2, "action_direction": "NONE", "is_10b5_1_planned": false, "topics": ["Underwriting Agreement", "Senior Notes", "Securities Registration"], "processed_at": "2026-05-11T22:37:52.285513"}} +{"text": "Adams Mark (Other) of CDNS acquired (via RSU vesting) 2,272 shares worth $0.00.", "metadata": {"ticker": "CDNS", "form_type": "4", "filed_at": "2026-05-11", "accession_no": "0000813672-26-000065", "url": "https://www.sec.gov/Archives/edgar/data/813672/000081367226000065/xslF345X06/wk-form4_1778534540.xml", "ingested_at": "2026-05-11T22:37:07.913348", "transaction_date": "2026-05-07", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "is_10b5_1_planned": false, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:52.285577"}} +{"text": "CHEW LEWIS (Other) of CDNS acquired (via RSU vesting) 714 shares worth $0.00.", "metadata": {"ticker": "CDNS", "form_type": "4", "filed_at": "2026-05-11", "accession_no": "0000813672-26-000064", "url": "https://www.sec.gov/Archives/edgar/data/813672/000081367226000064/xslF345X06/wk-form4_1778534535.xml", "ingested_at": "2026-05-11T22:37:08.131158", "transaction_date": "2026-05-07", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "is_10b5_1_planned": false, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:52.285595"}} +{"text": "Brennan Ita M (Other) of CDNS acquired (via RSU vesting) 714 shares worth $0.00.", "metadata": {"ticker": "CDNS", "form_type": "4", "filed_at": "2026-05-11", "accession_no": "0000813672-26-000063", "url": "https://www.sec.gov/Archives/edgar/data/813672/000081367226000063/xslF345X06/wk-form4_1778534529.xml", "ingested_at": "2026-05-11T22:37:08.356828", "transaction_date": "2026-05-07", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "is_10b5_1_planned": false, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:52.285610"}} +{"text": "Krakauer Mary L (Other) of CDNS acquired (via RSU vesting) 714 shares worth $0.00.", "metadata": {"ticker": "CDNS", "form_type": "4", "filed_at": "2026-05-11", "accession_no": "0000813672-26-000062", "url": "https://www.sec.gov/Archives/edgar/data/813672/000081367226000062/xslF345X06/wk-form4_1778534523.xml", "ingested_at": "2026-05-11T22:37:08.584428", "transaction_date": "2026-05-07", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "is_10b5_1_planned": false, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:52.285624"}} +{"text": "GAVRIELOV MOSHE (Other) of CDNS acquired (via RSU vesting) 714 shares worth $0.00.", "metadata": {"ticker": "CDNS", "form_type": "4", "filed_at": "2026-05-11", "accession_no": "0000813672-26-000061", "url": "https://www.sec.gov/Archives/edgar/data/813672/000081367226000061/xslF345X06/wk-form4_1778534517.xml", "ingested_at": "2026-05-11T22:37:08.813976", "transaction_date": "2026-05-07", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "is_10b5_1_planned": false, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:52.285638"}} +{"text": "SANGIOVANNI VINCENTELLI ALBERTO (Other) of CDNS acquired (via RSU vesting) 714 shares worth $0.00.", "metadata": {"ticker": "CDNS", "form_type": "4", "filed_at": "2026-05-11", "accession_no": "0000813672-26-000060", "url": "https://www.sec.gov/Archives/edgar/data/813672/000081367226000060/xslF345X06/wk-form4_1778534511.xml", "ingested_at": "2026-05-11T22:37:09.000726", "transaction_date": "2026-05-07", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "is_10b5_1_planned": false, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:52.285651"}} +{"text": "Van den hove Luc (Other) of CDNS acquired (via RSU vesting) 714 shares worth $0.00.", "metadata": {"ticker": "CDNS", "form_type": "4", "filed_at": "2026-05-11", "accession_no": "0000813672-26-000059", "url": "https://www.sec.gov/Archives/edgar/data/813672/000081367226000059/xslF345X06/wk-form4_1778534505.xml", "ingested_at": "2026-05-11T22:37:09.196028", "transaction_date": "2026-05-07", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "is_10b5_1_planned": false, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:52.285662"}} +{"text": "PLUMMER JAMES D (Other) of CDNS acquired (via RSU vesting) 2,272 shares worth $0.00.", "metadata": {"ticker": "CDNS", "form_type": "4", "filed_at": "2026-05-11", "accession_no": "0000813672-26-000058", "url": "https://www.sec.gov/Archives/edgar/data/813672/000081367226000058/xslF345X06/wk-form4_1778534499.xml", "ingested_at": "2026-05-11T22:37:09.419909", "transaction_date": "2026-05-07", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "is_10b5_1_planned": false, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:52.285675"}} +{"text": "Liuson Julia (Other) of CDNS acquired (via RSU vesting) 714 shares worth $0.00.", "metadata": {"ticker": "CDNS", "form_type": "4", "filed_at": "2026-05-11", "accession_no": "0000813672-26-000057", "url": "https://www.sec.gov/Archives/edgar/data/813672/000081367226000057/xslF345X06/wk-form4_1778534494.xml", "ingested_at": "2026-05-11T22:37:09.628465", "transaction_date": "2026-05-07", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "is_10b5_1_planned": false, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:52.285686"}} +{"text": "SOHN YOUNG (Other) of CDNS acquired (via RSU vesting) 714 shares worth $0.00.", "metadata": {"ticker": "CDNS", "form_type": "4", "filed_at": "2026-05-11", "accession_no": "0000813672-26-000056", "url": "https://www.sec.gov/Archives/edgar/data/813672/000081367226000056/xslF345X06/wk-form4_1778534489.xml", "ingested_at": "2026-05-11T22:37:09.879407", "transaction_date": "2026-05-07", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "is_10b5_1_planned": false, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:52.285698"}} +{"text": "Scannell Paul (Sr. Vice President) of CDNS acquired (via RSU vesting) 619 shares worth $0.00.", "metadata": {"ticker": "CDNS", "form_type": "4", "filed_at": "2026-05-08", "accession_no": "0000813672-26-000052", "url": "https://www.sec.gov/Archives/edgar/data/813672/000081367226000052/xslF345X06/wk-form4_1778276711.xml", "ingested_at": "2026-05-11T22:37:10.060472", "transaction_date": "2026-05-06", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "is_10b5_1_planned": false, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:52.285709"}} +{"text": "SOHN YOUNG (Other) of CDNS acquired (via RSU vesting) 72 shares worth $0.00.", "metadata": {"ticker": "CDNS", "form_type": "4", "filed_at": "2026-05-08", "accession_no": "0000813672-26-000051", "url": "https://www.sec.gov/Archives/edgar/data/813672/000081367226000051/xslF345X06/wk-form4_1778276703.xml", "ingested_at": "2026-05-11T22:37:10.259929", "transaction_date": "2026-05-06", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "is_10b5_1_planned": false, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:52.285721"}} +{"text": "WALL JOHN M (Sr. Vp & Cfo) of CDNS sold 5,000 shares worth $1,743,564.07 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "CDNS", "form_type": "4", "filed_at": "2026-05-07", "accession_no": "0000813672-26-000050", "url": "https://www.sec.gov/Archives/edgar/data/813672/000081367226000050/xslF345X06/wk-form4_1778190521.xml", "ingested_at": "2026-05-11T22:37:10.450915", "transaction_date": "2026-05-05", "tone_score": -1, "action_direction": "SELL", "is_10b5_1_planned": true, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:52.285736"}} +{"text": "Peters Gregory K (Co-Ceo) of NFLX sold 28,521 shares worth $2,422,421.45.", "metadata": {"ticker": "NFLX", "form_type": "4", "filed_at": "2026-05-07", "accession_no": "0001583109-26-000002", "url": "https://www.sec.gov/Archives/edgar/data/1065280/000158310926000002/xslF345X06/wk-form4_1778191869.xml", "ingested_at": "2026-05-11T22:37:29.266388", "transaction_date": "2026-05-06", "tone_score": -5, "action_direction": "SELL", "is_10b5_1_planned": false, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:52.285769"}} +{"text": "Neumann Spencer Adam (Chief Financial Officer) of NFLX sold 9,253 shares worth $823,074.71.", "metadata": {"ticker": "NFLX", "form_type": "4", "filed_at": "2026-05-07", "accession_no": "0001065280-26-000172", "url": "https://www.sec.gov/Archives/edgar/data/1065280/000106528026000172/xslF345X06/wk-form4_1778191792.xml", "ingested_at": "2026-05-11T22:37:29.468143", "transaction_date": "2026-05-07", "tone_score": -5, "action_direction": "SELL", "is_10b5_1_planned": false, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:52.285783"}} +{"text": "Goldsmith Andrea Jo (Other) of INTC acquired (via RSU vesting) 12,552 shares worth $0.00.", "metadata": {"ticker": "INTC", "form_type": "4", "filed_at": "2026-05-11", "accession_no": "0000050863-26-000108", "url": "https://www.sec.gov/Archives/edgar/data/50863/000005086326000108/xslF345X06/form4.xml", "ingested_at": "2026-05-11T22:37:18.298051", "transaction_date": "2026-05-07", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "is_10b5_1_planned": false, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:52.285913"}} +{"text": "Yeary Frank D (Other) of INTC acquired (via RSU vesting) 26,611 shares worth $0.00.", "metadata": {"ticker": "INTC", "form_type": "4", "filed_at": "2026-05-08", "accession_no": "0000050863-26-000098", "url": "https://www.sec.gov/Archives/edgar/data/50863/000005086326000098/xslF345X06/form4.xml", "ingested_at": "2026-05-11T22:37:18.491915", "transaction_date": "2026-05-07", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "is_10b5_1_planned": false, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:52.285924"}} +{"text": "WEISLER DION J (Other) of INTC acquired (via RSU vesting) 12,552 shares worth $0.00.", "metadata": {"ticker": "INTC", "form_type": "4", "filed_at": "2026-05-08", "accession_no": "0000050863-26-000097", "url": "https://www.sec.gov/Archives/edgar/data/50863/000005086326000097/xslF345X06/form4.xml", "ingested_at": "2026-05-11T22:37:18.686777", "transaction_date": "2026-05-07", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "is_10b5_1_planned": false, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:52.285935"}} +{"text": "Smith Stacy J (Other) of INTC acquired (via RSU vesting) 12,552 shares worth $0.00.", "metadata": {"ticker": "INTC", "form_type": "4", "filed_at": "2026-05-08", "accession_no": "0000050863-26-000096", "url": "https://www.sec.gov/Archives/edgar/data/50863/000005086326000096/xslF345X06/form4.xml", "ingested_at": "2026-05-11T22:37:18.874524", "transaction_date": "2026-05-07", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "is_10b5_1_planned": false, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:52.285946"}} +{"text": "Smith Gregory D (Other) of INTC acquired (via RSU vesting) 12,552 shares worth $0.00.", "metadata": {"ticker": "INTC", "form_type": "4", "filed_at": "2026-05-08", "accession_no": "0000050863-26-000095", "url": "https://www.sec.gov/Archives/edgar/data/50863/000005086326000095/xslF345X06/form4.xml", "ingested_at": "2026-05-11T22:37:19.054704", "transaction_date": "2026-05-07", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "is_10b5_1_planned": false, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:52.285956"}} +{"text": "Sanghi Steve (Other) of INTC acquired (via RSU vesting) 12,552 shares worth $0.00.", "metadata": {"ticker": "INTC", "form_type": "4", "filed_at": "2026-05-08", "accession_no": "0000050863-26-000094", "url": "https://www.sec.gov/Archives/edgar/data/50863/000005086326000094/xslF345X06/form4.xml", "ingested_at": "2026-05-11T22:37:19.247759", "transaction_date": "2026-05-07", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "is_10b5_1_planned": false, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:52.285967"}} +{"text": "Meurice Eric (Other) of INTC acquired (via RSU vesting) 12,552 shares worth $0.00.", "metadata": {"ticker": "INTC", "form_type": "4", "filed_at": "2026-05-08", "accession_no": "0000050863-26-000093", "url": "https://www.sec.gov/Archives/edgar/data/50863/000005086326000093/xslF345X06/form4.xml", "ingested_at": "2026-05-11T22:37:19.443941", "transaction_date": "2026-05-07", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "is_10b5_1_planned": false, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:52.285977"}} +{"text": "Henry Alyssa (Other) of INTC acquired (via RSU vesting) 12,552 shares worth $0.00.", "metadata": {"ticker": "INTC", "form_type": "4", "filed_at": "2026-05-08", "accession_no": "0000050863-26-000092", "url": "https://www.sec.gov/Archives/edgar/data/50863/000005086326000092/xslF345X06/form4.xml", "ingested_at": "2026-05-11T22:37:19.640484", "transaction_date": "2026-05-07", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "is_10b5_1_planned": false, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:52.285987"}} +{"text": "GOETZ JAMES J (Other) of INTC acquired (via RSU vesting) 12,552 shares worth $0.00.", "metadata": {"ticker": "INTC", "form_type": "4", "filed_at": "2026-05-08", "accession_no": "0000050863-26-000089", "url": "https://www.sec.gov/Archives/edgar/data/50863/000005086326000089/xslF345X06/form4.xml", "ingested_at": "2026-05-11T22:37:19.820485", "transaction_date": "2026-05-07", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "is_10b5_1_planned": false, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:52.285998"}} +{"text": "BARRATT CRAIG H (Other) of INTC acquired (via RSU vesting) 2,730 shares worth $0.00.", "metadata": {"ticker": "INTC", "form_type": "4", "filed_at": "2026-05-08", "accession_no": "0000050863-26-000088", "url": "https://www.sec.gov/Archives/edgar/data/50863/000005086326000088/xslF345X06/form4.xml", "ingested_at": "2026-05-11T22:37:20.026633", "transaction_date": "2026-05-07", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "is_10b5_1_planned": false, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:52.286009"}} +{"text": "Gibbs David W (Other) of PEP acquired (via RSU vesting) 1,534 shares worth $0.00.", "metadata": {"ticker": "PEP", "form_type": "4", "filed_at": "2026-05-08", "accession_no": "0001628280-26-032951", "url": "https://www.sec.gov/Archives/edgar/data/77476/000162828026032951/xslF345X06/wk-form4_1778272270.xml", "ingested_at": "2026-05-11T22:37:34.239793", "transaction_date": "2026-05-06", "tone_score": 0, "action_direction": "ACQUIRE/VEST", "is_10b5_1_planned": false, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:52.286031"}} +{"text": "NVIDIA Corporation appointed Suzanne Nora Johnson to its Board of Directors and the Audit Committee, effective July 13, 2026. She will receive an initial equity grant and a pro-rated annual cash retainer as part of her compensation package.", "metadata": {"ticker": "NVDA", "form_type": "8-K", "filed_at": "2026-05-08", "accession_no": "0001045810-26-000028", "url": "https://www.sec.gov/Archives/edgar/data/1045810/000104581026000028/nvda-20260507.htm", "ingested_at": "2026-05-11T22:37:33.193639", "transaction_date": "2026-07-13", "tone_score": 2, "action_direction": "NONE", "is_10b5_1_planned": false, "topics": ["Board Appointment", "Equity Compensation", "Corporate Governance"], "processed_at": "2026-05-11T22:37:52.474394"}} +{"text": "MELI issued a press release on May 7, 2026, detailing its results of operations and financial condition. The press release is included as Exhibit 99.1 in the filing.", "metadata": {"ticker": "MELI", "form_type": "8-K", "filed_at": "2026-05-07", "accession_no": "0001099590-26-000014", "url": "https://www.sec.gov/Archives/edgar/data/1099590/000109959026000014/meli-20260507.htm", "ingested_at": "2026-05-11T22:37:25.716627", "transaction_date": "2026-05-07", "tone_score": 0, "action_direction": "NONE", "is_10b5_1_planned": false, "topics": ["Financial Results", "Press Release", "SEC Filing"], "processed_at": "2026-05-11T22:37:53.285155"}} +{"text": "KLA Corporation announced a ten-for-one forward stock split and a cash dividend of $2.30 per share. The stock split will take effect on June 11, 2026, while the dividend will be payable on June 2, 2026.", "metadata": {"ticker": "KLAC", "form_type": "8-K", "filed_at": "2026-05-07", "accession_no": "0001193125-26-212093", "url": "https://www.sec.gov/Archives/edgar/data/319201/000119312526212093/d116682d8k.htm", "ingested_at": "2026-05-11T22:37:23.647330", "transaction_date": "2026-05-07", "tone_score": 3, "action_direction": "NONE", "is_10b5_1_planned": false, "topics": ["Stock Split", "Dividend", "Corporate Actions"], "processed_at": "2026-05-11T22:37:53.500993"}} +{"text": "Alphabet Inc. has successfully closed its public offerings of €9 billion in euro-denominated senior notes and C$9.5 billion in Canadian dollar-denominated senior notes. The offerings include various notes with different interest rates and maturity dates, as detailed in the accompanying exhibits.", "metadata": {"ticker": "GOOGL", "form_type": "8-K", "filed_at": "2026-05-11", "accession_no": "0001193125-26-216986", "url": "https://www.sec.gov/Archives/edgar/data/1652044/000119312526216986/d109021d8k.htm", "ingested_at": "2026-05-11T22:37:17.111657", "transaction_date": "2026-05-11", "tone_score": 3, "action_direction": "NONE", "is_10b5_1_planned": false, "topics": ["Debt Offering", "Senior Notes", "Financial Instruments"], "processed_at": "2026-05-11T22:37:55.017800"}} +{"text": "Olivan Javier (Chief Operating Officer) of META sold 1,555 shares worth $945,035.70 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "META", "form_type": "4", "filed_at": "2026-05-06", "accession_no": "0000950103-26-006913", "url": "https://www.sec.gov/Archives/edgar/data/1326801/000095010326006913/xslF345X06/ownership.xml", "ingested_at": "2026-05-11T22:37:26.399339", "transaction_date": "2026-05-04", "tone_score": -1, "action_direction": "SELL", "is_10b5_1_planned": true, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:55.017867"}} +{"text": "BREWER BRADY (Ceo, International) of SBUX sold 2,229 shares worth $233,621.49 under a pre-planned 10b5-1 trading plan.", "metadata": {"ticker": "SBUX", "form_type": "4", "filed_at": "2026-05-07", "accession_no": "0000829224-26-000084", "url": "https://www.sec.gov/Archives/edgar/data/829224/000082922426000084/xslF345X06/form4.xml", "ingested_at": "2026-05-11T22:37:36.869480", "transaction_date": "2026-05-05", "tone_score": -1, "action_direction": "SELL", "is_10b5_1_planned": true, "topics": ["Insider Trading", "Form 4"], "processed_at": "2026-05-11T22:37:55.017902"}} +{"text": "Booking Holdings Inc. executed an Officers’ Certificate for the sale of $750 million in 5.375% Senior Notes due 2036. The notes will mature on May 7, 2036, and the company has the option to redeem them prior to maturity under certain conditions.", "metadata": {"ticker": "BKNG", "form_type": "8-K", "filed_at": "2026-05-07", "accession_no": "0001104659-26-057239", "url": "https://www.sec.gov/Archives/edgar/data/1075531/000110465926057239/tm2613920d1_8k.htm", "ingested_at": "2026-05-11T22:37:07.166695", "transaction_date": "2026-05-07", "tone_score": 2, "action_direction": "NONE", "is_10b5_1_planned": false, "topics": ["Senior Notes", "Financial Obligation", "Debt Offering"], "processed_at": "2026-05-11T22:37:55.561005"}} +{"text": "Monster Beverage Corporation announced its financial results for the first quarter ended March 31, 2026, through a press release on May 7, 2026. The company will also conduct a conference call to discuss these results, which will be available for investors to access online.", "metadata": {"ticker": "MNST", "form_type": "8-K", "filed_at": "2026-05-07", "accession_no": "0001104659-26-057188", "url": "https://www.sec.gov/Archives/edgar/data/865752/000110465926057188/tm2613885d1_8k.htm", "ingested_at": "2026-05-11T22:37:27.526807", "transaction_date": "2026-05-07", "tone_score": 2, "action_direction": "NONE", "is_10b5_1_planned": false, "topics": ["Financial Results", "Investor Relations", "Conference Call"], "processed_at": "2026-05-11T22:37:56.833633"}} +{"text": "PepsiCo held its 2026 Annual Meeting of Shareholders on May 6, 2026, where shareholders elected 13 directors and ratified KPMG LLP as the independent auditor for the fiscal year. Additionally, shareholders approved executive compensation and voted against proposals for an independent board chair and reports on human rights and animal treatment oversight.", "metadata": {"ticker": "PEP", "form_type": "8-K", "filed_at": "2026-05-08", "accession_no": "0000077476-26-000024", "url": "https://www.sec.gov/Archives/edgar/data/77476/000007747626000024/pep-20260506.htm", "ingested_at": "2026-05-11T22:37:34.418430", "transaction_date": "2026-05-06", "tone_score": 2, "action_direction": "NONE", "is_10b5_1_planned": false, "topics": ["Shareholder Meeting", "Director Elections", "Executive Compensation", "Corporate Governance"], "processed_at": "2026-05-11T22:37:57.536796"}} +{"text": "Booking Holdings Inc. has executed three Officers' Certificates in connection with the sale of €1.9 billion in Senior Notes, which include 3.500% Notes due 2030, 4.000% Notes due 2034, and 4.500% Notes due 2039. The Senior Notes are general senior unsecured obligations of the Company, with interest payments beginning in 2027.", "metadata": {"ticker": "BKNG", "form_type": "8-K", "filed_at": "2026-05-11", "accession_no": "0001104659-26-058730", "url": "https://www.sec.gov/Archives/edgar/data/1075531/000110465926058730/tm2614215d1_8k.htm", "ingested_at": "2026-05-11T22:37:06.856212", "transaction_date": "2026-05-11", "tone_score": 3, "action_direction": "NONE", "is_10b5_1_planned": false, "topics": ["Senior Notes", "Debt Issuance", "Financial Agreement"], "processed_at": "2026-05-11T22:37:59.099234"}} From 197748e57795a6a4bc8e08313e9d356ee3845ac1 Mon Sep 17 00:00:00 2001 From: "Xinxin(Maxine)" Date: Wed, 13 May 2026 22:42:32 -0400 Subject: [PATCH 3/4] Remove merge conflict markers and update date Resolve leftover merge conflict markers in Data/Agent_Context/latest_macro_context.md, update the generated date to 2026-05-12, and keep the consolidated macro economic indicators. This cleans up duplicated/stale market data and conflicting sections so the file is consistent for downstream use. --- Data/Agent_Context/latest_macro_context.md | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/Data/Agent_Context/latest_macro_context.md b/Data/Agent_Context/latest_macro_context.md index d2b6632..54dee59 100644 --- a/Data/Agent_Context/latest_macro_context.md +++ b/Data/Agent_Context/latest_macro_context.md @@ -1,5 +1,4 @@ ## 📊 Macro & Market Daily Snapshot -<<<<<<< Updated upstream > **Generated on:** 2026-05-12 > **Note to LLM:** Macro indicators lag behind market data. Use YoY/MoM changes to gauge economic momentum. @@ -14,20 +13,4 @@ ### 🏛️ Macro Economic Indicators (Lagging) - **[Interest Rate] Effective Federal Funds Rate (FEDFUNDS)**: 3.64 % | MoM: **+0.00%** | YoY: **-15.94%** *(Observed: 2026-04-01)* - **[Inflation] CPI (Inflation) (CPIAUCSL)**: 332.41 Index | MoM: **+0.64%** | YoY: **+3.95%** *(Observed: 2026-04-01)* -======= -> **Generated on:** 2026-05-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)**: 7398.93 Points | Change: **+0.84%** *(Observed: 2026-05-08)* -- **[Equity Index] NASDAQ (^IXIC)**: 26247.08 Points | Change: **+1.71%** *(Observed: 2026-05-08)* -- **[Volatility Index] VIX Volatility (^VIX)**: 17.19 Points | Change: **+0.64%** *(Observed: 2026-05-08)* -- **[Currency] US Dollar Index (DX-Y.NYB)**: 97.84 Points | Change: **-0.42%** *(Observed: 2026-05-08)* -- **[Commodity ETF] Gold ETF (GLD)**: 433.77 USD | Change: **+0.48%** *(Observed: 2026-05-08)* -- **[Commodity ETF] Silver ETF (SLV)**: 73.01 USD | Change: **+1.97%** *(Observed: 2026-05-08)* - -### 🏛️ Macro Economic Indicators (Lagging) -- **[Interest Rate] Effective Federal Funds Rate (FEDFUNDS)**: 3.64 % | MoM: **+0.00%** | YoY: **-15.94%** *(Observed: 2026-04-01)* -- **[Inflation] CPI (Inflation) (CPIAUCSL)**: 330.29 Index | MoM: **+0.87%** | YoY: **+3.32%** *(Observed: 2026-03-01)* ->>>>>>> Stashed changes - **[Labor Market] Unemployment Rate (UNRATE)**: 4.30 % | MoM: **+0.00%** | YoY: **+2.38%** *(Observed: 2026-04-01)* \ No newline at end of file From c45944266fe025eb59b2063154f4a9e62eee230d Mon Sep 17 00:00:00 2001 From: Maxine Date: Sun, 17 May 2026 20:23:15 -0400 Subject: [PATCH 4/4] Update documentation for Time_Adapter and Time_Schema_Audit Clarified documentation structure for Time_Adapter and Time_Schema_Audit files, including recommendations for folder organization and ownership separation. --- docs/Data_source_docs/Time_Schema_Audit.md | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/docs/Data_source_docs/Time_Schema_Audit.md b/docs/Data_source_docs/Time_Schema_Audit.md index 84beef6..35c63c5 100644 --- a/docs/Data_source_docs/Time_Schema_Audit.md +++ b/docs/Data_source_docs/Time_Schema_Audit.md @@ -282,9 +282,6 @@ Any retriever that omits these is a regression. | `Time_Adapter.md` | Time-window compilation logic (`TimeWindow -> TimePredicate`) and widening behavior | Retrieval/orchestration engineers | Any change to `compile_predicate`, widening policy, or source predicate wiring | | `Time_Schema_Audit.md` | Physical source-of-truth for time columns/keys/units across Silver and Gold datasets | Data platform and retrieval engineers | Any schema/cadence/time-key change in ingestion or storage layers | -### 7.2 Should they live in different docs folders? +- `Time_Adapter.md` in `docs/Query_retrieval_docs/` because it documents retrieval-time query compilation behavior. +- `Time_Schema_Audit.md` to `docs/Data_source_docs/` when you want clear ownership separation between retrieval logic and physical data contracts. -Recommended operating model: -- Keep `Time_Adapter.md` in `docs/Query_retrieval_docs/` because it documents retrieval-time query compilation behavior. -- Move `Time_Schema_Audit.md` to `docs/Data_source_docs/` when you want clear ownership separation between retrieval logic and physical data contracts. -- If you do not want to move files right now, keep both in the current folder but add explicit cross-links and owner notes (this document now includes that boundary).