Cryptocurrency Market Intelligence Report avatar

Cryptocurrency Market Intelligence Report

Deprecated

Pricing

$100.00 / 1,000 intelligence report generateds

Go to Apify Store
Cryptocurrency Market Intelligence Report

Cryptocurrency Market Intelligence Report

Deprecated

Get detailed reports on cryptocurrency markets, trading patterns, and emerging trends across blockchains.

Pricing

$100.00 / 1,000 intelligence report generateds

Rating

0.0

(0)

Developer

daehwan kim

daehwan kim

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

17 days ago

Last modified

Share

Crypto Intelligence Report - Layer 4

Overview

Comprehensive cryptocurrency intelligence platform combining:

  • Layer 1: Real-time market data (CoinGecko)
  • Layer 2: Technical indicators (RSI, MACD, Bollinger Bands, Moving Averages, Stochastic RSI, ADX)
  • Layer 3: Sentiment analysis (Fear & Greed Index + AI news analysis)
  • Layer 4: Integrated report with AI summary

All data is processed, analyzed, and summarized in a single integrated report.

Input

{
"coinIds": ["bitcoin", "ethereum"],
"currency": "usd",
"includeTechnicals": true,
"includeSentiment": true
}

Parameters

ParameterTypeRequiredDefaultDescription
coinIdsarrayYes-CoinGecko coin IDs (max 5)
currencystringNousdCurrency: usd, eur, gbp, jpy, krw
includeTechnicalsbooleanNotrueInclude technical analysis
includeSentimentbooleanNotrueInclude sentiment analysis

Output

{
"coinId": "bitcoin",
"coinName": "Bitcoin",
"market": {
"currentPrice": 67000,
"priceChange24hPercent": 0.72,
"volume24h": 39000000000,
"marketCap": 1353000000000,
"marketCapRank": 1
},
"technicals": {
"rsi": { "value": 48.86, "zone": "neutral" },
"macd": { "line": -712, "signal": 0, "histogram": 0 },
"bollingerBands": { "upper": 74758, "middle": 69844, "lower": 64929, "pricePosition": "within" },
"movingAverages": { "sma20": 69844, "ema20": 68651 }
},
"sentiment": {
"fearGreedIndex": { "value": 11, "classification": "Extreme Fear" },
"overallSentiment": 0.08,
"sentimentLabel": "neutral",
"newsAnalyzed": 6
},
"aiSummary": "Based on 30-day historical data, Bitcoin is currently priced at $67,000...",
"processingTimeMs": 5000,
"disclaimer": "..."
}

Data Sources

  • Market Data: CoinGecko API - Free tier
  • Fear & Greed Index: Alternative.me
  • News Headlines: CoinDesk and CoinTelegraph RSS feeds
  • AI Analysis: Qwen 3.5 (local via ntriq AI server)

Processing Steps

  1. Market Data: Fetch current prices, volumes, market caps via /coins/markets (1 API call)
  2. OHLC Data: Fetch 30-day historical data for technical analysis (per coin)
  3. Fear & Greed Index: Fetch latest FNG value
  4. News Headlines: Parse RSS feeds filtered by coin name
  5. Sentiment Analysis: Analyze each headline using AI
  6. Technical Indicators: Calculate RSI, MACD, Bollinger Bands, SMA/EMA, Stochastic RSI, ADX
  7. AI Summary: Generate 2-3 sentence summary combining all data
  8. Integrated Report: Combine all results into single dataset item

Rate Limiting

  • CoinGecko /coins/markets: 1 call per run (all coins at once)
  • CoinGecko /coins/{id}/market_chart: 1 call per coin, 12 second delay
  • 5 coins = ~60 seconds total (respects 5 req/min rate limit)

Technical Indicators

RSI (Relative Strength Index)

  • Period: 14 days
  • Zones: < 30 (oversold), 30-70 (neutral), > 70 (overbought)

MACD (Moving Average Convergence Divergence)

  • Line: EMA 12 - EMA 26
  • Signal: EMA 9 of MACD line
  • Histogram: MACD line - Signal line

