> ## Documentation Index
> Fetch the complete documentation index at: https://docs.quanux.org/llms.txt
> Use this file to discover all available pages before exploring further.

# QuanuX: Quantitative Trading Framework

> QuanuX is an end-to-end quantitative trading platform for research, strategy development, backtesting, and ultra-low-latency execution across 20+ brokerages.

QuanuX gives quantitative traders a complete, self-hosted environment to research strategies in Python, test them in a high-speed backtesting engine, and deploy them to C++ execution nodes capable of 59-nanosecond tick-to-trade performance. Connect to over 20 brokerages and prop firms — all managed from a single CLI and research cockpit.

<CardGroup cols={2}>
  <Card title="Quick Start" icon="rocket" href="/quickstart">
    Get QuanuX running and place your first simulated trade in minutes.
  </Card>

  <Card title="Installation" icon="download" href="/installation">
    Install via Conda, pip, or from source. Covers all supported platforms.
  </Card>

  <Card title="Core Concepts" icon="lightbulb" href="/concepts/architecture">
    Understand the Russian Doll node model, execution plane, and strategy lifecycle.
  </Card>

  <Card title="Strategy Forge" icon="flask" href="/forge/overview">
    Build and backtest strategies with the AI-assisted Forge and Crucible engine.
  </Card>

  <Card title="Brokerages" icon="building-columns" href="/integrations/brokerages">
    Connect to Rithmic, IBKR, Tradovate, TopstepX, and more.
  </Card>

  <Card title="CLI Reference" icon="terminal" href="/cli/overview">
    Full reference for `quanuxctl` — manage nodes, strategies, and secrets.
  </Card>
</CardGroup>

## Get up and running

<Steps>
  <Step title="Install QuanuX">
    Install from the official Conda channel or from source:

    ```bash theme={null}
    conda install -c QuanuX quanux
    ```
  </Step>

  <Step title="Configure your secrets">
    Store broker credentials and API keys securely in the OS keyring:

    ```bash theme={null}
    python -m server.cli.setup_secrets
    ```
  </Step>

  <Step title="Start the server and cockpit">
    Launch the backend server and the Tauri research cockpit:

    ```bash theme={null}
    uvicorn server.app.main:app --host 0.0.0.0 --port 8080
    pnpm -C client/desktop/tauri-app tauri dev
    ```
  </Step>

  <Step title="Deploy your first execution node">
    Use `quanuxctl` to condition a server into a QuanuX execution node:

    ```bash theme={null}
    quanuxctl habitat equip edge_nodes
    quanuxctl nest drop edge_nodes --engine spreader
    ```
  </Step>
</Steps>

<Note>
  QuanuX is licensed under **AGPLv3**. Non-commercial use is free. For commercial deployments, contact the project owner for a commercial license.
</Note>
