# TradingView Ideas Scraper

**Use case:** 

Scrape public TradingView Ideas with symbols, authors, timestamps, engagement, and chart links.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.tradingview.com/ideas/"
    }
  ],
  "keyword": "",
  "maxItems": 10,
  "enrichDetails": false
}
```

## Output

```json
{
  "ideaUrl": {
    "label": "Idea URL",
    "format": "link"
  },
  "title": {
    "label": "Title"
  },
  "symbol": {
    "label": "Symbol"
  },
  "author": {
    "label": "Author"
  },
  "publishedAt": {
    "label": "Published at",
    "format": "date"
  },
  "direction": {
    "label": "Direction"
  },
  "comments": {
    "label": "Comments",
    "format": "number"
  },
  "likes": {
    "label": "Boosts",
    "format": "number"
  },
  "chartImageUrl": {
    "label": "Chart image",
    "format": "link"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "link"
  },
  "collectedAt": {
    "label": "Collected at",
    "format": "date"
  }
}
```

## About this Actor

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