Heat Map Generator
Visual heat maps for market sectors and correlations.
Overview
Generate TradingView-style heat maps showing relative performance, volume, and other metrics across multiple assets.
Heat Map Types
1. Sector Heat Map
Performance by market sector:
- Crypto: DeFi, L1, L2, Memes, Gaming, AI
- Stocks: Tech, Healthcare, Finance, Energy, Consumer
- Forex: Majors, Minors, Exotics
2. Performance Heat Map
Color-coded by % change:
- Dark Green: > +5%
- Light Green: +2% to +5%
- Pale Green: 0% to +2%
- Pale Red: -2% to 0%
- Light Red: -5% to -2%
- Dark Red: < -5%
3. Volume Heat Map
Relative volume compared to average:
- High volume = larger boxes
- Low volume = smaller boxes
4. Correlation Heat Map
Asset correlation matrix (-1 to +1):
- Blue: Negative correlation
- White: No correlation
- Red: Positive correlation
5. Volatility Heat Map
ATR/IV percentile ranking:
- Hot (red): High volatility
- Cold (blue): Low volatility
Features
- Real-time updates
- Customizable timeframes (1D, 1W, 1M, YTD)
- Drill-down to individual assets
- Export as image
- Embed in dashboard
Configuration
heatMap:
type: "performance"
timeframe: "1D"
sectors: ["crypto", "forex", "stocks"]
minMarketCap: 1000000000
colorScheme: "greenRed"
boxSizing: "market_cap" # or "equal"
Use Cases
- Quick market overview
- Sector rotation analysis
- Find outperforming assets
- Correlation-based hedging
1---2name: heat-map3description: Heat Map Generator4---5# Heat Map Generator67Visual heat maps for market sectors and correlations.89## Overview10Generate TradingView-style heat maps showing relative performance, volume, and other metrics across multiple assets.1112## Heat Map Types1314### 1. Sector Heat Map15Performance by market sector:16- Crypto: DeFi, L1, L2, Memes, Gaming, AI17- Stocks: Tech, Healthcare, Finance, Energy, Consumer18- Forex: Majors, Minors, Exotics1920### 2. Performance Heat Map21Color-coded by % change:22- Dark Green: > +5%23- Light Green: +2% to +5%24- Pale Green: 0% to +2%25- Pale Red: -2% to 0%26- Light Red: -5% to -2%27- Dark Red: < -5%2829### 3. Volume Heat Map30Relative volume compared to average:31- High volume = larger boxes32- Low volume = smaller boxes3334### 4. Correlation Heat Map35Asset correlation matrix (-1 to +1):36- Blue: Negative correlation37- White: No correlation38- Red: Positive correlation3940### 5. Volatility Heat Map41ATR/IV percentile ranking:42- Hot (red): High volatility43- Cold (blue): Low volatility4445## Features46- Real-time updates47- Customizable timeframes (1D, 1W, 1M, YTD)48- Drill-down to individual assets49- Export as image50- Embed in dashboard5152## Configuration53```yaml54heatMap:55 type: "performance"56 timeframe: "1D"57 sectors: ["crypto", "forex", "stocks"]58 minMarketCap: 100000000059 colorScheme: "greenRed"60 boxSizing: "market_cap" # or "equal"61```6263## Use Cases64- Quick market overview65- Sector rotation analysis66- Find outperforming assets67- Correlation-based hedging