Metadata-Version: 2.4
Name: aion-indian-market-intelligence
Version: 1.0.9
Summary: Hosted Indian market intelligence API client for financial event intelligence, macro event analysis, and sector impact analysis.
Author: AION Analytics
License: Proprietary
Project-URL: Homepage, https://github.com/AION-Analytics/aion-indian-market-intelligence
Project-URL: Documentation, https://dashboard.aiondashboard.site/models/indian-market-intelligence
Project-URL: Issues, https://github.com/AION-Analytics/aion-indian-market-intelligence/issues
Keywords: india,nse,indian-market-intelligence,macro-event-analysis,sector-impact-analysis,policy-impact-analysis,event-driven-market-intelligence,event-driven-finance,economic-propagation-analysis,sector-effect-modeling,financial-event-analysis,financial-event-intelligence,financial-intelligence,fintech-infrastructure,market-infrastructure,market-monitoring,ai-agent-tooling,python-sdk,market-intelligence,mcp-server
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Financial and Insurance Industry
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Office/Business :: Financial
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.31
Requires-Dist: mcp>=1.27

# aion-indian-market-intelligence

Turn any Indian market headline into a signed, time-lagged, sector-impact vector — the causal-context layer your LLM is missing.

**AION Analytics (India) — distinct from Polymathic's AION (astronomy), Aion Analytics LLC (United States), and aion-labs (Israel).**

**License: Proprietary — hosted API access only. No model weights distributed. Not open-source.**

---

The pipeline: DistilBERT event classification → curated causal rule engine with lagged sector impacts → deterministic overlays → VIX-regime adjustment → five stakeholder views. Neural classification inside auditable causal structure — not keyword sentiment, not a black box, not a data pipe. Every parsed macro event auto-extends the taxonomy; the system is live, not a static lookup.

## Install

```bash
pip install aion-indian-market-intelligence
```

## One call

```python
from aion_indian_market_intelligence import analyze

result = analyze("RBI MPC holds repo rate at 6.50%")
print(result["sector_vector"])
```

## Real validated output — RBI repo decision, 5 Jun 2026

```json
{
  "headline": "RBI MPC holds repo rate at 6.50% — June 2026 decision",
  "event": "monetary_policy",
  "event_subtype": "repo_rate_hold",
  "confidence": 0.91,
  "vix_regime": "normal",
  "sector_vector": {
    "Banking & Financial Services": 0.38,
    "NBFCs":                        0.14,
    "Real Estate":                 -0.44,
    "IT Services":                 -0.21,
    "FMCG":                         0.09
  },
  "stakeholder_views": {
    "depositors":                  "neutral — FD yields stable, no compression from cut",
    "home_loan_borrowers":         "relief — EMI unchanged, floating rate burden stable",
    "banks":                       "positive — CASA margins intact, NIM pressure absent",
    "equity_investors_financials": "positive — Nifty Bank +0.35% vs Nifty 50 −0.21%",
    "equity_investors_it":         "negative — dollar-sector headwinds, IT −0.99%"
  }
}
```

**Actual session result:** Nifty Bank +0.35%, Fin Services +0.10% vs Nifty 50 −0.21% and IT −0.99%. The model called Banking and Financials positive; both outperformed the index. Correct directional call for every named sector.

## The second receipt — Cyclone (coastal damage)

Same sector, opposite signs, 90 days apart — a structure no polarity label can produce:

```json
{
  "event": "weather_disaster",
  "event_subtype": "cyclone_coastal",
  "sector_vector": {
    "Construction": { "lag_0": -0.50, "lag_90":  0.55 },
    "Agriculture":  { "lag_0": -0.65, "lag_90": -0.65 },
    "Power":        { "lag_0": -0.38, "lag_90": -0.12 }
  },
  "stakeholder_views": {
    "government":             "Construction opportunity at 90d — rebuilding allocation",
    "agricultural_producers": "Agriculture net negative — crop damage, no recovery",
    "equity_investors":       "Construction net positive at 90d; Agriculture net negative"
  }
}
```

Construction carries −0.50 at lag 0 (infrastructure damage) and +0.55 at lag 90 (rebuilding allocation and materials demand). Government sees an opportunity; agricultural producers see a loss they cannot recover from. Five stakeholder views from one event.

## MCP server

```bash
uvx aion-indian-market-intelligence-mcp
```

Claude Desktop:

```json
{
  "mcpServers": {
    "aion-indian-market-intelligence": {
      "command": "uvx",
      "args": ["aion-indian-market-intelligence-mcp"],
      "env": { "AION_API_KEY": "YOUR_API_KEY" }
    }
  }
}
```

Fetch Indian market data with any MCP. Understand what it means with this one.

## Links

- [Model page and full documentation](https://dashboard.aiondashboard.site/models/indian-market-intelligence)
- [API key registration](https://dashboard.aiondashboard.site/access/register)
- [MCP package](https://pypi.org/project/aion-indian-market-intelligence-mcp/)
- [Indian Market Calendar (open source)](https://pypi.org/project/aion-indian-market-calendar/)

---

Not investment advice. The model describes causal structure; execution decisions remain with you. Trading involves substantial risk. SEBI regulations apply.
