# Ichimoku Cloud Strategy AI Agent Connect

> Deterministic trend-following engine using Ichimoku Cloud indicators.

## Overview
- **Category:** finance
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_0pXfEzEgHW5IzO5mGetIMTLNxjFQPElcwwO0PseD/ai-agent-connect
- **Tags:** ichimoku, trading, technical-analysis, trend-following, signals

## Description

This MCP server provides a deterministic execution engine for Ichimoku Cloud trend-following strategies. It calculates all core components including Tenkan-sen, Kijun-sen, Senkou Spans, and the Chikou Span. Use `analyze_ichimoku_signals` to generate precise BUY, SELL, or HOLD signals based on price position, cloud color, and momentum confluence. You can also use `get_cloud_state` to check sentiment or `calculate_signal_strength` to quantify trend intensity.

## Tools

### analyze_ichimoku_signals
Calculates all Ichimoku components and determines the specific trade signal for every bar in a provided dataset

### calculate_signal_strength
Quantifies the intensity of the current trend based on the gap between price and the cloud

### get_cloud_state
Provides a focused summary of the cloud's current sentiment and thickness

## Prompt Examples

**Prompt:** 
```
Analyze these prices for Ichimoku signals: high=[150, 152, 153], low=[148, 149, 150], close=[149, 151, 152].
```

**Response:** 
```
The analysis shows a HOLD signal for the provided data points.
```

**Prompt:** 
```
What is the current cloud state for these prices?
```

**Response:** 
```
The cloud is currently bullish with a thickness of 2.5 units.
```

**Prompt:** 
```
How strong is the current trend if the price is 5 units above Span A and the cloud thickness is 2?
```

**Response:** 
```
The trend strength score is high due to the significant distance from the cloud boundary.
```

## Frequently Asked Questions

**What triggers a BUY signal?**
A BUY signal is triggered when the price closes above the cloud, Tenkan-sen is greater than Kijun-sen, the Chikou Span is above the price from 26 bars ago, and the cloud is bullish (Span A > Span B).

**How is signal strength calculated?**
The `calculate_signal_strength` tool determines intensity by evaluating the distance between the current price and the cloud boundary, combined with the thickness of the cloud.

**Can I customize the Ichimoku periods?**
Yes, tools like `analyze_ichimoku_signals` allow you to specify custom periods for Tenkan-sen, Kijun-sen, and Senkou Span B.
