Documentation

Learn how to use LiveVolatile effectively

Getting Started

Dashboard Overview

The main dashboard displays real-time volatile coins from either Spot or Futures markets. Use the tabs to switch between markets.

Key Elements:

  • Connection Status - Shows if live data is streaming
  • Coin Count - Total pairs being monitored
  • Last Update - When data was last refreshed
  • Mini Charts - Visual representation of price movement
Real-Time Updates

LiveVolatile streams data directly from Binance WebSockets, providing real-time updates.

Update Frequency:

  • Price Data - Multiple times per second
  • Volatility Check - Every 10 seconds (configurable)
  • Display Update - Every 1 second
  • Ranking - Continuously as data changes

Settings & Configuration

Volatility Threshold

Default: 0.5%

Sets the minimum percentage change needed for a coin to appear in the volatile list.

Recommendation:

  • Day traders: 0.5-2%
  • Swing traders: 2-5%
  • Position traders: 5%+
Refresh Interval

Default: 10 seconds

How often to scan for volatile coins. More frequent = more CPU usage.

Typical Values:

  • 5s - Very frequent updates
  • 10-15s - Balanced (recommended)
  • 30s+ - Less frequent updates
Data Points

Default: 120 points

Number of price records stored per coin. More points = longer history but more memory.

Typical Values:

  • 50-100 - Fast updates, short history
  • 120-250 - Balanced (recommended)
  • 300+ - Long history, more memory
Minimum Records

Default: 20 records

Minimum data points needed before calculating and displaying volatility.

Typical Values:

  • 10-15 - Fast detection
  • 20-30 - Balanced (recommended)
  • 40+ - More data, slower detection

Data Structure

LiveVolatile stores price data locally in your browser using localStorage. Here's the structure:

{ "spotCoinPriceData": { "BTCUSDT": [42100, 42150, 42200, ...], "ETHUSDT": [2840, 2845, 2850, ...], ... }, "futuresCoinPriceData": { "BTCUSDT": [42100, 42150, 42200, ...], ... } }

Each array contains the most recent prices for that symbol. Older data points are automatically removed when the array exceeds the Data Points limit.

Troubleshooting

No coins appearing?
  • Check connection status - should show LIVE
  • Increase volatility threshold to see more results
  • Wait for minimum records to accumulate
  • Clear browser data and refresh
Connection keeps dropping?
  • Check your internet connection
  • Try refreshing the page
  • Check browser console for errors
  • Try a different browser
Data looks incorrect?
  • Clear data using the clear button
  • Wait for fresh data to accumulate
  • Verify data on Binance directly
  • Check system time and timezone