# Monitor Stocktwits Sentiment for Stocks and Crypto

**Use case:** 

Monitor bullish and bearish Stocktwits sentiment for stocks and crypto. Detect reversals, major sentiment shifts, and unusual message-volume spikes.

## Input

```json
{
  "symbols": [
    "AAPL",
    "NVDA",
    "TSLA",
    "SPY",
    "BTC.X"
  ],
  "monitorId": "public-example-v1",
  "windowMinutes": 60,
  "maxMessagesPerSymbol": 300,
  "outputMode": "signalsOnly",
  "emitBaseline": true,
  "thresholds": {
    "sentimentShiftPoints": 25,
    "reversalMinScore": 15,
    "mentionSpikeMultiplier": 2,
    "minMessagesForSpike": 10,
    "minTaggedMessages": 10
  },
  "topMessages": 3,
  "maxConcurrency": 3,
  "maxRetries": 3,
  "proxyConfiguration": {
    "useApifyProxy": false
  },
  "resetState": false,
  "failOnSymbolError": false
}
```

## Output

```json
{
  "eventType": {
    "label": "Signal",
    "format": "string"
  },
  "symbol": {
    "label": "Symbol",
    "format": "string"
  },
  "observedAt": {
    "label": "Observed",
    "format": "string"
  },
  "messageCount": {
    "label": "Messages",
    "format": "integer"
  },
  "messageCountDelta": {
    "label": "Volume delta",
    "format": "integer"
  },
  "sentimentScore": {
    "label": "Sentiment",
    "format": "number"
  },
  "sentimentChangePoints": {
    "label": "Sentiment delta",
    "format": "number"
  },
  "bullishPercent": {
    "label": "Bullish %",
    "format": "number"
  },
  "newMessages": {
    "label": "New messages",
    "format": "integer"
  },
  "lastMessageAt": {
    "label": "Latest message",
    "format": "string"
  },
  "sourceUrl": {
    "label": "Stocktwits",
    "format": "string"
  },
  "errorMessage": {
    "label": "Error",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Stocktwits Watchlist Sentiment Monitor](https://apify.com/fetchfinch/stocktwits-watchlist-sentiment-monitor) with a specific input configuration. Visit the [Actor detail page](https://apify.com/fetchfinch/stocktwits-watchlist-sentiment-monitor) to learn more, explore other use cases, and run it yourself.