Integrate with Alphabots Signal Webhook for automated trading from any platform or AI agent.
This repository provides complete integration resources for:
- TradingView Strategies - Pine Script v5 strategies with webhook alerts
- Amibroker Plugin - File monitor for signal-based order placement
- MCP Server - Model Context Protocol server for AI agents
Visit alphabots.in for the full platform or email help@alphabots.in.
Read SKILLS.md for complete webhook and MCP integration docs.
- Copy a strategy from `tradingview/strategies/`
- Add your webhook URL in the alert settings
- Configure the alert message JSON format
- Start receiving signals!
See tradingview/README.md for detailed setup.
- Run `signal_file_monitor.exe` from `amibroker-plugin/`
- Configure `.env` with your webhook URL
- Set up your AFL script to write signals
See `amibroker-plugin/README.md` for detailed setup.
- Install MCP Server: `npx alphabots-mcp-server@1.0.12`
- Configure in Claude Desktop, Trae.ai, or Cursor
- Set your MCP token
See mcp-server/README.md for detailed setup.
``` alphabots_public/ ├── SKILLS.md # Agent integration guide (START HERE) ├── LICENSE # MIT License ├── CONTRIBUTING.md # Contribution guidelines ├── README.md # This file ├── tradingview/ # TradingView strategies │ ├── README.md # TradingView setup guide │ └── strategies/ # Pine Script v5 strategies │ ├── ma_crossover_strategy.pine │ ├── macd_vwap_strategy.pine │ ├── macd_vwap_atr_strategy.pine │ ├── momentumbreak_Crypto.pine │ └── sample_strategy.pine ├── mcp-server/ # MCP Server for AI agents │ ├── README.md # MCP setup guide │ ├── config/ # Configuration files │ └── alphabots_bundle.mcpb # Bundle for IDE import ├── amibroker-plugin/ # Amibroker file monitor │ └── README.md # Amibroker setup guide ├── docs/ # Documentation assets │ ├── tradingview_hooks.png │ └── signals_cards.png └── .github/ # GitHub templates └── ISSUE_TEMPLATE/ # Bug report & feature request templates ```
Send orders from any system via HTTP POST to Alphabots webhook:
```json { "order": [{ "type": "ENTRY", "symbol": "NSE:NIFTY25APRFUT", "quantity": 1, "side": "B", "ordertype": "MARKET", "segment": "FUT", "product": "N" }] } ```
Get portfolio insights, options analysis, and real-time data directly in your AI agent:
``` Agent: Show my portfolio summary MCP: 📊 Total Value: ₹12,45,678 | Today's P&L: +₹23,450 ```
Pre-built strategies with webhook alerts:
- MA Crossover with SL/Target
- MACD + VWAP
- MACD + VWAP + ATR
- Momentum Breakout (Crypto)
- Sample Supertrend
| Document | Description |
|---|---|
| SKILLS.md | Complete agent integration guide - webhook & MCP |
| tradingview/README.md | TradingView setup and strategies |
| mcp-server/README.md | MCP Server configuration |
| amibroker-plugin/README.md | Amibroker plugin setup |
We welcome contributions! Please read CONTRIBUTING.md for guidelines.
This project is licensed under the MIT License - see LICENSE for details.
- Website: alphabots.in
- Support: help@alphabots.in
- Blog: Webhook Integration Guide
Made with ❤️ for traders and AI agents