X Market Sentiment Tracker

「信頼してる人たちを、ずっと見てきたの。最近…彼らの自信が、少し違って見えるの。」 – Koa

Koaは、注目すべきXアカウント(trencher、インフルエンサー、ミームトレーダーなど)を監視し、彼らの現在の市場に対する見解を以下の基準に基づいて評価できます:

  • 最近の投稿内容における市場の状況や見通しに関するトーン

  • ポジティブ vs ネガティブな感情分析

  • グリーンPnL(利益)とレッドPnL(損失)の投稿割合比較

これにより、ユーザーは「シグナルの強いトレーダーたちが強気なのか弱気なのか」のスナップショットを素早く確認できます。

プロンプトの例

「Koa、Cupsey、Cented、Mr. Frogが今週強気か弱気かを教えて

// TypeScript: Sentiment tracking logic (simplified)
async function analyzeUserSentiment(username: string) {
  const tweets = await getLatestTweets(username, 50);
  const pnlTweets = tweets.filter(t => /PnL/i.test(t.text));
  const sentimentScores = tweets.map(t => getSentimentScore(t.text));
  const avgSentiment = average(sentimentScores);

  const pnlBias = pnlTweets.reduce((acc, t) => {
    if (/\$\d+\w* gain/i.test(t.text)) acc.green++;
    else if (/loss|red/i.test(t.text)) acc.red++;
    return acc;
  }, { green: 0, red: 0 });

  return {
    user: username,
    sentiment: avgSentiment,
    pnl: pnlBias,
  };
}

TL:DR (ENGLISH)

Koa monitors selected or user input X (Twitter) accounts, like influencers, meme traders, and trenchers, to evaluate their current market outlook. She does this by analyzing the tone of their recent posts, determining whether their sentiment is positive or negative, and comparing the frequency of green (profitable) versus red (loss) PnL tweets.

This gives users a fast, high-signal snapshot of whether notable traders are leaning bullish or bearish. It's an edge for users trying to read the room before making trading decisions.

Last updated