# NFT Floor Price Strategy AI Agent Connect

> Deterministic mean-reversion strategy for NFT floor prices.

## Overview
- **Category:** finance
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_AO79WLyVbZv1AJ3srRjpS8JnULnM1IhIlMTkbyVw/ai-agent-connect
- **Tags:** nft, ethereum, trading, statistics, mean-reversion

## Description

This MCP server provides deterministic mean-reversion analysis for NFT collections. It uses statistical Z-scores and volume pressure to identify oversold or overbought conditions. Use `analyze_floor_strategy` to generate BUY/SELL signals, `calculate_market_health` to detect wash trading and holder concentration, and `get_reversion_target` to find the 30-day moving average price target.

## Tools

### analyze_floor_strategy
Generates a deterministic trade signal (BUY, SELL, or HOLD) based on price, volume, and safety filters

### get_reversion_target
Calculates the mathematical price target for a mean-reversion trade

### calculate_market_health
Analyzes the risk profile of a collection regarding concentration and artificial activity

## Prompt Examples

**Prompt:** 
```
Analyze the floor price strategy for this collection with these prices: [1.2, 1.1, 1.3, 1.0, 0.9], volumes: [10, 12, 11, 25, 22], holders: 6000, top10: 500, range: {"min": 0.5, "max": 2.0}
```

**Response:** 
```
{"signal": "BUY", "floorPrice": 0.9, "zScore": -1.8, "targetPrice": 1.1, "holderCount": 6000, "volume": 22, "isWashTrading": false, "isRugRisk": false}
```

**Prompt:** 
```
Check the market health for a collection with 10000 holders, 1000 in top 10, and recent volumes of [5, 5, 5, 5, 5] with 10 unique wallets.
```

**Response:** 
```
{"holderConcentration": 0.1, "isWashTrading": true, "meanReversionHalfLife": 4.5}
```

**Prompt:** 
```
What is the target price for a floor at 1.5 ETH with a 30-day mean of 1.2 ETH?
```

**Response:** 
```
{"targetPrice": 1.2}
```

## Frequently Asked Questions

**What triggers a BUY signal?**
A BUY signal is triggered when the floor price Z-score is below -2.0 and trading volume is at least 1.5x the 30-day average.

**How is wash trading detected?**
Wash trading is flagged if the volume is generated by fewer than 50 unique wallets.

**What are the safety filters?**
The strategy ignores trades if the collection has 5000 or fewer holders, if the floor price dropped >50% in 7 days, or if the floor is below 0.1 ETH.
