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,18 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "InstrumentRiskReview",
"type": "object",
"required": ["target", "instrumentType"],
"properties": {
"target": {"type": "string"},
"instrumentType": {"type": "string"},
"gapRisk": {"type": "string", "enum": ["low", "medium", "high", "critical"]},
"koRisk": {"type": ["string", "null"], "enum": ["low", "medium", "high", "critical", null]},
"ivRisk": {"type": ["string", "null"], "enum": ["low", "medium", "high", "critical", null]},
"thetaRisk": {"type": ["string", "null"], "enum": ["low", "medium", "high", "critical", null]},
"liquidityRisk": {"type": "string", "enum": ["low", "medium", "high", "critical"]},
"executionRisk": {"type": "string", "enum": ["low", "medium", "high", "critical"]},
"headlineRisk": {"type": "string", "enum": ["low", "medium", "high", "critical"]},
"summary": {"type": "string"}
}
}