# Opening Range Breakout Strategy AI Agent Connect

> A deterministic intraday strategy that identifies price breakouts from the initial market opening range.

## Overview
- **Category:** finance
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_3M7xpBUts0QEAG7rMrGjFLT2uNUAGk7Hnpiedxux/ai-agent-connect
- **Tags:** intraday, breakout, volatility, ohlc, strategy

## Description

This MCP server provides a deterministic intraday trading strategy focused on the Opening Range Breakout (ORB). It identifies high-probability entry signals by calculating the price boundaries established during the market opening. The strategy uses `calculate_orb_parameters` to define the range, `evaluate_breakout_signals` to detect volume-confirmed breakouts, and `track_trade_lifecycle` to manage active trades via automated stop-loss and take-profit logic. It includes built-in volatility filters using ATR to avoid unstable market conditions.

## Tools

### track_trade_lifecycle
Monitors ongoing trades to determine if they have hit a Take-Profit, a Stop-Loss, or if they should be held/closed

### calculate_orb_parameters
Determines the core boundaries and characteristics of the opening range

### evaluate_breakout_signals
Analyzes price action and volume to identify specific Buy or Sell entry signals

## Prompt Examples

**Prompt:** 
```
Calculate the opening range parameters for this session data.
```

**Response:** 
```
The opening range high is 150.50, the low is 148.20, and the width is 2.30. The session is valid.
```

**Prompt:** 
```
Check if there is a breakout signal based on the current price and volume.
```

**Response:** 
```
A BUY signal has been generated at 150.60 with a breakout strength of 0.13.
```

**Prompt:** 
```
Monitor the status of my active trades with the current price of 152.00.
```

**Response:** 
```
The trade has been closed because the price hit the take-profit level of 152.15.
```

## Frequently Asked Questions

**How does the strategy confirm a breakout?**
A breakout is confirmed when the price moves beyond the ORB High or Low with a volume surge exceeding 1.5 times the average opening volume.

**What is the volatility filter?**
The strategy uses an ATR filter; if the ORB width is greater than twice the 20-day ATR, the session is marked as too volatile and trades are skipped.

**How are stop-loss and take-profit levels determined?**
Stop-loss is set at the ORB midpoint or the opposite boundary, while take-profit is set at 1.5 times the ORB width.
