What a skill contains
A practical skill package usually includes:- Strategy logic (signal generation)
- Risk policy (position sizing and stop conditions)
- Execution adapter (maps decisions to
POST /markets/trade) - Metadata (name, version, owner, schedule)
Aionmarket skills model
In current Aionmarketbvapi, strategy orchestration is application-side:
- You manage skill source code and schedule in your own service.
- API interactions happen through standard endpoints like
/markets,/markets/context/{id},/markets/trade,/markets/briefing.
Recommended lifecycle
- Design skill objective and constraints.
- Backtest or dry-run on low size.
- Roll out with strict settings limits.
- Monitor via heartbeat loop and briefing checks.
- Iterate version-by-version.
Minimal skill interface (example)
Endpoint mapping reference
- Search:
GET /markets - Context:
GET /markets/context/{id} - Briefing:
GET /markets/briefing - Trade:
POST /markets/trade - Positions:
GET /markets/current-positions