# TradingView trader ideas & sentiment

**Use case:** 

Scrape TradingView trader ideas & sentiment: title, long/short direction, timeframe, author, likes, comments & views. Clean JSON.

## Input

```json
{
  "mode": "ideas",
  "market": "america",
  "signal": "",
  "sortOrder": "desc",
  "symbols": [
    "NASDAQ:AAPL"
  ],
  "intervals": [
    "15m",
    "1h",
    "4h",
    "1D",
    "1W"
  ],
  "ideaDirection": "",
  "maxIdeasPerSource": 25,
  "includeStoryContent": false,
  "maxResults": 100,
  "monitorMode": false,
  "monitorStoreName": "tradingview-monitor",
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "symbol": {
    "label": "Symbol",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "direction": {
    "label": "Direction",
    "format": "text"
  },
  "timeframe": {
    "label": "Timeframe",
    "format": "text"
  },
  "author": {
    "label": "Author",
    "format": "text"
  },
  "likes": {
    "label": "Likes",
    "format": "number"
  },
  "comments": {
    "label": "Comments",
    "format": "number"
  },
  "views": {
    "label": "Views",
    "format": "number"
  },
  "publishedAt": {
    "label": "Published",
    "format": "text"
  },
  "url": {
    "label": "Idea",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [TradingView Scraper - Screener, Quotes, Technicals & Ideas](https://apify.com/scrapesage/tradingview-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapesage/tradingview-scraper) to learn more, explore other use cases, and run it yourself.