Real-time analysis dashboard for crypto futures markets. Identifies coins moving independently of Bitcoin (low correlation), showing high relative volatility, or experiencing sudden price spikes.
- Overview
- Features
- How It Works
- Getting Started
- Usage Guide
- Configuration
- Metrics Explained
- Important Notices
- Technical Details
- License
Futures Grid is a browser-based dashboard that provides real-time analysis of crypto futures markets. It connects directly to exchange APIs from your browser to analyze and rank cryptocurrency pairs based on:
- Price performance (24h change percentage)
- Correlation with Bitcoin (24h and 1h timeframes)
- Volatility metrics (NATR and Parkinson's Realized Volatility)
- Trading volume and activity
The application runs entirely in your browser with no backend server required, making it fast, private, and easy to deploy.
- Live WebSocket β Real-time price and change updates via exchange streaming API
- Spike Detection β Alerts on sudden price moves within a configurable rolling window. Shows the worst spike, persists for a configurable duration, and uses a quiet period to avoid false clears.
- Activity Score β Composite metric of price velocity and tick density. Higher values signal momentum and attention.
- BTC Correlation β Pearson coefficient over 24h and 1h windows. Spot coins decoupling from Bitcoin.
- Volatility β NATR (2h) and Parkinson's Realized Volatility (6h) for multi-timeframe context.
- Sparklines
- Price Trend β Last 24h price history (1h candles). Green = uptrend, red = downtrend.
- Volume (14d) β 14-day trading volume bars. Rising bars = growing interest.
- Open Interest (14d) β 14-day OI bars with flow analysis. Green = new positions, red = unwinding.
- Symbol Blacklist β Hide stables or majors from analysis.
- Real-time ranking by price change percentage
- Volume comparison against Bitcoin's 24h volume
- Trade count analysis for liquidity assessment
- Correlation heat mapping with color-coded cells
- Symbol blacklisting to exclude unwanted pairs
- Data Collection: The app fetches exchange info and 24h ticker data from the exchange API
- Filtering: Symbols are filtered based on your configured criteria (volume, trades, status)
- Analysis: For each qualifying symbol, the app calculates:
- Price correlation with BTC (24h and 1h)
- Volatility metrics (NATR, Parkinson)
- Volume ratios and trade statistics
- Ranking: Results are sorted by price change percentage (default) or any column
- Live Updates: WebSocket connection provides real-time price updates
- Periodic Refresh: Full re-analysis occurs at your configured interval
- A modern web browser (Chrome, Firefox, Edge, Safari)
- Internet connection to access exchange APIs
- No installation required - runs entirely in the browser
Simply open index.html in your web browser:
# On Linux/Mac
open index.html
# On Windows
start index.html
# Or drag and drop the file into your browserFor best performance, serve the files using a local web server:
# Using Python 3
python -m http.server 8000
# Using Node.js (npx)
npx serve .
# Using PHP
php -S localhost:8000Then navigate to http://localhost:8000 in your browser.
Deploy to any static hosting service:
- GitHub Pages: Push to a GitHub repository and enable Pages
- Netlify: Drag and drop the folder or connect Git repository
- Vercel: Connect Git repository or use CLI
- Cloudflare Pages: Connect Git repository
- Open the Application: Load
index.htmlin your browser - Accept Notice: Read and accept the cookie/rate limit notice
- Wait for Analysis: The app will automatically start analyzing market data
- View Results: Browse the ranked list of futures pairs
- Customize: Adjust settings to match your trading strategy
- Logo & Title: Futures Grid v2.0.0
- Symbol Count: Number of qualifying symbols found
- Help Button (
?): Opens this guide - Stats Toggle: Show/hide statistics panel
- Theme Toggle: Switch between dark/light mode
- Refresh Button: Manually trigger re-analysis
- Export CSV: Download current results as CSV file
- Settings Button: Open configuration panel
- Live Indicator: Shows WebSocket connection status
When enabled, displays:
- Rate limit usage information
- Number of qualifying symbols
- Bitcoin reference volume (24h)
- Last execution timestamp
| Column | Description |
|---|---|
| Trading Symbol | Pair name (e.g., ETHUSDT). Click to copy. |
| Price Change % | 24h percentage change. Green = up, Red = down |
| 24h Quote Volume | Total USDT volume in last 24h |
| Volume vs BTC % | Volume as percentage of BTC's volume |
| 24h Trade Count | Number of trades in last 24h |
| 24h BTC Correlation % | How closely price moves with BTC (24h) |
| 1h BTC Correlation % | How closely price moves with BTC (1h) |
| 2h NATR Volatility % | Normalized Average True Range (2h) |
| 6h Parkinson Volatility % | Parkinson's Realized Vol (6h) |
| 1h Price Trend | Mini sparkline chart showing recent price action |
- Next full analysis countdown
- WebSocket connection status
- Version information
Click any column header to sort by that metric:
- First click: Ascending order
- Second click: Descending order
- Icon indicates current sort direction
- Click Row: Copy symbol name to clipboard
- Hover: Reveals blacklist button (trash icon)
- Blacklist: Remove unwanted symbols from analysis
Access via gear icon to configure:
- Min 24h Volume (USDT): Minimum trading volume threshold
- Min 24h Trades: Minimum number of trades
- Min 2h NATR (%): Minimum volatility threshold
- Min 6h Parkinson (%): Minimum Parkinson vol threshold
- Full Re-Analysis Interval: How often to recalculate metrics (minutes)
- Symbol Blacklist: Manage excluded symbols
| Setting | Default | Description |
|---|---|---|
| Minimum Volume | 50M | Filter by 24h quoted volume (USDT) |
| Minimum Trades | 600K | Filter by 24h trade count |
| Minimum NATR | 0 | Filter by Normalized Average True Range |
| Minimum Vol 6h | 0 | Filter by Parkinson volatility |
| Refresh Interval | 5 min | How often the analysis re-runs |
| Spike Threshold | 3% | Alert when price moves by this % within the spike window |
| Spike Window | 5 min | Rolling window for spike detection |
| Alert Persistence | 5 min | How long spike alerts remain visible after detection |
Add Symbol:
- Open Settings (gear icon)
- Type symbol name in blacklist input (e.g., "BTCUSDT")
- Press Enter
- Click "Apply & Refresh"
Remove Symbol:
- Open Settings
- Click Γ button next to symbol in blacklist
- Click "Apply & Refresh"
Or from table:
- Hover over any row
- Click trash icon to blacklist that symbol
Click the download icon (CSV export) to save current results:
- File format: CSV (Comma Separated Values)
- Filename:
futures_analysis_YYYY-MM-DD.csv - Contains all visible columns and data
- Opens in Excel, Google Sheets, or any spreadsheet app
This application uses browser localStorage to save:
- Theme preference (dark/light)
- Configuration settings
- Cookie consent choice
- Symbol blacklist
No personal data is collected or transmitted. All data stays on your device.
CRITICAL: This tool makes direct API calls to the exchange from your browser using your IP address.
Risks:
- Excessive requests may trigger exchange rate limits
- Your IP could be temporarily banned
- API errors may occur during high-frequency usage
Rate Limits:
- The exchange enforces request weight limits per IP
- This app uses ~1200 weight points per full analysis
- Standard limit: 2400 weight points per minute
Mitigation Strategies:
- Increase refresh interval: Use 5-10 minutes between full analyses
- Reduce symbol count: Use stricter filters (higher min volume/trades)
- Use VPN: Rotate IP addresses if needed
- Run less frequently: Manual refresh instead of auto-refresh
- Monitor errors: Watch for API error messages
By using this application, you acknowledge and accept these risks.
This tool is for informational and educational purposes only.
- β Not financial advice
- β Not a trading recommendation system
- β No guarantee of accuracy or completeness
- β Use at your own risk
- β Do your own research (DYOR)
- β Consult professionals before trading
Cryptocurrency trading involves substantial risk of loss. Past performance does not indicate future results.
This is an unofficial, third-party tool not affiliated with, endorsed by, or connected to Binance or any of its subsidiaries.
Binance is a trademark of Binance Holdings Ltd. All other trademarks belong to their respective owners.
- Frontend: React 18+ with Framer Motion animations
- Styling: Tailwind CSS
- Charts: Recharts library for sparklines
- State Management: React hooks (useState, useEffect, useRef)
- Data Persistence: Browser localStorage
- Real-time Updates: WebSocket connection to exchange
GET https://fapi.binance.com/fapi/v1/exchangeInfo
GET https://fapi.binance.com/fapi/v1/ticker/24hr
GET https://fapi.binance.com/fapi/v1/klines
wss://fstream.binance.com/stream?streams={symbol}@ticker
- Initial Load: Fetch exchange info and 24h tickers
- Filtering: Apply user-defined filters
- Kline Fetching: Retrieve OHLCV data for calculations
- Metric Calculation: Compute correlations and volatility
- WebSocket Connection: Subscribe to live ticker updates
- UI Rendering: Display sorted, filtered results
- Periodic Refresh: Repeat analysis at configured interval
- Retry Logic: Automatic retry with exponential backoff for failed API calls
- Caching: Kline data cached for 2 minutes to reduce API calls
- Debouncing: Rate-limited API requests to avoid bans
- Efficient Updates: WebSocket updates only price/change, not full recalculation
- Memory Management: Proper cleanup on unmount
- β Chrome 90+
- β Firefox 90+
- β Edge 90+
- β Safari 14+
- β Internet Explorer (not supported)
Required Features:
- ES6+ JavaScript support
- WebSocket API
- Fetch API
- localStorage API
- CSS Grid/Flexbox
/workspace
βββ index.html # Main HTML entry point
βββ README.md # This documentation
βββ LICENSE # MIT License
βββ assets/
βββ index-*.js # Main application bundle (React code)
βββ vendor-*.js # Third-party dependencies
βββ index-*.css # Compiled styles (Tailwind)
This is a pre-built static application. To modify or rebuild:
- Original Stack: React + Vite + Tailwind CSS
- Dependencies:
- framer-motion (animations)
- recharts (sparkline charts)
- lucide-react (icons)
To recreate:
# Create new Vite project
npm create vite@latest futures-grid -- --template react
# Install dependencies
npm install framer-motion recharts lucide-react tailwindcss
# Development
npm run dev
# Production build
npm run build"Analysis failed" error:
- Check internet connection
- Exchange API may be temporarily unavailable
- Wait a few minutes and retry
- Check browser console for details
No symbols displayed:
- Filters may be too strict
- Try lowering min volume/trades thresholds
- Clear blacklist
- Wait for market to be more active
WebSocket not connecting:
- Check firewall/antivirus settings
- Some networks block WebSocket connections
- Try different network or VPN
App feels slow:
- Reduce number of symbols (increase min volume)
- Increase refresh interval
- Close other browser tabs
- Clear browser cache
Rate limit errors:
- Increase refresh interval immediately
- Reduce symbol count with stricter filters
- Wait 15-60 minutes for ban to lift
- Consider using VPN
To reset everything:
// Open browser console (F12) and run:
localStorage.clear();
location.reload();Or manually:
- Open browser DevTools (F12)
- Go to Application/Storage tab
- Clear localStorage entries for the domain
- Refresh page
This project is licensed under the MIT License - see the LICENSE file for details.
Copyright (c) 2026 prelife
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
This is a static deployment of Futures Grid v2.0.0. For contributions or issues:
- Fork the repository
- Create a feature branch
- Make your changes
- Test thoroughly
- Submit a pull request
For questions or issues:
- Check this README first
- Review the in-app Help section
- Check browser console for error messages
- Ensure you're using a supported browser
Built with β€οΈ for crypto traders
Remember: Trade responsibly and never invest more than you can afford to lose.
