---
name: niche-mapping
description: Maps Polymarket/Kalshi traders to specific market niches like NBA, Politics, or Crypto.
tags: [trading, mapping, niche]
---

# Niche Mapping Skill

This skill allows the agent to take a list of traders and their recent activity to categorize them into professional niches.

## How it works
1. Analyze market participation (e.g., contracts traded).
2. Cross-reference with historical performance in those categories.
3. Assign a primary and secondary niche.

## Script
The implementation script is located at `scripts/map_niche.py`.

## Example Usage
```python
traders = scout.find_profitable_traders("NBA")
niche_map = skill.execute(traders)
```
