Create geopolitical turbulence trapper project skeleton

This commit is contained in:
2026-03-09 15:00:24 +10:00
parent d56506a0c9
commit 8d1002f41d
10 changed files with 183 additions and 0 deletions
@@ -0,0 +1,16 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "TargetInstrumentUniverseItem",
"type": "object",
"required": ["id", "market", "symbol", "name", "category"],
"properties": {
"id": {"type": "string"},
"market": {"type": "string", "enum": ["HK", "US", "AU", "MACRO"]},
"symbol": {"type": "string"},
"name": {"type": "string"},
"category": {"type": "string", "enum": ["equity", "index", "commodity", "fx", "volatility"]},
"themeTags": {"type": "array", "items": {"type": "string"}},
"eventSensitivity": {"type": "object", "additionalProperties": {"type": "number"}},
"notes": {"type": "string"}
}
}