get_forex_technicals
tradingview.comReturns detailed forex technical analysis from https://www.tradingview.com, including oscillator values and actions, EMA/SMA levels, technical ratings, and Classic, Fibonacci, Camarilla, Woodie, and Demark pivots.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_forex_technicals?
Returns detailed forex technical analysis from https://www.tradingview.com, including oscillator values and actions, EMA/SMA levels, technical ratings, and Classic, Fibonacci, Camarilla, Woodie, and Demark pivots. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass pair, exchange, timeframe and get the result back without maintaining a scraper.
Response
{
"pair": "<string>",
"symbol": "<string>",
"summary": {
"overall": {
"score": 0,
"signal": "<string>"
},
"oscillators": {
"score": 0,
"signal": "<string>"
},
"moving_averages": {
"score": 0,
"signal": "<string>"
}
},
"exchange": "<string>",
"timeframe": "<string>",
"observed_at": "<string>",
"oscillators": {
"macd": {
"macd": 0,
"name": "<string>",
"action": "<string>",
"parameters": "<string>",
"signal_line": 0
},
"momentum": {
"name": "<string>",
"value": 0,
"action": "<string>",
"parameters": "<string>",
"previous_value": 0
},
"stochastic": {
"d": 0,
"k": 0,
"name": "<string>",
"action": "<string>",
"parameters": "<string>",
"previous_d": 0,
"previous_k": 0
},
"bull_bear_power": {
"name": "<string>",
"value": 0,
"action": "<string>",
"recommendation_score": 0
},
"awesome_oscillator": {
"name": "<string>",
"value": 0,
"action": "<string>",
"previous_value": 0,
"two_periods_ago": 0
},
"stochastic_rsi_fast": {
"name": "<string>",
"value": 0,
"action": "<string>",
"parameters": "<string>",
"recommendation_score": 0
},
"ultimate_oscillator": {
"name": "<string>",
"value": 0,
"action": "<string>",
"parameters": "<string>",
"recommendation_score": 0
},
"williams_percent_range": {
"name": "<string>",
"value": 0,
"action": "<string>",
"parameters": "<string>",
"recommendation_score": 0
},
"commodity_channel_index": {
"name": "<string>",
"value": 0,
"action": "<string>",
"parameters": "<string>",
"previous_value": 0
},
"relative_strength_index": {
"name": "<string>",
"value": 0,
"action": "<string>",
"parameters": "<string>",
"previous_value": 0
},
"average_directional_index": {
"name": "<string>",
"value": 0,
"action": "<string>",
"parameters": "<string>",
"negative_di": 0,
"positive_di": 0,
"previous_negative_di": 0,
"previous_positive_di": 0
}
},
"pivot_points": {
"demark": {
"r1": 0,
"s1": 0,
"pivot": 0
},
"woodie": {
"r1": 0,
"r2": 0,
"r3": 0,
"s1": 0,
"s2": 0,
"s3": 0,
"pivot": 0
},
"classic": {
"r1": 0,
"r2": 0,
"r3": 0,
"s1": 0,
"s2": 0,
"s3": 0,
"pivot": 0
},
"camarilla": {
"r1": 0,
"r2": 0,
"r3": 0,
"s1": 0,
"s2": 0,
"s3": 0,
"pivot": 0
},
"fibonacci": {
"r1": 0,
"r2": 0,
"r3": 0,
"s1": 0,
"s2": 0,
"s3": 0,
"pivot": 0
}
},
"current_price": 0,
"moving_averages": [
{
"name": "<string>",
"value": 0,
"action": "<string>",
"parameters": "<string>",
"average_type": "<string>",
"recommendation_score": 0
}
],
"oscillator_counts": {
"buy": 0,
"sell": 0,
"neutral": 0
},
"moving_average_counts": {
"buy": 0,
"sell": 0,
"neutral": 0
}
}Call it
curl --location 'https://us-prod.notte.cc/functions/7399aefe-4941-40e9-8da9-ea5ff47adbf1/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "7399aefe-4941-40e9-8da9-ea5ff47adbf1",
"variables": {
"pair": "EURUSD",
"exchange": "OANDA",
"timeframe": "1d"
}
}'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="7399aefe-4941-40e9-8da9-ea5ff47adbf1") — the "get_forex_technicals" function, which returns detailed forex technical analysis from https://www.tradingview.com, including oscillator values and actions, EMA/SMA levels, technical ratings, and Classic, Fibonacci, Camarilla, Woodie, and Demark pivots.. It takes pair (str), exchange (str), timeframe (str). Return the result as structured JSON.