# Aroon Strategy AI Agent Connect

> Deterministic Aroon trend detection for precise BUY/SELL signals.

## Overview
- **Category:** finance
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_ohEfg32RXOmx7nrQ8i3oFxzSqYUbQqyouaEdDsBa/ai-agent-connect
- **Tags:** aroon, trend-detection, trading-signals, momentum, indicators

## Description

This MCP server provides deterministic trend detection using the Aroon indicator. It identifies strong market shifts by monitoring the timing of recent highs and lows. Use `calculate_aroon_metrics` to analyze trend strength and age, `generate_trading_signals` to receive precise BUY, SELL, or HOLD instructions with stop-loss and take-profit levels, and `get_trend_summary` for a qualitative view of market momentum.

## Tools

### calculate_aroon_metrics
Compute core Aroon indicators and trend characteristics

### generate_trading_signals
Interpret Aroon metrics and identify BUY, SELL, or HOLD signals

### get_trend_summary
Provide a high-level qualitative summary of the current market state

## Prompt Examples

**Prompt:** 
```
Analyze these high and low prices for a 25-period Aroon strategy: highs=[150, 152, 155, 153, 158], lows=[148, 149, 150, 151, 152]
```

**Response:** 
```
The current market state shows a Strong Uptrend with an oscillator value of 45.0.
```

**Prompt:** 
```
Generate a trading signal for the current Aroon metrics: Up=100, Down=20, Oscillator=80
```

**Response:** 
```
BUY signal detected at entry price 158.0 with a stop-loss at 152.0.
```

**Prompt:** 
```
Is the market currently sideways?
```

**Response:** 
```
No, the market is currently in a trending state.
```

## Frequently Asked Questions

**What triggers a BUY signal?**
A BUY signal is triggered when Aroon Up crosses above Aroon Down, both values are above 70, and Aroon Up is exactly 100.

**How is the stop-loss determined?**
The stop-loss is set at the most recent significant swing low for BUY signals or the recent swing high for SELL signals within the lookback period.

**Can I use this with Claude Desktop?**
Yes, this MCP server can be connected to Claude Desktop, Cursor, VS Code, Windsurf, and any other MCP-compatible client via Vinkius Edge.
