Narrative Intelligence Guide

Understand market sentiment and narrative trends with AI-powered analysis

What is Narrative Intelligence?

Narrative Intelligence uses advanced AI (powered by Google's Gemini) to analyze and understand the prevailing narratives and sentiment in cryptocurrency markets. It goes beyond traditional technical analysis to provide insights into what's driving market movements.

Key Features

Sentiment Analysis

Understand whether market sentiment is bullish, bearish, or neutral, and how it's changing over time.

Narrative Tracking

Identify and track the key narratives driving market movements for specific tokens or sectors.

Key Factors

Get a breakdown of the main factors influencing market sentiment and price movements.

Confidence Scoring

Each analysis includes a confidence score indicating how strongly supported the conclusions are.

Use Cases

  • Market Timing: Use narrative insights to identify optimal entry and exit points
  • Risk Management: Understand underlying factors to better assess risk
  • Research: Deep dive into market narratives for thorough token analysis
  • Content Creation: Get insights to inform your cryptocurrency content and analysis

Example Usage

// Get narrative analysis for a token
const getNarrativeAnalysis = async (query) => {
  const response = await fetch(
    `/api/gemini/overview?query=${encodeURIComponent(query)}`
  );
  const data = await response.json();
  
  if (data.success) {
    const analysis = data.data;
    console.log('Sentiment:', analysis.sentiment);
    console.log('Confidence:', analysis.confidence);
    console.log('Key Factors:', analysis.key_factors);
    console.log('Analysis:', analysis.analysis);
  }
};

// Example queries
getNarrativeAnalysis('bitcoin market analysis');
getNarrativeAnalysis('ethereum ecosystem sentiment');
getNarrativeAnalysis('solana narrative trends');

Understanding the Output

Analysis

A comprehensive text analysis of the market narrative, including recent developments, sentiment drivers, and outlook.

Sentiment

An overall sentiment classification: positive, negative, or neutral.

Confidence

A score from 0 to 1 indicating how confident the AI is in its analysis. Higher values indicate stronger conviction.

Key Factors

A list of the main factors and narratives currently driving the market for the analyzed token or sector.