AION-Analytics commited on
Commit
c84c794
·
verified ·
1 Parent(s): f5dabd1

Update public model card

Browse files
Files changed (1) hide show
  1. README.md +172 -0
README.md ADDED
@@ -0,0 +1,172 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language: []
3
+ license: other
4
+ license_name: aion-edge-engine-license
5
+ pipeline_tag: tabular-classification
6
+ tags:
7
+ - finance
8
+ - trading
9
+ - market-intelligence
10
+ - indian-stock-market
11
+ - risk-management
12
+ - nifty
13
+ - banknifty
14
+ - sensex
15
+ - indian-index-options
16
+ - market-microstructure
17
+ - trade-filter
18
+ - evidence-based-trading
19
+ - market-regime
20
+ - pre-trade-gate
21
+ - noise-filter
22
+ - institutional-trading
23
+ - nse
24
+ - fno
25
+ - commodity-trading
26
+ - crude-oil
27
+ - calibrated-confidence
28
+ datasets: []
29
+ widget: []
30
+ ---
31
+
32
+ # AION Edge Engine — Market Intelligence Layer
33
+
34
+ A pre-trade evidence filter for Indian index options, commodities, and crude oil.
35
+ Edge Engine does **not** tell you what to trade. It answers a narrower question:
36
+ **does the current market state carry meaningful evidence, or should you stand
37
+ down?**
38
+
39
+ ## 1. Why This Exists
40
+
41
+ Indian index options move fast. A short-horizon market state can look like a
42
+ breakout, a reversal, or a trap, and mistaking noise for signal is one of the
43
+ most expensive mistakes a trader can make.
44
+
45
+ Edge Engine exists to reduce that mistake. It is designed for calibrated trust:
46
+ it can stay silent when evidence is insufficient, and when it does produce a
47
+ tradability judgment, it exposes audit fields instead of hiding everything
48
+ behind one opaque score.
49
+
50
+ ## 2. What Edge Engine Does
51
+
52
+ Edge Engine converts intraday market state for NIFTY, BANKNIFTY, SENSEX,
53
+ commodities, and crude oil into a structured pre-trade judgment:
54
+
55
+ - **Tradable or not**, based on the current evidence profile
56
+ - **Expected value context** and **confidence-bound telemetry**, exposed
57
+ separately
58
+ - **Underlying-specific routing**, because NIFTY, BANKNIFTY, SENSEX, and crude
59
+ oil are different markets
60
+ - **Audit-ready output**, preserving raw and enforced tradability fields
61
+
62
+ It does not output a brokerage instruction. It outputs context. The difference
63
+ matters.
64
+
65
+ ## 3. Output Contract
66
+
67
+ Every public field is intended to be auditable. No model weights, training data,
68
+ or proprietary model internals are distributed through this repository.
69
+
70
+ ```json
71
+ {
72
+ "edge_underlying": "nifty",
73
+ "edge_ev": 0.1421,
74
+ "edge_conf_low": 0.0314,
75
+ "edge_conf_high": 0.0471,
76
+ "edge_tradable": true,
77
+ "edge_tradable_raw": true,
78
+ "edge_motive": "model",
79
+ "edge_model_key": "model:edge:nifty",
80
+ "edge_shadow_mode": false,
81
+ "edge_expiry_days": 7.0
82
+ }
83
+ ```
84
+
85
+ | Field | Meaning |
86
+ |---|---|
87
+ | `edge_underlying` | Instrument family evaluated by the engine |
88
+ | `edge_ev` | Expected-value context surfaced by the model |
89
+ | `edge_conf_low` | Lower confidence-bound telemetry |
90
+ | `edge_conf_high` | Upper confidence-bound telemetry |
91
+ | `edge_tradable` | Enforced tradability after runtime policy gates |
92
+ | `edge_tradable_raw` | Raw model tradability preserved for audit |
93
+ | `edge_motive` | Why the judgment was produced, such as model or policy context |
94
+ | `edge_model_key` | Underlying-specific model key used for inference |
95
+ | `edge_shadow_mode` | Whether the output is live-enforced or shadow/paper-validation |
96
+ | `edge_expiry_days` | Days-to-expiry context at inference time, when applicable |
97
+
98
+ Raw tradability and enforced tradability are both preserved so integrators can
99
+ audit when runtime policy differs from the raw model judgment.
100
+
101
+ ## 4. Why Market-State Filtering Matters
102
+
103
+ In Indian index options and commodity derivatives, very short-horizon market
104
+ states can be distorted by spread changes, expiry behavior, auction spillover,
105
+ and reaction loops. Edge Engine is designed around market-state evidence rather
106
+ than urgency. When evidence is weak, the correct output may be to stand down.
107
+
108
+ That restraint is the product: it helps suppress low-quality entries before they
109
+ reach execution logic.
110
+
111
+ ## 5. Intended Uses
112
+
113
+ - **Pre-trade filtering:** run Edge Engine before existing entry logic to
114
+ suppress signals during low-evidence market states
115
+ - **Regime awareness:** monitor expected-value and confidence-bound telemetry to
116
+ understand when conditions are improving or degrading
117
+ - **Audit and post-trade analysis:** compare raw and enforced tradability
118
+ decisions against later outcomes
119
+ - **Paper validation:** use shadow-mode outputs to evaluate behavior before live
120
+ enforcement
121
+
122
+ ## 6. Out-of-Scope Uses
123
+
124
+ - Blind execution as a standalone trade signal
125
+ - Exact price prediction or directional forecasting
126
+ - Compliance, suitability, or investment-advice decisions
127
+ - Markets outside the supported Indian-market scope
128
+ - Sub-market-state scalping or ultra-low-latency execution
129
+
130
+ ## 7. Limitations
131
+
132
+ - Edge Engine scores contextual tradability; it does not predict exact direction
133
+ or magnitude.
134
+ - Sudden structural breaks may not be fully reflected until the current market
135
+ state is observed by the system.
136
+ - Historical relationships can weaken during regime shifts, regulatory changes,
137
+ or liquidity shocks.
138
+ - Non-index coverage can carry wider confidence bounds than the most liquid
139
+ index markets.
140
+ - Shadow-mode outputs are for paper validation and audit, not live decision
141
+ authority.
142
+
143
+ ## 8. Deployment, Access, and Citation
144
+
145
+ AION Edge Engine is an API-first system. Model weights are not publicly
146
+ distributed. Production access is through the managed AION API.
147
+
148
+ - API endpoint: https://api.aiondashboard.site/v1/edge
149
+ - Dashboard: https://dashboard.aiondashboard.site/models/edge-engine
150
+ - Registration: https://dashboard.aiondashboard.site/access/register
151
+ - API gateway: https://dashboard.aiondashboard.site/systems/api-gateway
152
+ - Organization: https://huggingface.co/AION-Analytics
153
+
154
+ Freemium access includes selected AION market-intelligence surfaces. Edge Engine
155
+ and broader multi-index access are available through API subscription. Requests
156
+ are metered; over-quota requests are rejected by the managed API.
157
+
158
+ If you integrate Edge Engine, monitor:
159
+
160
+ - Whether stand-down decisions avoided chop, reversals, or false breakouts
161
+ - Whether tradable decisions align with your own entry criteria
162
+ - Differences between `edge_tradable_raw` and `edge_tradable`
163
+ - Confidence-bound behavior over time
164
+
165
+ ```bibtex
166
+ @software{aion_edge_engine_2026,
167
+ author = {AION Analytics},
168
+ title = {AION Edge Engine — Market Intelligence Layer for Indian Index Options},
169
+ year = {2026},
170
+ url = {https://huggingface.co/AION-Analytics/aion-edge-engine}
171
+ }
172
+ ```