Bollinger Bands

  • Middle: 20-day SMA
  • Upper: Middle + 2 × StdDev
  • Lower: Middle - 2 × StdDev

Moving Averages

  • SMA (Simple): 20, 50, 200 period
  • EMA (Exponential): 20, 50, 200 period

Stochastic RSI

  • K Line: 3-period SMA of Stochastic RSI
  • D Line: 3-period SMA of K Line
  • Zones: < 20 (oversold), 20-80 (neutral), > 80 (overbought)

ADX (Average Directional Index)

  • Period: 14
  • Strength: < 20 (no trend), 20-40 (weak), > 40 (strong)

Sentiment Analysis

Fear & Greed Index

  • Range: 0-100
  • Classifications: Extreme Fear, Fear, Neutral, Greed, Extreme Greed

News Sentiment

  • Positive Sentiment: +1.0 (bullish headlines)
  • Neutral: 0 (no clear bias)
  • Negative Sentiment: -1.0 (bearish headlines)

Disclaimer

This report is for INFORMATIONAL AND EDUCATIONAL PURPOSES ONLY.

This Actor generates cryptocurrency intelligence reports with the following limitations:

NOT Investment Advice:

  • This is NOT financial advice, investment advice, or trading recommendations
  • This is NOT a research report or professional opinion
  • This is NOT a buy, sell, or hold signal

Technical Indicators Disclosure:

  • Technical indicators are mathematical calculations based on historical data
  • They do NOT predict future price movements
  • Historical patterns may not repeat

Sentiment Analysis Disclosure:

  • Sentiment scores reflect analysis of news headlines only
  • Sentiment does NOT predict price movements
  • AI analysis may contain errors

Data Accuracy:

  • Market data is sourced from CoinGecko (best-effort basis)
  • Data may be delayed or incomplete
  • No guarantee of accuracy or completeness

Risk Disclosure:

  • Cryptocurrency is highly volatile and involves substantial risk of total loss
  • Past performance is NOT indicative of future results
  • Never invest more than you can afford to lose
  • Always conduct your own research (DYOR)
  • Consult a licensed financial advisor before making investment decisions

No Liability: The creators assume no responsibility for:

  • Financial losses or gains resulting from this report
  • Inaccuracies in market or sentiment data
  • Technical errors or system failures
  • Decisions made based on this report

Use at Your Own Risk: By using this Actor, you acknowledge that you understand the risks and take full responsibility for your use of this data.

Examples

Basic Analysis - Single Coin

curl -X POST "https://api.apify.com/v2/acts/YOUR_ACTOR_ID/runs?token=$APIFY_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"coinIds": ["bitcoin"],
"currency": "usd"
}'

Comprehensive Analysis - Multiple Coins

curl -X POST "https://api.apify.com/v2/acts/YOUR_ACTOR_ID/runs?token=$APIFY_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"coinIds": ["bitcoin", "ethereum", "cardano", "solana"],
"currency": "usd",
"includeTechnicals": true,
"includeSentiment": true
}'

Market Data Only (Skip Technicals & Sentiment)

curl -X POST "https://api.apify.com/v2/acts/YOUR_ACTOR_ID/runs?token=$APIFY_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"coinIds": ["bitcoin"],
"currency": "usd",
"includeTechnicals": false,
"includeSentiment": false
}'

Performance

  • Average Processing Time: 30-60 seconds for 1-5 coins (including network delays)
  • Memory Usage: ~1GB
  • Network Requests:
    • 1x CoinGecko /coins/markets (all coins)
    • N x CoinGecko /coins/{id}/market_chart (per coin, with delays)
    • 1x Fear & Greed Index
    • Up to 10 news headlines per coin (2 RSS sources)

Pricing

Pay Per Event: $0.10 per report generated

  • 1 coin = $0.10
  • 2 coins = $0.10 (single event)
  • 5 coins = $0.10 (single event)

Only charged on successful completion.

See Also


Data updated daily. Last updated: $(date)


Extend this actor with the ntriqpro intelligence network:

⭐ Love it? Leave a Review

Your rating helps professionals discover this actor. Rate it here.