Market Data
Live quotes, symbols, and index monitoring with direct links to chart and detail views.
All modules are organized for command-first analysis on Indian markets.
Live quotes, symbols, and index monitoring with direct links to chart and detail views.
Typed commands route directly to pricing, description, chart, and risk modules.
Script research logic using embedded Python APIs and local workspace data.
Position and exposure metrics are calculated in one view for review before execution.
Condition rules support threshold notifications across symbols and index instruments.
Layouts and watchlists are saved locally for repeatable desk setup.
| Screen | Category | Description |
|---|---|---|
| Quote Board | Market Monitoring | Tracks selected symbols with live last price, change, and volume. |
| Index Monitor | Market Monitoring | Shows broad index movement and market breadth at a glance. |
| Company Snapshot | Research | Displays summary fundamentals and key instrument metadata. |
| Chart Workbench | Technical Views | Loads multi-timeframe charts with indicator overlays and drawing tools. |
| News Feed | Research | Lists latest instrument-linked headlines for event context. |
| Position Book | Portfolio | Aggregates holdings, fills, and current P&L for open positions. |
| Risk Monitor | Portfolio | Summarizes exposure, concentration, and daily limit checks. |
| Python Console | Automation | Runs custom scripts against terminal data and workspace state. |
The command parser maps each token to a module and returns a deterministic view. This keeps navigation short during active sessions.
The Python interpreter runs in-process, so data retrieval and calculations stay in one workspace context.
>>> import qt
>>> df = qt.history("NIFTY:IN INDEX", period="3M")
>>> signal = df.close.pct_change().rolling(5).mean().iloc[-1]
>>> round(signal, 4)
0.0032
Risk metrics are calculated in the same terminal session and can be checked before placing new orders.
| Metric | Value |
|---|---|
| Daily P&L | +₹42,800 |
| Max Drawdown | -3.9% |
| Sharpe Ratio | 1.42 |
| 1D VaR (95%) | ₹1,18,000 |
| Capability | Quantify Terminal | Refinitiv Eikon | Broker Web Platform | Charting Platform |
|---|---|---|---|---|
| Price | Free (MIT) | Subscription | Broker-linked | Freemium |
| NSE Data | Yes | Yes | Yes | Yes |
| Python Scripting | Yes | Yes | No | No |
| Command Interface | Yes | Yes | No | No |
| Open Source | Yes | No | No | No |