# VWAP Bounce Strategy AI Agent Connect

> Identify high-probability intraday mean-reversion signals using VWAP interaction and trend filters.

## Overview
- **Category:** finance
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_AvviSUloIRYxOztFGibg16mJ5IiXU0ax7rjFw7uF/ai-agent-connect
- **Tags:** vwap, intraday, trading-signals, mean-reversion, market-analysis

## Description

This MCP server provides deterministic intraday trading signals by analyzing price interactions with the Volume Weighted Average Price (VWAP). It identifies high-probability BUY and SELL opportunities when price pulls back to the VWAP during established trends. The server uses `analyze_vwap_signals` to evaluate OHLC and volume data, ensuring signals meet strict structural requirements like higher highs or lower lows. You can also use `get_vwap_metrics` to monitor the current VWAP slope and distance, or `validate_trend_structure` to confirm market regime integrity.

## Tools

### analyze_vwap_signals
Evaluates intraday price and volume data to identify specific BUY, SELL, or HOLD signals based on VWAP interaction and trend filters

### get_vwap_metrics
Provides a snapshot of the current state of the VWAP level, including its trend, strength, and current price deviation

### validate_trend_structure
Determines if the current price action satisfies the structural requirements (Higher Highs/Lower Lows) necessary to qualify for a signal

## Prompt Examples

**Prompt:** 
```
Analyze the recent intraday data for a BUY signal.
```

**Response:** 
```
BUY signal detected at 150.25. Entry: 150.25, Stop-Loss: 149.85, Take-Profit: 151.05.
```

**Prompt:** 
```
What is the current VWAP slope and distance?
```

**Response:** 
```
The current VWAP slope is 0.02 and the price is 0.45% above the VWAP.
```

**Prompt:** 
```
Is the current trend structure valid for a SELL signal?
```

**Response:** 
```
No, the current price action has not established a lower low to qualify for a SELL signal.
```

## Frequently Asked Questions

**What kind of signals does this server provide?**
The server provides BUY, SELL, or HOLD signals based on how price interacts with the VWAP during an established trend.

**How are stop-loss levels determined?**
Stop-loss levels are calculated using 0.5x the Average True Range (ATR) relative to the VWAP.

**Can I check the current trend strength?**
Yes, you can use `get_vwap_metrics` to retrieve the current VWAP slope and distance from the price.
