# Pivot Point Strategy AI Agent Connect

> Deterministic technical analysis for pivot-based support and resistance signals.

## Overview
- **Category:** finance
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_ckH8j85skl61W6kWhQ0In5Rx1KJaq1fKkA7V2l61/ai-agent-connect
- **Tags:** pivot-points, trading-signals, support-resistance, market-analysis, algorithmic-trading

## Description

This MCP server provides a deterministic technical analysis engine to identify high-probability trading opportunities. By calculating central Pivot Points (P) and subsequent resistance (R1, R2) and support (S1, S2) levels from previous session data, it identifies price bounces and rejections. Use `calculate_pivot_signals` to generate BUY, SELL, or HOLD signals with precise entry, stop-loss, and take-profit parameters. You can also use `analyze_pivot_strength` to evaluate level reliability and `get_breakout_probability` to assess the likelihood of price exceeding outer bounds.

## Tools

### get_breakout_probability
Provides the statistical likelihood of a price movement exceeding the outer bounds

### analyze_pivot_strength
Evaluates the reliability of specific support or resistance levels based on historical testing

### calculate_pivot_signals
Generates trading signals and risk parameters based on current price action against calculated pivot levels

## Prompt Examples

**Prompt:** 
```
Generate a trading signal for the current market data.
```

**Response:** 
```
BUY at 150.50, Stop-Loss at 149.00, Take-Profit at 155.00. Pivot strength is 3.
```

**Prompt:** 
```
Is the current resistance level strong?
```

**Response:** 
```
The resistance level is reliable with a strength count of 4.
```

**Prompt:** 
```
What is the probability of a breakout beyond R2?
```

**Response:** 
```
The historical probability of a breakout beyond R2 is 15.5%.
```

## Frequently Asked Questions

**How are the trading signals generated?**
Signals are generated using `calculate_pivot_signals` when price touches a support or resistance level and closes on the expected side, provided the level has met the minimum strength requirement.

**What is considered a reliable support level?**
A level is considered reliable if `analyze_pivot_strength` returns a strength count of 2 or more consecutive touches without a breach.

**Can I predict the chance of a breakout?**
Yes, you can use `get_breakout_probability` to receive statistical likelihoods of price exceeding R2 or S2 based on historical data.
