Continue
Continue is an open-source IDE plugin for VS Code and JetBrains IDEs. Use it if you prefer open-source tools with local IDE integration.
Prerequisites
Section titled “Prerequisites”- VS Code or JetBrains IDE
- Continue extension installed
- Your FIX credentials (see Before You Start
Portal Token Method (Recommended)
Section titled “Portal Token Method (Recommended)”Continue primarily uses Bearer token auth via environment variables.
Step 1: Generate a Token
Section titled “Step 1: Generate a Token”Visit in your browser:
https://mcp.axiory.ai/token-portal- Select your broker server
- Enter your FIX credentials
- Choose trading mode
- Click Generate Token
- Copy the token
Step 2: Store Token
Section titled “Step 2: Store Token”Set the token in your environment:
export AXIORY_TOKEN="your-token-here"Add to ~/.zshrc or ~/.bashrc to persist:
echo 'export AXIORY_TOKEN="your-token-here"' >> ~/.zshrcsource ~/.zshrcStep 3: Configure Continue
Section titled “Step 3: Configure Continue”The Continue config file depends on your IDE:
VS Code: Edit ~/.continue/config.yaml
mcpServers: - name: axiory-ai type: streamable-http url: https://mcp.axiory.ai/mcp env: AUTHORIZATION: "Bearer ${{ secrets.AXIORY_TOKEN }}"JetBrains (IntelliJ, PyCharm, etc.): Similar config in Continue settings.
Step 4: Add Token to Continue Secrets
Section titled “Step 4: Add Token to Continue Secrets”In Continue settings:
- Go to Settings > Secrets
- Click + Add Secret
- Name:
AXIORY_TOKEN - Value: Your token from the Token Portal
- Click Save
Step 5: Restart IDE
Section titled “Step 5: Restart IDE”Close and reopen your IDE to load the token.
Using in Continue
Section titled “Using in Continue”Once configured:
Ask Continue: Show me my cTrader account positions
Ask Continue: What's the current EURUSD price?
Ask Continue: Buy 100,000 units of EURUSD at marketMaking Your First Trade
Section titled “Making Your First Trade”In Continue:
“I want to place a buy order for EURUSD, 50,000 units. Can you do that?”
Continue will:
- Fetch quotes
- Check risk limits
- Place the order (or simulate in paper mode)
- Show you the confirmation
Token Rotation
Section titled “Token Rotation”Portal tokens expire after 30 days. Before expiry:
- Visit the Token Portal
- Generate a new token
- Update your Continue secrets with the new token
- Restart your IDE
If your token expires, you’ll see “401 Unauthorized”. Generate a new one.
Troubleshooting
Section titled “Troubleshooting””MCP server not found” or connection fails
Section titled “”MCP server not found” or connection fails”Check:
- Config file exists:
~/.continue/config.yaml(VS Code) or Continue settings (JetBrains) - YAML syntax is valid (no indentation errors)
- Server URL is correct:
https://mcp.axiory.ai/mcp - Token is set in Continue secrets
- Restart your IDE
”Invalid credentials” in the Token Portal
Section titled “”Invalid credentials” in the Token Portal”Your FIX credentials are wrong:
- Go to cTrader Settings > FIX API
- Copy SenderCompID exactly (with all dots and numbers)
- Copy FIX API Password exactly (NOT your login password)
- Generate a new token
”401 Unauthorized”
Section titled “”401 Unauthorized””Your token has expired or is invalid:
- Check if the token is in Continue secrets
- If expired, generate a new one at the Token Portal
- Update the secret
- Restart your IDE
Continue can’t find the secret
Section titled “Continue can’t find the secret”Make sure:
- Secret is set in Continue settings (name:
AXIORY_TOKEN) - Config references it:
${{ secrets.AXIORY_TOKEN }} - Restarted IDE after adding the secret
Alternative: OAuth (if supported)
Section titled “Alternative: OAuth (if supported)”Some versions of Continue may support OAuth. If so:
Edit ~/.continue/config.yaml:
mcpServers: - name: axiory-ai type: streamable-http url: https://mcp.axiory.ai/mcpWhen you first use cTrader tools, Continue may prompt for OAuth authentication. If so, complete the browser flow.
Next Steps
Section titled “Next Steps”- Operating Modes — Understand readonly, paper, and live
- Risk Limits — Position size and daily loss limits
- Choosing an Agent — Compare with other MCP clients
Continue is great for integrating trading into your development workflow. Start with paper mode to test.
