FDX× Snowflake

FedEx Corporation Quant Signals in Snowflake

Query FedEx Corporation quant signals (Piotroski F-Score, Altman Z-Score, Beneish M-Score, Sloan accruals, and HMM market regime, plus a composite score) natively in Snowflake. Bitemporal Apache Iceberg tables updated every week.

Snowflake: preview (work in progress)

Get API Access

Ticker

FDX

Coverage

2020 to present

Update freq

Weekly

Signal families

5 (+ composite)

Snowflake query example

Snowflake
-- PREVIEW / WORK IN PROGRESS: the VectorFin Snowflake path is not yet GA.
-- No EXTERNAL_VOLUME: the Polaris catalog vends short-lived, prefix-scoped
-- GCS credentials per read, so Snowflake needs no GCS grant of its own.
CREATE OR REPLACE ICEBERG TABLE FDX_signals
  CATALOG = 'vectorfin_polaris'
  CATALOG_NAMESPACE = 'vectorfin'
  CATALOG_TABLE_NAME = 'signals';

-- Flat typed columns (no JSON blob): one column per sub-signal.
SELECT ticker, date, score, altman_z_score, altman_zone,
       beneish_m_score, regime, regime_confidence, effective_ts, knowledge_ts
FROM   FDX_signals
WHERE  ticker = 'FDX'
ORDER  BY date DESC
LIMIT  30;

Access FDX signals in Snowflake

Sign up for a free API key. Pro plan unlocks Iceberg delivery to Snowflake and BigQuery.