massive-data-feed

Fetch real-time and historical market data from the Massive API for use in OpenClaw's trading decisions. Use this skill whenever OpenClaw needs stock quotes, options chains, futures prices, crypto prices, OHLCV bars, trades, or any other market data. Triggers on any request for price data, market data, historical bars, real-time streaming, or backtesting data across stocks, options, futures, indices, forex, and crypto.

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "massive-data-feed" with this command: npx skills add player-1101/massive-stock-data

Massive Data Feed Skill

Massive provides three access methods for market data:

MethodBest For
REST APIOn-demand queries — quotes, OHLCV bars, historical records
WebSocket APIReal-time streaming — live trades, quotes, minute bars
Flat FilesBulk historical downloads — backtesting, ML datasets

Setup

First-time only:

bash scripts/setup.sh

Required env vars:

MASSIVE_API_KEY=your_api_key_here
# Only needed for Flat Files:
MASSIVE_S3_ACCESS_KEY=your_s3_access_key
MASSIVE_S3_SECRET_KEY=your_s3_secret_key

Get your API key and S3 credentials at: https://massive.com/dashboard/keys


SDK Initialization (REST)

import os
from massive import Client  # massive-python-client

client = Client(api_key=os.environ["MASSIVE_API_KEY"])

Authentication (REST — Alternative: Raw HTTP)

Include your API key either as a query parameter or header:

import requests

API_KEY = os.environ["MASSIVE_API_KEY"]
BASE_URL = "https://api.massive.com/v1"

# Option A: query parameter
resp = requests.get(f"{BASE_URL}/stocks/trades", params={"apiKey": API_KEY, "ticker": "AAPL"})

# Option B: authorization header
resp = requests.get(f"{BASE_URL}/stocks/trades",
    headers={"Authorization": f"Bearer {API_KEY}"},
    params={"ticker": "AAPL"})

Reference Files — Read the relevant one before proceeding

TaskRead
Stock quotes, trades, OHLCV bars, fundamentalsreferences/stocks.md
Options chains, Greeks, trades, quotesreferences/options.md
Futures prices and historical barsreferences/futures.md
Crypto prices, trades, OHLCVreferences/crypto.md
Real-time streaming via WebSocketreferences/websocket.md
Bulk historical CSV downloadsreferences/flat-files.md

Response Format

All REST endpoints return JSON with a consistent structure:

{
  "status": "OK",
  "count": 10,
  "request_id": "abc123",
  "results": [ ... ]
}

Always check status == "OK" before using results.


Important Constraints

  • 15-minute delayed data is available on free plans. Real-time requires a paid plan.
  • Rate limits apply on free plans (5 requests/minute REST). Paid plans have higher limits.
  • WebSocket: one concurrent connection per asset class by default. Contact support for more.
  • Flat Files data for each trading day is available by ~11:00 AM ET the following day.
  • Massive does not execute trades — pair this skill with the snaptrade-trading skill for execution.

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

Publish Ascii Excalidraw

Convert ASCII art diagrams to hand-drawn Excalidraw JSON files. Analyzes structure first, then generates incrementally module-by-module.

Registry SourceRecently Updated
General

Clawhub Publish

融资诊断、资本情商指导、进度指引的AI融资顾问。用于评估融资准备度、提升Capital EQ、跟踪进度。当用户说'我要融资''看看准备好了吗'时调用。触发:融资、诊断、资本情商、Capital EQ、进度、TS、条款。

Registry SourceRecently Updated
General

Lvmh Louis Vuitton

Louis Vuitton, LVMH’s flagship brand, excels in luxury leather goods with over €22B revenue, strict distribution control, iconic monogram, and creative colla...

Registry SourceRecently Updated
General

La Quinta

美国中档连锁酒店品牌,提供免费早餐和宠物友好服务,属于温德姆酒店集团,覆盖约900家门店。

Registry SourceRecently Updated