Pricing for deterministic trading calculations and workflows
Usage-based pricing for verified calculations and workflows on the same deterministic compute layer. Start with simple primitives, then scale into richer workflows for planning, risk, funding, and market context.
Choose your plan
Start free. Add API and MCP access when you are ready to build.
Best for: Evaluating deterministic outputs before integrating API or MCP access.
- ✓Browser Playground access
- ✓12 primitives + pre-trade check
- ✓Verification visibility
- ✓No signup required
Best for: A single developer, individual experiments, or one active workflow.
- ✓API + MCP access
- ✓All standard workflows
- ✓Individual use only
Best for: Prototypes, internal dashboards, internal risk tooling, and agents under active development.
- ✓API + MCP access
- ✓TypeScript SDK (npm)
- ○Python SDK — coming soon
- ✓Standard + Advanced workflows
- ✓Internal / prototype use
- ✓Overage $15 / 1,000 cr
Best for: Commercial products, shared infra, internal platforms, and multi-user production systems.
- ✓All workflow classes
- ✓TypeScript SDK (npm)
- ○Python SDK — coming soon
- ✓Batch + webhooks
- ✓Shared admin
- ✓Commercial use
- ✓Overage $12 / 1,000 cr
Best for: High-volume embedding, production APIs, and larger commercial deployments.
- ✓All workflow classes
- ✓TypeScript SDK (npm)
- ○Python SDK — coming soon
- ✓Batch + webhooks
- ✓Commercial + embedding use
- ✓Priority support
- ✓Overage $8 / 1,000 cr
- ✓SLA available
How credits work
Pay by computation depth, not a flat request abstraction. Basic calculations start at 1 credit. Workflows start at 5 credits. Verification adds 2 credits when you need expanded traceability.
| Type | Credits |
|---|---|
| Primitive calculation | 1 credit |
| Standard workflow | 5 credits |
| Advanced workflow | 8 credits |
| Integrated decision workflow | 10 credits |
| Verification add-on | +2 credits |
Verification and traceability
Baseline traceability is included in every response at no extra cost. Full verification is optional and billed when explicitly requested.
- ✓Formula version
- ✓Minimal assumptions
- ✓Baseline traceability in every response
- +Full evidence trace
- +Replay metadata
- +Richer assumptions bundle
- +Expanded traceability on demand
See the full verification model at tradingcalc.io/verification
Overage
If you exceed your monthly included credits, overage is billed automatically. Production keeps running — no manual upgrade required.
How access works
Playground first. API and MCP when you are ready.
Use the browser playground to evaluate deterministic outputs — no signup, no API key, no commitment.
Open Playground →Trader and above include full API and MCP access. Use the REST API, connect via MCP, or integrate with the TypeScript SDK.
Select a plan, submit the request form, and receive your API key within 24 hours.
Request access →Using your API key
Pass your key in the Authorization: Bearer YOUR_API_KEY header. REST, MCP, and SDK all use the same auth model.
curl -X POST https://tradingcalc.io/v1/workflows/pre-trade-check \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"side": "long",
"entry_price": 80000,
"stop_loss": 78000,
"account_balance": 10000,
"risk_pct": 1,
"leverage": 10,
"exchange": "binance",
"symbol": "BTCUSDT"
}'import { TradingCalcClient } from 'tradingcalc-sdk';
const client = new TradingCalcClient({ apiKey: 'YOUR_API_KEY' });
const result = await client.workflows.preTradeCheck({
side: 'long',
entry_price: 80000,
stop_loss: 78000,
account_balance: 10000,
risk_pct: 1,
leverage: 10,
exchange: 'binance',
symbol: 'BTCUSDT',
});
console.log(result.result);{
"mcpServers": {
"tradingcalc": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://tradingcalc.io/api/mcp",
"--header", "Authorization: Bearer YOUR_API_KEY"]
}
}
}Full examples for REST primitives, Python, and TypeScript SDK in the developer docs.
FAQ
Custom credit limits, SLA, dedicated infrastructure, or enterprise contracts — we can accommodate.