Use Trade It in OpenClaw to connect brokerages, inspect accounts and holdings, and place trades on supported brokerage accounts: Robinhood, ETrade, Charles Schwab, Webull, Public, Tastytrade, Coinbase, and Kraken.
This repo contains a publishable OpenClaw skill that teaches agents how to use the Trade It API safely and consistently.
This project packages Trade It as an OpenClaw skill. With the right Trade It credentials, agents can help users:
- link brokerage accounts through secure OAuth flows
- inspect linked brokerage accounts, holdings, and trade history
- create stock and options trades
- execute trades on supported brokerages after explicit confirmation when appropriate
- generate hosted Trade It connect or trade URLs for browser handoff
The skill includes:
- a
SKILL.mdfile that tells OpenClaw when and how to use Trade It - a bundled Python helper for calling the API
- reference docs for endpoints, enums, examples, integration patterns, and security posture
Trade It gives OpenClaw agents a single brokerage integration layer, so teams can support real brokerage actions without building broker-specific flows one by one.
Trading access is sensitive. This skill is designed to be clear about that.
Key points:
- Trade It encrypts data at rest and in transit.
- Trade It stores revocable access tokens rather than usernames and passwords.
- Trade It users can revoke access directly from their brokerage or on https://tradeit.app.
- Trade It can place trades on a user's behalf, but cannot withdraw, transfer, or custody assets.
- This skill is written to prefer explicit confirmation before execution.
- Some accounts may allow immediate placement on create if the user has enabled that setting.
Read more:
- Trade It site: https://tradeit.app
- Security: https://tradeit.app/security
- Privacy Policy: https://tradeit.app/privacy-policy
- Terms of Service: https://tradeit.app/terms-of-service
- Contact: https://tradeit.app/contact
- All investing involves risk, including the possible loss of principal.
- This skill is an integration layer, not investment advice.
- Users remain responsible for reviewing brokerage connections, orders, account choices, and trade details.
- AI outputs can be wrong. Orders and trade flows should be reviewed carefully.
- Third-party brokerages have their own terms, availability, fees, and execution behavior.
This skill always sends:
Authorization: Bearer <TRADEIT_ACCESS_TOKEN>TRADEIT_ACCESS_TOKEN is required and should be a bearer token value.
Token sources:
- API key token from your Trade It account (direct API access)
- OAuth access token from a partner integration flow
If you use API keys, generate them here:
For endpoint-level auth examples, see tradeit-api/references/api-reference.md.
The skill is written around two main patterns:
Gather info and place trade orders entirely in-chat.
A more visual experience. Trade It generates session URLs so you can connect brokerages or review, edit, and place trades in the browser.
The default and recommended trading flow is:
- create a trade
- inspect returned status
- if still draft, ask for confirmation
- execute if confirmed
If users enable immediate placement in Trade It settings, create calls may submit orders without a second execution step.
When enabled, a create_trade or create_options_trade call may place the trade immediately, skipping the separate execution step.
That means this skill does not blindly assume every create call is draft-only. It checks status first.
Use this sequence as the default agent behavior:
- fetch user/account context (
get-user,get-accounts) - create trade (
create-tradeorcreate-options-trade) - inspect returned
status - if
statusisdraft, ask for explicit confirmation beforeexecute-trade - if
statusis alreadyplaced, report immediate placement and do not execute again
tradeit-api/
├── SKILL.md
├── scripts/
│ └── tradeit_api.py
└── references/
├── api-reference.md
├── enums.md
├── examples.md
├── integration-patterns.md
└── security.mdapi-reference.md— JSON-first API request/response shapesenums.md— brokerage ids, order types, time-in-force values, statuses, and other constantsexamples.md— concrete integration and conversation examplesintegration-patterns.md— recommended architecture and workflow guidancesecurity.md— public Trade It security posture summary with disclaimer language
If you want to publish or distribute the packaged skill, use:
tradeit-api.skill
If you want to edit the source, use the folder:
tradeit-api/
Typical OpenClaw usage expects the skill to be installed into a skills directory and supplied with the needed environment variables for the agent run.
This is for:
- OpenClaw users who want brokerage-backed trading flows
- developers building AI trading assistants or chatbot workflows
- products that want a unified brokerage layer instead of brokerage-by-brokerage integrations
- Docs: https://docs.tradeit.app
- FAQ: https://tradeit.app/faq
- Security: https://tradeit.app/security
- Privacy Policy: https://tradeit.app/privacy-policy
- Terms of Service: https://tradeit.app/terms-of-service
- Contact: https://tradeit.app/contact
- Website: https://tradeit.app
See LICENSE in this repository.
