# Iron Condor Strategy AI Agent Connect

> A deterministic market-neutral options strategy for consolidating markets.

## Overview
- **Category:** finance
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_RDaRFtPtIqmMCWpcUZuDLm7x8A8iwu8jyhC25FJi/ai-agent-connect
- **Tags:** options, iron-condor, trading-strategy, volatility, market-neutral

## Description

This MCP server provides tools to execute a deterministic iron condor strategy. It identifies ideal entry points when the market is consolidating (low ADX) and options are expensive (high IV rank). Use `analyze_market_conditions` to verify the environment, `generate_iron_condor_entry` to calculate precise strikes and risk metrics, and `evaluate_position_status` to monitor trades for profit targets or necessary adjustments.

## Tools

### analyze_market_conditions
Check market

### evaluate_position_status
Status

### generate_iron_condor_entry
Entry

## Prompt Examples

**Prompt:** 
```
Is the current market suitable for an iron condor?
```

**Response:** 
```
The market is currently consolidating with an ADX of 15 and an IV rank of 65, making it a suitable environment for an iron condor entry.
```

**Prompt:** 
```
Calculate the entry details for an iron condor with a target delta of 0.20.
```

**Response:** 
```
The entry strikes are: Short Put at 450, Long Put at 440, Short Call at 550, and Long Call at 560, with a net credit of $4.50.
```

**Prompt:** 
```
Should I close my iron condor position now?
```

**Response:** 
```
Yes, the current profit has reached 50% of the maximum possible profit, so you should close the position.
```

## Frequently Asked Questions

**When should I enter an iron condor trade?**
You should enter when `analyze_market_conditions` indicates the market is both consolidating (low ADX) and options are expensive (high IV rank).

**How do I know if I should close my position?**
Use `evaluate_position_status` to monitor your trade. It will signal to close for profit when 50% of max profit is reached, or close for time at 21 DTE.

**What happens if the price moves against my position?**
The `evaluate_position_status` tool can provide `ADJUST_POSITION` signals, suggesting you roll the untested side to collect more credit and protect the trade.
