Files
worldmonitor/shared/commodities.json
Elie Habib 1d28c352da feat(commodities): expand tracking to 23 symbols — agriculture and coal (#2135)
* feat(commodities): expand tracking to cover agricultural and coal futures

Adds 9 new commodity symbols to cover the price rally visible in our
intelligence feeds: Newcastle Coal (MTF=F), Wheat (ZW=F), Corn (ZC=F),
Soybeans (ZS=F), Rough Rice (ZR=F), Coffee (KC=F), Sugar (SB=F),
Cocoa (CC=F), and Cotton (CT=F).

Also fixes ais-relay seeder to use display names from commodities.json
instead of raw symbols, so seeded data is self-consistent.

* fix(commodities): gold standard cache, 3-col grid, cleanup

- Add upstashExpire on zero-quotes failure path so bootstrap key TTL
  extends during Yahoo outages (gold standard pattern)
- Remove unreachable fallback in retry loop (COMMODITY_META always has
  the symbol since it mirrors COMMODITY_SYMBOLS)
- Switch commodities panel to 3-column grid (19 items → ~7 rows vs 10)
2026-03-23 14:19:20 +04:00

28 lines
1.6 KiB
JSON

{
"commodities": [
{ "symbol": "^VIX", "name": "VIX", "display": "VIX" },
{ "symbol": "GC=F", "name": "Gold", "display": "GOLD" },
{ "symbol": "SI=F", "name": "Silver", "display": "SILVER" },
{ "symbol": "HG=F", "name": "Copper", "display": "COPPER" },
{ "symbol": "PL=F", "name": "Platinum", "display": "PLATINUM" },
{ "symbol": "PA=F", "name": "Palladium", "display": "PALLADIUM" },
{ "symbol": "ALI=F", "name": "Aluminum", "display": "ALUMINUM" },
{ "symbol": "CL=F", "name": "Crude Oil WTI", "display": "OIL" },
{ "symbol": "BZ=F", "name": "Brent Crude", "display": "BRENT" },
{ "symbol": "NG=F", "name": "Natural Gas", "display": "NATGAS" },
{ "symbol": "RB=F", "name": "Gasoline RBOB", "display": "GASOLINE" },
{ "symbol": "HO=F", "name": "Heating Oil", "display": "HEATING OIL" },
{ "symbol": "URA", "name": "Uranium (Global X)", "display": "URANIUM" },
{ "symbol": "LIT", "name": "Lithium & Battery", "display": "LITHIUM" },
{ "symbol": "MTF=F", "name": "Newcastle Coal", "display": "COAL" },
{ "symbol": "ZW=F", "name": "Wheat", "display": "WHEAT" },
{ "symbol": "ZC=F", "name": "Corn", "display": "CORN" },
{ "symbol": "ZS=F", "name": "Soybeans", "display": "SOYBEANS" },
{ "symbol": "ZR=F", "name": "Rough Rice", "display": "RICE" },
{ "symbol": "KC=F", "name": "Coffee", "display": "COFFEE" },
{ "symbol": "SB=F", "name": "Sugar No. 11", "display": "SUGAR" },
{ "symbol": "CC=F", "name": "Cocoa", "display": "COCOA" },
{ "symbol": "CT=F", "name": "Cotton", "display": "COTTON" }
]
}