# Extract Crypto & Forex Signals from Telegram

**Use case:** 

Scrape and parse Telegram trading signals automatically into clean JSON for traders & devs. Extract Crypto/Forex pairs, Entry, TP, and SL. No login required

## Input

```json
{
  "targets": [
    "learn2tradenews"
  ],
  "limit": 10,
  "enableDiscovery": true,
  "discoveryKeywords": [
    "forex trading signals",
    "crypto trading signals"
  ],
  "discoveryErrMin": 15,
  "discoverySubsMin": 1000,
  "discoveryMaxPerKeyword": 20,
  "saveToDataset": true,
  "saveDiscoveredChannels": false,
  "sendToWebhook": false,
  "webhookUrl": "https://signalpulse-1078991946448.europe-west2.run.app/api/incoming-apify-signal",
  "webhookSecret": "***"
}
```

## Output

```json
{
  "pair": {
    "label": "Pair",
    "format": "text"
  },
  "market": {
    "label": "Market",
    "format": "text"
  },
  "action": {
    "label": "Action",
    "format": "text"
  },
  "entry": {
    "label": "Entry",
    "format": "array"
  },
  "entryType": {
    "label": "Entry Type",
    "format": "text"
  },
  "tp": {
    "label": "Take Profits",
    "format": "array"
  },
  "sl": {
    "label": "Stop Loss",
    "format": "number"
  },
  "riskReward": {
    "label": "R:R",
    "format": "text"
  },
  "confidence": {
    "label": "Confidence",
    "format": "number"
  },
  "analysis": {
    "label": "Analysis",
    "format": "text"
  },
  "sourceChannel": {
    "label": "Channel",
    "format": "text"
  },
  "publishedAt": {
    "label": "Published at",
    "format": "datetime"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "datetime"
  },
  "messageUrl": {
    "label": "Message",
    "format": "link"
  },
  "parsedBy": {
    "label": "Parsed by",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Telegram Trading Signals Scraper](https://apify.com/stellaboost/telegram-trading-signals-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/stellaboost/telegram-trading-signals-scraper) to learn more, explore other use cases, and run it yourself.