# Volume Breakout Strategy AI Agent Connect

> Identify momentum breakouts using price action and volume surge validation.

## Overview
- **Category:** finance
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_ayQY4MJKmeiUCgA7n9qCZXN6s9aqiGuTB7aocsYF/ai-agent-connect
- **Tags:** trading, volume, breakout, momentum, technical-analysis

## Description

This MCP server provides deterministic trading signals by identifying momentum breakouts. It uses `calculate_signals` to detect BUY and SELL opportunities based on price extremes and volume surges. It also includes `analyze_breakout_metrics` to evaluate the strength of a breakout via volume multiples and price gaps, and `get_trade_parameters` to calculate precise entry, stop-loss, and take-profit levels.

## Tools

### analyze_breakout_metrics
Analyze breakout strength

### calculate_signals


### get_trade_parameters
Get trade execution levels

## Prompt Examples

**Prompt:** 
```
Generate trading signals for this price and volume data.
```

**Response:** 
```
The signal for the current bar is BUY with an entry price of 150.50, a stop-loss at 148.20, and a take-profit at 154.25.
```

**Prompt:** 
```
How strong was the breakout at index 45?
```

**Response:** 
```
The breakout at index 45 had a volume multiple of 2.5, a price gap of 0.45, and showed successful follow-through.
```

**Prompt:** 
```
Calculate the trade parameters for a BUY signal at 100.00.
```

**Response:** 
```
The trade plan is: Entry at 100.00, Stop-Loss at 98.50, and Take-Profit at 103.00.
```

## Frequently Asked Questions

**What triggers a BUY signal?**
A BUY signal is triggered when the closing price exceeds the highest high of the lookback period, volume is greater than the multiplier times the average volume, ADX is above 20, and no news gap is present.

**How are trade levels calculated?**
The `get_trade_parameters` tool calculates entry, stop-loss, and take-profit levels based on ATR and the breakout range.

**Can I analyze the quality of a breakout?**
Yes, use `analyze_breakout_metrics` to get data on volume multiples, price gaps, and follow-through confirmation.
