scan_forex_pairs
tradingview.comScans multiple forex pairs on https://www.tradingview.com and returns live price, change, bid/ask, volume, recommendation signals, RSI, moving averages, and Classic pivot levels for each pair. Useful for watchlists and signal screening across symbols in one call.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is scan_forex_pairs?
Scans multiple forex pairs on https://www.tradingview.com and returns live price, change, bid/ask, volume, recommendation signals, RSI, moving averages, and Classic pivot levels for each pair. Useful for watchlists and signal screening across symbols in one call. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass symbols, timeframe, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"pairs": [
{
"symbol": "<string>"
}
],
"source": "<string>",
"timeframe": "<string>",
"fetched_at": "<string>",
"pair_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/c1ff0b68-6ff1-4094-a807-673d11aaad15/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "c1ff0b68-6ff1-4094-a807-673d11aaad15",
"variables": {
"symbols": "DEFAULT_SYMBOLS",
"timeframe": "1d",
"timeout_seconds": 20
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="c1ff0b68-6ff1-4094-a807-673d11aaad15") — the "scan_forex_pairs" function, which scans multiple forex pairs on https://www.tradingview.com and returns live price, change, bid/ask, volume, recommendation signals, RSI, moving averages, and Classic pivot levels for each pair. Useful for watchlists and signal screening across symbols in one call.. It takes symbols (str), timeframe (str), timeout_seconds (int). Return the result as structured JSON.