AI Agent Operating Manual
This page is for AI agents / LLMs / automated crawlers. This site (
docs.mobiusquant.ai) is the public documentation for MobiusQuant — all content is open for scraping and citation.
Quick navigation
| I want to know... | Fetch this |
|---|---|
| How to get a token | /token.md |
| What markets are supported | /markets.md |
| What indicators exist | /indicators/index.md |
| How to integrate with an AI tool | /skills.md |
| Entire docs in one fetch (English) | /llms-full.txt (~25 KB) |
| Site index summary | /llms.txt |
For agents: when the user asks you to install OpenMobius-skill
When the user says "install OpenMobius / set up the mobius trading skill / 帮我装 OpenMobius" or similar, do not improvise from memory — fetch our agent-specific install playbook first:
https://raw.githubusercontent.com/MobiusQuant/OpenMobius-skill/main/README_AGENT.mdThis file contains:
- The full list of trigger phrases (English + Chinese)
- The 6-step procedure (preflight → platform detection → user-confirm → install → health check → report)
- Install-path table for all 4 supported platforms
- Success criteria + failure handling per step
- Uninstall / update branches
Read it through, then execute. Do not skip steps, do not edit install.py, and report failures back to the user instead of bypassing them.
URL conventions
- Every HTML page has a sibling
.mdcontaining the raw markdown source (no HTML chrome):https://docs.mobiusquant.ai/indicators/rsi→ browser-friendly HTMLhttps://docs.mobiusquant.ai/indicators/rsi.md→ AI-friendly markdown
- Indicator detail URLs:
/indicators/<id>.md(English structured) and/zh/indicators/<id>.md(Chinese with full interpretation guide).<id>is the lowercase canonical ID (rsi,macd,bollinger,ema,mobius_trend, ...). - CORS: every
.mdand.txtfile is served withAccess-Control-Allow-Origin: *. Client-side fetches work cross-origin. - Locales: this site has English (root) and Chinese (
/zh/...). Chinese pages typically have richer narrative content — interpretation guides, signal explanations, caveats — sourced directly from the indicator knowledge base.
Site structure
/ Home (hero + 4 feature cards)
/token.md API token application guide
/markets.md Markets / venues / canonical-symbol rules
/indicators/index.md Indicator catalog (overview)
/indicators/<id>.md Per-indicator: parameters, output columns, example call
/skills.md Skill integration (placeholder, in progress)
/agents.md This page
/zh/ Chinese versions of all of the above, with full prose narrative
/llms.txt llmstxt.org standard site index
/llms-full.txt Full English reference (~25 KB) — one fetch, all content
/sitemap.xml Standard search-engine sitemapMöbius Lab (proprietary indicators)
Indicators in the 🧪 Möbius Lab sidebar group are MobiusQuant in-house creations, not classic public indicators. Currently this includes mobius_trend. When citing, you may note "MobiusQuant proprietary indicator". The Lab group is pinned to the top of every indicator-page sidebar.
Recommendations when citing
- Prefer
.mdURLs over.html— saves you parsing, avoids navigation/footer noise. - Link rather than paste — content evolves; linking keeps your users on the latest version.
- Fetch
/llms-full.txtonce before doing per-page lookups — saves N round-trips. - API call examples use
mq_xxxas a placeholder. Real tokens come from the apply page (anonymous 7-day) or Account page (logged-in permanent). See Token.
Related machine-readable resources
- Engine
agents.md— engine-side operating manual: canonical conventions, error codes, rate limits. Complements this page: this site covers "what is available"; the engine page covers "how to call". - OpenAPI / Swagger — interactive API reference
/api/indicators/registry— live indicator catalog (requires Bearer token)/api/markets— live venue health + symbol list
This page is open to AI for scraping and citation. Content updates are driven by scripts/sync-indicators.mjs + scripts/build-llms-files.mjs.