Skip to content

Latest commit

 

History

History
145 lines (105 loc) · 4.58 KB

File metadata and controls

145 lines (105 loc) · 4.58 KB

Alphabots Public Repository

License: MIT MCP Server

Integrate with Alphabots Signal Webhook for automated trading from any platform or AI agent.

📋 Overview

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.

🚀 Quick Start

For AI Agents

Read SKILLS.md for complete webhook and MCP integration docs.

For TradingView Users

  1. Copy a strategy from `tradingview/strategies/`
  2. Add your webhook URL in the alert settings
  3. Configure the alert message JSON format
  4. Start receiving signals!

See tradingview/README.md for detailed setup.

For Amibroker Users

  1. Run `signal_file_monitor.exe` from `amibroker-plugin/`
  2. Configure `.env` with your webhook URL
  3. Set up your AFL script to write signals

See `amibroker-plugin/README.md` for detailed setup.

For AI/IDE Integration

  1. Install MCP Server: `npx alphabots-mcp-server@1.0.12`
  2. Configure in Claude Desktop, Trae.ai, or Cursor
  3. Set your MCP token

See mcp-server/README.md for detailed setup.

📁 Repository Structure

``` 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 ```

🎯 Key Features

Webhook Order Placement

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" }] } ```

MCP Server Integration

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 ```

TradingView Strategies

Pre-built strategies with webhook alerts:

  • MA Crossover with SL/Target
  • MACD + VWAP
  • MACD + VWAP + ATR
  • Momentum Breakout (Crypto)
  • Sample Supertrend

📚 Documentation

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

🤝 Contributing

We welcome contributions! Please read CONTRIBUTING.md for guidelines.

  • Report bugs via issues
  • Suggest features via issues
  • Submit pull requests with clear descriptions

📄 License

This project is licensed under the MIT License - see LICENSE for details.

🔗 Links


Made with ❤️ for traders and AI agents