Feature Inventory

All modules are organized for command-first analysis on Indian markets.


Core modules in the current build.

Market Data

Live quotes, symbols, and index monitoring with direct links to chart and detail views.

Command Flow

Typed commands route directly to pricing, description, chart, and risk modules.

Python Runtime

Script research logic using embedded Python APIs and local workspace data.

Risk Snapshot

Position and exposure metrics are calculated in one view for review before execution.

Alerts

Condition rules support threshold notifications across symbols and index instruments.

Local Storage

Layouts and watchlists are saved locally for repeatable desk setup.


Available screens and their role.

Screen Category Description
Quote BoardMarket MonitoringTracks selected symbols with live last price, change, and volume.
Index MonitorMarket MonitoringShows broad index movement and market breadth at a glance.
Company SnapshotResearchDisplays summary fundamentals and key instrument metadata.
Chart WorkbenchTechnical ViewsLoads multi-timeframe charts with indicator overlays and drawing tools.
News FeedResearchLists latest instrument-linked headlines for event context.
Position BookPortfolioAggregates holdings, fills, and current P&L for open positions.
Risk MonitorPortfolioSummarizes exposure, concentration, and daily limit checks.
Python ConsoleAutomationRuns custom scripts against terminal data and workspace state.

Examples of terminal-style session output.

Command Routing

The command parser maps each token to a module and returns a deterministic view. This keeps navigation short during active sessions.

COMMAND OUTPUTROUTE LOG
> RELIANCE:IN EQUITY GP
MODULE: PRICE SNAPSHOT
LAST: 2948.60 | CHG: +32.25 | VOL: 5.8M
NEXT: DES | HP | NEWS

Python Session

The Python interpreter runs in-process, so data retrieval and calculations stay in one workspace context.

python_session.py
>>> 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 Summary

Risk metrics are calculated in the same terminal session and can be checked before placing new orders.

RISK SNAPSHOTINR BASE
MetricValue
Daily P&L+₹42,800
Max Drawdown-3.9%
Sharpe Ratio1.42
1D VaR (95%)₹1,18,000

Quantify Terminal compared with common platforms.

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

Open the documentation and run a local setup.

Open Documentation