Authenticated API access
Requests are authorized with API keys and intended for controlled production use.
— ELEQOR QUANTUM
A hybrid optimization engine combining quantum-inspired Ising-model selection with convex portfolio weighting to rebalance large asset universes efficiently on existing GPU infrastructure.
An Elevated Quantum Core Intelligent System
Submit a universe with portfolio rules, or matrix mode with client-supplied returns and covariance. Existing positions and policy constraints ride along in the same request.
GPU-accelerated solves enforce hard constraints, record request metadata, and return outputs built for production — not one-off analysis.
Target weights, diagnostics, and trade scheduling inputs your systems can evaluate, route, or execute with clear auditability.
Requests are authorized with API keys and intended for controlled production use.
Each call can be traced through request identifiers and structured operational logs.
Market data and intermediate results can be served through cache-aware workflows.
Evaluate in containerized environments that mirror production setups.
PRODUCTS
The current API surface covers single-fund optimization, matrix-mode optimization, multi-fund allocation, trade scheduling, and operational monitoring.
Single-fund optimization with institutional constraints, analytics, and practical outputs for portfolio review and downstream execution.
Matrix-mode optimization using client-supplied expected returns and covariance inputs when teams want tighter control over the optimization inputs.
Allocate across multiple funds under shared capital and policy constraints while keeping fund-level outputs separated for review and execution.
Translate target weights into execution-aware trade schedules with participation guidance and practical sequencing for the trading workflow.
Service health monitoring for readiness checks, uptime workflows, and basic operational validation without requiring authentication.
Operational observability and system metrics for authenticated monitoring, dashboards, and environment-level performance review.
BENCHMARKS
Benchmarks are presented as workflow guidance rather than headline claims. The focus is latency, reproducibility, and practical integration into portfolio operations.
Illustrative comparison between EleQor and a baseline convex solver on representative test cases
What matters once an optimizer is part of a production workflow
Benchmark interpretation depends on the objective, constraint set, hardware profile, and surrounding workflow. EleQor is intended to be evaluated in the context of those operational requirements.
ARCHITECTURE
Protected routes are intended to be accessed through API keys so teams can control usage across environments and clients.
Request identifiers and structured logging make it easier to debug runs, monitor behavior, and integrate with standard operational tooling.
Redis-backed caching supports repeatable workflows that benefit from reduced latency and more predictable data access patterns.
The service is suited to Docker-based deployment models so teams can evaluate and operate it in environments that resemble production.
SERVICE STACK
ACCESS CONTROL
OPTIMIZATION PIPELINE
OPERATIONS
DEPLOYMENT
CONSTRAINTS
Constraint support is framed around the controls portfolio teams and risk groups expect in live workflows.
Per-stock max weight, minimum position size, banned tickers, short-selling restrictions.
Gross exposure caps, net exposure floors, cash buffer requirements, leverage multipliers.
Per-GICS-sector max weight caps. Prevent concentration in tech, energy, or any sector slice.
Portfolio-level carbon budget (tCO₂e/revenue). ESG score floors. Exclude brown industries.
Max % of average daily volume per position. Prevents illiquid over-concentration and ownership creep.
Max % of a company's market cap. Critical for large AUM strategies to avoid market impact and 13F thresholds.
Factor exposure caps and floors (momentum, value, quality, beta). Build targeted smart-beta portfolios.
Cap one-way turnover per rebalance. EleQor accounts for current holdings and minimizes unnecessary trading automatically.
DEPLOYMENT
The platform is easier to assess when deployment expectations are explicit. This section summarizes how teams can think about operating the service.
| Capability | Managed API | Private Network | Self-hosted Container | Sandbox |
|---|---|---|---|---|
| API key authentication | ✓ | ✓ | ✓ | ✓ |
| Request IDs and logging | ✓ | ✓ | ✓ | ~ |
| Redis-backed caching | ✓ | ✓ | ✓ | ✗ |
| Docker-based deployment | ✓ | ✓ | ✓ | ~ |
| Protected metrics endpoint | ✓ | ✓ | ✓ | ✗ |
| Public health endpoint | ✓ | ✓ | ✓ | ✓ |
| Environment isolation | ~ | ✓ | ✓ | ✗ |
| Benchmark and evaluation workflow | ✓ | ✓ | ✓ | ✓ |
✓ = typical fit | ~ = limited or engagement-dependent | ✗ = generally not the intended model.
API
The API is designed to be straightforward to evaluate: authenticate with X-API-Key, submit a request, and inspect the response alongside request-level metadata.
# authenticated matrix-mode request
curl -X POST "https://api.eleqor.io/optimize_matrix" \
-H "X-API-Key: $ELEQOR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"tickers": ["AAPL", "MSFT", "NVDA"],
"mu": [0.0011, 0.0008, 0.0016],
"cov": [
[0.0120, 0.0021, 0.0014],
[0.0021, 0.0102, 0.0011],
[0.0014, 0.0011, 0.0186]
],
"max_weight": 0.08,
"sector_caps": {"Technology": 0.35}
}'
{
"request_id": "req_01HQ8M4Q9S8M3J7B2A",
"solve_time_ms": 14.2,
"data_cached": true,
"weights": {
"AAPL": 0.32,
"MSFT": 0.28,
"NVDA": 0.40
},
"sharpe": 0.3479,
"constraints_applied": ["max_weight", "sector_caps"]
}
Production endpoints include /optimize, /optimize_matrix, /multi_fund, /schedule_trades, public /health, and protected /metrics.
USE CASES
01
Use the service to run constrained optimization and trade planning for long/short or long-only books that need practical outputs for review and execution.
02
Coordinate multi-fund allocation workflows when capital sharing, fund-specific rules, and operational consistency all matter.
03
Apply carbon, ESG, exclusion, and exposure rules as part of the optimization workflow when policy controls are not optional.
04
Evaluate allocations under liquidity, ownership, and mandate constraints in environments where auditability and deployment controls matter as much as raw optimization output.