Bullish / Bearish Announcement Tracker

「彼らが言ったこと、読んだよ。重要に感じた。何かを動かすほどに強い言葉だった。」 – Koa

Koaは、追跡対象のプロフィールからのツイートに対して**強気度/弱気度スコア(1〜10)**を割り当てます。

  • スコアが8以上または2以下(ユーザーが設定可能)の場合のみアラートを発します。

  • 市場が反応する前に、爆発的なアルファ重大なレッドフラグを捉えるために設計されています。

プロンプトの例

「Koa、(@projectnamehere) からの発表を追跡して、それが超強気または極端に弱気だった場合だけアラートして。」

// Tweet scoring engine
function scoreAnnouncement(text: string): number {
  const bullishPhrases = ["raised", "$10M", "partnered", "listed", "coinbase"];
  const bearishPhrases = ["hack", "exploit", "resign", "shutting down"];

  let score = 5;
  bullishPhrases.forEach(p => { if (text.includes(p)) score += 1.5; });
  bearishPhrases.forEach(p => { if (text.includes(p)) score -= 2; });
  return Math.max(0, Math.min(10, score));
}

// Real-time monitor with threshold
function monitorAndAlert(account, threshold = { bullish: 8, bearish: 2 }) {
  onTweet(account, (tweet) => {
    const score = scoreAnnouncement(tweet.text);
    if (score >= threshold.bullish || score <= threshold.bearish) {
      sendAlert({ tweet, score });
    }
  });
}

TL;DR (ENGLISH)

Koa assigns a sentiment score (1–10) to tweets from user input tracked profiles, based on the presence of bullish or bearish language. If a tweet scores 8 or higher (bullish) or 2 or lower (bearish), Koa triggers an alert. This allows users to detect highly significant updates, whether positive or negative, before the broader market reacts.

It's a powerful tool for catching explosive alpha or critical red flags on projects held by users in real time.

Last updated