# Scrape TradingView market news feed

**Use case:** 

Scrape the TradingView market news feed: headline, symbol, source, published time, urgency & full article text. Clean JSON, no login.

## Input

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

## Output

```json
{
  "symbol": {
    "label": "Symbol",
    "format": "text"
  },
  "title": {
    "label": "Headline",
    "format": "text"
  },
  "source": {
    "label": "Source",
    "format": "text"
  },
  "publishedAt": {
    "label": "Published",
    "format": "text"
  },
  "urgency": {
    "label": "Urgency",
    "format": "number"
  },
  "link": {
    "label": "Article",
    "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.