TradingView Data API Docs
Access 160,000+ stocks, forex, cryptocurrencies, and ETF data from around the world. Supports REST API, real-time market data workflows, and ultra-low latency WebSocket streaming.
Basic Information
- Base URL:
https://tradingview-data1.p.rapidapi.com - RapidAPI Host:
tradingview-data1.p.rapidapi.com - API Version: 1.2.0
- Supported Format: JSON
Need an implementation guide?
If you are building a broker dashboard, watchlist product, or charting workflow and want a production-oriented rollout plan instead of raw endpoint reference, start with the TradingView Implementation Guide for Brokers and Trading Platforms.
How to get your TradingView API key
To get your x-rapidapi-key, subscribe to the API on RapidAPI, then copy the key from the endpoint panel or open the API Playground and paste it into the authorization field.
AI Agent Skill
The fastest way to integrate this API into your AI agent is to install the tradingview-api-integration skill. One command gives Claude Code, Cursor, Codex, or any SKILL.md-compatible agent full knowledge of every endpoint, parameter, and response schema — no manual setup required.
Install the skill
npx skills add hypier/tradingview-api-integration-skill -g -y API key
Set RAPIDAPI_KEY in your environment, or run python3 scripts/tv_api.py --save-key YOUR_KEY once — the bundled client handles authentication from then on. Get a key on RapidAPI.
What you can ask after installing
- "Get Apple's current stock price and P/E ratio" — picks
GET /api/quote/NASDAQ:AAPLand the right indicators endpoint automatically. - "Build a watchlist endpoint returning price + RSI for 10 symbols" — selects
POST /api/quote/batchand writes the integration code. - "Screen for crypto with 24h volume over $100M" — fetches filter options first, then composes a valid screener request body.
Source: github.com/hypier/tradingview-api-integration-skill — or find it with npx skills find tradingview.
Authentication
All API requests require authentication via RapidAPI. Include the following headers in every request:
x-rapidapi-host: tradingview-data1.p.rapidapi.com
x-rapidapi-key: YOUR_RAPIDAPI_KEY Where to find the API key
Looking for the TradingView API key? The key is your RapidAPI subscription key. After subscribing, copy the value labeled x-rapidapi-key and use it in docs examples, the playground, or your backend proxy.
Rate Limit
Different subscription plans have different rate limits:
| Plan | Monthly Quota | Rate Limit | Price |
|---|---|---|---|
| Basic | 150 requests/month | 1000 requests/hour | Free |
| Pro | 30,000 requests/month | 5 requests/second | $10/month |
| Ultra | 100,000 requests/month | 5 requests/second | $30/month |
| Mega | 800,000 requests/month | 5 requests/second | $80/month |
Error Handling
API uses standard HTTP status codes to indicate request success or failure.
Common Status Codes
| Status Code | Name | Description |
|---|---|---|
200 | OK | Request successful |
400 | Bad Request | Invalid request parameters or missing required parameters |
401 | Unauthorized | Authentication failed or invalid API key |
404 | Not Found | Requested resource not found |
429 | Too Many Requests | Rate limit exceeded |
500 | Internal Server Error | Internal server error |
Error Response Format
{
"success": false,
"error": {
"code": "INVALID_SYMBOL",
"message": "Symbol not found or invalid",
"details": "The symbol 'INVALID:SYMBOL' does not exist"
}
} Health - Health Check
Used to check API server status and connection.
Price - Price Data
Get candlestick (K-line) data with support for multiple timeframes.
Get candlestick historical data for a specified trading pair
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
symbol | string | ✓ | Trading pair symbol |
Query Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
timeframe | string | 5 | Timeframe (1/5/15/30/60/240/D/W/M) (1, 5, 15, 30, 60, 240, D, W, M) | |
range | integer | 10 | Number of historical data points | |
to | integer | Target timestamp (Unix timestamp in seconds) | ||
type | string | Chart candle type. Supported values: Japanese, HeikinAshi, Range. Omit for HeikinAshi; use Japanese or an empty value for default Japanese candles. (Japanese, HeikinAshi, Range) |
Request Examples
curl --request GET \
--url 'https://tradingview-data1.p.rapidapi.com/api/price/BINANCE:BTCUSDT?timeframe=5&range=10' \
--header 'x-rapidapi-host: tradingview-data1.p.rapidapi.com' \
--header 'x-rapidapi-key: YOUR_RAPIDAPI_KEY' const symbol = 'BINANCE:BTCUSDT';
const params = new URLSearchParams({ timeframe: '5', range: '10' });
const response = await fetch(`https://tradingview-data1.p.rapidapi.com/api/price/${symbol}?${params}`, {
method: 'GET',
headers: {
'x-rapidapi-host': 'tradingview-data1.p.rapidapi.com',
'x-rapidapi-key': 'YOUR_RAPIDAPI_KEY'
}
});
const data = await response.json();
console.log(data); import requests
symbol = "BINANCE:BTCUSDT"
url = f"https://tradingview-data1.p.rapidapi.com/api/price/{symbol}"
params = {"timeframe": "5", "range": "10"}
headers = {
"x-rapidapi-host": "tradingview-data1.p.rapidapi.com",
"x-rapidapi-key": "YOUR_RAPIDAPI_KEY"
}
response = requests.get(url, params=params, headers=headers)
print(response.json()) Response Examples
{
"success": true,
"data": {
"symbol": "BINANCE:BTCUSDT",
"current": {
"time": 1776769080,
"open": 76761.31,
"close": 76761.2,
"max": 76761.31,
"min": 76754.38,
"volume": 2.21
},
"history": [
{
"time": 1776769080,
"open": 76761.31,
"close": 76761.2,
"max": 76761.31,
"min": 76754.38,
"volume": 2.21
},
{
"time": 1776769020,
"open": 76777.86,
"close": 76761.3,
"max": 76777.87,
"min": 76746.67,
"volume": 7.78
},
{
"time": 1776768960,
"open": 76804.68,
"close": 76777.86,
"max": 76810.56,
"min": 76777.86,
"volume": 9.34
},
{
"time": 1776768900,
"open": 76834,
"close": 76804.68,
"max": 76866.55,
"min": 76804.68,
"volume": 9.16
},
{
"time": 1776768840,
"open": 76817.42,
"close": 76834.01,
"max": 76850,
"min": 76808.08,
"volume": 9.59
},
{
"time": 1776768780,
"open": 76820.86,
"close": 76817.43,
"max": 76825,
"min": 76802.99,
"volume": 8.94
},
{
"time": 1776768720,
"open": 76788.56,
"close": 76820.87,
"max": 76823.55,
"min": 76743.23,
"volume": 40.73
},
{
"time": 1776768660,
"open": 76789.99,
"close": 76788.56,
"max": 76866.55,
"min": 76788.55,
"volume": 22.97
},
{
"time": 1776768600,
"open": 76730.49,
"close": 76790,
"max": 76790,
"min": 76730.49,
"volume": 15.86
},
{
"time": 1776768540,
"open": 76718.74,
"close": 76730.49,
"max": 76734.68,
"min": 76676.4,
"volume": 7.88
}
],
"info": {
"series_id": "ser_1",
"source2": {
"country": "MT",
"description": "Binance",
"exchange-type": "exchange",
"id": "BINANCE",
"name": "Binance",
"url": "https://www.binance.com/en"
},
"currency_code": "USDT",
"source_id": "BINANCE",
"subsession_id": "regular",
"provider_id": "binance",
"base_currency_id": "XTVCBTC",
"base_currency": "BTC",
"currency_id": "XTVCUSDT",
"format": "price",
"formatter": "price",
"pro_perm": "",
"volume_type": "base",
"measure": "price",
"allowed_adjustment": "none",
"short_description": "Bitcoin / TetherUS",
"variable_tick_size": "",
"name": "BTCUSDT",
"full_name": "BINANCE:BTCUSDT",
"pro_name": "BINANCE:BTCUSDT",
"base_name": [
"BINANCE:BTCUSDT"
],
"description": "Bitcoin / TetherUS",
"exchange": "Binance",
"pricescale": 100,
"pointvalue": 1,
"minmov": 1,
"session": "24x7",
"session_display": "24x7",
"subsessions": [
{
"description": "Regular Trading Hours",
"id": "regular",
"private": false,
"session": "24x7",
"session-display": "24x7"
}
],
"type": "spot",
"typespecs": [
"crypto",
"defi"
],
"has_intraday": true,
"fractional": false,
"listed_exchange": "BINANCE",
"legs": [
"BINANCE:BTCUSDT"
],
"is_tradable": true,
"minmove2": 0,
"timezone": "Etc/UTC",
"aliases": [],
"alternatives": [],
"is_replayable": true,
"has_adjustment": false,
"has_extended_hours": false,
"bar_source": "trade",
"bar_transform": "none",
"bar_fillgaps": false,
"visible_plots_set": "ohlcv",
"is-tickbars-available": true,
"exchange_listed_name": "Binance"
}
},
"msg": "Success"
} Batch get candlestick data for multiple trading pairs (max 10)
Request Examples
curl --request POST \
--url 'https://tradingview-data1.p.rapidapi.com/api/price/batch' \
--header 'Content-Type: application/json' \
--header 'x-rapidapi-host: tradingview-data1.p.rapidapi.com' \
--header 'x-rapidapi-key: YOUR_RAPIDAPI_KEY' \
--data '{"requests":[{"symbol":"BINANCE:BTCUSDT","timeframe":"60","range":20},{"symbol":"NASDAQ:AAPL","timeframe":"D","range":10}]}' const response = await fetch('https://tradingview-data1.p.rapidapi.com/api/price/batch', {
method: 'POST',
headers: { 'Content-Type': 'application/json', 'x-rapidapi-host': 'tradingview-data1.p.rapidapi.com',
'x-rapidapi-key': 'YOUR_RAPIDAPI_KEY' },
body: JSON.stringify({ requests: [
{ symbol: 'BINANCE:BTCUSDT', timeframe: '60', range: 20 },
{ symbol: 'NASDAQ:AAPL', timeframe: 'D', range: 10 }
]})
});
const data = await response.json();
console.log(data); import requests
url = "https://tradingview-data1.p.rapidapi.com/api/price/batch"
headers = { "Content-Type": "application/json", "x-rapidapi-host": "tradingview-data1.p.rapidapi.com",
"x-rapidapi-key": "YOUR_RAPIDAPI_KEY" }
data = {"requests": [
{"symbol": "BINANCE:BTCUSDT", "timeframe": "60", "range": 20},
{"symbol": "NASDAQ:AAPL", "timeframe": "D", "range": 10}
]}
response = requests.post(url, json=data, headers=headers)
print(response.json()) Response Examples
{
"success": true,
"data": {
"total": 1,
"successful": 1,
"failed": 0,
"data": [
{
"success": true,
"symbol": "BINANCE:BTCUSDT",
"current": {
"time": 1776765600,
"open": 76362.78,
"close": 76761.2,
"max": 76866.55,
"min": 76349.59,
"volume": 532.02
},
"history": [
{
"time": 1776765600,
"open": 76362.78,
"close": 76761.2,
"max": 76866.55,
"min": 76349.59,
"volume": 532.02
},
{
"time": 1776762000,
"open": 76507.21,
"close": 76362.77,
"max": 76587.82,
"min": 76155,
"volume": 582.67
},
{
"time": 1776758400,
"open": 76084.34,
"close": 76507.21,
"max": 76927.57,
"min": 76063.98,
"volume": 915.24
},
{
"time": 1776754800,
"open": 75974.12,
"close": 76084.34,
"max": 76300,
"min": 75814.26,
"volume": 1236.72
},
{
"time": 1776751200,
"open": 75802,
"close": 75974.11,
"max": 76129.95,
"min": 75703.85,
"volume": 408.87
},
{
"time": 1776747600,
"open": 75813.8,
"close": 75802,
"max": 75981.1,
"min": 75782.75,
"volume": 321.54
},
{
"time": 1776744000,
"open": 75710.31,
"close": 75813.81,
"max": 75823.49,
"min": 75600,
"volume": 259.64
},
{
"time": 1776740400,
"open": 75581.33,
"close": 75710.3,
"max": 75721.12,
"min": 75474.77,
"volume": 256.25
},
{
"time": 1776736800,
"open": 75927.58,
"close": 75581.33,
"max": 75932.7,
"min": 75580,
"volume": 536.09
},
{
"time": 1776733200,
"open": 76092.46,
"close": 75927.59,
"max": 76263.4,
"min": 75866.01,
"volume": 391.14
},
{
"time": 1776729600,
"open": 75840.97,
"close": 76092.45,
"max": 76099.19,
"min": 75700,
"volume": 428.96
},
{
"time": 1776726000,
"open": 75974.24,
"close": 75840.97,
"max": 75974.24,
"min": 75617.6,
"volume": 301.78
},
{
"time": 1776722400,
"open": 75954.72,
"close": 75974.24,
"max": 76143.71,
"min": 75904.39,
"volume": 220.64
},
{
"time": 1776718800,
"open": 76276.18,
"close": 75954.71,
"max": 76357.2,
"min": 75784.05,
"volume": 523.28
},
{
"time": 1776715200,
"open": 76296.97,
"close": 76276.17,
"max": 76558.62,
"min": 76113.07,
"volume": 1418.86
},
{
"time": 1776711600,
"open": 76423.69,
"close": 76296.96,
"max": 76486.67,
"min": 76154.49,
"volume": 1368.12
},
{
"time": 1776708000,
"open": 75898.14,
"close": 76423.69,
"max": 76453.19,
"min": 75898.14,
"volume": 1544.76
},
{
"time": 1776704400,
"open": 75338.75,
"close": 75898.14,
"max": 75991.47,
"min": 75289.92,
"volume": 642.61
},
{
"time": 1776700800,
"open": 75716.78,
"close": 75338.74,
"max": 75723.99,
"min": 75299.26,
"volume": 630.72
},
{
"time": 1776697200,
"open": 75034.79,
"close": 75716.77,
"max": 75772.72,
"min": 74702,
"volume": 1196.95
}
],
"info": {
"series_id": "ser_1",
"source2": {
"country": "MT",
"description": "Binance",
"exchange-type": "exchange",
"id": "BINANCE",
"name": "Binance",
"url": "https://www.binance.com/en"
},
"currency_code": "USDT",
"source_id": "BINANCE",
"subsession_id": "regular",
"provider_id": "binance",
"base_currency_id": "XTVCBTC",
"base_currency": "BTC",
"currency_id": "XTVCUSDT",
"format": "price",
"formatter": "price",
"pro_perm": "",
"volume_type": "base",
"measure": "price",
"allowed_adjustment": "none",
"short_description": "Bitcoin / TetherUS",
"variable_tick_size": "",
"name": "BTCUSDT",
"full_name": "BINANCE:BTCUSDT",
"pro_name": "BINANCE:BTCUSDT",
"base_name": [
"BINANCE:BTCUSDT"
],
"description": "Bitcoin / TetherUS",
"exchange": "Binance",
"pricescale": 100,
"pointvalue": 1,
"minmov": 1,
"session": "24x7",
"session_display": "24x7",
"subsessions": [
{
"description": "Regular Trading Hours",
"id": "regular",
"private": false,
"session": "24x7",
"session-display": "24x7"
}
],
"type": "spot",
"typespecs": [
"crypto",
"defi"
],
"has_intraday": true,
"fractional": false,
"listed_exchange": "BINANCE",
"legs": [
"BINANCE:BTCUSDT"
],
"is_tradable": true,
"minmove2": 0,
"timezone": "Etc/UTC",
"aliases": [],
"alternatives": [],
"is_replayable": true,
"has_adjustment": false,
"has_extended_hours": false,
"bar_source": "trade",
"bar_transform": "none",
"bar_fillgaps": false,
"visible_plots_set": "ohlcv",
"is-tickbars-available": true,
"exchange_listed_name": "Binance"
}
}
]
},
"msg": "Success"
} Supported candle types
Japanese- default Japanese candles. Usetype=Japaneseor an emptytypevalue to request native TradingView candles.HeikinAshi- smoothed candles; this remains the default whentypeis omitted for backwards compatibility.Range- candles built from a fixed price range per bar.
Quote - Real-time Quote
Get real-time market quote data including price, volume, bid/ask spread, and more.
Get real-time quote data for a specified trading pair
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
symbol | string | ✓ | Trading pair symbol |
Query Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
session | string | regular | Trading session (regular/extended/premarket/postmarket) | |
fields | string | all | Return fields (`all`, `price`, `enhanced`, or a comma-separated custom field list). Commonly used extended fields include bid_size, ask_size, listed_exchange, regular_close, regular_close_time, market_cap_calc, enterprise_value_current, last_splits, isin, cusip, and figi. |
Request Examples
curl --request GET \
--url 'https://tradingview-data1.p.rapidapi.com/api/quote/NASDAQ:AAPL' \
--header 'x-rapidapi-host: tradingview-data1.p.rapidapi.com' \
--header 'x-rapidapi-key: YOUR_RAPIDAPI_KEY' const symbol = 'NASDAQ:AAPL';
const response = await fetch(`https://tradingview-data1.p.rapidapi.com/api/quote/${symbol}`, {
method: 'GET',
headers: {
'x-rapidapi-host': 'tradingview-data1.p.rapidapi.com',
'x-rapidapi-key': 'YOUR_RAPIDAPI_KEY'
}
});
const data = await response.json();
console.log(data); import requests
symbol = "NASDAQ:AAPL"
url = f"https://tradingview-data1.p.rapidapi.com/api/quote/{symbol}"
headers = {
"x-rapidapi-host": "tradingview-data1.p.rapidapi.com",
"x-rapidapi-key": "YOUR_RAPIDAPI_KEY"
}
response = requests.get(url, headers=headers)
print(response.json()) Response Examples
{
"success": true,
"data": {
"symbol": "NASDAQ:AAPL",
"data": {
"bid": 271.94,
"ask": 272.32,
"earnings_per_share_basic_ttm": 7.9334,
"current_session": "pre_market",
"market_cap_basic": 4008685001793,
"chp": 1.04,
"rchp": -0.37,
"provider_id": "ice",
"type": "stock",
"update_mode": "streaming",
"fractional": false,
"price_52_week_high": 288.62,
"pro_name": "NASDAQ:AAPL",
"rch": -1.01,
"open_price": 270.33,
"lp_time": 1776729598,
"ceo": "Timothy Donald Cook",
"total_shares_outstanding_current": 14681100000,
"prev_close_price": 270.23,
"ch": 2.82,
"lp": 273.05,
"price_percent_change_52_week": 38.4634888438134,
"currency-logoid": "country/US",
"short_name": "AAPL",
"high_price": 274.275,
"total_revenue": 416161000000,
"earnings_release_date": 1769722200,
"all_time_high": 288.62,
"description": "Apple Inc.",
"rtc": 272.04,
"sector": "Electronic Technology",
"logoid": "apple",
"volume": 36590169,
"recommendation_mark": 1.443396,
"beta_1_year": 1.1557966,
"original_name": "BATS:AAPL",
"minmov": 1,
"country_code": "US",
"language": "en",
"price_52_week_low": 193.25,
"web_site_url": "http://www.apple.com",
"local_description": "Apple Inc.",
"price_earnings_ttm": 34.18988334725069,
"industry": "Telecommunications Equipment",
"currency_code": "USD",
"average_volume": 43846173.29999931,
"business_description": "Apple, Inc. engages in the design, manufacture, and sale of smartphones, personal computers, tablets, wearables and accessories, and other varieties of related services. It operates through the following geographical segments: Americas, Europe, Greater China, Japan, and Rest of Asia Pacific. The Americas segment includes North and South America. The Europe segment consists of European countries, as well as India, the Middle East, and Africa. The Greater China segment comprises China, Hong Kong, and Taiwan. The Rest of Asia Pacific segment includes Australia and Asian countries. Its products and services include iPhone, Mac, iPad, AirPods, Apple TV, Apple Watch, Beats products, AppleCare, iCloud, digital content stores, streaming, and licensing services. The company was founded by Steven Paul Jobs, Ronald Gerald Wayne, and Stephen G. Wozniak in April 1976 and is headquartered in Cupertino, CA.",
"rtc_time": 1776769104,
"price_earnings": 34.18988334725069,
"low_price": 270.29,
"exchange": "Cboe One",
"timezone": "America/New_York",
"pricescale": 100,
"all_time_low": 0.049107,
"is_tradable": true,
"minmove2": 0,
"earnings_release_next_date": 1777581000,
"founded": 1976,
"dividends_yield": 0.38088262223036073,
"basic_eps_net_income": 7.4931
}
},
"msg": "Success"
} Batch get real-time quotes for multiple trading pairs (max 10)
Request Examples
curl --request POST \
--url 'https://tradingview-data1.p.rapidapi.com/api/quote/batch' \
--header 'Content-Type: application/json' \
--header 'x-rapidapi-host: tradingview-data1.p.rapidapi.com' \
--header 'x-rapidapi-key: YOUR_RAPIDAPI_KEY' \
--data '{"symbols":["NASDAQ:AAPL","NYSE:TSLA","BINANCE:BTCUSDT"]}' const response = await fetch('https://tradingview-data1.p.rapidapi.com/api/quote/batch', {
method: 'POST',
headers: { 'Content-Type': 'application/json', 'x-rapidapi-host': 'tradingview-data1.p.rapidapi.com',
'x-rapidapi-key': 'YOUR_RAPIDAPI_KEY' },
body: JSON.stringify({ symbols: ['NASDAQ:AAPL', 'NYSE:TSLA', 'BINANCE:BTCUSDT'] })
});
const data = await response.json();
console.log(data); import requests
url = "https://tradingview-data1.p.rapidapi.com/api/quote/batch"
headers = { "Content-Type": "application/json", "x-rapidapi-host": "tradingview-data1.p.rapidapi.com",
"x-rapidapi-key": "YOUR_RAPIDAPI_KEY" }
data = {"symbols": ["NASDAQ:AAPL", "NYSE:TSLA", "BINANCE:BTCUSDT"]}
response = requests.post(url, json=data, headers=headers)
print(response.json()) Response Examples
{
"success": true,
"data": {
"total": 2,
"successful": 2,
"failed": 0,
"data": [
{
"success": true,
"symbol": "BINANCE:BTCUSDT",
"data": {
"bid": 76761.2,
"ask": 76761.21,
"current_session": "market",
"chp": 1.21,
"rchp": null,
"provider_id": "binance",
"type": "spot",
"update_mode": "streaming",
"fractional": false,
"price_52_week_high": 126199.63,
"pro_name": "BINANCE:BTCUSDT",
"rch": null,
"open_price": 75840.97,
"lp_time": 1776769112,
"prev_close_price": 75840.97,
"ch": 920.24,
"lp": 76761.21,
"price_percent_change_52_week": -10.175390153751087,
"currency-logoid": "crypto/XTVCUSDT",
"short_name": "BTCUSDT",
"high_price": 76927.57,
"all_time_high": 126199.63,
"description": "Bitcoin / TetherUS",
"rtc": null,
"volume": 5869.16258,
"original_name": "BINANCE:BTCUSDT",
"minmov": 1,
"price_52_week_low": 60000,
"format": "price",
"currency_code": "USDT",
"average_volume": 16394.661909,
"rtc_time": null,
"low_price": 75474.77,
"exchange": "Binance",
"base-currency-logoid": "crypto/XTVCBTC",
"timezone": "Etc/UTC",
"pricescale": 100,
"all_time_low": 2817,
"is_tradable": true,
"minmove2": 0
}
},
{
"success": true,
"symbol": "BINANCE:ETHUSDT",
"data": {
"bid": 2333,
"ask": 2333.01,
"current_session": "market",
"chp": 0.83,
"rchp": null,
"provider_id": "binance",
"type": "spot",
"update_mode": "streaming",
"fractional": false,
"price_52_week_high": 4956.78,
"pro_name": "BINANCE:ETHUSDT",
"rch": null,
"open_price": 2313.84,
"lp_time": 1776769113,
"prev_close_price": 2313.85,
"ch": 19.16,
"lp": 2333.01,
"price_percent_change_52_week": 46.077134361455514,
"currency-logoid": "crypto/XTVCUSDT",
"short_name": "ETHUSDT",
"high_price": 2338.75,
"all_time_high": 4956.78,
"description": "Ethereum / TetherUS",
"rtc": null,
"volume": 66934.6523,
"original_name": "BINANCE:ETHUSDT",
"minmov": 1,
"price_52_week_low": 1722.9,
"format": "price",
"currency_code": "USDT",
"average_volume": 308551.30876000004,
"rtc_time": null,
"low_price": 2300.01,
"exchange": "Binance",
"base-currency-logoid": "crypto/XTVCETH",
"timezone": "Etc/UTC",
"pricescale": 100,
"all_time_low": 81.79,
"is_tradable": true,
"minmove2": 0
}
}
]
},
"msg": "Success"
} Search - Market Search
Search for symbols, names, or descriptions globally by keyword.
Search stocks, cryptocurrencies, and other markets by name, symbol, ISIN, or CUSIP. `EXCHANGE:SYMBOL` input, such as `NASDAQ:AAPL`, is automatically split into the symbol text and exchange filter. TradingView parameters `search_type`, `domain`, and `promo` are fixed by the server.
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
query | string | ✓ | Search keyword. Supports instrument name, ticker symbol/code, ISIN, and CUSIP. `EXCHANGE:SYMBOL` input (for example, `NASDAQ:AAPL`) is automatically sent to TradingView as `text=AAPL&exchange=NASDAQ`. |
Query Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
filter | string | Filter condition (stock/crypto/forex/futures/index/funds/bond/options/undefined) (stock, crypto, forex, futures, index, funds, bond, options, undefined) | ||
hl | integer | 0 | Enable matched-keyword highlighting (0 or 1). Defaults to 0. (0, 1) | |
exchange | string | Exchange filter, for example NASDAQ. Ignored when query uses EXCHANGE:SYMBOL format. | ||
lang | string | Result language. Defaults to an empty string. | ||
sort_by_country | string | Country code used to prioritize results, for example CN. Defaults to an empty string. | ||
enable_grouping | boolean | false | Group matching results. Defaults to false. |
Request Examples
curl --request GET \
--url 'https://tradingview-data1.p.rapidapi.com/api/search/market/apple?filter=stock' \
--header 'x-rapidapi-host: tradingview-data1.p.rapidapi.com' \
--header 'x-rapidapi-key: YOUR_RAPIDAPI_KEY' const query = 'apple';
const params = new URLSearchParams({ filter: 'stock' });
const response = await fetch(`https://tradingview-data1.p.rapidapi.com/api/search/market/${query}?${params}`, {
method: 'GET',
headers: {
'x-rapidapi-host': 'tradingview-data1.p.rapidapi.com',
'x-rapidapi-key': 'YOUR_RAPIDAPI_KEY'
}
});
const data = await response.json();
console.log(data); import requests
query = "apple"
url = f"https://tradingview-data1.p.rapidapi.com/api/search/market/{query}"
params = {"filter": "stock"}
headers = {
"x-rapidapi-host": "tradingview-data1.p.rapidapi.com",
"x-rapidapi-key": "YOUR_RAPIDAPI_KEY"
}
response = requests.get(url, params=params, headers=headers)
print(response.json()) Response Examples
{
"success": true,
"data": {
"markets": [
{
"symbol": "AAPL",
"description": "Apple Inc.",
"type": "stock",
"exchange": "NASDAQ",
"found_by_isin": false,
"found_by_cusip": false,
"cusip": "037833100",
"isin": "US0378331005",
"cik_code": "0000320193",
"currency_code": "USD",
"currency-logoid": "country/US",
"logoid": "apple",
"logo": {
"style": "single",
"logoid": "apple"
},
"provider_id": "ice",
"source_logoid": "source/NASDAQ",
"source2": {
"id": "NASDAQ",
"name": "Nasdaq Stock Market",
"description": "Nasdaq Stock Market"
},
"source_id": "NASDAQ",
"country": "US",
"is_primary_listing": true,
"typespecs": [
"common"
],
"id": "NASDAQ:AAPL",
"fullExchange": "NASDAQ",
"full_name": "NASDAQ:AAPL"
},
{
"symbol": "AAPL",
"description": "APPLE INC / US DOLLAR",
"type": "stock",
"exchange": "Pyth",
"found_by_isin": false,
"found_by_cusip": false,
"currency_code": "USD",
"currency-logoid": "country/US",
"provider_id": "pyth",
"source_logoid": "provider/pyth",
"source2": {
"id": "PYTH",
"name": "Pyth",
"description": "Pyth"
},
"source_id": "PYTH",
"typespecs": [
"crypto",
"oracle"
],
"prefix": "PYTH",
"id": "PYTH:AAPL",
"fullExchange": "Pyth",
"full_name": "PYTH:AAPL"
},
{
"symbol": "AAPL",
"description": "Apple Inc. Shs Cert Deposito Arg Repr 0.05 Shs",
"type": "dr",
"exchange": "BYMA",
"found_by_isin": false,
"found_by_cusip": false,
"isin": "ARDEUT116183",
"currency_code": "ARS",
"currency-logoid": "country/AR",
"logoid": "apple",
"logo": {
"style": "single",
"logoid": "apple"
},
"provider_id": "ice",
"source_logoid": "source/BCBA",
"source2": {
"id": "BCBA",
"name": "Buenos Aires Stock Exchange",
"description": "Buenos Aires Stock Exchange"
},
"source_id": "BCBA",
"country": "AR",
"prefix": "BCBA",
"id": "BCBA:AAPL",
"fullExchange": "BYMA",
"full_name": "BCBA:AAPL"
},
{
"symbol": "AAPL",
"description": "Apple Inc. Shs Canadian Depositary Receipt Repr Shs Reg S",
"type": "dr",
"exchange": "TSX",
"found_by_isin": false,
"found_by_cusip": false,
"cusip": "03785Y100",
"isin": "CA03785Y1007",
"currency_code": "CAD",
"currency-logoid": "country/CA",
"logoid": "apple",
"logo": {
"style": "single",
"logoid": "apple"
},
"provider_id": "ice",
"source_logoid": "source/TSX",
"source2": {
"id": "TSX",
"name": "Toronto Stock Exchange",
"description": "Toronto Stock Exchange"
},
"source_id": "TSX",
"country": "CA",
"id": "TSX:AAPL",
"fullExchange": "TSX",
"full_name": "TSX:AAPL"
},
{
"symbol": "AAPL",
"description": "Apple Inc.",
"type": "stock",
"exchange": "BMV",
"found_by_isin": false,
"found_by_cusip": false,
"cusip": "037833100",
"isin": "US0378331005",
"currency_code": "MXN",
"currency-logoid": "country/MX",
"logoid": "apple",
"logo": {
"style": "single",
"logoid": "apple"
},
"provider_id": "ice",
"source_logoid": "source/BMV",
"source2": {
"id": "BMV",
"name": "Mexican Stock Exchange",
"description": "Mexican Stock Exchange"
},
"source_id": "BMV",
"country": "MX",
"typespecs": [
"common"
],
"id": "BMV:AAPL",
"fullExchange": "BMV",
"full_name": "BMV:AAPL"
},
{
"symbol": "AAPL",
"description": "Apple Inc.",
"type": "stock",
"exchange": "BIVA",
"found_by_isin": false,
"found_by_cusip": false,
"cusip": "037833100",
"isin": "US0378331005",
"currency_code": "MXN",
"currency-logoid": "country/MX",
"logoid": "apple",
"logo": {
"style": "single",
"logoid": "apple"
},
"provider_id": "sixgroup",
"source_logoid": "source/BIVA",
"source2": {
"id": "BIVA",
"name": "Institutional Stock Exchange",
"description": "Institutional Stock Exchange"
},
"source_id": "BIVA",
"country": "MX",
"typespecs": [
"common"
],
"id": "BIVA:AAPL",
"fullExchange": "BIVA",
"full_name": "BIVA:AAPL"
},
{
"symbol": "AAPL",
"description": "Apple Inc.",
"type": "stock",
"exchange": "BCS",
"found_by_isin": false,
"found_by_cusip": false,
"cusip": "037833100",
"isin": "US0378331005",
"currency_code": "USD",
"currency-logoid": "country/US",
"logoid": "apple",
"logo": {
"style": "single",
"logoid": "apple"
},
"provider_id": "ice",
"source_logoid": "source/BCS",
"source2": {
"id": "BCS",
"name": "Santiago Stock Exchange",
"description": "Santiago Stock Exchange"
},
"source_id": "BCS",
"country": "CL",
"typespecs": [
"common"
],
"id": "BCS:AAPL",
"fullExchange": "BCS",
"full_name": "BCS:AAPL"
},
{
"symbol": "AAPL",
"description": "Apple Inc.",
"type": "stock",
"exchange": "SIX",
"found_by_isin": false,
"found_by_cusip": false,
"cusip": "037833100",
"isin": "US0378331005",
"currency_code": "CHF",
"currency-logoid": "country/CH",
"logoid": "apple",
"logo": {
"style": "single",
"logoid": "apple"
},
"provider_id": "ice",
"source_logoid": "source/SIX",
"source2": {
"id": "SIX",
"name": "SIX Swiss Exchange",
"description": "SIX Swiss Exchange"
},
"source_id": "SIX",
"country": "CH",
"typespecs": [
"common"
],
"id": "SIX:AAPL",
"fullExchange": "SIX",
"full_name": "SIX:AAPL"
},
{
"symbol": "AAPL",
"description": "Apple Inc. Shs Canadian Depositary Receipt Repr Shs Reg S",
"type": "dr",
"exchange": "NEO",
"found_by_isin": false,
"found_by_cusip": false,
"cusip": "03785Y100",
"isin": "CA03785Y1007",
"currency_code": "CAD",
"currency-logoid": "country/CA",
"logoid": "apple",
"logo": {
"style": "single",
"logoid": "apple"
},
"provider_id": "ice",
"source_logoid": "source/NEO",
"source2": {
"id": "NEO",
"name": "Cboe Canada",
"description": "Cboe Canada"
},
"source_id": "NEO",
"country": "CA",
"id": "NEO:AAPL",
"fullExchange": "NEO",
"full_name": "NEO:AAPL"
},
{
"symbol": "AAPL",
"description": "Apple Inc.",
"type": "stock",
"exchange": "BVL",
"found_by_isin": false,
"found_by_cusip": false,
"cusip": "037833100",
"isin": "US0378331005",
"currency_code": "USD",
"currency-logoid": "country/US",
"logoid": "apple",
"logo": {
"style": "single",
"logoid": "apple"
},
"provider_id": "ice",
"source_logoid": "source/BVL",
"source2": {
"id": "BVL",
"name": "Lima Stock Exchange",
"description": "Lima Stock Exchange"
},
"source_id": "BVL",
"country": "PE",
"typespecs": [
"common"
],
"id": "BVL:AAPL",
"fullExchange": "BVL",
"full_name": "BVL:AAPL"
},
{
"symbol": "AAPL",
"description": "Apple Inc.",
"type": "stock",
"exchange": "BOATS",
"found_by_isin": false,
"found_by_cusip": false,
"cusip": "037833100",
"isin": "US0378331005",
"currency_code": "USD",
"currency-logoid": "country/US",
"logoid": "apple",
"logo": {
"style": "single",
"logoid": "apple"
},
"provider_id": "ice",
"source_logoid": "source/BOATS",
"source2": {
"id": "BOATS",
"name": "Blue Ocean Alternative Trade System",
"description": "Blue Ocean Alternative Trade System"
},
"source_id": "BOATS",
"country": "US",
"typespecs": [
"common"
],
"id": "BOATS:AAPL",
"fullExchange": "BOATS",
"full_name": "BOATS:AAPL"
},
{
"symbol": "AAPL",
"description": "Apple Inc.",
"type": "stock",
"exchange": "BVC",
"found_by_isin": false,
"found_by_cusip": false,
"cusip": "037833100",
"isin": "US0378331005",
"currency_code": "COP",
"currency-logoid": "country/CO",
"logoid": "apple",
"logo": {
"style": "single",
"logoid": "apple"
},
"provider_id": "ice",
"source_logoid": "source/BVC",
"source2": {
"id": "BVC",
"name": "Colombia Securities Exchange",
"description": "Colombia Securities Exchange"
},
"source_id": "BVC",
"country": "CO",
"typespecs": [
"common"
],
"id": "BVC:AAPL",
"fullExchange": "BVC",
"full_name": "BVC:AAPL"
},
{
"symbol": "AAPL",
"description": "Apple Inc.",
"type": "stock",
"exchange": "GPW",
"found_by_isin": false,
"found_by_cusip": false,
"cusip": "037833100",
"isin": "US0378331005",
"currency_code": "PLN",
"currency-logoid": "country/PL",
"logoid": "apple",
"logo": {
"style": "single",
"logoid": "apple"
},
"provider_id": "ice",
"source_logoid": "source/GPW",
"source2": {
"id": "GPW",
"name": "Warsaw Stock Exchange",
"description": "Warsaw Stock Exchange"
},
"source_id": "GPW",
"country": "PL",
"typespecs": [
"common"
],
"id": "GPW:AAPL",
"fullExchange": "GPW",
"full_name": "GPW:AAPL"
},
{
"symbol": "AAPL",
"description": "Apple Inc.",
"type": "stock",
"exchange": "VIE",
"found_by_isin": false,
"found_by_cusip": false,
"cusip": "037833100",
"isin": "US0378331005",
"currency_code": "EUR",
"currency-logoid": "country/EU",
"logoid": "apple",
"logo": {
"style": "single",
"logoid": "apple"
},
"provider_id": "ice",
"source_logoid": "source/VIE",
"source2": {
"id": "VIE",
"name": "Vienna Stock Exchange",
"description": "Vienna Stock Exchange"
},
"source_id": "VIE",
"country": "AT",
"typespecs": [
"common"
],
"id": "VIE:AAPL",
"fullExchange": "VIE",
"full_name": "VIE:AAPL"
},
{
"symbol": "AAPLD",
"description": "Apple Inc. Shs Cert Deposito Arg Repr 0.05 Shs",
"type": "dr",
"exchange": "BYMA",
"found_by_isin": false,
"found_by_cusip": false,
"isin": "ARDEUT116183",
"currency_code": "USD",
"currency-logoid": "country/US",
"logoid": "apple",
"logo": {
"style": "single",
"logoid": "apple"
},
"provider_id": "ice",
"source_logoid": "source/BCBA",
"source2": {
"id": "BCBA",
"name": "Buenos Aires Stock Exchange",
"description": "Buenos Aires Stock Exchange"
},
"source_id": "BCBA",
"country": "AR",
"prefix": "BCBA",
"id": "BCBA:AAPLD",
"fullExchange": "BYMA",
"full_name": "BCBA:AAPLD"
},
{
"symbol": "AAPLB",
"description": "Apple Inc. Shs Cert Deposito Arg Repr 0.05 Shs",
"type": "dr",
"exchange": "BYMA",
"found_by_isin": false,
"found_by_cusip": false,
"isin": "ARDEUT116183",
"currency_code": "ARS",
"currency-logoid": "country/AR",
"logoid": "apple",
"logo": {
"style": "single",
"logoid": "apple"
},
"provider_id": "ice",
"source_logoid": "source/BCBA",
"source2": {
"id": "BCBA",
"name": "Buenos Aires Stock Exchange",
"description": "Buenos Aires Stock Exchange"
},
"source_id": "BCBA",
"country": "AR",
"prefix": "BCBA",
"id": "BCBA:AAPLB",
"fullExchange": "BYMA",
"full_name": "BCBA:AAPLB"
},
{
"symbol": "AAPLC",
"description": "Apple Inc. Shs Cert Deposito Arg Repr 0.05 Shs",
"type": "dr",
"exchange": "BYMA",
"found_by_isin": false,
"found_by_cusip": false,
"isin": "ARDEUT116183",
"currency_code": "USD",
"currency-logoid": "country/US",
"logoid": "apple",
"logo": {
"style": "single",
"logoid": "apple"
},
"provider_id": "ice",
"source_logoid": "source/BCBA",
"source2": {
"id": "BCBA",
"name": "Buenos Aires Stock Exchange",
"description": "Buenos Aires Stock Exchange"
},
"source_id": "BCBA",
"country": "AR",
"prefix": "BCBA",
"id": "BCBA:AAPLC",
"fullExchange": "BYMA",
"full_name": "BCBA:AAPLC"
},
{
"symbol": "AAPLN",
"description": "Apple Inc.",
"type": "stock",
"exchange": "TURQUOISE",
"found_by_isin": false,
"found_by_cusip": false,
"cusip": "037833100",
"isin": "US0378331005",
"currency_code": "USD",
"currency-logoid": "country/US",
"logoid": "apple",
"logo": {
"style": "single",
"logoid": "apple"
},
"provider_id": "ice",
"source_logoid": "source/TURQUOISE",
"source2": {
"id": "TURQUOISE",
"name": "Turquoise",
"description": "Turquoise"
},
"source_id": "TURQUOISE",
"country": "GB",
"typespecs": [
"common"
],
"id": "TURQUOISE:AAPLN",
"fullExchange": "TURQUOISE",
"full_name": "TURQUOISE:AAPLN"
},
{
"symbol": "AAPU",
"description": "Direxion Daily AAPL Bull 2X ETF",
"type": "fund",
"exchange": "NASDAQ",
"found_by_isin": false,
"found_by_cusip": false,
"cusip": "25461A874",
"isin": "US25461A8743",
"currency_code": "USD",
"currency-logoid": "country/US",
"logoid": "direxion",
"logo": {
"style": "single",
"logoid": "direxion"
},
"provider_id": "ice",
"source_logoid": "source/NASDAQ",
"source2": {
"id": "NASDAQ",
"name": "Nasdaq Stock Market",
"description": "Nasdaq Stock Market"
},
"source_id": "NASDAQ",
"country": "US",
"typespecs": [
"etf"
],
"id": "NASDAQ:AAPU",
"fullExchange": "NASDAQ",
"full_name": "NASDAQ:AAPU"
},
{
"symbol": "AAPL80",
"description": "Apple Inc. Units Thailand Depository Receipt Repr 0.001 Sh",
"type": "dr",
"exchange": "SET",
"found_by_isin": false,
"found_by_cusip": false,
"isin": "TH0150120408",
"currency_code": "THB",
"currency-logoid": "country/TH",
"logoid": "apple",
"logo": {
"style": "single",
"logoid": "apple"
},
"provider_id": "ice",
"source_logoid": "source/SET",
"source2": {
"id": "SET",
"name": "Stock Exchange of Thailand",
"description": "Stock Exchange of Thailand"
},
"source_id": "SET",
"country": "TH",
"id": "SET:AAPL80",
"fullExchange": "SET",
"full_name": "SET:AAPL80"
},
{
"symbol": "AAPL01",
"description": "Apple Inc. Units Thailand Depositery Receipts Repr 0.01 Sh",
"type": "dr",
"exchange": "SET",
"found_by_isin": false,
"found_by_cusip": false,
"isin": "TH0809121500",
"currency_code": "THB",
"currency-logoid": "country/TH",
"logoid": "apple",
"logo": {
"style": "single",
"logoid": "apple"
},
"provider_id": "ice",
"source_logoid": "source/SET",
"source2": {
"id": "SET",
"name": "Stock Exchange of Thailand",
"description": "Stock Exchange of Thailand"
},
"source_id": "SET",
"country": "TH",
"id": "SET:AAPL01",
"fullExchange": "SET",
"full_name": "SET:AAPL01"
},
{
"symbol": "AAPL19",
"description": "Apple Inc. Units Thailand Depositery Receipts Repr 0.01 Sh",
"type": "dr",
"exchange": "SET",
"found_by_isin": false,
"found_by_cusip": false,
"isin": "TH8483124708",
"currency_code": "THB",
"currency-logoid": "country/TH",
"logoid": "apple",
"logo": {
"style": "single",
"logoid": "apple"
},
"provider_id": "ice",
"source_logoid": "source/SET",
"source2": {
"id": "SET",
"name": "Stock Exchange of Thailand",
"description": "Stock Exchange of Thailand"
},
"source_id": "SET",
"country": "TH",
"id": "SET:AAPL19",
"fullExchange": "SET",
"full_name": "SET:AAPL19"
},
{
"symbol": "AAPL03",
"description": "Apple Inc. Units Thailand Depositery Receipts Repr 0.01 Sh",
"type": "dr",
"exchange": "SET",
"found_by_isin": false,
"found_by_cusip": false,
"isin": "TH0241121001",
"currency_code": "THB",
"currency-logoid": "country/TH",
"logoid": "apple",
"logo": {
"style": "single",
"logoid": "apple"
},
"provider_id": "ice",
"source_logoid": "source/SET",
"source2": {
"id": "SET",
"name": "Stock Exchange of Thailand",
"description": "Stock Exchange of Thailand"
},
"source_id": "SET",
"country": "TH",
"id": "SET:AAPL03",
"fullExchange": "SET",
"full_name": "SET:AAPL03"
},
{
"symbol": "AAPLCL",
"description": "Apple Inc.",
"type": "stock",
"exchange": "BCS",
"found_by_isin": false,
"found_by_cusip": false,
"cusip": "037833100",
"isin": "US0378331005",
"currency_code": "CLP",
"currency-logoid": "country/CL",
"logoid": "apple",
"logo": {
"style": "single",
"logoid": "apple"
},
"provider_id": "ice",
"source_logoid": "source/BCS",
"source2": {
"id": "BCS",
"name": "Santiago Stock Exchange",
"description": "Santiago Stock Exchange"
},
"source_id": "BCS",
"country": "CL",
"typespecs": [
"common"
],
"id": "BCS:AAPLCL",
"fullExchange": "BCS",
"full_name": "BCS:AAPLCL"
},
{
"symbol": "AAPL34",
"description": "Apple Inc. Shs Unsponsored Brazilian Depository Receipt Repr 0.05 Sh",
"type": "dr",
"exchange": "BMFBOVESPA",
"found_by_isin": false,
"found_by_cusip": false,
"isin": "BRAAPLBDR004",
"currency_code": "BRL",
"currency-logoid": "country/BR",
"logoid": "apple",
"logo": {
"style": "single",
"logoid": "apple"
},
"provider_id": "ice",
"source_logoid": "source/BMFBOVESPA",
"source2": {
"id": "BMFBOVESPA",
"name": "B3",
"description": "B3"
},
"source_id": "BMFBOVESPA",
"country": "BR",
"id": "BMFBOVESPA:AAPL34",
"fullExchange": "BMFBOVESPA",
"full_name": "BMFBOVESPA:AAPL34"
},
{
"symbol": "AAPLWXX",
"description": "JPMorgan Chase Financial Company LLC Dual Directional Buffer Note AAPLWXX",
"type": "structured",
"exchange": "NASDAQ",
"found_by_isin": false,
"found_by_cusip": false,
"cusip": "48133VKW9",
"isin": "US48133VKW99",
"currency_code": "USD",
"currency-logoid": "country/US",
"provider_id": "ice",
"source_logoid": "source/NASDAQ",
"source2": {
"id": "NASDAQ",
"name": "Nasdaq Stock Market",
"description": "Nasdaq Stock Market"
},
"source_id": "NASDAQ",
"country": "US",
"params": [
"eod"
],
"id": "NASDAQ:AAPLWXX",
"fullExchange": "NASDAQ",
"full_name": "NASDAQ:AAPLWXX"
},
{
"symbol": "AAPLYXX",
"description": "Barclays Bank PLC Point to Point Buffer Note AAPLYXX",
"type": "structured",
"exchange": "NASDAQ",
"found_by_isin": false,
"found_by_cusip": false,
"cusip": "06749NUN0",
"isin": "US06749NUN01",
"currency_code": "USD",
"currency-logoid": "country/US",
"logoid": "barclays",
"logo": {
"style": "single",
"logoid": "barclays"
},
"provider_id": "ice",
"source_logoid": "source/NASDAQ",
"source2": {
"id": "NASDAQ",
"name": "Nasdaq Stock Market",
"description": "Nasdaq Stock Market"
},
"source_id": "NASDAQ",
"country": "US",
"params": [
"eod"
],
"id": "NASDAQ:AAPLYXX",
"fullExchange": "NASDAQ",
"full_name": "NASDAQ:AAPLYXX"
},
{
"symbol": "AAPLDXX",
"description": "Barclays Bank PLC Capped Point to Point Fully Principally Protected Note AAPLDXX",
"type": "structured",
"exchange": "NASDAQ",
"found_by_isin": false,
"found_by_cusip": false,
"cusip": "06749NV58",
"isin": "US06749NV583",
"currency_code": "USD",
"currency-logoid": "country/US",
"logoid": "barclays",
"logo": {
"style": "single",
"logoid": "barclays"
},
"provider_id": "ice",
"source_logoid": "source/NASDAQ",
"source2": {
"id": "NASDAQ",
"name": "Nasdaq Stock Market",
"description": "Nasdaq Stock Market"
},
"source_id": "NASDAQ",
"country": "US",
"params": [
"eod"
],
"id": "NASDAQ:AAPLDXX",
"fullExchange": "NASDAQ",
"full_name": "NASDAQ:AAPLDXX"
},
{
"symbol": "AAPLTXX",
"description": "Bank of Montreal Capped Point to Point Fully Principally Protected Note AAPLTXX",
"type": "structured",
"exchange": "NASDAQ",
"found_by_isin": false,
"found_by_cusip": false,
"cusip": "06374VRH1",
"isin": "US06374VRH14",
"currency_code": "USD",
"currency-logoid": "country/US",
"logoid": "bank-of-montreal",
"logo": {
"style": "single",
"logoid": "bank-of-montreal"
},
"provider_id": "ice",
"source_logoid": "source/NASDAQ",
"source2": {
"id": "NASDAQ",
"name": "Nasdaq Stock Market",
"description": "Nasdaq Stock Market"
},
"source_id": "NASDAQ",
"country": "US",
"params": [
"eod"
],
"id": "NASDAQ:AAPLTXX",
"fullExchange": "NASDAQ",
"full_name": "NASDAQ:AAPLTXX"
},
{
"symbol": "AAPLZXX",
"description": "Citigroup Global Markets Holdings Inc. Issuer Callable Contingent Interest Barrier Note AAPLZXX",
"type": "structured",
"exchange": "NASDAQ",
"found_by_isin": false,
"found_by_cusip": false,
"cusip": "17331CYT8",
"isin": "US17331CYT88",
"currency_code": "USD",
"currency-logoid": "country/US",
"logoid": "citigroup",
"logo": {
"style": "single",
"logoid": "citigroup"
},
"provider_id": "ice",
"source_logoid": "source/NASDAQ",
"source2": {
"id": "NASDAQ",
"name": "Nasdaq Stock Market",
"description": "Nasdaq Stock Market"
},
"source_id": "NASDAQ",
"country": "US",
"params": [
"eod"
],
"id": "NASDAQ:AAPLZXX",
"fullExchange": "NASDAQ",
"full_name": "NASDAQ:AAPLZXX"
},
{
"symbol": "AAPLIXX",
"description": "Barclays Bank PLC Point to Point Worst Of Buffer Note AAPLIXX",
"type": "structured",
"exchange": "NASDAQ",
"found_by_isin": false,
"found_by_cusip": false,
"cusip": "06749NZ70",
"isin": "US06749NZ709",
"currency_code": "USD",
"currency-logoid": "country/US",
"logoid": "barclays",
"logo": {
"style": "single",
"logoid": "barclays"
},
"provider_id": "ice",
"source_logoid": "source/NASDAQ",
"source2": {
"id": "NASDAQ",
"name": "Nasdaq Stock Market",
"description": "Nasdaq Stock Market"
},
"source_id": "NASDAQ",
"country": "US",
"params": [
"eod"
],
"id": "NASDAQ:AAPLIXX",
"fullExchange": "NASDAQ",
"full_name": "NASDAQ:AAPLIXX"
},
{
"symbol": "AAPLVXX",
"description": "Citigroup Global Markets Holdings Inc. Capped Point to Point Worst Of Barrier Note AAPLVXX",
"type": "structured",
"exchange": "NASDAQ",
"found_by_isin": false,
"found_by_cusip": false,
"cusip": "17331CEM5",
"isin": "US17331CEM55",
"currency_code": "USD",
"currency-logoid": "country/US",
"logoid": "citigroup",
"logo": {
"style": "single",
"logoid": "citigroup"
},
"provider_id": "ice",
"source_logoid": "source/NASDAQ",
"source2": {
"id": "NASDAQ",
"name": "Nasdaq Stock Market",
"description": "Nasdaq Stock Market"
},
"source_id": "NASDAQ",
"country": "US",
"params": [
"eod"
],
"id": "NASDAQ:AAPLVXX",
"fullExchange": "NASDAQ",
"full_name": "NASDAQ:AAPLVXX"
},
{
"symbol": "AAPW",
"description": "Roundhill AAPL WeeklyPay ETF",
"type": "fund",
"exchange": "CBOE",
"found_by_isin": false,
"found_by_cusip": false,
"cusip": "77926X791",
"isin": "US77926X7912",
"currency_code": "USD",
"currency-logoid": "country/US",
"logoid": "roundhmetave-aeoa",
"logo": {
"style": "single",
"logoid": "roundhmetave-aeoa"
},
"provider_id": "ice",
"source_logoid": "source/CBOE",
"source2": {
"id": "CBOE",
"name": "Cboe",
"description": "Cboe"
},
"source_id": "CBOE",
"country": "US",
"typespecs": [
"etf"
],
"id": "CBOE:AAPW",
"fullExchange": "CBOE",
"full_name": "CBOE:AAPW"
},
{
"symbol": "AAPD",
"description": "Direxion Daily AAPL Bear 1X ETF",
"type": "fund",
"exchange": "NASDAQ",
"found_by_isin": false,
"found_by_cusip": false,
"cusip": "25461A304",
"isin": "US25461A3041",
"currency_code": "USD",
"currency-logoid": "country/US",
"logoid": "direxion",
"logo": {
"style": "single",
"logoid": "direxion"
},
"provider_id": "ice",
"source_logoid": "source/NASDAQ",
"source2": {
"id": "NASDAQ",
"name": "Nasdaq Stock Market",
"description": "Nasdaq Stock Market"
},
"source_id": "NASDAQ",
"country": "US",
"typespecs": [
"etf"
],
"id": "NASDAQ:AAPD",
"fullExchange": "NASDAQ",
"full_name": "NASDAQ:AAPD"
},
{
"symbol": "AAPB",
"description": "GraniteShares 2x Long AAPL Daily ETF",
"type": "fund",
"exchange": "NASDAQ",
"found_by_isin": false,
"found_by_cusip": false,
"cusip": "38747R884",
"isin": "US38747R8842",
"currency_code": "USD",
"currency-logoid": "country/US",
"logoid": "graniteshares",
"logo": {
"style": "single",
"logoid": "graniteshares"
},
"provider_id": "ice",
"source_logoid": "source/NASDAQ",
"source2": {
"id": "NASDAQ",
"name": "Nasdaq Stock Market",
"description": "Nasdaq Stock Market"
},
"source_id": "NASDAQ",
"country": "US",
"typespecs": [
"etf"
],
"id": "NASDAQ:AAPB",
"fullExchange": "NASDAQ",
"full_name": "NASDAQ:AAPB"
},
{
"symbol": "AAPY",
"description": "Kurv Yield Premium Strategy Apple (AAPL) ETF",
"type": "fund",
"exchange": "CBOE",
"found_by_isin": false,
"found_by_cusip": false,
"cusip": "500948500",
"isin": "US5009485005",
"currency_code": "USD",
"currency-logoid": "country/US",
"logoid": "neos-etf-trust-kurv-yield-premium-strategy-microsoft-msft-etf",
"logo": {
"style": "single",
"logoid": "neos-etf-trust-kurv-yield-premium-strategy-microsoft-msft-etf"
},
"provider_id": "ice",
"source_logoid": "source/CBOE",
"source2": {
"id": "CBOE",
"name": "Cboe",
"description": "Cboe"
},
"source_id": "CBOE",
"country": "US",
"typespecs": [
"etf"
],
"id": "CBOE:AAPY",
"fullExchange": "CBOE",
"full_name": "CBOE:AAPY"
},
{
"symbol": "APLY",
"description": "YieldMax AAPL Option Income Strategy ETF",
"type": "fund",
"exchange": "NYSE",
"found_by_isin": false,
"found_by_cusip": false,
"cusip": "88634T857",
"isin": "US88634T8577",
"currency_code": "USD",
"currency-logoid": "country/US",
"logoid": "yieldmax-tsla-option-income-strategy-etf",
"logo": {
"style": "single",
"logoid": "yieldmax-tsla-option-income-strategy-etf"
},
"provider_id": "ice",
"source_logoid": "source/AMEX",
"source2": {
"id": "AMEX",
"name": "NYSE American",
"description": "NYSE American"
},
"source_id": "AMEX",
"country": "US",
"typespecs": [
"etf"
],
"prefix": "AMEX",
"id": "AMEX:APLY",
"fullExchange": "NYSE Arca",
"full_name": "AMEX:APLY"
},
{
"symbol": "AAPI",
"description": "IncomeShares Apple (AAPL) Options ETP",
"type": "fund",
"exchange": "LSE",
"found_by_isin": false,
"found_by_cusip": false,
"isin": "XS2901884663",
"currency_code": "GBX",
"currency-logoid": "country/GB",
"logoid": "leverage-shares",
"logo": {
"style": "single",
"logoid": "leverage-shares"
},
"provider_id": "ice",
"source_logoid": "source/LSE",
"source2": {
"id": "LSE",
"name": "London Stock Exchange",
"description": "London Stock Exchange"
},
"source_id": "LSE",
"country": "GB",
"typespecs": [
"etf"
],
"id": "LSE:AAPI",
"fullExchange": "LSE",
"full_name": "LSE:AAPI"
},
{
"symbol": "F34588",
"description": "VON F LEV LG X 3 VONT 3X L AAPL V 180627",
"type": "structured",
"exchange": "MILSEDEX",
"found_by_isin": false,
"found_by_cusip": false,
"isin": "DE000VU329Q9",
"currency_code": "EUR",
"currency-logoid": "country/EU",
"provider_id": "ice",
"source_logoid": "source/MILSEDEX",
"source2": {
"id": "MILSEDEX",
"name": "Euronext Milan",
"description": "Euronext Milan"
},
"source_id": "MILSEDEX",
"country": "IT",
"id": "MILSEDEX:F34588",
"fullExchange": "MILSEDEX",
"full_name": "MILSEDEX:F34588"
},
{
"symbol": "AAPY",
"description": "IncomeShares Apple (AAPL) Options ETP",
"type": "fund",
"exchange": "LSE",
"found_by_isin": false,
"found_by_cusip": false,
"isin": "XS2901884663",
"currency_code": "USD",
"currency-logoid": "country/US",
"logoid": "leverage-shares",
"logo": {
"style": "single",
"logoid": "leverage-shares"
},
"provider_id": "ice",
"source_logoid": "source/LSE",
"source2": {
"id": "LSE",
"name": "London Stock Exchange",
"description": "London Stock Exchange"
},
"source_id": "LSE",
"country": "GB",
"typespecs": [
"etf"
],
"id": "LSE:AAPY",
"fullExchange": "LSE",
"full_name": "LSE:AAPY"
},
{
"symbol": "F34608",
"description": "VON F LEV SH X -3 VONT 3X S AAPL 180627",
"type": "structured",
"exchange": "MILSEDEX",
"found_by_isin": false,
"found_by_cusip": false,
"isin": "DE000VU32939",
"currency_code": "EUR",
"currency-logoid": "country/EU",
"provider_id": "ice",
"source_logoid": "source/MILSEDEX",
"source2": {
"id": "MILSEDEX",
"name": "Euronext Milan",
"description": "Euronext Milan"
},
"source_id": "MILSEDEX",
"country": "IT",
"id": "MILSEDEX:F34608",
"fullExchange": "MILSEDEX",
"full_name": "MILSEDEX:F34608"
},
{
"symbol": "F34630",
"description": "VON F LEV LG X 5 VONT 5X L AAPL V 180627",
"type": "structured",
"exchange": "MILSEDEX",
"found_by_isin": false,
"found_by_cusip": false,
"isin": "DE000VU33AR4",
"currency_code": "EUR",
"currency-logoid": "country/EU",
"provider_id": "ice",
"source_logoid": "source/MILSEDEX",
"source2": {
"id": "MILSEDEX",
"name": "Euronext Milan",
"description": "Euronext Milan"
},
"source_id": "MILSEDEX",
"country": "IT",
"id": "MILSEDEX:F34630",
"fullExchange": "MILSEDEX",
"full_name": "MILSEDEX:F34630"
},
{
"symbol": "F55447",
"description": "VON F LEV SH X -5 VONT 5X S AAPL 180627",
"type": "structured",
"exchange": "MILSEDEX",
"found_by_isin": false,
"found_by_cusip": false,
"isin": "DE000VC5LYF5",
"currency_code": "EUR",
"currency-logoid": "country/EU",
"provider_id": "ice",
"source_logoid": "source/MILSEDEX",
"source2": {
"id": "MILSEDEX",
"name": "Euronext Milan",
"description": "Euronext Milan"
},
"source_id": "MILSEDEX",
"country": "IT",
"id": "MILSEDEX:F55447",
"fullExchange": "MILSEDEX",
"full_name": "MILSEDEX:F55447"
},
{
"symbol": "F80659",
"description": "VON EXP AAPL/META/NVDA/MSFT 60 081127",
"type": "structured",
"exchange": "MILSEDEX",
"found_by_isin": false,
"found_by_cusip": false,
"isin": "DE000VH8GP52",
"currency_code": "EUR",
"currency-logoid": "country/EU",
"provider_id": "ice",
"source_logoid": "source/MILSEDEX",
"source2": {
"id": "MILSEDEX",
"name": "Euronext Milan",
"description": "Euronext Milan"
},
"source_id": "MILSEDEX",
"country": "IT",
"id": "MILSEDEX:F80659",
"fullExchange": "MILSEDEX",
"full_name": "MILSEDEX:F80659"
},
{
"symbol": "I76744",
"description": "MRX EXP AAPL/AMZN/GOOG/NVDA 50 100231",
"type": "structured",
"exchange": "EUROTLX",
"found_by_isin": false,
"found_by_cusip": false,
"isin": "IT0006767443",
"currency_code": "EUR",
"currency-logoid": "country/EU",
"provider_id": "ice",
"source_logoid": "source/EUROTLX",
"source2": {
"id": "EUROTLX",
"name": "BorsaItaliana",
"description": "BorsaItaliana"
},
"source_id": "EUROTLX",
"country": "IT",
"typespecs": [
"etn"
],
"id": "EUROTLX:I76744",
"fullExchange": "EUROTLX",
"full_name": "EUROTLX:I76744"
},
{
"symbol": "F92350",
"description": "VON EXP AAPL/GOOG/META/MSFT 55 021028",
"type": "structured",
"exchange": "MILSEDEX",
"found_by_isin": false,
"found_by_cusip": false,
"isin": "DE000VY0G7W3",
"currency_code": "EUR",
"currency-logoid": "country/EU",
"provider_id": "ice",
"source_logoid": "source/MILSEDEX",
"source2": {
"id": "MILSEDEX",
"name": "Euronext Milan",
"description": "Euronext Milan"
},
"source_id": "MILSEDEX",
"country": "IT",
"id": "MILSEDEX:F92350",
"fullExchange": "MILSEDEX",
"full_name": "MILSEDEX:F92350"
},
{
"symbol": "AAPU",
"description": "Savvylong 2X AAPL ETF",
"type": "fund",
"exchange": "TSX",
"found_by_isin": false,
"found_by_cusip": false,
"cusip": "54315B771",
"isin": "CA54315B7714",
"currency_code": "CAD",
"currency-logoid": "country/CA",
"logoid": "longpoint-etf-savvyshort-geared-crude-oil-etf",
"logo": {
"style": "single",
"logoid": "longpoint-etf-savvyshort-geared-crude-oil-etf"
},
"provider_id": "ice",
"source_logoid": "source/TSX",
"source2": {
"id": "TSX",
"name": "Toronto Stock Exchange",
"description": "Toronto Stock Exchange"
},
"source_id": "TSX",
"country": "CA",
"typespecs": [
"etf"
],
"id": "TSX:AAPU",
"fullExchange": "TSX",
"full_name": "TSX:AAPU"
},
{
"symbol": "AAPY",
"description": "IncomeShares Apple (AAPL) Options ETP",
"type": "fund",
"exchange": "GETTEX",
"found_by_isin": false,
"found_by_cusip": false,
"isin": "XS2901884663",
"currency_code": "EUR",
"currency-logoid": "country/EU",
"logoid": "leverage-shares",
"logo": {
"style": "single",
"logoid": "leverage-shares"
},
"provider_id": "sixgroup",
"source_logoid": "source/GETTEX",
"source2": {
"id": "GETTEX",
"name": "Gettex",
"description": "Gettex"
},
"source_id": "GETTEX",
"country": "DE",
"typespecs": [
"etf"
],
"id": "GETTEX:AAPY",
"fullExchange": "GETTEX",
"full_name": "GETTEX:AAPY"
},
{
"symbol": "AAPY",
"description": "IncomeShares Apple (AAPL) Options ETP",
"type": "fund",
"exchange": "XETR",
"found_by_isin": false,
"found_by_cusip": false,
"isin": "XS2901884663",
"currency_code": "EUR",
"currency-logoid": "country/EU",
"logoid": "leverage-shares",
"logo": {
"style": "single",
"logoid": "leverage-shares"
},
"provider_id": "ice",
"source_logoid": "source/XETR",
"source2": {
"id": "XETR",
"name": "Deutsche Borse Xetra",
"description": "Deutsche Borse Xetra"
},
"source_id": "XETR",
"country": "DE",
"typespecs": [
"etf"
],
"id": "XETR:AAPY",
"fullExchange": "XETR",
"full_name": "XETR:AAPY"
},
{
"symbol": "AAPY",
"description": "IncomeShares Apple (AAPL) Options ETP",
"type": "fund",
"exchange": "FWB",
"found_by_isin": false,
"found_by_cusip": false,
"isin": "XS2901884663",
"currency_code": "EUR",
"currency-logoid": "country/EU",
"logoid": "leverage-shares",
"logo": {
"style": "single",
"logoid": "leverage-shares"
},
"provider_id": "ice",
"source_logoid": "source/FWB",
"source2": {
"id": "FWB",
"name": "Frankfurt Stock Exchange",
"description": "Frankfurt Stock Exchange"
},
"source_id": "FWB",
"country": "DE",
"typespecs": [
"etf"
],
"id": "FWB:AAPY",
"fullExchange": "FWB",
"full_name": "FWB:AAPY"
}
],
"count": 50
},
"msg": "Success"
} Technical Analysis - Technical Analysis
Get professional technical analysis signals and detailed technical indicator data.
Get technical analysis data for a specified trading pair (multi-timeframe summary with buy/sell/neutral signals)
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
symbol | string | ✓ | Trading pair symbol (e.g., BINANCE:BTCUSDT / NASDAQ:AAPL) |
Request Examples
curl --request GET \
--url 'https://tradingview-data1.p.rapidapi.com/api/ta/NASDAQ:AAPL' \
--header 'x-rapidapi-host: tradingview-data1.p.rapidapi.com' \
--header 'x-rapidapi-key: YOUR_RAPIDAPI_KEY' const symbol = 'NASDAQ:AAPL';
const response = await fetch(`https://tradingview-data1.p.rapidapi.com/api/ta/${symbol}`, {
method: 'GET',
headers: {
'x-rapidapi-host': 'tradingview-data1.p.rapidapi.com',
'x-rapidapi-key': 'YOUR_RAPIDAPI_KEY'
}
});
const data = await response.json();
console.log(data); import requests
symbol = "NASDAQ:AAPL"
url = f"https://tradingview-data1.p.rapidapi.com/api/ta/{symbol}"
headers = {
"x-rapidapi-host": "tradingview-data1.p.rapidapi.com",
"x-rapidapi-key": "YOUR_RAPIDAPI_KEY"
}
response = requests.get(url, headers=headers)
print(response.json()) Response Examples
{
"success": true,
"data": {
"1": {
"Other": 0,
"All": 0.666,
"MA": 1.334
},
"5": {
"Other": -0.546,
"All": 0.528,
"MA": 1.6
},
"15": {
"Other": 0.182,
"All": 1.024,
"MA": 1.866
},
"60": {
"Other": 0.546,
"All": 1.206,
"MA": 1.866
},
"240": {
"Other": 0.364,
"All": 1.116,
"MA": 1.866
},
"1D": {
"Other": 0.364,
"All": 0.848,
"MA": 1.334
},
"1W": {
"Other": 0.182,
"All": -0.042,
"MA": -0.266
},
"1M": {
"Other": 0.364,
"All": 0.028,
"MA": -0.308
}
},
"msg": "Success"
} Get detailed technical indicator data for a specified trading pair (including RSI, MACD, Stoch, CCI, ADX, moving averages, pivot points, etc.). When interval is not 1D, data uses normalized field names without the TradingView suffix and raw_data preserves the original upstream keys.
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
symbol | string | ✓ | Trading pair symbol (e.g., NASDAQ:TSLA / BINANCE:BTCUSDT) |
Query Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
interval | string | Optional timeframe alias. Supports 1, 5, 15, 60, 120, 240, 1D, 1W, 1M and aliases like 1h, 2h, 4h. Default is 1D. |
Request Examples
curl --request GET \
--url 'https://tradingview-data1.p.rapidapi.com/api/ta/NASDAQ:AAPL/indicators' \
--header 'x-rapidapi-host: tradingview-data1.p.rapidapi.com' \
--header 'x-rapidapi-key: YOUR_RAPIDAPI_KEY' const symbol = 'NASDAQ:AAPL';
const response = await fetch(`https://tradingview-data1.p.rapidapi.com/api/ta/${symbol}/indicators`, {
method: 'GET',
headers: {
'x-rapidapi-host': 'tradingview-data1.p.rapidapi.com',
'x-rapidapi-key': 'YOUR_RAPIDAPI_KEY'
}
});
const data = await response.json();
console.log(data); import requests
symbol = "NASDAQ:AAPL"
url = f"https://tradingview-data1.p.rapidapi.com/api/ta/{symbol}/indicators"
headers = {
"x-rapidapi-host": "tradingview-data1.p.rapidapi.com",
"x-rapidapi-key": "YOUR_RAPIDAPI_KEY"
}
response = requests.get(url, headers=headers)
print(response.json()) Response Examples
{
"success": true,
"data": {
"ADX": 19.652487681663818,
"ADX+DI": 24.161442624343998,
"ADX+DI[1]": 24.107709917495246,
"ADX-DI": 15.05945224768997,
"ADX-DI[1]": 15.715010661700024,
"AO": 5023.2678823530005,
"AO[1]": 4773.818411764762,
"AO[2]": 4652.421588235346,
"BBPower": 3913.5008482531557,
"CCI20": 101.85872220705717,
"CCI20[1]": 86.76734493591583,
"EMA10": 74780.5606040116,
"EMA100": 75331.624080014,
"EMA20": 73240.35381466728,
"EMA200": 82719.03255409811,
"EMA30": 72383.40753068113,
"EMA50": 72130.97430961842,
"HullMA9": 75728.77085185186,
"Ichimoku.BLine": 71666.5,
"MACD.macd": 1763.4939112112334,
"MACD.signal": 1385.901728770365,
"Mom": 3711.8399999999965,
"Mom[1]": 2878.279999999999,
"Pivot.M.Camarilla.Middle": 69761.49333333333,
"Pivot.M.Camarilla.R1": 69292.81333333332,
"Pivot.M.Camarilla.R2": 70301.14666666667,
"Pivot.M.Camarilla.R3": 71309.48,
"Pivot.M.Camarilla.S1": 67276.14666666667,
"Pivot.M.Camarilla.S2": 66267.81333333332,
"Pivot.M.Camarilla.S3": 65259.479999999996,
"Pivot.M.Classic.Middle": 69761.49333333333,
"Pivot.M.Classic.R1": 74522.98666666666,
"Pivot.M.Classic.R2": 80761.49333333333,
"Pivot.M.Classic.R3": 91761.49333333333,
"Pivot.M.Classic.S1": 63522.986666666664,
"Pivot.M.Classic.S2": 58761.49333333333,
"Pivot.M.Classic.S3": 47761.49333333333,
"Pivot.M.Demark.Middle": 71321.12,
"Pivot.M.Demark.R1": 77642.23999999999,
"Pivot.M.Demark.S1": 66642.23999999999,
"Pivot.M.Fibonacci.Middle": 69761.49333333333,
"Pivot.M.Fibonacci.R1": 73963.49333333333,
"Pivot.M.Fibonacci.R2": 76559.49333333333,
"Pivot.M.Fibonacci.R3": 80761.49333333333,
"Pivot.M.Fibonacci.S1": 65559.49333333333,
"Pivot.M.Fibonacci.S2": 62963.49333333333,
"Pivot.M.Fibonacci.S3": 58761.49333333333,
"Pivot.M.Woodie.Middle": 69392.245,
"Pivot.M.Woodie.R1": 73784.48999999999,
"Pivot.M.Woodie.R2": 80392.245,
"Pivot.M.Woodie.R3": 84784.48999999999,
"Pivot.M.Woodie.S1": 62784.48999999999,
"Pivot.M.Woodie.S2": 58392.244999999995,
"Pivot.M.Woodie.S3": 51784.48999999999,
"RSI": 62.32032133359257,
"RSI[1]": 60.33441551235267,
"Rec.BBPower": 0,
"Rec.HullMA9": 1,
"Rec.Ichimoku": 0,
"Rec.Stoch.RSI": 0,
"Rec.UO": 0,
"Rec.VWMA": 1,
"Rec.WR": 0,
"Recommend.All": 0.4242424242424242,
"Recommend.MA": 0.6666666666666666,
"Recommend.Other": 0.18181818181818182,
"SMA10": 74841.63299999997,
"SMA100": 74029.35089999987,
"SMA20": 72412.94299999985,
"SMA200": 86127.83279999996,
"SMA30": 71062.32999999997,
"SMA50": 70728.8624,
"Stoch.D": 72.09683327831802,
"Stoch.D[1]": 66.97928657906914,
"Stoch.K": 71.23027622473747,
"Stoch.K[1]": 58.75843873494322,
"Stoch.RSI.K": 49.046112060737244,
"UO": 54.236726965625174,
"VWMA": 72554.81333444374,
"W.R": -20.058472098639886,
"close": 76755
},
"msg": "Success"
} News - Financial News
Get the latest financial news and market information.
Get financial news list. Supports standard query params plus any additional TradingView news-flow filter keys as extra query params. Default behavior: user_prostatus is sent as non_pro when omitted; sector/provider/cursor are optional and are not sent unless provided.
Query Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
symbol | string | Trading pair symbol (optional) | ||
lang | string | en | Language code (en/zh-Hans/ja, etc.) | |
market | string | Market type (stock/crypto, etc.) | ||
market_country | string | Market country code (US/CN, etc.) | ||
sector | string | Optional industry filter. Passed to TradingView as filter=sector:value only when provided. |
Request Examples
curl --request GET \
--url 'https://tradingview-data1.p.rapidapi.com/api/news?symbol=NASDAQ:AAPL&lang=en' \
--header 'x-rapidapi-host: tradingview-data1.p.rapidapi.com' \
--header 'x-rapidapi-key: YOUR_RAPIDAPI_KEY' const params = new URLSearchParams({ symbol: 'NASDAQ:AAPL', lang: 'en' });
const response = await fetch(`https://tradingview-data1.p.rapidapi.com/api/news?${params}`, {
method: 'GET',
headers: {
'x-rapidapi-host': 'tradingview-data1.p.rapidapi.com',
'x-rapidapi-key': 'YOUR_RAPIDAPI_KEY'
}
});
const data = await response.json();
console.log(data); import requests
url = "https://tradingview-data1.p.rapidapi.com/api/news"
params = {"symbol": "NASDAQ:AAPL", "lang": "en"}
headers = {
"x-rapidapi-host": "tradingview-data1.p.rapidapi.com",
"x-rapidapi-key": "YOUR_RAPIDAPI_KEY"
}
response = requests.get(url, params=params, headers=headers)
print(response.json()) Response Examples
{
"success": true,
"data": {
"items": [
{
"id": "tag:reuters.com,2026:newsml_L1N41401E:0",
"title": "Apple's new CEO is a product perfectionist taking on the AI age",
"published": 1776765600,
"urgency": 2,
"permission": "headline",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "NASDAQ:MSFT",
"logoid": "microsoft"
},
{
"symbol": "NASDAQ:NVDA",
"logoid": "nvidia"
}
],
"storyPath": "/news/reuters.com,2026:newsml_L1N41401E:0-apple-s-new-ceo-is-a-product-perfectionist-taking-on-the-ai-age/",
"provider": {
"id": "reuters",
"name": "Reuters",
"logo_id": "reuters"
}
},
{
"id": "DJN_DN20260421001775:0",
"title": "Tim Cook Told Me His Advice for Apple's Next CEO — WSJ",
"published": 1776763800,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/DJN_DN20260421001775:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "DJN_DN20260421001551:0",
"title": "How Apple Stock Has Fared Under Tim Cook — WSJ",
"published": 1776761940,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/DJN_DN20260421001551:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "DJN_DN20260421001485:0",
"title": "Apple AI Ambitions Helped by Incoming CEO's Hardware Experience — Market Talk",
"published": 1776760800,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/DJN_DN20260421001485:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "stocktwits:9cafd3a72094b:0",
"title": "Nasdaq, S&P 500 Futures Steady As Iran Talks, Warsh Hearing Set Market Tone: Why AAPL, AMZN, POET, FRMI, IBRX Are In Focus",
"published": 1776760781,
"urgency": 2,
"link": "https://stocktwits.com/news-articles/markets/equity/nasdaq-sp500-futures-rise-aapl-amzn-poet-frmi-ibrx-stocks-to-watch/cZBIfgmRICh",
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "NASDAQ:AMZN",
"logoid": "amazon"
},
{
"symbol": "BCBA:SPY",
"logoid": "spdr-sandp500-etf-tr"
}
],
"storyPath": "/news/stocktwits:9cafd3a72094b:0/",
"provider": {
"id": "stocktwits",
"name": "Stocktwits",
"logo_id": "stocktwits",
"url": "https://stocktwits.com/"
}
},
{
"id": "DJN_DN20260420009243:0",
"title": "Apple CEO Cook Plans His Departure. The Tech Giant He Leaves Behind Won't Be the Same. — Barrons.com",
"published": 1776759180,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/DJN_DN20260420009243:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "stocktwits:5692ebe19094b:0",
"title": "Apple's New CEO Led A Silicon 'Brain Transplant' — Analyst Says That's Exactly Why John Ternus Is Right For Next AI Phase",
"published": 1776757050,
"urgency": 2,
"link": "https://stocktwits.com/news-articles/markets/equity/apple-s-new-ceo-led-a-silicon-brain-transplant-analyst-says-that-s-exactly-why-john-ternus-is-right-for-next-ai-phase/cZBI9pwRICa",
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/stocktwits:5692ebe19094b:0/",
"provider": {
"id": "stocktwits",
"name": "Stocktwits",
"logo_id": "stocktwits",
"url": "https://stocktwits.com/"
}
},
{
"id": "tradingview:d76fed67f094b:0",
"title": "AAPL: Apple Stock Tumbles as CEO Tim Cook Announces Departure After 15 Years",
"published": 1776755710,
"urgency": 2,
"link": "https://www.tradingview.com",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/tradingview:d76fed67f094b:0-aapl-apple-stock-tumbles-as-ceo-tim-cook-announces-departure-after-15-years/",
"provider": {
"id": "tradingview",
"name": "TradingView",
"logo_id": "tradingview-snaps"
}
},
{
"id": "sharecast:674e9b6e8094b:0",
"title": " Apple names John Ternus as CEO to replace Tim Cook ",
"published": 1776753179,
"urgency": 2,
"link": "https://www.sharecast.com/news/news-and-announcements/apple-names-john-ternus-as-ceo-to-replace-tim-cook--22320629.html",
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/sharecast:674e9b6e8094b:0/",
"provider": {
"id": "sharecast",
"name": "ShareCast",
"logo_id": "sharecast"
}
},
{
"id": "stocktwits:99c909d7b094b:0",
"title": "Apple After Tim Cook: Analysts See Continuity Pick, Not Vision Play Under New CEO John Ternus",
"published": 1776740903,
"urgency": 2,
"link": "https://stocktwits.com/news-articles/markets/equity/apple-after-tim-cook-analysts-see-continuity-pick-not-vision-play-under-new-ceo-john-ternus/cZBIPluRIzz",
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/stocktwits:99c909d7b094b:0/",
"provider": {
"id": "stocktwits",
"name": "Stocktwits",
"logo_id": "stocktwits",
"url": "https://stocktwits.com/"
}
},
{
"id": "DJN_DN20260420009691:0",
"title": "The Rise of Apple's New CEO: A Hardware Expert Takes Over in the AI Era — WSJ",
"published": 1776739500,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/DJN_DN20260420009691:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "tag:reuters.com,2026:newsml_L6N41400X:0",
"title": "Apple CEO’s best bet: channel both Jobs and Cook",
"published": 1776733042,
"urgency": 2,
"permission": "headline",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "NASDAQ:TSLA",
"logoid": "tesla"
}
],
"storyPath": "/news/reuters.com,2026:newsml_L6N41400X:0-apple-ceo-s-best-bet-channel-both-jobs-and-cook/",
"provider": {
"id": "reuters",
"name": "Reuters",
"logo_id": "reuters"
}
},
{
"id": "DJN_SN20260420010143:0",
"title": "Apple CEO Tim Cook to step down after overseeing 1,900% stock surge. His successor faces big challenges.",
"published": 1776732180,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/DJN_SN20260420010143:0/",
"provider": {
"id": "market-watch",
"name": "MarketWatch",
"logo_id": "marketwatch"
}
},
{
"id": "DJN_DN20260420008139:0",
"title": "Tim Cook to Step Down as Apple Names New CEO — WSJ",
"published": 1776730980,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/DJN_DN20260420008139:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "dpa_afx:d24ca8bee7549:0",
"title": "Apple Names John Ternus CEO; Tim Cook To Become Executive Chairman",
"published": 1776723693,
"urgency": 2,
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/dpa_afx:d24ca8bee7549:0-apple-names-john-ternus-ceo-tim-cook-to-become-executive-chairman/",
"provider": {
"id": "dpa_afx",
"name": "dpa-AFX",
"logo_id": "dpa_afx"
}
},
{
"id": "tag:reuters.com,2026:newsml_L4N4131HC:0",
"title": "Who is John Ternus, Apple's new CEO?",
"published": 1776721816,
"urgency": 2,
"permission": "headline",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/reuters.com,2026:newsml_L4N4131HC:0-who-is-john-ternus-apple-s-new-ceo/",
"provider": {
"id": "reuters",
"name": "Reuters",
"logo_id": "reuters"
}
},
{
"id": "DJN_DN20260420008672:0",
"title": "Apple's New CEO Will Face Immediate Pressure on AI Strategy — Market Talk",
"published": 1776721080,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/DJN_DN20260420008672:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "tradingview:9a9b700e6fc12:0",
"title": "Apple's Tim Cook to Become Executive Chair; John Ternus Named CEO",
"published": 1776720780,
"urgency": 2,
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/tradingview:9a9b700e6fc12:0-apple-s-tim-cook-to-become-executive-chair-john-ternus-named-ceo/",
"provider": {
"id": "tradingview",
"name": "TradingView",
"logo_id": "tradingview-snaps"
}
},
{
"id": "DJN_DN20260420008527:0",
"title": "Apple's CEO Change Timing Will Garner Mixed Reaction, Analyst Says — Market Talk",
"published": 1776720240,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/DJN_DN20260420008527:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "DJN_DN20260420008407:0",
"title": "Apple Stock Down After-Hours After John Ternus Named Next CEO — WSJ",
"published": 1776719280,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/DJN_DN20260420008407:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "DJN_DN20260420008355:0",
"title": "Apple Picks Exec With Core Hardware Expertise as Next CEO — Market Talk",
"published": 1776719040,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/DJN_DN20260420008355:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "DJN_DN20260420008272:0",
"title": "Apple's Cook to Continue to Engage With Global Policymakers — Market Talk",
"published": 1776718620,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/DJN_DN20260420008272:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "stocktwits:0acb0ab69094b:0",
"title": "Apple Appoints New CEO; Tim Cook Shifts To Executive Chairman",
"published": 1776718532,
"urgency": 2,
"link": "https://stocktwits.com/news-articles/markets/equity/apple-appoints-new-ceo-tim-cook-shifts-to-executive-chairman/cZBdnvoRIzq",
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/stocktwits:0acb0ab69094b:0/",
"provider": {
"id": "stocktwits",
"name": "Stocktwits",
"logo_id": "stocktwits",
"url": "https://stocktwits.com/"
}
},
{
"id": "DJN_DN20260420008241:0",
"title": "Apple's Ends Months of Speculation Over Tim Cook's Successor — Market Talk",
"published": 1776718500,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/DJN_DN20260420008241:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "tag:reuters.com,2026:newsml_L4N4131GO:0",
"title": "Apple turns to hardware veteran Ternus as CEO to succeed Cook in AI age",
"published": 1776717647,
"urgency": 2,
"permission": "headline",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "NASDAQ:NVDA",
"logoid": "nvidia"
},
{
"symbol": "NASDAQ:GOOG",
"logoid": "alphabet"
},
{
"symbol": "NASDAQ:META",
"logoid": "meta-platforms"
}
],
"storyPath": "/news/reuters.com,2026:newsml_L4N4131GO:0-apple-turns-to-hardware-veteran-ternus-as-ceo-to-succeed-cook-in-ai-age/",
"provider": {
"id": "reuters",
"name": "Reuters",
"logo_id": "reuters"
}
},
{
"id": "tag:reuters.com,2026:newsml_FWN4130WL:0",
"title": "Johny Srouji Named Apple’s Chief Hardware Officer",
"published": 1776717291,
"urgency": 2,
"permission": "headline",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/reuters.com,2026:newsml_FWN4130WL:0-johny-srouji-named-apple-s-chief-hardware-officer/",
"provider": {
"id": "reuters",
"name": "Reuters",
"logo_id": "reuters"
}
},
{
"id": "tag:reuters.com,2026:newsml_L4N4131GB:0",
"title": "John Ternus to become Apple CEO, Tim Cook to become executive chairman",
"published": 1776717225,
"urgency": 2,
"permission": "headline",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/reuters.com,2026:newsml_L4N4131GB:0-john-ternus-to-become-apple-ceo-tim-cook-to-become-executive-chairman/",
"provider": {
"id": "reuters",
"name": "Reuters",
"logo_id": "reuters"
}
},
{
"id": "DJN_DN20260420007764_20260420007925:0",
"title": "Apple: Ternus Will Join the Bd of Directors, Also Effective Sept 1 >AAPL",
"published": 1776717180,
"urgency": 1,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/DJN_DN20260420007764_20260420007925:0/",
"is_flash": true,
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "DJN_DN20260420007764_20260420007885:0",
"title": "Apple: Transition, Which Was Approved Unanimously by the Bd of Directors, Follows a Thoughtful, Long-Term Succession Planning Process >AAPL",
"published": 1776717060,
"urgency": 1,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/DJN_DN20260420007764_20260420007885:0/",
"is_flash": true,
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "DJN_DN20260420007788_20260420007857:0",
"title": "Apple: Johny Srouji Will Become Chief Hardware Officer, Effective Immediately >AAPL",
"published": 1776717000,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/DJN_DN20260420007788_20260420007857:0/",
"is_flash": true,
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "DJN_DN20260420006199:0",
"title": "Apple Stock Can Hit $300 Despite Memory Headwinds, Analyst Says. Here's How. — Barrons.com",
"published": 1776703320,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/DJN_DN20260420006199:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "DJN_DN20260418000740:0",
"title": "Berkshire May Have Sold $15 Billion of Stocks Run by Former Manager — Barrons.com",
"published": 1776527760,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NYSE:AXP",
"logoid": "american-express"
},
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "NYSE:BRK.A",
"logoid": "berkshire-hathaway"
},
{
"symbol": "NYSE:COF",
"logoid": "capital-one"
},
{
"symbol": "NYSE:OXY",
"logoid": "occidental-petroleum"
}
],
"storyPath": "/news/DJN_DN20260418000740:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "stocktwits:5dd968a69094b:0",
"title": "Apple Clears Major Legal Hurdle After US Trade Tribunal Shuts Down Masimo’s Latest Watch Ban Attempt",
"published": 1776472317,
"urgency": 2,
"link": "https://stocktwits.com/news-articles/markets/equity/apple-clears-major-legal-hurdle-after-us-trade-tribunal-shuts-down-masimos-latest-watch-ban-attempt/cZJ6WUSRIUr",
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/stocktwits:5dd968a69094b:0/",
"provider": {
"id": "stocktwits",
"name": "Stocktwits",
"logo_id": "stocktwits",
"url": "https://stocktwits.com/"
}
},
{
"id": "tag:reuters.com,2026:newsml_L6N4101BB:0",
"title": "Apple defeats bid for new Apple Watch import ban at US trade tribunal ",
"published": 1776467696,
"urgency": 2,
"permission": "headline",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "NASDAQ:MASI",
"logoid": "masimo"
},
{
"symbol": "NYSE:DHR",
"logoid": "danaher"
}
],
"storyPath": "/news/reuters.com,2026:newsml_L6N4101BB:0-apple-defeats-bid-for-new-apple-watch-import-ban-at-us-trade-tribunal/",
"provider": {
"id": "reuters",
"name": "Reuters",
"logo_id": "reuters"
}
},
{
"id": "DJN_DN20260417004938:0",
"title": "Apple Seen Poised to Gain Smartphone Market Share — Market Talk",
"published": 1776441060,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/DJN_DN20260417004938:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "stocktwits:abfd331bf094b:0",
"title": "Apple’s China Surge Shows Pricing Power Matters In A Supply Crunch – Retail Bulls Take Notice",
"published": 1776435624,
"urgency": 2,
"link": "https://stocktwits.com/news-articles/markets/equity/apple-china-surge-shows-pricing-power-matters-in-a-supply-crunch-retail-bulls-take-notice/cZJUsxBRIUG",
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/stocktwits:abfd331bf094b:0/",
"provider": {
"id": "stocktwits",
"name": "Stocktwits",
"logo_id": "stocktwits",
"url": "https://stocktwits.com/"
}
},
{
"id": "DJN_DN20260417004032:0",
"title": "Apple Raised to Outperform From Neutral by BNP Paribas",
"published": 1776434400,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/DJN_DN20260417004032:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "tag:reuters.com,2026:newsml_L1N41008E:0",
"title": "Apple's iPhone shipments in China surge 20% in Q1, data shows",
"published": 1776414427,
"urgency": 2,
"permission": "headline",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "HKEX:1810",
"logoid": "xiaomi"
}
],
"storyPath": "/news/reuters.com,2026:newsml_L1N41008E:0-apple-s-iphone-shipments-in-china-surge-20-in-q1-data-shows/",
"provider": {
"id": "reuters",
"name": "Reuters",
"logo_id": "reuters"
}
},
{
"id": "tag:reuters.com,2026:newsml_L4N4100B5:0",
"title": "Apple marketing chief for watch, AirPods, home and health Stan Ng retires - Bloomberg News",
"published": 1776401681,
"urgency": 2,
"permission": "headline",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/reuters.com,2026:newsml_L4N4100B5:0-apple-marketing-chief-for-watch-airpods-home-and-health-stan-ng-retires-bloomberg-news/",
"provider": {
"id": "reuters",
"name": "Reuters",
"logo_id": "reuters"
}
},
{
"id": "DJN_DN20260416008149:0",
"title": "TSMC's Results Weren't a Great Sign for Apple — Heard on the Street — WSJ",
"published": 1776366900,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "TWSE:2330",
"logoid": "taiwan-semiconductor"
},
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"isExclusive": true,
"storyPath": "/news/DJN_DN20260416008149:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "DJN_DN20260415008637:0",
"title": "Former Apple Exec Leaves Ford in Tech Reorganization — Barrons.com",
"published": 1776290160,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "NYSE:F",
"logoid": "ford"
},
{
"symbol": "NASDAQ:TSLA",
"logoid": "tesla"
}
],
"storyPath": "/news/DJN_DN20260415008637:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "DJN_DN20260415008356:0",
"title": "The S&P 500 Just Surged to a Record High Despite a War. Why It May Keep Rising. — Barrons.com",
"published": 1776286620,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "CBOE:SPX",
"logoid": "indices/s-and-p-500"
},
{
"symbol": "NASDAQ:GOOG",
"logoid": "alphabet"
},
{
"symbol": "NASDAQ:AMZN",
"logoid": "amazon"
},
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "NASDAQ:MSFT",
"logoid": "microsoft"
}
],
"storyPath": "/news/DJN_DN20260415008356:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "stockstory:7cf1a340f094b:0",
"title": "Apple (AAPL) Stock Trades Up, Here Is Why",
"published": 1776281751,
"urgency": 2,
"link": "https://stockstory.org/us/stocks/nasdaq/aapl/news/why-up-down/apple-aapl-stock-trades-up-here-is-why-4",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/stockstory:7cf1a340f094b:0-apple-aapl-stock-trades-up-here-is-why/",
"provider": {
"id": "stockstory",
"name": "Stock Story",
"logo_id": "stockstory",
"url": "https://stockstory.org/"
}
},
{
"id": "DJN_DN20260414007032:0",
"title": "Apple and Amazon Partner on Satellite Deal. Why It Makes Sense. — Barrons.com",
"published": 1776193740,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AMZN",
"logoid": "amazon"
},
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/DJN_DN20260414007032:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "DJN_DN20260414002395:0",
"title": "Apple Is Maintained at Buy by B of A Securities",
"published": 1776163380,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/DJN_DN20260414002395:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "DJN_DN20260410001611:0",
"title": "Tech Trader: Apple Fell Behind With Gen-Z. The Neo Changed Everything. — Barron's",
"published": 1775871000,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/DJN_DN20260410001611:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "dpa_afx:79a707a53529f:0",
"title": "Apple To Shut Down 3 Retail Stores, Including First Unionized Outlet In Towson",
"published": 1775844789,
"urgency": 2,
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/dpa_afx:79a707a53529f:0-apple-to-shut-down-3-retail-stores-including-first-unionized-outlet-in-towson/",
"provider": {
"id": "dpa_afx",
"name": "dpa-AFX",
"logo_id": "dpa_afx"
}
},
{
"id": "DJN_DN20260410003674:0",
"title": "Anthropic Has Banks, Regulators Rattled Over AI Cyber Risks. Some Big Names Could Benefit. — Barrons.com",
"published": 1775822820,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AMZN",
"logoid": "amazon"
},
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "NASDAQ:CRWD",
"logoid": "crowdstrike"
},
{
"symbol": "NYSE:JPM",
"logoid": "jpmorgan-chase"
},
{
"symbol": "NASDAQ:PANW",
"logoid": "palo-alto-networks"
}
],
"storyPath": "/news/DJN_DN20260410003674:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "stocktwits:eaf71f338094b:0",
"title": "Apple Outperforms In Tough Q1 Even As Memory Crunch Drags Global Smartphone Shipments",
"published": 1775820020,
"urgency": 2,
"link": "https://stocktwits.com/news-articles/markets/equity/apple-outperforms-in-tough-q1-even-as-memory-crunch-drags-global-smartphone-shipments/cZJ0a2PRIte",
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/stocktwits:eaf71f338094b:0/",
"provider": {
"id": "stocktwits",
"name": "Stocktwits",
"logo_id": "stocktwits",
"url": "https://stocktwits.com/"
}
},
{
"id": "tag:reuters.com,2026:newsml_FWN40S1DJ:0",
"title": "Later This Month, Apple TV To Be Available Via Prime Video In The U.S. As An Add-On Subscription For $9.99 Per Month",
"published": 1775817039,
"urgency": 2,
"permission": "headline",
"relatedSymbols": [
{
"symbol": "NASDAQ:AMZN",
"logoid": "amazon"
},
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/reuters.com,2026:newsml_FWN40S1DJ:0-later-this-month-apple-tv-to-be-available-via-prime-video-in-the-u-s-as-an-add-on-subscription-for-9-99-per-month/",
"provider": {
"id": "reuters",
"name": "Reuters",
"logo_id": "reuters"
}
},
{
"id": "tag:reuters.com,2026:newsml_L4N40T0PA:0",
"title": "Apple leads smartphone market even as overall shipments decline, Counterpoint says",
"published": 1775815508,
"urgency": 2,
"permission": "headline",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "KRX:005930",
"logoid": "samsung"
}
],
"storyPath": "/news/reuters.com,2026:newsml_L4N40T0PA:0-apple-leads-smartphone-market-even-as-overall-shipments-decline-counterpoint-says/",
"provider": {
"id": "reuters",
"name": "Reuters",
"logo_id": "reuters"
}
},
{
"id": "tag:reuters.com,2026:newsml_L1N40T08B:0",
"title": "Apple leads global smartphone shipments in first quarter, Counterpoint says",
"published": 1775811689,
"urgency": 2,
"permission": "headline",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/reuters.com,2026:newsml_L1N40T08B:0-apple-leads-global-smartphone-shipments-in-first-quarter-counterpoint-says/",
"provider": {
"id": "reuters",
"name": "Reuters",
"logo_id": "reuters"
}
},
{
"id": "DJN_DN20260409006711:0",
"title": "Amazon Stock Jumps on DOJ's NFL Probe. It's About 'Affordability for Consumers.' — Barrons.com",
"published": 1775766360,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AMZN",
"logoid": "amazon"
},
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "NASDAQ:NFLX",
"logoid": "netflix"
},
{
"symbol": "NASDAQ:PSKY",
"logoid": "viacomcbs"
}
],
"storyPath": "/news/DJN_DN20260409006711:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "DJN_SN20260409009895:0",
"title": "Big Tech stocks look like especially good deals as investors eye what is next for the market",
"published": 1775748840,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "NASDAQ:MSFT",
"logoid": "microsoft"
},
{
"symbol": "NASDAQ:PLTR",
"logoid": "palantir"
}
],
"storyPath": "/news/DJN_SN20260409009895:0/",
"provider": {
"id": "market-watch",
"name": "MarketWatch",
"logo_id": "marketwatch"
}
},
{
"id": "DJN_DN20260408006647:0",
"title": "How Wall Street Went from Iran War Angst to Watching for a New S&P 500 Record — Barrons.com",
"published": 1775667540,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "CBOE:SPX",
"logoid": "indices/s-and-p-500"
},
{
"symbol": "NASDAQ:GOOG",
"logoid": "alphabet"
},
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "NASDAQ:META",
"logoid": "meta-platforms"
},
{
"symbol": "NYSE:JPM",
"logoid": "jpmorgan-chase"
},
{
"symbol": "NASDAQ:MSFT",
"logoid": "microsoft"
}
],
"storyPath": "/news/DJN_DN20260408006647:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "DJN_DN20260408001215:0",
"title": "Warren Buffett Is Retired. His Latest Advice Couldn't Be More Timely for Young Investors. — Barrons.com",
"published": 1775629800,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "NYSE:BRK.A",
"logoid": "berkshire-hathaway"
}
],
"storyPath": "/news/DJN_DN20260408001215:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "DJN_SN20260407011240:0",
"title": "Apple's stock pares losses. Here's how to think about the latest saga with foldable iPhones.",
"published": 1775597460,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/DJN_SN20260407011240:0/",
"provider": {
"id": "market-watch",
"name": "MarketWatch",
"logo_id": "marketwatch"
}
},
{
"id": "DJN_DN20260407006693:0",
"title": "Palo Alto, CrowdStrike Stocks Pop After Anthropic Announces Partnerships — Barrons.com",
"published": 1775592540,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:GOOG",
"logoid": "alphabet"
},
{
"symbol": "NASDAQ:AMZN",
"logoid": "amazon"
},
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "NASDAQ:AVGO",
"logoid": "broadcom"
},
{
"symbol": "NASDAQ:CSCO",
"logoid": "cisco"
},
{
"symbol": "NASDAQ:CRWD",
"logoid": "crowdstrike"
},
{
"symbol": "NYSE:JPM",
"logoid": "jpmorgan-chase"
},
{
"symbol": "NASDAQ:MSFT",
"logoid": "microsoft"
},
{
"symbol": "NASDAQ:NVDA",
"logoid": "nvidia"
},
{
"symbol": "NASDAQ:PANW",
"logoid": "palo-alto-networks"
}
],
"storyPath": "/news/DJN_DN20260407006693:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "tag:reuters.com,2026:newsml_FWN40Q02L:0",
"title": "Apple’s Foldable iPhone Remains On Track For September Debut - Bloomberg News",
"published": 1775581554,
"urgency": 2,
"permission": "headline",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/reuters.com,2026:newsml_FWN40Q02L:0-apple-s-foldable-iphone-remains-on-track-for-september-debut-bloomberg-news/",
"provider": {
"id": "reuters",
"name": "Reuters",
"logo_id": "reuters"
}
},
{
"id": "stocktwits:3f6b9040a094b:0",
"title": "AAPL Stock Slides As iPhone-Maker Faces Modest App Store Growth In Q1 – Retail Says ‘Great Opportunity’ To Buy More",
"published": 1775580095,
"urgency": 2,
"link": "https://stocktwits.com/news-articles/markets/equity/aapl-stock-slides-as-i-phone-maker-faces-modest-app-store-growth-in-q1-retail-says-great-opportunity-to-buy-more/cZJJUImRIpw",
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/stocktwits:3f6b9040a094b:0/",
"provider": {
"id": "stocktwits",
"name": "Stocktwits",
"logo_id": "stocktwits",
"url": "https://stocktwits.com/"
}
},
{
"id": "DJN_DN20260407005480:0",
"title": "Apple Stock Drops on Foldable iPhone Delay Fears — Barrons.com",
"published": 1775579460,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/DJN_DN20260407005480:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "stockstory:df3b03abe094b:0",
"title": "Why Apple (AAPL) Shares Are Falling Today",
"published": 1775579443,
"urgency": 2,
"link": "https://stockstory.org/us/stocks/nasdaq/aapl/news/why-up-down/why-apple-aapl-shares-are-falling-today-3",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/stockstory:df3b03abe094b:0-why-apple-aapl-shares-are-falling-today/",
"provider": {
"id": "stockstory",
"name": "Stock Story",
"logo_id": "stockstory",
"url": "https://stockstory.org/"
}
},
{
"id": "DJN_DN20260407004720:0",
"title": "Apple Shares Fall on Report of Foldable iPhone Engineering Setbacks",
"published": 1775574720,
"urgency": 2,
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/DJN_DN20260407004720:0-apple-shares-fall-on-report-of-foldable-iphone-engineering-setbacks/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "DJN_DN20260407004477:0",
"title": "Apple Stock Drags Down the Dow — WSJ",
"published": 1775572500,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "TVC:DJI",
"logoid": "indices/dow-30"
}
],
"storyPath": "/news/DJN_DN20260407004477:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "DJN_DN20260407000359:0",
"title": "Big Tech and Banks Expected to Lead Solid Earnings Season. There Will Be Buying Opportunities. — Barrons.com",
"published": 1775541600,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AMZN",
"logoid": "amazon"
},
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "NASDAQ:AVGO",
"logoid": "broadcom"
},
{
"symbol": "NYSE:JPM",
"logoid": "jpmorgan-chase"
},
{
"symbol": "NYSE:MS",
"logoid": "morgan-stanley"
}
],
"storyPath": "/news/DJN_DN20260407000359:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "tag:reuters.com,2026:newsml_L4N40Q06P:0",
"title": "Apple's foldable iPhone faces engineering snags, potential shipment delays, Nikkei Asia reports",
"published": 1775532148,
"urgency": 2,
"permission": "headline",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/reuters.com,2026:newsml_L4N40Q06P:0-apple-s-foldable-iphone-faces-engineering-snags-potential-shipment-delays-nikkei-asia-reports/",
"provider": {
"id": "reuters",
"name": "Reuters",
"logo_id": "reuters"
}
},
{
"id": "tag:reuters.com,2026:newsml_L4N40Q061:0",
"title": "Apple's foldable iPhone encounters engineering snags, faces potential shipment delays, Nikkei Asia reports",
"published": 1775530403,
"urgency": 1,
"permission": "headline",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/reuters.com,2026:newsml_L4N40Q061:0-apple-s-foldable-iphone-encounters-engineering-snags-faces-potential-shipment-delays-nikkei-asia-reports/",
"provider": {
"id": "reuters",
"name": "Reuters",
"logo_id": "reuters"
}
},
{
"id": "DJN_DN20260406003372:0",
"title": "AI Is Squeezing Memory Supplies. How Apple's Strategy Can Boost Its Stock. — Barrons.com",
"published": 1775492760,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "NYSE:DELL",
"logoid": "dell"
},
{
"symbol": "NYSE:HPQ",
"logoid": "hp"
}
],
"storyPath": "/news/DJN_DN20260406003372:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "DJN_SN20260406003478:0",
"title": "Apple's stock could surge 20%, and the MacBook Neo could be a key catalyst",
"published": 1775492640,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/DJN_SN20260406003478:0/",
"provider": {
"id": "market-watch",
"name": "MarketWatch",
"logo_id": "marketwatch"
}
},
{
"id": "DJN_DN20260403001003:0",
"title": "SpaceX Is Worth $2 Trillion? What That Might Mean. — Barrons.com",
"published": 1775244360,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:GOOG",
"logoid": "alphabet"
},
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "NASDAQ:NVDA",
"logoid": "nvidia"
},
{
"symbol": "NASDAQ:TSLA",
"logoid": "tesla"
}
],
"storyPath": "/news/DJN_DN20260403001003:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "DJN_DN20260403002001:0",
"title": "I Looked Inside the First iPhone and Saw 50 Years of Apple History — WSJ",
"published": 1775231100,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/DJN_DN20260403002001:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "DJN_SN20260402006665:0",
"title": "Venture capitalist who bet on Apple nearly 50 years ago: Questionable management, price is rich, but 'home-hobby computers' are hot",
"published": 1775140260,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/DJN_SN20260402006665:0/",
"provider": {
"id": "market-watch",
"name": "MarketWatch",
"logo_id": "marketwatch"
}
},
{
"id": "dpa_afx:4ad72a40de37f:0",
"title": "Apple @ 50: Five Decades Of Reinvention",
"published": 1775052285,
"urgency": 2,
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/dpa_afx:4ad72a40de37f:0-apple-50-five-decades-of-reinvention/",
"provider": {
"id": "dpa_afx",
"name": "dpa-AFX",
"logo_id": "dpa_afx"
}
},
{
"id": "DJN_DN20260401002674:0",
"title": "Buffett Isn't Getting Carried Away by This Iran Trump Bump. Neither Should Markets. — Barrons.com",
"published": 1775039580,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "NASDAQ:CEG",
"logoid": "constellation-energy-cad-hedged-cibc-cdr"
},
{
"symbol": "NYSE:DIS",
"logoid": "walt-disney"
},
{
"symbol": "NYSE:LMT",
"logoid": "lockheed-martin"
},
{
"symbol": "NYSE:NOC",
"logoid": "northrop-grumman"
}
],
"storyPath": "/news/DJN_DN20260401002674:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "tag:reuters.com,2026:newsml_L4N40K0QN:0",
"title": "Apple's 50-year journey from garage to tech titan",
"published": 1775037600,
"urgency": 2,
"permission": "headline",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "NASDAQ:GOOG",
"logoid": "alphabet"
},
{
"symbol": "NASDAQ:MSFT",
"logoid": "microsoft"
}
],
"storyPath": "/news/reuters.com,2026:newsml_L4N40K0QN:0-apple-s-50-year-journey-from-garage-to-tech-titan/",
"provider": {
"id": "reuters",
"name": "Reuters",
"logo_id": "reuters"
}
},
{
"id": "DJN_DN20260331006152:0",
"title": "Apple Turns 50. The iPhone Can't Drive the Stock Forever. — Barrons.com",
"published": 1774988580,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/DJN_DN20260331006152:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "DJN_DN20260331008339:0",
"title": "Apple Expected to Detail AI Advancements at 2026 WWDC — Market Talk",
"published": 1774977600,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/DJN_DN20260331008339:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "tag:reuters.com,2026:newsml_L4N40J1QM:0",
"title": "Apple tests Siri feature that handles multiple commands at once, Bloomberg News reports",
"published": 1774974295,
"urgency": 2,
"permission": "headline",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "NASDAQ:GOOG",
"logoid": "alphabet"
}
],
"storyPath": "/news/reuters.com,2026:newsml_L4N40J1QM:0-apple-tests-siri-feature-that-handles-multiple-commands-at-once-bloomberg-news-reports/",
"provider": {
"id": "reuters",
"name": "Reuters",
"logo_id": "reuters"
}
},
{
"id": "DJN_DN20260331004886:0",
"title": "Warren Buffett Sees Little to Buy in the Stock Market After This Year's Drop — Barrons.com",
"published": 1774971360,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NYSE:BRK.A",
"logoid": "berkshire-hathaway"
},
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "TVC:DJI",
"logoid": "indices/dow-30"
}
],
"storyPath": "/news/DJN_DN20260331004886:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "DJN_DN20260331006959:0",
"title": "Apple Price Target Maintained With a $350.00/Share by Wedbush",
"published": 1774968840,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/DJN_DN20260331006959:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "tag:reuters.com,2026:newsml_L6N40J177:0",
"title": "Warren Buffett discusses markets, Apple, Jeffrey Epstein, Gates Foundation on CNBC",
"published": 1774962093,
"urgency": 2,
"permission": "headline",
"relatedSymbols": [
{
"symbol": "NYSE:BRK.A",
"logoid": "berkshire-hathaway"
},
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/reuters.com,2026:newsml_L6N40J177:0-warren-buffett-discusses-markets-apple-jeffrey-epstein-gates-foundation-on-cnbc/",
"provider": {
"id": "reuters",
"name": "Reuters",
"logo_id": "reuters"
}
},
{
"id": "DJN_DN20260329000049:0",
"title": "Correction to Everyone Hates iPhone Autocorrect Article on March 29 — WSJ",
"published": 1774897860,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/DJN_DN20260329000049:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "dpa_afx:46d65658f83f8:0",
"title": "UK Fines Apple Subsidiary £390,000 Over Russia Sanctions Breach",
"published": 1774882533,
"urgency": 2,
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/dpa_afx:46d65658f83f8:0-uk-fines-apple-subsidiary-390-000-over-russia-sanctions-breach/",
"provider": {
"id": "dpa_afx",
"name": "dpa-AFX",
"logo_id": "dpa_afx"
}
},
{
"id": "tag:reuters.com,2026:newsml_L8N40F0VG:0",
"title": "What is the World Trade Organization e-commerce moratorium?",
"published": 1774704337,
"urgency": 2,
"permission": "headline",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "NASDAQ:AMZN",
"logoid": "amazon"
},
{
"symbol": "NASDAQ:MSFT",
"logoid": "microsoft"
}
],
"storyPath": "/news/reuters.com,2026:newsml_L8N40F0VG:0-what-is-the-world-trade-organization-e-commerce-moratorium/",
"provider": {
"id": "reuters",
"name": "Reuters",
"logo_id": "reuters"
}
},
{
"id": "tag:reuters.com,2026:newsml_L6N40F11D:0",
"title": "Apple hires ex-Google executive to head AI marketing amid push to improve Siri",
"published": 1774632658,
"urgency": 2,
"permission": "headline",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "NASDAQ:GOOG",
"logoid": "alphabet"
}
],
"storyPath": "/news/reuters.com,2026:newsml_L6N40F11D:0-apple-hires-ex-google-executive-to-head-ai-marketing-amid-push-to-improve-siri/",
"provider": {
"id": "reuters",
"name": "Reuters",
"logo_id": "reuters"
}
},
{
"id": "DJN_DN20260327005265:0",
"title": "All Eyes Back on Apple's AI Strategy As 50th Anniversary — Market Talk",
"published": 1774617540,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:GOOG",
"logoid": "alphabet"
},
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/DJN_DN20260327005265:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "DJN_DN20260326010953:0",
"title": "Netflix's Prices Are Going Up. Don't Expect Streaming to Get Cheaper Soon. — Barrons.com",
"published": 1774614540,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:GOOG",
"logoid": "alphabet"
},
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "NYSE:DIS",
"logoid": "walt-disney"
},
{
"symbol": "NASDAQ:NFLX",
"logoid": "netflix"
},
{
"symbol": "NASDAQ:PSKY",
"logoid": "viacomcbs"
}
],
"storyPath": "/news/DJN_DN20260326010953:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "dpa_afx:8a7391661267a:0",
"title": "Apple Adds New Partners, To Invest $400 Mln To Expand US Manufacturing",
"published": 1774611960,
"urgency": 2,
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "TSE:6762",
"logoid": "tdk"
},
{
"symbol": "NASDAQ:CRUS",
"logoid": "cirrus-logic"
}
],
"storyPath": "/news/dpa_afx:8a7391661267a:0-apple-adds-new-partners-to-invest-400-mln-to-expand-us-manufacturing/",
"provider": {
"id": "dpa_afx",
"name": "dpa-AFX",
"logo_id": "dpa_afx"
}
},
{
"id": "tag:reuters.com,2026:newsml_FWN40E16L:0",
"title": "Apple Has Discontinued Mac Pro And Has Removed It From Its Website - Bloomberg News Reporter Gurman",
"published": 1774559227,
"urgency": 2,
"permission": "headline",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/reuters.com,2026:newsml_FWN40E16L:0-apple-has-discontinued-mac-pro-and-has-removed-it-from-its-website-bloomberg-news-reporter-gurman/",
"provider": {
"id": "reuters",
"name": "Reuters",
"logo_id": "reuters"
}
},
{
"id": "tag:reuters.com,2026:newsml_FWN40E16J:0",
"title": "Apple Gives iPhone Designers Rare Bonuses To Fight OpenAI Poaching - Bloomberg News",
"published": 1774557668,
"urgency": 2,
"permission": "headline",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/reuters.com,2026:newsml_FWN40E16J:0-apple-gives-iphone-designers-rare-bonuses-to-fight-openai-poaching-bloomberg-news/",
"provider": {
"id": "reuters",
"name": "Reuters",
"logo_id": "reuters"
}
},
{
"id": "DJN_DN20260326009594:0",
"title": "Apple Stock Has Been Weak This Year. Why Analysts Think Better Times Are Ahead. — Barrons.com",
"published": 1774557000,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/DJN_DN20260326009594:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "tag:reuters.com,2026:newsml_FWN40E14R:0",
"title": "Apple Plans To Open Up Siri To Rival AI Assistants In iOS 27 Update - Bloomberg News",
"published": 1774548846,
"urgency": 2,
"permission": "headline",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/reuters.com,2026:newsml_FWN40E14R:0-apple-plans-to-open-up-siri-to-rival-ai-assistants-in-ios-27-update-bloomberg-news/",
"provider": {
"id": "reuters",
"name": "Reuters",
"logo_id": "reuters"
}
},
{
"id": "tag:reuters.com,2026:newsml_L4N40E0ZU:0",
"title": "Apple adds Bosch, Cirrus Logic, others to US manufacturing program, to invest $400 million",
"published": 1774530538,
"urgency": 2,
"permission": "headline",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "NASDAQ:CRUS",
"logoid": "cirrus-logic"
},
{
"symbol": "TSE:6762",
"logoid": "tdk"
},
{
"symbol": "NYSE:Q",
"logoid": "qnity-electronics"
},
{
"symbol": "TWSE:2330",
"logoid": "taiwan-semiconductor"
},
{
"symbol": "NASDAQ:GFS",
"logoid": "globalfoundries"
}
],
"storyPath": "/news/reuters.com,2026:newsml_L4N40E0ZU:0-apple-adds-bosch-cirrus-logic-others-to-us-manufacturing-program-to-invest-400-million/",
"provider": {
"id": "reuters",
"name": "Reuters",
"logo_id": "reuters"
}
},
{
"id": "DJN_DN20260325006992:0",
"title": "Microsoft Stock Tracking Worst 6-Month Stretch Since 2009 — Barrons.com",
"published": 1774471980,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AMZN",
"logoid": "amazon"
},
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "NASDAQ:AVGO",
"logoid": "broadcom"
},
{
"symbol": "NASDAQ:MSFT",
"logoid": "microsoft"
},
{
"symbol": "NYSE:SNOW",
"logoid": "snowflake"
}
],
"storyPath": "/news/DJN_DN20260325006992:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "DJN_DN20260325007265:0",
"title": "Amplification for Apple Cuts App Store Fees in China Article on March 13 — WSJ",
"published": 1774464720,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/DJN_DN20260325007265:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "dpa_afx:b59c1ac2b1b02:0",
"title": "Apple Introduces Age Verification For UK Users",
"published": 1774455929,
"urgency": 2,
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/dpa_afx:b59c1ac2b1b02:0-apple-introduces-age-verification-for-uk-users/",
"provider": {
"id": "dpa_afx",
"name": "dpa-AFX",
"logo_id": "dpa_afx"
}
},
{
"id": "tag:reuters.com,2026:newsml_P8N3ZR082:0",
"title": "February shipments of foreign-branded phones in China fall 7.7% from a year ago, CAICT data shows",
"published": 1774420658,
"urgency": 1,
"permission": "headline",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/reuters.com,2026:newsml_P8N3ZR082:0-february-shipments-of-foreign-branded-phones-in-china-fall-7-7-from-a-year-ago-caict-data-shows/",
"provider": {
"id": "reuters",
"name": "Reuters",
"logo_id": "reuters"
}
},
{
"id": "DJN_DN20260324008889:0",
"title": "HP Inc. Announces AI Updates. Your Turn, Apple. — Barrons.com",
"published": 1774388400,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "NYSE:HPQ",
"logoid": "hp"
}
],
"storyPath": "/news/DJN_DN20260324008889:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "tag:reuters.com,2026:newsml_FWN40C10O:0",
"title": "Apple Plans AI Reboot With Siri App, New Look And ‘Ask Siri’ Button In IOS 27 - Bloomberg News",
"published": 1774378664,
"urgency": 2,
"permission": "headline",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/reuters.com,2026:newsml_FWN40C10O:0-apple-plans-ai-reboot-with-siri-app-new-look-and-ask-siri-button-in-ios-27-bloomberg-news/",
"provider": {
"id": "reuters",
"name": "Reuters",
"logo_id": "reuters"
}
},
{
"id": "tag:reuters.com,2026:newsml_L1N40C0TO:0",
"title": "Apple to bring paid ads to maps to US, Canada this summer",
"published": 1774367569,
"urgency": 2,
"permission": "headline",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "NASDAQ:GOOG",
"logoid": "alphabet"
},
{
"symbol": "NASDAQ:META",
"logoid": "meta-platforms"
}
],
"storyPath": "/news/reuters.com,2026:newsml_L1N40C0TO:0-apple-to-bring-paid-ads-to-maps-to-us-canada-this-summer/",
"provider": {
"id": "reuters",
"name": "Reuters",
"logo_id": "reuters"
}
},
{
"id": "tag:reuters.com,2026:newsml_L6N40C0UP:0",
"title": "Apple to bring paid ads to maps to US, Canada this summer ",
"published": 1774364400,
"urgency": 2,
"permission": "headline",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "NASDAQ:GOOG",
"logoid": "alphabet"
},
{
"symbol": "NASDAQ:META",
"logoid": "meta-platforms"
}
],
"storyPath": "/news/reuters.com,2026:newsml_L6N40C0UP:0-apple-to-bring-paid-ads-to-maps-to-us-canada-this-summer/",
"provider": {
"id": "reuters",
"name": "Reuters",
"logo_id": "reuters"
}
},
{
"id": "DJN_DN20260323006307:0",
"title": "Apple iPhone Demand Is Getting Multiple Boosts, Analysts Say. The Stock Rises. — Barrons.com",
"published": 1774289700,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/DJN_DN20260323006307:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "DJN_DN20260323006259:0",
"title": "Apple Price Target Maintained With a $315.00/Share by Morgan Stanley",
"published": 1774289100,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/DJN_DN20260323006259:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "tag:reuters.com,2026:newsml_L4N40B1LQ:0",
"title": "Apple to hold annual developers conference from June 8",
"published": 1774287883,
"urgency": 2,
"permission": "headline",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/reuters.com,2026:newsml_L4N40B1LQ:0-apple-to-hold-annual-developers-conference-from-june-8/",
"provider": {
"id": "reuters",
"name": "Reuters",
"logo_id": "reuters"
}
},
{
"id": "tag:reuters.com,2026:newsml_L4N40B1L0:0",
"title": "Apple to hold annual developers conference in June",
"published": 1774285485,
"urgency": 2,
"permission": "headline",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/reuters.com,2026:newsml_L4N40B1L0:0-apple-to-hold-annual-developers-conference-in-june/",
"provider": {
"id": "reuters",
"name": "Reuters",
"logo_id": "reuters"
}
},
{
"id": "tag:reuters.com,2026:newsml_FWN40B0TN:0",
"title": "Apple Is Set To Add Search Advertising To Maps In Services Push, An Announcement Could Come As Early As This Month- Bloomberg News",
"published": 1774284697,
"urgency": 2,
"permission": "headline",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/reuters.com,2026:newsml_FWN40B0TN:0-apple-is-set-to-add-search-advertising-to-maps-in-services-push-an-announcement-could-come-as-early-as-this-month-bloomberg-news/",
"provider": {
"id": "reuters",
"name": "Reuters",
"logo_id": "reuters"
}
},
{
"id": "tag:reuters.com,2026:newsml_L6N40815C:0",
"title": "Amazon plans smartphone comeback more than a decade after Fire Phone flop",
"published": 1774041610,
"urgency": 2,
"permission": "headline",
"relatedSymbols": [
{
"symbol": "NASDAQ:AMZN",
"logoid": "amazon"
},
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"isExclusive": true,
"storyPath": "/news/reuters.com,2026:newsml_L6N40815C:0-amazon-plans-smartphone-comeback-more-than-a-decade-after-fire-phone-flop/",
"provider": {
"id": "reuters",
"name": "Reuters",
"logo_id": "reuters"
}
},
{
"id": "DJN_DN20260320006638:0",
"title": "Apple's Latest Launch Was 'Best' Ever for New Mac Customers. What It Means for the Stock. — Barrons.com",
"published": 1774038720,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "NYSE:DELL",
"logoid": "dell"
},
{
"symbol": "NYSE:HPQ",
"logoid": "hp"
}
],
"storyPath": "/news/DJN_DN20260320006638:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "tag:reuters.com,2026:newsml_P8N3YM04J:0",
"title": "China's commerce minister meets Apple CEO",
"published": 1773995981,
"urgency": 2,
"permission": "headline",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/reuters.com,2026:newsml_P8N3YM04J:0-china-s-commerce-minister-meets-apple-ceo/",
"provider": {
"id": "reuters",
"name": "Reuters",
"logo_id": "reuters"
}
},
{
"id": "DJN_DN20260319007716:0",
"title": "Apple's China iPhone Sales Are Up. Thank Memory Cost Increases. — Barrons.com",
"published": 1773942660,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/DJN_DN20260319007716:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "tag:reuters.com,2026:newsml_L6N3WF0SO:0",
"title": "Apple fends off bid for new Apple Watch import ban at US trade tribunal ",
"published": 1773936720,
"urgency": 2,
"permission": "headline",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "NASDAQ:MASI",
"logoid": "masimo"
},
{
"symbol": "NYSE:DHR",
"logoid": "danaher"
}
],
"storyPath": "/news/reuters.com,2026:newsml_L6N3WF0SO:0-apple-fends-off-bid-for-new-apple-watch-import-ban-at-us-trade-tribunal/",
"provider": {
"id": "reuters",
"name": "Reuters",
"logo_id": "reuters"
}
},
{
"id": "tag:reuters.com,2026:newsml_L8N40701A:0",
"title": "Apple's China smartphone sales jump 23% to start 2026, bucking industry trend",
"published": 1773886610,
"urgency": 2,
"permission": "headline",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/reuters.com,2026:newsml_L8N40701A:0-apple-s-china-smartphone-sales-jump-23-to-start-2026-bucking-industry-trend/",
"provider": {
"id": "reuters",
"name": "Reuters",
"logo_id": "reuters"
}
},
{
"id": "DJN_DN20260318009535:0",
"title": "Apple Is Way Behind in AI — and Still Making a Fortune From It — WSJ",
"published": 1773882000,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/DJN_DN20260318009535:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "DJN_DN20260318001539:0",
"title": "Sure, Nvidia Stock Is Stuck. But Don't Ignore Its Huge Cash Returns. — Barrons.com",
"published": 1773864480,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "NASDAQ:NVDA",
"logoid": "nvidia"
}
],
"storyPath": "/news/DJN_DN20260318001539:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "tag:reuters.com,2026:newsml_FWN4060M6:0",
"title": "Apple Says Some AI Vibe Coding Apps Violate App Store Rules By Running Code That Alters App Functionality - The Information",
"published": 1773839002,
"urgency": 2,
"permission": "headline",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/reuters.com,2026:newsml_FWN4060M6:0-apple-says-some-ai-vibe-coding-apps-violate-app-store-rules-by-running-code-that-alters-app-functionality-the-information/",
"provider": {
"id": "reuters",
"name": "Reuters",
"logo_id": "reuters"
}
},
{
"id": "DJN_DN20260318000052:0",
"title": "Apple's App Store Fee Cut in China Offers Tailwind for Tencent, NetEase — Market Talk",
"published": 1773807120,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "NASDAQ:NTES",
"logoid": "netease"
},
{
"symbol": "HKEX:700",
"logoid": "tencent"
}
],
"storyPath": "/news/DJN_DN20260318000052:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "stocktwits:adc733d48094b:0",
"title": "Apple Loses Top Hardware Executive To Smart Ring Maker Oura Health Amid Product Delays: Report",
"published": 1773786003,
"urgency": 2,
"link": "https://stocktwits.com/news-articles/markets/equity/apple-loses-top-hardware-executive-to-smart-ring-maker-oura-health-amid-product-delays-report/cZ3Ek3bRIXx",
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/stocktwits:adc733d48094b:0/",
"provider": {
"id": "stocktwits",
"name": "Stocktwits",
"logo_id": "stocktwits",
"url": "https://stocktwits.com/"
}
},
{
"id": "tag:reuters.com,2026:newsml_FWN4050SG:0",
"title": "Apple’S Head Of Home Hardware Brian Lynch Leaves For Smart Ring Maker Oura - Bloomberg News",
"published": 1773785305,
"urgency": 2,
"permission": "headline",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/reuters.com,2026:newsml_FWN4050SG:0-apple-s-head-of-home-hardware-brian-lynch-leaves-for-smart-ring-maker-oura-bloomberg-news/",
"provider": {
"id": "reuters",
"name": "Reuters",
"logo_id": "reuters"
}
},
{
"id": "DJN_DN20260317006382:0",
"title": "Apple CEO Squashes Talk of Stepping Down — Market Talk",
"published": 1773767340,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/DJN_DN20260317006382:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "stocktwits:ec5a08cb6094b:0",
"title": "Apple’s Tim Cook Shuts Down Retirement Buzz, Says He ‘Deeply’ Loves His Job",
"published": 1773765924,
"urgency": 2,
"link": "https://stocktwits.com/news-articles/markets/equity/apple-tim-cook-shuts-down-retirement-buzz-says-he-deeply-loves-his-job/cZ3Ea4yRIXk",
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/stocktwits:ec5a08cb6094b:0/",
"provider": {
"id": "stocktwits",
"name": "Stocktwits",
"logo_id": "stocktwits",
"url": "https://stocktwits.com/"
}
},
{
"id": "dpa_afx:5b58a8bad361e:0",
"title": "Apple Launches AirPods Max 2 With Improved ANC And H2 Chip",
"published": 1773685935,
"urgency": 2,
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/dpa_afx:5b58a8bad361e:0-apple-launches-airpods-max-2-with-improved-anc-and-h2-chip/",
"provider": {
"id": "dpa_afx",
"name": "dpa-AFX",
"logo_id": "dpa_afx"
}
},
{
"id": "DJN_DN20260316006424:0",
"title": "Apple Acquires MotionVFX",
"published": 1773680700,
"urgency": 2,
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/DJN_DN20260316006424:0-apple-acquires-motionvfx/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "DJN_DN20260316005558:0",
"title": "Apple Announced AirPods Max 2, Starting at $549 — Market Talk",
"published": 1773676260,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/DJN_DN20260316005558:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "tag:reuters.com,2026:newsml_L6N4040XN:0",
"title": "Apple unveils second-generation AirPods Max at $549, more than five years after debut",
"published": 1773668798,
"urgency": 2,
"permission": "headline",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "TSE:6758",
"logoid": "sony"
}
],
"storyPath": "/news/reuters.com,2026:newsml_L6N4040XN:0-apple-unveils-second-generation-airpods-max-at-549-more-than-five-years-after-debut/",
"provider": {
"id": "reuters",
"name": "Reuters",
"logo_id": "reuters"
}
},
{
"id": "DJN_DN20260314000775:0",
"title": "Review: Does the $599 MacBook Neo Fit in Your Life? — WSJ",
"published": 1773495120,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/DJN_DN20260314000775:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "DJN_DN20260313003272:0",
"title": "Apple Reduces China App Store Fees as It Fends Off Pressure From Beijing — Barrons.com",
"published": 1773409860,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/DJN_DN20260313003272:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "DJN_DN20260313004404:0",
"title": "Meta Is Falling Behind in AI Models. Its Loss Could Be Google's Gain, Report Says. — Barrons.com",
"published": 1773408240,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:GOOG",
"logoid": "alphabet"
},
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "NASDAQ:META",
"logoid": "meta-platforms"
}
],
"storyPath": "/news/DJN_DN20260313004404:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "stocktwits:0fcb83f3b094b:0",
"title": "Apple Bows To Chinese Regulatory Pressure With App Store Fee Cut: These Firms Could Be The Big Winners",
"published": 1773391474,
"urgency": 2,
"link": "https://stocktwits.com/news-articles/markets/equity/apple-bows-to-chinese-regulatory-pressure-with-app-store-fee-cut/cZdDEsRRIaN",
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/stocktwits:0fcb83f3b094b:0/",
"provider": {
"id": "stocktwits",
"name": "Stocktwits",
"logo_id": "stocktwits",
"url": "https://stocktwits.com/"
}
},
{
"id": "DJN_DN20260313001151:0",
"title": "Apple Cuts App Store Fees in China as Regulatory Scrutiny Intensifies — Update",
"published": 1773384300,
"urgency": 2,
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/DJN_DN20260313001151:0-apple-cuts-app-store-fees-in-china-as-regulatory-scrutiny-intensifies-update/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "DJN_DN20260313000127:0",
"title": "Apple's Commission Cut Bodes Well for Chinese Game Developers — Market Talk",
"published": 1773378360,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:NTES",
"logoid": "netease"
},
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "HKEX:700",
"logoid": "tencent"
}
],
"storyPath": "/news/DJN_DN20260313000127:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "DJN_DN20260312013664:0",
"title": "Apple Cuts App Store Commission Fees in China",
"published": 1773374160,
"urgency": 2,
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/DJN_DN20260312013664:0-apple-cuts-app-store-commission-fees-in-china/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "stocktwits:7499a5168094b:0",
"title": "Is Himax A ‘Stealth’ Supplier To Nvidia, Apple? HIMX Stock Pops To Nearly 1-Year High After Hedge Fund Flags Possible Links",
"published": 1773368534,
"urgency": 2,
"link": "https://stocktwits.com/news-articles/markets/equity/is-himax-a-stealth-supplier-to-nvidia-apple-himx-stock-pops-to-nearly-1-year-high-after-hedge-fund-flags-possible-links/cZdwxZ1RIaB",
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "NASDAQ:HIMX",
"logoid": "himax-technologies"
},
{
"symbol": "NASDAQ:NVDA",
"logoid": "nvidia"
}
],
"storyPath": "/news/stocktwits:7499a5168094b:0/",
"provider": {
"id": "stocktwits",
"name": "Stocktwits",
"logo_id": "stocktwits",
"url": "https://stocktwits.com/"
}
},
{
"id": "DJN_DN20260312013523:0",
"title": "Global Smartphone Shipments Could Fall 17% in 2026 — Market Talk",
"published": 1773368280,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "KRX:005930",
"logoid": "samsung"
},
{
"symbol": "HKEX:1810",
"logoid": "xiaomi"
},
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/DJN_DN20260312013523:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "DJN_DN20260312012252:0",
"title": "Monster, Palantir, and Other Stocks That Can Weather the Market Storm — Barrons.com",
"published": 1773352140,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "NASDAQ:MNST",
"logoid": "monster-beverage"
},
{
"symbol": "NASDAQ:NVDA",
"logoid": "nvidia"
},
{
"symbol": "NASDAQ:PLTR",
"logoid": "palantir"
}
],
"storyPath": "/news/DJN_DN20260312012252:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "DJN_DN20260312007814:0",
"title": "FTC Release: Federal Trade Commission Chairman Andrew N. Ferguson Issues Warning Letter to Apple CEO Tim Cook",
"published": 1773329820,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/DJN_DN20260312007814:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "tag:reuters.com,2026:newsml_L1N4000GL:0",
"title": "India plans fresh incentives for phone production in boost for Apple, Samsung",
"published": 1773315519,
"urgency": 2,
"permission": "headline",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "KRX:005930",
"logoid": "samsung"
}
],
"storyPath": "/news/reuters.com,2026:newsml_L1N4000GL:0-india-plans-fresh-incentives-for-phone-production-in-boost-for-apple-samsung/",
"provider": {
"id": "reuters",
"name": "Reuters",
"logo_id": "reuters"
}
},
{
"id": "tag:reuters.com,2026:newsml_FWN3ZZ16X:0",
"title": "Apple's Forthcoming Foldable iPhone Will Feature An Interior Foldable Display Roughly The Size Of An iPad Mini - Bloomberg News",
"published": 1773260038,
"urgency": 2,
"permission": "headline",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/reuters.com,2026:newsml_FWN3ZZ16X:0-apple-s-forthcoming-foldable-iphone-will-feature-an-interior-foldable-display-roughly-the-size-of-an-ipad-mini-bloomberg-news/",
"provider": {
"id": "reuters",
"name": "Reuters",
"logo_id": "reuters"
}
},
{
"id": "stocktwits:6fb9f49d5094b:0",
"title": "Laptop Prices Could Rise Up To 40% In 2026: How Apple, HP And Dell Are Plotting To Navigate Rising Memory Prices",
"published": 1773220767,
"urgency": 2,
"link": "https://stocktwits.com/news-articles/markets/equity/laptop-prices-could-rise-up-to-40-in-2026-how-apple-hp-and-dell-are-plotting-to-navigate-rising-memory-prices/cZdAMLuRIJf",
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NYSE:DELL",
"logoid": "dell"
},
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "NYSE:HPQ",
"logoid": "hp"
}
],
"storyPath": "/news/stocktwits:6fb9f49d5094b:0/",
"provider": {
"id": "stocktwits",
"name": "Stocktwits",
"logo_id": "stocktwits",
"url": "https://stocktwits.com/"
}
},
{
"id": "DJN_DN20260310008536:0",
"title": "Apple's Budget MacBook Is a Hit. What It Means For the Stock, and What's Next. — Barrons.com",
"published": 1773167940,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/DJN_DN20260310008536:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "DJN_DN20260310005451:0",
"title": "German Ad Groups Say Changes to Apple's App-Tracking Tool Aren't Enough",
"published": 1773146400,
"urgency": 2,
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/DJN_DN20260310005451:0-german-ad-groups-say-changes-to-apple-s-app-tracking-tool-aren-t-enough/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "stocktwits:fca095bd1094b:0",
"title": "Apple Delays Smart Home Device Once More Amid New AI, Siri Setback: Report",
"published": 1773082815,
"urgency": 2,
"link": "https://stocktwits.com/news-articles/markets/equity/apple-delays-smart-home-device-once-more-amid-new-ai-siri-setback-report/cZdVuFuRIeR",
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/stocktwits:fca095bd1094b:0/",
"provider": {
"id": "stocktwits",
"name": "Stocktwits",
"logo_id": "stocktwits",
"url": "https://stocktwits.com/"
}
},
{
"id": "tag:reuters.com,2026:newsml_FWN3ZX125:0",
"title": "Apple Postpones Smart Home Display Launch As It Waits For New AI, Siri - Bloomberg News",
"published": 1773082443,
"urgency": 2,
"permission": "headline",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/reuters.com,2026:newsml_FWN3ZX125:0-apple-postpones-smart-home-display-launch-as-it-waits-for-new-ai-siri-bloomberg-news/",
"provider": {
"id": "reuters",
"name": "Reuters",
"logo_id": "reuters"
}
},
{
"id": "DJN_DN20260309003955:0",
"title": "Apple Faces a Memory Crunch. Why Analysts Say the Stock Is Still a Buy. — Barrons.com",
"published": 1773057780,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/DJN_DN20260309003955:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "DJN_DN20260305001184:0",
"title": "Up & Down Wall Street: How the Mag 7 Became the Lag 7 — Barron's",
"published": 1772850600,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:META",
"logoid": "meta-platforms"
},
{
"symbol": "NASDAQ:AMZN",
"logoid": "amazon"
},
{
"symbol": "NASDAQ:GOOG",
"logoid": "alphabet"
},
{
"symbol": "NASDAQ:TSLA",
"logoid": "tesla"
},
{
"symbol": "NASDAQ:NVDA",
"logoid": "nvidia"
},
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "NASDAQ:MSFT",
"logoid": "microsoft"
}
],
"storyPath": "/news/DJN_DN20260305001184:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "DJN_DN20260306006471:0",
"title": "3 Dividend ETFs for Shelter in These Stormy Times — Barrons.com",
"published": 1772820900,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "NASDAQ:AVGO",
"logoid": "broadcom"
},
{
"symbol": "NYSE:KO",
"logoid": "coca-cola"
},
{
"symbol": "NYSE:COP",
"logoid": "conocophillips"
},
{
"symbol": "NYSE:LMT",
"logoid": "lockheed-martin"
}
],
"storyPath": "/news/DJN_DN20260306006471:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "stocktwits:bad99ff54094b:0",
"title": "‘Big Short’ Fame Michael Burry Pitches Bold AI Deal Ideas For Apple, Adobe — And Fires Shots At Tesla CEO Elon Musk",
"published": 1772772649,
"urgency": 2,
"link": "https://stocktwits.com/news-articles/markets/equity/big-short-fame-michael-burry-pitches-bold-ai-deal-ideas-for-apple-adobe-and-fires-shots-at-tesla-ceo-elon-musk/cZdhnSmRIEJ",
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "NASDAQ:ANTHROPIC",
"logoid": "anthropic"
}
],
"storyPath": "/news/stocktwits:bad99ff54094b:0/",
"provider": {
"id": "stocktwits",
"name": "Stocktwits",
"logo_id": "stocktwits",
"url": "https://stocktwits.com/"
}
},
{
"id": "DJN_DN20260305009360:0",
"title": "This ETF Was Built for This Very Moment. So Why Hasn't It Done Well? — Barrons.com",
"published": 1772746980,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "NASDAQ:MSFT",
"logoid": "microsoft"
},
{
"symbol": "NASDAQ:NVDA",
"logoid": "nvidia"
}
],
"storyPath": "/news/DJN_DN20260305009360:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "DJN_DN20260305009544:0",
"title": "Cheaper iPhones and a $599 MacBook? Apple Is All About Affordability Now. — Barrons.com",
"published": 1772746680,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "NYSE:DELL",
"logoid": "dell"
},
{
"symbol": "NYSE:HPQ",
"logoid": "hp"
},
{
"symbol": "NASDAQ:NVDA",
"logoid": "nvidia"
}
],
"storyPath": "/news/DJN_DN20260305009544:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "dpa_afx:7cb6395cea3f4:0",
"title": "Apple Music To Add Transparency Tags For AI-Generated Music",
"published": 1772744961,
"urgency": 2,
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/dpa_afx:7cb6395cea3f4:0-apple-music-to-add-transparency-tags-for-ai-generated-music/",
"provider": {
"id": "dpa_afx",
"name": "dpa-AFX",
"logo_id": "dpa_afx"
}
},
{
"id": "DJN_DN20260305006608:0",
"title": "Apple Is Maintained at Neutral by Rosenblatt",
"published": 1772718960,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/DJN_DN20260305006608:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "DJN_DN20260304012892:0",
"title": "MacBook Neo and iPhone 17e First Impressions: The Return of Cheap and Cheerful — Personal Technology — WSJ",
"published": 1772676000,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/DJN_DN20260304012892:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "dpa_afx:2859ab73a8cb7:0",
"title": "Apple Launches MacBook Neo Starting At $599",
"published": 1772649459,
"urgency": 2,
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/dpa_afx:2859ab73a8cb7:0-apple-launches-macbook-neo-starting-at-599/",
"provider": {
"id": "dpa_afx",
"name": "dpa-AFX",
"logo_id": "dpa_afx"
}
},
{
"id": "DJN_DN20260304007584:0",
"title": "Apple's Price Increases Soothe Concerns Over Memory Costs — Market Talk",
"published": 1772645640,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/DJN_DN20260304007584:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "DJN_DN20260304006806:0",
"title": "Apple Launches a $599 MacBook. Why That Price Is Such a Big Deal. — Barrons.com",
"published": 1772644500,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:GOOG",
"logoid": "alphabet"
},
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "NYSE:DELL",
"logoid": "dell"
},
{
"symbol": "NYSE:HPQ",
"logoid": "hp"
}
],
"storyPath": "/news/DJN_DN20260304006806:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "DJN_DN20260304007387:0",
"title": "Apple Uses Low Prices to Attack Rivals During Memory-Chip Crunch — WSJ",
"published": 1772644260,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/DJN_DN20260304007387:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "DJN_DN20260304007302:0",
"title": "Apple Seen Getting a Lift from New Mac Laptops — Market Talk",
"published": 1772644080,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/DJN_DN20260304007302:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "stocktwits:930831ece094b:0",
"title": "Apple Launches MacBook Neo At $599, Offering An Alternative To Google’s Chromebooks",
"published": 1772639380,
"urgency": 2,
"link": "https://stocktwits.com/news-articles/markets/equity/apple-launches-macbook-neo-starting-at-599-taking-on-google-chromebooks/cZd9YtyRI5z",
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/stocktwits:930831ece094b:0/",
"provider": {
"id": "stocktwits",
"name": "Stocktwits",
"logo_id": "stocktwits",
"url": "https://stocktwits.com/"
}
},
{
"id": "DJN_DN20260304006275:0",
"title": "Apple's $599 MacBook Neo: The Pros and Cons — WSJ",
"published": 1772637960,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/DJN_DN20260304006275:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "tag:reuters.com,2026:newsml_L6N3ZS157:0",
"title": "Apple debuts $599 MacBook Neo to challenge Chromebooks, Windows PCs",
"published": 1772634439,
"urgency": 2,
"permission": "headline",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "NASDAQ:GOOG",
"logoid": "alphabet"
},
{
"symbol": "NASDAQ:MSFT",
"logoid": "microsoft"
},
{
"symbol": "NASDAQ:ARM",
"logoid": "arm"
}
],
"storyPath": "/news/reuters.com,2026:newsml_L6N3ZS157:0-apple-debuts-599-macbook-neo-to-challenge-chromebooks-windows-pcs/",
"provider": {
"id": "reuters",
"name": "Reuters",
"logo_id": "reuters"
}
},
{
"id": "stocktwits:ec0a965c0094b:0",
"title": "AAPL, MSFT, CRWD, PANW: Dan Ives Identifies Top Tech Names Positioned To Navigate US-Iran War-Led Volatility",
"published": 1772632599,
"urgency": 2,
"link": "https://stocktwits.com/news-articles/markets/equity/aapl-msft-crwd-panw-dan-ives-identifies-top-tech-names-positioned-to-navigate-us-iran-war-led-volatility/cZd9VsnRI5t",
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "NASDAQ:MSFT",
"logoid": "microsoft"
},
{
"symbol": "NASDAQ:CRWD",
"logoid": "crowdstrike"
},
{
"symbol": "NASDAQ:PANW",
"logoid": "palo-alto-networks"
}
],
"storyPath": "/news/stocktwits:ec0a965c0094b:0/",
"provider": {
"id": "stocktwits",
"name": "Stocktwits",
"logo_id": "stocktwits",
"url": "https://stocktwits.com/"
}
},
{
"id": "tag:reuters.com,2026:newsml_P8N3YS0DA:0",
"title": "Shipments of foreign-branded phones in China fell in Jan on-year, CAICT data says",
"published": 1772589432,
"urgency": 2,
"permission": "headline",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/reuters.com,2026:newsml_P8N3YS0DA:0-shipments-of-foreign-branded-phones-in-china-fell-in-jan-on-year-caict-data-says/",
"provider": {
"id": "reuters",
"name": "Reuters",
"logo_id": "reuters"
}
},
{
"id": "dpa_afx:17468bd159475:0",
"title": "Apple Explores Deepening Google Partnership For Next-Gen Siri",
"published": 1772576758,
"urgency": 2,
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/dpa_afx:17468bd159475:0-apple-explores-deepening-google-partnership-for-next-gen-siri/",
"provider": {
"id": "dpa_afx",
"name": "dpa-AFX",
"logo_id": "dpa_afx"
}
},
{
"id": "dpa_afx:916e3ad594757:0",
"title": "Apple Unveils New Studio Display Lineup, Introduces Studio Display XDR",
"published": 1772574784,
"urgency": 2,
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/dpa_afx:916e3ad594757:0-apple-unveils-new-studio-display-lineup-introduces-studio-display-xdr/",
"provider": {
"id": "dpa_afx",
"name": "dpa-AFX",
"logo_id": "dpa_afx"
}
},
{
"id": "DJN_DN20260303008032:0",
"title": "This Schwab Dividend ETF is a Superstar. Defense and Energy Are Key — Barrons.com",
"published": 1772566800,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "NASDAQ:AVGO",
"logoid": "broadcom"
},
{
"symbol": "NASDAQ:MSFT",
"logoid": "microsoft"
},
{
"symbol": "NASDAQ:MORN",
"logoid": "morningstar"
}
],
"storyPath": "/news/DJN_DN20260303008032:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "dpa_afx:fb10a1085b6ba:0",
"title": "Apple Launches M5 Pro And M5 Max With Major Performance Boost",
"published": 1772563012,
"urgency": 2,
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/dpa_afx:fb10a1085b6ba:0-apple-launches-m5-pro-and-m5-max-with-major-performance-boost/",
"provider": {
"id": "dpa_afx",
"name": "dpa-AFX",
"logo_id": "dpa_afx"
}
},
{
"id": "dpa_afx:2c972b4358f9c:0",
"title": "Apple Unveils MacBook Air With M5 Chip",
"published": 1772560785,
"urgency": 2,
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/dpa_afx:2c972b4358f9c:0-apple-unveils-macbook-air-with-m5-chip/",
"provider": {
"id": "dpa_afx",
"name": "dpa-AFX",
"logo_id": "dpa_afx"
}
},
{
"id": "DJN_DN20260303001337:0",
"title": "Should You Buy the Stock Market's Dip? Why the Mideast Fighting Could Be an Opportunity. — Barrons.com",
"published": 1772556300,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "NASDAQ:NVDA",
"logoid": "nvidia"
}
],
"storyPath": "/news/DJN_DN20260303001337:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "DJN_DN20260303006394:0",
"title": "Apple Launches New Laptops and Chips. AI Power Is a Focus. — Barrons.com",
"published": 1772554920,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/DJN_DN20260303006394:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "DJN_DN20260303006023:0",
"title": "Apple Is Maintained at Underweight by Barclays",
"published": 1772551920,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/DJN_DN20260303006023:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "stocktwits:bfad4995e094b:0",
"title": "Apple Increases Prices Of Its New MacBook Air And Pro Models – Everything To Know About Its Latest Lineup",
"published": 1772549519,
"urgency": 2,
"link": "https://stocktwits.com/news-articles/markets/equity/apple-increases-prices-of-its-new-mac-book-air-and-pro-models-everything-to-know-about-its-latest-lineup/cZdeK53RIPf",
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/stocktwits:bfad4995e094b:0/",
"provider": {
"id": "stocktwits",
"name": "Stocktwits",
"logo_id": "stocktwits",
"url": "https://stocktwits.com/"
}
},
{
"id": "dpa_afx:7f5b6e0b4c913:0",
"title": "Apple Introduces M4-Powered IPad Air With 12GB Memory, Starting At $599",
"published": 1772488648,
"urgency": 2,
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/dpa_afx:7f5b6e0b4c913:0-apple-introduces-m4-powered-ipad-air-with-12gb-memory-starting-at-599/",
"provider": {
"id": "dpa_afx",
"name": "dpa-AFX",
"logo_id": "dpa_afx"
}
},
{
"id": "stocktwits:d413ae839094b:0",
"title": "Apple’s New iPhone 17e To Boost Sales From Price-Focused Buyers, Says Gene Munster",
"published": 1772476910,
"urgency": 2,
"link": "https://stocktwits.com/news-articles/markets/equity/apple-iphone-17e-to-boost-sales-from-price-focused-buyers-says-gene-munster/cZd3i5GRI2W",
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/stocktwits:d413ae839094b:0/",
"provider": {
"id": "stocktwits",
"name": "Stocktwits",
"logo_id": "stocktwits",
"url": "https://stocktwits.com/"
}
},
{
"id": "DJN_DN20260302008113:0",
"title": "Apple Faces Risk of Slower Demand for Next iPhone — Market Talk",
"published": 1772476560,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/DJN_DN20260302008113:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "dpa_afx:843ffe90d6293:0",
"title": "Apple Unveils IPhone 17e With A19 Chip, Improved Camera And Satellite Features",
"published": 1772475902,
"urgency": 2,
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/dpa_afx:843ffe90d6293:0-apple-unveils-iphone-17e-with-a19-chip-improved-camera-and-satellite-features/",
"provider": {
"id": "dpa_afx",
"name": "dpa-AFX",
"logo_id": "dpa_afx"
}
},
{
"id": "DJN_DN20260302006227:0",
"title": "Apple's 'Affordable' New iPhone 17e: Why You Should — or Shouldn't — Get It — WSJ",
"published": 1772463720,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/DJN_DN20260302006227:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "stocktwits:7c6065ec9094b:0",
"title": "Apple Launches iPhone 17e With A19 Chip, Advanced Camera",
"published": 1772461866,
"urgency": 2,
"link": "https://stocktwits.com/news-articles/markets/equity/apple-launches-i-phone-17e-with-a19-chip-advanced-camera/cZd3BiGRI25",
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/stocktwits:7c6065ec9094b:0/",
"provider": {
"id": "stocktwits",
"name": "Stocktwits",
"logo_id": "stocktwits",
"url": "https://stocktwits.com/"
}
},
{
"id": "tag:reuters.com,2026:newsml_FWN3ZQ0WW:0",
"title": "Apple Discusses Google Hosting New Siri, Deepening Cloud Reliance- The Information",
"published": 1772460305,
"urgency": 2,
"permission": "headline",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "NASDAQ:GOOG",
"logoid": "alphabet"
}
],
"storyPath": "/news/reuters.com,2026:newsml_FWN3ZQ0WW:0-apple-discusses-google-hosting-new-siri-deepening-cloud-reliance-the-information/",
"provider": {
"id": "reuters",
"name": "Reuters",
"logo_id": "reuters"
}
},
{
"id": "DJN_DN20260228000971:0",
"title": "Berkshire Hathaway's CEO Suggests These 4 Companies Are Forever Stocks — Barrons.com",
"published": 1772314920,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NYSE:AXP",
"logoid": "american-express"
},
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "NYSE:BRK.A",
"logoid": "berkshire-hathaway"
},
{
"symbol": "NYSE:KO",
"logoid": "coca-cola"
},
{
"symbol": "NYSE:MCO",
"logoid": "moodys"
}
],
"storyPath": "/news/DJN_DN20260228000971:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "tag:reuters.com,2026:newsml_L6N3ZO0AO:0",
"title": "Berkshire CEO Abel assures investors he'll be a careful steward after Buffett",
"published": 1772286285,
"urgency": 2,
"permission": "headline",
"relatedSymbols": [
{
"symbol": "NYSE:BRK.A",
"logoid": "berkshire-hathaway"
},
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "NYSE:AXP",
"logoid": "american-express"
},
{
"symbol": "NYSE:KO",
"logoid": "coca-cola"
},
{
"symbol": "NYSE:MCO",
"logoid": "moodys"
}
],
"storyPath": "/news/reuters.com,2026:newsml_L6N3ZO0AO:0-berkshire-ceo-abel-assures-investors-he-ll-be-a-careful-steward-after-buffett/",
"provider": {
"id": "reuters",
"name": "Reuters",
"logo_id": "reuters"
}
},
{
"id": "tag:reuters.com,2026:newsml_FWN3ZO0B9:0",
"title": "Berkshire Hathaway Reported $373.3 Billion Of Cash And Equivalents As Of December 31, 2025",
"published": 1772286043,
"urgency": 2,
"permission": "headline",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "NYSE:AXP",
"logoid": "american-express"
},
{
"symbol": "NYSE:BAC",
"logoid": "bank-of-america"
},
{
"symbol": "NYSE:BRK.A",
"logoid": "berkshire-hathaway"
},
{
"symbol": "NYSE:CVX",
"logoid": "chevron"
},
{
"symbol": "NYSE:KO",
"logoid": "coca-cola"
}
],
"storyPath": "/news/reuters.com,2026:newsml_FWN3ZO0B9:0-berkshire-hathaway-reported-373-3-billion-of-cash-and-equivalents-as-of-december-31-2025/",
"provider": {
"id": "reuters",
"name": "Reuters",
"logo_id": "reuters"
}
},
{
"id": "tag:reuters.com,2026:newsml_L6N3ZO0AF:0",
"title": "Berkshire Hathaway profit falls on writedowns, lower insurance income",
"published": 1772285132,
"urgency": 2,
"permission": "headline",
"relatedSymbols": [
{
"symbol": "NYSE:BRK.A",
"logoid": "berkshire-hathaway"
},
{
"symbol": "NASDAQ:KHC",
"logoid": "kraft-heinz"
},
{
"symbol": "NYSE:OXY",
"logoid": "occidental-petroleum"
},
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "NYSE:AXP",
"logoid": "american-express"
}
],
"storyPath": "/news/reuters.com,2026:newsml_L6N3ZO0AF:0-berkshire-hathaway-profit-falls-on-writedowns-lower-insurance-income/",
"provider": {
"id": "reuters",
"name": "Reuters",
"logo_id": "reuters"
}
},
{
"id": "dpa_afx:a1be740354182:0",
"title": "Apple's Latest IPhones And IPads Approved For NATO-Restricted Information",
"published": 1772226888,
"urgency": 2,
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/dpa_afx:a1be740354182:0-apple-s-latest-iphones-and-ipads-approved-for-nato-restricted-information/",
"provider": {
"id": "dpa_afx",
"name": "dpa-AFX",
"logo_id": "dpa_afx"
}
},
{
"id": "DJN_DN20260227008205:0",
"title": "How to Fight AI? The 'Rolex Effect' Could Lift Apple and Other Consumer Brands — Barrons.com",
"published": 1772213100,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "NYSE:MCD",
"logoid": "mcdonalds"
},
{
"symbol": "NASDAQ:WMT",
"logoid": "walmart"
}
],
"storyPath": "/news/DJN_DN20260227008205:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "DJN_DN20260227005259:0",
"title": "Stocks Are Set for a February Slide. Can the Magnificent 7 Spark a March Rebound? — Barrons.com",
"published": 1772196000,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "NASDAQ:NVDA",
"logoid": "nvidia"
},
{
"symbol": "NASDAQ:TSLA",
"logoid": "tesla"
}
],
"storyPath": "/news/DJN_DN20260227005259:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "stocktwits:a55a75590094b:0",
"title": "Apple’s AI Woes Meet A ‘Tsunami-Like’ Shock: IDC Sees Smartphone Shipments Crashing This Year",
"published": 1772178224,
"urgency": 2,
"link": "https://stocktwits.com/news-articles/markets/equity/apple-s-ai-woes-meet-a-tsunami-like-shock-idc-sees-smartphone-shipments-crashing-this-year/cZTc9VjRIRH",
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/stocktwits:a55a75590094b:0/",
"provider": {
"id": "stocktwits",
"name": "Stocktwits",
"logo_id": "stocktwits",
"url": "https://stocktwits.com/"
}
},
{
"id": "tag:reuters.com,2026:newsml_L4N3ZM253:0",
"title": "Smartphone market set for biggest-ever decline in 2026 on memory price surge, IDC says",
"published": 1772133573,
"urgency": 2,
"permission": "headline",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "KRX:005930",
"logoid": "samsung"
}
],
"storyPath": "/news/reuters.com,2026:newsml_L4N3ZM253:0-smartphone-market-set-for-biggest-ever-decline-in-2026-on-memory-price-surge-idc-says/",
"provider": {
"id": "reuters",
"name": "Reuters",
"logo_id": "reuters"
}
},
{
"id": "DJN_SN20260226013776:0",
"title": "These S&P 500 alternatives have shined so far this year",
"published": 1772122560,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "CBOE:SPX",
"logoid": "indices/s-and-p-500"
},
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "AMEX:RSP",
"logoid": "invesco"
},
{
"symbol": "NASDAQ:MSFT",
"logoid": "microsoft"
},
{
"symbol": "NASDAQ:NVDA",
"logoid": "nvidia"
}
],
"storyPath": "/news/DJN_SN20260226013776:0/",
"provider": {
"id": "market-watch",
"name": "MarketWatch",
"logo_id": "marketwatch"
}
},
{
"id": "tag:reuters.com,2026:newsml_L6N3ZM0WB:0",
"title": "Apple seeks dismissal of fraud lawsuit over Siri AI, Epic injunction",
"published": 1772121551,
"urgency": 2,
"permission": "headline",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/reuters.com,2026:newsml_L6N3ZM0WB:0-apple-seeks-dismissal-of-fraud-lawsuit-over-siri-ai-epic-injunction/",
"provider": {
"id": "reuters",
"name": "Reuters",
"logo_id": "reuters"
}
},
{
"id": "tag:reuters.com,2026:newsml_L4N3ZM0I5:0",
"title": "Apple in talks with banks to start payment service in India, Bloomberg News reports",
"published": 1772087567,
"urgency": 2,
"permission": "headline",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "NSE:ICICIBANK",
"logoid": "icici-bank"
},
{
"symbol": "NSE:HDFCBANK",
"logoid": "hdfc-bank"
},
{
"symbol": "NSE:AXISBANK",
"logoid": "axis-bank"
}
],
"storyPath": "/news/reuters.com,2026:newsml_L4N3ZM0I5:0-apple-in-talks-with-banks-to-start-payment-service-in-india-bloomberg-news-reports/",
"provider": {
"id": "reuters",
"name": "Reuters",
"logo_id": "reuters"
}
},
{
"id": "tag:reuters.com,2026:newsml_FWN3ZL29P:0",
"title": "Apple In Talks With Banks To Start Payment Service In India - Bloomberg News",
"published": 1772087389,
"urgency": 2,
"permission": "headline",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/reuters.com,2026:newsml_FWN3ZL29P:0-apple-in-talks-with-banks-to-start-payment-service-in-india-bloomberg-news/",
"provider": {
"id": "reuters",
"name": "Reuters",
"logo_id": "reuters"
}
},
{
"id": "DJN_DN20260225008335:0",
"title": "What I Saw Inside Apple's U.S. Chip Supply Chain — WSJ",
"published": 1772049240,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "TWSE:2330",
"logoid": "taiwan-semiconductor"
}
],
"storyPath": "/news/DJN_DN20260225008335:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "DJN_DN20260225009010:0",
"title": "Apple Needs to Copy Samsung's New Security Smartphone Screen ASAP — WSJ",
"published": 1772043120,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "KRX:005930",
"logoid": "samsung"
},
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/DJN_DN20260225009010:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "tag:reuters.com,2026:newsml_L1N3ZL0OL:0",
"title": "Apple and Amazon took too long to remove anti-competitive clauses, Spanish watchdog says",
"published": 1772030407,
"urgency": 2,
"permission": "headline",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "NASDAQ:AMZN",
"logoid": "amazon"
}
],
"storyPath": "/news/reuters.com,2026:newsml_L1N3ZL0OL:0-apple-and-amazon-took-too-long-to-remove-anti-competitive-clauses-spanish-watchdog-says/",
"provider": {
"id": "reuters",
"name": "Reuters",
"logo_id": "reuters"
}
},
{
"id": "DJN_DN20260225006487:0",
"title": "Spain Ramps Up Pressure on Apple, Amazon in Yearslong Antitrust Case",
"published": 1772027400,
"urgency": 2,
"relatedSymbols": [
{
"symbol": "NASDAQ:AMZN",
"logoid": "amazon"
},
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/DJN_DN20260225006487:0-spain-ramps-up-pressure-on-apple-amazon-in-yearslong-antitrust-case/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "tag:reuters.com,2026:newsml_L8N3ZL16B:0",
"title": "Spain's antitrust watchdog says Apple, Amazon took too long to refine anti-competitive contracts",
"published": 1772025565,
"urgency": 2,
"permission": "headline",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "NASDAQ:AMZN",
"logoid": "amazon"
}
],
"storyPath": "/news/reuters.com,2026:newsml_L8N3ZL16B:0-spain-s-antitrust-watchdog-says-apple-amazon-took-too-long-to-refine-anti-competitive-contracts/",
"provider": {
"id": "reuters",
"name": "Reuters",
"logo_id": "reuters"
}
},
{
"id": "stocktwits:7e7d034ba094b:0",
"title": "Apple CEO Tim Cook ‘Slept With One Eye Open’ After CIA Secret Brief About China Possibly Striking Taiwan: Report",
"published": 1771998942,
"urgency": 2,
"link": "https://stocktwits.com/news-articles/markets/equity/apple-ceo-tim-cook-slept-with-one-eye-open-after-cia-secret-brief-about-china-possibly-striking-taiwan/cZRUMiIR469",
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/stocktwits:7e7d034ba094b:0/",
"provider": {
"id": "stocktwits",
"name": "Stocktwits",
"logo_id": "stocktwits",
"url": "https://stocktwits.com/"
}
},
{
"id": "DJN_DN20260224014448:0",
"title": "Review and Preview: On Claude Nine — Barrons.com",
"published": 1771980480,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AMD",
"logoid": "advanced-micro-devices"
},
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "NASDAQ:LZ",
"logoid": "legalzoom"
},
{
"symbol": "NYSE:SNOW",
"logoid": "snowflake"
}
],
"storyPath": "/news/DJN_DN20260224014448:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "tag:reuters.com,2026:newsml_FWN3ZK1ES:0",
"title": "Apple’s Touch-Screen Macbook Pro To Have Dynamic Island, New Interface - Bloomberg News",
"published": 1771967467,
"urgency": 2,
"permission": "headline",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/reuters.com,2026:newsml_FWN3ZK1ES:0-apple-s-touch-screen-macbook-pro-to-have-dynamic-island-new-interface-bloomberg-news/",
"provider": {
"id": "reuters",
"name": "Reuters",
"logo_id": "reuters"
}
},
{
"id": "DJN_DN20260224008928:0",
"title": "Apple Vowed to Boost U.S. Manufacturing. The Mac Mini Will Be Built in This City. — Barrons.com",
"published": 1771965600,
"urgency": 2,
"permission": "provider",
"relatedSymbols": [
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
}
],
"storyPath": "/news/DJN_DN20260224008928:0/",
"provider": {
"id": "dow-jones",
"name": "Dow Jones Newswires",
"logo_id": "dow-jones-newswires"
}
},
{
"id": "tag:reuters.com,2026:newsml_L4N3ZK1K3:0",
"title": "Wall St rebounds from tech rout; tariff, AI worries linger",
"published": 1771953683,
"urgency": 2,
"permission": "headline",
"relatedSymbols": [
{
"symbol": "NYSE:CRM",
"logoid": "salesforce"
},
{
"symbol": "DJ:DJI",
"logoid": "indices/dow-30"
},
{
"symbol": "SP:SPX",
"logoid": "indices/s-and-p-500"
},
{
"symbol": "TVC:IXIC",
"logoid": "indices/nasdaq-composite"
},
{
"symbol": "SP:SPF",
"logoid": "sector/financial"
},
{
"symbol": "NASDAQ:AAPL",
"logoid": "apple"
},
{
"symbol": "NASDAQ:NVDA",
"logoid": "nvidia"
},
{
"symbol": "NASDAQ:AMD",
"logoid": "advanced-micro-devices"
},
{
"symbol": "NASDAQ:META",
"logoid": "meta-platforms"
},
{
"symbol": "NYSE:HD",
"logoid": "home-depot"
},
{
"symbol": "NYSE:KEYS",
"logoid": "keysight-technologies"
},
{
"symbol": "TVC:DJI",
"logoid": "indices/dow-30"
}
],
"storyPath": "/news/reuters.com,2026:newsml_L4N3ZK1K3:0-wall-st-rebounds-from-tech-rout-tariff-ai-worries-linger/",
"provider": {
"id": "reuters",
"name": "Reuters",
"logo_id": "reuters"
}
}
],
"streaming": {
"channel": "64e27170d46efffb047e96cec6c2"
},
"pagination": {
"cursor": "eyJfaWQiOiJzdG9ja3R3aXRzOmI4ZWY4OTFmNTA5NGIiLCJwdWJkYXRlIjoxNzcxOTUxMjk3MDAwfQ=="
}
},
"msg": "Success"
} Other News Endpoints
GET /api/news/stock- Stock market newsGET /api/news/crypto- Cryptocurrency NewsGET /api/news/forex- Forex market newsGET /api/news/futures- Futures market newsGET /api/news/bond- Bond market newsGET /api/news/etf- ETF market newsGET /api/news/economic- Economic newsGET /api/news/index- Index newsGET /api/news/{newsId}- Get news details
Leaderboard - Leaderboard
Get market leaderboard data including gainers, losers, and most active rankings.
Get stock leaderboard data, requires market code
Query Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
tab | string | ✓ | Tab ID (all_stocks, gainers, losers, large_cap, small_cap, largest_employers, high_dividend, highest_net_income, highest_cash, highest_profit_per_employee, highest_revenue_per_employee, active, unusual_volume, most_volatile, high_beta, best_performing, highest_revenue, most_expensive, penny_stocks, overbought, oversold, ath, atl, 52wk_high, 52wk_low) | |
market_code | string | ✓ | Market code (e.g., america, china, japan) | |
columnset | string | overview | Column set (default: overview) (overview, performance, valuation, dividends, profitability, incomeStatement, balanceSheet, cashFlow, technicals) | |
start | integer | 0 | Start position | |
count | integer | 20 | Return count (max 150) | |
lang | string | en | Language code |
Request Examples
curl --request GET \
--url 'https://tradingview-data1.p.rapidapi.com/api/leaderboard/stocks?tab=gainers&market_code=america&count=10' \
--header 'x-rapidapi-host: tradingview-data1.p.rapidapi.com' \
--header 'x-rapidapi-key: YOUR_RAPIDAPI_KEY' const params = new URLSearchParams({ tab: 'gainers', market_code: 'america', count: '10' });
const response = await fetch(`https://tradingview-data1.p.rapidapi.com/api/leaderboard/stocks?${params}`, {
method: 'GET',
headers: {
'x-rapidapi-host': 'tradingview-data1.p.rapidapi.com',
'x-rapidapi-key': 'YOUR_RAPIDAPI_KEY'
}
});
const data = await response.json();
console.log(data); import requests
url = "https://tradingview-data1.p.rapidapi.com/api/leaderboard/stocks"
params = {"tab": "gainers", "market_code": "america", "count": 10}
headers = {
"x-rapidapi-host": "tradingview-data1.p.rapidapi.com",
"x-rapidapi-key": "YOUR_RAPIDAPI_KEY"
}
response = requests.get(url, params=params, headers=headers)
print(response.json()) Response Examples
{
"success": true,
"data": {
"totalCount": 2081,
"data": [
{
"rank": 1,
"symbol": "NASDAQ:ENVB",
"description": "Enveric Biosciences, Inc.",
"exchange": "NASDAQ",
"kind": "delay",
"kind-delay": 900,
"logo": {
"logoid": "enveric-biosciences",
"style": "single"
},
"logoid": "enveric-biosciences",
"name": "ENVB",
"type": "stock",
"typespecs": [
"common"
],
"change": 100.54945054945054,
"price": 3.65,
"currency": "USD",
"volume": 158694731,
"relativevolume": 125.31953277558104,
"marketcap": 6889503.000000001,
"pricetoearnings": null,
"epsdiluted": -40.8497,
"epsdilutedgrowth": 84.04362197207438,
"dividendsyield": 0,
"sector": "Health technology",
"analystrating": "NoRating"
},
{
"rank": 2,
"symbol": "NASDAQ:FGI",
"description": "FGI Industries Ltd.",
"exchange": "NASDAQ",
"kind": "delay",
"kind-delay": 900,
"logo": {
"logoid": "fgi-industries-ltd",
"style": "single"
},
"logoid": "fgi-industries-ltd",
"name": "FGI",
"type": "stock",
"typespecs": [
"common"
],
"change": 50.615384615384606,
"price": 9.79,
"currency": "USD",
"volume": 2517949,
"relativevolume": 23.441360036047172,
"marketcap": 18868522,
"pricetoearnings": null,
"epsdiluted": -3.1998,
"epsdilutedgrowth": -408.3081810961081,
"dividendsyield": 0,
"sector": "Producer manufacturing",
"analystrating": "StrongBuy"
},
{
"rank": 3,
"symbol": "NASDAQ:PBM",
"description": "Psyence Biomedical Ltd.",
"exchange": "NASDAQ",
"kind": "delay",
"kind-delay": 900,
"logo": {
"logoid": "psyence",
"style": "single"
},
"logoid": "psyence",
"name": "PBM",
"type": "stock",
"typespecs": [
"common"
],
"change": 48.68421052631581,
"price": 11.3,
"currency": "USD",
"volume": 42269832,
"relativevolume": 4.045649231514533,
"marketcap": 11550600,
"pricetoearnings": null,
"epsdiluted": null,
"epsdilutedgrowth": null,
"dividendsyield": null,
"sector": "Health technology",
"analystrating": "NoRating"
},
{
"rank": 4,
"symbol": "NASDAQ:JLHL",
"description": "Julong Holding Limited",
"exchange": "NASDAQ",
"kind": "delay",
"kind-delay": 900,
"logo": {
"logoid": "julong-limited",
"style": "single"
},
"logoid": "julong-limited",
"name": "JLHL",
"type": "stock",
"typespecs": [
"common"
],
"change": 48.661417322834644,
"price": 9.44,
"currency": "USD",
"volume": 1477700,
"relativevolume": 9.218277354303869,
"marketcap": 202475079,
"pricetoearnings": 55.62757807896288,
"epsdiluted": 0.1697,
"epsdilutedgrowth": null,
"dividendsyield": 0,
"sector": "Commercial services",
"analystrating": "NoRating"
},
{
"rank": 5,
"symbol": "NASDAQ:INV",
"description": "Innventure, Inc.",
"exchange": "NASDAQ",
"kind": "delay",
"kind-delay": 900,
"logo": {
"logoid": "innventure",
"style": "single"
},
"logoid": "innventure",
"name": "INV",
"type": "stock",
"typespecs": [
"common"
],
"change": 34.565217391304365,
"price": 6.19,
"currency": "USD",
"volume": 7117099,
"relativevolume": 6.181688386091924,
"marketcap": 495629099.99999994,
"pricetoearnings": null,
"epsdiluted": -5.7593,
"epsdilutedgrowth": -195.39416320459557,
"dividendsyield": 0,
"sector": "Miscellaneous",
"analystrating": "StrongBuy"
}
],
"metadata": {
"asset_type": "stocks",
"tab": {
"id": "stocks_market_movers.gainers",
"title": "Top gainers"
},
"market": {
"name": "United States",
"market_code": "america",
"exchanges": [
"NASDAQ",
"NYSE",
"NYSE ARCA",
"OTC"
]
},
"columnset": {
"id": "overview",
"title": "Overview"
}
}
},
"msg": "Success"
} Other Leaderboard Endpoints
GET /api/leaderboard/crypto- Cryptocurrency LeaderboardGET /api/leaderboard/forex- Forex LeaderboardGET /api/leaderboard/futures- Futures LeaderboardGET /api/leaderboard/indices- Indices LeaderboardGET /api/leaderboard/bonds- Bonds LeaderboardGET /api/leaderboard/corporate-bonds- Corporate Bonds LeaderboardGET /api/leaderboard/etfs- ETF LeaderboardGET /api/leaderboard/data- Get leaderboard data by config ID (Legacy)
Screener - Stock Screener
Run TradingView-style stock screeners with preset column groups, field metadata, and configurable output columns. Call filter-options first, then choose presets or fields, then scan with market and pagination.
Need Screener Metadata? Start Here
If you are building a screener UI, configuring enum filters, or deciding which
preset_fields / fields / extra_fields to send,
open the Screener Metadata Guide first.
- Use it for valid filter field IDs such as
sectorandAnalystRating. - Use it for accepted enum
valuestrings fromGET /api/screener/filter-options. - Use it for preset column groups, filter encoding rules, and common request mistakes.
Quick path: /screener-metadata/
Recommended Screener Request Flow
- Call
GET /api/screener/filter-optionsfirst to discover valid filter field IDs, value types, available operations, and enum option values. - Call
GET /api/screener/presetsif you want a ready-made column set such asoverview,valuation, ortechnicals. - Call
POST /api/screener/scanwithmarket,range, and your chosenpreset_fields,fields, orextra_fields. Addfiltersandsortonly when needed.
Treat filter-options as the source of truth for building filter UIs. It tells you which id to use as filters.<field> and which enum value strings are accepted, while presets only controls response columns.
| Parameter | Where | Type | Required | Detailed rule |
|---|---|---|---|---|
lang | filter-options, scan | string | No | Controls localized enum labels and some returned field values. Use the same language in metadata and scan if you render labels directly to end users. Common values are en and zh. |
id | filter-options | string | No | Optional field filter. Accepts one field ID or multiple comma-separated IDs such as sector,AnalystRating,candlestick_patterns. Use this to reduce payload size when you only need a few filters. |
market | scan | string | No | TradingView screener market path segment. Common stock market codes include america, canada, china, japan, uk, and germany. You can also use broader values such as global. Default is china. global fans out to a predefined multi-market list and converts prices to USD. |
range | scan | array<int> | No | Must be a two-item array [start, endExclusive]. Example: [0, 20] returns up to 20 rows. If omitted, the API defaults to [0, 100]. |
preset_fields | scan | string or string[] | No | One preset ID or multiple preset IDs. The API merges all selected preset field groups in order. Use GET /api/screener/presets to discover valid preset IDs. |
fields | scan | string or string[] | No | Explicit column list. Accepts a comma-separated string or an array. If neither preset_fields nor fields is supplied, the API falls back to the default overview column set. |
extra_fields | scan | string or string[] | No | Extra columns appended after preset_fields or fields. Duplicates are removed automatically, so it is safe to append one field already included in a preset. |
filters | scan | object | No | Simplified filter map keyed by field ID. The field key must match a valid screener field such as sector, AnalystRating, or market_cap_basic. Values can be arrays, scalars, or objects with an explicit operation. |
sort | scan | object | No | Use {"sortBy":"field_id","sortOrder":"asc|desc"}. If omitted, the API sorts by market_cap_basic desc. |
Simplified filters Format
| Input form | When to use it | Example | Server interpretation |
|---|---|---|---|
| Array value | Multi-select enum filters or range-like values | "sector": ["Health Services"] | Converted to { left: "sector", operation: "in_range", right: ["Health Services"] } |
| Scalar value | Simple equality on number, enum, or boolean-like values | "close": 10 | Converted to { left: "close", operation: "equal", right: 10 } |
| Object with operation | Any filter that needs greater, less, in_range, and similar explicit operators | "market_cap_basic": { "operation": "greater", "value": 1000000000 } | Converted to { left: "market_cap_basic", operation: "greater", right: 1000000000 } |
Screener Parameter Rules That Matter
- Enum filters should use the exact option
valuereturned byfilter-options, not a translated label you typed by hand. AnalystRatingis case-sensitive and uses the screener field ID exactly as returned in metadata. Do not silently rename it toanalyst_ratinginsidefilters.fields,preset_fields, andextra_fieldsaffect output columns only. They do not define what can appear insidefilters.- If you send
rangewith only one item, a negative number, or stringified values that do not parse cleanly, pagination behavior becomes invalid. Always send two integers. - If you build a UI, keep a local mapping from screener field ID to metadata entry so that sort fields and filter fields stay aligned.
Common Screener Patterns
{
"market": "america",
"lang": "en",
"range": [0, 50],
"preset_fields": ["overview", "valuation"],
"extra_fields": ["beta_1_year", "dividends_yield_current"],
"filters": {
"sector": ["Health Services"],
"AnalystRating": ["Buy"],
"market_cap_basic": { "operation": "greater", "value": 1000000000 },
"close": { "operation": "greater_or_equal", "value": 5 }
},
"sort": {
"sortBy": "market_cap_basic",
"sortOrder": "desc"
}
}
Swap market to any of the other commonly used stock screener codes when needed:
canada, china, japan, uk, or germany.
When to Use Metadata vs Screener Metadata
Use the Metadata Browser for broad API discovery such as asset types, leaderboard tabs, and market coverage. Use the Screener Metadata Guide when you need field-level screener metadata such as valid filter IDs, operations, enum values, and scan request-shape rules.
Screener workflow
GET /api/screener/filter-options— filter fields and enum labels (lang, optionalid)GET /api/screener/presets— column presets (overview,technicals, etc.)POST /api/screener/scan— run scan withmarket,range,preset_fields/fields/extra_fields, plus optionalfiltersandsort
Calendar - Financial Calendar
Get economic calendar, earnings calendar, dividends calendar, and IPO calendar data.
Get economic calendar events for specified time range and countries
Query Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
from | integer | ✓ | Start time (Unix timestamp in seconds). Time span cannot exceed 40 days | |
to | integer | ✓ | End time (Unix timestamp in seconds). Time span cannot exceed 40 days | |
market | string | Market codes (supports multiple, comma-separated, e.g., america,china). Internally converted to country codes |
Request Examples
curl --request GET \
--url 'https://tradingview-data1.p.rapidapi.com/api/calendar/economic?from=1738368000&to=1738972800' \
--header 'x-rapidapi-host: tradingview-data1.p.rapidapi.com' \
--header 'x-rapidapi-key: YOUR_RAPIDAPI_KEY' const params = new URLSearchParams({ from: '1738368000', to: '1738972800' });
const response = await fetch(`https://tradingview-data1.p.rapidapi.com/api/calendar/economic?${params}`, {
method: 'GET',
headers: {
'x-rapidapi-host': 'tradingview-data1.p.rapidapi.com',
'x-rapidapi-key': 'YOUR_RAPIDAPI_KEY'
}
});
const data = await response.json();
console.log(data); import requests
url = "https://tradingview-data1.p.rapidapi.com/api/calendar/economic"
params = {"from": 1738368000, "to": 1738972800}
headers = {
"x-rapidapi-host": "tradingview-data1.p.rapidapi.com",
"x-rapidapi-key": "YOUR_RAPIDAPI_KEY"
}
response = requests.get(url, params=params, headers=headers)
print(response.json()) Response Examples
{
"success": true,
"data": {
"status": "ok",
"result": [
{
"id": "397829",
"title": "ADP Employment Change Weekly",
"country": "US",
"indicator": "ADP Employment Change Weekly",
"comment": "The preliminary estimate of the ADP National Employment Report reflects weekly changes in private employment and includes a four-week moving average of total private employment variation.",
"category": "lbr",
"period": "",
"referenceDate": "2026-04-04T00:00:00Z",
"source": "Automatic Data Processing, Inc.",
"source_url": "https://adpemploymentreport.com/",
"actual": null,
"previous": 39,
"forecast": null,
"actualRaw": null,
"previousRaw": 39000,
"forecastRaw": null,
"currency": "USD",
"scale": "K",
"importance": 0,
"date": "2026-04-21T12:15:00.000Z"
},
{
"id": "397925",
"title": "Retail Sales MoM",
"country": "US",
"indicator": "Retail Sales MoM",
"ticker": "ECONOMICS:USRSMM",
"comment": "Retail sales report in the US provides aggregated measure of sales of retail goods and services over a period of a month. There are thirteen major types of retailers: Motor vehicle & parts dealers (20% of total sales), Nonstore retailers (17%), Food services & drinking places (14%), Food & beverage stores (12%), General merchandise stores (10%), Gasoline stations (7%), Building material & garden equipment dealers (6%), Health & personal care stores (5%), Clothing & clothing accessories stores (3%), Miscellaneous store retailers (2%), Furniture & home furnishings stores (2%), Sporting goods, hobby, musical instrument & book stores (1%), and Electronics & appliance stores (1%).",
"category": "cnsm",
"period": "Mar",
"referenceDate": "2026-03-31T00:00:00Z",
"source": "Census Bureau",
"source_url": "https://www.census.gov/",
"actual": null,
"previous": 0.6,
"forecast": 1.4,
"actualRaw": null,
"previousRaw": 0.6,
"forecastRaw": 1.4,
"currency": "USD",
"unit": "%",
"importance": 1,
"date": "2026-04-21T12:30:00.000Z"
},
{
"id": "398445",
"title": "Retail Sales Ex Autos MoM",
"country": "US",
"indicator": "Retail Sales Ex Autos",
"ticker": "ECONOMICS:USRSEA",
"comment": "Retail Sales Ex Autos report in the US provides aggregated measure of sales of retail goods and services excluding the automobile sector over a period of a month.",
"category": "cnsm",
"period": "Mar",
"referenceDate": "2026-03-31T00:00:00Z",
"source": "Census Bureau",
"source_url": "http://www.census.gov",
"actual": null,
"previous": 0.5,
"forecast": 1.4,
"actualRaw": null,
"previousRaw": 0.5,
"forecastRaw": 1.4,
"currency": "USD",
"unit": "%",
"importance": 0,
"date": "2026-04-21T12:30:00.000Z"
},
{
"id": "398553",
"title": "Retail Sales Ex Gas/Autos MoM",
"country": "US",
"indicator": "Retail Sales Ex Gas and Autos MoM",
"ticker": "ECONOMICS:USRSEGAMM",
"comment": "Retail Sales Ex Gas and Autos in the US provides aggregated measure of sales of retail goods and services excluding motor vehicle dealers and gasoline station over a period of a month.",
"category": "cnsm",
"period": "Mar",
"referenceDate": "2026-03-31T00:00:00Z",
"source": "Census Bureau",
"source_url": "http://www.census.gov",
"actual": null,
"previous": 0.4,
"forecast": null,
"actualRaw": null,
"previousRaw": 0.4,
"forecastRaw": null,
"currency": "USD",
"unit": "%",
"importance": -1,
"date": "2026-04-21T12:30:00.000Z"
},
{
"id": "399246",
"title": "Retail Sales YoY",
"country": "US",
"indicator": "Retail Sales YoY",
"ticker": "ECONOMICS:USRSYY",
"comment": "In the United States, the year-over-year change in Retail sales compares the aggregated sales of retail goods and services during a certain month to the same month a year ago.",
"category": "cnsm",
"period": "Mar",
"referenceDate": "2026-03-31T00:00:00Z",
"source": "Census Bureau",
"source_url": "http://www.census.gov",
"actual": null,
"previous": 3.7,
"forecast": null,
"actualRaw": null,
"previousRaw": 3.7,
"forecastRaw": null,
"currency": "USD",
"importance": -1,
"date": "2026-04-21T12:30:00.000Z"
},
{
"id": "399317",
"title": "Retail Sales Control Group MoM",
"country": "US",
"indicator": "Retail Sales Control Group",
"comment": "Control-group retail sales in the US exclude sales of food services, auto dealers, building materials, and gasoline stations. These figures are a key input for the government's calculation of goods spending in gross domestic product (GDP).",
"category": "cnsm",
"period": "Mar",
"referenceDate": "2026-03-31T00:00:00Z",
"source": "Census Bureau",
"source_url": "https://www.census.gov/",
"actual": null,
"previous": 0.5,
"forecast": 0.2,
"actualRaw": null,
"previousRaw": 0.5,
"forecastRaw": 0.2,
"currency": "USD",
"unit": "%",
"importance": 0,
"date": "2026-04-21T12:30:00.000Z"
},
{
"id": "395588",
"title": "Redbook YoY",
"country": "US",
"indicator": "Redbook Index",
"ticker": "ECONOMICS:USRI",
"comment": "The Johnson Redbook Index is a sales-weighted of year-over-year same-store sales growth in a sample of large US general merchandise retailers representing about 9,000 stores. Same-store sales are sales in stores continuously open for 12 months or longer. By dollar value, the Index represents over 80% of the equivalent 'official' retail sales series collected and published by the US Department of Commerce. Redbook compiles the Index by collecting and interpreting performance estimates from retailers. The Index and its sub-groups are sales-weighted aggregates of these estimates. Weeks are retail weeks (Sunday to Saturday), and equally weighted within the month.",
"category": "cnsm",
"period": "Apr/18",
"referenceDate": "2026-04-18T00:00:00Z",
"source": "Redbook Research Inc.",
"source_url": "http://www.redbookresearch.com/",
"actual": null,
"previous": 7,
"forecast": null,
"actualRaw": null,
"previousRaw": 7,
"forecastRaw": null,
"currency": "USD",
"importance": -1,
"date": "2026-04-21T12:55:00.000Z"
},
{
"id": "398257",
"title": "Pending Home Sales YoY",
"country": "US",
"indicator": "Pending Home Sales",
"ticker": "ECONOMICS:USPHSIYY",
"comment": "The Pending Home Sales Index, a leading indicator of housing activity, measures housing contract activity, and is based on signed real estate contracts for existing single-family homes, condos and co-ops. When a seller accepts a sales contract on a property, it is recorded into a Multiple Listing Service (MLS) as a \"pending home sale.\" The majority of pending home sales become home sale transactions, typically one to two months later. The National Association of Realtors collects pending home sales data from MLSs and large brokers. Altogether, data from over 100 MLSs & 60 large brokers is received providing a large sample size covering 50% of the existing home sales sample. This is equal to 20 percent of all transactions.",
"category": "hse",
"period": "Mar",
"referenceDate": "2026-03-31T00:00:00Z",
"source": "National Association of Realtors",
"source_url": "https://www.nar.realtor",
"actual": null,
"previous": -0.8,
"forecast": null,
"actualRaw": null,
"previousRaw": -0.8,
"forecastRaw": null,
"currency": "USD",
"unit": "%",
"importance": 0,
"date": "2026-04-21T14:00:00.000Z"
},
{
"id": "398899",
"title": "Business Inventories MoM",
"country": "US",
"indicator": "Business Inventories",
"ticker": "ECONOMICS:USBI",
"comment": "Business Inventories in the United States measure the monthly percentage changes in inventories from manufacturers, retailers, and wholesalers. Inventories are a key component of gross domestic product.",
"category": "bsnss",
"period": "Feb",
"referenceDate": "2026-02-28T00:00:00Z",
"source": "Census Bureau",
"source_url": "https://www.census.gov",
"actual": null,
"previous": -0.1,
"forecast": 0.3,
"actualRaw": null,
"previousRaw": -0.1,
"forecastRaw": 0.3,
"currency": "USD",
"unit": "%",
"importance": 0,
"date": "2026-04-21T14:00:00.000Z"
},
{
"id": "398965",
"title": "Retail Inventories Ex Autos MoM",
"country": "US",
"indicator": "Retail Inventories Ex Autos",
"ticker": "ECONOMICS:USRIEA",
"category": "bsnss",
"period": "Feb",
"referenceDate": "2026-02-28T00:00:00Z",
"source": "Census Bureau",
"source_url": "https://www.census.gov/",
"actual": null,
"previous": 0.3,
"forecast": 0.3,
"actualRaw": null,
"previousRaw": 0.3,
"forecastRaw": 0.3,
"currency": "USD",
"unit": "%",
"importance": -1,
"date": "2026-04-21T14:00:00.000Z"
},
{
"id": "399188",
"title": "Pending Home Sales MoM",
"country": "US",
"indicator": "Pending Home Sales MoM",
"ticker": "ECONOMICS:USPHSIMM",
"comment": "The Pending Home Sales Index, a leading indicator of housing activity, measures housing contract activity, and is based on signed real estate contracts for existing single-family homes, condos and co-ops. When a seller accepts a sales contract on a property, it is recorded into a Multiple Listing Service (MLS) as a \"pending home sale.\" The majority of pending home sales become home sale transactions, typically one to two months later. The National Association of Realtors collects pending home sales data from MLSs and large brokers. Altogether, data from over 100 MLSs & 60 large brokers is received providing a large sample size covering 50% of the existing home sales sample. This is equal to 20 percent of all transactions.",
"category": "hse",
"period": "Mar",
"referenceDate": "2026-03-31T00:00:00Z",
"source": "National Association of Realtors",
"source_url": "https://www.nar.realtor",
"actual": null,
"previous": 1.8,
"forecast": 0.1,
"actualRaw": null,
"previousRaw": 1.8,
"forecastRaw": 0.1,
"currency": "USD",
"unit": "%",
"importance": 0,
"date": "2026-04-21T14:00:00.000Z"
},
{
"id": "419912",
"title": "Fed Chair Nominee Kevin Warsh Confirmation Hearing",
"country": "US",
"indicator": "Interest Rate",
"ticker": "ECONOMICS:USINTR",
"comment": "In the United States, the authority to set interest rates is divided between the Board of Governors of the Federal Reserve (Board) and the Federal Open Market Committee (FOMC). The Board decides on changes in discount rates after recommendations submitted by one or more of the regional Federal Reserve Banks. The FOMC decides on open market operations, including the desired levels of central bank money or the desired federal funds market rate.",
"category": "mny",
"period": "",
"referenceDate": null,
"source": "Federal Reserve",
"source_url": "http://www.federalreserve.gov/",
"actual": null,
"previous": null,
"forecast": null,
"actualRaw": null,
"previousRaw": null,
"forecastRaw": null,
"currency": "USD",
"importance": 0,
"date": "2026-04-21T14:00:00.000Z"
},
{
"id": "419899",
"title": "NY Fed Bill Purchases 1 to 4 months",
"country": "US",
"indicator": "Calendar",
"category": "gov",
"period": "",
"referenceDate": null,
"source": "",
"source_url": "",
"actual": null,
"previous": null,
"forecast": 7.587,
"actualRaw": null,
"previousRaw": null,
"forecastRaw": null,
"currency": "USD",
"importance": -1,
"date": "2026-04-21T14:20:00.000Z"
},
{
"id": "419883",
"title": "Fed Waller Speech",
"country": "US",
"indicator": "Interest Rate",
"ticker": "ECONOMICS:USINTR",
"comment": "In the United States, the authority to set interest rates is divided between the Board of Governors of the Federal Reserve (Board) and the Federal Open Market Committee (FOMC). The Board decides on changes in discount rates after recommendations submitted by one or more of the regional Federal Reserve Banks. The FOMC decides on open market operations, including the desired levels of central bank money or the desired federal funds market rate.",
"category": "mny",
"period": "",
"referenceDate": null,
"source": "Federal Reserve",
"source_url": "http://www.federalreserve.gov/",
"actual": null,
"previous": null,
"forecast": null,
"actualRaw": null,
"previousRaw": null,
"forecastRaw": null,
"currency": "USD",
"importance": 0,
"date": "2026-04-21T18:30:00.000Z"
},
{
"id": "395589",
"title": "API Crude Oil Stock Change",
"country": "US",
"indicator": "API Crude Oil Stock Change",
"ticker": "ECONOMICS:USCSC",
"comment": "Stocks of crude oil refer to the weekly change of the crude oil supply situation.",
"category": "enrg",
"period": "Apr/17",
"referenceDate": "2026-04-17T00:00:00Z",
"source": "American Petroleum Institute (API)",
"source_url": "http://www.api.org",
"actual": null,
"previous": 6.1,
"forecast": -1,
"actualRaw": null,
"previousRaw": 6100000,
"forecastRaw": -1000000,
"currency": "USD",
"scale": "M",
"importance": 0,
"date": "2026-04-21T20:30:00.000Z"
},
{
"id": "395590",
"title": "MBA Mortgage Market Index",
"country": "US",
"indicator": "MBA Mortgage Market Index",
"ticker": "ECONOMICS:USMMI",
"comment": "The MBA Weekly Mortgage Application Survey is a comprehensive overview of the nationwide mortgage market and covers all types of mortgage originators, including commercial banks, thrift institutions and mortgage banking companies. The entire market is represented by the Market Index which covers all mortgage applications during the week. This includes all conventional and government applications, all fixed-rate mortgages (FRMs), all adjustable-rate mortgages (ARMs), whether for a purchase or to refinance.",
"category": "hse",
"period": "Apr/17",
"referenceDate": "2026-04-17T00:00:00Z",
"source": "Mortgage Bankers Association of America",
"source_url": "http://www.mortgagebankers.org/",
"actual": null,
"previous": 281,
"forecast": null,
"actualRaw": null,
"previousRaw": 281,
"forecastRaw": null,
"currency": "USD",
"importance": -1,
"date": "2026-04-22T11:00:00.000Z"
},
{
"id": "395591",
"title": "MBA 30-Year Mortgage Rate",
"country": "US",
"indicator": "Mortgage Rate",
"ticker": "ECONOMICS:USMR",
"comment": "MBA 30-Year Mortgage Rate is average 30-year fixed mortgage lending rate measured during the reported week and backed by the Mortgage Bankers Association.",
"category": "hse",
"period": "Apr/17",
"referenceDate": "2026-04-17T00:00:00Z",
"source": "Mortgage Bankers Association of America",
"source_url": "http://www.mortgagebankers.org/",
"actual": null,
"previous": 6.42,
"forecast": null,
"actualRaw": null,
"previousRaw": 6.42,
"forecastRaw": null,
"currency": "USD",
"importance": 0,
"date": "2026-04-22T11:00:00.000Z"
},
{
"id": "395592",
"title": "MBA Mortgage Refinance Index",
"country": "US",
"indicator": "MBA Mortgage Refinance Index",
"ticker": "ECONOMICS:USMRI",
"comment": "The MBA Weekly Mortgage Application Survey is a comprehensive overview of the nationwide mortgage market and covers all types of mortgage originators, including commercial banks, thrift institutions and mortgage banking companies. The entire market is represented by the Market Index which covers all mortgage applications during the week. This includes all conventional and government applications, all fixed-rate mortgages (FRMs), all adjustable-rate mortgages (ARMs), whether for a purchase or to refinance.",
"category": "hse",
"period": "Apr/17",
"referenceDate": "2026-04-17T00:00:00Z",
"source": "Mortgage Bankers Association of America",
"source_url": "http://www.mortgagebankers.org/",
"actual": null,
"previous": 966.8,
"forecast": null,
"actualRaw": null,
"previousRaw": 966.8,
"forecastRaw": null,
"currency": "USD",
"importance": -1,
"date": "2026-04-22T11:00:00.000Z"
},
{
"id": "395593",
"title": "MBA Mortgage Applications",
"country": "US",
"indicator": "Mortgage Applications",
"ticker": "ECONOMICS:USMAPL",
"comment": "In the US, the MBA Weekly Mortgage Application Survey is a comprehensive overview of the nationwide mortgage market and covers all types of mortgage originators, including commercial banks, thrift institutions and mortgage banking companies. The entire market is represented by the Market Index which covers all mortgage applications during the week, whether for a purchase or to refinance. The survey covers over 75% of all US retail residential mortgage applications.",
"category": "hse",
"period": "Apr/17",
"referenceDate": "2026-04-17T00:00:00Z",
"source": "Mortgage Bankers Association of America",
"source_url": "http://www.mortgagebankers.org/",
"actual": null,
"previous": 1.8,
"forecast": null,
"actualRaw": null,
"previousRaw": 1.8,
"forecastRaw": null,
"currency": "USD",
"importance": -1,
"date": "2026-04-22T11:00:00.000Z"
},
{
"id": "395594",
"title": "MBA Purchase Index",
"country": "US",
"indicator": "MBA Purchase Index",
"ticker": "ECONOMICS:USPIND",
"category": "hse",
"period": "Apr/17",
"referenceDate": "2026-04-17T00:00:00Z",
"source": "Mortgage Bankers Association of America",
"source_url": "http://www.mortgagebankers.org/",
"actual": null,
"previous": 159.5,
"forecast": null,
"actualRaw": null,
"previousRaw": 159.5,
"forecastRaw": null,
"currency": "USD",
"importance": -1,
"date": "2026-04-22T11:00:00.000Z"
},
{
"id": "395595",
"title": "EIA Crude Oil Imports Change",
"country": "US",
"indicator": "Crude Oil Imports",
"ticker": "ECONOMICS:USCOI",
"category": "enrg",
"period": "Apr/17",
"referenceDate": "2026-04-17T00:00:00Z",
"source": "U.S. Energy Information Administration",
"source_url": "https://www.eia.gov",
"actual": null,
"previous": -2.109,
"forecast": null,
"actualRaw": null,
"previousRaw": -2109000,
"forecastRaw": null,
"currency": "USD",
"importance": -1,
"date": "2026-04-22T14:30:00.000Z"
},
{
"id": "395596",
"title": "EIA Distillate Fuel Production Change",
"country": "US",
"indicator": "Distillate Fuel Production",
"ticker": "ECONOMICS:USDFP",
"category": "enrg",
"period": "Apr/17",
"referenceDate": "2026-04-17T00:00:00Z",
"source": "U.S. Energy Information Administration",
"source_url": "https://www.eia.gov",
"actual": null,
"previous": -0.169,
"forecast": null,
"actualRaw": null,
"previousRaw": -169000,
"forecastRaw": null,
"currency": "USD",
"importance": -1,
"date": "2026-04-22T14:30:00.000Z"
},
{
"id": "395597",
"title": "EIA Heating Oil Stocks Change",
"country": "US",
"indicator": "Heating Oil Stocks",
"ticker": "ECONOMICS:USHOS",
"category": "enrg",
"period": "Apr/17",
"referenceDate": "2026-04-17T00:00:00Z",
"source": "U.S. Energy Information Administration",
"source_url": "https://www.eia.gov",
"actual": null,
"previous": -0.463,
"forecast": null,
"actualRaw": null,
"previousRaw": -463000,
"forecastRaw": null,
"currency": "USD",
"importance": -1,
"date": "2026-04-22T14:30:00.000Z"
},
{
"id": "395598",
"title": "EIA Gasoline Stocks Change",
"country": "US",
"indicator": "Gasoline Stocks Change",
"ticker": "ECONOMICS:USGSCH",
"comment": "Stocks of gasoline refers to the weekly change of the gasoline supply situation.",
"category": "enrg",
"period": "Apr/17",
"referenceDate": "2026-04-17T00:00:00Z",
"source": "U.S. Energy Information Administration",
"source_url": "http://www.eia.gov",
"actual": null,
"previous": -6.328,
"forecast": null,
"actualRaw": null,
"previousRaw": -6328000,
"forecastRaw": null,
"currency": "USD",
"importance": 0,
"date": "2026-04-22T14:30:00.000Z"
},
{
"id": "395599",
"title": "EIA Refinery Crude Runs Change",
"country": "US",
"indicator": "Refinery Crude Runs",
"ticker": "ECONOMICS:USRCR",
"comment": "Crude Runs refer to the volume of crude oil consumed by refineries.",
"category": "enrg",
"period": "Apr/17",
"referenceDate": "2026-04-17T00:00:00Z",
"source": "U.S. Energy Information Administration",
"source_url": "https://www.eia.gov",
"actual": null,
"previous": -0.208,
"forecast": null,
"actualRaw": null,
"previousRaw": -208000,
"forecastRaw": null,
"currency": "USD",
"importance": -1,
"date": "2026-04-22T14:30:00.000Z"
},
{
"id": "395600",
"title": "EIA Gasoline Production Change",
"country": "US",
"indicator": "Gasoline Production",
"ticker": "ECONOMICS:USGPRO",
"category": "enrg",
"period": "Apr/17",
"referenceDate": "2026-04-17T00:00:00Z",
"source": "U.S. Energy Information Administration",
"source_url": "http://www.eia.gov",
"actual": null,
"previous": 0.392,
"forecast": null,
"actualRaw": null,
"previousRaw": 392000,
"forecastRaw": null,
"currency": "USD",
"importance": -1,
"date": "2026-04-22T14:30:00.000Z"
},
{
"id": "395601",
"title": "EIA Cushing Crude Oil Stocks Change",
"country": "US",
"indicator": "Cushing Crude Oil Stocks",
"ticker": "ECONOMICS:USCCOS",
"comment": "Change in the number of barrels of crude oil held in storage at the Cushing, Oklahoma storage hub excluding the Strategic Petroleum Reserve during the past week.",
"category": "enrg",
"period": "Apr/17",
"referenceDate": "2026-04-17T00:00:00Z",
"source": "U.S. Energy Information Administration",
"source_url": "https://www.eia.gov",
"actual": null,
"previous": -1.727,
"forecast": null,
"actualRaw": null,
"previousRaw": -1727000,
"forecastRaw": null,
"currency": "USD",
"importance": -1,
"date": "2026-04-22T14:30:00.000Z"
},
{
"id": "395602",
"title": "EIA Crude Oil Stocks Change",
"country": "US",
"indicator": "Crude Oil Stocks Change",
"ticker": "ECONOMICS:USCOSC",
"comment": "Stocks of crude oil refer to the weekly change of the crude oil supply situation.",
"category": "enrg",
"period": "Apr/17",
"referenceDate": "2026-04-17T00:00:00Z",
"source": "U.S. Energy Information Administration",
"source_url": "https://www.eia.gov",
"actual": null,
"previous": -0.913,
"forecast": -1,
"actualRaw": null,
"previousRaw": -913000,
"forecastRaw": -1000000,
"currency": "USD",
"scale": "M",
"importance": 0,
"date": "2026-04-22T14:30:00.000Z"
},
{
"id": "395603",
"title": "EIA Distillate Stocks Change",
"country": "US",
"indicator": "Distillate Stocks",
"ticker": "ECONOMICS:USDFS",
"category": "enrg",
"period": "Apr/17",
"referenceDate": "2026-04-17T00:00:00Z",
"source": "U.S. Energy Information Administration",
"source_url": "https://www.eia.gov",
"actual": null,
"previous": -3.122,
"forecast": null,
"actualRaw": null,
"previousRaw": -3122000,
"forecastRaw": null,
"currency": "USD",
"importance": -1,
"date": "2026-04-22T14:30:00.000Z"
},
{
"id": "418830",
"title": "17-Week Bill Auction",
"country": "US",
"indicator": "17 Week Bill Yield",
"category": "bnd",
"period": "",
"referenceDate": null,
"source": "",
"source_url": "",
"actual": null,
"previous": 3.625,
"forecast": null,
"actualRaw": null,
"previousRaw": 3.625,
"forecastRaw": null,
"currency": "USD",
"unit": "%",
"importance": -1,
"date": "2026-04-22T15:30:00.000Z"
},
{
"id": "418790",
"title": "20-Year Bond Auction",
"country": "US",
"indicator": "20 Year Bond Yield",
"category": "bnd",
"period": "",
"referenceDate": null,
"source": "",
"source_url": "",
"actual": null,
"previous": 4.817,
"forecast": null,
"actualRaw": null,
"previousRaw": 4.817,
"forecastRaw": null,
"currency": "USD",
"unit": "%",
"importance": -1,
"date": "2026-04-22T17:00:00.000Z"
},
{
"id": "395607",
"title": "Continuing Jobless Claims",
"country": "US",
"indicator": "Continuing Jobless Claims",
"ticker": "ECONOMICS:USCJC",
"comment": "Continuing Jobless Claims refer to actual number of unemployed and currently receiving unemployment benefits who filed for unemployment benefits at least two weeks ago.",
"category": "lbr",
"period": "Apr/11",
"referenceDate": "2026-04-11T00:00:00Z",
"source": "Department of Labour",
"source_url": "http://www.dol.gov",
"actual": null,
"previous": 1818,
"forecast": 1820,
"actualRaw": null,
"previousRaw": 1818000,
"forecastRaw": 1820000,
"currency": "USD",
"scale": "K",
"importance": -1,
"date": "2026-04-23T12:30:00.000Z"
},
{
"id": "395608",
"title": "Jobless Claims 4-week Average",
"country": "US",
"indicator": "Jobless Claims 4-week Average",
"ticker": "ECONOMICS:USJC4W",
"category": "lbr",
"period": "Apr/18",
"referenceDate": "2026-04-18T00:00:00Z",
"source": "Department of Labour",
"source_url": "http://www.dol.gov",
"actual": null,
"previous": 209.75,
"forecast": null,
"actualRaw": null,
"previousRaw": 209750,
"forecastRaw": null,
"currency": "USD",
"importance": -1,
"date": "2026-04-23T12:30:00.000Z"
},
{
"id": "395609",
"title": "Initial Jobless Claims",
"country": "US",
"indicator": "Initial Jobless Claims",
"ticker": "ECONOMICS:USIJC",
"comment": "Initial jobless claims refer to the number of people who have filed for unemployment benefits with their state's unemployment agency for the first time during a specific reporting period, typically on a weekly basis. .",
"category": "lbr",
"period": "Apr/18",
"referenceDate": "2026-04-18T00:00:00Z",
"source": "Department of Labour",
"source_url": "https://www.dol.gov/",
"actual": null,
"previous": 207,
"forecast": 212,
"actualRaw": null,
"previousRaw": 207000,
"forecastRaw": 212000,
"currency": "USD",
"scale": "K",
"importance": 0,
"date": "2026-04-23T12:30:00.000Z"
},
{
"id": "399049",
"title": "Chicago Fed National Activity Index",
"country": "US",
"indicator": "Chicago Fed National Activity Index",
"ticker": "ECONOMICS:USCFNAI",
"comment": "The Chicago Fed National Activity Index (CFNAI) is designed to gauge overall economic activity and related inflationary pressure. The CFNAI is based on a weighted average of 85 existing monthly indicators of national economic activity. It has an average value of zero and a standard deviation of one. Since economic activity tends toward trend growth rate over time, a positive reading corresponds to growth above trend and a negative reading corresponds to growth below trend.",
"category": "bsnss",
"period": "Mar",
"referenceDate": "2026-03-31T00:00:00Z",
"source": "Federal Reserve Bank of Chicago",
"source_url": "https://www.chicagofed.org/",
"actual": null,
"previous": -0.11,
"forecast": null,
"actualRaw": null,
"previousRaw": -0.11,
"forecastRaw": null,
"currency": "USD",
"importance": 0,
"date": "2026-04-23T12:30:00.000Z"
},
{
"id": "397888",
"title": "S&P Global Services PMI Flash",
"country": "US",
"indicator": "Services PMI",
"comment": "The S&P Global US Services PMI is compiled by S&P Global from responses to questionnaires sent to a panel of around 400 service sector companies. The sectors covered include consumer (excluding retail), transport, information, communication, finance, insurance, real estate and business services. The index tracks variables such as sales, employment, inventories and prices; and varies between 0 and 100, with a reading above 50 indicating an overall increase compared to the previous month, and below 50 an overall decrease. The headline figure is the Services Business Activity Index, which is a diffusion index calculated from a question that asks for changes in the volume of business activity compared with one month previously. The Services Business Activity Index is comparable to the Manufacturing Output Index. This is only a limited sample of PMI headline data displayed on the Customer’s service, under licence from S&P Global. Full historic PMI headline data and all other PMI sub-index data and histories are available on subscription from S&P Global. Contact economics@spglobal.com for more details.",
"period": "Apr",
"referenceDate": "2026-04-30T00:00:00Z",
"source": "S&P Global",
"source_url": "https://www.pmi.spglobal.com/public",
"actual": null,
"previous": 49.8,
"forecast": 50,
"actualRaw": null,
"previousRaw": 49.8,
"forecastRaw": 50,
"currency": "USD",
"importance": 0,
"date": "2026-04-23T13:45:00.000Z"
},
{
"id": "398123",
"title": "S&P Global Manufacturing PMI Flash",
"country": "US",
"indicator": "Manufacturing PMI",
"comment": "The S&P Global US Manufacturing PMI is compiled by S&P Global from responses to questionnaires sent to purchasing managers in a panel of around 800 manufacturers. The headline figure is the Purchasing Managers’ Index (PMI), which is a weighted average of the following five indices: New Orders (30%), Output (25%), Employment (20%), Suppliers’ Delivery Times (15%) and Stocks of Purchases (10%). For the PMI calculation the Suppliers’ Delivery Times Index is inverted so that it moves in a comparable direction to the other indices. The index varies between 0 and 100, with a reading above 50 indicating an overall increase compared to the previous month, and below 50 an overall decrease. This is only a limited sample of PMI headline data displayed on the Customer’s service, under licence from S&P Global. Full historic PMI headline data and all other PMI sub-index data and histories are available on subscription from S&P Global. Contact economics@spglobal.com for more details.",
"period": "Apr",
"referenceDate": "2026-04-30T00:00:00Z",
"source": "S&P Global",
"source_url": "https://www.pmi.spglobal.com/public",
"actual": null,
"previous": 52.3,
"forecast": 52.5,
"actualRaw": null,
"previousRaw": 52.3,
"forecastRaw": 52.5,
"currency": "USD",
"importance": 0,
"date": "2026-04-23T13:45:00.000Z"
},
{
"id": "399104",
"title": "S&P Global Composite PMI Flash",
"country": "US",
"indicator": "Composite PMI",
"comment": "In the United States, the S&P Global Composite PMI Output Index, which is a weighted average of the Manufacturing Output Index and the Services Business Activity Index, tracks business trends across both manufacturing and service sectors. The index is based on data collected from a representative panel of over 800 companies and follows variables such as sales, new orders, employment, inventories and prices. A reading above 50 indicates expansion in business activity while below 50 points to contraction. This is only a limited sample of PMI headline data displayed on the Customer’s service, under licence from S&P Global. Full historic PMI headline data and all other PMI sub-index data and histories are available on subscription from S&P Global. Contact economics@spglobal.com for more details.",
"period": "Apr",
"referenceDate": "2026-04-30T00:00:00Z",
"source": "S&P Global",
"source_url": "https://www.pmi.spglobal.com/public",
"actual": null,
"previous": 50.3,
"forecast": null,
"actualRaw": null,
"previousRaw": 50.3,
"forecastRaw": null,
"currency": "USD",
"importance": 0,
"date": "2026-04-23T13:45:00.000Z"
},
{
"id": "395610",
"title": "EIA Natural Gas Stocks Change",
"country": "US",
"indicator": "Natural Gas Stocks Change",
"ticker": "ECONOMICS:USNGSC",
"comment": "Natural Gas Stocks Change refers to the weekly change of the natural gas supply situation.",
"category": "enrg",
"period": "Apr/17",
"referenceDate": "2026-04-17T00:00:00Z",
"source": "U.S. Energy Information Administration",
"source_url": "http://www.eia.gov/",
"actual": null,
"previous": 59,
"forecast": null,
"actualRaw": null,
"previousRaw": 59000000000,
"forecastRaw": null,
"currency": "USD",
"importance": -1,
"date": "2026-04-23T14:30:00.000Z"
},
{
"id": "398927",
"title": "Kansas Fed Manufacturing Index",
"country": "US",
"indicator": "Kansas Fed Manufacturing Index",
"ticker": "ECONOMICS:USKFMI",
"comment": "The Federal Reserve Bank of Kansas City Survey of Manufacturers provides information on current manufacturing activity in the Tenth District (Colorado, Kansas, Nebraska, Oklahoma, Wyoming, northern New Mexico, and western Missouri). The monthly survey consists of approximately 150 manufacturing plants across the district of which about 110 respond. Survey results reveal changes in several indicators of manufacturing activity including production, shipments, new orders, and employment along with changes in prices of raw materials and finished products. The diffusion index is calculated as the difference between the percentage of total reporting increases and the percentage reporting decreases.",
"category": "bsnss",
"period": "Apr",
"referenceDate": "2026-04-30T00:00:00Z",
"source": "Federal Reserve Bank of Kansas City",
"source_url": "https://kansascityfed.org",
"actual": null,
"previous": 11,
"forecast": null,
"actualRaw": null,
"previousRaw": 11,
"forecastRaw": null,
"currency": "USD",
"importance": -1,
"date": "2026-04-23T15:00:00.000Z"
},
{
"id": "399182",
"title": "Kansas Fed Composite Index",
"country": "US",
"indicator": "Kansas Fed Composite Index",
"ticker": "ECONOMICS:USKFCOMPI",
"comment": "The Federal Reserve Bank of Kansas City Survey of Manufacturers provides information on current manufacturing activity in the Tenth District (Colorado, Kansas, Nebraska, Oklahoma, Wyoming, northern New Mexico, and western Missouri). The monthly survey consists of approximately 150 manufacturing plants across the district of which about 110 respond. Survey results reveal changes in several indicators of manufacturing activity including production, shipments, new orders, and employment along with changes in prices of raw materials and finished products. The diffusion index is calculated as the difference between the percentage of total reporting increases and the percentage reporting decreases.",
"category": "bsnss",
"period": "Apr",
"referenceDate": "2026-04-30T00:00:00Z",
"source": "Federal Reserve Bank of Kansas City",
"source_url": "https://kansascityfed.org",
"actual": null,
"previous": 11,
"forecast": null,
"actualRaw": null,
"previousRaw": 11,
"forecastRaw": null,
"currency": "USD",
"importance": -1,
"date": "2026-04-23T15:00:00.000Z"
},
{
"id": "395611",
"title": "4-Week Bill Auction",
"country": "US",
"indicator": "4 Week Bill Yield",
"category": "bnd",
"period": "",
"referenceDate": null,
"source": "Federal Reserve",
"source_url": "https://www.treasurydirect.gov",
"actual": null,
"previous": 3.595,
"forecast": null,
"actualRaw": null,
"previousRaw": 3.595,
"forecastRaw": null,
"currency": "USD",
"unit": "%",
"importance": -1,
"date": "2026-04-23T15:30:00.000Z"
},
{
"id": "395612",
"title": "8-Week Bill Auction",
"country": "US",
"indicator": "8 Week Bill Yield",
"category": "bnd",
"period": "",
"referenceDate": null,
"source": "Federal Reserve",
"source_url": "https://www.treasurydirect.gov",
"actual": null,
"previous": 3.615,
"forecast": null,
"actualRaw": null,
"previousRaw": 3.615,
"forecastRaw": null,
"currency": "USD",
"unit": "%",
"importance": -1,
"date": "2026-04-23T15:30:00.000Z"
},
{
"id": "395613",
"title": "30-Year Mortgage Rate",
"country": "US",
"indicator": "30 Year Mortgage Rate",
"ticker": "ECONOMICS:US30YMR",
"comment": "The Primary Mortgage Market Survey (PMMS) is focused on conventional, conforming, fully amortizing home purchase loans for borrowers who put 20 percent down and have excellent credit. Average commitment rates should be reported along with average fees and points to reflect the total upfront cost of obtaining the mortgage. The interest rate a lender would charge to lend mortgage money to a qualified borrower exclusive of the fees and points required by the lender. This commitment rate applies only to conventional financing on conforming mortgages with loan-to-value rates of 80 percent or less.",
"category": "hse",
"period": "Apr/23",
"referenceDate": "2026-04-23T00:00:00Z",
"source": "Freddie",
"source_url": "https://www.freddiemac.com/",
"actual": null,
"previous": 6.3,
"forecast": null,
"actualRaw": null,
"previousRaw": 6.3,
"forecastRaw": null,
"currency": "USD",
"importance": -1,
"date": "2026-04-23T16:00:00.000Z"
},
{
"id": "395614",
"title": "15-Year Mortgage Rate",
"country": "US",
"indicator": "15 Year Mortgage Rate",
"category": "hse",
"period": "Apr/23",
"referenceDate": "2026-04-23T00:00:00Z",
"source": "Freddie",
"source_url": "https://www.freddiemac.com/",
"actual": null,
"previous": 5.65,
"forecast": null,
"actualRaw": null,
"previousRaw": 5.65,
"forecastRaw": null,
"currency": "USD",
"importance": -1,
"date": "2026-04-23T16:00:00.000Z"
},
{
"id": "418787",
"title": "5-Year TIPS Auction",
"country": "US",
"indicator": "5 Year TIPS Yield",
"category": "bnd",
"period": "",
"referenceDate": null,
"source": "Federal Reserve",
"source_url": "https://www.treasurydirect.gov",
"actual": null,
"previous": 1.433,
"forecast": null,
"actualRaw": null,
"previousRaw": 1.433,
"forecastRaw": null,
"currency": "USD",
"unit": "%",
"importance": -1,
"date": "2026-04-23T17:00:00.000Z"
},
{
"id": "397761",
"title": "Fed Balance Sheet",
"country": "US",
"indicator": "Central Bank Balance Sheet",
"ticker": "ECONOMICS:USCBBS",
"comment": "The Central Bank Balance Sheet represents the total assets held by a central bank. It reflects the scale of monetary policy actions, including holdings like government securities, foreign reserves, and loans to banks. Changes in the balance sheet indicate shifts in policy, such as easing or tightening financial conditions.",
"category": "mny",
"period": "Apr/22",
"referenceDate": "2026-04-22T00:00:00Z",
"source": "Federal Reserve",
"source_url": "http://www.federalreserve.gov",
"actual": null,
"previous": 6.71,
"forecast": null,
"actualRaw": null,
"previousRaw": 6710000000000,
"forecastRaw": null,
"currency": "USD",
"unit": "$",
"scale": "T",
"importance": -1,
"date": "2026-04-23T20:30:00.000Z"
},
{
"id": "395617",
"title": "Michigan Consumer Sentiment Final",
"country": "US",
"indicator": "Consumer Confidence",
"ticker": "ECONOMICS:USCCI",
"comment": "The Index of Consumer Expectations focuses on three areas: how consumers view prospects for their own financial situation, how they view prospects for the general economy over the near term, and their view of prospects for the economy over the long term. Each monthly survey contains approximately 50 core questions, each of which tracks a different aspect of consumer attitudes and expectations. The samples for the Surveys of Consumers are statistically designed to be representative of all American households, excluding those in Alaska and Hawaii. Each month, a minimum of 500 interviews are conducted by telephone.",
"category": "cnsm",
"period": "Apr",
"referenceDate": "2026-04-30T00:00:00Z",
"source": "University of Michigan",
"source_url": "http://www.sca.isr.umich.edu/",
"actual": null,
"previous": 53.3,
"forecast": 47.6,
"actualRaw": null,
"previousRaw": 53.3,
"forecastRaw": 47.6,
"currency": "USD",
"importance": 0,
"date": "2026-04-24T14:00:00.000Z"
},
{
"id": "395618",
"title": "Michigan Current Conditions Final",
"country": "US",
"indicator": "Michigan Current Economic Conditions",
"ticker": "ECONOMICS:USMCEC",
"comment": "The Index of Consumer Expectations focuses on three areas: how consumers view prospects for their own financial situation, how they view prospects for the general economy over the near term, and their view of prospects for the economy over the long term. Each monthly survey contains approximately 50 core questions, each of which tracks a different aspect of consumer attitudes and expectations. The samples for the Surveys of Consumers are statistically designed to be representative of all American households, excluding those in Alaska and Hawaii. Each month, a minimum of 500 interviews are conducted by telephone.",
"category": "cnsm",
"period": "Apr",
"referenceDate": "2026-04-30T00:00:00Z",
"source": "University of Michigan",
"source_url": "http://www.sca.isr.umich.edu/",
"actual": null,
"previous": 55.8,
"forecast": 50.1,
"actualRaw": null,
"previousRaw": 55.8,
"forecastRaw": 50.1,
"currency": "USD",
"importance": -1,
"date": "2026-04-24T14:00:00.000Z"
},
{
"id": "395619",
"title": "Michigan Consumer Expectations Final",
"country": "US",
"indicator": "Michigan Consumer Expectations",
"ticker": "ECONOMICS:USMCE",
"comment": "The Index of Consumer Expectations focuses on three areas: how consumers view prospects for their own financial situation, how they view prospects for the general economy over the near term, and their view of prospects for the economy over the long term. Each monthly survey contains approximately 50 core questions, each of which tracks a different aspect of consumer attitudes and expectations. The samples for the Surveys of Consumers are statistically designed to be representative of all American households, excluding those in Alaska and Hawaii. Each month, a minimum of 500 interviews are conducted by telephone.",
"category": "cnsm",
"period": "Apr",
"referenceDate": "2026-04-30T00:00:00Z",
"source": "University of Michigan",
"source_url": "http://www.sca.isr.umich.edu/",
"actual": null,
"previous": 51.7,
"forecast": 46.1,
"actualRaw": null,
"previousRaw": 51.7,
"forecastRaw": 46.1,
"currency": "USD",
"importance": -1,
"date": "2026-04-24T14:00:00.000Z"
},
{
"id": "395620",
"title": "Michigan Inflation Expectations Final",
"country": "US",
"indicator": "Michigan Inflation Expectations",
"ticker": "ECONOMICS:USMIE1Y",
"comment": "The Index of Consumer Expectations focuses on three areas: how consumers view prospects for their own financial situation, how they view prospects for the general economy over the near term, and their view of prospects for the economy over the long term. Each monthly survey contains approximately 50 core questions, each of which tracks a different aspect of consumer attitudes and expectations. The samples for the Surveys of Consumers are statistically designed to be representative of all American households, excluding those in Alaska and Hawaii. Each month, a minimum of 500 interviews are conducted by telephone.",
"category": "prce",
"period": "Apr",
"referenceDate": "2026-04-30T00:00:00Z",
"source": "University of Michigan",
"source_url": "http://www.sca.isr.umich.edu/",
"actual": null,
"previous": 3.8,
"forecast": 4.8,
"actualRaw": null,
"previousRaw": 3.8,
"forecastRaw": 4.8,
"currency": "USD",
"unit": "%",
"importance": -1,
"date": "2026-04-24T14:00:00.000Z"
},
{
"id": "395621",
"title": "Michigan 5 Year Inflation Expectations Final",
"country": "US",
"indicator": "Michigan 5 Year Inflation Expectations",
"ticker": "ECONOMICS:USMIE5Y",
"comment": "The Index of Consumer Expectations focuses on three areas: how consumers view prospects for their own financial situation, how they view prospects for the general economy over the near term, and their view of prospects for the economy over the long term. Each monthly survey contains approximately 50 core questions, each of which tracks a different aspect of consumer attitudes and expectations. The samples for the Surveys of Consumers are statistically designed to be representative of all American households, excluding those in Alaska and Hawaii. Each month, a minimum of 500 interviews are conducted by telephone.",
"category": "prce",
"period": "Apr",
"referenceDate": "2026-04-30T00:00:00Z",
"source": "University of Michigan",
"source_url": "http://www.sca.isr.umich.edu/",
"actual": null,
"previous": 3.2,
"forecast": 3.4,
"actualRaw": null,
"previousRaw": 3.2,
"forecastRaw": 3.4,
"currency": "USD",
"unit": "%",
"importance": -1,
"date": "2026-04-24T14:00:00.000Z"
},
{
"id": "395622",
"title": "Baker Hughes Total Rigs Count",
"country": "US",
"indicator": "Total Rigs",
"ticker": "ECONOMICS:USTRG",
"comment": "US Total Rigs refer to the number of active US rigs drilling in a given week.",
"category": "enrg",
"period": "Apr/24",
"referenceDate": "2026-04-24T00:00:00Z",
"source": "Baker Hughes Company",
"source_url": "https://www.bakerhughes.com/",
"actual": null,
"previous": 543,
"forecast": null,
"actualRaw": null,
"previousRaw": 543,
"forecastRaw": null,
"currency": "USD",
"importance": -1,
"date": "2026-04-24T17:00:00.000Z"
},
{
"id": "395623",
"title": "Baker Hughes Oil Rig Count",
"country": "US",
"indicator": "Crude Oil Rigs",
"ticker": "ECONOMICS:USCOR",
"comment": "US Crude Oil Rigs refer to the number of active US rigs drilling for oil in a given week.",
"category": "enrg",
"period": "Apr/24",
"referenceDate": "2026-04-24T00:00:00Z",
"source": "Baker Hughes Company",
"source_url": "https://www.bakerhughes.com/",
"actual": null,
"previous": 410,
"forecast": null,
"actualRaw": null,
"previousRaw": 410,
"forecastRaw": null,
"currency": "USD",
"importance": -1,
"date": "2026-04-24T17:00:00.000Z"
},
{
"id": "419900",
"title": "NY Fed Bill Purchases 4 to 12 months",
"country": "US",
"indicator": "Calendar",
"category": "gov",
"period": "",
"referenceDate": null,
"source": "",
"source_url": "",
"actual": null,
"previous": null,
"forecast": 5.058,
"actualRaw": null,
"previousRaw": null,
"forecastRaw": null,
"currency": "USD",
"importance": -1,
"date": "2026-04-27T14:20:00.000Z"
},
{
"id": "399125",
"title": "Dallas Fed Manufacturing Index",
"country": "US",
"indicator": "Dallas Fed Manufacturing Index",
"ticker": "ECONOMICS:USDFMI",
"comment": "The Dallas Fed Manufacturing Index measures the performance of manufacturing sector in the state of Texas. The index is derived from a survey of around 100 business executives and tracks variables such as output, employment, orders and prices. A reading above 0 indicates an expansion of the factory activity compared to the previous month; below 0 represents a contraction; while 0 indicates no change. Texas produces around 9.5 percent of manufacturing output in US. The state ranks second behind California in factory production and first as an exporter of manufactured goods.",
"category": "bsnss",
"period": "Apr",
"referenceDate": "2026-04-30T00:00:00Z",
"source": "Federal Reserve Bank of Dallas",
"source_url": "https://www.dallasfed.org",
"actual": null,
"previous": -0.2,
"forecast": null,
"actualRaw": null,
"previousRaw": -0.2,
"forecastRaw": null,
"currency": "USD",
"importance": 0,
"date": "2026-04-27T14:30:00.000Z"
},
{
"id": "395631",
"title": "6-Month Bill Auction",
"country": "US",
"indicator": "6 Month Bill Yield",
"category": "bnd",
"period": "",
"referenceDate": null,
"source": "Federal Reserve",
"source_url": "http://www.treasurydirect.gov",
"actual": null,
"previous": 3.59,
"forecast": null,
"actualRaw": null,
"previousRaw": 3.59,
"forecastRaw": null,
"currency": "USD",
"unit": "%",
"importance": -1,
"date": "2026-04-27T15:30:00.000Z"
},
{
"id": "395632",
"title": "3-Month Bill Auction",
"country": "US",
"indicator": "3 Month Bill Yield",
"category": "bnd",
"period": "",
"referenceDate": null,
"source": "Federal Reserve",
"source_url": "http://www.treasurydirect.gov",
"actual": null,
"previous": 3.61,
"forecast": null,
"actualRaw": null,
"previousRaw": 3.61,
"forecastRaw": null,
"currency": "USD",
"unit": "%",
"importance": -1,
"date": "2026-04-27T15:30:00.000Z"
}
]
},
"msg": "Success"
} Other Calendar Endpoints
GET /api/calendar/earnings- Earnings CalendarGET /api/calendar/revenue- Dividends CalendarGET /api/calendar/ipo- IPO Calendar
Metadata - Metadata
Get API configuration metadata and reference data.
Return list of supported languages
Request Examples
curl --request GET \
--url 'https://tradingview-data1.p.rapidapi.com/api/metadata/languages' \
--header 'x-rapidapi-host: tradingview-data1.p.rapidapi.com' \
--header 'x-rapidapi-key: YOUR_RAPIDAPI_KEY' const response = await fetch('https://tradingview-data1.p.rapidapi.com/api/metadata/languages', {
method: 'GET',
headers: {
'x-rapidapi-host': 'tradingview-data1.p.rapidapi.com',
'x-rapidapi-key': 'YOUR_RAPIDAPI_KEY'
}
});
const data = await response.json();
console.log(data); import requests
url = "https://tradingview-data1.p.rapidapi.com/api/metadata/languages"
headers = {
"x-rapidapi-host": "tradingview-data1.p.rapidapi.com",
"x-rapidapi-key": "YOUR_RAPIDAPI_KEY"
}
response = requests.get(url, headers=headers)
print(response.json()) Response Examples
{
"success": true,
"data": [
{
"code": "en",
"name": "English"
},
{
"code": "zh_CN",
"name": "简体中文"
},
{
"code": "de",
"name": "Deutsch"
},
{
"code": "fr",
"name": "Français"
},
{
"code": "es",
"name": "Español"
},
{
"code": "it",
"name": "Italiano"
},
{
"code": "pl",
"name": "Polski"
},
{
"code": "tr",
"name": "Türkçe"
},
{
"code": "ru",
"name": "Русский"
},
{
"code": "pt",
"name": "Português"
},
{
"code": "id",
"name": "Bahasa Indonesia"
},
{
"code": "ms",
"name": "Bahasa Melayu"
},
{
"code": "th",
"name": "ภาษาไทย"
},
{
"code": "vi",
"name": "Tiếng Việt"
},
{
"code": "ja",
"name": "日本語"
},
{
"code": "ko",
"name": "한국어"
},
{
"code": "zh_TW",
"name": "繁體中文"
},
{
"code": "ar",
"name": "العربية"
},
{
"code": "he",
"name": "עברית"
}
],
"msg": "Success"
} Metadata Endpoints
GET /api/metadata/markets- Get all available market codesGET /api/metadata/tabs- Get all available tab configurationsGET /api/metadata/columnsets- Get column set metadata by asset typeGET /api/metadata/languages- Get supported language listGET /api/metadata/exchanges- Get all available exchanges listGET /api/metadata/world-economy/indicators- Get world economy indicators list
World Economy - Economic Indicators
Get world economic indicators ranking by country and region, with real-time data from TradingView scanner.
Filter economic indicators of various countries by region, retrieved in real-time from TradingView scanner, sorted by latest value descending.
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
indicator | string | ✓ | Indicator slug (e.g., full-year-gdp-growth). Full list at GET /api/metadata/world-economy/indicators |
Query Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
region | string | g20 | Region: g20, world, north-america, europe, middle-east-africa, latin-america, asia-pacific |
Request Examples
curl --request GET \
--url 'https://tradingview-data1.p.rapidapi.com/api/world-economy/indicators/full-year-gdp-growth?region=g20' \
--header 'x-rapidapi-host: tradingview-data1.p.rapidapi.com' \
--header 'x-rapidapi-key: YOUR_RAPIDAPI_KEY' const indicator = 'full-year-gdp-growth';
const params = new URLSearchParams({ region: 'g20' });
const response = await fetch(`https://tradingview-data1.p.rapidapi.com/api/world-economy/indicators/${indicator}?${params}`, {
method: 'GET',
headers: {
'x-rapidapi-host': 'tradingview-data1.p.rapidapi.com',
'x-rapidapi-key': 'YOUR_RAPIDAPI_KEY'
}
});
const data = await response.json();
console.log(data); import requests
indicator = "full-year-gdp-growth"
url = f"https://tradingview-data1.p.rapidapi.com/api/world-economy/indicators/{indicator}"
params = {"region": "g20"}
headers = {
"x-rapidapi-host": "tradingview-data1.p.rapidapi.com",
"x-rapidapi-key": "YOUR_RAPIDAPI_KEY"
}
response = requests.get(url, params=params, headers=headers)
print(response.json()) Response Examples
{
"success": true,
"data": {
"indicator": "full-year-gdp-growth",
"region": "g20",
"total": 20,
"rows": [
{
"symbol": "INFYGDPG",
"full_symbol": "ECONOMICS:INFYGDPG",
"name": "India Full Year GDP Growth",
"country_code": "IN",
"latest": 7.6,
"previous": 7.1,
"observation": "2026",
"unit": "Percent",
"frequency": "Annual"
}
]
},
"msg": "Success"
} Returns world economy indicators list with category filtering. Use this to discover all available indicator slugs.
Query Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
category | string | Category filter (e.g., gdp). Multiple comma-separated (e.g., gdp,lbr) |
Request Examples
curl --request GET \
--url 'https://tradingview-data1.p.rapidapi.com/api/metadata/world-economy/indicators?category=gdp' \
--header 'x-rapidapi-host: tradingview-data1.p.rapidapi.com' \
--header 'x-rapidapi-key: YOUR_RAPIDAPI_KEY' const params = new URLSearchParams({ category: 'gdp' });
const response = await fetch(`https://tradingview-data1.p.rapidapi.com/api/metadata/world-economy/indicators?${params}`, {
method: 'GET',
headers: {
'x-rapidapi-host': 'tradingview-data1.p.rapidapi.com',
'x-rapidapi-key': 'YOUR_RAPIDAPI_KEY'
}
});
const data = await response.json();
console.log(data); import requests
url = "https://tradingview-data1.p.rapidapi.com/api/metadata/world-economy/indicators"
params = {"category": "gdp"}
headers = {
"x-rapidapi-host": "tradingview-data1.p.rapidapi.com",
"x-rapidapi-key": "YOUR_RAPIDAPI_KEY"
}
response = requests.get(url, params=params, headers=headers)
print(response.json()) Response Examples
{
"success": true,
"data": {
"total": 12,
"category": "gdp",
"categories": [
{ "category": "gdp", "label": "GDP" },
{ "category": "lbr", "label": "Labour" }
],
"indicators": [
{ "slug": "full-year-gdp-growth", "label": "Full Year GDP Growth", "categories": ["gdp"] },
{ "slug": "gdp-growth-rate", "label": "GDP Growth Rate", "categories": ["gdp"] }
]
}
} Token - JWT Token
Generate JWT tokens used by WebSocket and SSE streaming connections.
Generate JWT token for WebSocket and SSE connections.
Request Body
{} Request Examples
curl --request POST \
--url 'https://tradingview-data1.p.rapidapi.com/api/token/generate' \
--header 'Content-Type: application/json' \
--header 'x-rapidapi-host: tradingview-data1.p.rapidapi.com' \
--header 'x-rapidapi-key: YOUR_RAPIDAPI_KEY' \
--data '{}' const response = await fetch('https://tradingview-data1.p.rapidapi.com/api/token/generate', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'x-rapidapi-host': 'tradingview-data1.p.rapidapi.com',
'x-rapidapi-key': 'YOUR_RAPIDAPI_KEY'
},
body: JSON.stringify({})
});
const data = await response.json();
console.log(data.token, data.wsUrl, data.sseUrl); import requests
url = "https://tradingview-data1.p.rapidapi.com/api/token/generate"
headers = {
"Content-Type": "application/json",
"x-rapidapi-host": "tradingview-data1.p.rapidapi.com",
"x-rapidapi-key": "YOUR_RAPIDAPI_KEY"
}
response = requests.post(url, json={}, headers=headers)
print(response.json()) Response Examples
{
"success": true,
"token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
"expiresIn": "30 minutes",
"expiresAt": 1776770946000,
"wsUrl": "ws://localhost:8080",
"sseUrl": "https://ws.tradingviewapi.com/sse/stream",
"sseExample": "curl --location 'https://ws.tradingviewapi.com/sse/stream?token=YOUR_TOKEN&symbols=BINANCE:BTCUSDT,BINANCE:ETHUSDT'"
} MCP - MCP Token
Generate JWT tokens for MCP connections. The token is required for SSE streaming authentication.
Generate JWT token for MCP connections. Required for SSE streaming authentication.
Request Body
{} Request Examples
curl --request POST \
--url 'https://tradingview-data1.p.rapidapi.com/mcp/generate' \
--header 'Content-Type: application/json' \
--header 'x-rapidapi-host: tradingview-data1.p.rapidapi.com' \
--header 'x-rapidapi-key: YOUR_RAPIDAPI_KEY' \
--data '{"userId": "user123"}' const response = await fetch('https://tradingview-data1.p.rapidapi.com/mcp/generate', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'x-rapidapi-host': 'tradingview-data1.p.rapidapi.com',
'x-rapidapi-key': 'YOUR_RAPIDAPI_KEY'
},
body: JSON.stringify({ })
});
const data = await response.json();
console.log(data.token); // Use this JWT for SSE authentication import requests
url = "https://tradingview-data1.p.rapidapi.com/mcp/generate"
headers = {
"Content-Type": "application/json",
"x-rapidapi-host": "tradingview-data1.p.rapidapi.com",
"x-rapidapi-key": "YOUR_RAPIDAPI_KEY"
}
data = {}
response = requests.post(url, json=data, headers=headers)
print(response.json()['token']) Response Examples
{
"success": true,
"token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
"expiresIn": "1 day",
"expiresAt": 1705567890123,
"mcpUrl": "https://tradingview-data1.p.rapidapi.com/mcp"
} SSE - Real-time Streaming
Subscribe to real-time price updates and quotes via Server-Sent Events (SSE). Requires JWT token from the Token endpoint.
Server-Sent Events endpoint for real-time price and quote streaming. Requires JWT token from POST /api/token/generate.
Query Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
symbols | string | ✓ | Comma-separated symbols (e.g., BINANCE:BTCUSDT,NASDAQ:AAPL) | |
type | string | quote | Subscription type: quote for real-time quotes, price for K-line data |
Request Examples
# Step 1: Generate JWT token
curl --request POST \
--url 'https://tradingview-data1.p.rapidapi.com/mcp/generate' \
--header 'Content-Type: application/json' \
--header 'x-rapidapi-host: tradingview-data1.p.rapidapi.com' \
--header 'x-rapidapi-key: YOUR_RAPIDAPI_KEY' \
--data '{}'
# Step 2: Connect to SSE stream
curl --request GET \
--url 'https://tradingview-data1.p.rapidapi.com/sse/stream?symbols=BINANCE:BTCUSDT,NASDAQ:AAPL&type=quote' \
--header 'Authorization: Bearer YOUR_JWT_TOKEN' \
--header 'x-rapidapi-host: tradingview-data1.p.rapidapi.com' \
--header 'x-rapidapi-key: YOUR_RAPIDAPI_KEY' // Step 1: Generate JWT token
const tokenRes = await fetch('https://tradingview-data1.p.rapidapi.com/mcp/generate', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'x-rapidapi-host': 'tradingview-data1.p.rapidapi.com',
'x-rapidapi-key': 'YOUR_RAPIDAPI_KEY'
},
body: JSON.stringify({})
});
const { token } = await tokenRes.json();
// Step 2: Connect to SSE stream
const params = new URLSearchParams({
symbols: 'BINANCE:BTCUSDT,NASDAQ:AAPL',
type: 'quote'
});
const eventSource = new EventSource(
`https://tradingview-data1.p.rapidapi.com/sse/stream?${params}`
);
eventSource.addEventListener('quote_update', (e) => {
const update = JSON.parse(e.data);
console.log(update.symbol, update.data.lp);
}); import requests, sseclient
# Step 1: Generate JWT token
token_res = requests.post(
'https://tradingview-data1.p.rapidapi.com/mcp/generate',
json={},
headers={
'x-rapidapi-host': 'tradingview-data1.p.rapidapi.com',
'x-rapidapi-key': 'YOUR_RAPIDAPI_KEY'
}
)
token = token_res.json()['token']
# Step 2: Connect to SSE stream
response = requests.get(
'https://tradingview-data1.p.rapidapi.com/sse/stream',
params={'symbols': 'BINANCE:BTCUSDT,NASDAQ:AAPL', 'type': 'quote'},
headers={
'Authorization': f'Bearer {token}',
'x-rapidapi-host': 'tradingview-data1.p.rapidapi.com',
'x-rapidapi-key': 'YOUR_RAPIDAPI_KEY'
},
stream=True
)
for event in sseclient.SSEClient(response).events():
print(event.event, event.data) Response Examples
event: connected
data: {"message":"SSE connection established","timestamp":1710379554586}
event: quote_update
data: {"type":"quote_update","symbol":"BINANCE:BTCUSDT","data":{"lp":50000,"ch":500,"chp":1.01},"timestamp":1710379554586}
event: heartbeat
data: {"timestamp":1710379554586} Logo - Logo Proxy
Get TradingView symbol logo images.
Ideas - Community Ideas
Get TradingView community trading ideas, opinions, and analysis from traders worldwide.
Get TradingView hot ideas list, supports pagination
Query Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
page | integer | 1 | Page number (default: 1) | |
lang | string | en | Language code (e.g., en, zh_CN) |
Request Examples
curl --request GET \
--url 'https://tradingview-data1.p.rapidapi.com/api/ideas/hot?page=1&lang=en' \
--header 'x-rapidapi-host: tradingview-data1.p.rapidapi.com' \
--header 'x-rapidapi-key: YOUR_RAPIDAPI_KEY' const params = new URLSearchParams({ page: '1', lang: 'en' });
const response = await fetch(`https://tradingview-data1.p.rapidapi.com/api/ideas/hot?${params}`, {
method: 'GET',
headers: {
'x-rapidapi-host': 'tradingview-data1.p.rapidapi.com',
'x-rapidapi-key': 'YOUR_RAPIDAPI_KEY'
}
});
const data = await response.json();
console.log(data); import requests
url = "https://tradingview-data1.p.rapidapi.com/api/ideas/hot"
params = {"page": 1, "lang": "en"}
headers = {
"x-rapidapi-host": "tradingview-data1.p.rapidapi.com",
"x-rapidapi-key": "YOUR_RAPIDAPI_KEY"
}
response = requests.get(url, params=params, headers=headers)
print(response.json()) Response Examples
{
"success": true,
"data": [
{
"id": 21844366,
"image_url": "fiTFLfEh",
"name": "Bitcoin - LifeTime Opportunity! (right now, watch this)",
"description": "I see a lifetime opportunity on the chart of Bitcoin! First, let's take a look at technical analysis. The price of Bitcoin has been inside this red bearish flag for around 10 weeks, and soon we will see either an explosive pump or a critical dump. Bitcoin has been in a pretty strong bear market since October 2025, and bearish flags are technically negative patterns, usually the price goes down after forming such patterns. What's more, we have a small local blue ascending channel that the price respects very well. This could be a critical indicator, because if the price of Bitcoin goes down below this channel, it could trigger a massive drop. And that's the opportunity we talk about - we don't wait for a confirmation of this huge red bear flag, but we wait for a confirmation of this blue channel! This will give you an advantage among swing traders in the future.\n\nI think there is sooooo much liquidity below this red bear flag (stop losses, orders to open a short position, etc.) that the whales and banks want to go down and take your money away (if you are long). That's why 58k is a key level to watch, it's below the flag and also at the 0.618 FIB retracement of the previous bull market (2022-2025).\n\nWhat happens after we hit 58k? I think the market will probably want in this case to retest the bear flag's trendline at 69k. So if you short this bear flag later, you may get into trouble, so take your profit at 58k! With this advice you don't get trapped. Watch my updates and stay strong!\n\nWrite a comment with your altcoin + hit the like button, and I will make an analysis for you in response. Trading is not hard if you have a good coach! I am very transparent with my trades. Thank you, and I wish you successful trades!",
"created_at": "2026-04-20T07:25:18+00:00",
"updated_at": null,
"date_timestamp": 1776669918,
"updated_date_timestamp": null,
"chart_url": "https://www.tradingview.com/chart/BTCUSDT/fiTFLfEh-Bitcoin-LifeTime-Opportunity-right-now-watch-this/",
"is_public": true,
"is_visible": true,
"is_video": false,
"is_education": false,
"is_script": false,
"is_picked": false,
"is_hot": true,
"is_platinum_broker_idea": false,
"script_type": null,
"script_access": null,
"script_id_part": null,
"version": null,
"script_package_id": null,
"video_duration": "0",
"video_cam": false,
"video_filename": null,
"comments_count": 85,
"views_count": 0,
"symbol": {
"name": "BINANCE:BTCUSDT",
"full_name": "BINANCE:BTCUSDT",
"short_name": "BTCUSDT",
"exchange": "BINANCE",
"type": "spot",
"logo": {
"style": "single",
"logoid": "crypto/XTVCBTC"
},
"logo_id": null,
"currency_logo_id": "crypto/XTVCUSDT",
"base_currency_logo_id": "crypto/XTVCBTC",
"logo_urls": [
"https://s3-symbol-logo.tradingview.com/crypto/XTVCBTC.svg",
"https://s3-symbol-logo.tradingview.com/crypto/XTVCUSDT.svg"
],
"interval": "720",
"direction": 2,
"badge": {
"label": "BINANCE:BTCUSDT",
"url": "/symbols/BTCUSDT/"
}
},
"user": {
"id": 10265490,
"username": "Xanrox",
"badges": [
{
"name": "pro:pro_premium",
"verbose_name": "Premium"
}
],
"picture_url": "https://s3.tradingview.com/userpics/10265490-BhuM.png",
"mid_picture_url": "https://s3.tradingview.com/userpics/10265490-BhuM_mid.png",
"is_pro": true,
"pro_plan": "pro_premium",
"is_broker": false,
"broker_name": null,
"broker_plan": null
},
"image": {
"big": "https://s3.tradingview.com/f/fiTFLfEh_big.png",
"middle": "https://s3.tradingview.com/f/fiTFLfEh_mid.png",
"middle_webp": "https://s3.tradingview.com/f/fiTFLfEh_mid.webp",
"bg_color": "#ffffff"
},
"reputation": null,
"actions": null,
"is_liked": false,
"likes_count": 317
},
{
"id": 21845001,
"image_url": "me9hKsbv",
"name": "EURUSD Rebound from Support – Targeting Higher Levels",
"description": "Hello traders! Here’s my technical outlook based on the current EURUSD (1H) chart structure. EURUSD previously moved inside a descending channel, forming lower highs and confirming bearish pressure. After a breakout from this structure, price found a bottom and initiated a recovery phase. The market then formed a triangle pattern, where a breakout to the upside confirmed a shift in momentum. Currently, price is holding above the 1.1730 buyer zone and approaching the 1.1810 resistance (seller zone), while respecting the rising support line. This indicates consolidation below resistance. As long as EURUSD holds above 1.1730, the bullish bias remains valid. A breakout above 1.1810 could push price toward higher levels (TP1). Please share this idea with your friends and click Boost 🚀",
"created_at": "2026-04-20T09:23:28+00:00",
"updated_at": "2026-04-21T08:31:21+00:00",
"date_timestamp": 1776677008,
"updated_date_timestamp": 1776760281,
"chart_url": "https://www.tradingview.com/chart/EURUSD/me9hKsbv-EURUSD-Rebound-from-Support-Targeting-Higher-Levels/",
"is_public": true,
"is_visible": true,
"is_video": false,
"is_education": false,
"is_script": false,
"is_picked": false,
"is_hot": true,
"is_platinum_broker_idea": false,
"script_type": null,
"script_access": null,
"script_id_part": null,
"version": null,
"script_package_id": null,
"video_duration": "0",
"video_cam": false,
"video_filename": null,
"comments_count": 18,
"views_count": 0,
"symbol": {
"name": "FOREXCOM:EURUSD",
"full_name": "FOREXCOM:EURUSD",
"short_name": "EURUSD",
"exchange": "FOREXCOM",
"type": "forex",
"logo": {
"style": "pair",
"logoid": "country/EU",
"logoid2": "country/US"
},
"logo_id": null,
"currency_logo_id": "country/US",
"base_currency_logo_id": "country/EU",
"logo_urls": [
"https://s3-symbol-logo.tradingview.com/country/EU.svg",
"https://s3-symbol-logo.tradingview.com/country/US.svg"
],
"interval": "60",
"direction": 1,
"badge": {
"label": "FOREXCOM:EURUSD",
"url": "/symbols/EURUSD/"
}
},
"user": {
"id": 50479193,
"username": "LegionQ8",
"badges": [
{
"name": "pro:pro_premium",
"verbose_name": "Premium"
}
],
"picture_url": "https://s3.tradingview.com/userpics/50479193-AP0U.png",
"mid_picture_url": "https://s3.tradingview.com/userpics/50479193-AP0U_mid.png",
"is_pro": true,
"pro_plan": "pro_premium",
"is_broker": false,
"broker_name": null,
"broker_plan": null
},
"image": {
"big": "https://s3.tradingview.com/m/me9hKsbv_big.png",
"middle": "https://s3.tradingview.com/m/me9hKsbv_mid.png",
"middle_webp": "https://s3.tradingview.com/m/me9hKsbv_mid.webp",
"bg_color": "#b9dbad"
},
"reputation": null,
"actions": null,
"is_liked": false,
"likes_count": 27
},
{
"id": 21845365,
"image_url": "juScwUN8",
"name": "Gold: Institutional Distribution at the Apex.",
"description": "The Macro View: The \"Peace Premium\" Unwinds 🛰️\nFollowing the historic April 8 ceasefire agreement, the safe-haven demand that drove Gold toward $5,000 earlier this year is starting to evaporate. While the Singapore Peace Talks provide a glimmer of hope, the \"higher-for-longer\" interest rate environment in the US is finally starting to weigh on non-yielding assets. We are witnessing a classic case of \"Buy the Rumor (of War), Sell the Fact (of Peace).\"\n\nThe Setup: The \"Symmetric Squeeze\" 🧩\nThe Macro Ceiling: Price is currently colliding with a Strong Resistance Line that has rejected every major advance since the March liquidity flush.\n\nTriangle Consolidation: Gold has spent most of April coiling inside a secondary Triangle Pattern. These structures typically precede massive volatility expansions.\n\nThe Trap: Notice how price is hugging the upper resistance. This \"grinding\" action often traps breakout buyers right before a structural breakdown. The volume profile suggests institutional distribution (selling) into these relief rallies.\n\nThe Roadmap: Destination $4,350 – $4,400 🎯\nFollowing the purple projection on the chart, we are looking at a potential \"zig-zag\" collapse:\n\nImmediate Resistance: The $4,840 – $4,850 zone. A 4H close above this level would invalidate the bearish view.\n\nThe Trigger: A clean break below the local triangle floor ($4,700). Once this support snaps, the \"War Premium\" will likely be fully priced out.\n\nPrimary Target: The long-term macro Support Line sitting near $4,350 – $4,400.\n\nWhy there? This zone represents the original 2025 breakout base and the current 200-day moving average. It’s the ultimate \"value zone\" where long-term central bank buyers (led by Turkey and China) are expected to step in.",
"created_at": "2026-04-20T10:27:52+00:00",
"updated_at": null,
"date_timestamp": 1776680872,
"updated_date_timestamp": null,
"chart_url": "https://www.tradingview.com/chart/XAUUSD/juScwUN8-Gold-Institutional-Distribution-at-the-Apex/",
"is_public": true,
"is_visible": true,
"is_video": false,
"is_education": false,
"is_script": false,
"is_picked": false,
"is_hot": true,
"is_platinum_broker_idea": false,
"script_type": null,
"script_access": null,
"script_id_part": null,
"version": null,
"script_package_id": null,
"video_duration": "0",
"video_cam": false,
"video_filename": null,
"comments_count": 21,
"views_count": 0,
"symbol": {
"name": "OANDA:XAUUSD",
"full_name": "OANDA:XAUUSD",
"short_name": "XAUUSD",
"exchange": "OANDA",
"type": "commodity",
"logo": {
"style": "single",
"logoid": "metal/gold"
},
"logo_id": "metal/gold",
"currency_logo_id": "country/US",
"base_currency_logo_id": null,
"logo_urls": [
"https://s3-symbol-logo.tradingview.com/metal/gold.svg"
],
"interval": "240",
"direction": 2,
"badge": {
"label": "OANDA:XAUUSD",
"url": "/symbols/XAUUSD/"
}
},
"user": {
"id": 6991428,
"username": "Lingrid",
"badges": [
{
"name": "pro:pro_premium",
"verbose_name": "Premium"
}
],
"picture_url": "https://s3.tradingview.com/userpics/6991428-YT1U.png",
"mid_picture_url": "https://s3.tradingview.com/userpics/6991428-YT1U_mid.png",
"is_pro": true,
"pro_plan": "pro_premium",
"is_broker": false,
"broker_name": null,
"broker_plan": null
},
"image": {
"big": "https://s3.tradingview.com/j/juScwUN8_big.png",
"middle": "https://s3.tradingview.com/j/juScwUN8_mid.png",
"middle_webp": "https://s3.tradingview.com/j/juScwUN8_mid.webp",
"bg_color": "#ffffff"
},
"reputation": null,
"actions": null,
"is_liked": false,
"likes_count": 48
},
{
"id": 21843832,
"image_url": "gLvFQ8lH",
"name": "Gold Yo-Yo Continues – Watching 4770 Support",
"description": "Last week, after a down gap and an initial recovery, Gold ranged for most of the week, only to explode to the upside on Friday driven by geopolitical news.\n\nHowever, just a few hours after the market closed, that “news” reversed, and as expected, the Asian session opened with a gap to the downside — continuing this yo-yo pattern that is becoming more and more common.\n\n📊 The Question \n\nSo now the question is:\n\n Will Gold follow the same pattern as last week? \n\n📉 Market Context \n\nLooking back:\n- Last week also started with a strong gap down\n- Price filled the gap, found support around 4700\n- Then moved higher over the next 48 hours\n\nIf we translate this behavior to the current situation:\n- We could expect support forming around 4770\n- Followed by a move higher toward the 4900 zone\n\n📌 Perspective \n\n Of course, this is a conditional scenario, and in the current environment, things can change very quickly — sometimes within hours. \n\nStill, the pattern is there, and worth keeping in mind.\n\n🚀 Final Thought \n\nSame market, same behavior… maybe.\n\nWatch the reaction at support — that’s where the answer is. 🚀\n\n",
"created_at": "2026-04-20T05:43:06+00:00",
"updated_at": "2026-04-21T05:04:16+00:00",
"date_timestamp": 1776663786,
"updated_date_timestamp": 1776747856,
"chart_url": "https://www.tradingview.com/chart/XAUUSD/gLvFQ8lH-Gold-Yo-Yo-Continues-Watching-4770-Support/",
"is_public": true,
"is_visible": true,
"is_video": false,
"is_education": false,
"is_script": false,
"is_picked": false,
"is_hot": true,
"is_platinum_broker_idea": false,
"script_type": null,
"script_access": null,
"script_id_part": null,
"version": null,
"script_package_id": null,
"video_duration": "0",
"video_cam": false,
"video_filename": null,
"comments_count": 28,
"views_count": 0,
"symbol": {
"name": "OANDA:XAUUSD",
"full_name": "OANDA:XAUUSD",
"short_name": "XAUUSD",
"exchange": "OANDA",
"type": "commodity",
"logo": {
"style": "single",
"logoid": "metal/gold"
},
"logo_id": "metal/gold",
"currency_logo_id": "country/US",
"base_currency_logo_id": null,
"logo_urls": [
"https://s3-symbol-logo.tradingview.com/metal/gold.svg"
],
"interval": "60",
"direction": 1,
"badge": {
"label": "OANDA:XAUUSD",
"url": "/symbols/XAUUSD/"
}
},
"user": {
"id": 4961969,
"username": "Mihai_Iacob",
"badges": [
{
"name": "pro:pro_premium",
"verbose_name": "Premium"
}
],
"picture_url": "https://s3.tradingview.com/userpics/4961969-zh7u.png",
"mid_picture_url": "https://s3.tradingview.com/userpics/4961969-zh7u_mid.png",
"is_pro": true,
"pro_plan": "pro_premium",
"is_broker": false,
"broker_name": null,
"broker_plan": null
},
"image": {
"big": "https://s3.tradingview.com/g/gLvFQ8lH_big.png",
"middle": "https://s3.tradingview.com/g/gLvFQ8lH_mid.png",
"middle_webp": "https://s3.tradingview.com/g/gLvFQ8lH_mid.webp",
"bg_color": "#ffffff"
},
"reputation": null,
"actions": null,
"is_liked": false,
"likes_count": 40
},
{
"id": 21839005,
"image_url": "QApGSbaq",
"name": "BTCUSDT: Ready to Bounce – Upside Continuation Likely",
"description": "Hello everyone, here is my breakdown of the current BTCUSDT setup. \n\nMarket Analysis\n\nBitcoin previously traded within a range, showing consolidation before a breakout that confirmed bullish momentum. After breaking above the range, price continued higher and formed a series of higher lows along a rising trend line. The market also broke through a triangle resistance line, reinforcing the bullish structure.\n\nCurrently, price is trading near the 74,300 support zone, which aligns with a key demand area and the rising trend line. At the same time, price is moving under a descending triangle resistance line, indicating compression and potential for a breakout move.\n\nMy Scenario & Strategy\n\nAs long as BTCUSDT holds above the 74,300 support and respects the ascending trend line, a bullish scenario remains valid. I expect a rebound from this zone, which could push price back toward the 76,400 resistance (TP1).\n\nHowever, if price breaks below the 74,300 support and loses the trend line, the bullish structure would weaken, opening the door for a deeper correction.\n\n That’s the setup I’m tracking. Thank you for your attention, and always manage your risk.",
"created_at": "2026-04-19T10:07:00+00:00",
"updated_at": "2026-04-21T09:02:30+00:00",
"date_timestamp": 1776593220,
"updated_date_timestamp": 1776762150,
"chart_url": "https://www.tradingview.com/chart/BTCUSDT/QApGSbaq-BTCUSDT-Ready-to-Bounce-Upside-Continuation-Likely/",
"is_public": true,
"is_visible": true,
"is_video": false,
"is_education": false,
"is_script": false,
"is_picked": false,
"is_hot": true,
"is_platinum_broker_idea": false,
"script_type": null,
"script_access": null,
"script_id_part": null,
"version": null,
"script_package_id": null,
"video_duration": "0",
"video_cam": false,
"video_filename": null,
"comments_count": 33,
"views_count": 0,
"symbol": {
"name": "BINANCE:BTCUSDT",
"full_name": "BINANCE:BTCUSDT",
"short_name": "BTCUSDT",
"exchange": "BINANCE",
"type": "spot",
"logo": {
"style": "single",
"logoid": "crypto/XTVCBTC"
},
"logo_id": null,
"currency_logo_id": "crypto/XTVCUSDT",
"base_currency_logo_id": "crypto/XTVCBTC",
"logo_urls": [
"https://s3-symbol-logo.tradingview.com/crypto/XTVCBTC.svg",
"https://s3-symbol-logo.tradingview.com/crypto/XTVCUSDT.svg"
],
"interval": "60",
"direction": 1,
"badge": {
"label": "BINANCE:BTCUSDT",
"url": "/symbols/BTCUSDT/"
}
},
"user": {
"id": 112348033,
"username": "Ratner",
"badges": [
{
"name": "pro:pro_premium",
"verbose_name": "Premium"
}
],
"picture_url": "https://s3.tradingview.com/userpics/112348033-aFpA.png",
"mid_picture_url": "https://s3.tradingview.com/userpics/112348033-aFpA_mid.png",
"is_pro": true,
"pro_plan": "pro_premium",
"is_broker": false,
"broker_name": null,
"broker_plan": null
},
"image": {
"big": "https://s3.tradingview.com/q/QApGSbaq_big.png",
"middle": "https://s3.tradingview.com/q/QApGSbaq_mid.png",
"middle_webp": "https://s3.tradingview.com/q/QApGSbaq_mid.webp",
"bg_color": "#1cd6c0"
},
"reputation": null,
"actions": null,
"is_liked": false,
"likes_count": 178
},
{
"id": 21844842,
"image_url": "ZQIamACT",
"name": "EURUSD - A short squeeze could trigger a drop to 1.168",
"description": "FX:EURUSD is shifting its market tone amid changing fundamentals. Negative sentiment is triggering a sell-off and causing the session to open with a gap.\n\n \n\nThe currency pair is breaking its bullish structure amid a strengthening dollar and shifting fundamentals. The market opens with a gap and is retesting key resistance levels.\nThe euro entered a sell-off phase on Friday amid a dollar rebound. The price is hitting new lows, confirming market doubts. Zone of interest: 1.1765 – 1.1793. A short squeeze could trigger a decline\n\nResistance levels: 1.1765, 1.1793\nSupport levels: 1.1721, 1.1680\n\nA retest of key resistance and the zone of interest (area of imbalance) could shift the balance of power toward sellers and trigger a decline to 1.168\n\nBest regards, R. Linda! ",
"created_at": "2026-04-20T08:57:24+00:00",
"updated_at": "2026-04-21T08:02:41+00:00",
"date_timestamp": 1776675444,
"updated_date_timestamp": 1776758561,
"chart_url": "https://www.tradingview.com/chart/EURUSD/ZQIamACT-EURUSD-A-short-squeeze-could-trigger-a-drop-to-1-168/",
"is_public": true,
"is_visible": true,
"is_video": false,
"is_education": false,
"is_script": false,
"is_picked": false,
"is_hot": true,
"is_platinum_broker_idea": false,
"script_type": null,
"script_access": null,
"script_id_part": null,
"version": null,
"script_package_id": null,
"video_duration": "0",
"video_cam": false,
"video_filename": null,
"comments_count": 18,
"views_count": 0,
"symbol": {
"name": "FX:EURUSD",
"full_name": "FX:EURUSD",
"short_name": "EURUSD",
"exchange": "FX",
"type": "forex",
"logo": {
"style": "pair",
"logoid": "country/EU",
"logoid2": "country/US"
},
"logo_id": null,
"currency_logo_id": "country/US",
"base_currency_logo_id": "country/EU",
"logo_urls": [
"https://s3-symbol-logo.tradingview.com/country/EU.svg",
"https://s3-symbol-logo.tradingview.com/country/US.svg"
],
"interval": "60",
"direction": 2,
"badge": {
"label": "FX:EURUSD",
"url": "/symbols/EURUSD/"
}
},
"user": {
"id": 37284142,
"username": "RLinda",
"badges": [
{
"name": "pro:pro_premium",
"verbose_name": "Premium"
}
],
"picture_url": "https://s3.tradingview.com/userpics/37284142-BNCx.png",
"mid_picture_url": "https://s3.tradingview.com/userpics/37284142-BNCx_mid.png",
"is_pro": true,
"pro_plan": "pro_premium",
"is_broker": false,
"broker_name": null,
"broker_plan": null
},
"image": {
"big": "https://s3.tradingview.com/z/ZQIamACT_big.png",
"middle": "https://s3.tradingview.com/z/ZQIamACT_mid.png",
"middle_webp": "https://s3.tradingview.com/z/ZQIamACT_mid.webp",
"bg_color": "#ffffff"
},
"reputation": null,
"actions": null,
"is_liked": false,
"likes_count": 28
},
{
"id": 21844845,
"image_url": "YGqn42tk",
"name": "AI Trading – The Truth Behind Profits",
"description": "If you've been browsing trading forums recently, you've undoubtedly noticed a trend that's hotter than gold: AI Trading. \nBut to use it effectively, the important thing isn't to chase the trend, but to understand the true nature of AI in trading.\n\n 1. What exactly is AI Trading? \nSimply put, AI Trading is the use of algorithms (machine learning, historical data, statistical models, etc.) to make trading decisions.\nIt's NOT magic.\nIt's just a tool.\n A truly effective AI trading system typically requires: \nHuge amounts of data\nA well-trained model\nContinuous market updates\nA team of developers and traders behind it\n👉 And importantly: it cannot predict the future, only optimize probabilities.\n\n 2. Fact 1: AI doesn't beat the market, it just manages risk better. \nMany people think AI equals a 90% win rate.\nThe reality?\n Even large funds only have: \n50–60% win rate\nBut extremely good risk/reward ratio. And extremely disciplined capital management.\nAI doesn't \"predict correctly,\" it accepts mistakes – but controlled mistakes.\n\n 3. Fact 2: Not all “AI Trading” systems are the same \n Many “AI bots” out there are actually just: \nSimple EAs\nMartingale/Grid \nDisguised copy trading\nThis doesn't mean they are ineffective, but rather that each system has its own way of operating and its own level of risk.\nUnder certain market conditions (e.g., sideways), these strategies can work reliably.\nHowever, when the market is highly volatile or has a clear trend, performance can vary significantly.\n\n 4. Fact 3: AI doesn't replace traders – it only changes how traders make money. \n AI is strong in: \nFast data processing\nUnaffected by emotions\n24/7 trading\n But AI is weak in: \nUnderstanding \"real\" news\nIdentifying market traps (liquidity traps)\nAdapting to unexpected events\n👉 Therefore, smart traders don't fight AI. But learn to use AI as an assistant.\n\n 5. So what should traders do with AI? \nDon't FOMO. Don't be anti-AI.\n Use AI correctly: \nUse AI to backtest strategies\nUse AI to filter signals\nUse AI to automate parts of the system\nBut the final decision is still yours.",
"created_at": "2026-04-20T08:57:29+00:00",
"updated_at": null,
"date_timestamp": 1776675449,
"updated_date_timestamp": null,
"chart_url": "https://www.tradingview.com/chart/XAUUSD/YGqn42tk-AI-Trading-The-Truth-Behind-Profits/",
"is_public": true,
"is_visible": true,
"is_video": false,
"is_education": true,
"is_script": false,
"is_picked": false,
"is_hot": true,
"is_platinum_broker_idea": false,
"script_type": null,
"script_access": null,
"script_id_part": null,
"version": null,
"script_package_id": null,
"video_duration": "0",
"video_cam": false,
"video_filename": null,
"comments_count": 24,
"views_count": 0,
"symbol": {
"name": "OANDA:XAUUSD",
"full_name": "OANDA:XAUUSD",
"short_name": "XAUUSD",
"exchange": "OANDA",
"type": "commodity",
"logo": {
"style": "single",
"logoid": "metal/gold"
},
"logo_id": "metal/gold",
"currency_logo_id": "country/US",
"base_currency_logo_id": null,
"logo_urls": [
"https://s3-symbol-logo.tradingview.com/metal/gold.svg"
],
"interval": "120",
"direction": 0,
"badge": {
"label": "OANDA:XAUUSD",
"url": "/symbols/XAUUSD/"
}
},
"user": {
"id": 111325422,
"username": "Paradise_Noir",
"badges": [
{
"name": "pro:pro_premium",
"verbose_name": "Premium"
}
],
"picture_url": "https://s3.tradingview.com/userpics/111325422-ga2V.png",
"mid_picture_url": "https://s3.tradingview.com/userpics/111325422-ga2V_mid.png",
"is_pro": true,
"pro_plan": "pro_premium",
"is_broker": false,
"broker_name": null,
"broker_plan": null
},
"image": {
"big": "https://s3.tradingview.com/y/YGqn42tk_big.png",
"middle": "https://s3.tradingview.com/y/YGqn42tk_mid.png",
"middle_webp": "https://s3.tradingview.com/y/YGqn42tk_mid.webp",
"bg_color": "#c8e6c9"
},
"reputation": null,
"actions": null,
"is_liked": false,
"likes_count": 116
},
{
"id": 21844514,
"image_url": "LhkTkeWI",
"name": "Bitcoin Loses Short-Term Momentum – Testing the 89 EMA",
"description": "Hello everyone,\n \nOn the H4 timeframe, Bitcoin remains within a broader uptrend, but recent price action is starting to show signs of short-term weakness. After setting a high around the 77,000–78,000 zone, price has pulled back relatively quickly and is now moving toward the 34 EMA (red).\n\nWhat stands out is that this time, price behavior differs from previous pullbacks. Instead of holding firmly and bouncing immediately from the 34 EMA, price has briefly moved below it, indicating weakening short-term buying pressure. At the same time, the latest highs are no longer expanding aggressively but are beginning to slope downward—an early sign of fading momentum.\n\nAt the moment, the 73,000–73,500 zone (near the 89 EMA – blue) is acting as a key support level. If price holds this area and shows a clear buying reaction, this could simply be a retest within the broader uptrend, helping to “reset” positioning before continuing higher. In that case, a move back toward the 76,000–78,000 zone remains possible.",
"created_at": "2026-04-20T07:56:52+00:00",
"updated_at": "2026-04-21T00:46:47+00:00",
"date_timestamp": 1776671812,
"updated_date_timestamp": 1776732407,
"chart_url": "https://www.tradingview.com/chart/BTCUSDT/LhkTkeWI-Bitcoin-Loses-Short-Term-Momentum-Testing-the-89-EMA/",
"is_public": true,
"is_visible": true,
"is_video": false,
"is_education": false,
"is_script": false,
"is_picked": false,
"is_hot": true,
"is_platinum_broker_idea": false,
"script_type": null,
"script_access": null,
"script_id_part": null,
"version": null,
"script_package_id": null,
"video_duration": "0",
"video_cam": false,
"video_filename": null,
"comments_count": 31,
"views_count": 0,
"symbol": {
"name": "BINANCE:BTCUSDT",
"full_name": "BINANCE:BTCUSDT",
"short_name": "BTCUSDT",
"exchange": "BINANCE",
"type": "spot",
"logo": {
"style": "single",
"logoid": "crypto/XTVCBTC"
},
"logo_id": null,
"currency_logo_id": "crypto/XTVCUSDT",
"base_currency_logo_id": "crypto/XTVCBTC",
"logo_urls": [
"https://s3-symbol-logo.tradingview.com/crypto/XTVCBTC.svg",
"https://s3-symbol-logo.tradingview.com/crypto/XTVCUSDT.svg"
],
"interval": "240",
"direction": 1,
"badge": {
"label": "BINANCE:BTCUSDT",
"url": "/symbols/BTCUSDT/"
}
},
"user": {
"id": 115353670,
"username": "DomicChaina",
"badges": [
{
"name": "pro:pro_premium",
"verbose_name": "Premium"
}
],
"picture_url": "https://s3.tradingview.com/userpics/115353670-Dx1H.png",
"mid_picture_url": "https://s3.tradingview.com/userpics/115353670-Dx1H_mid.png",
"is_pro": true,
"pro_plan": "pro_premium",
"is_broker": false,
"broker_name": null,
"broker_plan": null
},
"image": {
"big": "https://s3.tradingview.com/l/LhkTkeWI_big.png",
"middle": "https://s3.tradingview.com/l/LhkTkeWI_mid.png",
"middle_webp": "https://s3.tradingview.com/l/LhkTkeWI_mid.webp",
"bg_color": "#ffffff"
},
"reputation": null,
"actions": null,
"is_liked": false,
"likes_count": 15
},
{
"id": 21844919,
"image_url": "B7m1wZ3G",
"name": "Dogecoin (DOGE) Update bullish potential ",
"description": "Dogecoin is currently consolidating within a tight local range, signaling a potential expansion move on the horizon as volatility continues to compress.\n\nPrice action has been accompanied by declining volume, which typically precedes a breakout scenario. As the range tightens, the market is building pressure for a directional move, with volume expected to be the key driver.\n\nKey Highlights:\n- Tight range consolidation signaling expansion\n- Declining volume suggests buildup phase\n- $0.07 support remains key for bullish structure\n\nThe lack of volume during this consolidation phase indicates that neither buyers nor sellers have taken control just yet. However, this type of compression often leads to sharp expansion once participation returns to the market.\n\nFrom a technical standpoint, as long as Dogecoin holds above the $0.07 support level, the structure remains favorable for a bullish breakout. This level acts as a key foundation for buyers, and maintaining support here keeps the upside scenario intact.\n\nA strong influx of bullish volume will likely be the trigger needed to break above the local range highs and initiate the next leg upward. Until then, patience is required as price continues to coil within this tightening structure, preparing for its next move.",
"created_at": "2026-04-20T09:07:25+00:00",
"updated_at": null,
"date_timestamp": 1776676045,
"updated_date_timestamp": null,
"chart_url": "https://www.tradingview.com/chart/DOGEUSDT/B7m1wZ3G-Dogecoin-DOGE-Update-bullish-potential/",
"is_public": true,
"is_visible": true,
"is_video": false,
"is_education": false,
"is_script": false,
"is_picked": true,
"is_hot": true,
"is_platinum_broker_idea": false,
"script_type": null,
"script_access": null,
"script_id_part": null,
"version": null,
"script_package_id": null,
"video_duration": "0",
"video_cam": false,
"video_filename": null,
"comments_count": 27,
"views_count": 0,
"symbol": {
"name": "BINANCE:DOGEUSDT",
"full_name": "BINANCE:DOGEUSDT",
"short_name": "DOGEUSDT",
"exchange": "BINANCE",
"type": "spot",
"logo": {
"style": "single",
"logoid": "crypto/XTVCDOGE"
},
"logo_id": null,
"currency_logo_id": "crypto/XTVCUSDT",
"base_currency_logo_id": "crypto/XTVCDOGE",
"logo_urls": [
"https://s3-symbol-logo.tradingview.com/crypto/XTVCDOGE.svg",
"https://s3-symbol-logo.tradingview.com/crypto/XTVCUSDT.svg"
],
"interval": "1D",
"direction": 1,
"badge": {
"label": "BINANCE:DOGEUSDT",
"url": "/symbols/DOGEUSDT/"
}
},
"user": {
"id": 1648190,
"username": "The_Alchemist_Trader_",
"badges": [
{
"name": "pro:pro_premium",
"verbose_name": "Premium"
}
],
"picture_url": "https://s3.tradingview.com/userpics/1648190-4kyx.png",
"mid_picture_url": "https://s3.tradingview.com/userpics/1648190-4kyx_mid.png",
"is_pro": true,
"pro_plan": "pro_premium",
"is_broker": false,
"broker_name": null,
"broker_plan": null
},
"image": {
"big": "https://s3.tradingview.com/b/B7m1wZ3G_big.png",
"middle": "https://s3.tradingview.com/b/B7m1wZ3G_mid.png",
"middle_webp": "https://s3.tradingview.com/b/B7m1wZ3G_mid.webp",
"bg_color": "#dadada"
},
"reputation": null,
"actions": null,
"is_liked": false,
"likes_count": 17
},
{
"id": 21838745,
"image_url": "4MCFdLjL",
"name": "Gold Builds Pressure Below Resistance – Bullish Scenario",
"description": "Hello traders! Here’s my technical outlook based on the current XAUUSD (2H) chart structure. Gold previously moved inside a range, showing consolidation before a breakdown that confirmed bearish pressure. After the drop, price found a bottom and started a recovery phase. Following this, gold reclaimed the 4,770 buyer zone, confirming it as a key support level, and moved into an ascending channel. Currently, price is trading below the 4,900 resistance (seller zone), while holding above support and respecting the rising structure. This indicates consolidation under resistance with building pressure. As long as XAUUSD holds above the 4,770 support and respects the ascending channel, the bullish bias remains valid. A breakout above the 4,900 resistance could trigger continuation toward higher levels (TP1). Please share this idea with your friends and click Boost 🚀",
"created_at": "2026-04-19T09:03:22+00:00",
"updated_at": "2026-04-20T08:45:56+00:00",
"date_timestamp": 1776589402,
"updated_date_timestamp": 1776674756,
"chart_url": "https://www.tradingview.com/chart/XAUUSD/4MCFdLjL-Gold-Builds-Pressure-Below-Resistance-Bullish-Scenario/",
"is_public": true,
"is_visible": true,
"is_video": false,
"is_education": false,
"is_script": false,
"is_picked": false,
"is_hot": true,
"is_platinum_broker_idea": false,
"script_type": null,
"script_access": null,
"script_id_part": null,
"version": null,
"script_package_id": null,
"video_duration": "0",
"video_cam": false,
"video_filename": null,
"comments_count": 26,
"views_count": 0,
"symbol": {
"name": "FOREXCOM:XAUUSD",
"full_name": "FOREXCOM:XAUUSD",
"short_name": "XAUUSD",
"exchange": "FOREXCOM",
"type": "commodity",
"logo": {
"style": "single",
"logoid": "metal/gold"
},
"logo_id": "metal/gold",
"currency_logo_id": "country/US",
"base_currency_logo_id": null,
"logo_urls": [
"https://s3-symbol-logo.tradingview.com/metal/gold.svg"
],
"interval": "120",
"direction": 1,
"badge": {
"label": "FOREXCOM:XAUUSD",
"url": "/symbols/XAUUSD/"
}
},
"user": {
"id": 50479193,
"username": "LegionQ8",
"badges": [
{
"name": "pro:pro_premium",
"verbose_name": "Premium"
}
],
"picture_url": "https://s3.tradingview.com/userpics/50479193-AP0U.png",
"mid_picture_url": "https://s3.tradingview.com/userpics/50479193-AP0U_mid.png",
"is_pro": true,
"pro_plan": "pro_premium",
"is_broker": false,
"broker_name": null,
"broker_plan": null
},
"image": {
"big": "https://s3.tradingview.com/4/4MCFdLjL_big.png",
"middle": "https://s3.tradingview.com/4/4MCFdLjL_mid.png",
"middle_webp": "https://s3.tradingview.com/4/4MCFdLjL_mid.webp",
"bg_color": "#b9dbad"
},
"reputation": null,
"actions": null,
"is_liked": false,
"likes_count": 53
},
{
"id": 21845323,
"image_url": "EBBTkbEQ",
"name": "Nasdaq Soars 20% in Three Weeks. Boom Just in Time for Earnings?",
"description": "The tech-heavy Nasdaq Composite NASDAQ:IXIC has climbed nearly 20% from its March 30 low, delivering the fastest rebound traders have seen this year. Moves of that size usually arrive alongside strong catalysts, shifting expectations, or a sudden improvement in global mood.\n\nThis time the spark came partly from easing tensions around the US–Iran conflict, which helped calm energy markets and send risk assets to record highs . A relief rally quickly became a momentum rally, and momentum attracted fresh capital.\n\n🏦 Earnings Season Opens with Confidence \n\nAt the same time, Corporate America stepped into earnings season with steady footing. \n\n Major banks reported solid results, helping reinforce expectations for roughly 12% year-over-year earnings growth for the S&P 500. Strong margins continue to support profits even as inflation remains sticky and geopolitical uncertainty lingers.\n\nEarly reports suggest companies still know how to protect profitability in complex environments. That resilience tends to encourage investors to look ahead rather than backward.\n\n📊 Tech Still Carries the Baton \n\nStrip technology out of the earnings picture and projected growth drops closer to 3%, which highlights how much leadership still comes from the big players in the business. \n\nThe recent Nasdaq rebound could be seen as renewed confidence that artificial intelligence spending, cloud infrastructure expansion, and digital services demand continue shaping corporate investment priorities.\n\n✈️ The First Big Names Step Up \n\nThis week brings results from several high-profile companies including Tesla NASDAQ:TSLA and Boeing NYSE:BA , along with Intel NASDAQ:INTC and United Airlines NASDAQ:UAL . Roughly 86% of early reporters have already beaten expectations, which adds momentum to the broader narrative of corporate resilience.\n\nAirlines offer insight into travel demand, chipmakers reflect investment in infrastructure, and industrial giants help reveal global supply chain health. Together they provide a useful early read on economic direction.\n\n💻 The Real Test Arrives Next Week \n\nThe most influential stretch of earnings arrives next week. Microsoft NASDAQ:MSFT , Meta Platforms NASDAQ:META , Alphabet NASDAQ:GOOGL , and Amazon NASDAQ:AMZN report on April 29, followed by Apple NASDAQ:AAPL on April 30.\n\nTogether these companies shape nearly every major market theme at once. Cloud spending, digital advertising, artificial intelligence infrastructure, and consumer demand all intersect during that single reporting window.\n\n🔄 A Rotation Story in Reverse \n\nEarlier this year investors shifted capital away from technology stocks amid concerns about heavy AI infrastructure spending and pressure on software business models. That rotation left valuations at more comfortable levels compared with previous earnings seasons.\n\nLower valuation multiples often create room for upside surprises. When expectations fall, steady results can look impressive.\n\n⚡ Software Still Faces Questions \n\nOne area attracting close attention involves software companies adjusting to the pace of artificial intelligence innovation. Investors continue watching how automation reshapes pricing power, hiring strategies, and enterprise demand. Adobe NASDAQ:ADBE , Salesforce NYSE:CRM , Figma NYSE:FIG , and Progress NASDAQ:PRGS have been hurt badly.\n\nAt the same time infrastructure players continue benefiting from strong investment cycles. Winners here include CoreWeave NASDAQ:CRWV , Nebius NASDAQ:NBIS , and IREN NASDAQ:IREN . The contrast creates a layered picture inside the broader technology sector.\n\n🛍️ Consumers Remain the Wild Card \n\nStrategists also continue monitoring consumer strength as tariffs (yep, still here), higher energy costs, and AI-driven changes in employment reshape spending behavior. Premium brands and services companies often provide early signals about confidence across households.\n\n Off to you : How do you plan to tackle this earnings season? Share your views in the comments!",
"created_at": "2026-04-20T10:22:38+00:00",
"updated_at": null,
"date_timestamp": 1776680558,
"updated_date_timestamp": null,
"chart_url": "https://www.tradingview.com/chart/IXIC/EBBTkbEQ-Nasdaq-Soars-20-in-Three-Weeks-Boom-Just-in-Time-for-Earnings/",
"is_public": true,
"is_visible": true,
"is_video": false,
"is_education": false,
"is_script": false,
"is_picked": true,
"is_hot": true,
"is_platinum_broker_idea": false,
"script_type": null,
"script_access": null,
"script_id_part": null,
"version": null,
"script_package_id": null,
"video_duration": "0",
"video_cam": false,
"video_filename": null,
"comments_count": 13,
"views_count": 0,
"symbol": {
"name": "NASDAQ:IXIC",
"full_name": "NASDAQ:IXIC",
"short_name": "IXIC",
"exchange": "NASDAQ",
"type": "index",
"logo": {
"style": "single",
"logoid": "indices/nasdaq-composite"
},
"logo_id": "indices/nasdaq-composite",
"currency_logo_id": "country/US",
"base_currency_logo_id": null,
"logo_urls": [
"https://s3-symbol-logo.tradingview.com/indices/nasdaq-composite.svg"
],
"interval": "1D",
"direction": 0,
"badge": {
"label": "NASDAQ:IXIC",
"url": "/symbols/NASDAQ-IXIC/"
}
},
"user": {
"id": 6171439,
"username": "TradingView",
"badges": [
{
"name": "employee",
"verbose_name": "TradingView employee"
},
{
"name": "moderator",
"verbose_name": "TradingView moderator"
},
{
"name": "pro:pro_premium_expert",
"verbose_name": "Ultimate"
}
],
"picture_url": "https://s3.tradingview.com/userpics/6171439-mFQX.png",
"mid_picture_url": "https://s3.tradingview.com/userpics/6171439-mFQX_mid.png",
"is_pro": true,
"pro_plan": "pro_premium_expert",
"is_broker": false,
"broker_name": null,
"broker_plan": null
},
"image": {
"big": "https://s3.tradingview.com/e/EBBTkbEQ_big.png",
"middle": "https://s3.tradingview.com/e/EBBTkbEQ_mid.png",
"middle_webp": "https://s3.tradingview.com/e/EBBTkbEQ_mid.webp",
"bg_color": "#ffffff"
},
"reputation": null,
"actions": null,
"is_liked": false,
"likes_count": 114
},
{
"id": 21847645,
"image_url": "9WygGqFu",
"name": "GOLD OUTLOOK: KEY LEVEL AT 4784 HOLDING THE DIRECTION",
"description": "Hey everyone,\n\nThe market opened with a glitch gap into the bearish Goldturn gap and filled 4784. However, there was no EMA5 lock below this level, which led to a rejection and a bounce.\n\nIf this level continues to hold, we are likely to see a move toward filling the bullish gap at 4860 Goldturn. On the other hand, a confirmed break and lock below 4784 would open the door for lower Goldturn targets, where gold may look for support and a potential bounce aligning with our plans to buy dips.\n\nWe’ll keep you all updated.\n\nMr Gold",
"created_at": "2026-04-20T16:50:27+00:00",
"updated_at": null,
"date_timestamp": 1776703827,
"updated_date_timestamp": null,
"chart_url": "https://www.tradingview.com/chart/XAUUSD/9WygGqFu-GOLD-OUTLOOK-KEY-LEVEL-AT-4784-HOLDING-THE-DIRECTION/",
"is_public": true,
"is_visible": true,
"is_video": false,
"is_education": false,
"is_script": false,
"is_picked": false,
"is_hot": true,
"is_platinum_broker_idea": false,
"script_type": null,
"script_access": null,
"script_id_part": null,
"version": null,
"script_package_id": null,
"video_duration": "0",
"video_cam": false,
"video_filename": null,
"comments_count": 14,
"views_count": 0,
"symbol": {
"name": "OANDA:XAUUSD",
"full_name": "OANDA:XAUUSD",
"short_name": "XAUUSD",
"exchange": "OANDA",
"type": "commodity",
"logo": {
"style": "single",
"logoid": "metal/gold"
},
"logo_id": "metal/gold",
"currency_logo_id": "country/US",
"base_currency_logo_id": null,
"logo_urls": [
"https://s3-symbol-logo.tradingview.com/metal/gold.svg"
],
"interval": "60",
"direction": 0,
"badge": {
"label": "OANDA:XAUUSD",
"url": "/symbols/XAUUSD/"
}
},
"user": {
"id": 27172399,
"username": "Goldviewfx",
"badges": [
{
"name": "pro:pro_premium_expert",
"verbose_name": "Ultimate"
}
],
"picture_url": "https://s3.tradingview.com/userpics/27172399-UgXP.png",
"mid_picture_url": "https://s3.tradingview.com/userpics/27172399-UgXP_mid.png",
"is_pro": true,
"pro_plan": "pro_premium_expert",
"is_broker": false,
"broker_name": null,
"broker_plan": null
},
"image": {
"big": "https://s3.tradingview.com/9/9WygGqFu_big.png",
"middle": "https://s3.tradingview.com/9/9WygGqFu_mid.png",
"middle_webp": "https://s3.tradingview.com/9/9WygGqFu_mid.webp",
"bg_color": "#ffffff"
},
"reputation": null,
"actions": null,
"is_liked": false,
"likes_count": 57
},
{
"id": 21838264,
"image_url": "eElxr8NR",
"name": "XAUUSD before the market opens: What is the right choice?",
"description": "D1 PERSPECTIVE – THE BIG PICTURE \nThe overall trend for gold is still bullish, but the problem lies in this:\n👉 The price has entered a strong resistance zone – where there was previously very clear selling pressure.\n This creates two possibilities: \nIf it breaks through → a strong bullish continuation\nIf it is rejected → a deep correction is likely.\n\n H4 PERSPECTIVE – THE REAL STORY BEGINS \nPrice is sideways just below the 4,890 resistance level.\nEMA + Ichimoku show:\nPrice is still above the cloud → trend not broken yet.\nBut upward momentum is weakening.\n 👉 Most importantly: \nA range is forming + slight lower high signals.\nNo longer \"pushing strongly\" as before.\n\n WEEKDAY SCENARIO \n Scenario 1 – Real Break (less likely) \nIf the price breaks strongly above 4,890\nVolume + momentum confirmed\n👉 Then:\nGold will continue following the D1 trend\nFOMO will appear\n\n Scenario 2 – Fake break + dump ( I PREFER THIS ONE ) \n Based on the chart: \nPrice is being compressed just below resistance\nHigh probability:\nA breakout above 4,890\nThen a strong reversal\n 👉 Technical target: \n4,640 region (exactly as you drew)\nCoincident with:\nH4 trendline\nSupport zone + Ichimoku cloud\n\n NEWS THAT \"PUSHED THE DROP\" \n 1. Middle East cools down \nUS-Iran tensions show signs of negotiations\nThe market shifts to risk-on\n 👉 Consequences: \nGold loses its safe-haven role\nEasily sold off when prices rise\n\n 2. Interest rates & USD remain the ultimate boss \nFederal Reserve tends to keep interest rates high for longer\nThe probability of interest rate cuts is low\n👉 High interest rates → money flows to USD\nStrong USD → gold is pressured down",
"created_at": "2026-04-19T07:21:16+00:00",
"updated_at": "2026-04-20T02:16:18+00:00",
"date_timestamp": 1776583276,
"updated_date_timestamp": 1776651378,
"chart_url": "https://www.tradingview.com/chart/XAUUSD/eElxr8NR-XAUUSD-before-the-market-opens-What-is-the-right-choice/",
"is_public": true,
"is_visible": true,
"is_video": false,
"is_education": false,
"is_script": false,
"is_picked": false,
"is_hot": true,
"is_platinum_broker_idea": false,
"script_type": null,
"script_access": null,
"script_id_part": null,
"version": null,
"script_package_id": null,
"video_duration": "0",
"video_cam": false,
"video_filename": null,
"comments_count": 49,
"views_count": 0,
"symbol": {
"name": "OANDA:XAUUSD",
"full_name": "OANDA:XAUUSD",
"short_name": "XAUUSD",
"exchange": "OANDA",
"type": "commodity",
"logo": {
"style": "single",
"logoid": "metal/gold"
},
"logo_id": "metal/gold",
"currency_logo_id": "country/US",
"base_currency_logo_id": null,
"logo_urls": [
"https://s3-symbol-logo.tradingview.com/metal/gold.svg"
],
"interval": "240",
"direction": 2,
"badge": {
"label": "OANDA:XAUUSD",
"url": "/symbols/XAUUSD/"
}
},
"user": {
"id": 111325422,
"username": "Paradise_Noir",
"badges": [
{
"name": "pro:pro_premium",
"verbose_name": "Premium"
}
],
"picture_url": "https://s3.tradingview.com/userpics/111325422-ga2V.png",
"mid_picture_url": "https://s3.tradingview.com/userpics/111325422-ga2V_mid.png",
"is_pro": true,
"pro_plan": "pro_premium",
"is_broker": false,
"broker_name": null,
"broker_plan": null
},
"image": {
"big": "https://s3.tradingview.com/e/eElxr8NR_big.png",
"middle": "https://s3.tradingview.com/e/eElxr8NR_mid.png",
"middle_webp": "https://s3.tradingview.com/e/eElxr8NR_mid.webp",
"bg_color": "#c8e6c9"
},
"reputation": null,
"actions": null,
"is_liked": false,
"likes_count": 51
},
{
"id": 21841615,
"image_url": "WOpq0RBP",
"name": "GBPUSD Rejection at Key Resistance Zone",
"description": "GBPUSD Rejection at Key Resistance Zone \n\nThe price has consistently respected a horizontal resistance zone near 1.3600.\n\nFrom the chart we can see that these multiple rejections confirm strong selling pressure.\n\nThe recent move shows another failed breakout attempt, followed by rejection.\n\nThe bearish momentum is increasing further considering the geopolitical tension in the Middle East.\n\nIt seems that the US and Iran did not reach an agreement over the weekend and the market uncertainty regarding further developments could increase the strength of the US dollar in the short term.\n\nMain targets:\n1.3460\n1.3385\n1.3250\n\nYou can find more details on the chart.\nThank you and good luck! 🍀\n\n ⚠️PS: Do your own analysis and use your own strategy to join the trade.\n\n❤️ If this analysis helps your trading day, please support it with a like or comment ❤️",
"created_at": "2026-04-19T19:07:14+00:00",
"updated_at": "2026-04-20T12:00:01+00:00",
"date_timestamp": 1776625634,
"updated_date_timestamp": 1776686401,
"chart_url": "https://www.tradingview.com/chart/GBPUSD/WOpq0RBP-GBPUSD-Rejection-at-Key-Resistance-Zone/",
"is_public": true,
"is_visible": true,
"is_video": false,
"is_education": false,
"is_script": false,
"is_picked": false,
"is_hot": true,
"is_platinum_broker_idea": false,
"script_type": null,
"script_access": null,
"script_id_part": null,
"version": null,
"script_package_id": null,
"video_duration": "0",
"video_cam": false,
"video_filename": null,
"comments_count": 25,
"views_count": 0,
"symbol": {
"name": "FX:GBPUSD",
"full_name": "FX:GBPUSD",
"short_name": "GBPUSD",
"exchange": "FX",
"type": "forex",
"logo": {
"style": "pair",
"logoid": "country/GB",
"logoid2": "country/US"
},
"logo_id": null,
"currency_logo_id": "country/US",
"base_currency_logo_id": "country/GB",
"logo_urls": [
"https://s3-symbol-logo.tradingview.com/country/GB.svg",
"https://s3-symbol-logo.tradingview.com/country/US.svg"
],
"interval": "240",
"direction": 2,
"badge": {
"label": "FX:GBPUSD",
"url": "/symbols/GBPUSD/"
}
},
"user": {
"id": 158554,
"username": "KlejdiCuni",
"badges": [
{
"name": "pro:pro_premium",
"verbose_name": "Premium"
}
],
"picture_url": "https://s3.tradingview.com/userpics/158554-BqZR.png",
"mid_picture_url": "https://s3.tradingview.com/userpics/158554-BqZR_mid.png",
"is_pro": true,
"pro_plan": "pro_premium",
"is_broker": false,
"broker_name": null,
"broker_plan": null
},
"image": {
"big": "https://s3.tradingview.com/w/WOpq0RBP_big.png",
"middle": "https://s3.tradingview.com/w/WOpq0RBP_mid.png",
"middle_webp": "https://s3.tradingview.com/w/WOpq0RBP_mid.webp",
"bg_color": "#fce5cd"
},
"reputation": null,
"actions": null,
"is_liked": false,
"likes_count": 67
},
{
"id": 21839135,
"image_url": "NUjVJZde",
"name": "EURUSD Long: Compression Below Resistance - Breakout Incoming",
"description": "Hello traders! Here’s my technical outlook based on the current EURUSD (3H) chart structure. Previously, the pair was trading inside a range, showing consolidation before a strong breakout to the downside. After the drop, price found a pivot point and began a recovery phase.\n\nCurrently, EURUSD is moving within an ascending structure, forming higher lows along a trendline, which signals growing bullish momentum. At the same time, price is approaching the 1.1800 supply zone, where a range has formed and a reaction is already visible, indicating selling pressure.\n\nAs long as EURUSD holds above the support level of 1.1740, I expect a bounce from the support and trend line to retest the resistance. A confirmed break of the resistance level of 1.1800 could trigger a continuation of the move to higher levels (TP1). Manage your risk!",
"created_at": "2026-04-19T10:34:19+00:00",
"updated_at": "2026-04-20T10:04:09+00:00",
"date_timestamp": 1776594859,
"updated_date_timestamp": 1776679449,
"chart_url": "https://www.tradingview.com/chart/EURUSD/NUjVJZde-EURUSD-Long-Compression-Below-Resistance-Breakout-Incoming/",
"is_public": true,
"is_visible": true,
"is_video": false,
"is_education": false,
"is_script": false,
"is_picked": false,
"is_hot": true,
"is_platinum_broker_idea": false,
"script_type": null,
"script_access": null,
"script_id_part": null,
"version": null,
"script_package_id": null,
"video_duration": "0",
"video_cam": false,
"video_filename": null,
"comments_count": 21,
"views_count": 0,
"symbol": {
"name": "FOREXCOM:EURUSD",
"full_name": "FOREXCOM:EURUSD",
"short_name": "EURUSD",
"exchange": "FOREXCOM",
"type": "forex",
"logo": {
"style": "pair",
"logoid": "country/EU",
"logoid2": "country/US"
},
"logo_id": null,
"currency_logo_id": "country/US",
"base_currency_logo_id": "country/EU",
"logo_urls": [
"https://s3-symbol-logo.tradingview.com/country/EU.svg",
"https://s3-symbol-logo.tradingview.com/country/US.svg"
],
"interval": "180",
"direction": 1,
"badge": {
"label": "FOREXCOM:EURUSD",
"url": "/symbols/EURUSD/"
}
},
"user": {
"id": 58533910,
"username": "heniitrading",
"badges": [
{
"name": "pro:pro_premium",
"verbose_name": "Premium"
}
],
"picture_url": "https://s3.tradingview.com/userpics/58533910-0eGd.png",
"mid_picture_url": "https://s3.tradingview.com/userpics/58533910-0eGd_mid.png",
"is_pro": true,
"pro_plan": "pro_premium",
"is_broker": false,
"broker_name": null,
"broker_plan": null
},
"image": {
"big": "https://s3.tradingview.com/n/NUjVJZde_big.png",
"middle": "https://s3.tradingview.com/n/NUjVJZde_mid.png",
"middle_webp": "https://s3.tradingview.com/n/NUjVJZde_mid.webp",
"bg_color": "#ffffff"
},
"reputation": null,
"actions": null,
"is_liked": false,
"likes_count": 83
},
{
"id": 21841465,
"image_url": "XdY6Tq57",
"name": "#BTCUSDT(BITCOIN): $93000 is Final Target! Intraday Trading Idea",
"description": "Dear Traders,\n\nBitcoin is in a bullish trend; however, we are facing strong resistance at $76,000. We are still ranging around that area. It is now possible to see the price break through the region and push toward the 80k mark. We are overall bullish with clear entry and exit points, alongside our two take-profit levels.\n\nGood luck and trade safe. If you have any questions, please comment below; we will be happy to help.\n\nTeam Setupsfx_",
"created_at": "2026-04-19T18:31:51+00:00",
"updated_at": null,
"date_timestamp": 1776623511,
"updated_date_timestamp": null,
"chart_url": "https://www.tradingview.com/chart/BTCUSDT/XdY6Tq57-BTCUSDT-BITCOIN-93000-is-Final-Target-Intraday-Trading-Idea/",
"is_public": true,
"is_visible": true,
"is_video": false,
"is_education": false,
"is_script": false,
"is_picked": false,
"is_hot": true,
"is_platinum_broker_idea": false,
"script_type": null,
"script_access": null,
"script_id_part": null,
"version": null,
"script_package_id": null,
"video_duration": "0",
"video_cam": false,
"video_filename": null,
"comments_count": 32,
"views_count": 0,
"symbol": {
"name": "BINANCE:BTCUSDT",
"full_name": "BINANCE:BTCUSDT",
"short_name": "BTCUSDT",
"exchange": "BINANCE",
"type": "spot",
"logo": {
"style": "single",
"logoid": "crypto/XTVCBTC"
},
"logo_id": null,
"currency_logo_id": "crypto/XTVCUSDT",
"base_currency_logo_id": "crypto/XTVCBTC",
"logo_urls": [
"https://s3-symbol-logo.tradingview.com/crypto/XTVCBTC.svg",
"https://s3-symbol-logo.tradingview.com/crypto/XTVCUSDT.svg"
],
"interval": "480",
"direction": 1,
"badge": {
"label": "BINANCE:BTCUSDT",
"url": "/symbols/BTCUSDT/"
}
},
"user": {
"id": 15114910,
"username": "Setupsfx_",
"badges": [
{
"name": "pro:pro_premium",
"verbose_name": "Premium"
}
],
"picture_url": "https://s3.tradingview.com/userpics/15114910-MNMD.png",
"mid_picture_url": "https://s3.tradingview.com/userpics/15114910-MNMD_mid.png",
"is_pro": true,
"pro_plan": "pro_premium",
"is_broker": false,
"broker_name": null,
"broker_plan": null
},
"image": {
"big": "https://s3.tradingview.com/x/XdY6Tq57_big.png",
"middle": "https://s3.tradingview.com/x/XdY6Tq57_mid.png",
"middle_webp": "https://s3.tradingview.com/x/XdY6Tq57_mid.webp",
"bg_color": "#ffffff"
},
"reputation": null,
"actions": null,
"is_liked": false,
"likes_count": 59
},
{
"id": 21845326,
"image_url": "ICZh3Bzx",
"name": "BTCUSDT Long: Reclaims Support – Bullish Move Toward 77K",
"description": "Hello traders! Here’s my technical outlook based on the current BTCUSDT (2H) chart structure. Bitcoin broke out of a descending channel and shifted into an ascending channel, forming higher lows. Price reclaimed the 73,500 demand zone, confirming strong support.\n\nCurrently, price is trading within the ascending channel and approaching the 77,000 supply zone, where a recent rejection (test) indicates the presence of selling pressure.\n\nAs long as BTCUSDT holds above the 73,500 support and respects the ascending channel, the bullish bias remains valid. I expect a potential continuation toward the 77,000 resistance (TP1). A confirmed breakout above this level could open the path for further upside. Manage your risk!",
"created_at": "2026-04-20T10:23:06+00:00",
"updated_at": "2026-04-21T09:27:44+00:00",
"date_timestamp": 1776680586,
"updated_date_timestamp": 1776763664,
"chart_url": "https://www.tradingview.com/chart/BTCUSDT/ICZh3Bzx-BTCUSDT-Long-Reclaims-Support-Bullish-Move-Toward-77K/",
"is_public": true,
"is_visible": true,
"is_video": false,
"is_education": false,
"is_script": false,
"is_picked": false,
"is_hot": true,
"is_platinum_broker_idea": false,
"script_type": null,
"script_access": null,
"script_id_part": null,
"version": null,
"script_package_id": null,
"video_duration": "0",
"video_cam": false,
"video_filename": null,
"comments_count": 10,
"views_count": 0,
"symbol": {
"name": "BINANCE:BTCUSDT",
"full_name": "BINANCE:BTCUSDT",
"short_name": "BTCUSDT",
"exchange": "BINANCE",
"type": "spot",
"logo": {
"style": "single",
"logoid": "crypto/XTVCBTC"
},
"logo_id": null,
"currency_logo_id": "crypto/XTVCUSDT",
"base_currency_logo_id": "crypto/XTVCBTC",
"logo_urls": [
"https://s3-symbol-logo.tradingview.com/crypto/XTVCBTC.svg",
"https://s3-symbol-logo.tradingview.com/crypto/XTVCUSDT.svg"
],
"interval": "120",
"direction": 1,
"badge": {
"label": "BINANCE:BTCUSDT",
"url": "/symbols/BTCUSDT/"
}
},
"user": {
"id": 58533910,
"username": "heniitrading",
"badges": [
{
"name": "pro:pro_premium",
"verbose_name": "Premium"
}
],
"picture_url": "https://s3.tradingview.com/userpics/58533910-0eGd.png",
"mid_picture_url": "https://s3.tradingview.com/userpics/58533910-0eGd_mid.png",
"is_pro": true,
"pro_plan": "pro_premium",
"is_broker": false,
"broker_name": null,
"broker_plan": null
},
"image": {
"big": "https://s3.tradingview.com/i/ICZh3Bzx_big.png",
"middle": "https://s3.tradingview.com/i/ICZh3Bzx_mid.png",
"middle_webp": "https://s3.tradingview.com/i/ICZh3Bzx_mid.webp",
"bg_color": "#ffffff"
},
"reputation": null,
"actions": null,
"is_liked": false,
"likes_count": 15
},
{
"id": 21845972,
"image_url": "GoSYPi3O",
"name": "Gold Price Analysis – Key Resistance, Support Levels, and Trend ",
"description": "This chart presents a detailed technical analysis of Gold (XAU/USD), emphasizing key support and resistance zones. The Key Resistance at 5,211.636 USD represents a strong level where the price is likely to face significant rejection, while Minor Resistance at 4,870.016 USD may lead to a potential price reversal or continuation.\n\nOn the downside, the Support Zone at 4,810.230 USD is expected to hold the price, providing a potential bullish reaction. If price breaks lower, Critical Support at 4,371.438 USD could act as a strong level to monitor for reversal. Lower Support at 4,190.814 USD is another key level where price may find support or show signs of reversal.\n\nThe Upward Trend Channel indicates a bullish market momentum, suggesting that further price movement upward is possible unless key resistance levels are breached. Traders should closely monitor these levels for potential breakouts, reversals, or continuation of the trend.",
"created_at": "2026-04-20T12:20:39+00:00",
"updated_at": null,
"date_timestamp": 1776687639,
"updated_date_timestamp": null,
"chart_url": "https://www.tradingview.com/chart/GOLD/GoSYPi3O-Gold-Price-Analysis-Key-Resistance-Support-Levels-and-Trend/",
"is_public": true,
"is_visible": true,
"is_video": false,
"is_education": false,
"is_script": false,
"is_picked": false,
"is_hot": true,
"is_platinum_broker_idea": false,
"script_type": null,
"script_access": null,
"script_id_part": null,
"version": null,
"script_package_id": null,
"video_duration": "0",
"video_cam": false,
"video_filename": null,
"comments_count": 13,
"views_count": 0,
"symbol": {
"name": "TVC:GOLD",
"full_name": "TVC:GOLD",
"short_name": "GOLD",
"exchange": "TVC",
"type": "commodity",
"logo": {
"style": "single",
"logoid": "metal/gold"
},
"logo_id": "metal/gold",
"currency_logo_id": "country/US",
"base_currency_logo_id": null,
"logo_urls": [
"https://s3-symbol-logo.tradingview.com/metal/gold.svg"
],
"interval": "1D",
"direction": 1,
"badge": {
"label": "TVC:GOLD",
"url": "/symbols/GOLD/"
}
},
"user": {
"id": 121320485,
"username": "XauusdMarketNavigator",
"badges": [
{
"name": "pro:pro_premium",
"verbose_name": "Premium"
}
],
"picture_url": "https://s3.tradingview.com/userpics/121320485-mWSD.png",
"mid_picture_url": "https://s3.tradingview.com/userpics/121320485-mWSD_mid.png",
"is_pro": true,
"pro_plan": "pro_premium",
"is_broker": false,
"broker_name": null,
"broker_plan": null
},
"image": {
"big": "https://s3.tradingview.com/g/GoSYPi3O_big.png",
"middle": "https://s3.tradingview.com/g/GoSYPi3O_mid.png",
"middle_webp": "https://s3.tradingview.com/g/GoSYPi3O_mid.webp",
"bg_color": "#ffffff"
},
"reputation": null,
"actions": null,
"is_liked": false,
"likes_count": 15
},
{
"id": 21846922,
"image_url": "3F0uopLK",
"name": "Corrective Recovery Testing Supply, Decision Zone Approaching",
"description": "XAUUSD — Corrective Recovery Testing Supply, Decision Zone Approaching \n\nXAUUSD is now trading inside a corrective recovery phase after the sharp March displacement lower. The rebound has been structurally positive from the swing low, but the current leg is compressing directly beneath a defined supply zone, which keeps the market in a decision area rather than in confirmed bullish continuation.\n\n Macro Context \n\nThe current macro mix is not fully supportive for gold in the short term.\n\nRenewed U.S.–Iran tension has pushed oil prices higher, strengthened the U.S. dollar, and lifted Treasury yields. That matters because gold performs best when fear rises while yields and the dollar soften. At the moment, the market is pricing the inflationary side of the geopolitical shock more aggressively than the pure safe-haven side.\n\nThat creates a difficult environment for upside continuation:\n \n higher oil keeps inflation concerns alive\n firmer USD pressures gold mechanically\n higher yields increase gold’s opportunity cost\n geopolitical risk still prevents a clean collapse\n \n\nSo the broader regime is not cleanly bearish, but it is also not a clean bullish expansion regime. It is a headline-driven corrective environment with resistance still active.\n\n Technical Structure Read \n\nFrom a structural standpoint, the chart shows three important features:\n \n a strong recovery from the March capitulation low\n an upward corrective structure with rising support\n price now pressing into a clear supply ceiling around 4873.4\n \n\nThis matters because impulsive bullish continuation usually shows clean acceptance through resistance. Here, price is still reacting under supply, which means the recovery remains vulnerable to rejection unless buyers can force acceptance above the local ceiling.\n\nThe volume profile also reinforces this interpretation. Price is trading around an active high-volume area rather than escaping into a fresh expansion leg. That usually means the market is still negotiating value, not yet repricing decisively higher.\n\n Key Levels \n\n \n Immediate resistance: 4873.4\n Major resistance / expansion target: 4990.5 – 5017.4\n First support / decision demand: 4753.6 – 4775.7\n Second support: 4692.4 – 4710.6\n Third support: 4644.4 – 4670.4\n Deeper imbalance / major support: 4539.7 – 4573.5\n \n\n Liquidity and Order-Flow Logic \n\nThe current area looks like a compression zone under supply, not a clean breakout base yet.\n\nThat means two-way liquidity is likely to be taken before the next directional move expands. If price cannot secure acceptance above 4873.4, the market can rotate lower to rebalance into 4753.6–4775.7 first. If that first support fails, the structure opens room toward the next demand layers at 4692 and 4644.\n\nIn other words, the market is close to a local ceiling while still sitting inside a corrective range. Until resistance is reclaimed with acceptance, upside remains conditional.\n\n Bias Framework \n\n Short-term bias: neutral to slightly bearish while price remains capped below 4873.4.\n\n Medium-term bias: recovery remains valid only if price continues defending higher demand zones and avoids losing the rising corrective structure.\n\n Narrative bias: gold is stabilizing after a major flush, but the recovery is currently corrective rather than impulsive.\n\n Structural confirmation needed for bulls: acceptance above 4873.4, followed by continuation toward 4990.5–5017.4.\n\n Structural confirmation needed for bears: rejection from current supply and a clean loss of 4753.6–4775.7.\n\n Scenario Map \n\n Scenario 1 — Bullish continuation \n\nContinuation requires:\n \n price to hold above the first demand zone\n buyers to secure acceptance above 4873.4\n follow-through candles to confirm that the move is not just another corrective poke into supply\n \n\nIf that happens, the path opens toward:\n \n 4990.5\n 5017.4\n \n\nThis scenario becomes credible only after resistance turns into support. Without that acceptance, upside remains vulnerable to rejection.\n\n Scenario 2 — Corrective rejection and deeper rotation \n\nRejection remains the more tactically relevant scenario while price is still capped below 4873.4.\n\nThis scenario strengthens if:\n \n price fails to hold current recovery structure\n the market loses 4753.6 – 4775.7\n selling pressure expands through the first demand zone instead of being absorbed\n \n\nIf that happens, downside rotation can extend into:\n \n 4692.4 – 4710.6\n 4644.4 – 4670.4\n 4539.7 – 4573.5 in a deeper correction\n \n\n Conclusion \n\nXAUUSD is still in recovery from the March low, but the current leg is trading like a corrective advance into supply rather than a confirmed bullish breakout. The market is now approaching a decision point.\n\nAs long as price remains below 4873.4, the chart remains vulnerable to a downside rotation back into lower demand. A clean acceptance above that resistance would invalidate the immediate pressure and shift focus toward the 4990.5 – 5017.4 zone.\n\nFor now, this chart is best classified as a corrective structure inside a broader decision range, with resistance overhead and support layers below waiting to define the next expansion.",
"created_at": "2026-04-20T14:53:19+00:00",
"updated_at": null,
"date_timestamp": 1776696799,
"updated_date_timestamp": null,
"chart_url": "https://www.tradingview.com/chart/XAUUSD/3F0uopLK-Corrective-Recovery-Testing-Supply-Decision-Zone-Approaching/",
"is_public": true,
"is_visible": true,
"is_video": false,
"is_education": false,
"is_script": false,
"is_picked": false,
"is_hot": true,
"is_platinum_broker_idea": false,
"script_type": null,
"script_access": null,
"script_id_part": null,
"version": null,
"script_package_id": null,
"video_duration": "0",
"video_cam": false,
"video_filename": null,
"comments_count": 12,
"views_count": 0,
"symbol": {
"name": "OANDA:XAUUSD",
"full_name": "OANDA:XAUUSD",
"short_name": "XAUUSD",
"exchange": "OANDA",
"type": "commodity",
"logo": {
"style": "single",
"logoid": "metal/gold"
},
"logo_id": "metal/gold",
"currency_logo_id": "country/US",
"base_currency_logo_id": null,
"logo_urls": [
"https://s3-symbol-logo.tradingview.com/metal/gold.svg"
],
"interval": "240",
"direction": 0,
"badge": {
"label": "OANDA:XAUUSD",
"url": "/symbols/XAUUSD/"
}
},
"user": {
"id": 121398423,
"username": "GForecast",
"badges": [
{
"name": "pro:pro_premium",
"verbose_name": "Premium"
}
],
"picture_url": "https://s3.tradingview.com/userpics/121398423-zTUu.png",
"mid_picture_url": "https://s3.tradingview.com/userpics/121398423-zTUu_mid.png",
"is_pro": true,
"pro_plan": "pro_premium",
"is_broker": false,
"broker_name": null,
"broker_plan": null
},
"image": {
"big": "https://s3.tradingview.com/3/3F0uopLK_big.png",
"middle": "https://s3.tradingview.com/3/3F0uopLK_mid.png",
"middle_webp": "https://s3.tradingview.com/3/3F0uopLK_mid.webp",
"bg_color": "#ffffff"
},
"reputation": null,
"actions": null,
"is_liked": false,
"likes_count": 34
},
{
"id": 21845144,
"image_url": "uiANapYt",
"name": "Bitcoin After the Rally — Is a Bigger Drop Loading?",
"description": "Last week, as investor optimism rose, especially alongside the stock market and the S&P 500 ( FX:SPX500 ), Bitcoin ( BINANCE:BTCUSDT ) didn’t miss out on the rally, reaching around $78,600. However, over the weekend, Bitcoin began to decline. One reason is the possibility of renewed military tensions between Iran and the U.S. in the Middle East, which brought more fear into the crypto market. \n\nAdditionally, since my analysis of the S&P 500 suggests a bearish outlook, Bitcoin may continue its downward trend this week. That said, any positive news—like an Iran-U.S. agreement—could swiftly shift the market, so risk management is key.\n\nCurrently, Bitcoin is moving in the heavy resistance zone($78,600-$71,700) and approaching the Cumulative Short Liquidation Leverage($77,700-$76,000).\n\nFrom a classical technical perspective, it seems Bitcoin could form a head and shoulders pattern, especially if it begins to decline before reaching $76,000. This would confirm the pattern and could lead to further declines in the coming days.\n\nFrom an Elliott Wave perspective, it looks like Bitcoin completed its main wave C, so we may expect downward waves—particularly after breaking support lines.\n\nI expect Bitcoin, after hitting the Cumulative Short Liquidation Leverage($77,700-$76,000), could drop at least to $76,000, break support lines, and potentially fall to around $73,600. If the momentum is strong, we might even see it drop toward $72,230.\n\nFirst Target: $73,600\n\nSecond Target: $72,230\n\nStop Loss(SL): $77,500(Worst)\n\nPoints may shift as the market evolves\n\nCumulative Long Liquidation Leverage: $73,300-$72,800\n\nNew CME gap: $77,545-$75,680\n\nCME gap: $84,560-$79,660\n\nCME gap: $70,055-$69,535\n\nCME Gap: $67,570-$67,170\n\n What’s your view on Bitcoin? Could it push above $80,000, or should we expect another drop? \n\n💡 Please respect each other's opinions and express agreement or disagreement politely.\n\n📌Bitcoin Analysis (BTCUSDT), 4-hour time frame.\n\n🛑 Always set a Stop Loss(SL) for every position you open.\n\n✅ This is just my idea; I’d love to see your thoughts too!\n\n 🔥 If you find it helpful, please BOOST this post and share it with your friends.",
"created_at": "2026-04-20T09:48:03+00:00",
"updated_at": "2026-04-20T14:52:06+00:00",
"date_timestamp": 1776678483,
"updated_date_timestamp": 1776696726,
"chart_url": "https://www.tradingview.com/chart/BTCUSDT/uiANapYt-Bitcoin-After-the-Rally-Is-a-Bigger-Drop-Loading/",
"is_public": true,
"is_visible": true,
"is_video": false,
"is_education": false,
"is_script": false,
"is_picked": false,
"is_hot": true,
"is_platinum_broker_idea": false,
"script_type": null,
"script_access": null,
"script_id_part": null,
"version": null,
"script_package_id": null,
"video_duration": "0",
"video_cam": false,
"video_filename": null,
"comments_count": 16,
"views_count": 0,
"symbol": {
"name": "BINANCE:BTCUSDT",
"full_name": "BINANCE:BTCUSDT",
"short_name": "BTCUSDT",
"exchange": "BINANCE",
"type": "spot",
"logo": {
"style": "single",
"logoid": "crypto/XTVCBTC"
},
"logo_id": null,
"currency_logo_id": "crypto/XTVCUSDT",
"base_currency_logo_id": "crypto/XTVCBTC",
"logo_urls": [
"https://s3-symbol-logo.tradingview.com/crypto/XTVCBTC.svg",
"https://s3-symbol-logo.tradingview.com/crypto/XTVCUSDT.svg"
],
"interval": "240",
"direction": 2,
"badge": {
"label": "BINANCE:BTCUSDT",
"url": "/symbols/BTCUSDT/"
}
},
"user": {
"id": 7826455,
"username": "pejman_zwin",
"badges": [
{
"name": "prof:pro_premium_expert",
"verbose_name": "Ultimate"
}
],
"picture_url": "https://s3.tradingview.com/userpics/7826455-oBvF.png",
"mid_picture_url": "https://s3.tradingview.com/userpics/7826455-oBvF_mid.png",
"is_pro": true,
"pro_plan": "pro_premium_expert",
"is_broker": false,
"broker_name": null,
"broker_plan": null
},
"image": {
"big": "https://s3.tradingview.com/u/uiANapYt_big.png",
"middle": "https://s3.tradingview.com/u/uiANapYt_mid.png",
"middle_webp": "https://s3.tradingview.com/u/uiANapYt_mid.webp",
"bg_color": "#00bcd4"
},
"reputation": null,
"actions": null,
"is_liked": false,
"likes_count": 47
},
{
"id": 21841223,
"image_url": "D1J2dy5a",
"name": "GOLD are losing momentum at higher levels",
"description": "Gold is currently showing signs of rejection after testing the upper boundary of a rising channel where strong selling pressure appeared, forming a sharp bearish reaction. This suggests that buyers are losing momentum at higher levels and smart money may be distributing positions.\n\nTecnically reason behind this movement is not just technical it also connects with the behaviour of the US Dollar Index (DXY). When the dollar strengthens, gold typically moves down due to their inverse relationship a short-term recovery or strength in the dollar could be pressuring gold lower right now. Additionally, traders may be reacting to profit-taking after the recent bullish move, combined with cautious sentiment ahead of upcoming economic data such as inflation reports or interest rate expectations.\n\nResistance ; 4860 / 4889\nSupport ; 4772 / 4700\n\nBut Price still remains overall bullish in the short term, but this recent rejection indicates a potential corrective move. Price is now likely targeting lower liquidity areas , with the first key support around 4,770. If this level fails to hold, the next downside target sits near 4,700, aligning with the lower boundary of the channel and a previous demand zone.\n\nYou may find more details in the chart,\nTrade wisely best of luck buddies.\n\nPs; Support with like and comments for better analysis Thanks for Supporting.",
"created_at": "2026-04-19T17:45:14+00:00",
"updated_at": "2026-04-20T02:08:49+00:00",
"date_timestamp": 1776620714,
"updated_date_timestamp": 1776650929,
"chart_url": "https://www.tradingview.com/chart/XAUUSD/D1J2dy5a-GOLD-are-losing-momentum-at-higher-levels/",
"is_public": true,
"is_visible": true,
"is_video": false,
"is_education": false,
"is_script": false,
"is_picked": false,
"is_hot": true,
"is_platinum_broker_idea": false,
"script_type": null,
"script_access": null,
"script_id_part": null,
"version": null,
"script_package_id": null,
"video_duration": "0",
"video_cam": false,
"video_filename": null,
"comments_count": 21,
"views_count": 0,
"symbol": {
"name": "FOREXCOM:XAUUSD",
"full_name": "FOREXCOM:XAUUSD",
"short_name": "XAUUSD",
"exchange": "FOREXCOM",
"type": "commodity",
"logo": {
"style": "single",
"logoid": "metal/gold"
},
"logo_id": "metal/gold",
"currency_logo_id": "country/US",
"base_currency_logo_id": null,
"logo_urls": [
"https://s3-symbol-logo.tradingview.com/metal/gold.svg"
],
"interval": "60",
"direction": 2,
"badge": {
"label": "FOREXCOM:XAUUSD",
"url": "/symbols/XAUUSD/"
}
},
"user": {
"id": 103908279,
"username": "MR_GOLD_12",
"badges": [
{
"name": "pro:pro_premium",
"verbose_name": "Premium"
}
],
"picture_url": "https://s3.tradingview.com/userpics/103908279-vQAl.png",
"mid_picture_url": "https://s3.tradingview.com/userpics/103908279-vQAl_mid.png",
"is_pro": true,
"pro_plan": "pro_premium",
"is_broker": false,
"broker_name": null,
"broker_plan": null
},
"image": {
"big": "https://s3.tradingview.com/d/D1J2dy5a_big.png",
"middle": "https://s3.tradingview.com/d/D1J2dy5a_mid.png",
"middle_webp": "https://s3.tradingview.com/d/D1J2dy5a_mid.webp",
"bg_color": "#ffffff"
},
"reputation": null,
"actions": null,
"is_liked": false,
"likes_count": 61
},
{
"id": 21844955,
"image_url": "PKOoQi1S",
"name": "S&P500 (US500): Another Gap to Trade Today",
"description": "The ⚠️US500 opened with a gap down. \nMy signal to buy will be a bullish breakout of a minor intraday horizontal resistance.\n\nA close of an hourly candle above 7100 would confirm a violation, and a bullish continuation would then be anticipated, at least to the 7122 level.",
"created_at": "2026-04-20T09:12:24+00:00",
"updated_at": null,
"date_timestamp": 1776676344,
"updated_date_timestamp": null,
"chart_url": "https://www.tradingview.com/chart/SPX500USD/PKOoQi1S-S-P500-US500-Another-Gap-to-Trade-Today/",
"is_public": true,
"is_visible": true,
"is_video": false,
"is_education": false,
"is_script": false,
"is_picked": false,
"is_hot": true,
"is_platinum_broker_idea": false,
"script_type": null,
"script_access": null,
"script_id_part": null,
"version": null,
"script_package_id": null,
"video_duration": "0",
"video_cam": false,
"video_filename": null,
"comments_count": 9,
"views_count": 0,
"symbol": {
"name": "OANDA:SPX500USD",
"full_name": "OANDA:SPX500USD",
"short_name": "SPX500USD",
"exchange": "OANDA",
"type": "index",
"logo": {
"style": "single",
"logoid": "indices/s-and-p-500"
},
"logo_id": "indices/s-and-p-500",
"currency_logo_id": "country/US",
"base_currency_logo_id": null,
"logo_urls": [
"https://s3-symbol-logo.tradingview.com/indices/s-and-p-500.svg"
],
"interval": "60",
"direction": 1,
"badge": {
"label": "OANDA:SPX500USD",
"url": "/symbols/SPX500USD/"
}
},
"user": {
"id": 28711868,
"username": "linofx1",
"badges": [
{
"name": "pro:pro_premium",
"verbose_name": "Premium"
}
],
"picture_url": "https://s3.tradingview.com/userpics/28711868-leyK.png",
"mid_picture_url": "https://s3.tradingview.com/userpics/28711868-leyK_mid.png",
"is_pro": true,
"pro_plan": "pro_premium",
"is_broker": false,
"broker_name": null,
"broker_plan": null
},
"image": {
"big": "https://s3.tradingview.com/p/PKOoQi1S_big.png",
"middle": "https://s3.tradingview.com/p/PKOoQi1S_mid.png",
"middle_webp": "https://s3.tradingview.com/p/PKOoQi1S_mid.webp",
"bg_color": "#ffffff"
},
"reputation": null,
"actions": null,
"is_liked": false,
"likes_count": 13
},
{
"id": 21848006,
"image_url": "iVKxUM6R",
"name": "Gold Testing Mid-Fibonacci Zone Below Resistance",
"description": "Gold is currently trading near the 0.5–0.618 Fibonacci retracement zone, reacting below a key resistance area while maintaining bullish structure above the order block.\n\nIf price holds above the 4,736–4,760 order block support, buyers may regain momentum and push toward the 4,890 weekly high resistance. However, failure to hold the Fibonacci support zone could lead to a deeper pullback into the order block before continuation.\n\nBias:\nBullish above the order block, with upside targets toward weekly highs while support remains intact.",
"created_at": "2026-04-20T17:57:51+00:00",
"updated_at": null,
"date_timestamp": 1776707871,
"updated_date_timestamp": null,
"chart_url": "https://www.tradingview.com/chart/GOLD/iVKxUM6R-Gold-Testing-Mid-Fibonacci-Zone-Below-Resistance/",
"is_public": true,
"is_visible": true,
"is_video": false,
"is_education": false,
"is_script": false,
"is_picked": false,
"is_hot": true,
"is_platinum_broker_idea": false,
"script_type": null,
"script_access": null,
"script_id_part": null,
"version": null,
"script_package_id": null,
"video_duration": "0",
"video_cam": false,
"video_filename": null,
"comments_count": 13,
"views_count": 0,
"symbol": {
"name": "TVC:GOLD",
"full_name": "TVC:GOLD",
"short_name": "GOLD",
"exchange": "TVC",
"type": "commodity",
"logo": {
"style": "single",
"logoid": "metal/gold"
},
"logo_id": "metal/gold",
"currency_logo_id": "country/US",
"base_currency_logo_id": null,
"logo_urls": [
"https://s3-symbol-logo.tradingview.com/metal/gold.svg"
],
"interval": "60",
"direction": 0,
"badge": {
"label": "TVC:GOLD",
"url": "/symbols/GOLD/"
}
},
"user": {
"id": 127120741,
"username": "Gold_pro_traders",
"badges": [
{
"name": "pro:pro_premium",
"verbose_name": "Premium"
}
],
"picture_url": "https://s3.tradingview.com/userpics/127120741-WX6t.png",
"mid_picture_url": "https://s3.tradingview.com/userpics/127120741-WX6t_mid.png",
"is_pro": true,
"pro_plan": "pro_premium",
"is_broker": false,
"broker_name": null,
"broker_plan": null
},
"image": {
"big": "https://s3.tradingview.com/i/iVKxUM6R_big.png",
"middle": "https://s3.tradingview.com/i/iVKxUM6R_mid.png",
"middle_webp": "https://s3.tradingview.com/i/iVKxUM6R_mid.webp",
"bg_color": "#ffffff"
},
"reputation": null,
"actions": null,
"is_liked": false,
"likes_count": 21
},
{
"id": 21840751,
"image_url": "Hu80X8Td",
"name": "THE KOG REPORT",
"description": "THE KOG REPORT:\n\nIn last week’s KOG Report we again shared the power of the red box indicator as well as the projected path and the range we expected price to play in during the week. We anticipated that dip from the resistance level into the defence box completing the lower target, for price to then give us the RIP we wanted for a TAP AND BOUNCE long entry. We faced a couple of days of accumulation and ranging which would have frustrated traders on the intra-day, but, defence held well and we did say, if that level isn’t broken we should complete the move upside into the target region which came on Friday.\n\nOn Friday’s report, we said we were on the flip with resistance at the 4875 level, and as long as we were below that we were expecting price to attempt to close below the 4850 level with the lower region being 4830. Bang on the nose, we closed at 4829 which gave our traders a late session bonus trade.\n\nA fantastic week on gold, all targets completed again, we played well on some of the currencies, Oil gave an amazing swing, but NAS has failed to hit the target so far. Well done to all that followed.\n\nSo, what can we expect in the week ahead?\n\nAfter that RIP on Friday, we would like to see this retest that higher level again and potential surpass it briefly before bears attempt to defend again. We have support below at the 4810-4795 level which if attacked on the open, can give opportunity to long back up to 4835 and upon the breach, the 4865 region. It’s this region we want to see broken upside, and then, potentially a break above the 4900 level. Above 4900, we have the previous swing level 4920-30 and above that 4985 which is a long way up, but possible with a blast of volume. \n\nIt’s that 4920-30 level that we want to keep a close eye on, we need a strong break above that, otherwise, potential and opportunity around that region to get another flip and a strong rejection downside.\n\nLevels are on the chart, defence boxes work well as do the liquidity indicators. We’re going to keep it brief this week and as usual, we’ll update traders with the red box targets and levels during the week.\n\nRED BOXES TARGETS:\n\nBREAK ABOVE 4935 for 4849, 4855, 4861 and 4888 in extension of the move\nBREAK BELOW 4810 for 4799, 4789, 4765 and 4748 in extension of the move\n\nPlease do support us by hitting the like button, leaving a comment, and giving us a follow. We’ve been doing this for a long time now providing traders with in-depth free analysis on Gold, so your likes and comments are very much appreciated.\n\nAs always, trade safe.\n\nKOG\n",
"created_at": "2026-04-19T16:14:39+00:00",
"updated_at": "2026-04-20T09:58:10+00:00",
"date_timestamp": 1776615279,
"updated_date_timestamp": 1776679090,
"chart_url": "https://www.tradingview.com/chart/XAUUSD/Hu80X8Td-THE-KOG-REPORT/",
"is_public": true,
"is_visible": true,
"is_video": false,
"is_education": false,
"is_script": false,
"is_picked": false,
"is_hot": true,
"is_platinum_broker_idea": false,
"script_type": null,
"script_access": null,
"script_id_part": null,
"version": null,
"script_package_id": null,
"video_duration": "0",
"video_cam": false,
"video_filename": null,
"comments_count": 33,
"views_count": 0,
"symbol": {
"name": "FX:XAUUSD",
"full_name": "FX:XAUUSD",
"short_name": "XAUUSD",
"exchange": "FX",
"type": "commodity",
"logo": {
"style": "single",
"logoid": "metal/gold"
},
"logo_id": "metal/gold",
"currency_logo_id": "country/US",
"base_currency_logo_id": null,
"logo_urls": [
"https://s3-symbol-logo.tradingview.com/metal/gold.svg"
],
"interval": "240",
"direction": 0,
"badge": {
"label": "FX:XAUUSD",
"url": "/symbols/XAUUSD/"
}
},
"user": {
"id": 6447080,
"username": "KnightsofGold",
"badges": [
{
"name": "pro:pro_premium",
"verbose_name": "Premium"
}
],
"picture_url": "https://s3.tradingview.com/userpics/6447080-PdaK.png",
"mid_picture_url": "https://s3.tradingview.com/userpics/6447080-PdaK_mid.png",
"is_pro": true,
"pro_plan": "pro_premium",
"is_broker": false,
"broker_name": null,
"broker_plan": null
},
"image": {
"big": "https://s3.tradingview.com/h/Hu80X8Td_big.png",
"middle": "https://s3.tradingview.com/h/Hu80X8Td_mid.png",
"middle_webp": "https://s3.tradingview.com/h/Hu80X8Td_mid.webp",
"bg_color": "#000000"
},
"reputation": null,
"actions": null,
"is_liked": false,
"likes_count": 83
}
],
"msg": "Success"
} Get TradingView editors picks ideas list, supports pagination
Query Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
page | integer | 1 | Page number (default: 1, homepage does not use page-1) | |
lang | string | en | Language code (e.g., en, zh_CN) |
Request Examples
curl --request GET \
--url 'https://tradingview-data1.p.rapidapi.com/api/ideas/editors-picks?page=1&lang=en' \
--header 'x-rapidapi-host: tradingview-data1.p.rapidapi.com' \
--header 'x-rapidapi-key: YOUR_RAPIDAPI_KEY' const params = new URLSearchParams({ page: '1', lang: 'en' });
const response = await fetch(`https://tradingview-data1.p.rapidapi.com/api/ideas/editors-picks?${params}`, {
method: 'GET',
headers: {
'x-rapidapi-host': 'tradingview-data1.p.rapidapi.com',
'x-rapidapi-key': 'YOUR_RAPIDAPI_KEY'
}
});
const data = await response.json();
console.log(data); import requests
url = "https://tradingview-data1.p.rapidapi.com/api/ideas/editors-picks"
params = {"page": 1, "lang": "en"}
headers = {
"x-rapidapi-host": "tradingview-data1.p.rapidapi.com",
"x-rapidapi-key": "YOUR_RAPIDAPI_KEY"
}
response = requests.get(url, params=params, headers=headers)
print(response.json()) Response Examples
{
"success": true,
"data": [
{
"id": 21844919,
"image_url": "B7m1wZ3G",
"name": "Dogecoin (DOGE) Update bullish potential ",
"description": "Dogecoin is currently consolidating within a tight local range, signaling a potential expansion move on the horizon as volatility continues to compress.\n\nPrice action has been accompanied by declining volume, which typically precedes a breakout scenario. As the range tightens, the market is building pressure for a directional move, with volume expected to be the key driver.\n\nKey Highlights:\n- Tight range consolidation signaling expansion\n- Declining volume suggests buildup phase\n- $0.07 support remains key for bullish structure\n\nThe lack of volume during this consolidation phase indicates that neither buyers nor sellers have taken control just yet. However, this type of compression often leads to sharp expansion once participation returns to the market.\n\nFrom a technical standpoint, as long as Dogecoin holds above the $0.07 support level, the structure remains favorable for a bullish breakout. This level acts as a key foundation for buyers, and maintaining support here keeps the upside scenario intact.\n\nA strong influx of bullish volume will likely be the trigger needed to break above the local range highs and initiate the next leg upward. Until then, patience is required as price continues to coil within this tightening structure, preparing for its next move.",
"created_at": "2026-04-20T09:07:25+00:00",
"updated_at": null,
"date_timestamp": 1776676045,
"updated_date_timestamp": null,
"chart_url": "https://www.tradingview.com/chart/DOGEUSDT/B7m1wZ3G-Dogecoin-DOGE-Update-bullish-potential/",
"is_public": true,
"is_visible": true,
"is_video": false,
"is_education": false,
"is_script": false,
"is_picked": true,
"is_hot": true,
"is_platinum_broker_idea": false,
"script_type": null,
"script_access": null,
"script_id_part": null,
"version": null,
"script_package_id": null,
"video_duration": "0",
"video_cam": false,
"video_filename": null,
"comments_count": 27,
"views_count": 0,
"symbol": {
"name": "BINANCE:DOGEUSDT",
"full_name": "BINANCE:DOGEUSDT",
"short_name": "DOGEUSDT",
"exchange": "BINANCE",
"type": "spot",
"logo": {
"style": "single",
"logoid": "crypto/XTVCDOGE"
},
"logo_id": null,
"currency_logo_id": "crypto/XTVCUSDT",
"base_currency_logo_id": "crypto/XTVCDOGE",
"logo_urls": [
"https://s3-symbol-logo.tradingview.com/crypto/XTVCDOGE.svg",
"https://s3-symbol-logo.tradingview.com/crypto/XTVCUSDT.svg"
],
"interval": "1D",
"direction": 1,
"badge": {
"label": "BINANCE:DOGEUSDT",
"url": "/symbols/DOGEUSDT/"
}
},
"user": {
"id": 1648190,
"username": "The_Alchemist_Trader_",
"badges": [
{
"name": "pro:pro_premium",
"verbose_name": "Premium"
}
],
"picture_url": "https://s3.tradingview.com/userpics/1648190-4kyx.png",
"mid_picture_url": "https://s3.tradingview.com/userpics/1648190-4kyx_mid.png",
"is_pro": true,
"pro_plan": "pro_premium",
"is_broker": false,
"broker_name": null,
"broker_plan": null
},
"image": {
"big": "https://s3.tradingview.com/b/B7m1wZ3G_big.png",
"middle": "https://s3.tradingview.com/b/B7m1wZ3G_mid.png",
"middle_webp": "https://s3.tradingview.com/b/B7m1wZ3G_mid.webp",
"bg_color": "#dadada"
},
"reputation": null,
"actions": null,
"is_liked": false,
"likes_count": 17
},
{
"id": 21845323,
"image_url": "EBBTkbEQ",
"name": "Nasdaq Soars 20% in Three Weeks. Boom Just in Time for Earnings?",
"description": "The tech-heavy Nasdaq Composite NASDAQ:IXIC has climbed nearly 20% from its March 30 low, delivering the fastest rebound traders have seen this year. Moves of that size usually arrive alongside strong catalysts, shifting expectations, or a sudden improvement in global mood.\n\nThis time the spark came partly from easing tensions around the US–Iran conflict, which helped calm energy markets and send risk assets to record highs . A relief rally quickly became a momentum rally, and momentum attracted fresh capital.\n\n🏦 Earnings Season Opens with Confidence \n\nAt the same time, Corporate America stepped into earnings season with steady footing. \n\n Major banks reported solid results, helping reinforce expectations for roughly 12% year-over-year earnings growth for the S&P 500. Strong margins continue to support profits even as inflation remains sticky and geopolitical uncertainty lingers.\n\nEarly reports suggest companies still know how to protect profitability in complex environments. That resilience tends to encourage investors to look ahead rather than backward.\n\n📊 Tech Still Carries the Baton \n\nStrip technology out of the earnings picture and projected growth drops closer to 3%, which highlights how much leadership still comes from the big players in the business. \n\nThe recent Nasdaq rebound could be seen as renewed confidence that artificial intelligence spending, cloud infrastructure expansion, and digital services demand continue shaping corporate investment priorities.\n\n✈️ The First Big Names Step Up \n\nThis week brings results from several high-profile companies including Tesla NASDAQ:TSLA and Boeing NYSE:BA , along with Intel NASDAQ:INTC and United Airlines NASDAQ:UAL . Roughly 86% of early reporters have already beaten expectations, which adds momentum to the broader narrative of corporate resilience.\n\nAirlines offer insight into travel demand, chipmakers reflect investment in infrastructure, and industrial giants help reveal global supply chain health. Together they provide a useful early read on economic direction.\n\n💻 The Real Test Arrives Next Week \n\nThe most influential stretch of earnings arrives next week. Microsoft NASDAQ:MSFT , Meta Platforms NASDAQ:META , Alphabet NASDAQ:GOOGL , and Amazon NASDAQ:AMZN report on April 29, followed by Apple NASDAQ:AAPL on April 30.\n\nTogether these companies shape nearly every major market theme at once. Cloud spending, digital advertising, artificial intelligence infrastructure, and consumer demand all intersect during that single reporting window.\n\n🔄 A Rotation Story in Reverse \n\nEarlier this year investors shifted capital away from technology stocks amid concerns about heavy AI infrastructure spending and pressure on software business models. That rotation left valuations at more comfortable levels compared with previous earnings seasons.\n\nLower valuation multiples often create room for upside surprises. When expectations fall, steady results can look impressive.\n\n⚡ Software Still Faces Questions \n\nOne area attracting close attention involves software companies adjusting to the pace of artificial intelligence innovation. Investors continue watching how automation reshapes pricing power, hiring strategies, and enterprise demand. Adobe NASDAQ:ADBE , Salesforce NYSE:CRM , Figma NYSE:FIG , and Progress NASDAQ:PRGS have been hurt badly.\n\nAt the same time infrastructure players continue benefiting from strong investment cycles. Winners here include CoreWeave NASDAQ:CRWV , Nebius NASDAQ:NBIS , and IREN NASDAQ:IREN . The contrast creates a layered picture inside the broader technology sector.\n\n🛍️ Consumers Remain the Wild Card \n\nStrategists also continue monitoring consumer strength as tariffs (yep, still here), higher energy costs, and AI-driven changes in employment reshape spending behavior. Premium brands and services companies often provide early signals about confidence across households.\n\n Off to you : How do you plan to tackle this earnings season? Share your views in the comments!",
"created_at": "2026-04-20T10:22:38+00:00",
"updated_at": null,
"date_timestamp": 1776680558,
"updated_date_timestamp": null,
"chart_url": "https://www.tradingview.com/chart/IXIC/EBBTkbEQ-Nasdaq-Soars-20-in-Three-Weeks-Boom-Just-in-Time-for-Earnings/",
"is_public": true,
"is_visible": true,
"is_video": false,
"is_education": false,
"is_script": false,
"is_picked": true,
"is_hot": true,
"is_platinum_broker_idea": false,
"script_type": null,
"script_access": null,
"script_id_part": null,
"version": null,
"script_package_id": null,
"video_duration": "0",
"video_cam": false,
"video_filename": null,
"comments_count": 13,
"views_count": 0,
"symbol": {
"name": "NASDAQ:IXIC",
"full_name": "NASDAQ:IXIC",
"short_name": "IXIC",
"exchange": "NASDAQ",
"type": "index",
"logo": {
"style": "single",
"logoid": "indices/nasdaq-composite"
},
"logo_id": "indices/nasdaq-composite",
"currency_logo_id": "country/US",
"base_currency_logo_id": null,
"logo_urls": [
"https://s3-symbol-logo.tradingview.com/indices/nasdaq-composite.svg"
],
"interval": "1D",
"direction": 0,
"badge": {
"label": "NASDAQ:IXIC",
"url": "/symbols/NASDAQ-IXIC/"
}
},
"user": {
"id": 6171439,
"username": "TradingView",
"badges": [
{
"name": "employee",
"verbose_name": "TradingView employee"
},
{
"name": "moderator",
"verbose_name": "TradingView moderator"
},
{
"name": "pro:pro_premium_expert",
"verbose_name": "Ultimate"
}
],
"picture_url": "https://s3.tradingview.com/userpics/6171439-mFQX.png",
"mid_picture_url": "https://s3.tradingview.com/userpics/6171439-mFQX_mid.png",
"is_pro": true,
"pro_plan": "pro_premium_expert",
"is_broker": false,
"broker_name": null,
"broker_plan": null
},
"image": {
"big": "https://s3.tradingview.com/e/EBBTkbEQ_big.png",
"middle": "https://s3.tradingview.com/e/EBBTkbEQ_mid.png",
"middle_webp": "https://s3.tradingview.com/e/EBBTkbEQ_mid.webp",
"bg_color": "#ffffff"
},
"reputation": null,
"actions": null,
"is_liked": false,
"likes_count": 114
},
{
"id": 21843137,
"image_url": "CQpkz6PH",
"name": "IREN | Weekly",
"description": "NASDAQ:IREN — Quantum Model Projection \nBullish Outlook | Projected Extension Underway\n IREN has advanced 62% since late March, firmly supported by the Q-Structure λₛ at precise confluence, as projected—reinforcing the Primary degree Extension in Wave ⓹ now underway.\n\n Wave Analysis \nThis impulsive advance in Intermediate Wave (1), characteristically, indicates a broader Extension into Primary Wave ⓹. \nAs illustrated on the chart, a retracement at Intermediate degree is expected to follow as Wave (2) from current levels—aligning with BTC ’s projected corrective phase in Int (2).\n\n🔖 Outlook is derived from insights within the Quantum Models framework. Within this methodology, Q-targets are high-probability projections generated by the convergence of equivalence lines. These Quantum Structures also function as structural anchors, shaping the model’s internal geometry and guiding the evolution of alternative paths as price action unfolds. \n#CryptoStocks #CryptoMining #QuantumModels\n",
"created_at": "2026-04-20T03:04:57+00:00",
"updated_at": null,
"date_timestamp": 1776654297,
"updated_date_timestamp": null,
"chart_url": "https://www.tradingview.com/chart/IREN/CQpkz6PH-IREN-Weekly/",
"is_public": true,
"is_visible": true,
"is_video": false,
"is_education": false,
"is_script": false,
"is_picked": true,
"is_hot": true,
"is_platinum_broker_idea": false,
"script_type": null,
"script_access": null,
"script_id_part": null,
"version": null,
"script_package_id": null,
"video_duration": "0",
"video_cam": false,
"video_filename": null,
"comments_count": 13,
"views_count": 0,
"symbol": {
"name": "NASDAQ:IREN",
"full_name": "NASDAQ:IREN",
"short_name": "IREN",
"exchange": "NASDAQ",
"type": "stock",
"logo": {
"style": "single",
"logoid": "iris-energy"
},
"logo_id": "iris-energy",
"currency_logo_id": "country/US",
"base_currency_logo_id": null,
"logo_urls": [
"https://s3-symbol-logo.tradingview.com/iris-energy.svg"
],
"interval": "1W",
"direction": 0,
"badge": {
"label": "NASDAQ:IREN",
"url": "/symbols/NASDAQ-IREN/"
}
},
"user": {
"id": 3586699,
"username": "ElliottChart",
"badges": [],
"picture_url": "https://s3.tradingview.com/userpics/3586699-k384.png",
"mid_picture_url": "https://s3.tradingview.com/userpics/3586699-k384_mid.png",
"is_pro": false,
"pro_plan": "",
"is_broker": false,
"broker_name": null,
"broker_plan": null
},
"image": {
"big": "https://s3.tradingview.com/c/CQpkz6PH_big.png",
"middle": "https://s3.tradingview.com/c/CQpkz6PH_mid.png",
"middle_webp": "https://s3.tradingview.com/c/CQpkz6PH_mid.webp",
"bg_color": "#ffffff"
},
"reputation": null,
"actions": null,
"is_liked": false,
"likes_count": 72
},
{
"id": 21832120,
"image_url": "6FR5livO",
"name": "ETH - Early Signs of Weakness",
"description": "Today we have seen many headlines declaring the war is over, shooting all markets to the upside. But will this become a \"sell the news\" event?\n\nThe current market structure is lining up for that to be a real possibility. Here are all the early signs that ETH might be forming a top around current levels. Of course this can be negated and change at a moment's notice, but here is what to watch for the time being.\n\nFirst and most importantly, the key level to watch on the 4H timeframe is $2,380 (yellow ray). If ETH closes at or below that level on the 4H, that will be the first major warning sign of a larger drop to follow.\n\nHowever, the most important close will be tomorrow's. If bears are truly in control they will attempt to close tomorrow's candle (April 18) below $2,350. If successful, that would align with a double top forming on the 3D line chart which would be a very powerful signal for bears to regain momentum to the downside.\n\nPrice is also fighting crucial Fibonacci levels at this exact moment. On the macro Fibonacci trend price is right at the 0.786:\n\n\nEven on the micro trend from the recent high to low, price has been battling the 0.618. So far every daily candle has closed below this level (teal arrows). This is the first candle potentially closing above it, but we still have 4 hours until today's close. More importantly, even if price does close above today, if it closes below tomorrow it will simply become a false break and reclaim the bearish trend:\n\n\nNow take a look at the RSI. The 4H RSI is beginning to develop a clear bearish divergence with multiple higher highs in price followed by multiple lower highs on the RSI, showing the uptrend is weakening (red lines). The 4H RSI just got rejected exactly at the 70 level, which typically signals the final rejection before a major momentum drop. The RSI has also been developing a larger series of lower highs since the March 16th high (black trendline).\n\nMultiple other timeframes are also showing rejections right at overbought conditions (red arrows):\n\n\n\n\nToday's and tomorrow's close will be the big decision point for ETH. For now this looks like the top, but if price is able to confirm a break above these levels tomorrow then the move to $2,800 is on the table and I will make a follow up post on that development. For now, watch the RSI closely.\n\n\n\n",
"created_at": "2026-04-17T20:34:11+00:00",
"updated_at": null,
"date_timestamp": 1776458051,
"updated_date_timestamp": null,
"chart_url": "https://www.tradingview.com/chart/ETHUSDT/6FR5livO-ETH-Early-Signs-of-Weakness/",
"is_public": true,
"is_visible": true,
"is_video": false,
"is_education": false,
"is_script": false,
"is_picked": true,
"is_hot": true,
"is_platinum_broker_idea": false,
"script_type": null,
"script_access": null,
"script_id_part": null,
"version": null,
"script_package_id": null,
"video_duration": "0",
"video_cam": false,
"video_filename": null,
"comments_count": 23,
"views_count": 0,
"symbol": {
"name": "BINANCE:ETHUSDT",
"full_name": "BINANCE:ETHUSDT",
"short_name": "ETHUSDT",
"exchange": "BINANCE",
"type": "spot",
"logo": {
"style": "single",
"logoid": "crypto/XTVCETH"
},
"logo_id": null,
"currency_logo_id": "crypto/XTVCUSDT",
"base_currency_logo_id": "crypto/XTVCETH",
"logo_urls": [
"https://s3-symbol-logo.tradingview.com/crypto/XTVCETH.svg",
"https://s3-symbol-logo.tradingview.com/crypto/XTVCUSDT.svg"
],
"interval": "240",
"direction": 0,
"badge": {
"label": "BINANCE:ETHUSDT",
"url": "/symbols/ETHUSDT/"
}
},
"user": {
"id": 38398824,
"username": "VIAQUANT",
"badges": [
{
"name": "pro:pro",
"verbose_name": "Essential"
}
],
"picture_url": "https://s3.tradingview.com/userpics/38398824-1O24.png",
"mid_picture_url": "https://s3.tradingview.com/userpics/38398824-1O24_mid.png",
"is_pro": true,
"pro_plan": "pro",
"is_broker": false,
"broker_name": null,
"broker_plan": null
},
"image": {
"big": "https://s3.tradingview.com/6/6FR5livO_big.png",
"middle": "https://s3.tradingview.com/6/6FR5livO_mid.png",
"middle_webp": "https://s3.tradingview.com/6/6FR5livO_mid.webp",
"bg_color": "#131722"
},
"reputation": null,
"actions": null,
"is_liked": false,
"likes_count": 66
},
{
"id": 21834524,
"image_url": "3O0LZpP7",
"name": "Strongest Levels That Can Signal Reversals",
"description": "⏱️ Reading time: 4–5 minutes \n\nOne of the most important skills in trading is the ability to see price levels on a chart. Price levels help us understand where the market has reacted before, where participants have been particularly active, and where the price may react strongly again in the future.\n\n🔹 WHAT ARE HORIZONTAL LEVELS? \n\nHorizontal levels are areas on a chart where the price has previously:\n Accumulated\n Sharply reversed \n\nMarket attention is concentrated in these areas.\nSimply put, a level is an area where the market has already shown that this price is important to large and active participants. \n\n⚠️ Important: Many novice traders perceive a level as a single, precise line. Most often, a horizontal level is not a specific price, but an area within which the market has already demonstrated a struggle between buyers and sellers. \n\n📌 Therefore, when the price returns to such an area, the trader expects the market to:\n Price stop\n Reverse\n Breakout \n Make a false breakout \n🎯 WHAT DO LEVELS MEAN FOR A TRADER? \n\nPrice levels are more than just chart markings. They are a practical tool for decision-making.\nWith their help, a trader can:\n Identify a potential entry area\n Understand where to place a stop-loss and take-profit\n Decide where to take partial profits/move the trade to breakeven \n\n ✅ In other words, price level provide a guiding light for the trader.\nThey assist in planning a trade that is based on a clear market structure, rather than entering \"out of nowhere.\"\n\n⚡ WHAT ARE THE MOST CONFIDENT LEVELS? \n\nAmong the large number of levels, two types are particularly important to highlight:\n\n1️⃣ Reversal level\n2️⃣ First level of correction\n\nThese zones are often among the strongest in the market, because they are associated not simply with a local price stop, but with a change in the structure of the global movement.\n\n1️⃣ REVERSAL LEVEL \n\nA reversal level is an area where the market completes its previous move and reverses direction (point 1 on the chart below) . This means it's the point where a trend breaks (point 2 on the chart below) .\n\nThis level often appears as a \"V-shaped\" reversal, meaning a sharp rebound from the area followed by a strong momentum in the opposite direction.\n\n📍 Why is this level so important? \n\nBecause this is where one side of the market loses control and the other side regains it. This means it's no longer a simple pause, but a critical point where trend shifts.\nIf the price subsequently returns to this area, the market often reacts to it again (point 3 on the chart above) .\n The reason is simple: this zone has already proven its significance as a reversal point for the entire trend.\n\n💡 This is why a reversal level often becomes one of the most powerful areas for monitoring price reactions.\n\n2️⃣ FIRST LEVEL OF CORRECTION \n\nAfter a market reversal, the price rarely moves rapidly in the direction of a new trend. Typically, a correction happens (point 2 on the chart below) after the first impulse (point 1 on the chart below) . The level at which this first correction ends and the price continues in the new trend direction is called the first level of correction (point 3 on the chart below) . Instead of the first correction of a new trend, accumulation may be observed, which is also suitable for defining the first level of correction .\n\n📌 Essentially, this is the first confirmed point after the reversal, where the market shows: \"Yes, the new direction is indeed holding.\" \n\n📍 Why is this level also important? \n\nBecause it:\n Appears after the change in trend\n Confirms that the reversal was not random\n Shows the first high-quality defense of the new trend \nThat's why the next price approach to this zone can also be expected to trigger a reaction and a potential reversal.\n\n🛠 HOW CAN A TRADER USE THESE LEVELS IN TRADING? \n\n Find areas on the chart where the price previously reversed\n Identify the REVERSAL LEVEL \n After the new movement forms, mark the first correction – this will be the FIRST LEVEL OF CORRECTION \n Track the market's reactions as the price moves closer to these zones. Potential price reversals typically happen near these zones (unless the price has begun to form an accumulation) \n\n⚠️ Important: A level is not a guarantee of a reversal.\nThis is the area where a trader's attention should be especially focused, because it is there that the probability of a market reaction is higher than at a random point on the chart. ",
"created_at": "2026-04-18T11:20:58+00:00",
"updated_at": null,
"date_timestamp": 1776511258,
"updated_date_timestamp": null,
"chart_url": "https://www.tradingview.com/chart/EURUSD/3O0LZpP7-Strongest-Levels-That-Can-Signal-Reversals/",
"is_public": true,
"is_visible": true,
"is_video": false,
"is_education": true,
"is_script": false,
"is_picked": true,
"is_hot": true,
"is_platinum_broker_idea": false,
"script_type": null,
"script_access": null,
"script_id_part": null,
"version": null,
"script_package_id": null,
"video_duration": "0",
"video_cam": false,
"video_filename": null,
"comments_count": 15,
"views_count": 0,
"symbol": {
"name": "TICKMILL:EURUSD",
"full_name": "TICKMILL:EURUSD",
"short_name": "EURUSD",
"exchange": "TICKMILL",
"type": "forex",
"logo": {
"style": "pair",
"logoid": "country/EU",
"logoid2": "country/US"
},
"logo_id": null,
"currency_logo_id": "country/US",
"base_currency_logo_id": "country/EU",
"logo_urls": [
"https://s3-symbol-logo.tradingview.com/country/EU.svg",
"https://s3-symbol-logo.tradingview.com/country/US.svg"
],
"interval": "1D",
"direction": 0,
"badge": {
"label": "TICKMILL:EURUSD",
"url": "/symbols/EURUSD/"
}
},
"user": {
"id": 121430524,
"username": "Trade8Eight",
"badges": [
{
"name": "pro:pro_premium",
"verbose_name": "Premium"
}
],
"picture_url": "https://s3.tradingview.com/userpics/121430524-sdpv.png",
"mid_picture_url": "https://s3.tradingview.com/userpics/121430524-sdpv_mid.png",
"is_pro": true,
"pro_plan": "pro_premium",
"is_broker": false,
"broker_name": null,
"broker_plan": null
},
"image": {
"big": "https://s3.tradingview.com/3/3O0LZpP7_big.png",
"middle": "https://s3.tradingview.com/3/3O0LZpP7_mid.png",
"middle_webp": "https://s3.tradingview.com/3/3O0LZpP7_mid.webp",
"bg_color": "#0f0f0f"
},
"reputation": null,
"actions": null,
"is_liked": false,
"likes_count": 121
},
{
"id": 21836427,
"image_url": "5iN7YaFj",
"name": "Adobe - The 100 RMA, the Gaussian Channel, and the End of an Era",
"description": "\nSYMBOL: NASDAQ:ADBE | DIRECTION: SHORT from $305 | TIMEFRAME: 5-Week\nPublished: April 2026\n\nThe business model worked beautifully for two decades. Lock customers into subscriptions, acquire every serious competitor before they can become a threat, and let the compounding revenue machine do the rest. The stock reflected it, thirty years of uninterrupted respect for the 100-week RMA. Not in 2002. Not in 2008. Not in 2011. Until now.\n\nThree signals have just printed simultaneously on the 5-week, 7-week, and 12-day charts. Each is significant on its own. Together, they form an argument that the correction in Adobe is not over. In fact it may be only beginning.\n\nOn the above 5-week chart price action has printed below the 100 RMA for the first time in over 30 years. Several reasons now exist to consider significantly further downside.\n\nThey include:\n\n 1) The 100 RMA . Broken for the first time in 30 years. The black line on the 5-week chart has been respected without exception since the mid-1990s. It held through the dot-com collapse. It held through the financial crisis. It held through COVID. Every test — and there were many, resulted in a bounce. Price has now confirmed a break below it. On this timeframe, 30-year support levels do not break on noise. They break on structural change.\n\n 2) Adam and Eve double top confirmed. The formation is annotated clearly on the 5-week chart. Adam: the sharp, impulsive first peak. Eve: the broader, rounded distribution top that followed. The neckline of this pattern has broken. The measured move of an Adam and Eve double top on a 5-week timeframe projects significantly below current levels. This is not a speculative read. It is a textbook distribution pattern at the end of a multi-decade bull run. They do not print at the top for no reason.\n\n 3) First ever break of the Gaussian channel on the 7-week chart. The Gaussian channel has contained every correction in Adobe's listed history. \n\n \n\nThat’s 35 years of trading, every bear market, every drawdown. Price has now closed below it for the first time ever. When a channel that has never failed finally gives way, the implication is not a swift recovery to the mean. It is a regime change. The 7-week chart is not broken. It is telling you that the character of this stock has changed.\n\n 4) The business model is structurally challenged. Adobe's growth has rested on two pillars: subscription lock-in and competitive suppression through acquisition. Both are weakening. Subscription fatigue is not a headline; it’s a behavioural shift. Customers are auditing every recurring fee, and the value proposition of creative tools that have evolved marginally over five years is increasingly difficult to defend at premium pricing. The second pillar, buying out threatening competitors before they scale is meeting resistance. Regulators blocked the Figma deal. Competition from AI-native design tools is arriving faster than any acquisition strategy can absorb. The business is not broken today. But the compounding growth story that justified a 30-year premium multiple is under more pressure than the current sell-side consensus acknowledges.\n\n\n 5) RSI and the composite oscillator at multi-decade extremes. The short-term picture is unambiguously oversold, the 12-day Stochastic RSI is at the floor, and the composite oscillator is approaching its lowest reading in years. \n\n \n\nA technical bounce from here is entirely possible and should be expected. It does not, however, change the macro argument. Structural breakdowns routinely produce violent countertrend rallies. Those rallies are not recoveries. They are selling opportunities for those who understand what the higher timeframe is saying.\n\n Targets \n• 1st target: $160. Expect a significant reaction here, it is the 50% level.\n• 2nd target: $50. The lower boundary of the long-term resistance from the year 2000 until the 2014 breakout.\n\n What about the upside?\n A confirmed 5-week close back above the 100 RMA cancels the bearish thesis entirely. The line held for 30 years. If price reclaims it convincingly, that changes the argument. Until that happens, the burden of proof rests with the buyers, not the sellers.\n\n The crowd\n Adobe is still widely regarded as a great business. Analysts are still defending their price targets. The institutional consensus has not shifted. That is not a source of comfort, it is the setup. The most damaging corrections in technology stocks always unfold while the consensus is still constructive. The chart is already three signals deep into a structural breakdown. The narrative will catch up eventually.\n\nIs it possible price finds support here and recovers? Sure. Is it probable given what the 5-week and 7-week charts are showing? Look left. Look at the 100 RMA. Look at the Gaussian channel. Is this time different?\n\nWw\n\nType: Speculative short / educational | Timeframe: 12–24 months\n\n\n\n\n\n\n===================================================\n Disclaimer : This idea is for educational and informational purposes only. It is not financial advice. Investing in equities involves substantial risk of loss. Always do your own research and consult a qualified financial adviser before making any investment decisions. Past performance is not indicative of future results.\n",
"created_at": "2026-04-18T19:19:30+00:00",
"updated_at": null,
"date_timestamp": 1776539970,
"updated_date_timestamp": null,
"chart_url": "https://www.tradingview.com/chart/ADBE/5iN7YaFj-Adobe-The-100-RMA-the-Gaussian-Channel-and-the-End-of-an-Era/",
"is_public": true,
"is_visible": true,
"is_video": false,
"is_education": false,
"is_script": false,
"is_picked": true,
"is_hot": true,
"is_platinum_broker_idea": false,
"script_type": null,
"script_access": null,
"script_id_part": null,
"version": null,
"script_package_id": null,
"video_duration": "0",
"video_cam": false,
"video_filename": null,
"comments_count": 23,
"views_count": 0,
"symbol": {
"name": "NASDAQ:ADBE",
"full_name": "NASDAQ:ADBE",
"short_name": "ADBE",
"exchange": "NASDAQ",
"type": "stock",
"logo": {
"style": "single",
"logoid": "adobe"
},
"logo_id": "adobe",
"currency_logo_id": "country/US",
"base_currency_logo_id": null,
"logo_urls": [
"https://s3-symbol-logo.tradingview.com/adobe.svg"
],
"interval": "5W",
"direction": 2,
"badge": {
"label": "NASDAQ:ADBE",
"url": "/symbols/NASDAQ-ADBE/"
}
},
"user": {
"id": 1133505,
"username": "without_worries",
"badges": [
{
"name": "pro:pro_premium",
"verbose_name": "Premium"
}
],
"picture_url": "https://s3.tradingview.com/userpics/1133505-HOVH.png",
"mid_picture_url": "https://s3.tradingview.com/userpics/1133505-HOVH_mid.png",
"is_pro": true,
"pro_plan": "pro_premium",
"is_broker": false,
"broker_name": null,
"broker_plan": null
},
"image": {
"big": "https://s3.tradingview.com/5/5iN7YaFj_big.png",
"middle": "https://s3.tradingview.com/5/5iN7YaFj_mid.png",
"middle_webp": "https://s3.tradingview.com/5/5iN7YaFj_mid.webp",
"bg_color": "#ffffff"
},
"reputation": null,
"actions": null,
"is_liked": false,
"likes_count": 80
},
{
"id": 21831484,
"image_url": "nNW6Xtf9",
"name": "Ethereum reclaiming structure… but bigger tests ahead",
"description": "Break back above $2,386 — now key support \nPrice has reclaimed prior resistance and is attempting to hold it as support, a constructive shift in short-term structure. Holding here keeps the higher low sequence intact\n\n Momentum building, not overextended yet \nRSI continues to climb without being overbought, suggesting there’s still room for continuation if buyers maintain control\n\n EMAs still bearish, but improving \nThe 100/50 remain bearishly crossed, though both are flattening and beginning to slope upward — early signs of a potential shift in trend\n\n Heavy resistance cluster above ($2,623–$2,650) \nThis zone, combined with the 200-day EMA, is the real test. Even with strength here, price is moving into a dense supply area that won’t break easily\n\n In Summary \nEthereum has reclaimed the $2,386 level and is attempting to build support above it, signalling improving short-term structure. Momentum is rising without being overstretched, which supports the case for further upside. However, the broader trend remains fragile with key moving averages still bearishly aligned. The real challenge sits above in the $2,600+ region, where strong resistance and the 200-day EMA converge. Holding current levels keeps momentum intact, but rejection from higher zones remains a clear risk.",
"created_at": "2026-04-17T17:35:24+00:00",
"updated_at": null,
"date_timestamp": 1776447324,
"updated_date_timestamp": null,
"chart_url": "https://www.tradingview.com/chart/ETHUSDT/nNW6Xtf9-Ethereum-reclaiming-structure-but-bigger-tests-ahead/",
"is_public": true,
"is_visible": true,
"is_video": false,
"is_education": false,
"is_script": false,
"is_picked": true,
"is_hot": true,
"is_platinum_broker_idea": false,
"script_type": null,
"script_access": null,
"script_id_part": null,
"version": null,
"script_package_id": null,
"video_duration": "0",
"video_cam": false,
"video_filename": null,
"comments_count": 13,
"views_count": 0,
"symbol": {
"name": "BINANCE:ETHUSDT",
"full_name": "BINANCE:ETHUSDT",
"short_name": "ETHUSDT",
"exchange": "BINANCE",
"type": "spot",
"logo": {
"style": "single",
"logoid": "crypto/XTVCETH"
},
"logo_id": null,
"currency_logo_id": "crypto/XTVCUSDT",
"base_currency_logo_id": "crypto/XTVCETH",
"logo_urls": [
"https://s3-symbol-logo.tradingview.com/crypto/XTVCETH.svg",
"https://s3-symbol-logo.tradingview.com/crypto/XTVCUSDT.svg"
],
"interval": "1D",
"direction": 0,
"badge": {
"label": "BINANCE:ETHUSDT",
"url": "/symbols/ETHUSDT/"
}
},
"user": {
"id": 830944,
"username": "DukesMarketAnalysis",
"badges": [
{
"name": "pro:pro_premium",
"verbose_name": "Premium"
}
],
"picture_url": "https://s3.tradingview.com/userpics/830944-c9qN.png",
"mid_picture_url": "https://s3.tradingview.com/userpics/830944-c9qN_mid.png",
"is_pro": true,
"pro_plan": "pro_premium",
"is_broker": false,
"broker_name": null,
"broker_plan": null
},
"image": {
"big": "https://s3.tradingview.com/n/nNW6Xtf9_big.png",
"middle": "https://s3.tradingview.com/n/nNW6Xtf9_mid.png",
"middle_webp": "https://s3.tradingview.com/n/nNW6Xtf9_mid.webp",
"bg_color": "#ffffff"
},
"reputation": null,
"actions": null,
"is_liked": false,
"likes_count": 23
},
{
"id": 21828579,
"image_url": "wBLB3Sj1",
"name": "The $10 Vision",
"description": "The bullish case for SUI long-term is essentially a bet on it becoming the \"operating system\" for the next generation of the internet. While Solana was the breakout star of the previous cycle, the 2026-2027 bull cycle thesis for SUI is built on three pillars: Technical Superiority, Institutional Infrastructure, and Economic Velocity.\n\n The \"Object-Centric\" Revolution \n\nMost blockchains (like Ethereum or Solana) use an \"account-based\" model—like a giant spreadsheet where everyone waits in line to update their balance. \n• Sui is different: It treats everything (tokens, NFTs, game items) as independent objects. \n• The Result: If you send a token to a friend, it doesn't have to wait for a complex DeFi trade happening on the other side of the network. This allows for Parallel Execution. \n• Why it hits $10: This architecture is the only one that truly scales for mass-market apps. In early 2026, Sui is already hitting 160M+ daily transactions, dwarfing most other L1s because it doesn't \"clog up\" when things get busy.\n\n The Institutional \"Glow-Up\" \nAs of April 2026, Sui has transitioned from a \"VC-backed experiment\" to a \"Financial Grade\" network.\n• Staking ETFs: We now have three U.S.-listed SUI staking ETFs. This provides a massive, permanent bid from institutional 401ks and pension funds that can't buy tokens on Binance but can buy an ETF. \n• The Stripe Connection: A native stablecoin backed by Stripe’s infrastructure recently launched on Sui. This bridges the gap between traditional \"Web2\" money and \"Web3\" rails, making SUI the go-to for programmable payments. \n• Privacy Features: Mysten Labs integrated protocol-level privacy. This allows big banks to use the chain while keeping their trade secrets hidden—a requirement for the \"Real World Asset\" (RWA) boom. \n\n The AI & Gaming Narrative \nThe \"Agentic Web\" is the big buzzword of 2026.\n• AI Agents: Because Sui handles \"objects\" so well, it is the perfect environment for autonomous AI agents to own and trade assets without human intervention. \n• Gaming: Sui's sub-second finality (faster than a blink) makes it feel like a regular cloud-based game, not a \"clunky blockchain game.\" As 2026 AAA titles launch on-chain, SUI becomes the \"gas\" for millions of players.\n\nAll of this to say one thing: Bullish",
"created_at": "2026-04-17T08:59:01+00:00",
"updated_at": null,
"date_timestamp": 1776416341,
"updated_date_timestamp": null,
"chart_url": "https://www.tradingview.com/chart/SUIUSDT/wBLB3Sj1-The-10-Vision/",
"is_public": true,
"is_visible": true,
"is_video": false,
"is_education": false,
"is_script": false,
"is_picked": true,
"is_hot": true,
"is_platinum_broker_idea": false,
"script_type": null,
"script_access": null,
"script_id_part": null,
"version": null,
"script_package_id": null,
"video_duration": "0",
"video_cam": false,
"video_filename": null,
"comments_count": 24,
"views_count": 0,
"symbol": {
"name": "BINANCE:SUIUSDT",
"full_name": "BINANCE:SUIUSDT",
"short_name": "SUIUSDT",
"exchange": "BINANCE",
"type": "spot",
"logo": {
"style": "single",
"logoid": "crypto/XTVCSUI"
},
"logo_id": null,
"currency_logo_id": "crypto/XTVCUSDT",
"base_currency_logo_id": "crypto/XTVCSUI",
"logo_urls": [
"https://s3-symbol-logo.tradingview.com/crypto/XTVCSUI.svg",
"https://s3-symbol-logo.tradingview.com/crypto/XTVCUSDT.svg"
],
"interval": "1W",
"direction": 1,
"badge": {
"label": "BINANCE:SUIUSDT",
"url": "/symbols/SUIUSDT/"
}
},
"user": {
"id": 1601325,
"username": "SmallBagsHereandthere",
"badges": [
{
"name": "pro:pro",
"verbose_name": "Essential"
}
],
"picture_url": "https://s3.tradingview.com/userpics/1601325-7KDT.png",
"mid_picture_url": "https://s3.tradingview.com/userpics/1601325-7KDT_mid.png",
"is_pro": true,
"pro_plan": "pro",
"is_broker": false,
"broker_name": null,
"broker_plan": null
},
"image": {
"big": "https://s3.tradingview.com/w/wBLB3Sj1_big.png",
"middle": "https://s3.tradingview.com/w/wBLB3Sj1_mid.png",
"middle_webp": "https://s3.tradingview.com/w/wBLB3Sj1_mid.webp",
"bg_color": "#0f0f0f"
},
"reputation": null,
"actions": null,
"is_liked": false,
"likes_count": 95
},
{
"id": 21829936,
"image_url": "0FG5VrFh",
"name": "Why Trends Look Obvious Only in Hindsight",
"description": "Hello, traders! 😎\n\nYou’ve seen it a hundred times. Price moves, trend plays out, and suddenly the chart looks clean — almost too clean. Entries feel obvious, structure makes sense, and it seems like the market practically told you what was coming. That’s exactly where hindsight bias trading creeps in.\n\n🌫️ It Never Feels That Clear in Real Time \n\nThe idea that trends are “easy to spot” mostly exists after the move is done. In live conditions, trading decision making is messy. Price action is noisy, signals conflict, and conviction is never 100%. What later looks like a clean breakout often felt like a coin flip in the moment. That disconnect is pure market hindsight bias — your brain smoothing out uncertainty after the fact.\n\n🧠 The Brain Edits the Story \n\nA big part of trading psychology hindsight is how memory works. You don’t remember the hesitation, the doubt, or the invalidations along the way. You remember the outcome. This is a classic case of cognitive bias trading, where the brain compresses a complex sequence of events into a simple narrative: “trend was obvious, I just missed it.” In reality, the psychology of markets is anything but obvious.\n\n⚡ Bitcoin Trends Look Cleaner Than They Were \n\nTake any bitcoin trend analysis. Zoom out, and it’s a textbook move. Higher highs, higher lows, strong continuation. But zoom into the actual execution phase, and it’s a different story. Pullbacks look like reversals, sentiment shifts fast, and liquidity grabs shake confidence. This is where crypto market psychology and real market behavior analysis come into play — not theory, but reaction.\n\n🎭 Perception vs Reality \n\nMost issues in trading mistakes psychology come from this gap. In real time, your market perception trading is influenced by emociones, uncertainty, and incomplete information. Your read on price action psychology evolves with every candle. But once the move is complete, your brain reframes it into a clean, logical sequence. That’s decision bias trading in action.\n\n🏁 Final Take \n\nThe reason why trends look obvious is simple: your brain prefers clarity over chaos. But markets don’t operate in hindsight — they operate in uncertainty. Understanding crypto trader psychology means accepting that clean charts are a luxury you only get after the trade is over.\n\n This content is for informational purposes only and should not be considered financial advice.",
"created_at": "2026-04-17T13:06:16+00:00",
"updated_at": null,
"date_timestamp": 1776431176,
"updated_date_timestamp": null,
"chart_url": "https://www.tradingview.com/chart/BTCUSDT/0FG5VrFh-Why-Trends-Look-Obvious-Only-in-Hindsight/",
"is_public": true,
"is_visible": true,
"is_video": false,
"is_education": true,
"is_script": false,
"is_picked": true,
"is_hot": true,
"is_platinum_broker_idea": true,
"script_type": null,
"script_access": null,
"script_id_part": null,
"version": null,
"script_package_id": null,
"video_duration": "0",
"video_cam": false,
"video_filename": null,
"comments_count": 12,
"views_count": 0,
"symbol": {
"name": "WHITEBIT:BTCUSDT",
"full_name": "WHITEBIT:BTCUSDT",
"short_name": "BTCUSDT",
"exchange": "WHITEBIT",
"type": "spot",
"logo": {
"style": "single",
"logoid": "crypto/XTVCBTC"
},
"logo_id": null,
"currency_logo_id": "crypto/XTVCUSDT",
"base_currency_logo_id": "crypto/XTVCBTC",
"logo_urls": [
"https://s3-symbol-logo.tradingview.com/crypto/XTVCBTC.svg",
"https://s3-symbol-logo.tradingview.com/crypto/XTVCUSDT.svg"
],
"interval": "240",
"direction": 0,
"badge": {
"label": "WHITEBIT:BTCUSDT",
"url": "/symbols/BTCUSDT/"
}
},
"user": {
"id": 62367108,
"username": "WhiteBIT",
"badges": [
{
"name": "broker:exchange",
"verbose_name": "Exchange"
},
{
"name": "broker:platinum",
"verbose_name": "Platinum partner"
}
],
"picture_url": "https://s3.tradingview.com/userpics/62367108-pGUU.png",
"mid_picture_url": "https://s3.tradingview.com/userpics/62367108-pGUU_mid.png",
"is_pro": true,
"pro_plan": "pro_premium_expert",
"is_broker": true,
"broker_name": "WhiteBIT",
"broker_plan": "platinum"
},
"image": {
"big": "https://s3.tradingview.com/0/0FG5VrFh_big.png",
"middle": "https://s3.tradingview.com/0/0FG5VrFh_mid.png",
"middle_webp": "https://s3.tradingview.com/0/0FG5VrFh_mid.webp",
"bg_color": "#ffffff"
},
"reputation": null,
"actions": null,
"is_liked": false,
"likes_count": 89
},
{
"id": 21827480,
"image_url": "yyJbwTpk",
"name": "Intuitive Surgicals: A solid company to consider buying",
"description": "Hello,\n\nIntuitive Surgicals, Inc. engages in the provision of robotic-assisted surgical solutions and invasive care through a comprehensive ecosystem of products and services. Intuitive develops, manufactures and markets the da Vinci surgical system. The company strives to make surgery more effective, less invasive and easier on surgeons, patients and their families. Da Vinci robotic surgical systems are systems designed to increasing the scale & efficiency of minimal invasive surgery.\n\nIntuitive Surgical has demonstrated remarkable growth over the past five years, with significant increases in total revenue, net income and earnings per share. This underscores the company's ability to deliver consistent shareholder value. We see a situation where the total addressable market for this company will continue to grow over the medium and long term. In the Q4 earnings release, Intuitive delivered excellent results with strong performance in procedure growth and both domestic and outside-the-US system placements and utilization rates. The strength of general surgery, particularly in the U.S. and global markets, continues to reinforce the rising adoption of robotic-assisted surgery, a trend we expect to persist. We expect general surgeons to continue preferring robotic assisted surgery hence continue to see a market for intuitive surgical.\n\nSurgical practice globally has undergone significant advancements with the advent of robotic systems. In Africa for example, a similar trend is emerging with the introduction of robots into various surgical specialties in certain countries. We noted from Intuitive surgical website that you can now purchase their machinery via their south African business agent with data confirming that the equipment are being used in a number of countries in Africa.\nWhile growth in certain procedures—particularly in the U.S. market—may begin to slow as penetration rates approach their peak, we view this risk as limited. The company still has significant untapped potential in international markets, which should sustain attractive growth for some time. Moreover, even in the event of rising competition, we believe high switching costs will protect its market position. Clients would need a compelling reason to shift to alternative systems, given the expense and effort of retraining surgeons and adapting workflows.\n\n The recent pullback presents a more attractive entry opportunity, with our medium-term price target of $720 reflecting the company’s solid fundamentals and strong market potential. We maintain a strong buy recommendation at current levels. Attention now turns to the upcoming Q1 2026 earnings release on April 21, 2025 , where historical data shows that Intuitive Surgical Inc. has consistently exceeded earnings expectations in each of the past ten quarters. Analysts currently project earnings per share of USD 2.12 for this quarter. From a technical standpoint, the recent correction further supports our bullish outlook, reinforcing our Buy bias both fundamentally and technically.\n \n Opportunities \n \n Intuitive launched its next-generation platform, which should give significant momentum to system placements in the next few years.\n Intuitive Surgical is enjoying tremendous success in general surgery, which is now its highest-volume surgical area. The opportunity is particularly attractive internationally.\n Intuitive's foray into bronchoscopy shows the company isn't resting on its laurels and is willing to look in other areas in need of robotic assistance.\n \n\n Risks to consider \n \n We may be seeing the emergence of some competition, particularly for lower-cost procedures.\n Intuitive's margins have been declining as the company has been investing in its Ion platform and next generation Da Vinci system. Da Vinci robotic surgical systems are systems designed to increasing the scale & efficiency of minimal invasive surgery\n \n\nYou can find more details about the financials of the company via links www.tradingview.com\n",
"created_at": "2026-04-17T05:33:45+00:00",
"updated_at": null,
"date_timestamp": 1776404025,
"updated_date_timestamp": null,
"chart_url": "https://www.tradingview.com/chart/ISRG/yyJbwTpk-Intuitive-Surgicals-A-solid-company-to-consider-buying/",
"is_public": true,
"is_visible": true,
"is_video": false,
"is_education": false,
"is_script": false,
"is_picked": true,
"is_hot": true,
"is_platinum_broker_idea": false,
"script_type": null,
"script_access": null,
"script_id_part": null,
"version": null,
"script_package_id": null,
"video_duration": "0",
"video_cam": false,
"video_filename": null,
"comments_count": 13,
"views_count": 0,
"symbol": {
"name": "NASDAQ:ISRG",
"full_name": "NASDAQ:ISRG",
"short_name": "ISRG",
"exchange": "NASDAQ",
"type": "stock",
"logo": {
"style": "single",
"logoid": "intuitive-surgical"
},
"logo_id": "intuitive-surgical",
"currency_logo_id": "country/US",
"base_currency_logo_id": null,
"logo_urls": [
"https://s3-symbol-logo.tradingview.com/intuitive-surgical.svg"
],
"interval": "4D",
"direction": 0,
"badge": {
"label": "NASDAQ:ISRG",
"url": "/symbols/NASDAQ-ISRG/"
}
},
"user": {
"id": 533549,
"username": "thesharkke",
"badges": [
{
"name": "moderator",
"verbose_name": "TradingView moderator"
},
{
"name": "pro:pro_premium_expert",
"verbose_name": "Ultimate"
}
],
"picture_url": "https://s3.tradingview.com/userpics/533549-U7Ii.png",
"mid_picture_url": "https://s3.tradingview.com/userpics/533549-U7Ii_mid.png",
"is_pro": true,
"pro_plan": "pro_premium_expert",
"is_broker": false,
"broker_name": null,
"broker_plan": null
},
"image": {
"big": "https://s3.tradingview.com/y/yyJbwTpk_big.png",
"middle": "https://s3.tradingview.com/y/yyJbwTpk_mid.png",
"middle_webp": "https://s3.tradingview.com/y/yyJbwTpk_mid.webp",
"bg_color": "#000000"
},
"reputation": null,
"actions": null,
"is_liked": false,
"likes_count": 113
},
{
"id": 21816563,
"image_url": "K0wMZLaX",
"name": "CTRA - Healthy Dip Before Next Rally",
"description": "CTRA is in a clear uptrend, but after a strong rally, it’s now taking a healthy pullback. Price got rejected near $37 and is slowly moving down toward a strong support zone around $29 , where buyers previously stepped in. Wave 4 can become a crucial demand zone for the current prices. Before the next big move, it may show a small bounce and then dip again into this zone to complete the correction.\n\nThe stock has already pulled back about 50% of its previous move, and now it’s approaching a strong support area. We’re watching for a possible reversal near the 61.8% Fibonacci level, which lines up with the previous support zone (earlier pullback area) and a known demand zone where buyers have stepped in before. Target for this setup is 33.45 - 34.64 - 36.10+ . \n\nEntry is only possible after the price action confirmation or sub-wave formation.\n\nWe will update with further information soon.\n By @BrightRally_Research\n\n",
"created_at": "2026-04-15T14:07:05+00:00",
"updated_at": null,
"date_timestamp": 1776262025,
"updated_date_timestamp": null,
"chart_url": "https://www.tradingview.com/chart/CTRA/K0wMZLaX-CTRA-Healthy-Dip-Before-Next-Rally/",
"is_public": true,
"is_visible": true,
"is_video": false,
"is_education": false,
"is_script": false,
"is_picked": true,
"is_hot": true,
"is_platinum_broker_idea": false,
"script_type": null,
"script_access": null,
"script_id_part": null,
"version": null,
"script_package_id": null,
"video_duration": "0",
"video_cam": false,
"video_filename": null,
"comments_count": 6,
"views_count": 0,
"symbol": {
"name": "NYSE:CTRA",
"full_name": "NYSE:CTRA",
"short_name": "CTRA",
"exchange": "NYSE",
"type": "stock",
"logo": {
"style": "single",
"logoid": "alpha-metallurgical-resources"
},
"logo_id": "alpha-metallurgical-resources",
"currency_logo_id": "country/US",
"base_currency_logo_id": null,
"logo_urls": [
"https://s3-symbol-logo.tradingview.com/alpha-metallurgical-resources.svg"
],
"interval": "1D",
"direction": 0,
"badge": {
"label": "NYSE:CTRA",
"url": "/symbols/NYSE-CTRA/"
}
},
"user": {
"id": 12716722,
"username": "BrightRally_Research",
"badges": [
{
"name": "pro:pro_premium_trial",
"verbose_name": "Premium Trial"
}
],
"picture_url": "https://s3.tradingview.com/userpics/12716722-HrUj.png",
"mid_picture_url": "https://s3.tradingview.com/userpics/12716722-HrUj_mid.png",
"is_pro": true,
"pro_plan": "pro_premium_trial",
"is_broker": false,
"broker_name": null,
"broker_plan": null
},
"image": {
"big": "https://s3.tradingview.com/k/K0wMZLaX_big.png",
"middle": "https://s3.tradingview.com/k/K0wMZLaX_mid.png",
"middle_webp": "https://s3.tradingview.com/k/K0wMZLaX_mid.webp",
"bg_color": "#ffffff"
},
"reputation": null,
"actions": null,
"is_liked": false,
"likes_count": 56
},
{
"id": 21827010,
"image_url": "ArkGgeLo",
"name": "Nvidia (NVDA) Rally Resumes – Path Toward All‑Time Highs",
"description": "From its all‑time high on October 29, 2025 at $212.19, Nvidia (NVDA) began a pullback to correct the cycle that started from the April 2025 low. The decline reached $164.27, where the stock completed the correction and turned higher with improving momentum. The advance from the March 30, 2026 low is developing as a five‑wave impulsive structure, and this supports the view that NVDA is preparing for a new record high. Wave 1 ended at $177.37. Wave 2 then pulled back and finished at $170.23, as shown on the 30‑minute chart.\n\nThe stock has since progressed into wave 3, which subdivides into another five‑wave sequence in a lower degree. From the wave 2 low, wave ((i)) ended at $190. The pullback in wave ((ii)) concluded at $185.14. Wave ((iii)) extended higher and reached $200.4, confirming the strength of the current cycle. NVDA is expected to produce additional legs higher to complete the full five‑wave advance from the March 30, 2026 low. Once that structure finishes, the stock should enter a corrective phase to consolidate the move before the broader trend resumes.\n\nIn the near term, the bullish outlook remains valid as long as the pivot at $170.23 stays intact. Dips should continue to attract buyers in either a three‑swing or seven‑swing corrective pattern. This supports the case for further upside as the larger impulsive sequence continues to unfold.",
"created_at": "2026-04-17T03:47:20+00:00",
"updated_at": null,
"date_timestamp": 1776397640,
"updated_date_timestamp": null,
"chart_url": "https://www.tradingview.com/chart/NVDA/ArkGgeLo-Nvidia-NVDA-Rally-Resumes-Path-Toward-All-Time-Highs/",
"is_public": true,
"is_visible": true,
"is_video": false,
"is_education": false,
"is_script": false,
"is_picked": true,
"is_hot": true,
"is_platinum_broker_idea": false,
"script_type": null,
"script_access": null,
"script_id_part": null,
"version": null,
"script_package_id": null,
"video_duration": "0",
"video_cam": false,
"video_filename": null,
"comments_count": 1,
"views_count": 0,
"symbol": {
"name": "NASDAQ:NVDA",
"full_name": "NASDAQ:NVDA",
"short_name": "NVDA",
"exchange": "NASDAQ",
"type": "stock",
"logo": {
"style": "single",
"logoid": "nvidia"
},
"logo_id": "nvidia",
"currency_logo_id": "country/US",
"base_currency_logo_id": null,
"logo_urls": [
"https://s3-symbol-logo.tradingview.com/nvidia.svg"
],
"interval": "30",
"direction": 0,
"badge": {
"label": "NASDAQ:NVDA",
"url": "/symbols/NASDAQ-NVDA/"
}
},
"user": {
"id": 1023357,
"username": "Elliottwave-Forecast",
"badges": [
{
"name": "pro:pro_premium",
"verbose_name": "Premium"
}
],
"picture_url": "https://s3.tradingview.com/userpics/1023357-ntHO.png",
"mid_picture_url": "https://s3.tradingview.com/userpics/1023357-ntHO_mid.png",
"is_pro": true,
"pro_plan": "pro_premium",
"is_broker": false,
"broker_name": null,
"broker_plan": null
},
"image": {
"big": "https://s3.tradingview.com/a/ArkGgeLo_big.png",
"middle": "https://s3.tradingview.com/a/ArkGgeLo_mid.png",
"middle_webp": "https://s3.tradingview.com/a/ArkGgeLo_mid.webp",
"bg_color": "#ffffff"
},
"reputation": null,
"actions": null,
"is_liked": false,
"likes_count": 43
},
{
"id": 21826847,
"image_url": "OJrkdy6P",
"name": "How To: Bearish Breakaway w/ Tools, Indicators & Strategy",
"description": "Hey everyone, thanks for joining! Below is the Quick Notes for the audio:\n\n What is a Bearish Breakaway? \n\nA Rare Reversal Candlestick Pattern that consists of 5 Candles, broken up into 3 parts:\n\nPt 1) Large Bullish Candle\n\nPt 2) 3 Small Bullish Candles\n\nPt 3) Large Bearish Candle (Confirmation)\n\n\n What indicators can be used to Confirm? \n\n1) Volume - Dwindles after the first Large Bullish Candle then Increases after the Large Bearish Candle\n\n2) RSI - The reversal is part of a Bullish Divergence then drops below 50 after the pattern is formed\n\n3) MACD - Crossover event with Signal above the MACD moving down towards 0 with Bearish bars developing on the Histogram\n\n\n Strategy needed to trade the pattern? \n\nEntry - On the Open of the candle after the 5th of Confirmation Candle\n\nSL - Above the High of the Pattern\n\nTP - Next areas of Support ( Conservative & Aggressive options )",
"created_at": "2026-04-17T03:02:53+00:00",
"updated_at": null,
"date_timestamp": 1776394973,
"updated_date_timestamp": null,
"chart_url": "https://www.tradingview.com/chart/EURCAD/OJrkdy6P-How-To-Bearish-Breakaway-w-Tools-Indicators-Strategy/",
"is_public": true,
"is_visible": true,
"is_video": true,
"is_education": true,
"is_script": false,
"is_picked": true,
"is_hot": true,
"is_platinum_broker_idea": false,
"script_type": null,
"script_access": null,
"script_id_part": null,
"version": null,
"script_package_id": null,
"video_duration": "656",
"video_cam": false,
"video_filename": "https://video-ideas.tradingview.com/1/19819193-XLhqrP166Gp0Z423.mp4",
"comments_count": 4,
"views_count": 0,
"symbol": {
"name": "FX:EURCAD",
"full_name": "FX:EURCAD",
"short_name": "EURCAD",
"exchange": "FX",
"type": "forex",
"logo": {
"style": "pair",
"logoid": "country/EU",
"logoid2": "country/CA"
},
"logo_id": null,
"currency_logo_id": "country/CA",
"base_currency_logo_id": "country/EU",
"logo_urls": [
"https://s3-symbol-logo.tradingview.com/country/EU.svg",
"https://s3-symbol-logo.tradingview.com/country/CA.svg"
],
"interval": "240",
"direction": 0,
"badge": {
"label": "FX:EURCAD",
"url": "/symbols/EURCAD/"
}
},
"user": {
"id": 19819193,
"username": "Novi_Fibonacci",
"badges": [
{
"name": "moderator",
"verbose_name": "TradingView moderator"
},
{
"name": "pro:pro_premium_expert",
"verbose_name": "Ultimate"
}
],
"picture_url": "https://s3.tradingview.com/userpics/19819193-r0ls.png",
"mid_picture_url": "https://s3.tradingview.com/userpics/19819193-r0ls_mid.png",
"is_pro": true,
"pro_plan": "pro_premium_expert",
"is_broker": false,
"broker_name": null,
"broker_plan": null
},
"image": {
"big": "https://s3.tradingview.com/o/OJrkdy6P_big.png",
"middle": "https://s3.tradingview.com/o/OJrkdy6P_mid.png",
"middle_webp": "https://s3.tradingview.com/o/OJrkdy6P_mid.webp",
"bg_color": "#131722"
},
"reputation": null,
"actions": null,
"is_liked": false,
"likes_count": 24
},
{
"id": 21813601,
"image_url": "EcXQhSVt",
"name": "80% of Traders Are Long USDCHF",
"description": "Over the past sessions, I’ve been closely monitoring USDCHF, and the current structure is starting to present a very interesting high-probability scenario.\nFrom a price action perspective, the market has just rejected a major higher timeframe supply zone around 0.8000. This area has historically acted as a strong distribution zone, and the recent reaction confirms the presence of selling pressure.\nAt the same time, we are seeing a clear loss of momentum after the impulsive bullish move, with price now breaking internal structure and moving into a corrective phase.\n\nLooking at retail sentiment, over 80% of traders are currently positioned long. This kind of imbalance typically acts as a contrarian signal, suggesting that the market is more likely to move against the crowd.\n\nFrom a COT perspective, the US Dollar is starting to show signs of weakening, while the Swiss Franc positioning indicates potential accumulation. This divergence often precedes corrective or reversal phases.\nAdding another layer, seasonality data for April shows a tendency for USDCHF to underperform, reinforcing the bearish or pullback scenario.\n\n My Plan \nAt this stage, I am not interested in chasing the market.\n\nInstead, I am focusing on two key scenarios:\n1. Pullback & Continuation Short\nIf price retraces into the 0.7900–0.7950 area, I will look for bearish confirmations on lower timeframes to target a move towards 0.7800 and potentially 0.7750.\n\n2. Reaction from Demand\nIf the market continues lower into the 0.7750–0.7800 zone, I will monitor for a structural shift (CHoCH) to potentially position for a short-term long back into premium.\n\n Invalidation \nA strong break and acceptance above 0.8050 would invalidate the bearish scenario and suggest continuation to the upside.",
"created_at": "2026-04-15T05:35:12+00:00",
"updated_at": null,
"date_timestamp": 1776231312,
"updated_date_timestamp": null,
"chart_url": "https://www.tradingview.com/chart/USDCHF/EcXQhSVt-80-of-Traders-Are-Long-USDCHF/",
"is_public": true,
"is_visible": true,
"is_video": false,
"is_education": false,
"is_script": false,
"is_picked": true,
"is_hot": true,
"is_platinum_broker_idea": false,
"script_type": null,
"script_access": null,
"script_id_part": null,
"version": null,
"script_package_id": null,
"video_duration": "0",
"video_cam": false,
"video_filename": null,
"comments_count": 4,
"views_count": 0,
"symbol": {
"name": "OANDA:USDCHF",
"full_name": "OANDA:USDCHF",
"short_name": "USDCHF",
"exchange": "OANDA",
"type": "forex",
"logo": {
"style": "pair",
"logoid": "country/US",
"logoid2": "country/CH"
},
"logo_id": null,
"currency_logo_id": "country/CH",
"base_currency_logo_id": "country/US",
"logo_urls": [
"https://s3-symbol-logo.tradingview.com/country/US.svg",
"https://s3-symbol-logo.tradingview.com/country/CH.svg"
],
"interval": "1D",
"direction": 0,
"badge": {
"label": "OANDA:USDCHF",
"url": "/symbols/USDCHF/"
}
},
"user": {
"id": 53908079,
"username": "EdgeTradingJourney",
"badges": [
{
"name": "pro:pro_premium",
"verbose_name": "Premium"
}
],
"picture_url": "https://s3.tradingview.com/userpics/53908079-S1qb.png",
"mid_picture_url": "https://s3.tradingview.com/userpics/53908079-S1qb_mid.png",
"is_pro": true,
"pro_plan": "pro_premium",
"is_broker": false,
"broker_name": null,
"broker_plan": null
},
"image": {
"big": "https://s3.tradingview.com/e/EcXQhSVt_big.png",
"middle": "https://s3.tradingview.com/e/EcXQhSVt_mid.png",
"middle_webp": "https://s3.tradingview.com/e/EcXQhSVt_mid.webp",
"bg_color": "#000000"
},
"reputation": null,
"actions": null,
"is_liked": false,
"likes_count": 10
},
{
"id": 21813663,
"image_url": "tCITm0Yd",
"name": "AUD/USD continues surging on risk-on revival ahead of China GDP",
"description": "AUD/USD is pushing higher ahead of Thursday's China data dump. With Middle East tensions easing and the US dollar softening, we break down the short-term setups and map out a medium-term reversal zone.\n\n Key topics covered \n China GDP: Markets expect Q1 growth to accelerate to 4.8% YOY. A strong print would support the Aussie.\n Risk-on recovery : Easing geopolitical tensions have pushed the S&P 500 above pre-war levels, suggesting a broader recovery.\n The 0.7250 cluster : Price is targeting a technical wall combining the 61.8% Fibonacci (0.7217), the upper channel resistance, and a broadening pattern top. \nAUD/USD scenarios & trade plan\n Bullish (Short-term) : If China data hits or beats 4.8%, traders may look for short-term longs targeting the 0.7188 peak and the 0.7217 - 0.7250 zone.\n Bearish (Medium-term) : Watch for a spike into the 0.7200 - 0.7250 cluster. If we see wicky rejections and daily RSI divergence, the bias flips. Traders may fade the strength for a drop back to the mid-channel or the 0.6830 base. \nAre you buying the Aussie into the China data or waiting to short the resistance? Share your thoughts in the comments.\n\nThis content is not directed to residents of the EU or UK. Any opinions, news, research, analyses, prices or other information contained on this website is provided as general market commentary and does not constitute investment advice.\n\nThinkMarkets will not accept liability for any loss or damage including, without limitation, to any loss of profit which may arise directly or indirectly from use of or reliance on such information.",
"created_at": "2026-04-15T05:52:53+00:00",
"updated_at": null,
"date_timestamp": 1776232373,
"updated_date_timestamp": null,
"chart_url": "https://www.tradingview.com/chart/AUDUSD/tCITm0Yd-AUD-USD-continues-surging-on-risk-on-revival-ahead-of-China-GDP/",
"is_public": true,
"is_visible": true,
"is_video": true,
"is_education": false,
"is_script": false,
"is_picked": true,
"is_hot": true,
"is_platinum_broker_idea": true,
"script_type": null,
"script_access": null,
"script_id_part": null,
"version": null,
"script_package_id": null,
"video_duration": "480",
"video_cam": false,
"video_filename": "https://video-ideas.tradingview.com/8/81359041-VI4VSIz4g6_-FZxV.mp4",
"comments_count": 4,
"views_count": 0,
"symbol": {
"name": "THINKMARKETS:AUDUSD",
"full_name": "THINKMARKETS:AUDUSD",
"short_name": "AUDUSD",
"exchange": "THINKMARKETS",
"type": "forex",
"logo": {
"style": "pair",
"logoid": "country/AU",
"logoid2": "country/US"
},
"logo_id": null,
"currency_logo_id": "country/US",
"base_currency_logo_id": "country/AU",
"logo_urls": [
"https://s3-symbol-logo.tradingview.com/country/AU.svg",
"https://s3-symbol-logo.tradingview.com/country/US.svg"
],
"interval": "240",
"direction": 1,
"badge": {
"label": "THINKMARKETS:AUDUSD",
"url": "/symbols/AUDUSD/"
}
},
"user": {
"id": 81359041,
"username": "ThinkMarkets",
"badges": [
{
"name": "broker:platinum",
"verbose_name": "Platinum partner"
}
],
"picture_url": "https://s3.tradingview.com/userpics/81359041-cUtJ.png",
"mid_picture_url": "https://s3.tradingview.com/userpics/81359041-cUtJ_mid.png",
"is_pro": true,
"pro_plan": "pro_premium_expert",
"is_broker": true,
"broker_name": "ThinkMarkets",
"broker_plan": "platinum"
},
"image": {
"big": "https://s3.tradingview.com/t/tCITm0Yd_big.png",
"middle": "https://s3.tradingview.com/t/tCITm0Yd_mid.png",
"middle_webp": "https://s3.tradingview.com/t/tCITm0Yd_mid.webp",
"bg_color": "#ffffff"
},
"reputation": null,
"actions": null,
"is_liked": false,
"likes_count": 13
},
{
"id": 21816489,
"image_url": "AdsvzGTx",
"name": "Oil Market Disruption. A Game Changer.",
"description": "Introduction . \nThere have been three critical points in the chart that became the reference points in the last six years since the pandemic. The negative value of oil in the futures market during the pandemic (first time in history that you were paid to buy an oil futures contract); the fast expansion of the economy that created a huge demand of energy and put the oil to its highest level in years; and the War with Iran, where we are now. \n\n Downtrend Channel. \nAfter the pandemic the huge injection of liquidity in the economy created a large demand of goods and services, which require oil to move. “The army moves on its stomach.” Said Napoleon, the equivalent here is “The economy moves on Oil.” The economy grew too fast and the pace of production couldn’t catch up, creating a strong imbalance in the supply/demand equation, which was translated as inflation. The expansion of the inflation motivated the fed to increase interest rates to slow down the fast expansion and give the Economy room to catch up with the liquidity. \n\n Cool down of the Economy. \nThe increase in the interest rates slowed down the economy, and we can indirectly measure it with the price of oil since the post pandemic peak. In a highly leveraged economy the way to reduce inflationary pressures is by increasing interest rates, this cools down the demand side of the equation and prevents a sudden recession, this was known as the “Soft Landing” strategy.\n\n The Soft Landing. \nIt was working slowly but consistently and the goal was achieved. The economy continued to expand at a slower rate, the inflation went back to its target levels, the unemployment was kept in check and the Oil was heading down. Everything without triggering a harsh recession. The “Soft Landing” worked, and the next phase was to start slowly lowering the interest rates to allow the economy to expand at a slightly faster pace, keeping in check the Inflation. In a normal universe this would have completed the expansion/contraction cycle, but in this surrealistic environment where logic doesn’t seem to rule a big disturbance derailed the plans.\n\n The World Oil Market disruption. \nOut of the blue Trump decided that it was a great idea to hit Iran hard and decisively on the head, and what at first looked like a Venezuela II plan, it turned out to be just a shake in the wasp hive. Trump said there was no plan B, and I believe him. The original plan was to seek an Iran’s quick capitulation, but it was just an underestimation of Iran’s capabilities and an overestimation of USA’s. Overconfidence and underestimation in a strategical geopolitical region was a very bad miscalculation. For years the previous administrations acknowledged the difficulty of such an audacious campaign and decided to negotiate and keep the flow of the oil steady and uninterrupted rather than engaging in an endless war that could bring unforeseen consequences to the world economy. Now we see in practical terms why they went for a peaceful and consensual solution rather than a confrontational approach with Iran.\n\n The consequences. \nThe Strait of Hormuz is a powder keg, and this conflict was the spark, we have a fire that only favored the BRICS coalition and greatly incentivized the use of PetroYuan over the PetroDollar, which puts the USA in a very unfavorable position where the adversaries have the upper hand now. The USA has the world reserve currency position compromised, and that’ll be another story. The immediate consequence of this war and disruption may trigger a stagflation, since the reason why the oil prices are high isn’t because of natural demand but for disruption of the supply after the War. This will create inflationary pressures since everything is indexed to the price of oil, and a lot of secondary and tertiary production chains depend on it. This is not about an overheated economy, so increasing the interest rates is not going to have the desired effect. The scenario is similar to the 1970’s stagflation when Paul Volcker had to put the economy to a halt because of very high interest rates and astronomical oil prices and he had to apply that sour medicine twice. \n\n There’s hope in the future. \nThere is a dependency of oil because it is used for energy and petrochemical derivatives. We have to keep in mind that Oil is not going to last forever, and there’s a timer ticking that points to an exhaustion in oil reserves. Unless more powerful exploration and extraction technologies allow to safely go to the bottom of the ocean and extract oil from there or other sources, there will be a time when Oil will be done. This conflict only allowed Iran and the BRICS coalition to tighten their grip. The conflict approach was a bad idea and it is definitely not the solution now. Undoing this is going to span way over the Trump administration, a reconciliation approach is the immediate way to go. In the future alternative sources of energy like solar, electric, nuclear, eolic, have to be further developed for everyday needs, recycling and extraction of chemicals from different sources will break the dependency of the Economy from Oil. ",
"created_at": "2026-04-15T13:57:22+00:00",
"updated_at": null,
"date_timestamp": 1776261442,
"updated_date_timestamp": null,
"chart_url": "https://www.tradingview.com/chart/USOIL/AdsvzGTx-Oil-Market-Disruption-A-Game-Changer/",
"is_public": true,
"is_visible": true,
"is_video": false,
"is_education": false,
"is_script": false,
"is_picked": true,
"is_hot": true,
"is_platinum_broker_idea": false,
"script_type": null,
"script_access": null,
"script_id_part": null,
"version": null,
"script_package_id": null,
"video_duration": "0",
"video_cam": false,
"video_filename": null,
"comments_count": 2,
"views_count": 0,
"symbol": {
"name": "TVC:USOIL",
"full_name": "TVC:USOIL",
"short_name": "USOIL",
"exchange": "TVC",
"type": "commodity",
"logo": {
"style": "single",
"logoid": "crude-oil"
},
"logo_id": "crude-oil",
"currency_logo_id": "country/US",
"base_currency_logo_id": null,
"logo_urls": [
"https://s3-symbol-logo.tradingview.com/crude-oil.svg"
],
"interval": "1D",
"direction": 0,
"badge": {
"label": "TVC:USOIL",
"url": "/symbols/USOIL/"
}
},
"user": {
"id": 22496,
"username": "Madrid",
"badges": [
{
"name": "pine_wizard",
"verbose_name": "Pine Wizard"
},
{
"name": "pro:pro_premium_expert",
"verbose_name": "Ultimate"
}
],
"picture_url": "https://s3.tradingview.com/userpics/22496-zwLd.png",
"mid_picture_url": "https://s3.tradingview.com/userpics/22496-zwLd_mid.png",
"is_pro": true,
"pro_plan": "pro_premium_expert",
"is_broker": false,
"broker_name": null,
"broker_plan": null
},
"image": {
"big": "https://s3.tradingview.com/a/AdsvzGTx_big.png",
"middle": "https://s3.tradingview.com/a/AdsvzGTx_mid.png",
"middle_webp": "https://s3.tradingview.com/a/AdsvzGTx_mid.webp",
"bg_color": "#131722"
},
"reputation": null,
"actions": null,
"is_liked": false,
"likes_count": 16
},
{
"id": 21818361,
"image_url": "VJCtqE87",
"name": "Novo Nordisk - This is the end of the end!",
"description": "🦾Novo Nordisk ( NYSE:NVO ) just finished its bearmarket: \n \n 🔎Analysis summary: \n Novo Nordisk remains in a clear uptrend despite the major correction of about -75%. But looking at the higher timeframe, Novo Nordisk is also retesting a significant confluence of support. This might actually be the end of the bearmarket and the start of something new. \n 📝Levels to watch: \n $40 \n#LONGTERMVISION",
"created_at": "2026-04-15T19:25:14+00:00",
"updated_at": null,
"date_timestamp": 1776281114,
"updated_date_timestamp": null,
"chart_url": "https://www.tradingview.com/chart/NVO/VJCtqE87-Novo-Nordisk-This-is-the-end-of-the-end/",
"is_public": true,
"is_visible": true,
"is_video": true,
"is_education": false,
"is_script": false,
"is_picked": true,
"is_hot": true,
"is_platinum_broker_idea": false,
"script_type": null,
"script_access": null,
"script_id_part": null,
"version": null,
"script_package_id": null,
"video_duration": "288",
"video_cam": false,
"video_filename": "https://video-ideas.tradingview.com/9/9210047-r3rkIf-JCBjMtuAS.mp4",
"comments_count": 8,
"views_count": 0,
"symbol": {
"name": "NYSE:NVO",
"full_name": "NYSE:NVO",
"short_name": "NVO",
"exchange": "NYSE",
"type": "dr",
"logo": {
"style": "single",
"logoid": "novo-nordisk"
},
"logo_id": "novo-nordisk",
"currency_logo_id": "country/US",
"base_currency_logo_id": null,
"logo_urls": [
"https://s3-symbol-logo.tradingview.com/novo-nordisk.svg"
],
"interval": "1M",
"direction": 1,
"badge": {
"label": "NYSE:NVO",
"url": "/symbols/NYSE-NVO/"
}
},
"user": {
"id": 9210047,
"username": "TheTraderPhil",
"badges": [
{
"name": "pro:pro_premium",
"verbose_name": "Premium"
}
],
"picture_url": "https://s3.tradingview.com/userpics/9210047-DAzw.png",
"mid_picture_url": "https://s3.tradingview.com/userpics/9210047-DAzw_mid.png",
"is_pro": true,
"pro_plan": "pro_premium",
"is_broker": false,
"broker_name": null,
"broker_plan": null
},
"image": {
"big": "https://s3.tradingview.com/v/VJCtqE87_big.png",
"middle": "https://s3.tradingview.com/v/VJCtqE87_mid.png",
"middle_webp": "https://s3.tradingview.com/v/VJCtqE87_mid.webp",
"bg_color": "#ffffff"
},
"reputation": null,
"actions": null,
"is_liked": false,
"likes_count": 61
},
{
"id": 21821577,
"image_url": "pwqcfAmS",
"name": "Chasing the Hottest Trade of the Day: Why It Rarely Ends Well",
"description": "You’ve seen it happen. A forgotten stock suddenly explodes higher as headlines multiply, and you need to zoom out the chart to see where the candles went. \n\nYesterday it was Allbirds NASDAQ:BIRD , a footwear brand preparing to wind down operations that surged 583% after announcing a surprise pivot into artificial-intelligence infrastructure. Because, of course it’ll be AI.\n\nThe story is Netflix-worthy and in sync with the times we live in. The move looked irresistible and the attention arrived instantly. That combination often marks the exact moment when opportunity and risk begin competing for the same trade.\n\nMarkets love a comeback narrative. And that’s how Allbirds stock became the best-performing stock of the day.\n\n📈 Momentum Feels Like Proof \n\nMomentum simply means price is moving strongly in one direction. Strong momentum attracts capital because rising prices create confidence, and confidence invites participation.\n\nThe challenge appears when price strength becomes the reason for entry rather than the result of analysis. A stock moving quickly higher can feel like confirmation that something important is happening. In reality, it often means the move has already started without you.\n\nMomentum works best when traders arrive early and manage risk carefully. Everything else is, you guessed it, FOMO.\n\n🧠 Visibility Changes the Trade \n\nMarkets tend to move in stages. Early participants get in before headlines appear. The second group confirms the trend once price strengthens. The final wave arrives when the move becomes obvious to everyone watching the screen.\n\nHigh visibility creates buzz and excitement. And that creates urgency. And urgency changes decision quality.\n\nBy the time a trade dominates conversations, early buyers are often managing profits while late arrivals are riding on hopium.\n\n📉 Popular Trades Move Fast Both Ways \n\nCrowded trades behave differently from quiet ones. When many traders hold the same position, price swings can accelerate quickly because everyone reacts to the same signals at the same time.\n\nLiquidity describes how easily an asset can be bought or sold without moving price too much. In crowded situations, liquidity becomes fragile during reversals. A rally can extend rapidly, yet a pullback can travel just as quickly in the opposite direction.\n\nFast entries rarely come with calm exits.\n\n🧭 A Smarter Way to Approach Hot Setups \n\nStrong moves deserve attention because they often reveal where capital is flowing. That becomes useful when traders treat excitement as information rather than instruction.\n\nInstead of chasing a breakout already making headlines, many traders wait for consolidation, which simply means a pause in price after a sharp move. It allows markets to reset and provides clearer structure for entries with defined risk.\n\nPatience creates space for better decisions.\n\n🎁 The Takeaway \n\nThe hottest trade of the day almost always looks convincing and hard to pass. Price strength attracts attention, narratives strengthen confidence, and participation builds quickly. That combination creates opportunity for just a few traders and pressure for the rest.\n\nExamples like Allbirds show how quickly sentiment can shift when a new story captures the market’s imagination. The real edge comes from recognizing when a move is beginning and when it is already becoming crowded. \n\nIn the case of Allbirds, there was no way to know in advance unless you were an insider. But just so you wouldn’t feel bad — Allbirds shares are lower by 25% ahead of Thursday’s opening bell. \n\n Off to you : How do you deal with rushed positions, hot trades, and meme stocks?",
"created_at": "2026-04-16T08:28:04+00:00",
"updated_at": null,
"date_timestamp": 1776328084,
"updated_date_timestamp": null,
"chart_url": "https://www.tradingview.com/chart/BIRD/pwqcfAmS-Chasing-the-Hottest-Trade-of-the-Day-Why-It-Rarely-Ends-Well/",
"is_public": true,
"is_visible": true,
"is_video": false,
"is_education": true,
"is_script": false,
"is_picked": true,
"is_hot": true,
"is_platinum_broker_idea": false,
"script_type": null,
"script_access": null,
"script_id_part": null,
"version": null,
"script_package_id": null,
"video_duration": "0",
"video_cam": false,
"video_filename": null,
"comments_count": 12,
"views_count": 0,
"symbol": {
"name": "NASDAQ:BIRD",
"full_name": "NASDAQ:BIRD",
"short_name": "BIRD",
"exchange": "NASDAQ",
"type": "stock",
"logo": {
"style": "single",
"logoid": "allbirds"
},
"logo_id": "allbirds",
"currency_logo_id": "country/US",
"base_currency_logo_id": null,
"logo_urls": [
"https://s3-symbol-logo.tradingview.com/allbirds.svg"
],
"interval": "1D",
"direction": 0,
"badge": {
"label": "NASDAQ:BIRD",
"url": "/symbols/NASDAQ-BIRD/"
}
},
"user": {
"id": 6171439,
"username": "TradingView",
"badges": [
{
"name": "employee",
"verbose_name": "TradingView employee"
},
{
"name": "moderator",
"verbose_name": "TradingView moderator"
},
{
"name": "pro:pro_premium_expert",
"verbose_name": "Ultimate"
}
],
"picture_url": "https://s3.tradingview.com/userpics/6171439-mFQX.png",
"mid_picture_url": "https://s3.tradingview.com/userpics/6171439-mFQX_mid.png",
"is_pro": true,
"pro_plan": "pro_premium_expert",
"is_broker": false,
"broker_name": null,
"broker_plan": null
},
"image": {
"big": "https://s3.tradingview.com/p/pwqcfAmS_big.png",
"middle": "https://s3.tradingview.com/p/pwqcfAmS_mid.png",
"middle_webp": "https://s3.tradingview.com/p/pwqcfAmS_mid.webp",
"bg_color": "#ffffff"
},
"reputation": null,
"actions": null,
"is_liked": false,
"likes_count": 417
},
{
"id": 21782972,
"image_url": "el74yCaD",
"name": "THE MYTH OF THE PERFECT TRADING STRATEGY",
"description": "🔥 THE MYTH OF THE PERFECT TRADING STRATEGY 🔥\n\nMany traders waste years searching for a system that eliminates losses.\n\nThey find a strategy, experience early success, then abandon it after a series of losses and frustration. The cycle repeats, creating the illusion that the next method will finally deliver consistency.\n\nThe issue is not the strategy but the expectation of certainty.\n\n 📌 THE SYSTEM-HOPPING LOOP \n\nMost traders operate within a predictable cycle:\n \n Discover a new strategy\n Experience an initial series of wins\n Encounter an inevitable drawdown\n Abandon the strategy and search again\n \nThis loop is driven by the desire for certainty.\n\nShort-term success creates confidence. Losses then create doubt, even when those losses fall within normal statistical expectations.\n\nWithout a probabilistic mindset, every drawdown seems like a failure.\n\n 🧭 WHY THE “HOLY GRAIL” DOES NOT EXIST \n\nFirst, there is no strategy that performs in all conditions.\n\nMarkets alternate between phases:\n \n Trending environments\n Range-bound conditions\n Low volatility compression\n High volatility expansion\n \nA method designed for one environment will not do well in another.\n\nTrend-following tools perform well in trending markets but struggle in consolidation. Range-based tools perform well in equilibrium but fail during expansion.\n\nWe cannot expect a static strategy cannot adapt to a dynamic market. Hence, consistency comes from selecting the right conditions, not from forcing one method across all conditions.\n\n 🎯 A STRATEGY IS ONLY A TRIGGER \n\nA setup is not a complete trading plan.\n\nOn its own, it provides an entry signal. It does not define how to manage risk, evaluate context, or execute consistently.\n\nA practical trading framework requires:\n \n Context — understanding when the setup is valid\n Risk management — controlling downside across trades\n Execution discipline — following predefined rules under pressure\n Review process — improving through reliable feedback\n \nWithout these, even a statistically sound setup can lead to net losses.\n\n ⚙️ CONTEXT DEFINES EDGE \n\nThe same setup can produce different outcomes depending on market conditions.\n\nA pullback entry may perform well in a trending structure but fail repeatedly in a sideways range. A volatility breakout may succeed after compression but fail in already expanded conditions.\n\nThis is why it is important to evaluate the following:\n \n Is the market trending or ranging?\n Is volatility expanding or contracting?\n Does the structure support continuation or reversal?\n \nContext determines whether a setup is valid.\n\n 🧠 STRATEGY MUST MATCH THE TRADER \n\nAn often neglected consideration is that a method must align with the trader’s temperament.\n\nExecution requirements vary significantly between approaches:\n \n Short-term strategies require rapid decision-making and tolerance for frequent exposure\n Longer-term strategies require patience and tolerance for extended drawdowns\n High win-rate systems often involve smaller gains and occasional large losses\n Low win-rate systems rely on infrequent but larger moves\n \nMismatch between strategy and personality leads to inconsistent execution and frequent frustration.\n\nA method is only viable if it can be followed under pressure, not just understood in theory.\n\n 📉 CAPITAL AND DRAWDOWN REALITY \n\nEvery strategy includes periods of loss.\n\nThese are not anomalies. They are part of the cost of the trading business. \n\nFailure often occurs due to insufficient capital to ride out the drawdowns (or position sizing that is too aggressive) rather than flawed methodology. But how do you know?\n\nKey considerations:\n \n Maximum drawdown must be understood before live execution\n Position sizing must allow survival through losing streaks\n Only risk capital should be deployed\n \nIf capital cannot withstand expected drawdown, the strategy will fail regardless of its edge. Having sufficient capital is a necessary, but not sufficient, condition for profitability.\n\n 📊 THINK IN SETS OF TRADES, NOT SINGLE TRADES \n\nEvaluating a strategy based on a few trades is not meaningful.\n\nIndividual outcomes are random within a probabilistic system. Meaningful evaluation requires a sufficient sample size.\n\nA structured approach:\n \n Execute a minimum of 20–30 trades\n Apply consistent rules across all trades\n Record entries, exits, and context\n Review results after the sample is complete\n \nWithout data, improvement is guesswork. You need reliable records to turn outcomes into actionable feedback.\n\n 🔍 FROM SETUP TO STRUCTURED PROCESS \n\nTo move beyond inconsistency, adopt this repeatable framework:\n \n Select one strategy with clear rules\n Define the conditions where it applies\n Set fixed risk parameters per trade\n Execute without deviation\n Document all trades systematically\n Review performance after a defined sample\n \nThis process shifts focus from outcome to execution quality.\n\n 📈 FINAL TAKEAWAY \n\nThe search for a perfect strategy is futile. No system eliminates losses, and no method performs equally across all conditions.\n\nWhat matters:\n \n Understanding when a strategy has edge\n Managing risk across sequences of trades\n Aligning the method with your temperament\n Evaluating performance over meaningful samples\n \nA strategy does not need to be perfect.\n\nIt needs to be consistent, repeatable, and applied within the appropriate context.\n\nStop searching for certainty. Start building a process that can operate within uncertainty.",
"created_at": "2026-04-10T02:58:09+00:00",
"updated_at": null,
"date_timestamp": 1775789889,
"updated_date_timestamp": null,
"chart_url": "https://www.tradingview.com/chart/SPY/el74yCaD-THE-MYTH-OF-THE-PERFECT-TRADING-STRATEGY/",
"is_public": true,
"is_visible": true,
"is_video": false,
"is_education": true,
"is_script": false,
"is_picked": true,
"is_hot": true,
"is_platinum_broker_idea": false,
"script_type": null,
"script_access": null,
"script_id_part": null,
"version": null,
"script_package_id": null,
"video_duration": "0",
"video_cam": false,
"video_filename": null,
"comments_count": 11,
"views_count": 0,
"symbol": {
"name": "AMEX:SPY",
"full_name": "AMEX:SPY",
"short_name": "SPY",
"exchange": "AMEX",
"type": "fund",
"logo": {
"style": "single",
"logoid": "spdr-sandp500-etf-tr"
},
"logo_id": "spdr-sandp500-etf-tr",
"currency_logo_id": "country/US",
"base_currency_logo_id": null,
"logo_urls": [
"https://s3-symbol-logo.tradingview.com/spdr-sandp500-etf-tr.svg"
],
"interval": "1D",
"direction": 0,
"badge": {
"label": "AMEX:SPY",
"url": "/symbols/AMEX-SPY/"
}
},
"user": {
"id": 2617243,
"username": "galenwoods",
"badges": [
{
"name": "pro:pro_premium",
"verbose_name": "Premium"
}
],
"picture_url": "https://s3.tradingview.com/userpics/2617243-PZxW.png",
"mid_picture_url": "https://s3.tradingview.com/userpics/2617243-PZxW_mid.png",
"is_pro": true,
"pro_plan": "pro_premium",
"is_broker": false,
"broker_name": null,
"broker_plan": null
},
"image": {
"big": "https://s3.tradingview.com/e/el74yCaD_big.png",
"middle": "https://s3.tradingview.com/e/el74yCaD_mid.png",
"middle_webp": "https://s3.tradingview.com/e/el74yCaD_mid.webp",
"bg_color": "#131722"
},
"reputation": null,
"actions": null,
"is_liked": false,
"likes_count": 144
},
{
"id": 21801577,
"image_url": "bO7KrCmc",
"name": "Bitcoin Fails to Break Resistance at $74,000. Who’s in Control?",
"description": "Bitcoin BITSTAMP:BTCUSD made another confident run toward $74,000 over the weekend, tapped the ceiling, and then stepped back as if reminded the door was still locked. Sellers showed up right on schedule, pushing the price down toward $70,500 early Monday.\n\nThis marks the third rejection at the top of a descending channel, a technical pattern where price moves between two downward-sloping lines. Traders often read this setup as a sign that rallies remain fragile until a clean breakout changes the structure.\n\n🌍 Geopolitics Enter the Chat \n\nThe latest drop did not arrive quietly. Bitcoin slid to around $70,500 after the White House confirmed a naval blockade of the Strait of Hormuz , following failed negotiations between the United States and Iran over uranium enrichment limits.\n\nOil TVC:UKOIL responded immediately, jumping to $105 per barrel as the US Navy prepared to secure shipping routes and remove Iranian naval mines.\n\n Crypto markets tend to react quickly when global risk rises. Traders reduce exposure, volatility increases, and Bitcoin behaves less like a hedge and more like a high-beta asset tied to broader sentiment.\n\n📉 Descending Channel in Play \n\nTechnically speaking, Bitcoin remains inside a descending channel , which signals a market that is gradually trending lower despite occasional rallies.\n\nEach time price approaches the upper boundary of that channel, sellers appear. And vice versa. At least until now. That pattern repeated near $74,000 last week, just as it did in January and again last October.\n\n🧠 Why $70K Is Important \n\nRound numbers matter more than most traders would admit. The $70,000 level has become a psychological anchor for Bitcoin in recent weeks.\n\nPsychological levels are price zones where traders naturally cluster orders because they are easy and widely watched. When price holds above them, confidence improves. When price slips below them, caution spreads quickly.\n\nAs long as Bitcoin remains near this level, sentiment stays balanced between patience and concern.\n\n⚠️ What If Support Slips \n\nAnalysts are watching $68,000 closely as the next technical checkpoint. A sustained move below that area could open the path toward $62,000, where stronger historical demand previously emerged.\n\nSupport levels function like floors in a building. One level breaks, traders look to the next one below for stability.\n\nThat possibility keeps short-term positioning cautious even as long-term conviction remains intact.\n\n🎁 The Takeaway \n\nBitcoin’s rejection near $74,000 highlights a market still trading within a defined trend. Resistance remains firm, geopolitical tensions are shaping sentiment, and technical structure continues to favor caution over celebration.\n\nAt the same time, the $70,000 region continues to attract buyers and attention in equal measure.\n\n Off to you : How are you trading the current setup? Bullish or bearish? \n",
"created_at": "2026-04-13T11:55:41+00:00",
"updated_at": null,
"date_timestamp": 1776081341,
"updated_date_timestamp": null,
"chart_url": "https://www.tradingview.com/chart/BTCUSD/bO7KrCmc-Bitcoin-Fails-to-Break-Resistance-at-74-000-Who-s-in-Control/",
"is_public": true,
"is_visible": true,
"is_video": false,
"is_education": false,
"is_script": false,
"is_picked": true,
"is_hot": true,
"is_platinum_broker_idea": false,
"script_type": null,
"script_access": null,
"script_id_part": null,
"version": null,
"script_package_id": null,
"video_duration": "0",
"video_cam": false,
"video_filename": null,
"comments_count": 39,
"views_count": 0,
"symbol": {
"name": "BITSTAMP:BTCUSD",
"full_name": "BITSTAMP:BTCUSD",
"short_name": "BTCUSD",
"exchange": "BITSTAMP",
"type": "spot",
"logo": {
"style": "single",
"logoid": "crypto/XTVCBTC"
},
"logo_id": null,
"currency_logo_id": "country/US",
"base_currency_logo_id": "crypto/XTVCBTC",
"logo_urls": [
"https://s3-symbol-logo.tradingview.com/crypto/XTVCBTC.svg"
],
"interval": "1D",
"direction": 0,
"badge": {
"label": "BITSTAMP:BTCUSD",
"url": "/symbols/BTCUSD/"
}
},
"user": {
"id": 6171439,
"username": "TradingView",
"badges": [
{
"name": "employee",
"verbose_name": "TradingView employee"
},
{
"name": "moderator",
"verbose_name": "TradingView moderator"
},
{
"name": "pro:pro_premium_expert",
"verbose_name": "Ultimate"
}
],
"picture_url": "https://s3.tradingview.com/userpics/6171439-mFQX.png",
"mid_picture_url": "https://s3.tradingview.com/userpics/6171439-mFQX_mid.png",
"is_pro": true,
"pro_plan": "pro_premium_expert",
"is_broker": false,
"broker_name": null,
"broker_plan": null
},
"image": {
"big": "https://s3.tradingview.com/b/bO7KrCmc_big.png",
"middle": "https://s3.tradingview.com/b/bO7KrCmc_mid.png",
"middle_webp": "https://s3.tradingview.com/b/bO7KrCmc_mid.webp",
"bg_color": "#ffffff"
},
"reputation": null,
"actions": null,
"is_liked": false,
"likes_count": 507
},
{
"id": 21788587,
"image_url": "vZsdqsAn",
"name": "S&P 500 - at Massive Resistance",
"description": "\nPoint & Figure charts are a great tool to discover potential support/resistance areas. \n \nPoint and figure charts focus on price movements and trends without time consideration, using X’s for rising prices and O’s for falling prices.\nThe wider the row of X’s and O’s, the greater potential support/resistance.\n\nThe recent S&P 500 (SPX) bottomed out in a row of five.\nNow the SPX is just below a row of eleven, this is potentially HUGE RESITANCE! \n\nA significant SPX peak could be made in one or two trading days. \n\n",
"created_at": "2026-04-10T21:46:00+00:00",
"updated_at": null,
"date_timestamp": 1775857560,
"updated_date_timestamp": null,
"chart_url": "https://www.tradingview.com/chart/SPX/vZsdqsAn-S-P-500-at-Massive-Resistance/",
"is_public": true,
"is_visible": true,
"is_video": false,
"is_education": false,
"is_script": false,
"is_picked": true,
"is_hot": true,
"is_platinum_broker_idea": false,
"script_type": null,
"script_access": null,
"script_id_part": null,
"version": null,
"script_package_id": null,
"video_duration": "0",
"video_cam": false,
"video_filename": null,
"comments_count": 25,
"views_count": 0,
"symbol": {
"name": "SP:SPX",
"full_name": "SP:SPX",
"short_name": "SPX",
"exchange": "SP",
"type": "index",
"logo": {
"style": "single",
"logoid": "indices/s-and-p-500"
},
"logo_id": "indices/s-and-p-500",
"currency_logo_id": "country/US",
"base_currency_logo_id": null,
"logo_urls": [
"https://s3-symbol-logo.tradingview.com/indices/s-and-p-500.svg"
],
"interval": "1D",
"direction": 2,
"badge": {
"label": "SP:SPX",
"url": "/symbols/SPX/"
}
},
"user": {
"id": 594869,
"username": "markrivest",
"badges": [
{
"name": "pro:pro",
"verbose_name": "Essential"
}
],
"picture_url": "https://s3.tradingview.com/userpics/594869-HliQ.png",
"mid_picture_url": "https://s3.tradingview.com/userpics/594869-HliQ_mid.png",
"is_pro": true,
"pro_plan": "pro",
"is_broker": false,
"broker_name": null,
"broker_plan": null
},
"image": {
"big": "https://s3.tradingview.com/v/vZsdqsAn_big.png",
"middle": "https://s3.tradingview.com/v/vZsdqsAn_mid.png",
"middle_webp": "https://s3.tradingview.com/v/vZsdqsAn_mid.webp",
"bg_color": "#ffffff"
},
"reputation": null,
"actions": null,
"is_liked": false,
"likes_count": 96
},
{
"id": 21795169,
"image_url": "MxXqMnSh",
"name": "XAU/USD: Major Decision Zone Between 4,800 and 4,850",
"description": "Gold (XAU/USD) is currently in a corrective phase after a strong bullish impulse followed by a distribution phase near the highs around 5,300–5,400. After marking a peak, the market started an aggressive drop toward the 4,200 area, which represents a liquidity sweep and a key structural low. Since this bottom, price has entered a corrective rebound phase and is now retesting a major decision zone located around the 0.618 Fibonacci retracement between 4,800 and 4,850, which also aligns with a previous support area that has turned into resistance. The market is currently in a balance zone where buyers and sellers are competing, and the reaction at this resistance will be crucial for the next move. \n\nA clear rejection below this zone would indicate weakness in the rebound and could trigger a new bearish move toward 4,400 and potentially 4,200 if selling pressure continues. On the other hand, a confirmed breakout above this zone would open the way for a bullish continuation toward 5,000, then 5,200, and potentially a retest of the 5,400 highs.\n\nFrom a fundamental perspective, gold remains highly influenced by the US dollar and global risk sentiment, with the DXY being a key driver: a weaker dollar would support a bullish breakout, while a stronger dollar would increase the probability of a rejection at current resistance. \nOverall, gold is in a strategic consolidation phase where the next major impulse will depend on the reaction at this key technical zone and macroeconomic conditions.",
"created_at": "2026-04-12T11:01:58+00:00",
"updated_at": null,
"date_timestamp": 1775991718,
"updated_date_timestamp": null,
"chart_url": "https://www.tradingview.com/chart/XAUUSD/MxXqMnSh-XAU-USD-Major-Decision-Zone-Between-4-800-and-4-850/",
"is_public": true,
"is_visible": true,
"is_video": false,
"is_education": false,
"is_script": false,
"is_picked": true,
"is_hot": true,
"is_platinum_broker_idea": false,
"script_type": null,
"script_access": null,
"script_id_part": null,
"version": null,
"script_package_id": null,
"video_duration": "0",
"video_cam": false,
"video_filename": null,
"comments_count": 16,
"views_count": 0,
"symbol": {
"name": "PEPPERSTONE:XAUUSD",
"full_name": "PEPPERSTONE:XAUUSD",
"short_name": "XAUUSD",
"exchange": "PEPPERSTONE",
"type": "commodity",
"logo": {
"style": "single",
"logoid": "metal/gold"
},
"logo_id": "metal/gold",
"currency_logo_id": "country/US",
"base_currency_logo_id": null,
"logo_urls": [
"https://s3-symbol-logo.tradingview.com/metal/gold.svg"
],
"interval": "1D",
"direction": 0,
"badge": {
"label": "PEPPERSTONE:XAUUSD",
"url": "/symbols/XAUUSD/"
}
},
"user": {
"id": 96484674,
"username": "fullpriceaction",
"badges": [
{
"name": "pro:pro_premium",
"verbose_name": "Premium"
}
],
"picture_url": "https://s3.tradingview.com/userpics/96484674-3JKJ.png",
"mid_picture_url": "https://s3.tradingview.com/userpics/96484674-3JKJ_mid.png",
"is_pro": true,
"pro_plan": "pro_premium",
"is_broker": false,
"broker_name": null,
"broker_plan": null
},
"image": {
"big": "https://s3.tradingview.com/m/MxXqMnSh_big.png",
"middle": "https://s3.tradingview.com/m/MxXqMnSh_mid.png",
"middle_webp": "https://s3.tradingview.com/m/MxXqMnSh_mid.webp",
"bg_color": "#ffffff"
},
"reputation": null,
"actions": null,
"is_liked": false,
"likes_count": 159
},
{
"id": 21793895,
"image_url": "MAx4fxBV",
"name": "#QNT Quant — Two Falling Wedges - 80% Drawdown from ATH",
"description": "QNTUSDT Quant #QNT — Two Falling Wedges. One Decision Point with a retracement of over 80% from All time high of $430 from the charts.\nCurrent price: $75.86\n\nWhat's Happening\nQNT has been in a slow, structured decline since its $430 high. But look closer at the weekly chart and you'll notice something most people miss — price isn't just falling randomly. It's compressing. Tightening. Coiling. Also There are two falling wedge structures nested inside each other, both pointing to the same zone. Both apexing right now.\n\nWhat a Falling Wedge Actually Means\nA falling wedge is not not always a bearish pattern. In this instance, It's a reset. Price pulls back in a controlled, narrowing range — seller momentum gradually weakens, buyers quietly absorb the pressure, and eventually the structure breaks in the direction of the larger trend.\n\nWhat makes this setup significant? An inner wedge compressing inside an outer macro wedge means two layers of energy are being stored at the same price level. The release, when it comes, tends to be proportional to the full structure.\n\nWhat Smart Money Is Likely Doing?\nBefore any real move higher, the $50–$60 zone below current price needs to be addressed. Stop losses from range participants sit there. Institutions typically clear that liquidity before committing to an upward move. If a wick into that zone appears — that's the bear trap and also an area of opportunity.\n\nThe Trigger to Watch:\nA weekly close above the falling wedge resistance confirms the shift. That's the only signal worth acting on here. Until then, the structure is still compressing.\n\nPrice Targets If the Wedge Resolves Bullishly\nTP1: $170.04\nTP2: $243.67\nTP3: $330.02\nMacro extension: $417.66 → $666.53\n\nInvalidation lives below a Weekly close under $50\nNot financial advice. Always manage your risk and position size.*",
"created_at": "2026-04-12T04:58:10+00:00",
"updated_at": null,
"date_timestamp": 1775969890,
"updated_date_timestamp": null,
"chart_url": "https://www.tradingview.com/chart/QNTUSDT/MAx4fxBV-QNT-Quant-Two-Falling-Wedges-80-Drawdown-from-ATH/",
"is_public": true,
"is_visible": true,
"is_video": false,
"is_education": false,
"is_script": false,
"is_picked": true,
"is_hot": true,
"is_platinum_broker_idea": false,
"script_type": null,
"script_access": null,
"script_id_part": null,
"version": null,
"script_package_id": null,
"video_duration": "0",
"video_cam": false,
"video_filename": null,
"comments_count": 12,
"views_count": 0,
"symbol": {
"name": "BINANCE:QNTUSDT",
"full_name": "BINANCE:QNTUSDT",
"short_name": "QNTUSDT",
"exchange": "BINANCE",
"type": "spot",
"logo": {
"style": "single",
"logoid": "crypto/XTVCQNT"
},
"logo_id": null,
"currency_logo_id": "crypto/XTVCUSDT",
"base_currency_logo_id": "crypto/XTVCQNT",
"logo_urls": [
"https://s3-symbol-logo.tradingview.com/crypto/XTVCQNT.svg",
"https://s3-symbol-logo.tradingview.com/crypto/XTVCUSDT.svg"
],
"interval": "1W",
"direction": 1,
"badge": {
"label": "BINANCE:QNTUSDT",
"url": "/symbols/QNTUSDT/"
}
},
"user": {
"id": 1412836,
"username": "Ifiok-Trades",
"badges": [
{
"name": "pro:pro_premium",
"verbose_name": "Premium"
}
],
"picture_url": "https://s3.tradingview.com/userpics/1412836-wqKa.png",
"mid_picture_url": "https://s3.tradingview.com/userpics/1412836-wqKa_mid.png",
"is_pro": true,
"pro_plan": "pro_premium",
"is_broker": false,
"broker_name": null,
"broker_plan": null
},
"image": {
"big": "https://s3.tradingview.com/m/MAx4fxBV_big.png",
"middle": "https://s3.tradingview.com/m/MAx4fxBV_mid.png",
"middle_webp": "https://s3.tradingview.com/m/MAx4fxBV_mid.webp",
"bg_color": "#ffffff"
},
"reputation": null,
"actions": null,
"is_liked": false,
"likes_count": 25
},
{
"id": 21794303,
"image_url": "DRYC5rIG",
"name": "#PEPE Smart Money Accumulation Signals Bullish Expansion Ahead",
"description": "Yello Paradisers! Are you seeing the clean bullish transition on #PEPE, or are you still getting lost in lower timeframe noise while smart money builds positions?\n\n💎#PEPEUSDT formed a clear Selling Climax (SC), where aggressive sell pressure was fully absorbed. This marked the likely end of the bearish phase and the beginning of accumulation.\n\n💎Price then delivered a strong Change of Character (CHoCH), breaking the previous bearish structure and signaling that momentum was shifting in favor of buyers.\n\n💎Following that, the market printed an Automatic Rally (AR), establishing a key resistance level and confirming the presence of bullish strength.\n\n💎The pullback that followed formed a clean Last Point of Support (LPS), where buyers stepped in again, preventing further downside and maintaining structure.\n\n💎A strong Bullish POI near the LPS was respected perfectly, with price reacting sharply from this zone, a clear sign of smart money accumulation.\n\n💎Since then, price has started to rally upward, indicating growing bullish momentum and a potential transition into the markup phase. As long as the LPS holds, the bias remains bullish.\n\n💎The primary target (Draw on Liquidity) sits at the Bearish POI, where price is likely to react next and where partial profits can be secured.\n\nDiscipline is key, Paradisers! Trust the structure, follow the sequence, and let the market confirm the move.\n\nMyCryptoParadise\niFeel the success 🌴",
"created_at": "2026-04-12T07:12:30+00:00",
"updated_at": null,
"date_timestamp": 1775977950,
"updated_date_timestamp": null,
"chart_url": "https://www.tradingview.com/chart/PEPEUSDT/DRYC5rIG-PEPE-Smart-Money-Accumulation-Signals-Bullish-Expansion-Ahead/",
"is_public": true,
"is_visible": true,
"is_video": false,
"is_education": false,
"is_script": false,
"is_picked": true,
"is_hot": true,
"is_platinum_broker_idea": false,
"script_type": null,
"script_access": null,
"script_id_part": null,
"version": null,
"script_package_id": null,
"video_duration": "0",
"video_cam": false,
"video_filename": null,
"comments_count": 23,
"views_count": 0,
"symbol": {
"name": "BINANCE:PEPEUSDT",
"full_name": "BINANCE:PEPEUSDT",
"short_name": "PEPEUSDT",
"exchange": "BINANCE",
"type": "spot",
"logo": {
"style": "single",
"logoid": "crypto/XTVCPEPE"
},
"logo_id": null,
"currency_logo_id": "crypto/XTVCUSDT",
"base_currency_logo_id": "crypto/XTVCPEPE",
"logo_urls": [
"https://s3-symbol-logo.tradingview.com/crypto/XTVCPEPE.svg",
"https://s3-symbol-logo.tradingview.com/crypto/XTVCUSDT.svg"
],
"interval": "480",
"direction": 1,
"badge": {
"label": "BINANCE:PEPEUSDT",
"url": "/symbols/PEPEUSDT/"
}
},
"user": {
"id": 3920910,
"username": "MyCryptoParadise",
"badges": [
{
"name": "pro:pro_premium",
"verbose_name": "Premium"
}
],
"picture_url": "https://s3.tradingview.com/userpics/3920910-NQcH.png",
"mid_picture_url": "https://s3.tradingview.com/userpics/3920910-NQcH_mid.png",
"is_pro": true,
"pro_plan": "pro_premium",
"is_broker": false,
"broker_name": null,
"broker_plan": null
},
"image": {
"big": "https://s3.tradingview.com/d/DRYC5rIG_big.png",
"middle": "https://s3.tradingview.com/d/DRYC5rIG_mid.png",
"middle_webp": "https://s3.tradingview.com/d/DRYC5rIG_mid.webp",
"bg_color": "#000000"
},
"reputation": null,
"actions": null,
"is_liked": false,
"likes_count": 138
}
],
"msg": "Success"
} Get TradingView minds list for a specific stock
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
symbol | string | ✓ | Stock symbol (e.g., AAPL) |
Query Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
lang | string | en | Language code (e.g., en, zh_CN) |
Request Examples
curl --request GET \
--url 'https://tradingview-data1.p.rapidapi.com/api/ideas/NASDAQ:AAPL/minds?lang=en' \
--header 'x-rapidapi-host: tradingview-data1.p.rapidapi.com' \
--header 'x-rapidapi-key: YOUR_RAPIDAPI_KEY' const symbol = 'NASDAQ:AAPL';
const params = new URLSearchParams({ lang: 'en' });
const response = await fetch(`https://tradingview-data1.p.rapidapi.com/api/ideas/${symbol}/minds?${params}`, {
method: 'GET',
headers: {
'x-rapidapi-host': 'tradingview-data1.p.rapidapi.com',
'x-rapidapi-key': 'YOUR_RAPIDAPI_KEY'
}
});
const data = await response.json();
console.log(data); import requests
symbol = "NASDAQ:AAPL"
url = f"https://tradingview-data1.p.rapidapi.com/api/ideas/{symbol}/minds"
params = {"lang": "en"}
headers = {
"x-rapidapi-host": "tradingview-data1.p.rapidapi.com",
"x-rapidapi-key": "YOUR_RAPIDAPI_KEY"
}
response = requests.get(url, params=params, headers=headers)
print(response.json()) Response Examples
{
"success": true,
"data": [
{
"symbols": {
"AAPL": "NASDAQ:AAPL"
},
"uid": "3rdYQ6DKRhCutEzz5uRvmA",
"url": "https://www.tradingview.com/symbols/NASDAQ-AAPL/minds/?mind=3rdYQ6DKRhCutEzz5uRvmA",
"text_ast": {
"type": "root",
"children": [
{
"type": "symbol",
"params": {
"text": "AAPL",
"symbol": "NASDAQ:AAPL",
"pageUrl": "/symbols/NASDAQ-AAPL/",
"logo": {
"style": "single",
"logoid": "apple"
},
"logoId": "apple",
"baseCurrencyLogoId": null,
"currencyLogoId": "country/US"
}
},
" 🧊 248 — we are heading there."
]
},
"author": {
"username": "DmitriiPaninDP",
"uri": "/u/DmitriiPaninDP/",
"is_broker": false,
"avatars": {
"small": "https://s3.tradingview.com/userpics/93393724-DEpA.png",
"mid": "https://s3.tradingview.com/userpics/93393724-DEpA_mid.png",
"big": "https://s3.tradingview.com/userpics/93393724-DEpA_big.png",
"orig": "https://s3.tradingview.com/userpics/93393724-DEpA_orig.png"
},
"badges": [
{
"name": "pro:pro",
"verbose_name": "Essential"
}
],
"is_followed": false
},
"created": "2026-04-20T23:28:17.311820+00:00",
"hidden": false,
"aliases": [
"stock@pn@NASDAQ:AAPL"
],
"total_likes": 4,
"total_comments": 3,
"text": "$AAPL 🧊 248 — we are heading there."
},
{
"symbols": {
"AAPL": "NASDAQ:AAPL"
},
"uid": "AHV9n5wdRd-7pQqsuvhw5g",
"url": "https://www.tradingview.com/symbols/NASDAQ-AAPL/minds/?mind=AHV9n5wdRd-7pQqsuvhw5g",
"text_ast": {
"type": "root",
"children": [
{
"type": "symbol",
"params": {
"text": "AAPL",
"symbol": "NASDAQ:AAPL",
"pageUrl": "/symbols/NASDAQ-AAPL/",
"logo": {
"style": "single",
"logoid": "apple"
},
"logoId": "apple",
"baseCurrencyLogoId": null,
"currencyLogoId": "country/US"
}
},
" Ignoring the news and buying the breakout .. lets see if goes down will add more but I doubt it will"
]
},
"author": {
"username": "IDONTKNOW2",
"uri": "/u/IDONTKNOW2/",
"is_broker": false,
"avatars": {
"small": "data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20viewBox=%220,0,20,20%22%20width=%2239%22%20height=%2239%22%3E%3Crect%20height=%2220%22%20width=%2220%22%20fill=%22hsl%28201,25%25,50%25%29%22/%3E%3Ctext%20fill=%22white%22%20x=%2210%22%20y=%2214.8%22%20font-size=%2214%22%20font-family=%22-apple-system,BlinkMacSystemFont,Trebuchet%20MS,Roboto,Ubuntu,sans-serif%22%20text-anchor=%22middle%22%3EI%3C/text%3E%3C/svg%3E",
"mid": "data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20viewBox=%220,0,20,20%22%20width=%2296%22%20height=%2296%22%3E%3Crect%20height=%2220%22%20width=%2220%22%20fill=%22hsl%28201,25%25,50%25%29%22/%3E%3Ctext%20fill=%22white%22%20x=%2210%22%20y=%2214.8%22%20font-size=%2214%22%20font-family=%22-apple-system,BlinkMacSystemFont,Trebuchet%20MS,Roboto,Ubuntu,sans-serif%22%20text-anchor=%22middle%22%3EI%3C/text%3E%3C/svg%3E",
"big": "data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20viewBox=%220,0,20,20%22%20width=%22320%22%20height=%22320%22%3E%3Crect%20height=%2220%22%20width=%2220%22%20fill=%22hsl%28201,25%25,50%25%29%22/%3E%3Ctext%20fill=%22white%22%20x=%2210%22%20y=%2214.8%22%20font-size=%2214%22%20font-family=%22-apple-system,BlinkMacSystemFont,Trebuchet%20MS,Roboto,Ubuntu,sans-serif%22%20text-anchor=%22middle%22%3EI%3C/text%3E%3C/svg%3E"
},
"badges": [
{
"name": "pro:pro",
"verbose_name": "Essential"
}
],
"is_followed": false
},
"created": "2026-04-20T22:22:22.884910+00:00",
"hidden": false,
"aliases": [
"stock@pn@NASDAQ:AAPL"
],
"total_likes": 1,
"total_comments": 0,
"text": "$AAPL Ignoring the news and buying the breakout .. lets see if goes down will add more but I doubt it will"
},
{
"symbols": {
"AAPL": "NASDAQ:AAPL"
},
"uid": "JuQEZfYiShGBH7HI9T1WZg",
"url": "https://www.tradingview.com/symbols/NASDAQ-AAPL/minds/?mind=JuQEZfYiShGBH7HI9T1WZg",
"text_ast": {
"type": "root",
"children": [
{
"type": "symbol",
"params": {
"text": "AAPL",
"symbol": "NASDAQ:AAPL",
"pageUrl": "/symbols/NASDAQ-AAPL/",
"logo": {
"style": "single",
"logoid": "apple"
},
"logoId": "apple",
"baseCurrencyLogoId": null,
"currencyLogoId": "country/US"
}
},
" isnt it good news that he is gone for good?"
]
},
"author": {
"username": "FI101581416151811",
"uri": "/u/FI101581416151811/",
"is_broker": false,
"avatars": {
"small": "https://s3.tradingview.com/userpics/76808800-xefb.png",
"mid": "https://s3.tradingview.com/userpics/76808800-xefb_mid.png",
"big": "https://s3.tradingview.com/userpics/76808800-xefb_big.png",
"orig": "https://s3.tradingview.com/userpics/76808800-xefb_orig.png"
},
"badges": [
{
"name": "pro:pro_premium",
"verbose_name": "Premium"
}
],
"is_followed": false
},
"created": "2026-04-20T21:01:22.058563+00:00",
"hidden": false,
"aliases": [
"stock@pn@NASDAQ:AAPL"
],
"total_likes": 8,
"total_comments": 0,
"text": "$AAPL isnt it good news that he is gone for good?"
},
{
"symbols": {
"AAPL": "NASDAQ:AAPL"
},
"uid": "Xng0v93eQ7mBRsYEqsaTuQ",
"url": "https://www.tradingview.com/symbols/NASDAQ-AAPL/minds/?mind=Xng0v93eQ7mBRsYEqsaTuQ",
"text_ast": {
"type": "root",
"children": [
{
"type": "symbol",
"params": {
"text": "AAPL",
"symbol": "NASDAQ:AAPL",
"pageUrl": "/symbols/NASDAQ-AAPL/",
"logo": {
"style": "single",
"logoid": "apple"
},
"logoId": "apple",
"baseCurrencyLogoId": null,
"currencyLogoId": "country/US"
}
},
" Tim Apple steps down"
]
},
"author": {
"username": "biglystonk",
"uri": "/u/biglystonk/",
"is_broker": false,
"avatars": {
"small": "https://s3.tradingview.com/userpics/114394493-sV4p.png",
"mid": "https://s3.tradingview.com/userpics/114394493-sV4p_mid.png",
"big": "https://s3.tradingview.com/userpics/114394493-sV4p_big.png",
"orig": "https://s3.tradingview.com/userpics/114394493-sV4p_orig.png"
},
"badges": [
{
"name": "pro:pro",
"verbose_name": "Essential"
}
],
"is_followed": false
},
"created": "2026-04-20T20:51:56.053303+00:00",
"hidden": false,
"aliases": [
"stock@pn@NASDAQ:AAPL"
],
"total_likes": 7,
"total_comments": 1,
"text": "$AAPL Tim Apple steps down",
"modified": "2026-04-20T20:52:06.928817+00:00"
},
{
"symbols": {
"AAPL": "NASDAQ:AAPL"
},
"uid": "j9yzI0HtS76Ezni8m8U2iQ",
"url": "https://www.tradingview.com/symbols/NASDAQ-AAPL/minds/?mind=j9yzI0HtS76Ezni8m8U2iQ",
"text_ast": {
"type": "root",
"children": [
{
"type": "symbol",
"params": {
"text": "AAPL",
"symbol": "NASDAQ:AAPL",
"pageUrl": "/symbols/NASDAQ-AAPL/",
"logo": {
"style": "single",
"logoid": "apple"
},
"logoId": "apple",
"baseCurrencyLogoId": null,
"currencyLogoId": "country/US"
}
},
" how is this not dumping"
]
},
"author": {
"username": "cashmoneyv1",
"uri": "/u/cashmoneyv1/",
"is_broker": false,
"avatars": {
"small": "data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20viewBox=%220,0,20,20%22%20width=%2239%22%20height=%2239%22%3E%3Crect%20height=%2220%22%20width=%2220%22%20fill=%22hsl%28234,25%25,50%25%29%22/%3E%3Ctext%20fill=%22white%22%20x=%2210%22%20y=%2214.8%22%20font-size=%2214%22%20font-family=%22-apple-system,BlinkMacSystemFont,Trebuchet%20MS,Roboto,Ubuntu,sans-serif%22%20text-anchor=%22middle%22%3EC%3C/text%3E%3C/svg%3E",
"mid": "data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20viewBox=%220,0,20,20%22%20width=%2296%22%20height=%2296%22%3E%3Crect%20height=%2220%22%20width=%2220%22%20fill=%22hsl%28234,25%25,50%25%29%22/%3E%3Ctext%20fill=%22white%22%20x=%2210%22%20y=%2214.8%22%20font-size=%2214%22%20font-family=%22-apple-system,BlinkMacSystemFont,Trebuchet%20MS,Roboto,Ubuntu,sans-serif%22%20text-anchor=%22middle%22%3EC%3C/text%3E%3C/svg%3E",
"big": "data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20viewBox=%220,0,20,20%22%20width=%22320%22%20height=%22320%22%3E%3Crect%20height=%2220%22%20width=%2220%22%20fill=%22hsl%28234,25%25,50%25%29%22/%3E%3Ctext%20fill=%22white%22%20x=%2210%22%20y=%2214.8%22%20font-size=%2214%22%20font-family=%22-apple-system,BlinkMacSystemFont,Trebuchet%20MS,Roboto,Ubuntu,sans-serif%22%20text-anchor=%22middle%22%3EC%3C/text%3E%3C/svg%3E"
},
"badges": [
{
"name": "pro:pro_premium",
"verbose_name": "Premium"
}
],
"is_followed": false
},
"created": "2026-04-20T20:47:38.143486+00:00",
"hidden": false,
"aliases": [
"stock@pn@NASDAQ:AAPL"
],
"total_likes": 5,
"total_comments": 0,
"text": "$AAPL how is this not dumping"
},
{
"symbols": {
"AAPL": "NASDAQ:AAPL"
},
"uid": "wkXxJy00Sh6HAdflkn2UxQ",
"url": "https://www.tradingview.com/symbols/NASDAQ-AAPL/minds/?mind=wkXxJy00Sh6HAdflkn2UxQ",
"text_ast": {
"type": "root",
"children": [
{
"type": "symbol",
"params": {
"text": "AAPL",
"symbol": "NASDAQ:AAPL",
"pageUrl": "/symbols/NASDAQ-AAPL/",
"logo": {
"style": "single",
"logoid": "apple"
},
"logoId": "apple",
"baseCurrencyLogoId": null,
"currencyLogoId": "country/US"
}
},
" 100% gamble"
]
},
"author": {
"username": "howdy_all",
"uri": "/u/howdy_all/",
"is_broker": false,
"avatars": {
"small": "data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20viewBox=%220,0,20,20%22%20width=%2239%22%20height=%2239%22%3E%3Crect%20height=%2220%22%20width=%2220%22%20fill=%22hsl%28333,25%25,50%25%29%22/%3E%3Ctext%20fill=%22white%22%20x=%2210%22%20y=%2214.8%22%20font-size=%2214%22%20font-family=%22-apple-system,BlinkMacSystemFont,Trebuchet%20MS,Roboto,Ubuntu,sans-serif%22%20text-anchor=%22middle%22%3EH%3C/text%3E%3C/svg%3E",
"mid": "data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20viewBox=%220,0,20,20%22%20width=%2296%22%20height=%2296%22%3E%3Crect%20height=%2220%22%20width=%2220%22%20fill=%22hsl%28333,25%25,50%25%29%22/%3E%3Ctext%20fill=%22white%22%20x=%2210%22%20y=%2214.8%22%20font-size=%2214%22%20font-family=%22-apple-system,BlinkMacSystemFont,Trebuchet%20MS,Roboto,Ubuntu,sans-serif%22%20text-anchor=%22middle%22%3EH%3C/text%3E%3C/svg%3E",
"big": "data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20viewBox=%220,0,20,20%22%20width=%22320%22%20height=%22320%22%3E%3Crect%20height=%2220%22%20width=%2220%22%20fill=%22hsl%28333,25%25,50%25%29%22/%3E%3Ctext%20fill=%22white%22%20x=%2210%22%20y=%2214.8%22%20font-size=%2214%22%20font-family=%22-apple-system,BlinkMacSystemFont,Trebuchet%20MS,Roboto,Ubuntu,sans-serif%22%20text-anchor=%22middle%22%3EH%3C/text%3E%3C/svg%3E"
},
"badges": [
{
"name": "pro:pro_expert",
"verbose_name": "Expert"
}
],
"is_followed": false
},
"created": "2026-04-20T18:16:03.367622+00:00",
"hidden": false,
"aliases": [
"stock@pn@NASDAQ:AAPL"
],
"total_likes": 1,
"total_comments": 0,
"text": "$AAPL 100% gamble"
},
{
"symbols": {
"AAPL": "NASDAQ:AAPL"
},
"snapshot_id": "FKAPw9xf",
"uid": "N5H-DUO0TJOEdKT077yFWQ",
"url": "https://www.tradingview.com/symbols/NASDAQ-AAPL/minds/?mind=N5H-DUO0TJOEdKT077yFWQ",
"text_ast": {
"type": "root",
"children": [
{
"type": "symbol",
"params": {
"text": "AAPL",
"symbol": "NASDAQ:AAPL",
"pageUrl": "/symbols/NASDAQ-AAPL/",
"logo": {
"style": "single",
"logoid": "apple"
},
"logoId": "apple",
"baseCurrencyLogoId": null,
"currencyLogoId": "country/US"
}
},
" Just go down"
]
},
"author": {
"username": "c3rberuz",
"uri": "/u/c3rberuz/",
"is_broker": false,
"avatars": {
"small": "https://s3.tradingview.com/userpics/2660363-41Ve.png",
"mid": "https://s3.tradingview.com/userpics/2660363-41Ve_mid.png",
"big": "https://s3.tradingview.com/userpics/2660363-41Ve_big.png",
"orig": "https://s3.tradingview.com/userpics/2660363-41Ve_orig.png"
},
"badges": [],
"is_followed": false
},
"created": "2026-04-20T17:43:41.640813+00:00",
"hidden": false,
"aliases": [
"stock@pn@NASDAQ:AAPL"
],
"snapshot_url": "https://s3.tradingview.com/snapshots/f/FKAPw9xf.png",
"total_likes": 3,
"total_comments": 0,
"text": "$AAPL Just go down"
},
{
"symbols": {
"AAPL": "NASDAQ:AAPL"
},
"uid": "WT-A3YiGTUivH-ieQRnAig",
"url": "https://www.tradingview.com/symbols/NASDAQ-AAPL/minds/?mind=WT-A3YiGTUivH-ieQRnAig",
"text_ast": {
"type": "root",
"children": [
{
"type": "symbol",
"params": {
"text": "AAPL",
"symbol": "NASDAQ:AAPL",
"pageUrl": "/symbols/NASDAQ-AAPL/",
"logo": {
"style": "single",
"logoid": "apple"
},
"logoId": "apple",
"baseCurrencyLogoId": null,
"currencyLogoId": "country/US"
}
},
" every time when 6-7 red least 1-2 green, then red ones dips hard the green ones gaps hard lmaooo"
]
},
"author": {
"username": "QuantumXL",
"uri": "/u/QuantumXL/",
"is_broker": false,
"avatars": {
"small": "data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20viewBox=%220,0,20,20%22%20width=%2239%22%20height=%2239%22%3E%3Crect%20height=%2220%22%20width=%2220%22%20fill=%22hsl%28321,25%25,50%25%29%22/%3E%3Ctext%20fill=%22white%22%20x=%2210%22%20y=%2214.8%22%20font-size=%2214%22%20font-family=%22-apple-system,BlinkMacSystemFont,Trebuchet%20MS,Roboto,Ubuntu,sans-serif%22%20text-anchor=%22middle%22%3EQ%3C/text%3E%3C/svg%3E",
"mid": "data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20viewBox=%220,0,20,20%22%20width=%2296%22%20height=%2296%22%3E%3Crect%20height=%2220%22%20width=%2220%22%20fill=%22hsl%28321,25%25,50%25%29%22/%3E%3Ctext%20fill=%22white%22%20x=%2210%22%20y=%2214.8%22%20font-size=%2214%22%20font-family=%22-apple-system,BlinkMacSystemFont,Trebuchet%20MS,Roboto,Ubuntu,sans-serif%22%20text-anchor=%22middle%22%3EQ%3C/text%3E%3C/svg%3E",
"big": "data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20viewBox=%220,0,20,20%22%20width=%22320%22%20height=%22320%22%3E%3Crect%20height=%2220%22%20width=%2220%22%20fill=%22hsl%28321,25%25,50%25%29%22/%3E%3Ctext%20fill=%22white%22%20x=%2210%22%20y=%2214.8%22%20font-size=%2214%22%20font-family=%22-apple-system,BlinkMacSystemFont,Trebuchet%20MS,Roboto,Ubuntu,sans-serif%22%20text-anchor=%22middle%22%3EQ%3C/text%3E%3C/svg%3E"
},
"badges": [],
"is_followed": false
},
"created": "2026-04-20T17:41:25.511343+00:00",
"hidden": false,
"aliases": [
"stock@pn@NASDAQ:AAPL"
],
"total_likes": 0,
"total_comments": 0,
"text": "$AAPL every time when 6-7 red least 1-2 green, then red ones dips hard the green ones gaps hard lmaooo"
},
{
"symbols": {
"AAPL": "NASDAQ:AAPL"
},
"uid": "LYF1r3BsTMOONNm3l20WuQ",
"url": "https://www.tradingview.com/symbols/NASDAQ-AAPL/minds/?mind=LYF1r3BsTMOONNm3l20WuQ",
"text_ast": {
"type": "root",
"children": [
{
"type": "symbol",
"params": {
"text": "AAPL",
"symbol": "NASDAQ:AAPL",
"pageUrl": "/symbols/NASDAQ-AAPL/",
"logo": {
"style": "single",
"logoid": "apple"
},
"logoId": "apple",
"baseCurrencyLogoId": null,
"currencyLogoId": "country/US"
}
},
" caution with the war and the DJI hanging by a thread. Might look healthy but this market is in a hyper manic state. Be careful with Apple"
]
},
"author": {
"username": "Crypto_on_my_mind",
"uri": "/u/Crypto_on_my_mind/",
"is_broker": false,
"avatars": {
"small": "data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20viewBox=%220,0,20,20%22%20width=%2239%22%20height=%2239%22%3E%3Crect%20height=%2220%22%20width=%2220%22%20fill=%22hsl%28111,25%25,50%25%29%22/%3E%3Ctext%20fill=%22white%22%20x=%2210%22%20y=%2214.8%22%20font-size=%2214%22%20font-family=%22-apple-system,BlinkMacSystemFont,Trebuchet%20MS,Roboto,Ubuntu,sans-serif%22%20text-anchor=%22middle%22%3EC%3C/text%3E%3C/svg%3E",
"mid": "data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20viewBox=%220,0,20,20%22%20width=%2296%22%20height=%2296%22%3E%3Crect%20height=%2220%22%20width=%2220%22%20fill=%22hsl%28111,25%25,50%25%29%22/%3E%3Ctext%20fill=%22white%22%20x=%2210%22%20y=%2214.8%22%20font-size=%2214%22%20font-family=%22-apple-system,BlinkMacSystemFont,Trebuchet%20MS,Roboto,Ubuntu,sans-serif%22%20text-anchor=%22middle%22%3EC%3C/text%3E%3C/svg%3E",
"big": "data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20viewBox=%220,0,20,20%22%20width=%22320%22%20height=%22320%22%3E%3Crect%20height=%2220%22%20width=%2220%22%20fill=%22hsl%28111,25%25,50%25%29%22/%3E%3Ctext%20fill=%22white%22%20x=%2210%22%20y=%2214.8%22%20font-size=%2214%22%20font-family=%22-apple-system,BlinkMacSystemFont,Trebuchet%20MS,Roboto,Ubuntu,sans-serif%22%20text-anchor=%22middle%22%3EC%3C/text%3E%3C/svg%3E"
},
"badges": [
{
"name": "pro:pro",
"verbose_name": "Essential"
}
],
"is_followed": false
},
"created": "2026-04-20T00:32:11.874970+00:00",
"hidden": false,
"aliases": [
"stock@pn@NASDAQ:AAPL"
],
"total_likes": 5,
"total_comments": 0,
"text": "$AAPL caution with the war and the DJI hanging by a thread. Might look healthy but this market is in a hyper manic state. Be careful with Apple"
},
{
"symbols": {
"AAPL": "NASDAQ:AAPL"
},
"snapshot_id": "1ec3T3ol",
"uid": "nJDgY1gzQQCa8wGgEH94jQ",
"url": "https://www.tradingview.com/symbols/NASDAQ-AAPL/minds/?mind=nJDgY1gzQQCa8wGgEH94jQ",
"text_ast": {
"type": "root",
"children": [
{
"type": "symbol",
"params": {
"text": "AAPL",
"symbol": "NASDAQ:AAPL",
"pageUrl": "/symbols/NASDAQ-AAPL/",
"logo": {
"style": "single",
"logoid": "apple"
},
"logoId": "apple",
"baseCurrencyLogoId": null,
"currencyLogoId": "country/US"
}
},
" \"time freeze\" clean"
]
},
"author": {
"username": "SimonTheBeeKeeper",
"uri": "/u/SimonTheBeeKeeper/",
"is_broker": false,
"avatars": {
"small": "https://s3.tradingview.com/userpics/924968-FTOF.png",
"mid": "https://s3.tradingview.com/userpics/924968-FTOF_mid.png",
"big": "https://s3.tradingview.com/userpics/924968-FTOF_big.png",
"orig": "https://s3.tradingview.com/userpics/924968-FTOF_orig.png"
},
"badges": [],
"is_followed": false
},
"created": "2026-04-18T06:09:32.273990+00:00",
"hidden": false,
"aliases": [
"stock@pn@NASDAQ:AAPL"
],
"snapshot_url": "https://s3.tradingview.com/snapshots/1/1ec3T3ol.png",
"total_likes": 14,
"total_comments": 1,
"text": "$AAPL \"time freeze\" clean"
}
],
"msg": "Success"
} Get TradingView ideas list by stock symbol, supports pagination
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
symbol | string | ✓ | Stock symbol (e.g., NASDAQ:AAPL) |
Query Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
page | integer | 1 | Page number (default: 1) | |
per_page | integer | 20 | Items per page (default: 20) | |
lang | string | en | Language code (e.g., en, zh_CN) |
Request Examples
curl --request GET \
--url 'https://tradingview-data1.p.rapidapi.com/api/ideas/list/NASDAQ:AAPL?page=1&per_page=20&lang=en' \
--header 'x-rapidapi-host: tradingview-data1.p.rapidapi.com' \
--header 'x-rapidapi-key: YOUR_RAPIDAPI_KEY' const symbol = 'NASDAQ:AAPL';
const params = new URLSearchParams({ page: '1', per_page: '20', lang: 'en' });
const response = await fetch(`https://tradingview-data1.p.rapidapi.com/api/ideas/list/${symbol}?${params}`, {
method: 'GET',
headers: {
'x-rapidapi-host': 'tradingview-data1.p.rapidapi.com',
'x-rapidapi-key': 'YOUR_RAPIDAPI_KEY'
}
});
const data = await response.json();
console.log(data); import requests
symbol = "NASDAQ:AAPL"
url = f"https://tradingview-data1.p.rapidapi.com/api/ideas/list/{symbol}"
params = {"page": 1, "per_page": 20, "lang": "en"}
headers = {
"x-rapidapi-host": "tradingview-data1.p.rapidapi.com",
"x-rapidapi-key": "YOUR_RAPIDAPI_KEY"
}
response = requests.get(url, params=params, headers=headers)
print(response.json()) Response Examples
{
"success": true,
"data": [
{
"id": 21851695,
"image_url": "WgdZsc11",
"name": "Apple Inc (AAPL): Stock Approaches Resistance, Anticipate Sell",
"description": "Apple (AAPL) stock is trading around $271-$273, with a market cap of over $4 trillion. the major news shaking the market is that CEO Tim Cook will step down on Sept. 1 to become executive chairman, with John Ternus taking over as CEO, causing a slight dip in Apple stock.\n\nTechnical outlook:\nThe stock have been on bullish scale for the past two weeks now, with over 5.48%. price is seen heading towards the resistance and supply zone in respect of the structure, as we expect a significant retracement between $275-$284.40 levels.\n\nPossible outline:\nA confirmed reverse at this point, triggers a sell down to $257.87-$246.97 as the potential bearish.\n\nThanks for reading.\n",
"created_at": "2026-04-21T09:18:52+00:00",
"updated_at": null,
"date_timestamp": 1776763132,
"updated_date_timestamp": null,
"chart_url": "https://cn.tradingview.com/chart/AAPL/WgdZsc11-Apple-Inc-AAPL-Stock-Approaches-Resistance-Anticipate-Sell/",
"is_public": true,
"is_visible": true,
"is_video": false,
"is_education": false,
"is_script": false,
"is_picked": false,
"is_hot": true,
"is_platinum_broker_idea": false,
"script_type": null,
"script_access": null,
"script_id_part": null,
"version": null,
"script_package_id": null,
"video_duration": "0",
"video_cam": false,
"video_filename": null,
"comments_count": 0,
"views_count": 0,
"symbol": {
"name": "NASDAQ:AAPL",
"full_name": "NASDAQ:AAPL",
"short_name": "AAPL",
"exchange": "NASDAQ",
"type": "stock",
"logo": {
"style": "single",
"logoid": "apple"
},
"logo_id": "apple",
"currency_logo_id": "country/US",
"base_currency_logo_id": null,
"logo_urls": [
"https://s3-symbol-logo.tradingview.com/apple.svg"
],
"interval": "240",
"direction": 2,
"badge": {
"label": "NASDAQ:AAPL",
"url": "/symbols/NASDAQ-AAPL/"
}
},
"user": {
"id": 34169602,
"username": "Blaisefxacademy",
"badges": [],
"picture_url": "https://s3.tradingview.com/userpics/34169602-B4G7.png",
"mid_picture_url": "https://s3.tradingview.com/userpics/34169602-B4G7_mid.png",
"is_pro": false,
"pro_plan": "",
"is_broker": false,
"broker_name": null,
"broker_plan": null
},
"image": {
"big": "https://s3.tradingview.com/w/WgdZsc11_big.png",
"middle": "https://s3.tradingview.com/w/WgdZsc11_mid.png",
"middle_webp": "https://s3.tradingview.com/w/WgdZsc11_mid.webp",
"bg_color": "#131722"
},
"reputation": null,
"actions": null,
"is_liked": false,
"likes_count": 1
},
{
"id": 21848515,
"image_url": "8LnGpJNe",
"name": "APPLE: Last short opportunity of the Bear Cycle.",
"description": "Apple is bullish on its 1D technical outlook (RSI = 66.506, MACD = 2.180, ADX = 26.987) but this move is reaching its end as the price is almost at the top of the Bear Cycle's Channel Down. That is the exact same pattern of start of the 2022 Bear Cycle. All patterns and sequences that led to both Channels have been identical and are all part of a wider Channel Up, which has to technically correct now. Like then, the Target is the 1W MA200 on the 0.618 Fibonacci retracement (TP = 210.00).\n\nSee how our prior idea has worked out:\n\n \n\n ## If you like our free content follow our profile to get more daily ideas. ##\n\n## Comments and likes are greatly appreciated. ##",
"created_at": "2026-04-20T19:39:19+00:00",
"updated_at": null,
"date_timestamp": 1776713959,
"updated_date_timestamp": null,
"chart_url": "https://cn.tradingview.com/chart/AAPL/8LnGpJNe-APPLE-Last-short-opportunity-of-the-Bear-Cycle/",
"is_public": true,
"is_visible": true,
"is_video": false,
"is_education": false,
"is_script": false,
"is_picked": false,
"is_hot": true,
"is_platinum_broker_idea": false,
"script_type": null,
"script_access": null,
"script_id_part": null,
"version": null,
"script_package_id": null,
"video_duration": "0",
"video_cam": false,
"video_filename": null,
"comments_count": 0,
"views_count": 0,
"symbol": {
"name": "NASDAQ:AAPL",
"full_name": "NASDAQ:AAPL",
"short_name": "AAPL",
"exchange": "NASDAQ",
"type": "stock",
"logo": {
"style": "single",
"logoid": "apple"
},
"logo_id": "apple",
"currency_logo_id": "country/US",
"base_currency_logo_id": null,
"logo_urls": [
"https://s3-symbol-logo.tradingview.com/apple.svg"
],
"interval": "1W",
"direction": 2,
"badge": {
"label": "NASDAQ:AAPL",
"url": "/symbols/NASDAQ-AAPL/"
}
},
"user": {
"id": 2935073,
"username": "InvestingScope",
"badges": [
{
"name": "pro:pro_premium",
"verbose_name": "Premium"
}
],
"picture_url": "https://s3.tradingview.com/userpics/2935073-szBu.png",
"mid_picture_url": "https://s3.tradingview.com/userpics/2935073-szBu_mid.png",
"is_pro": true,
"pro_plan": "pro_premium",
"is_broker": false,
"broker_name": null,
"broker_plan": null
},
"image": {
"big": "https://s3.tradingview.com/8/8LnGpJNe_big.png",
"middle": "https://s3.tradingview.com/8/8LnGpJNe_mid.png",
"middle_webp": "https://s3.tradingview.com/8/8LnGpJNe_mid.webp",
"bg_color": "#ffffff"
},
"reputation": null,
"actions": null,
"is_liked": false,
"likes_count": 4
},
{
"id": 21847066,
"image_url": "ePkX43HZ",
"name": "Apple Wave Analysis – 20 April 2026 \t",
"description": "\t\n- Apple broke weekly Triangle\n- Likely to rise to resistance level 280.00\n\nApple recently broke the resistance area between the long-term resistance level 265.0, resistance trendline of the weekly Triangle from 2025 and the 50% Fibonacci correction of the downward impulse from December.\n\t\nThe breakout of this resistance area accelerated the active short-term impulse wave 3 of the intermediate impulse wave (3) from March.\n\nGiven the clear daily uptrend, Apple can be expected to rise to the next resistance level 280.00, which stopped wave (1) in February.\n",
"created_at": "2026-04-20T15:11:48+00:00",
"updated_at": null,
"date_timestamp": 1776697908,
"updated_date_timestamp": null,
"chart_url": "https://cn.tradingview.com/chart/AAPL/ePkX43HZ-Apple-Wave-Analysis-20-April-2026/",
"is_public": true,
"is_visible": true,
"is_video": false,
"is_education": false,
"is_script": false,
"is_picked": false,
"is_hot": true,
"is_platinum_broker_idea": true,
"script_type": null,
"script_access": null,
"script_id_part": null,
"version": null,
"script_package_id": null,
"video_duration": "0",
"video_cam": false,
"video_filename": null,
"comments_count": 0,
"views_count": 0,
"symbol": {
"name": "NASDAQ:AAPL",
"full_name": "NASDAQ:AAPL",
"short_name": "AAPL",
"exchange": "NASDAQ",
"type": "stock",
"logo": {
"style": "single",
"logoid": "apple"
},
"logo_id": "apple",
"currency_logo_id": "country/US",
"base_currency_logo_id": null,
"logo_urls": [
"https://s3-symbol-logo.tradingview.com/apple.svg"
],
"interval": "1D",
"direction": 1,
"badge": {
"label": "NASDAQ:AAPL",
"url": "/symbols/NASDAQ-AAPL/"
}
},
"user": {
"id": 52419268,
"username": "FxPro",
"badges": [
{
"name": "broker:platinum",
"verbose_name": "Platinum partner"
}
],
"picture_url": "https://s3.tradingview.com/userpics/52419268-747g.png",
"mid_picture_url": "https://s3.tradingview.com/userpics/52419268-747g_mid.png",
"is_pro": true,
"pro_plan": "pro_premium_expert",
"is_broker": true,
"broker_name": "FxPro",
"broker_plan": "platinum"
},
"image": {
"big": "https://s3.tradingview.com/e/ePkX43HZ_big.png",
"middle": "https://s3.tradingview.com/e/ePkX43HZ_mid.png",
"middle_webp": "https://s3.tradingview.com/e/ePkX43HZ_mid.webp",
"bg_color": "#0d1421"
},
"reputation": null,
"actions": null,
"is_liked": false,
"likes_count": 2
},
{
"id": 21846092,
"image_url": "oO7qbxTo",
"name": "AAPL Top-Down Analysis | Liquidity Sweeps & Wick Behavior | APR ",
"description": "n today’s review of Apple (AAPL), I walk through my top-down analysis process with a focus on how liquidity interacts with price, especially through candles with wicks.\n\nThe goal of this breakdown is to understand how price uses liquidity as fuel. Wicks are not random, they often represent areas where liquidity is taken before the market makes its next move.\n\nUsing a top-down approach, I start from the higher timeframe to build context and then work down into the intraday structure to refine the analysis.\n\nRather than guessing direction, the focus is on building confluence — using multiple context clues from price action, structure, and liquidity behavior to form an educated perspective on where price may move next.\n\nIn this video, I cover:\n\n• How liquidity interacts with candles and creates momentum\n• Why wicks often signal liquidity grabs\n• Using a top-down approach to understand price behavior\n• Building confluence through structure and price clues\n\nThis approach is designed to help traders read the market with more clarity and patience, focusing on how price moves rather than trying to predict it.\n\nAs always, the focus remains on confirmation over prediction.",
"created_at": "2026-04-20T12:42:43+00:00",
"updated_at": null,
"date_timestamp": 1776688963,
"updated_date_timestamp": null,
"chart_url": "https://cn.tradingview.com/chart/AAPL/oO7qbxTo-AAPL-Top-Down-Analysis-Liquidity-Sweeps-Wick-Behavior-APR/",
"is_public": true,
"is_visible": true,
"is_video": true,
"is_education": false,
"is_script": false,
"is_picked": false,
"is_hot": true,
"is_platinum_broker_idea": false,
"script_type": null,
"script_access": null,
"script_id_part": null,
"version": null,
"script_package_id": null,
"video_duration": "667",
"video_cam": false,
"video_filename": "https://video-ideas.tradingview.com/7/7271462-QPctvfMZe2eeYiSo.mp4",
"comments_count": 0,
"views_count": 0,
"symbol": {
"name": "NASDAQ:AAPL",
"full_name": "NASDAQ:AAPL",
"short_name": "AAPL",
"exchange": "NASDAQ",
"type": "stock",
"logo": {
"style": "single",
"logoid": "apple"
},
"logo_id": "apple",
"currency_logo_id": "country/US",
"base_currency_logo_id": null,
"logo_urls": [
"https://s3-symbol-logo.tradingview.com/apple.svg"
],
"interval": "240",
"direction": 0,
"badge": {
"label": "NASDAQ:AAPL",
"url": "/symbols/NASDAQ-AAPL/"
}
},
"user": {
"id": 7271462,
"username": "davekclinton76",
"badges": [
{
"name": "pro:pro_premium",
"verbose_name": "Premium"
}
],
"picture_url": "https://s3.tradingview.com/userpics/7271462-m8pV.png",
"mid_picture_url": "https://s3.tradingview.com/userpics/7271462-m8pV_mid.png",
"is_pro": true,
"pro_plan": "pro_premium",
"is_broker": false,
"broker_name": null,
"broker_plan": null
},
"image": {
"big": "https://s3.tradingview.com/o/oO7qbxTo_big.png",
"middle": "https://s3.tradingview.com/o/oO7qbxTo_mid.png",
"middle_webp": "https://s3.tradingview.com/o/oO7qbxTo_mid.webp",
"bg_color": "#131722"
},
"reputation": null,
"actions": null,
"is_liked": false,
"likes_count": 0
},
{
"id": 21845992,
"image_url": "rKeNBbha",
"name": "Apple Inc. (AAPL) Tradespoon – Long Setup $267.24",
"description": "Tradespoon model shows a long bias for NASDAQ:AAPL . Predicted range: $267.24–$271.27. Trend: +0.11% (tight consolidation with gradual upside potential). NASDAQ:AAPL ",
"created_at": "2026-04-20T12:23:39+00:00",
"updated_at": null,
"date_timestamp": 1776687819,
"updated_date_timestamp": null,
"chart_url": "https://cn.tradingview.com/chart/AAPL/rKeNBbha-Apple-Inc-AAPL-Tradespoon-Long-Setup-267-24/",
"is_public": true,
"is_visible": true,
"is_video": false,
"is_education": false,
"is_script": false,
"is_picked": false,
"is_hot": true,
"is_platinum_broker_idea": false,
"script_type": null,
"script_access": null,
"script_id_part": null,
"version": null,
"script_package_id": null,
"video_duration": "0",
"video_cam": false,
"video_filename": null,
"comments_count": 0,
"views_count": 0,
"symbol": {
"name": "NASDAQ:AAPL",
"full_name": "NASDAQ:AAPL",
"short_name": "AAPL",
"exchange": "NASDAQ",
"type": "stock",
"logo": {
"style": "single",
"logoid": "apple"
},
"logo_id": "apple",
"currency_logo_id": "country/US",
"base_currency_logo_id": null,
"logo_urls": [
"https://s3-symbol-logo.tradingview.com/apple.svg"
],
"interval": "1D",
"direction": 1,
"badge": {
"label": "NASDAQ:AAPL",
"url": "/symbols/NASDAQ-AAPL/"
}
},
"user": {
"id": 977641,
"username": "yellowtunnel",
"badges": [
{
"name": "pro:pro",
"verbose_name": "Essential"
}
],
"picture_url": "https://s3.tradingview.com/userpics/977641-hgAA.png",
"mid_picture_url": "https://s3.tradingview.com/userpics/977641-hgAA_mid.png",
"is_pro": true,
"pro_plan": "pro",
"is_broker": false,
"broker_name": null,
"broker_plan": null
},
"image": {
"big": "https://s3.tradingview.com/r/rKeNBbha_big.png",
"middle": "https://s3.tradingview.com/r/rKeNBbha_mid.png",
"middle_webp": "https://s3.tradingview.com/r/rKeNBbha_mid.webp",
"bg_color": "#ffffff"
},
"reputation": null,
"actions": null,
"is_liked": false,
"likes_count": 1
}
],
"msg": "Success"
} Get detailed content of community idea by image_url
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
imageUrl | string | ✓ | Idea image URL (from image_url field in list) |
Request Examples
curl --request GET \
--url 'https://tradingview-data1.p.rapidapi.com/api/ideas/LfKFTY2N' \
--header 'x-rapidapi-host: tradingview-data1.p.rapidapi.com' \
--header 'x-rapidapi-key: YOUR_RAPIDAPI_KEY' const imageUrl = 'LfKFTY2N';
const response = await fetch(`https://tradingview-data1.p.rapidapi.com/api/ideas/${imageUrl}`, {
method: 'GET',
headers: {
'x-rapidapi-host': 'tradingview-data1.p.rapidapi.com',
'x-rapidapi-key': 'YOUR_RAPIDAPI_KEY'
}
});
const data = await response.json();
console.log(data); import requests
image_url = "LfKFTY2N"
url = f"https://tradingview-data1.p.rapidapi.com/api/ideas/{image_url}"
headers = {
"x-rapidapi-host": "tradingview-data1.p.rapidapi.com",
"x-rapidapi-key": "YOUR_RAPIDAPI_KEY"
}
response = requests.get(url, headers=headers)
print(response.json()) Response Examples
{
"success": true,
"data": {
"id": 21599612,
"uuid": "LfKFTY2N",
"chart_url": "/chart/XAUUSD/LfKFTY2N-XAUUSD-Rejection-From-5-240-May-Send-Price-to-5-090/",
"is_script": false,
"name": "XAUUSD Rejection From 5,240 May Send Price to 5,090",
"description": "Hello traders! Here’s my technical outlook based on the current XAUUSD (3H) chart structure. Gold previously moved in a bullish ascending channel, forming higher highs and higher lows while respecting the rising support line. The rally eventually reached the 5,240 Seller Zone, where strong resistance triggered a sharp rejection and pushed price lower. After this drop, the market stabilized near the 5,090 Buyer Zone, where buyers prevented further decline. Since then, price has been consolidating inside a range between 5,240 resistance and 5,090 support. Currently, gold is testing the upper resistance area while also facing pressure from a descending resistance line, creating a potential rejection zone. My primary scenario remains neutral-to-bearish near resistance while the market trades below the descending resistance line and the 5,240 supply zone. If sellers defend this area once again, price could decline toward the 5,090 support level, which represents the next downside target (TP1) and aligns with the lower boundary of the current range. Please share this idea with your friends and click Boost 🚀",
"interval": "180",
"direction": 2,
"webp_url": "https://s3.tradingview.com/l/LfKFTY2N_mid.webp",
"user": {
"username": "LegionQ8",
"uri": "/u/LegionQ8/",
"is_broker": false,
"avatars": {
"small": "https://s3.tradingview.com/userpics/50479193-AP0U.png",
"mid": "https://s3.tradingview.com/userpics/50479193-AP0U_mid.png",
"big": "https://s3.tradingview.com/userpics/50479193-AP0U_big.png",
"orig": "https://s3.tradingview.com/userpics/50479193-AP0U_orig.png"
},
"badges": [
{
"name": "pro:pro_premium",
"verbose_name": "Premium"
}
]
},
"symbol": {
"pro_symbol": "FOREXCOM:XAUUSD",
"short_name": "XAUUSD",
"exchange": "FOREXCOM",
"type": "commodity",
"typespecs": [
"cfd"
],
"tv_symbol_page_url_force_exchange": [
"/symbols/XAUUSD/",
"?exchange=FOREXCOM"
],
"ticker_title": "Gold Spot / U.S. Dollar",
"instrument_name": "Gold Spot / U.S. Dollar",
"medium_logo_urls": [
"https://s3-symbol-logo.tradingview.com/metal/gold.svg"
],
"logo": {
"style": "single",
"logoid": "metal/gold"
},
"logo_id": "metal/gold",
"currency_logo_id": "country/US",
"country": ""
},
"video": {},
"flags": {
"is_education": false,
"is_public": true,
"is_visible": true,
"is_suggested": true,
"is_picked": false,
"is_favored": false,
"is_voted": false,
"is_author_followed": false
},
"created_at": "2026-03-11T09:56:40.427365+00:00",
"updated_at": "2026-03-13T09:41:37.879948+00:00",
"likes_count": 146,
"comments_count": 42,
"views": 8025,
"description_ast": {
"type": "root",
"children": [
"Hello traders! Here’s my technical outlook based on the current XAUUSD (3H) chart structure. Gold previously moved in a bullish ascending channel, forming higher highs and higher lows while respecting the rising support line. The rally eventually reached the 5,240 Seller Zone, where strong resistance triggered a sharp rejection and pushed price lower. After this drop, the market stabilized near the 5,090 Buyer Zone, where buyers prevented further decline. Since then, price has been consolidating inside a range between 5,240 resistance and 5,090 support. Currently, gold is testing the upper resistance area while also facing pressure from a descending resistance line, creating a potential rejection zone. My primary scenario remains neutral-to-bearish near resistance while the market trades below the descending resistance line and the 5,240 supply zone. If sellers defend this area once again, price could decline toward the 5,090 support level, which represents the next downside target (TP1) and aligns with the lower boundary of the current range. Please share this idea with your friends and click Boost 🚀"
]
},
"user_signature_socials": {
"socials_list": [
"Twitter",
"Youtube",
"Facebook",
"Instagram",
"Website",
"Signature"
],
"twitter_username": "",
"instagram_username": "",
"youtube_channel": "",
"facebook_username": "",
"website": "https://bit.ly/4g4wovR",
"signature": "🔷Join my telegram channel for free - www.bit.ly/4g4wovR\r\n\r\n💰Want receive more profitable signals for Crypto & Forex market, write me PM 👉 www.bit.ly/4fNijD8\r\n\r\nThinkMarkets Ambassador Join & explore: https://bit.ly/3S4HwPq",
"signature_ast": {
"type": "root",
"children": [
"🔷Join my telegram channel for free - ",
{
"type": "url",
"params": {
"url": "https://www.bit.ly/4g4wovR",
"linkText": "bit.ly/4g4wovR",
"relFollow": false
}
},
"\r\n\r\n💰Want receive more profitable signals for Crypto & Forex market, write me PM 👉 ",
{
"type": "url",
"params": {
"url": "https://www.bit.ly/4fNijD8",
"linkText": "bit.ly/4fNijD8",
"relFollow": false
}
},
"\r\n\r\nThinkMarkets Ambassador Join & explore: ",
{
"type": "url",
"params": {
"url": "https://bit.ly/3S4HwPq",
"linkText": "bit.ly/3S4HwPq",
"relFollow": false
}
}
]
}
},
"updates": [
{
"id": 8156714,
"created_at": "2026-03-12T09:47:42.573272+00:00",
"description": "The price of gold was gradually falling but buyers came in. I think this will be a small correction, after which the movement will resume to our target.",
"description_ast": {
"type": "root",
"children": [
"The price of gold was gradually falling but buyers came in. I think this will be a small correction, after which the movement will resume to our target."
]
},
"type": "trading",
"value": "active",
"label": "Trade active",
"could_be_modified": false
},
{
"id": 8160583,
"created_at": "2026-03-13T09:41:37.879948+00:00",
"description": "Our analysis worked perfectly for gold. As we expected, gold continued to form lower highs and squeezed closer to the support zone. Our target was achieved!",
"description_ast": {
"type": "root",
"children": [
"Our analysis worked perfectly for gold. As we expected, gold continued to form lower highs and squeezed closer to the support zone. Our target was achieved!"
]
},
"type": "close_position",
"value": "target_reached",
"label": "Trade closed: target reached",
"could_be_modified": false
}
],
"tags": [
{
"tag": "analysis",
"title": "analysis",
"script_full_url": "/scripts/analysis/",
"idea_full_url": "/ideas/analysis/"
},
{
"tag": "breakout",
"title": "breakout",
"script_full_url": "/scripts/breakout/",
"idea_full_url": "/ideas/breakout/"
},
{
"tag": "forex",
"title": "Forex",
"script_full_url": "/scripts/forex/",
"idea_full_url": "/ideas/forex/"
},
{
"tag": "gold",
"title": "Gold",
"script_full_url": "/scripts/gold/",
"idea_full_url": "/ideas/gold/"
},
{
"tag": "metals",
"title": "Metals",
"script_full_url": "/scripts/metals/",
"idea_full_url": "/ideas/metals/"
},
{
"tag": "parallelchannel",
"title": "Parallel Channel",
"script_full_url": "/scripts/parallelchannel/",
"idea_full_url": "/ideas/parallelchannel/"
},
{
"tag": "range",
"title": "range",
"script_full_url": "/scripts/range/",
"idea_full_url": "/ideas/range/"
},
{
"tag": "short",
"title": "short",
"script_full_url": "/scripts/short/",
"idea_full_url": "/ideas/short/"
},
{
"tag": "supportandresistance",
"title": "Support and Resistance",
"script_full_url": "/scripts/supportandresistance/",
"idea_full_url": "/ideas/supportandresistance/"
},
{
"tag": "triangle",
"title": "Triangle",
"script_full_url": "/scripts/triangle/",
"idea_full_url": "/ideas/triangle/"
},
{
"tag": "xauusd",
"title": "XAUUSD",
"script_full_url": "/scripts/xauusd/",
"idea_full_url": "/ideas/xauusd/"
}
],
"related": [],
"script_terms": "",
"preview_image_urls": {
"original": "https://s3.tradingview.com/l/LfKFTY2N.png",
"thumb": "https://s3.tradingview.com/l/LfKFTY2N_171_121.png",
"crop": "https://s3.tradingview.com/l/LfKFTY2N_big.png",
"mid": "https://s3.tradingview.com/l/LfKFTY2N_mid.png"
},
"language": "en",
"page_title": "XAUUSD Rejection From 5,240 May Send Price to 5,090 for FOREXCOM:XAUUSD by LegionQ8",
"webp_size": {
"width": 466,
"height": 275
},
"content": "{\"name\":\"Vlad\",\"layout\":\"s\",\"charts\":[{\"panes\":[{\"sources\":[{\"type\":\"MainSeries\",\"id\":\"_seriesId\",\"zorder\":0,\"haStyle\":{\"studyId\":\"BarSetHeikenAshi@tv-basicstudies-60\"},\"renkoStyle\":{\"studyId\":\"BarSetRenko@tv-prostudies-73\"},\"pbStyle\":{\"studyId\":\"BarSetPriceBreak@tv-prostudies-34\"},\"kagiStyle\":{\"studyId\":\"BarSetKagi@tv-prostudies-73\"},\"pnfStyle\":{\"studyId\":\"BarSetPnF@tv-prostudies-73\"},\"rangeStyle\":{\"studyId\":\"BarSetRange@tv-basicstudies-72\"},\"volFootprintStyle\":{\"studyId\":\"Footprint@tv-volumebyprice-104\"},\"tpoStyle\":{\"studyId\":\"TPOSessions@tv-volumebyprice-104\"},\"svpStyle\":{\"studyId\":\"VbPSessions@tv-volumebyprice-126\"},\"formattingDeps\":{\"format\":\"price\",\"pricescale\":100,\"minmov\":1,\"fractional\":false,\"minmove2\":1,\"variable_tick_size\":\"\"},\"studyBindings\":{\"17\":null,\"18\":null,\"20\":null},\"state\":{\"style\":1,\"esdShowDividends\":true,\"esdShowSplits\":true,\"esdShowEarnings\":true,\"esdShowBreaks\":false,\"showContinuousContractSwitches\":true,\"showContinuousContractSwitchesBreaks\":false,\"showFuturesContractExpiration\":true,\"showLastNews\":true,\"showCountdown\":true,\"visible\":true,\"showPriceLine\":true,\"priceLineWidth\":1,\"showPrevClosePriceLine\":false,\"prevClosePriceLineWidth\":1,\"minTick\":\"default\",\"dividendsAdjustment\":false,\"backAdjustment\":false,\"settlementAsClose\":true,\"sessionId\":\"regular\",\"bidAsk\":{\"visible\":false,\"lineStyle\":1,\"lineWidth\":1,\"bidLineColor\":\"#2962FF\",\"askLineColor\":\"#F7525F\"},\"prePostMarket\":{\"visible\":true,\"lineStyle\":1,\"lineWidth\":1,\"preMarketColor\":\"#FB8C00\",\"postMarketColor\":\"#2962FF\"},\"highLowAvgPrice\":{\"highLowPriceLinesVisible\":false,\"highLowPriceLabelsVisible\":false,\"averageClosePriceLineVisible\":false,\"averageClosePriceLabelVisible\":false,\"highLowPriceLinesWidth\":1,\"averagePriceLineWidth\":1,\"highLowPriceLinesColor\":\"\",\"averagePriceLineColor\":\"\"},\"statusViewStyle\":{\"fontSize\":16,\"showExchange\":true,\"showInterval\":true,\"symbolTextSource\":\"description\"},\"lineStyle\":{\"linestyle\":0,\"linewidth\":2,\"priceSource\":\"close\",\"colorType\":\"solid\",\"color\":\"#2962FF\",\"gradientStartColor\":\"#D500F9\",\"gradientEndColor\":\"#00BCE5\"},\"lineWithMarkersStyle\":{\"linestyle\":0,\"linewidth\":2,\"priceSource\":\"close\",\"colorType\":\"gradient\",\"color\":\"#2962FF\",\"gradientStartColor\":\"#D500F9\",\"gradientEndColor\":\"#00BCE5\"},\"steplineStyle\":{\"linestyle\":0,\"linewidth\":2,\"priceSource\":\"close\",\"colorType\":\"gradient\",\"color\":\"#2962FF\",\"gradientStartColor\":\"#D500F9\",\"gradientEndColor\":\"#00BCE5\"},\"baselineStyle\":{\"topLineWidth\":2,\"bottomLineWidth\":2,\"topLineStyle\":0,\"bottomLineStyle\":0,\"priceSource\":\"close\",\"transparency\":50,\"baseLevelPercentage\":50,\"baselineColor\":\"#758696\",\"topFillColor1\":\"rgba(8, 153, 129, 0.28)\",\"topFillColor2\":\"rgba(8, 153, 129, 0.05)\",\"bottomFillColor1\":\"rgba(242, 54, 69, 0.05)\",\"bottomFillColor2\":\"rgba(242, 54, 69, 0.28)\",\"topLineColor\":\"#089981\",\"bottomLineColor\":\"#F23645\"},\"areaStyle\":{\"linestyle\":0,\"linewidth\":2,\"priceSource\":\"close\",\"transparency\":100,\"color1\":\"rgba(41, 98, 255, 0.28)\",\"color2\":\"#2962FF\",\"linecolor\":\"#2962FF\"},\"hlcAreaStyle\":{\"highLineVisible\":true,\"highLineStyle\":0,\"highLineWidth\":2,\"lowLineVisible\":true,\"lowLineStyle\":0,\"lowLineWidth\":2,\"closeLineStyle\":0,\"closeLineWidth\":2,\"highLineColor\":\"#00bcd4\",\"lowLineColor\":\"#e91e63\",\"closeLineColor\":\"#2962FF\",\"highCloseFillColor\":\"rgba(0, 188, 212, 0.25)\",\"closeLowFillColor\":\"rgba(233, 30, 99, 0.25)\"},\"barStyle\":{\"barColorsOnPrevClose\":false,\"dontDrawOpen\":false,\"thinBars\":true,\"downColor\":\"#F23645\",\"upColor\":\"#089981\"},\"hlcBarsStyle\":{\"thinBars\":true,\"color\":\"#2962FF\"},\"candleStyle\":{\"drawWick\":true,\"drawBorder\":true,\"barColorsOnPrevClose\":false,\"drawBody\":true,\"borderColor\":\"#378658\",\"upColor\":\"rgba(8, 153, 129, 1)\",\"wickColor\":\"#737375\",\"wickUpColor\":\"#089981\",\"wickDownColor\":\"#F23645\",\"downColor\":\"#F23645\",\"borderUpColor\":\"#089981\",\"borderDownColor\":\"#F23645\"},\"volCandlesStyle\":{\"drawWick\":true,\"drawBorder\":true,\"barColorsOnPrevClose\":false,\"drawBody\":true,\"borderColor\":\"#378658\",\"upColor\":\"#089981\",\"wickColor\":\"#737375\",\"wickUpColor\":\"#089981\",\"wickDownColor\":\"#F23645\",\"downColor\":\"#F23645\",\"borderUpColor\":\"#089981\",\"borderDownColor\":\"#F23645\"},\"hollowCandleStyle\":{\"drawWick\":true,\"drawBorder\":true,\"drawBody\":true,\"upColor\":\"#089981\",\"downColor\":\"#F23645\",\"borderColor\":\"#378658\",\"borderUpColor\":\"#089981\",\"borderDownColor\":\"#F23645\",\"wickColor\":\"#737375\",\"wickUpColor\":\"#089981\",\"wickDownColor\":\"#F23645\"},\"haStyle\":{\"drawWick\":true,\"drawBorder\":true,\"showRealLastPrice\":false,\"barColorsOnPrevClose\":false,\"inputs\":{},\"inputInfo\":{},\"drawBody\":true,\"borderColor\":\"#378658\",\"upColor\":\"#089981\",\"wickColor\":\"#737375\",\"wickUpColor\":\"#089981\",\"wickDownColor\":\"#F23645\",\"downColor\":\"#F23645\",\"borderUpColor\":\"#089981\",\"borderDownColor\":\"#F23645\"},\"hiloStyle\":{\"showBorders\":true,\"showLabels\":true,\"drawBody\":true,\"color\":\"#2962FF\",\"borderColor\":\"#2962FF\",\"labelColor\":\"#2962FF\"},\"columnStyle\":{\"barColorsOnPrevClose\":true,\"priceSource\":\"close\",\"baselinePosition\":\"bottom\",\"upColor\":\"rgba(8, 153, 129, 0.5)\",\"downColor\":\"rgba(242, 54, 69, 0.5)\"},\"renkoStyle\":{\"inputs\":{\"source\":\"close\",\"sources\":\"Close\",\"boxSize\":3,\"style\":\"ATR\",\"atrLength\":14,\"percentageLTP\":1,\"wicks\":true},\"inputInfo\":{\"source\":{\"name\":\"Source\"},\"sources\":{\"name\":\"Source\"},\"boxSize\":{\"name\":\"Box size\"},\"style\":{\"name\":\"Style\"},\"atrLength\":{\"name\":\"ATR length\"},\"percentageLTP\":{\"name\":\"Percentage\"},\"wicks\":{\"name\":\"Wicks\"}},\"upColor\":\"#089981\",\"downColor\":\"#F23645\",\"borderUpColor\":\"#089981\",\"borderDownColor\":\"#F23645\",\"upColorProjection\":\"#a9dcc3\",\"downColorProjection\":\"#f5a6ae\",\"borderUpColorProjection\":\"#a9dcc3\",\"borderDownColorProjection\":\"#f5a6ae\",\"wickUpColor\":\"#089981\",\"wickDownColor\":\"#F23645\"},\"pbStyle\":{\"inputs\":{\"lb\":3},\"inputInfo\":{\"lb\":{\"name\":\"Number of line\"}},\"upColor\":\"#089981\",\"downColor\":\"#F23645\",\"borderUpColor\":\"#089981\",\"borderDownColor\":\"#F23645\",\"upColorProjection\":\"#a9dcc3\",\"downColorProjection\":\"#f5a6ae\",\"borderUpColorProjection\":\"#a9dcc3\",\"borderDownColorProjection\":\"#f5a6ae\"},\"kagiStyle\":{\"inputs\":{\"style\":\"ATR\",\"atrLength\":14,\"percentageLTP\":1,\"reversalAmount\":1},\"inputInfo\":{\"style\":{\"name\":\"Style\"},\"atrLength\":{\"name\":\"ATR length\"},\"percentageLTP\":{\"name\":\"Percentage\"},\"reversalAmount\":{\"name\":\"Reversal amount\"}},\"downColor\":\"#F23645\",\"upColor\":\"#089981\",\"upColorProjection\":\"#a9dcc3\",\"downColorProjection\":\"#f5a6ae\"},\"pnfStyle\":{\"inputs\":{\"sources\":\"Close\",\"reversalAmount\":3,\"boxSize\":1,\"style\":\"ATR\",\"atrLength\":14,\"percentageLTP\":1,\"oneStepBackBuilding\":false},\"inputInfo\":{\"sources\":{\"name\":\"Source\"},\"boxSize\":{\"name\":\"Box size\"},\"reversalAmount\":{\"name\":\"Reversal amount\"},\"style\":{\"name\":\"Style\"},\"atrLength\":{\"name\":\"ATR length\"},\"percentageLTP\":{\"name\":\"Percentage\"},\"oneStepBackBuilding\":{\"name\":\"One step back building\"}},\"downColor\":\"#F23645\",\"upColor\":\"#089981\",\"upColorProjection\":\"#a9dcc3\",\"downColorProjection\":\"#f5a6ae\"},\"rangeStyle\":{\"barStyle\":0,\"thinBars\":true,\"inputs\":{\"range\":10,\"phantomBars\":false},\"inputInfo\":{\"range\":{\"name\":\"Range\"},\"phantomBars\":{\"name\":\"Phantom bars\"}},\"upColor\":\"#089981\",\"downColor\":\"#F23645\",\"upColorProjection\":\"#a9dcc3\",\"downColorProjection\":\"#f5a6ae\",\"candlesUpColor\":\"#089981\",\"candlesDownColor\":\"#F23645\",\"candlesBorderUpColor\":\"#089981\",\"candlesBorderDownColor\":\"#F23645\",\"candlesWickUpColor\":\"#089981\",\"candlesWickDownColor\":\"#F23645\"},\"tpoStyle\":{\"color\":\"#2962FF\",\"linestyle\":0,\"linewidth\":2,\"styles\":{\"splitByBlocks\":false,\"splitByBlocksMode\":0},\"inputs\":{\"period\":\"Day\",\"periodsNum\":1,\"profilesSessions\":\"All\",\"customSession\":\"0930-1600\",\"customSession2\":\"\",\"customSession3\":\"\",\"customSession4\":\"\",\"customSession5\":\"\",\"rowSize\":\"Auto\",\"ticksPerRow\":10,\"vaPercent\":70,\"blockSize\":\"30m\",\"mergePoints\":\"[]\",\"extendPoorHigh\":false,\"extendPoorLow\":false,\"extendPOC\":false,\"extendTpoVah\":false,\"extendTpoVal\":false,\"extendVolumePoc\":false,\"extendVolumeVah\":false,\"extendVolumeVal\":false,\"extendSingleprints\":false},\"tpo\":{\"colors\":{\"gradientColors\":[\"#e91e63\",\"#00c853\",\"#00bcd4\",\"#651FFF\"]},\"showBlocks\":true,\"showLetters\":true,\"nonVaOpacity\":30},\"levels\":{\"showPOC\":true,\"pocColor\":\"#0F0F0F\",\"showPoorHigh\":false,\"poorHighColor\":\"#6200EA\",\"showPoorLow\":false,\"poorLowColor\":\"#6200EA\",\"showSingleprints\":false,\"singleprintsColor\":\"rgba(224, 64, 251, 0.15)\",\"showVAH\":true,\"vahColor\":\"#0F0F0F\",\"showVAL\":true,\"valColor\":\"#0F0F0F\",\"showMidpoint\":false,\"showOpenPrice\":false,\"showClosePrice\":false,\"initialBalanceRange\":{\"levels\":2,\"visible\":true}},\"volumeProfile\":{\"visible\":true,\"valuesColor\":\"#0F0F0F\",\"showValues\":false,\"vah\":{\"visible\":false,\"color\":\"#0F0F0F\",\"linestyle\":0,\"linewidth\":2},\"val\":{\"visible\":false,\"color\":\"#0F0F0F\",\"linestyle\":0,\"linewidth\":2},\"poc\":{\"visible\":false,\"color\":\"#0F0F0F\",\"linestyle\":0,\"linewidth\":2},\"volumeColor\":\"rgba(38, 198, 218, 0.5)\",\"valueAreaColor\":\"rgba(38, 198, 218, 0.75)\",\"placement\":\"left_to_right\"},\"summary\":{\"visible\":false,\"belowSeries\":true,\"infoBlocks\":{\"hlRange\":{\"visible\":false},\"pocPrice\":{\"visible\":true},\"rotationFactor\":{\"visible\":false},\"totalVolume\":{\"visible\":false},\"tpoCountAbovePoc\":{\"visible\":false},\"tpoCountBelowPoc\":{\"visible\":false},\"tpoCountTotal\":{\"visible\":false},\"vaRange\":{\"visible\":false},\"vahPrice\":{\"visible\":true},\"valPrice\":{\"visible\":true},\"initialBalanceHigh\":{\"visible\":true},\"initialBalanceLow\":{\"visible\":true},\"initialBalanceRange\":{\"visible\":true}}},\"priceSource\":\"close\"},\"svpStyle\":{\"inputs\":{\"profilesSessions\":\"All\",\"customSession\":\"0930-1600\",\"customSessionTZ\":\"Exchange\",\"volume\":\"Up/Down\",\"vaVolume\":70,\"extendPocRight\":false,\"extendVAHRight\":false,\"extendVALRight\":false,\"rowsLayout\":\"Number Of Rows\",\"rows\":24},\"volumeProfile\":{\"visible\":true,\"valuesColor\":\"#0F0F0F\",\"showValues\":false,\"volumeColorUp\":\"rgba(38, 198, 218, 0.5)\",\"volumeColorDown\":\"rgba(236, 64, 122, 0.5)\",\"valueAreaColorUp\":\"rgba(38, 198, 218, 0.75)\",\"valueAreaColorDown\":\"rgba(236, 64, 122, 0.75)\",\"histogramBoxColor\":\"rgba(38, 198, 218, 0.05)\",\"placement\":\"left_to_right\",\"percentWidth\":100},\"vah\":{\"visible\":false,\"color\":\"#0F0F0F\",\"linestyle\":0,\"linewidth\":2},\"val\":{\"visible\":false,\"color\":\"#0F0F0F\",\"linestyle\":0,\"linewidth\":2},\"poc\":{\"visible\":true,\"color\":\"#0F0F0F\",\"linestyle\":0,\"linewidth\":2},\"developingPoc\":{\"visible\":false,\"color\":\"#0F0F0F\",\"linestyle\":0,\"linewidth\":1},\"developingVA\":{\"visible\":false,\"color\":\"#00bcd4\",\"linestyle\":0,\"linewidth\":1}},\"volFootprintStyle\":{\"drawWick\":true,\"drawBorder\":true,\"barColorsOnPrevClose\":false,\"drawBody\":true,\"upColor\":\"#089981\",\"downColor\":\"#F23645\",\"borderColor\":\"#378658\",\"borderUpColor\":\"#089981\",\"borderDownColor\":\"#F23645\",\"wickColor\":\"#737375\",\"wickUpColor\":\"#089981\",\"wickDownColor\":\"#F23645\",\"deltaAdjust\":true,\"showSummary\":true,\"summaryMode\":0,\"extendedSummary\":{\"belowSeries\":true,\"blockInfo\":{\"volume\":{\"visible\":true},\"volumePercentage\":{\"visible\":false},\"buyVolume\":{\"visible\":false},\"buyVolumePercentage\":{\"visible\":false},\"sellVolume\":{\"visible\":false},\"sellVolumePercentage\":{\"visible\":false},\"delta\":{\"visible\":true},\"deltaPercentage\":{\"visible\":false},\"minDelta\":{\"visible\":false},\"maxDelta\":{\"visible\":false},\"sessionCVD\":{\"visible\":true},\"pocPrice\":{\"visible\":true},\"hlRange\":{\"visible\":false}},\"openInterestBlockInfo\":{\"openInterest\":{\"visible\":true}},\"extendedOpenInterestBlockInfo\":{\"openInterestHigh\":{\"visible\":true},\"openInterestLow\":{\"visible\":true}}},\"type\":\"Buy and sell\",\"displayMode\":0,\"pointOfControl\":true,\"bgColors\":{\"adjBuyBgColors\":[\"#70CCBD\",\"#22AB94\",\"#06806B\",\"#004D40\"],\"adjSellBgColors\":[\"#FAA1A4\",\"#F7525F\",\"#CC2F3C\",\"#802028\"],\"adjTotalBgColors\":[\"#90BFF9\",\"#3179F5\",\"#1E53E5\",\"#143EB2\"],\"buyBgColor\":\"#22AB94\",\"sellBgColor\":\"#F7525F\",\"totalBgColor\":\"#3179F5\",\"pocColor\":\"#000000\"},\"imbalanceHighlight\":{\"buyColor\":\"#089981\",\"sellColor\":\"#F23645\",\"visible\":true},\"inputs\":{\"rowSize\":\"Auto\",\"atrLength\":14,\"imbalancePercent\":300,\"ticksPerRow\":100,\"showVA\":true,\"vaPercent\":70,\"calcStackedImbalance\":false,\"stackedImbalanceCount\":3,\"ignore_zero_volume_for_imbalance_calc\":false,\"minimal_imbalance_volume\":0}},\"baseLineColor\":\"#B2B5BE\",\"prevClosePriceLineColor\":\"#555555\",\"priceLineColor\":\"\",\"timeframe\":\"\",\"shortName\":\"XAUUSD\",\"currencyId\":\"USD\",\"unitId\":null,\"metricId\":null,\"symbol\":\"FOREXCOM:XAUUSD\",\"interval\":\"180\",\"priceAxisProperties\":{\"autoScale\":true,\"autoScaleDisabled\":false,\"lockScale\":false,\"percentage\":false,\"percentageDisabled\":false,\"log\":true,\"logDisabled\":false,\"alignLabels\":true,\"isInverted\":false,\"indexedTo100\":false}},\"bars\":{\"start\":0,\"end\":233,\"data\":[{\"index\":67,\"value\":[1769662800,5558.44,5595.46,5516.325,5549.14]},{\"index\":68,\"value\":[1769673600,5549.14,5554.98,5474.695,5483.525]},{\"index\":69,\"value\":[1769684400,5483.525,5543.15,5470.955,5510.305]},{\"index\":70,\"value\":[1769695200,5510.305,5549.825,5098.085,5264.13]},{\"index\":71,\"value\":[1769706000,5264.13,5375.36,5264.13,5305.565]},{\"index\":72,\"value\":[1769716800,5305.565,5426.2,5282.965,5378.245]},{\"index\":73,\"value\":[1769727600,5378.245,5451.015,5291.535,5301.895]},{\"index\":74,\"value\":[1769738400,5301.895,5312.905,5112.57,5214.97]},{\"index\":75,\"value\":[1769749200,5214.97,5241.66,5117.72,5181.36]},{\"index\":76,\"value\":[1769760000,5181.36,5181.36,4939.86,5119.87]},{\"index\":77,\"value\":[1769770800,5119.87,5145.905,4992.505,5019.52]},{\"index\":78,\"value\":[1769781600,5019.52,5113.745,4944.265,4985.585]},{\"index\":79,\"value\":[1769792400,4985.585,4985.98,4683.03,4932.825]},{\"index\":80,\"value\":[1769803200,4932.825,4933.4,4809.735,4894.33]},{\"index\":81,\"value\":[1769986800,4894.33,4894.33,4584.815,4737.32]},{\"index\":82,\"value\":[1769997600,4737.32,4773.135,4603.43,4680.06]},{\"index\":83,\"value\":[1770008400,4680.06,4695.86,4402.825,4587.3]},{\"index\":84,\"value\":[1770019200,4587.3,4733.88,4560.02,4705.735]},{\"index\":85,\"value\":[1770030000,4705.735,4812.59,4669.56,4706.3]},{\"index\":86,\"value\":[1770040800,4706.3,4793.97,4596.68,4666]},{\"index\":87,\"value\":[1770051600,4666,4714.07,4618.57,4685.75]},{\"index\":88,\"value\":[1770062400,4685.75,4700.89,4644.105,4660.625]},{\"index\":89,\"value\":[1770073200,4660.625,4856.56,4660.625,4841.74]},{\"index\":90,\"value\":[1770084000,4841.74,4841.95,4745.76,4809.155]},{\"index\":91,\"value\":[1770094800,4809.155,4933.78,4809.055,4917.32]},{\"index\":92,\"value\":[1770105600,4917.32,4949.81,4884.785,4902.455]},{\"index\":93,\"value\":[1770116400,4902.455,4951.045,4883.89,4932.535]},{\"index\":94,\"value\":[1770127200,4932.535,4993.815,4893.85,4955.695]},{\"index\":95,\"value\":[1770138000,4955.695,4969.815,4880.61,4927.295]},{\"index\":96,\"value\":[1770148800,4927.295,4964.26,4902.53,4946.055]},{\"index\":97,\"value\":[1770159600,4946.055,5053.445,4910.165,5046.7]},{\"index\":98,\"value\":[1770170400,5046.7,5081.18,5035.655,5080.655]},{\"index\":99,\"value\":[1770181200,5080.655,5091.37,5051.425,5084.83]},{\"index\":100,\"value\":[1770192000,5084.83,5091.99,5041.795,5048.745]},{\"index\":101,\"value\":[1770202800,5048.745,5063.53,5013.78,5053.97]},{\"index\":102,\"value\":[1770213600,5053.97,5059.075,4852.115,4904.635]},{\"index\":103,\"value\":[1770224400,4904.635,4958.035,4873.22,4941.935]},{\"index\":104,\"value\":[1770235200,4941.935,4970.995,4914.99,4965.7]},{\"index\":105,\"value\":[1770246000,4965.7,5023.88,4936.39,4958.955]},{\"index\":106,\"value\":[1770256800,4958.955,4961.81,4789.28,4863.795]},{\"index\":107,\"value\":[1770267600,4863.795,4941.08,4826.65,4915.17]},{\"index\":108,\"value\":[1770278400,4915.17,4943.65,4848.11,4877.14]},{\"index\":109,\"value\":[1770289200,4877.14,4894.585,4802.22,4835.575]},{\"index\":110,\"value\":[1770300000,4835.575,4906.965,4800.545,4889.055]},{\"index\":111,\"value\":[1770310800,4889.055,4890.69,4823.82,4829.45]},{\"index\":112,\"value\":[1770321600,4829.45,4843.27,4759.63,4778.055]},{\"index\":113,\"value\":[1770332400,4778.055,4787.17,4655.4,4774.385]},{\"index\":114,\"value\":[1770343200,4774.385,4846.535,4761.025,4813.995]},{\"index\":115,\"value\":[1770354000,4813.995,4903.08,4807.835,4841.155]},{\"index\":116,\"value\":[1770364800,4841.155,4882.38,4829.7,4878.56]},{\"index\":117,\"value\":[1770375600,4878.56,4938.54,4863.965,4929.165]},{\"index\":118,\"value\":[1770386400,4929.165,4964.97,4894.695,4951.72]},{\"index\":119,\"value\":[1770397200,4951.72,4971.53,4944.06,4957.33]},{\"index\":120,\"value\":[1770408000,4957.33,4969.18,4936.775,4964.3]},{\"index\":121,\"value\":[1770591600,4964.3,5047.175,4964.3,4982.74]},{\"index\":122,\"value\":[1770602400,4982.74,5031.51,4969.34,5012.215]},{\"index\":123,\"value\":[1770613200,5012.215,5045.7,4997.83,5006.52]},{\"index\":124,\"value\":[1770624000,5006.52,5041.065,4982.555,4991.055]},{\"index\":125,\"value\":[1770634800,4991.055,5024.725,4988.77,5007.21]},{\"index\":126,\"value\":[1770645600,5007.21,5081.02,5002.57,5073.55]},{\"index\":127,\"value\":[1770656400,5073.55,5080.12,5041.085,5074.63]},{\"index\":128,\"value\":[1770667200,5074.63,5086.7,5048.435,5058.68]},{\"index\":129,\"value\":[1770678000,5058.68,5076.005,4987.675,5032.875]},{\"index\":130,\"value\":[1770688800,5032.875,5056.5,5016.605,5031.71]},{\"index\":131,\"value\":[1770699600,5031.71,5045.765,5011.665,5034.06]},{\"index\":132,\"value\":[1770710400,5034.06,5063.305,5029.1,5047.045]},{\"index\":133,\"value\":[1770721200,5047.045,5059.095,5019.76,5051.2]},{\"index\":134,\"value\":[1770732000,5051.2,5078.58,4999.085,5023.875]},{\"index\":135,\"value\":[1770742800,5023.875,5040.135,5004.99,5028.06]},{\"index\":136,\"value\":[1770753600,5028.06,5045.375,5020.445,5025.485]},{\"index\":137,\"value\":[1770764400,5025.485,5054.43,5025.485,5052.525]},{\"index\":138,\"value\":[1770775200,5052.525,5060.795,5032.77,5046.39]},{\"index\":139,\"value\":[1770786000,5046.39,5069.375,5043.655,5055.625]},{\"index\":140,\"value\":[1770796800,5055.625,5101.16,5046.035,5093.42]},{\"index\":141,\"value\":[1770807600,5093.42,5119.21,5019.01,5065.875]},{\"index\":142,\"value\":[1770818400,5065.875,5082.83,5035.995,5075.35]},{\"index\":143,\"value\":[1770829200,5075.35,5098.83,5067.145,5082.145]},{\"index\":144,\"value\":[1770840000,5082.145,5092.93,5070.03,5084.175]},{\"index\":145,\"value\":[1770850800,5084.175,5100.375,5045.23,5063.735]},{\"index\":146,\"value\":[1770861600,5063.735,5074.795,5051.16,5069.54]},{\"index\":147,\"value\":[1770872400,5069.54,5078.44,5047.265,5063.995]},{\"index\":148,\"value\":[1770883200,5063.995,5080.855,5052.655,5062.255]},{\"index\":149,\"value\":[1770894000,5062.255,5083.83,5048.86,5075.415]},{\"index\":150,\"value\":[1770904800,5075.415,5077.89,4878.72,4954.79]},{\"index\":151,\"value\":[1770915600,4954.79,4982.97,4906.62,4945.725]},{\"index\":152,\"value\":[1770926400,4945.725,4948.46,4911.51,4921.7]},{\"index\":153,\"value\":[1770937200,4921.7,4988.69,4886.625,4980.92]},{\"index\":154,\"value\":[1770948000,4980.92,4997.43,4972.29,4976.865]},{\"index\":155,\"value\":[1770958800,4976.865,4986.625,4945.1,4974.67]},{\"index\":156,\"value\":[1770969600,4974.67,4989.465,4947.3,4950.305]},{\"index\":157,\"value\":[1770980400,4950.305,4999.95,4934.285,4987.15]},{\"index\":158,\"value\":[1770991200,4987.15,5033.83,4964.715,5007.94]},{\"index\":159,\"value\":[1771002000,5007.94,5046.14,5006.03,5023.885]},{\"index\":160,\"value\":[1771012800,5023.885,5046.055,5021.615,5042.215]},{\"index\":161,\"value\":[1771196400,5042.215,5042.215,5000.415,5029.03]},{\"index\":162,\"value\":[1771207200,5029.03,5031.195,4972.985,4977.635]},{\"index\":163,\"value\":[1771218000,4977.635,5010.19,4964.84,5007.43]},{\"index\":164,\"value\":[1771228800,5007.43,5017.34,4995.925,5006.085]},{\"index\":165,\"value\":[1771239600,5006.085,5008.2,4990.03,4997.455]},{\"index\":166,\"value\":[1771250400,4997.455,4999.595,4969.08,4988.175]},{\"index\":167,\"value\":[1771261200,4988.175,4997.85,4988.175,4993.24]},{\"index\":168,\"value\":[1771282800,4993.24,5000.825,4923.275,4957.62]},{\"index\":169,\"value\":[1771293600,4957.62,4971.075,4946.82,4953.005]},{\"index\":170,\"value\":[1771304400,4953.005,4954.365,4859.425,4917.16]},{\"index\":171,\"value\":[1771315200,4917.16,4939.445,4907.905,4913.32]},{\"index\":172,\"value\":[1771326000,4913.32,4944.465,4870.04,4870.695]},{\"index\":173,\"value\":[1771336800,4870.695,4907.275,4841.43,4869.42]},{\"index\":174,\"value\":[1771347600,4869.42,4910.855,4850.515,4880.4]},{\"index\":175,\"value\":[1771358400,4880.4,4886.715,4873.51,4878.63]},{\"index\":176,\"value\":[1771369200,4878.63,4892.805,4854.25,4890.025]},{\"index\":177,\"value\":[1771380000,4890.025,4939.94,4886.6,4934.135]},{\"index\":178,\"value\":[1771390800,4934.135,4942.3,4925.165,4930.37]},{\"index\":179,\"value\":[1771401600,4930.37,4932.46,4909.54,4914.54]},{\"index\":180,\"value\":[1771412400,4914.54,4969.07,4906.455,4954.495]},{\"index\":181,\"value\":[1771423200,4954.495,5011.035,4952.43,5000.54]},{\"index\":182,\"value\":[1771434000,5000.54,5003.365,4973.035,4980.685]},{\"index\":183,\"value\":[1771444800,4980.685,4987.63,4975.49,4976.25]},{\"index\":184,\"value\":[1771455600,4976.25,4988.885,4960.54,4973.155]},{\"index\":185,\"value\":[1771466400,4973.155,4985.63,4965.935,4984.455]},{\"index\":186,\"value\":[1771477200,4984.455,5021.795,4984.38,5010.29]},{\"index\":187,\"value\":[1771488000,5010.29,5022.04,4981.855,4993.39]},{\"index\":188,\"value\":[1771498800,4993.39,4998.59,4972.905,4997.15]},{\"index\":189,\"value\":[1771509600,4997.15,5022.375,4963.96,4995.14]},{\"index\":190,\"value\":[1771520400,4995.14,5001.78,4975.42,4988.02]},{\"index\":191,\"value\":[1771531200,4988.02,5004.23,4988.02,4996.615]},{\"index\":192,\"value\":[1771542000,4996.615,5014.91,4985.595,4997.12]},{\"index\":193,\"value\":[1771552800,4997.12,5007.49,4982.02,4999.865]},{\"index\":194,\"value\":[1771563600,4999.865,5030.215,4998.095,5006.41]},{\"index\":195,\"value\":[1771574400,5006.41,5042.655,5005.14,5034.77]},{\"index\":196,\"value\":[1771585200,5034.77,5048.825,5007.23,5043.7]},{\"index\":197,\"value\":[1771596000,5043.7,5069.055,4989.515,5066.745]},{\"index\":198,\"value\":[1771606800,5066.745,5079.91,5054.545,5079.625]},{\"index\":199,\"value\":[1771617600,5079.625,5108.135,5076.965,5107.46]},{\"index\":200,\"value\":[1771801200,5107.46,5172.01,5107.46,5157.71]},{\"index\":201,\"value\":[1771812000,5157.71,5176.69,5152.17,5160.95]},{\"index\":202,\"value\":[1771822800,5160.95,5161.965,5125.23,5136.79]},{\"index\":203,\"value\":[1771833600,5136.79,5163.545,5122.53,5163]},{\"index\":204,\"value\":[1771844400,5163,5165.55,5143.865,5146.445]},{\"index\":205,\"value\":[1771855200,5146.445,5218.92,5141.6,5210.11]},{\"index\":206,\"value\":[1771866000,5210.11,5218.49,5191.305,5215.805]},{\"index\":207,\"value\":[1771876800,5215.805,5238.12,5215.335,5227.8]},{\"index\":208,\"value\":[1771887600,5227.8,5249.875,5145.365,5177.68]},{\"index\":209,\"value\":[1771898400,5177.68,5191.895,5161.37,5168.375]},{\"index\":210,\"value\":[1771909200,5168.375,5185.8,5156.605,5179.425]},{\"index\":211,\"value\":[1771920000,5179.425,5181.99,5163.355,5172.885]},{\"index\":212,\"value\":[1771930800,5172.885,5178.62,5111.12,5115.06]},{\"index\":213,\"value\":[1771941600,5115.06,5155.5,5093.925,5141.845]},{\"index\":214,\"value\":[1771952400,5141.845,5170.12,5141.815,5154.125]},{\"index\":215,\"value\":[1771963200,5154.125,5173.27,5140.755,5142.845]},{\"index\":216,\"value\":[1771974000,5142.845,5190.075,5121.57,5176.995]},{\"index\":217,\"value\":[1771984800,5176.995,5194.01,5166.585,5182.685]},{\"index\":218,\"value\":[1771995600,5182.685,5210.74,5180.655,5184.7]},{\"index\":219,\"value\":[1772006400,5184.7,5197.3,5170.605,5175.165]},{\"index\":220,\"value\":[1772017200,5175.165,5191.505,5155.215,5185.27]},{\"index\":221,\"value\":[1772028000,5185.27,5213.97,5158.97,5212.35]},{\"index\":222,\"value\":[1772038800,5212.35,5217.73,5191.805,5205.175]},{\"index\":223,\"value\":[1772049600,5205.175,5206.355,5146.19,5165.525]},{\"index\":224,\"value\":[1772060400,5165.525,5198.41,5155.725,5191.655]},{\"index\":225,\"value\":[1772071200,5191.655,5199.325,5174.305,5192.775]},{\"index\":226,\"value\":[1772082000,5192.775,5205.91,5179.765,5186.095]},{\"index\":227,\"value\":[1772092800,5186.095,5190.88,5166.22,5171.545]},{\"index\":228,\"value\":[1772103600,5171.545,5187.965,5157.89,5166.39]},{\"index\":229,\"value\":[1772114400,5166.39,5192.865,5130.44,5179.725]},{\"index\":230,\"value\":[1772125200,5179.725,5194.12,5160.725,5187.09]},{\"index\":231,\"value\":[1772136000,5187.09,5200.86,5182.99,5184.78]},{\"index\":232,\"value\":[1772146800,5184.78,5194.905,5167.105,5194.07]},{\"index\":233,\"value\":[1772157600,5194.07,5199.805,5173.705,5181.755]},{\"index\":234,\"value\":[1772168400,5181.755,5200.61,5175.8,5176.175]},{\"index\":235,\"value\":[1772179200,5176.175,5182.695,5168.5,5177.715]},{\"index\":236,\"value\":[1772190000,5177.715,5240.55,5172.695,5223.225]},{\"index\":237,\"value\":[1772200800,5223.225,5257.87,5213.985,5229.22]},{\"index\":238,\"value\":[1772211600,5229.22,5252.38,5221.375,5250.135]},{\"index\":239,\"value\":[1772222400,5250.135,5281.385,5248.72,5279.205]},{\"index\":240,\"value\":[1772406000,5279.205,5393.915,5279.205,5325.005]},{\"index\":241,\"value\":[1772416800,5325.005,5367.26,5317.195,5356.085]},{\"index\":242,\"value\":[1772427600,5356.085,5419.37,5341.07,5408.25]},{\"index\":243,\"value\":[1772438400,5408.25,5416.805,5379.315,5389.36]},{\"index\":244,\"value\":[1772449200,5389.36,5416.96,5375.36,5394.015]},{\"index\":245,\"value\":[1772460000,5394.015,5395.27,5260.22,5290.325]},{\"index\":246,\"value\":[1772470800,5290.325,5334.235,5287.045,5330.575]},{\"index\":247,\"value\":[1772481600,5330.575,5346.505,5321.45,5322.065]},{\"index\":248,\"value\":[1772492400,5322.065,5379.94,5322.065,5339.425]},{\"index\":249,\"value\":[1772503200,5339.425,5375.745,5332.98,5361.325]},{\"index\":250,\"value\":[1772514000,5361.325,5367.34,5279.185,5327.81]},{\"index\":251,\"value\":[1772524800,5327.81,5336,5226.51,5248.675]},{\"index\":252,\"value\":[1772535600,5248.675,5264.12,5073.515,5156.87]},{\"index\":253,\"value\":[1772546400,5156.87,5175.36,4996.1,5107.305]},{\"index\":254,\"value\":[1772557200,5107.305,5148.925,5065.31,5113.405]},{\"index\":255,\"value\":[1772568000,5113.405,5130.225,5083.475,5088.52]},{\"index\":256,\"value\":[1772578800,5088.52,5178.5,5085.125,5175.17]},{\"index\":257,\"value\":[1772589600,5175.17,5190.79,5141.5,5156.94]},{\"index\":258,\"value\":[1772600400,5156.94,5176,5121.085,5168.36]},{\"index\":259,\"value\":[1772611200,5168.36,5202.56,5147.55,5189.92]},{\"index\":260,\"value\":[1772622000,5189.92,5206.1,5156.53,5168.045]},{\"index\":261,\"value\":[1772632800,5168.045,5185.12,5131.41,5149.84]},{\"index\":262,\"value\":[1772643600,5149.84,5153.085,5109.57,5138.08]},{\"index\":263,\"value\":[1772654400,5138.08,5146.9,5123.79,5140.925]},{\"index\":264,\"value\":[1772665200,5140.925,5186.375,5140.925,5172.82]},{\"index\":265,\"value\":[1772676000,5172.82,5195.125,5166.425,5171.77]},{\"index\":266,\"value\":[1772686800,5171.77,5176.875,5121.1,5162.235]},{\"index\":267,\"value\":[1772697600,5162.235,5180.495,5137.96,5164.66]},{\"index\":268,\"value\":[1772708400,5164.66,5171.52,5081.25,5118.205]},{\"index\":269,\"value\":[1772719200,5118.205,5129.915,5054.455,5077.795]},{\"index\":270,\"value\":[1772730000,5077.795,5089.52,5051.215,5066.065]},{\"index\":271,\"value\":[1772740800,5066.065,5094.805,5061.85,5082.185]},{\"index\":272,\"value\":[1772751600,5082.185,5144.09,5066.64,5134.87]},{\"index\":273,\"value\":[1772762400,5134.87,5141.565,5122.26,5127.645]},{\"index\":274,\"value\":[1772773200,5127.645,5130.08,5105.85,5119.705]},{\"index\":275,\"value\":[1772784000,5119.705,5123.14,5075.83,5091.155]},{\"index\":276,\"value\":[1772794800,5091.155,5130.735,5062.945,5085.045]},{\"index\":277,\"value\":[1772805600,5085.045,5171.7,5081.185,5140.08]},{\"index\":278,\"value\":[1772816400,5140.08,5174.665,5128.995,5159.92]},{\"index\":279,\"value\":[1772827200,5159.92,5176.47,5149.925,5171.825]},{\"index\":280,\"value\":[1773007200,5171.825,5192.555,5028.7,5050.095]},{\"index\":281,\"value\":[1773018000,5050.095,5102.375,5014.895,5091.565]},{\"index\":282,\"value\":[1773028800,5091.565,5140.61,5081.21,5097.755]},{\"index\":283,\"value\":[1773039600,5097.755,5132.73,5087.37,5105.32]},{\"index\":284,\"value\":[1773050400,5105.32,5112.265,5079.995,5095.045]},{\"index\":285,\"value\":[1773061200,5095.045,5116.075,5060.82,5099.755]},{\"index\":286,\"value\":[1773072000,5099.755,5126.525,5089.245,5123.39]},{\"index\":287,\"value\":[1773082800,5123.39,5148.145,5118.635,5138.83]},{\"index\":288,\"value\":[1773093600,5138.845,5156.155,5117.81,5131.155]},{\"index\":289,\"value\":[1773104400,5131.155,5186.735,5124.795,5157.79]},{\"index\":290,\"value\":[1773115200,5157.79,5180.925,5154.495,5175.4]},{\"index\":291,\"value\":[1773126000,5175.4,5195.265,5158.69,5182.645]},{\"index\":292,\"value\":[1773136800,5182.645,5192.005,5156.665,5187.015]},{\"index\":293,\"value\":[1773147600,5187.015,5238.6,5185.53,5228.71]},{\"index\":294,\"value\":[1773158400,5228.71,5235.645,5160.86,5191.725]},{\"index\":295,\"value\":[1773169200,5191.725,5207.75,5180.055,5192.02]},{\"index\":296,\"value\":[1773180000,5192.02,5219.525,5183.17,5215.56]},{\"index\":297,\"value\":[1773190800,5215.56,5223.085,5194.315,5203.415]},{\"index\":298,\"value\":[1773201600,5203.415,5210.89,5190.61,5197.665]},{\"index\":299,\"value\":[1773212400,5197.665,5202.46,5175.745,5188.675]}]},\"nsBars\":{\"start\":0,\"end\":0,\"data\":[]},\"symbolInfo\":{\"source2\":{\"country\":\"US\",\"description\":\"FOREX.com\",\"exchange-type\":\"exchange\",\"id\":\"FOREXCOM\",\"name\":\"FOREX.com\",\"url\":\"https://www.forex.com/\"},\"currency_code\":\"USD\",\"source_id\":\"FOREXCOM\",\"subsession_id\":\"regular\",\"provider_id\":\"gain\",\"currency_id\":\"USD\",\"format\":\"price\",\"formatter\":\"price\",\"pro_perm\":\"\",\"measure\":\"price\",\"allowed_adjustment\":\"none\",\"short_description\":\"Gold / U.S. Dollar\",\"variable_tick_size\":\"\",\"name\":\"XAUUSD\",\"full_name\":\"FOREXCOM:XAUUSD\",\"pro_name\":\"FOREXCOM:XAUUSD\",\"base_name\":[\"FOREXCOM:XAUUSD\"],\"description\":\"Gold / U.S. Dollar\",\"exchange\":\"FOREXCOM\",\"pricescale\":100,\"pointvalue\":1,\"minmov\":1,\"session\":\"1800-1700:23456\",\"session_display\":\"1800-1700:23456\",\"subsessions\":[{\"description\":\"Regular Trading Hours\",\"id\":\"regular\",\"private\":false,\"session\":\"1800-1700:23456\",\"session-display\":\"1800-1700:23456\"}],\"type\":\"commodity\",\"typespecs\":[\"cfd\"],\"has_intraday\":true,\"fractional\":false,\"listed_exchange\":\"FOREXCOM\",\"legs\":[\"FOREXCOM:XAUUSD\"],\"is_tradable\":true,\"minmove2\":1,\"timezone\":\"America/New_York\",\"aliases\":[],\"alternatives\":[],\"is_replayable\":true,\"has_adjustment\":false,\"has_extended_hours\":false,\"bar_source\":\"mid\",\"bar_transform\":\"openprev\",\"bar_fillgaps\":false,\"visible_plots_set\":\"ohlc\",\"is-tickbars-available\":true,\"exchange_listed_name\":\"FOREX.com\"}},{\"type\":\"study_Dividends\",\"id\":\"ESD$TV_DIVIDENDS\",\"state\":{\"inputs\":{},\"styles\":{\"Gross\":{\"display\":4294967295,\"color\":\"#2962ff\",\"linestyle\":0,\"linewidth\":2,\"plottype\":\"line\",\"trackPrice\":false,\"title\":\"Gross\"},\"ExDate\":{\"display\":4294967295,\"color\":\"#2962ff\",\"linestyle\":0,\"linewidth\":2,\"plottype\":\"line\",\"trackPrice\":false,\"title\":\"ExDate\"},\"Net\":{\"display\":4294967295,\"color\":\"#2962ff\",\"linestyle\":0,\"linewidth\":2,\"plottype\":\"line\",\"trackPrice\":false,\"title\":\"Net\"},\"PayDate\":{\"display\":4294967295,\"color\":\"#2962ff\",\"linestyle\":0,\"linewidth\":2,\"plottype\":\"line\",\"trackPrice\":false,\"title\":\"PayDate\"}},\"bands\":{},\"graphics\":{},\"ohlcPlots\":{},\"palettes\":{},\"filledAreasStyle\":{},\"filledAreas\":{},\"visible\":true,\"showLegendValues\":true,\"showLegendInputs\":true,\"showLabelsOnPriceScale\":true,\"precision\":\"default\",\"parentSources\":[]},\"zorder\":10000006,\"ownFirstValue\":null,\"data\":{\"start\":0,\"end\":0,\"data\":[],\"symbols\":{},\"graphics\":{\"indexes\":[]},\"plotOffsets\":{},\"version\":2},\"ownerSource\":\"_seriesId\",\"metaInfo\":\"Dividends@tv-basicstudies-262\"},{\"type\":\"study_Splits\",\"id\":\"ESD$TV_SPLITS\",\"state\":{\"inputs\":{},\"styles\":{\"Denominator\":{\"display\":4294967295,\"color\":\"#2962ff\",\"linestyle\":0,\"linewidth\":2,\"plottype\":\"line\",\"trackPrice\":false,\"title\":\"Denominator\"},\"Numerator\":{\"display\":4294967295,\"color\":\"#2962ff\",\"linestyle\":0,\"linewidth\":2,\"plottype\":\"line\",\"trackPrice\":false,\"title\":\"Numerator\"},\"Time\":{\"display\":4294967295,\"color\":\"#2962ff\",\"linestyle\":0,\"linewidth\":2,\"plottype\":\"line\",\"trackPrice\":false,\"title\":\"Time\"}},\"bands\":{},\"graphics\":{},\"ohlcPlots\":{},\"palettes\":{},\"filledAreasStyle\":{},\"filledAreas\":{},\"visible\":true,\"showLegendValues\":true,\"showLegendInputs\":true,\"showLabelsOnPriceScale\":true,\"precision\":\"default\",\"parentSources\":[]},\"zorder\":10000007,\"ownFirstValue\":null,\"data\":{\"start\":0,\"end\":0,\"data\":[],\"symbols\":{},\"graphics\":{\"indexes\":[]},\"plotOffsets\":{}},\"ownerSource\":\"_seriesId\",\"metaInfo\":\"Splits@tv-basicstudies-262\"},{\"type\":\"study_Earnings\",\"id\":\"ESD$TV_EARNINGS\",\"state\":{\"inputs\":{},\"styles\":{\"Actual\":{\"display\":4294967295,\"color\":\"#2962ff\",\"linestyle\":0,\"linewidth\":2,\"plottype\":\"line\",\"trackPrice\":false,\"title\":\"Actual\"},\"Estimate\":{\"display\":4294967295,\"color\":\"#2962ff\",\"linestyle\":0,\"linewidth\":2,\"plottype\":\"line\",\"trackPrice\":false,\"title\":\"Estimate\"},\"FiscalDate\":{\"display\":4294967295,\"color\":\"#2962ff\",\"linestyle\":0,\"linewidth\":2,\"plottype\":\"line\",\"trackPrice\":false,\"title\":\"FiscalDate\"},\"Time\":{\"display\":4294967295,\"color\":\"#2962ff\",\"linestyle\":0,\"linewidth\":2,\"plottype\":\"line\",\"trackPrice\":false,\"title\":\"Time\"},\"Reported\":{\"display\":4294967295,\"color\":\"#2962ff\",\"linestyle\":0,\"linewidth\":2,\"plottype\":\"line\",\"trackPrice\":false,\"title\":\"Reported\"},\"RevenueEstimate\":{\"display\":4294967295,\"color\":\"#2962ff\",\"linestyle\":0,\"linewidth\":2,\"plottype\":\"line\",\"trackPrice\":false,\"title\":\"RevenueEstimate\"},\"RevenueActual\":{\"display\":4294967295,\"color\":\"#2962ff\",\"linestyle\":0,\"linewidth\":2,\"plottype\":\"line\",\"trackPrice\":false,\"title\":\"RevenueActual\"},\"Flags\":{\"display\":4294967295,\"color\":\"#2962ff\",\"linestyle\":0,\"linewidth\":2,\"plottype\":\"line\",\"trackPrice\":false,\"title\":\"Flags\"}},\"bands\":{},\"graphics\":{},\"ohlcPlots\":{},\"palettes\":{},\"filledAreasStyle\":{},\"filledAreas\":{},\"visible\":true,\"showLegendValues\":true,\"showLegendInputs\":true,\"showLabelsOnPriceScale\":true,\"precision\":\"default\",\"parentSources\":[]},\"zorder\":10000008,\"ownFirstValue\":null,\"data\":{\"start\":0,\"end\":0,\"data\":[],\"symbols\":{},\"graphics\":{\"indexes\":[]},\"plotOffsets\":{}},\"ownerSource\":\"_seriesId\",\"metaInfo\":\"Earnings@tv-basicstudies-262\"},{\"type\":\"study_BarSetContinuousRollDates\",\"id\":\"ESD$TV_ROLLDATES\",\"state\":{\"inputs\":{\"currenttime\":\"now\"},\"styles\":{\"CurrentContractCode\":{\"display\":4294967295,\"color\":\"#2962ff\",\"linestyle\":0,\"linewidth\":2,\"plottype\":\"line\",\"trackPrice\":false,\"title\":\"CurrentContractCode\"},\"NextContractCode\":{\"display\":4294967295,\"color\":\"#2962ff\",\"linestyle\":0,\"linewidth\":2,\"plottype\":\"line\",\"trackPrice\":false,\"title\":\"NextContractCode\"},\"SwitchDate\":{\"display\":4294967295,\"color\":\"#2962ff\",\"linestyle\":0,\"linewidth\":2,\"plottype\":\"line\",\"trackPrice\":false,\"title\":\"SwitchDate\"},\"CurrentContractCode2\":{\"display\":4294967295,\"color\":\"#2962ff\",\"linestyle\":0,\"linewidth\":2,\"plottype\":\"line\",\"trackPrice\":false,\"title\":\"CurrentContractCode2\"},\"NextContractCode2\":{\"display\":4294967295,\"color\":\"#2962ff\",\"linestyle\":0,\"linewidth\":2,\"plottype\":\"line\",\"trackPrice\":false,\"title\":\"NextContractCode2\"},\"SwitchDate2\":{\"display\":4294967295,\"color\":\"#2962ff\",\"linestyle\":0,\"linewidth\":2,\"plottype\":\"line\",\"trackPrice\":false,\"title\":\"SwitchDate2\"},\"CurrentContractCode3\":{\"display\":4294967295,\"color\":\"#2962ff\",\"linestyle\":0,\"linewidth\":2,\"plottype\":\"line\",\"trackPrice\":false,\"title\":\"CurrentContractCode3\"},\"NextContractCode3\":{\"display\":4294967295,\"color\":\"#2962ff\",\"linestyle\":0,\"linewidth\":2,\"plottype\":\"line\",\"trackPrice\":false,\"title\":\"NextContractCode3\"},\"SwitchDate3\":{\"display\":4294967295,\"color\":\"#2962ff\",\"linestyle\":0,\"linewidth\":2,\"plottype\":\"line\",\"trackPrice\":false,\"title\":\"SwitchDate3\"},\"CurrentContractCode4\":{\"display\":4294967295,\"color\":\"#2962ff\",\"linestyle\":0,\"linewidth\":2,\"plottype\":\"line\",\"trackPrice\":false,\"title\":\"CurrentContractCode4\"},\"NextContractCode4\":{\"display\":4294967295,\"color\":\"#2962ff\",\"linestyle\":0,\"linewidth\":2,\"plottype\":\"line\",\"trackPrice\":false,\"title\":\"NextContractCode4\"},\"SwitchDate4\":{\"display\":4294967295,\"color\":\"#2962ff\",\"linestyle\":0,\"linewidth\":2,\"plottype\":\"line\",\"trackPrice\":false,\"title\":\"SwitchDate4\"},\"Overflowed\":{\"display\":4294967295,\"color\":\"#2962ff\",\"linestyle\":0,\"linewidth\":2,\"plottype\":\"line\",\"trackPrice\":false,\"title\":\"Overflowed\"}},\"bands\":{},\"graphics\":{},\"ohlcPlots\":{},\"palettes\":{},\"filledAreasStyle\":{},\"filledAreas\":{},\"visible\":true,\"showLegendValues\":true,\"showLegendInputs\":true,\"showLabelsOnPriceScale\":true,\"precision\":\"default\",\"parentSources\":[]},\"zorder\":10000009,\"ownFirstValue\":null,\"data\":{\"start\":0,\"end\":0,\"data\":[],\"symbols\":{},\"graphics\":{\"indexes\":[]},\"plotOffsets\":{}},\"ownerSource\":\"_seriesId\",\"metaInfo\":\"BarSetContinuousRollDates@tv-corestudies-37\"},{\"type\":\"ChartEventsSource\",\"id\":\"ChartEventsSource\",\"state\":{\"distribution\":{\"300\":[[{\"id\":\"398988\",\"title\":\"Core Inflation Rate MoM\",\"country\":\"US\",\"indicator\":\"Core Inflation Rate MoM\",\"category\":\"prce\",\"period\":\"Feb\",\"referenceDate\":\"2026-02-28T00:00:00Z\",\"source\":\"Bureau of Labour Statistics\",\"source_url\":\"http://www.bls.gov\",\"actual\":null,\"previous\":0.3,\"forecast\":0.2,\"actualRaw\":null,\"previousRaw\":0.3,\"forecastRaw\":0.2,\"currency\":\"USD\",\"unit\":\"%\",\"importance\":1,\"date\":\"2026-03-11T12:30:00.000Z\",\"timestamp\":1773232200000},{\"id\":\"398710\",\"title\":\"Inflation Rate YoY\",\"country\":\"US\",\"indicator\":\"Inflation Rate\",\"ticker\":\"ECONOMICS:USIRYY\",\"comment\":\"In the United States, unadjusted Consumer Price Index for All Urban Consumers is based on the prices of a market basket of: Food (14% of total weight); Energy (8%); Commodities Less Food & Energy Commodities (21%) and Services Less Energy Services (57%). The last category is divided by: Shelter (32%), Medical Care Services (7%) and Transportation Services (6%).\",\"category\":\"prce\",\"period\":\"Feb\",\"referenceDate\":\"2026-02-28T00:00:00Z\",\"source\":\"Bureau of Labour Statistics\",\"source_url\":\"http://www.bls.gov/\",\"actual\":null,\"previous\":2.4,\"forecast\":2.4,\"actualRaw\":null,\"previousRaw\":2.4,\"forecastRaw\":2.4,\"currency\":\"USD\",\"unit\":\"%\",\"importance\":1,\"date\":\"2026-03-11T12:30:00.000Z\",\"timestamp\":1773232200000},{\"id\":\"398677\",\"title\":\"Core Inflation Rate YoY\",\"country\":\"US\",\"indicator\":\"Core Inflation Rate\",\"ticker\":\"ECONOMICS:USCIR\",\"comment\":\"In the United States, the core inflation rate tracks changes in prices that consumers pay for a basket of goods which excludes volatile food and fuel costs.\",\"category\":\"prce\",\"period\":\"Feb\",\"referenceDate\":\"2026-02-28T00:00:00Z\",\"source\":\"Bureau of Labour Statistics\",\"source_url\":\"https://www.bls.gov\",\"actual\":null,\"previous\":2.5,\"forecast\":2.5,\"actualRaw\":null,\"previousRaw\":2.5,\"forecastRaw\":2.5,\"currency\":\"USD\",\"unit\":\"%\",\"importance\":1,\"date\":\"2026-03-11T12:30:00.000Z\",\"timestamp\":1773232200000},{\"id\":\"398027\",\"title\":\"Inflation Rate MoM\",\"country\":\"US\",\"indicator\":\"Inflation Rate Mom\",\"ticker\":\"ECONOMICS:USIRMM\",\"comment\":\"Inflation Rate MoM measures month over month change in the price of goods and services.\",\"category\":\"prce\",\"period\":\"Feb\",\"referenceDate\":\"2026-02-28T00:00:00Z\",\"source\":\"Bureau of Labour Statistics\",\"source_url\":\"http://www.bls.gov/\",\"actual\":null,\"previous\":0.2,\"forecast\":0.3,\"actualRaw\":null,\"previousRaw\":0.2,\"forecastRaw\":0.3,\"currency\":\"USD\",\"unit\":\"%\",\"importance\":1,\"date\":\"2026-03-11T12:30:00.000Z\",\"timestamp\":1773232200000}]],\"308\":[[{\"id\":\"398448\",\"title\":\"Building Permits Prel\",\"country\":\"US\",\"indicator\":\"Building Permits\",\"ticker\":\"ECONOMICS:USBP\",\"comment\":\"Building Permits refer to the approvals given by a local jurisdictions before the construction of a new or existing building can legally occur. Not all areas of the United States require a permit for construction.\",\"category\":\"hse\",\"period\":\"Jan\",\"referenceDate\":\"2026-01-31T00:00:00Z\",\"source\":\"Census Bureau\",\"source_url\":\"https://www.census.gov\",\"actual\":null,\"previous\":1.455,\"forecast\":1.41,\"actualRaw\":null,\"previousRaw\":1455000,\"forecastRaw\":1410000,\"currency\":\"USD\",\"scale\":\"M\",\"importance\":1,\"date\":\"2026-03-12T12:30:00.000Z\",\"timestamp\":1773318600000},{\"id\":\"398014\",\"title\":\"Housing Starts\",\"country\":\"US\",\"indicator\":\"Housing Starts\",\"ticker\":\"ECONOMICS:USHST\",\"comment\":\"Housing Starts refer to the number of new residential construction projects that have begun during any particular month. Estimates of housing starts include units in structures being totally rebuilt on an existing foundation.\",\"category\":\"hse\",\"period\":\"Jan\",\"referenceDate\":\"2026-01-31T00:00:00Z\",\"source\":\"Census Bureau\",\"source_url\":\"https://www.census.gov/\",\"actual\":null,\"previous\":1.404,\"forecast\":1.35,\"actualRaw\":null,\"previousRaw\":1404000,\"forecastRaw\":1350000,\"currency\":\"USD\",\"scale\":\"M\",\"importance\":1,\"date\":\"2026-03-12T12:30:00.000Z\",\"timestamp\":1773318600000}]],\"316\":[[{\"id\":\"399077\",\"title\":\"GDP Growth Rate QoQ 2nd Est\",\"country\":\"US\",\"indicator\":\"GDP Growth Rate\",\"ticker\":\"ECONOMICS:USGDPQQ\",\"comment\":\"On the expenditure side, personal consumption expenditures accounts for 68 percent of total GDP out of which purchases of goods constitute 23 percent and services 45 percent. Private investment accounts for 16 percent of GDP and government consumption and investment for 18 percent. As the value of goods exported (13.5 percent) is lower than the value of goods imported (16.5 percent), net exports subtracts 3 percent from the total GDP value.\",\"category\":\"gdp\",\"period\":\"Q4\",\"referenceDate\":\"2025-12-31T00:00:00Z\",\"source\":\"Bureau of Economics Analysis\",\"source_url\":\"http://www.bea.gov\",\"actual\":null,\"previous\":4.4,\"forecast\":1.4,\"actualRaw\":null,\"previousRaw\":4.4,\"forecastRaw\":1.4,\"currency\":\"USD\",\"unit\":\"%\",\"importance\":1,\"date\":\"2026-03-13T12:30:00.000Z\",\"timestamp\":1773405000000},{\"id\":\"399071\",\"title\":\"Personal Spending MoM\",\"country\":\"US\",\"indicator\":\"Personal Spending\",\"ticker\":\"ECONOMICS:USPSP\",\"comment\":\"Personal consumption expenditures (PCE) is the primary measure of consumer spending on goods and services in the U.S. economy. 1 It accounts for about two-thirds of domestic final spending, and thus it is the primary engine that drives future economic growth. PCE shows how much of the income earned by households is being spent on current consumption as opposed to how much is being saved for future consumption. PCE also provides a comprehensive measure of types of goods and services that are purchased by households. Thus, for example, it shows the portion of spending that is accounted for by discretionary items, such as motor vehicles, or the adjustments that consumers make to changes in prices, such as a sharp run-up in gasoline prices.\",\"category\":\"cnsm\",\"period\":\"Jan\",\"referenceDate\":\"2026-01-31T00:00:00Z\",\"source\":\"Bureau of Economics Analysis\",\"source_url\":\"https://www.bea.gov\",\"actual\":null,\"previous\":0.4,\"forecast\":0.3,\"actualRaw\":null,\"previousRaw\":0.4,\"forecastRaw\":0.3,\"currency\":\"USD\",\"unit\":\"%\",\"importance\":1,\"date\":\"2026-03-13T12:30:00.000Z\",\"timestamp\":1773405000000},{\"id\":\"399065\",\"title\":\"Personal Income MoM\",\"country\":\"US\",\"indicator\":\"Personal Income\",\"ticker\":\"ECONOMICS:USPI\",\"comment\":\"Personal Income refers to the income that persons receive in return for their provision of labor, land, and capital used in current production, plus current transfer receipts less contributions for government social insurance.\",\"category\":\"cnsm\",\"period\":\"Jan\",\"referenceDate\":\"2026-01-31T00:00:00Z\",\"source\":\"Bureau of Economics Analysis\",\"source_url\":\"https://www.bea.gov\",\"actual\":null,\"previous\":0.3,\"forecast\":0.5,\"actualRaw\":null,\"previousRaw\":0.3,\"forecastRaw\":0.5,\"currency\":\"USD\",\"unit\":\"%\",\"importance\":1,\"date\":\"2026-03-13T12:30:00.000Z\",\"timestamp\":1773405000000},{\"id\":\"398822\",\"title\":\"Core PCE Price Index MoM\",\"country\":\"US\",\"indicator\":\"Core PCE Price Index MoM\",\"ticker\":\"ECONOMICS:USCPCEPIMM\",\"category\":\"prce\",\"period\":\"Jan\",\"referenceDate\":\"2026-01-31T00:00:00Z\",\"source\":\"Bureau of Economics Analysis\",\"source_url\":\"http://www.bea.gov/\",\"actual\":null,\"previous\":0.4,\"forecast\":0.4,\"actualRaw\":null,\"previousRaw\":0.4,\"forecastRaw\":0.4,\"currency\":\"USD\",\"unit\":\"%\",\"importance\":1,\"date\":\"2026-03-13T12:30:00.000Z\",\"timestamp\":1773405000000},{\"id\":\"398585\",\"title\":\"Durable Goods Orders MoM\",\"country\":\"US\",\"indicator\":\"Durable Goods Orders\",\"ticker\":\"ECONOMICS:USDGO\",\"comment\":\"Durable Goods Orders refer to new orders placed with manufacturers for delivery of hard goods which meant to last at least three years.\",\"category\":\"bsnss\",\"period\":\"Jan\",\"referenceDate\":\"2026-01-31T00:00:00Z\",\"source\":\"Census Bureau\",\"source_url\":\"https://www.census.gov/\",\"actual\":null,\"previous\":-1.4,\"forecast\":1.2,\"actualRaw\":null,\"previousRaw\":-1.4,\"forecastRaw\":1.2,\"currency\":\"USD\",\"unit\":\"%\",\"importance\":1,\"date\":\"2026-03-13T12:30:00.000Z\",\"timestamp\":1773405000000}]],\"317\":[[{\"id\":\"398519\",\"title\":\"JOLTs Job Openings\",\"country\":\"US\",\"indicator\":\"Job Offers\",\"ticker\":\"ECONOMICS:USJO\",\"comment\":\"In the United States, job openings refer to all positions that are open (not filled) on the last business day of the month. Job openings are part of the Job Openings and Labor Turnover Survey (JOLTS). The survey collects data from around 16400 nonfarm establishments including retailers and manufacturers, as well as federal, state, and local government entities in the 50 states and the District of Columbia. The JOLTS assesses the unmet demand for labor in the U.S. labor market and gained attention in 2014 as favorite labor market indicator of Federal Reserve Chair Janet Yellen.\",\"category\":\"lbr\",\"period\":\"Jan\",\"referenceDate\":\"2026-01-31T00:00:00Z\",\"source\":\"Bureau of Labour Statistics\",\"source_url\":\"http://www.bls.gov\",\"actual\":null,\"previous\":6.542,\"forecast\":6.7,\"actualRaw\":null,\"previousRaw\":6542000,\"forecastRaw\":6700000,\"currency\":\"USD\",\"scale\":\"M\",\"importance\":1,\"date\":\"2026-03-13T14:00:00.000Z\",\"timestamp\":1773410400000},{\"id\":\"395286\",\"title\":\"Michigan Consumer Sentiment Prel\",\"country\":\"US\",\"indicator\":\"Consumer Confidence\",\"ticker\":\"ECONOMICS:USCCI\",\"comment\":\"The Index of Consumer Expectations focuses on three areas: how consumers view prospects for their own financial situation, how they view prospects for the general economy over the near term, and their view of prospects for the economy over the long term. Each monthly survey contains approximately 50 core questions, each of which tracks a different aspect of consumer attitudes and expectations. The samples for the Surveys of Consumers are statistically designed to be representative of all American households, excluding those in Alaska and Hawaii. Each month, a minimum of 500 interviews are conducted by telephone.\",\"category\":\"cnsm\",\"period\":\"Mar\",\"referenceDate\":\"2026-03-31T00:00:00Z\",\"source\":\"University of Michigan\",\"source_url\":\"http://www.sca.isr.umich.edu/\",\"actual\":null,\"previous\":56.6,\"forecast\":55,\"actualRaw\":null,\"previousRaw\":56.6,\"forecastRaw\":55,\"currency\":\"USD\",\"importance\":1,\"date\":\"2026-03-13T14:00:00.000Z\",\"timestamp\":1773410400000}]]}},\"zorder\":10000005},{\"type\":\"LineToolArrow\",\"id\":\"1jHAUQ\",\"state\":{\"linecolor\":\"rgba(0, 0, 0, 0)\",\"textcolor\":\"rgba(0, 0, 0, 1)\",\"linewidth\":1,\"linestyle\":0,\"extendLeft\":false,\"extendRight\":false,\"leftEnd\":0,\"rightEnd\":1,\"horzLabelsAlign\":\"right\",\"vertLabelsAlign\":\"middle\",\"fontsize\":12,\"bold\":false,\"italic\":true,\"alwaysShowStats\":false,\"showMiddlePoint\":false,\"showPriceLabels\":false,\"showPriceRange\":false,\"showPercentPriceRange\":false,\"showPipsPriceRange\":false,\"showBarsRange\":false,\"showDateTimeRange\":false,\"showDistance\":false,\"showAngle\":false,\"statsPosition\":2,\"text\":\"Breakout\",\"symbolStateVersion\":2,\"zOrderVersion\":2,\"frozen\":false,\"title\":\"\",\"interval\":\"180\",\"symbol\":\"FOREXCOM:XAUUSD\",\"currencyId\":null,\"unitId\":null,\"metricId\":\"price\",\"visible\":true,\"adjustedToSplitTime\":1773221613.814},\"points\":[{\"time_t\":1772503200,\"offset\":0,\"price\":5228.737181821979,\"interval\":\"180\"},{\"time_t\":1772179200,\"offset\":0,\"price\":5226.048392349753,\"interval\":\"180\"}],\"zorder\":9966,\"ownerSource\":\"_seriesId\",\"indexes\":[{\"index\":249,\"time\":1772503200,\"price\":5228.737181821979,\"interval\":\"180\"},{\"index\":235,\"time\":1772179200,\"price\":5226.048392349753,\"interval\":\"180\"}]},{\"type\":\"LineToolHorzLine\",\"id\":\"AJdXZa\",\"state\":{\"linecolor\":\"rgba(242, 54, 69, 1)\",\"linewidth\":2,\"linestyle\":0,\"showPrice\":true,\"textcolor\":\"rgba(242, 54, 69, 1)\",\"fontsize\":28,\"bold\":false,\"italic\":false,\"horzLabelsAlign\":\"right\",\"vertLabelsAlign\":\"bottom\",\"showLabel\":true,\"adjustedToSplitTime\":1773221466.053,\"metricId\":null,\"symbolStateVersion\":2,\"zOrderVersion\":2,\"visible\":true,\"frozen\":false,\"symbol\":\"FOREXCOM:XAUUSD\",\"currencyId\":null,\"unitId\":null,\"title\":\"\",\"text\":\"Resistance Level\",\"interval\":\"180\"},\"points\":[{\"time_t\":1768593600,\"offset\":0,\"price\":5240,\"interval\":\"180\"}],\"zorder\":1052,\"ownerSource\":\"_seriesId\",\"indexes\":[{\"price\":5240,\"index\":1,\"interval\":\"180\"}]},{\"type\":\"LineToolArrow\",\"id\":\"FfFl0A\",\"state\":{\"linecolor\":\"rgba(0, 0, 0, 0)\",\"textcolor\":\"rgba(0, 0, 0, 1)\",\"linewidth\":1,\"linestyle\":0,\"extendLeft\":false,\"extendRight\":false,\"leftEnd\":0,\"rightEnd\":1,\"horzLabelsAlign\":\"right\",\"vertLabelsAlign\":\"middle\",\"fontsize\":12,\"bold\":false,\"italic\":true,\"alwaysShowStats\":false,\"showMiddlePoint\":false,\"showPriceLabels\":false,\"showPriceRange\":false,\"showPercentPriceRange\":false,\"showPipsPriceRange\":false,\"showBarsRange\":false,\"showDateTimeRange\":false,\"showDistance\":false,\"showAngle\":false,\"statsPosition\":2,\"text\":\"Started To Grow\",\"symbolStateVersion\":2,\"zOrderVersion\":2,\"frozen\":false,\"title\":\"\",\"interval\":\"180\",\"symbol\":\"FOREXCOM:XAUUSD\",\"currencyId\":null,\"unitId\":null,\"metricId\":\"price\",\"visible\":true,\"adjustedToSplitTime\":1773221706.546},\"points\":[{\"time_t\":1770094800,\"offset\":0,\"price\":4378.688058162187,\"interval\":\"180\"},{\"time_t\":1769760000,\"offset\":0,\"price\":4376.436392035683,\"interval\":\"180\"}],\"zorder\":9991,\"ownerSource\":\"_seriesId\",\"indexes\":[{\"index\":91,\"time\":1770094800,\"price\":4378.688058162187,\"interval\":\"180\"},{\"index\":76,\"time\":1769760000,\"price\":4376.436392035683,\"interval\":\"180\"}]},{\"type\":\"LineToolHorzLine\",\"id\":\"JusFD5\",\"state\":{\"linecolor\":\"rgba(76, 175, 80, 1)\",\"linewidth\":2,\"linestyle\":0,\"showPrice\":true,\"textcolor\":\"rgba(76, 175, 80, 1)\",\"fontsize\":28,\"bold\":false,\"italic\":false,\"horzLabelsAlign\":\"right\",\"vertLabelsAlign\":\"top\",\"showLabel\":true,\"adjustedToSplitTime\":1773221567.171,\"metricId\":null,\"symbolStateVersion\":2,\"zOrderVersion\":2,\"visible\":true,\"frozen\":false,\"symbol\":\"FOREXCOM:XAUUSD\",\"currencyId\":null,\"unitId\":null,\"title\":\"\",\"text\":\"Support Level\",\"interval\":\"120\"},\"points\":[{\"time_t\":1769806800,\"offset\":0,\"price\":5090,\"interval\":\"120\"}],\"zorder\":526,\"ownerSource\":\"_seriesId\",\"indexes\":[{\"price\":5090,\"index\":0,\"interval\":\"240\"}]},{\"type\":\"LineToolArrow\",\"id\":\"NZmb5R\",\"state\":{\"linecolor\":\"rgba(0, 0, 0, 0)\",\"textcolor\":\"rgba(0, 0, 0, 1)\",\"linewidth\":1,\"linestyle\":0,\"extendLeft\":false,\"extendRight\":false,\"leftEnd\":0,\"rightEnd\":1,\"horzLabelsAlign\":\"right\",\"vertLabelsAlign\":\"middle\",\"fontsize\":12,\"bold\":false,\"italic\":true,\"alwaysShowStats\":false,\"showMiddlePoint\":false,\"showPriceLabels\":false,\"showPriceRange\":false,\"showPercentPriceRange\":false,\"showPipsPriceRange\":false,\"showBarsRange\":false,\"showDateTimeRange\":false,\"showDistance\":false,\"showAngle\":false,\"statsPosition\":2,\"text\":\"Dropped\",\"symbolStateVersion\":2,\"zOrderVersion\":2,\"frozen\":false,\"title\":\"\",\"interval\":\"180\",\"symbol\":\"FOREXCOM:XAUUSD\",\"currencyId\":null,\"unitId\":null,\"metricId\":\"price\",\"visible\":true,\"adjustedToSplitTime\":1773221617.333},\"points\":[{\"time_t\":1772514000,\"offset\":0,\"price\":5429.431031598278,\"interval\":\"180\"},{\"time_t\":1772406000,\"offset\":0,\"price\":5457.016558679979,\"interval\":\"180\"}],\"zorder\":9997,\"ownerSource\":\"_seriesId\",\"indexes\":[{\"index\":250,\"time\":1772514000,\"price\":5429.431031598278,\"interval\":\"180\"},{\"index\":240,\"time\":1772406000,\"price\":5457.016558679979,\"interval\":\"180\"}]},{\"type\":\"LineToolTrendLine\",\"id\":\"R2Kx3I\",\"state\":{\"linecolor\":\"rgba(255, 152, 0, 1)\",\"textcolor\":\"rgba(255, 152, 0, 1)\",\"linewidth\":2,\"linestyle\":0,\"extendLeft\":false,\"extendRight\":false,\"leftEnd\":0,\"rightEnd\":0,\"horzLabelsAlign\":\"center\",\"vertLabelsAlign\":\"bottom\",\"fontsize\":18,\"bold\":true,\"italic\":false,\"alwaysShowStats\":false,\"showMiddlePoint\":false,\"showPriceLabels\":false,\"showPriceRange\":false,\"showPercentPriceRange\":false,\"showPipsPriceRange\":false,\"showBarsRange\":false,\"showDateTimeRange\":false,\"showDistance\":false,\"showAngle\":false,\"statsPosition\":2,\"text\":\"Resistance Line\",\"symbolStateVersion\":2,\"zOrderVersion\":2,\"frozen\":false,\"title\":\"\",\"interval\":\"120\",\"symbol\":\"FOREXCOM:XAUUSD\",\"currencyId\":null,\"unitId\":null,\"metricId\":\"price\",\"visible\":true,\"adjustedToSplitTime\":1773221457.487},\"points\":[{\"time_t\":1771488000,\"offset\":0,\"price\":5642.169714617665,\"interval\":\"180\"},{\"time_t\":1773212400,\"offset\":40,\"price\":5072.773337630615,\"interval\":\"180\"}],\"zorder\":9999,\"ownerSource\":\"_seriesId\",\"indexes\":[{\"index\":187,\"time\":1771488000,\"price\":5642.169714617665,\"interval\":\"180\"},{\"index\":339,\"time\":1773817200,\"price\":5072.773337630615,\"interval\":\"180\"}]},{\"type\":\"LineToolHorzRay\",\"id\":\"T9zI8c\",\"state\":{\"linecolor\":\"rgba(0, 0, 0, 1)\",\"linewidth\":2,\"linestyle\":0,\"showPrice\":true,\"textcolor\":\"rgba(8, 153, 129, 1)\",\"fontsize\":28,\"bold\":true,\"italic\":false,\"horzLabelsAlign\":\"right\",\"vertLabelsAlign\":\"bottom\",\"showLabel\":true,\"adjustedToSplitTime\":1773221835.311,\"metricId\":null,\"symbolStateVersion\":2,\"zOrderVersion\":2,\"visible\":true,\"frozen\":false,\"symbol\":\"FOREXCOM:XAUUSD\",\"currencyId\":null,\"unitId\":null,\"title\":\"\",\"text\":\"TP1\",\"interval\":\"180\",\"intervalsVisibilities\":{\"ticks\":false,\"seconds\":false,\"ranges\":false}},\"points\":[{\"time_t\":1773212400,\"offset\":14,\"price\":5090,\"interval\":\"180\"}],\"zorder\":3156,\"ownerSource\":\"_seriesId\",\"indexes\":[{\"index\":313,\"time\":1773363600,\"price\":5090,\"interval\":\"180\"}]},{\"type\":\"LineToolRectangle\",\"id\":\"iIwBqN\",\"state\":{\"color\":\"rgba(255, 152, 0, 1)\",\"fillBackground\":true,\"backgroundColor\":\"rgba(255, 152, 0, 0.3953)\",\"linewidth\":2,\"transparency\":50,\"horzLabelsAlign\":\"left\",\"vertLabelsAlign\":\"bottom\",\"textColor\":\"rgba(255, 152, 0, 1)\",\"fontSize\":24,\"bold\":true,\"italic\":false,\"extendLeft\":false,\"extendRight\":false,\"middleLine\":{\"showLine\":false,\"lineWidth\":1,\"lineColor\":\"#9c27b0\",\"lineStyle\":2},\"linestyle\":0,\"symbolStateVersion\":2,\"zOrderVersion\":2,\"frozen\":false,\"title\":\"\",\"interval\":\"180\",\"symbol\":\"FOREXCOM:XAUUSD\",\"currencyId\":null,\"unitId\":null,\"metricId\":\"price\",\"visible\":true,\"adjustedToSplitTime\":1773221484.456,\"text\":\"Seller Zone\"},\"points\":[{\"time_t\":1770051600,\"offset\":0,\"price\":5216.576449649336,\"interval\":\"180\"},{\"time_t\":1773212400,\"offset\":21,\"price\":5239.7594010834155,\"interval\":\"180\"}],\"zorder\":2104,\"ownerSource\":\"_seriesId\",\"indexes\":[{\"index\":87,\"time\":1770051600,\"price\":5216.576449649336,\"interval\":\"180\"},{\"index\":320,\"time\":1773612000,\"price\":5239.7594010834155,\"interval\":\"180\"}]},{\"type\":\"LineToolArrow\",\"id\":\"q4FL0s\",\"state\":{\"linecolor\":\"rgba(0, 0, 0, 0)\",\"textcolor\":\"rgba(0, 0, 0, 1)\",\"linewidth\":1,\"linestyle\":0,\"extendLeft\":false,\"extendRight\":false,\"leftEnd\":0,\"rightEnd\":1,\"horzLabelsAlign\":\"right\",\"vertLabelsAlign\":\"middle\",\"fontsize\":12,\"bold\":false,\"italic\":true,\"alwaysShowStats\":false,\"showMiddlePoint\":false,\"showPriceLabels\":false,\"showPriceRange\":false,\"showPercentPriceRange\":false,\"showPipsPriceRange\":false,\"showBarsRange\":false,\"showDateTimeRange\":false,\"showDistance\":false,\"showAngle\":false,\"statsPosition\":2,\"text\":\"Breakout\",\"symbolStateVersion\":2,\"zOrderVersion\":2,\"frozen\":false,\"title\":\"\",\"interval\":\"180\",\"symbol\":\"FOREXCOM:XAUUSD\",\"currencyId\":null,\"unitId\":null,\"metricId\":\"price\",\"visible\":true,\"adjustedToSplitTime\":1773221721.472},\"points\":[{\"time_t\":1770019200,\"offset\":0,\"price\":5259.870156149872,\"interval\":\"180\"},{\"time_t\":1769684400,\"offset\":0,\"price\":5257.165357073576,\"interval\":\"180\"}],\"zorder\":4734,\"ownerSource\":\"_seriesId\",\"indexes\":[{\"index\":84,\"time\":1770019200,\"price\":5259.870156149872,\"interval\":\"180\"},{\"index\":69,\"time\":1769684400,\"price\":5257.165357073576,\"interval\":\"180\"}]},{\"type\":\"LineToolText\",\"id\":\"xaNAH5\",\"state\":{\"color\":\"rgba(74, 74, 74, 1)\",\"backgroundColor\":\"rgba(76, 175, 80, 0.3)\",\"borderColor\":\"rgba(42, 46, 57, 1)\",\"backgroundTransparency\":70,\"fontsize\":40,\"bold\":true,\"italic\":false,\"fillBackground\":false,\"drawBorder\":false,\"wordWrap\":false,\"wordWrapWidth\":153.88833223737083,\"text\":\"Technical Analysis\",\"anchored\":false,\"symbolStateVersion\":2,\"zOrderVersion\":2,\"frozen\":false,\"title\":\"\",\"interval\":\"180\",\"symbol\":\"FOREXCOM:XAUUSD\",\"currencyId\":null,\"unitId\":null,\"metricId\":null,\"visible\":true,\"adjustedToSplitTime\":1773222170.036,\"barSpacing\":6.140571426522555},\"points\":[{\"time_t\":1772514000,\"offset\":0,\"price\":4596.677824333969,\"interval\":\"180\"}],\"zorder\":1578,\"ownerSource\":\"_seriesId\",\"indexes\":[{\"index\":250,\"time\":1772514000,\"price\":4596.677824333969,\"interval\":\"180\"}]},{\"type\":\"LineToolRectangle\",\"id\":\"znL6HV\",\"state\":{\"color\":\"rgba(41, 98, 255, 1)\",\"fillBackground\":true,\"backgroundColor\":\"rgba(76, 175, 80, 0.3953)\",\"linewidth\":2,\"transparency\":50,\"horzLabelsAlign\":\"center\",\"vertLabelsAlign\":\"top\",\"textColor\":\"rgba(41, 98, 255, 1)\",\"fontSize\":24,\"bold\":true,\"italic\":false,\"extendLeft\":false,\"extendRight\":false,\"middleLine\":{\"showLine\":false,\"lineWidth\":1,\"lineColor\":\"#9c27b0\",\"lineStyle\":2},\"linestyle\":0,\"symbolStateVersion\":2,\"zOrderVersion\":2,\"frozen\":false,\"title\":\"\",\"interval\":\"180\",\"symbol\":\"FOREXCOM:XAUUSD\",\"currencyId\":null,\"unitId\":null,\"metricId\":\"price\",\"visible\":true,\"adjustedToSplitTime\":1773221585.145,\"text\":\" Buyer Zone\"},\"points\":[{\"time_t\":1770051600,\"offset\":0,\"price\":5089.576604221646,\"interval\":\"180\"},{\"time_t\":1773212400,\"offset\":21,\"price\":5116.06224406775,\"interval\":\"180\"}],\"zorder\":2630,\"ownerSource\":\"_seriesId\",\"indexes\":[{\"index\":87,\"time\":1770051600,\"price\":5089.576604221646,\"interval\":\"180\"},{\"index\":320,\"time\":1773612000,\"price\":5116.06224406775,\"interval\":\"180\"}]},{\"type\":\"LineToolParallelChannel\",\"id\":\"bzHmjz\",\"state\":{\"level1\":{\"color\":\"#2962ff\",\"visible\":false,\"coeff\":-0.25,\"lineStyle\":0,\"lineWidth\":2},\"level2\":{\"color\":\"rgba(67, 70, 81, 1)\",\"visible\":true,\"coeff\":0,\"lineStyle\":0,\"lineWidth\":2},\"level3\":{\"color\":\"#2962ff\",\"visible\":false,\"coeff\":0.25,\"lineStyle\":0,\"lineWidth\":2},\"level4\":{\"color\":\"rgba(41, 98, 255, 0.4968)\",\"visible\":true,\"coeff\":0.5,\"lineStyle\":2,\"lineWidth\":2},\"level5\":{\"color\":\"#2962ff\",\"visible\":false,\"coeff\":0.75,\"lineStyle\":0,\"lineWidth\":2},\"level6\":{\"color\":\"rgba(67, 70, 81, 1)\",\"visible\":true,\"coeff\":1,\"lineStyle\":0,\"lineWidth\":2},\"level7\":{\"color\":\"#2962ff\",\"visible\":false,\"coeff\":1.25,\"lineStyle\":0,\"lineWidth\":2},\"labelTextColor\":\"rgba(242, 54, 69, 1)\",\"backgroundColor\":\"rgba(242, 54, 69, 0.1007)\",\"extendLeft\":false,\"extendRight\":false,\"fillBackground\":true,\"transparency\":20,\"labelVisible\":false,\"labelHorzAlign\":\"left\",\"labelVertAlign\":\"top\",\"labelFontSize\":16,\"labelBold\":false,\"labelItalic\":false,\"version\":2,\"symbolStateVersion\":2,\"zOrderVersion\":2,\"frozen\":false,\"title\":\"\",\"interval\":\"180\",\"symbol\":\"FOREXCOM:XAUUSD\",\"currencyId\":null,\"unitId\":null,\"metricId\":\"price\",\"visible\":true,\"adjustedToSplitTime\":1773221687.771,\"labelText\":\"\"},\"points\":[{\"time_t\":1769781600,\"offset\":0,\"price\":4528.48023288272,\"interval\":\"180\"},{\"time_t\":1772557200,\"offset\":0,\"price\":5139.918464415083,\"interval\":\"180\"},{\"time_t\":1769781600,\"offset\":0,\"price\":4918.953675967626,\"interval\":\"180\"}],\"zorder\":9999.5,\"ownerSource\":\"_seriesId\",\"indexes\":[{\"index\":78,\"time\":1769781600,\"price\":4528.48023288272,\"interval\":\"180\"},{\"index\":254,\"time\":1772557200,\"price\":5139.918464415083,\"interval\":\"180\"},{\"index\":78,\"time\":1769781600,\"price\":4918.953675967626,\"interval\":\"180\"}],\"version\":2},{\"type\":\"LineToolArrow\",\"id\":\"q0oIKA\",\"state\":{\"linecolor\":\"rgba(0, 0, 0, 0)\",\"textcolor\":\"rgba(0, 0, 0, 1)\",\"linewidth\":1,\"linestyle\":0,\"extendLeft\":false,\"extendRight\":false,\"leftEnd\":0,\"rightEnd\":1,\"horzLabelsAlign\":\"right\",\"vertLabelsAlign\":\"middle\",\"fontsize\":12,\"bold\":false,\"italic\":true,\"alwaysShowStats\":false,\"showMiddlePoint\":false,\"showPriceLabels\":false,\"showPriceRange\":false,\"showPercentPriceRange\":false,\"showPipsPriceRange\":false,\"showBarsRange\":false,\"showDateTimeRange\":false,\"showDistance\":false,\"showAngle\":false,\"statsPosition\":2,\"text\":\"Breakout\",\"symbolStateVersion\":2,\"zOrderVersion\":2,\"frozen\":false,\"title\":\"\",\"interval\":\"180\",\"symbol\":\"FOREXCOM:XAUUSD\",\"currencyId\":null,\"unitId\":null,\"metricId\":\"price\",\"visible\":true,\"adjustedToSplitTime\":1773221701.059},\"points\":[{\"time_t\":1772524800,\"offset\":0,\"price\":5133.715396511012,\"interval\":\"180\"},{\"time_t\":1772200800,\"offset\":0,\"price\":5131.075470380404,\"interval\":\"180\"}],\"zorder\":9999.75,\"ownerSource\":\"_seriesId\",\"indexes\":[{\"index\":251,\"time\":1772524800,\"price\":5133.715396511012,\"interval\":\"180\"},{\"index\":237,\"time\":1772200800,\"price\":5131.075470380404,\"interval\":\"180\"}]},{\"type\":\"LineToolRectangle\",\"id\":\"GPthOI\",\"state\":{\"color\":\"rgba(41, 98, 255, 1)\",\"fillBackground\":true,\"backgroundColor\":\"rgba(76, 175, 80, 0.3953)\",\"linewidth\":2,\"transparency\":50,\"horzLabelsAlign\":\"center\",\"vertLabelsAlign\":\"top\",\"textColor\":\"rgba(76, 175, 80, 1)\",\"fontSize\":24,\"bold\":true,\"italic\":false,\"extendLeft\":false,\"extendRight\":false,\"middleLine\":{\"showLine\":false,\"lineWidth\":1,\"lineColor\":\"#9c27b0\",\"lineStyle\":2},\"linestyle\":0,\"symbolStateVersion\":2,\"zOrderVersion\":2,\"frozen\":false,\"title\":\"\",\"interval\":\"180\",\"symbol\":\"FOREXCOM:XAUUSD\",\"currencyId\":null,\"unitId\":null,\"metricId\":\"price\",\"visible\":true,\"adjustedToSplitTime\":1773221747.142,\"text\":\"Range\"},\"points\":[{\"time_t\":1772546400,\"offset\":0,\"price\":5202.548667259197,\"interval\":\"180\"},{\"time_t\":1773136800,\"offset\":0,\"price\":5018.6472334759555,\"interval\":\"180\"}],\"zorder\":9999.875,\"ownerSource\":\"_seriesId\",\"indexes\":[{\"index\":253,\"time\":1772546400,\"price\":5202.548667259197,\"interval\":\"180\"},{\"index\":292,\"time\":1773136800,\"price\":5018.6472334759555,\"interval\":\"180\"}]},{\"type\":\"LineToolArrow\",\"id\":\"M9IeIg\",\"state\":{\"linecolor\":\"rgba(0, 0, 0, 0)\",\"textcolor\":\"rgba(242, 54, 69, 1)\",\"linewidth\":1,\"linestyle\":0,\"extendLeft\":false,\"extendRight\":false,\"leftEnd\":0,\"rightEnd\":1,\"horzLabelsAlign\":\"right\",\"vertLabelsAlign\":\"middle\",\"fontsize\":20,\"bold\":true,\"italic\":false,\"alwaysShowStats\":false,\"showMiddlePoint\":false,\"showPriceLabels\":false,\"showPriceRange\":false,\"showPercentPriceRange\":false,\"showPipsPriceRange\":false,\"showBarsRange\":false,\"showDateTimeRange\":false,\"showDistance\":false,\"showAngle\":false,\"statsPosition\":2,\"text\":\"Resistance Line\",\"symbolStateVersion\":2,\"zOrderVersion\":2,\"frozen\":false,\"title\":\"\",\"interval\":\"180\",\"symbol\":\"FOREXCOM:XAUUSD\",\"currencyId\":null,\"unitId\":null,\"metricId\":\"price\",\"visible\":true,\"adjustedToSplitTime\":1773221790.728},\"points\":[{\"time_t\":1771012800,\"offset\":0,\"price\":5262.2988251570705,\"interval\":\"180\"},{\"time_t\":1771801200,\"offset\":0,\"price\":5413.756916548603,\"interval\":\"180\"}],\"zorder\":9999.937,\"ownerSource\":\"_seriesId\",\"indexes\":[{\"index\":160,\"time\":1771012800,\"price\":5262.2988251570705,\"interval\":\"180\"},{\"index\":200,\"time\":1771801200,\"price\":5413.756916548603,\"interval\":\"180\"}]},{\"type\":\"LineToolArrow\",\"id\":\"2l3LD3\",\"state\":{\"linecolor\":\"rgba(0, 0, 0, 0)\",\"textcolor\":\"rgba(76, 175, 80, 1)\",\"linewidth\":1,\"linestyle\":0,\"extendLeft\":false,\"extendRight\":false,\"leftEnd\":0,\"rightEnd\":1,\"horzLabelsAlign\":\"right\",\"vertLabelsAlign\":\"middle\",\"fontsize\":20,\"bold\":true,\"italic\":false,\"alwaysShowStats\":false,\"showMiddlePoint\":false,\"showPriceLabels\":false,\"showPriceRange\":false,\"showPercentPriceRange\":false,\"showPipsPriceRange\":false,\"showBarsRange\":false,\"showDateTimeRange\":false,\"showDistance\":false,\"showAngle\":false,\"statsPosition\":2,\"text\":\"Support Line\",\"symbolStateVersion\":2,\"zOrderVersion\":2,\"frozen\":false,\"title\":\"\",\"interval\":\"180\",\"symbol\":\"FOREXCOM:XAUUSD\",\"currencyId\":null,\"unitId\":null,\"metricId\":\"price\",\"visible\":true,\"adjustedToSplitTime\":1773221794.655},\"points\":[{\"time_t\":1770278400,\"offset\":0,\"price\":4588.420892529912,\"interval\":\"180\"},{\"time_t\":1770883200,\"offset\":0,\"price\":4720.4836080680025,\"interval\":\"180\"}],\"zorder\":9999.968,\"ownerSource\":\"_seriesId\",\"indexes\":[{\"index\":108,\"time\":1770278400,\"price\":4588.420892529912,\"interval\":\"180\"},{\"index\":148,\"time\":1770883200,\"price\":4720.4836080680025,\"interval\":\"180\"}]},{\"type\":\"LineToolArrow\",\"id\":\"j1wIXq\",\"state\":{\"linecolor\":\"rgba(0, 0, 0, 0)\",\"textcolor\":\"rgba(0, 0, 0, 1)\",\"linewidth\":1,\"linestyle\":0,\"extendLeft\":false,\"extendRight\":false,\"leftEnd\":0,\"rightEnd\":1,\"horzLabelsAlign\":\"right\",\"vertLabelsAlign\":\"middle\",\"fontsize\":12,\"bold\":false,\"italic\":true,\"alwaysShowStats\":false,\"showMiddlePoint\":false,\"showPriceLabels\":false,\"showPriceRange\":false,\"showPercentPriceRange\":false,\"showPipsPriceRange\":false,\"showBarsRange\":false,\"showDateTimeRange\":false,\"showDistance\":false,\"showAngle\":false,\"statsPosition\":2,\"text\":\"Fake Breakout\",\"symbolStateVersion\":2,\"zOrderVersion\":2,\"frozen\":false,\"title\":\"\",\"interval\":\"180\",\"symbol\":\"FOREXCOM:XAUUSD\",\"currencyId\":null,\"unitId\":null,\"metricId\":\"price\",\"visible\":true,\"adjustedToSplitTime\":1773221815.704},\"points\":[{\"time_t\":1770256800,\"offset\":0,\"price\":5105.645347603629,\"interval\":\"180\"},{\"time_t\":1770094800,\"offset\":0,\"price\":5103.019856019617,\"interval\":\"180\"}],\"zorder\":9999.984,\"ownerSource\":\"_seriesId\",\"indexes\":[{\"index\":106,\"time\":1770256800,\"price\":5105.645347603629,\"interval\":\"180\"},{\"index\":91,\"time\":1770094800,\"price\":5103.019856019617,\"interval\":\"180\"}]},{\"type\":\"LineToolPath\",\"id\":\"S04sK0\",\"state\":{\"lineColor\":\"rgba(41, 98, 255, 1)\",\"lineWidth\":2,\"lineStyle\":0,\"leftEnd\":0,\"rightEnd\":1,\"adjustedToSplitTime\":1773222154.378,\"symbolStateVersion\":2,\"zOrderVersion\":2,\"visible\":true,\"frozen\":false,\"symbol\":\"FOREXCOM:XAUUSD\",\"currencyId\":null,\"unitId\":null,\"metricId\":\"price\",\"intervalsVisibilities\":{\"ticks\":false,\"seconds\":false,\"minutes\":false,\"weeks\":false,\"months\":false,\"ranges\":false},\"title\":\"\",\"interval\":\"180\"},\"points\":[{\"time_t\":1773212400,\"offset\":1,\"price\":5190.228264254386,\"interval\":\"180\"},{\"time_t\":1773212400,\"offset\":12,\"price\":5093.6077580480705,\"interval\":\"180\"}],\"zorder\":9999.992,\"ownerSource\":\"_seriesId\",\"indexes\":[{\"index\":300,\"time\":1773223200,\"price\":5190.228264254386,\"interval\":\"180\"},{\"index\":311,\"time\":1773342000,\"price\":5093.6077580480705,\"interval\":\"180\"}]}],\"mainSourceId\":\"_seriesId\",\"stretchFactor\":2000,\"leftAxisesState\":[],\"rightAxisesState\":[{\"state\":{\"id\":\"YrLt9zPBiCtZ\",\"m_priceRange\":null,\"m_isAutoScale\":true,\"m_isPercentage\":false,\"m_isIndexedTo100\":false,\"m_isLog\":true,\"m_isLockScale\":false,\"m_isInverted\":false,\"m_topMargin\":0.1,\"m_bottomMargin\":0.08,\"alignLabels\":true,\"logFormula\":{\"logicalOffset\":4,\"coordOffset\":0.0001},\"hasCalculatedPriceRange\":true},\"sources\":[\"_seriesId\",\"ESD$TV_DIVIDENDS\",\"ESD$TV_SPLITS\",\"ESD$TV_EARNINGS\",\"ESD$TV_ROLLDATES\",\"ChartEventsSource\",\"1jHAUQ\",\"AJdXZa\",\"FfFl0A\",\"JusFD5\",\"NZmb5R\",\"R2Kx3I\",\"T9zI8c\",\"iIwBqN\",\"q4FL0s\",\"xaNAH5\",\"znL6HV\",\"bzHmjz\",\"q0oIKA\",\"GPthOI\",\"M9IeIg\",\"2l3LD3\",\"j1wIXq\",\"S04sK0\"]}],\"overlayPriceScales\":{},\"priceScaleRatio\":null,\"isCollapsed\":false,\"isMaximized\":false,\"mode\":0}],\"timeScale\":{\"m_barSpacing\":6.140571426522555,\"m_rightOffset\":52.84679799999998,\"rightOffsetPercentage\":5,\"usePercentageRightOffset\":false,\"points\":{\"items\":[1769662800,1769673600,1769684400,1769695200,1769706000,1769716800,1769727600,1769738400,1769749200,1769760000,1769770800,1769781600,1769792400,1769803200,1769986800,1769997600,1770008400,1770019200,1770030000,1770040800,1770051600,1770062400,1770073200,1770084000,1770094800,1770105600,1770116400,1770127200,1770138000,1770148800,1770159600,1770170400,1770181200,1770192000,1770202800,1770213600,1770224400,1770235200,1770246000,1770256800,1770267600,1770278400,1770289200,1770300000,1770310800,1770321600,1770332400,1770343200,1770354000,1770364800,1770375600,1770386400,1770397200,1770408000,1770591600,1770602400,1770613200,1770624000,1770634800,1770645600,1770656400,1770667200,1770678000,1770688800,1770699600,1770710400,1770721200,1770732000,1770742800,1770753600,1770764400,1770775200,1770786000,1770796800,1770807600,1770818400,1770829200,1770840000,1770850800,1770861600,1770872400,1770883200,1770894000,1770904800,1770915600,1770926400,1770937200,1770948000,1770958800,1770969600,1770980400,1770991200,1771002000,1771012800,1771196400,1771207200,1771218000,1771228800,1771239600,1771250400,1771261200,1771282800,1771293600,1771304400,1771315200,1771326000,1771336800,1771347600,1771358400,1771369200,1771380000,1771390800,1771401600,1771412400,1771423200,1771434000,1771444800,1771455600,1771466400,1771477200,1771488000,1771498800,1771509600,1771520400,1771531200,1771542000,1771552800,1771563600,1771574400,1771585200,1771596000,1771606800,1771617600,1771801200,1771812000,1771822800,1771833600,1771844400,1771855200,1771866000,1771876800,1771887600,1771898400,1771909200,1771920000,1771930800,1771941600,1771952400,1771963200,1771974000,1771984800,1771995600,1772006400,1772017200,1772028000,1772038800,1772049600,1772060400,1772071200,1772082000,1772092800,1772103600,1772114400,1772125200,1772136000,1772146800,1772157600,1772168400,1772179200,1772190000,1772200800,1772211600,1772222400,1772406000,1772416800,1772427600,1772438400,1772449200,1772460000,1772470800,1772481600,1772492400,1772503200,1772514000,1772524800,1772535600,1772546400,1772557200,1772568000,1772578800,1772589600,1772600400,1772611200,1772622000,1772632800,1772643600,1772654400,1772665200,1772676000,1772686800,1772697600,1772708400,1772719200,1772730000,1772740800,1772751600,1772762400,1772773200,1772784000,1772794800,1772805600,1772816400,1772827200,1773007200,1773018000,1773028800,1773039600,1773050400,1773061200,1773072000,1773082800,1773093600,1773104400,1773115200,1773126000,1773136800,1773147600,1773158400,1773169200,1773180000,1773190800,1773201600,1773212400,1773223200,1773234000,1773244800,1773255600,1773266400,1773277200,1773288000,1773298800,1773309600,1773320400,1773331200,1773342000,1773352800,1773363600,1773374400,1773385200,1773396000,1773406800,1773417600,1773428400,1773612000,1773622800,1773633600,1773644400,1773655200,1773666000,1773676800,1773687600,1773698400,1773709200,1773720000,1773730800,1773741600,1773752400,1773763200,1773774000,1773784800,1773795600,1773806400,1773817200,1773828000,1773838800,1773849600,1773860400,1773871200,1773882000,1773892800,1773903600,1773914400,1773925200,1773936000,1773946800,1773957600],\"zoffset\":-67},\"tickmarks\":{\"marks\":[[60,1772406000,240],[60,1769986800,81],[40,1769738400,74],[50,1769997600,82],[40,1770084000,90],[40,1770170400,98],[40,1770256800,106],[40,1770343200,114],[40,1770591600,121],[50,1770602400,122],[40,1770688800,130],[40,1770775200,138],[40,1770861600,146],[40,1770948000,154],[40,1771196400,161],[50,1771207200,162],[40,1771293600,169],[40,1771380000,177],[40,1771466400,185],[40,1771552800,193],[40,1771801200,200],[50,1771812000,201],[40,1771898400,209],[40,1771984800,217],[40,1772071200,225],[40,1772157600,233],[50,1772416800,241],[40,1772503200,249],[40,1772589600,257],[40,1772676000,265],[40,1772762400,273],[40,1773007200,280],[50,1773018000,281],[40,1773104400,289],[40,1773190800,297],[40,1773277200,305],[40,1773363600,313],[40,1773612000,320],[50,1773622800,321],[40,1773709200,329],[40,1773795600,337],[40,1773882000,345],[33,1769695200,70],[33,1769781600,78],[33,1770040800,86],[33,1770127200,94],[33,1770213600,102],[33,1770300000,110],[33,1770386400,118],[33,1770645600,126],[33,1770732000,134],[33,1770818400,142],[33,1770904800,150],[33,1770991200,158],[33,1771250400,166],[33,1771336800,173],[33,1771423200,181],[33,1771509600,189],[33,1771596000,197],[33,1771855200,205],[33,1771941600,213],[33,1772028000,221],[33,1772114400,229],[33,1772200800,237],[33,1772460000,245],[33,1772546400,253],[33,1772632800,261],[33,1772719200,269],[33,1772805600,277],[33,1773061200,285],[33,1773147600,293],[33,1773234000,301],[33,1773320400,309],[33,1773406800,317],[33,1773666000,325],[33,1773752400,333],[33,1773838800,341],[33,1773925200,349],[32,1769673600,68],[32,1769716800,72],[32,1769760000,76],[32,1769803200,80],[32,1770019200,84],[32,1770062400,88],[32,1770105600,92],[32,1770148800,96],[32,1770192000,100],[32,1770235200,104],[32,1770278400,108],[32,1770321600,112],[32,1770364800,116],[32,1770408000,120],[32,1770624000,124],[32,1770667200,128],[32,1770710400,132],[32,1770753600,136],[32,1770796800,140],[32,1770840000,144],[32,1770883200,148],[32,1770926400,152],[32,1770969600,156],[32,1771012800,160],[32,1771228800,164],[32,1771282800,168],[32,1771315200,171],[32,1771358400,175],[32,1771401600,179],[32,1771444800,183],[32,1771488000,187],[32,1771531200,191],[32,1771574400,195],[32,1771617600,199],[32,1771833600,203],[32,1771876800,207],[32,1771920000,211],[32,1771963200,215],[32,1772006400,219],[32,1772049600,223],[32,1772092800,227],[32,1772136000,231],[32,1772179200,235],[32,1772222400,239],[32,1772438400,243],[32,1772481600,247],[32,1772524800,251],[32,1772568000,255],[32,1772611200,259],[32,1772654400,263],[32,1772697600,267],[32,1772740800,271],[32,1772784000,275],[32,1772827200,279],[32,1773039600,283],[32,1773082800,287],[32,1773126000,291],[32,1773169200,295],[32,1773212400,299],[32,1773255600,303],[32,1773298800,307],[32,1773342000,311],[32,1773385200,315],[32,1773428400,319],[32,1773644400,323],[32,1773687600,327],[32,1773730800,331],[32,1773774000,335],[32,1773817200,339],[32,1773860400,343],[32,1773903600,347],[32,1773946800,351],[31,1769662800,67],[31,1769684400,69],[31,1769706000,71],[31,1769727600,73],[31,1769749200,75],[31,1769770800,77],[31,1769792400,79],[31,1770008400,83],[31,1770030000,85],[31,1770051600,87],[31,1770073200,89],[31,1770094800,91],[31,1770116400,93],[31,1770138000,95],[31,1770159600,97],[31,1770181200,99],[31,1770202800,101],[31,1770224400,103],[31,1770246000,105],[31,1770267600,107],[31,1770289200,109],[31,1770310800,111],[31,1770332400,113],[31,1770354000,115],[31,1770375600,117],[31,1770397200,119],[31,1770613200,123],[31,1770634800,125],[31,1770656400,127],[31,1770678000,129],[31,1770699600,131],[31,1770721200,133],[31,1770742800,135],[31,1770764400,137],[31,1770786000,139],[31,1770807600,141],[31,1770829200,143],[31,1770850800,145],[31,1770872400,147],[31,1770894000,149],[31,1770915600,151],[31,1770937200,153],[31,1770958800,155],[31,1770980400,157],[31,1771002000,159],[31,1771218000,163],[31,1771239600,165],[31,1771261200,167],[31,1771304400,170],[31,1771326000,172],[31,1771347600,174],[31,1771369200,176],[31,1771390800,178],[31,1771412400,180],[31,1771434000,182],[31,1771455600,184],[31,1771477200,186],[31,1771498800,188],[31,1771520400,190],[31,1771542000,192],[31,1771563600,194],[31,1771585200,196],[31,1771606800,198],[31,1771822800,202],[31,1771844400,204],[31,1771866000,206],[31,1771887600,208],[31,1771909200,210],[31,1771930800,212],[31,1771952400,214],[31,1771974000,216],[31,1771995600,218],[31,1772017200,220],[31,1772038800,222],[31,1772060400,224],[31,1772082000,226],[31,1772103600,228],[31,1772125200,230],[31,1772146800,232],[31,1772168400,234],[31,1772190000,236],[31,1772211600,238],[31,1772427600,242],[31,1772449200,244],[31,1772470800,246],[31,1772492400,248],[31,1772514000,250],[31,1772535600,252],[31,1772557200,254],[31,1772578800,256],[31,1772600400,258],[31,1772622000,260],[31,1772643600,262],[31,1772665200,264],[31,1772686800,266],[31,1772708400,268],[31,1772730000,270],[31,1772751600,272],[31,1772773200,274],[31,1772794800,276],[31,1772816400,278],[31,1773028800,282],[31,1773050400,284],[31,1773072000,286],[31,1773093600,288],[31,1773115200,290],[31,1773136800,292],[31,1773158400,294],[31,1773180000,296],[31,1773201600,298],[31,1773223200,300],[31,1773244800,302],[31,1773266400,304],[31,1773288000,306],[31,1773309600,308],[31,1773331200,310],[31,1773352800,312],[31,1773374400,314],[31,1773396000,316],[31,1773417600,318],[31,1773633600,322],[31,1773655200,324],[31,1773676800,326],[31,1773698400,328],[31,1773720000,330],[31,1773741600,332],[31,1773763200,334],[31,1773784800,336],[31,1773806400,338],[31,1773828000,340],[31,1773849600,342],[31,1773871200,344],[31,1773892800,346],[31,1773914400,348],[31,1773936000,350],[31,1773957600,352]],\"version\":2},\"width\":1749,\"weights\":{\"type\":\"constant\",\"state\":{\"baseIndex\":299}},\"baseIndex\":299},\"chartProperties\":{\"paneProperties\":{\"backgroundType\":\"gradient\",\"gridLinesMode\":\"both\",\"vertGridProperties\":{\"color\":\"rgba(42, 46, 57, 0.06)\"},\"horzGridProperties\":{\"color\":\"rgba(42, 46, 57, 0.06)\"},\"crossHairProperties\":{\"style\":2,\"transparency\":0,\"width\":1,\"color\":\"#9598A1\"},\"topMargin\":10,\"bottomMargin\":8,\"axisProperties\":{\"autoScale\":true,\"autoScaleDisabled\":false,\"lockScale\":false,\"percentage\":false,\"percentageDisabled\":false,\"indexedTo100\":false,\"log\":false,\"logDisabled\":false,\"alignLabels\":true,\"isInverted\":false},\"legendProperties\":{\"showStudyArguments\":true,\"showStudyTitles\":true,\"showStudyValues\":true,\"showSeriesTitle\":true,\"showSeriesOHLC\":true,\"showLegend\":true,\"showLastDayChange\":false,\"showBarChange\":true,\"showVolume\":false,\"showBackground\":true,\"showPriceSource\":true,\"backgroundTransparency\":50,\"showLogo\":true,\"showTradingButtons\":false,\"showTradingButtonsMobile\":false,\"showSeriesLegendCloseOnMobile\":true,\"barChangeUpColor\":\"#089981\",\"barChangeDownColor\":\"#F23645\",\"useBarChangeCustomColors\":false},\"separatorColor\":\"#E0E3EB\",\"background\":\"rgba(185, 219, 173, 1)\",\"backgroundGradientStartColor\":\"rgba(185, 219, 173, 1)\",\"backgroundGradientEndColor\":\"rgba(255, 249, 196, 1)\",\"rightOffset\":null},\"scalesProperties\":{\"fontSize\":12,\"scaleSeriesOnly\":false,\"showSeriesLastValue\":true,\"seriesLastValueMode\":1,\"showSeriesPrevCloseValue\":false,\"showStudyLastValue\":true,\"showSymbolLabels\":false,\"showStudyPlotLabels\":false,\"showBidAskLabels\":false,\"showPrePostMarketPriceLabel\":true,\"showFundamentalNameLabel\":false,\"showFundamentalLastValue\":true,\"barSpacing\":6,\"axisHighlightColor\":\"rgba(41, 98, 255, 0.25)\",\"axisLineToolLabelBackgroundColorCommon\":\"#2962FF\",\"axisLineToolLabelBackgroundColorActive\":\"#143EB2\",\"showPriceScaleCrosshairLabel\":true,\"showTimeScaleCrosshairLabel\":true,\"crosshairLabelBgColorLight\":\"#0F0F0F\",\"crosshairLabelBgColorDark\":\"#3D3D3D\",\"saveLeftEdge\":false,\"textColor\":\"#131722\",\"lineColor\":\"rgba(42, 46, 57, 0)\",\"backgroundColor\":\"#ffffff\"},\"publishedChartsTimelineProperties\":{\"type\":\"BarsMarksContainer\",\"id\":\"PublishedChartsTimeline\",\"zorder\":10000003,\"pinnedTooltips\":{}},\"chartEventsSourceProperties\":{\"visible\":true,\"futureOnly\":true,\"breaks\":{\"color\":\"#555555\",\"visible\":false,\"style\":2,\"width\":1}},\"tradingProperties\":{\"showPositions\":true,\"positionPL\":{\"visibility\":true,\"display\":0},\"bracketsPL\":{\"visibility\":true,\"display\":0},\"positionAndBracketsPL\":true,\"showProjectMarketOrder\":false,\"showOrders\":true,\"showExecutions\":true,\"showExecutionsLabels\":false,\"showReverse\":true,\"horizontalAlignment\":2,\"extendLeft\":true,\"lineLength\":5,\"lineWidth\":1,\"lineStyle\":0},\"priceScaleSelectionStrategyName\":\"auto\",\"inactivityGaps\":false},\"sessions\":{\"properties\":{\"sessionHighlight\":{\"backgrounds\":{\"preMarket\":{\"color\":\"#FF9800\",\"transparency\":92},\"postMarket\":{\"color\":\"#2962FF\",\"transparency\":92},\"electronic\":{\"color\":\"#2962FF\",\"transparency\":92},\"outOfSession\":{\"color\":\"#2962FF\",\"transparency\":92,\"visible\":true,\"available\":false}},\"vertlines\":{\"sessBreaks\":{\"color\":\"#4985e7\",\"style\":2,\"visible\":false,\"width\":1,\"available\":true}}}},\"data\":{\"graphics\":{\"indexes\":[]},\"metaInfo\":{\"palettes\":{},\"inputs\":[],\"plots\":[],\"graphics\":{\"backgrounds\":{\"postMarket\":{\"name\":\"Post-Market Extended Hours\"},\"preMarket\":{\"name\":\"Pre-Market Extended Hours\"}},\"vertlines\":{\"sessBreaks\":{\"halign\":\"left\",\"name\":\"Session Break\"}}},\"defaults\":{\"graphics\":{\"backgrounds\":{\"postMarket\":{\"color\":\"#2962ff\",\"transparency\":92,\"visible\":false},\"preMarket\":{\"color\":\"#ff9800\",\"transparency\":92,\"visible\":false}},\"vertlines\":{\"sessBreaks\":{\"color\":\"#4985e7\",\"style\":2,\"visible\":false,\"width\":1}}}},\"_metainfoVersion\":53,\"description\":\"Sessions\",\"format\":{\"type\":\"inherit\"},\"id\":\"Sessions@tv-basicstudies-262\",\"is_hidden_study\":true,\"is_price_study\":true,\"linkedToSeries\":true,\"shortDescription\":\"Sessions\",\"description_localized\":\"Sessions\",\"shortId\":\"Sessions\",\"packageId\":\"tv-basicstudies\",\"version\":262,\"fullId\":\"Sessions@tv-basicstudies-262\",\"productId\":\"tv-basicstudies\",\"_serverMetaInfoVersion\":51}}},\"version\":3,\"timezone\":\"Etc/UTC\",\"shouldBeSavedEvenIfHidden\":true,\"linkingGroup\":null,\"lineToolsGroups\":{\"groups\":[]},\"chartId\":\"1\"}],\"symbolLock\":0,\"intervalLock\":0,\"trackTimeLock\":0,\"dateRangeLock\":0,\"crosshairLock\":1,\"studyMetaInfoMap\":{\"Dividends@tv-basicstudies-262\":{\"palettes\":{},\"inputs\":[],\"plots\":[{\"id\":\"Gross\",\"type\":\"line\"},{\"id\":\"ExDate\",\"type\":\"line\"},{\"id\":\"Net\",\"type\":\"line\"},{\"id\":\"PayDate\",\"type\":\"line\"}],\"graphics\":{},\"defaults\":{},\"_metainfoVersion\":53,\"description\":\"Dividends\",\"format\":{\"type\":\"inherit\"},\"id\":\"Dividends@tv-basicstudies-262\",\"is_hidden_study\":true,\"is_price_study\":true,\"linkedToSeries\":true,\"shortDescription\":\"Dividends\",\"description_localized\":\"Dividends\",\"shortId\":\"Dividends\",\"packageId\":\"tv-basicstudies\",\"version\":262,\"fullId\":\"Dividends@tv-basicstudies-262\",\"productId\":\"tv-basicstudies\",\"_serverMetaInfoVersion\":51},\"Splits@tv-basicstudies-262\":{\"palettes\":{},\"inputs\":[],\"plots\":[{\"id\":\"Denominator\",\"type\":\"line\"},{\"id\":\"Numerator\",\"type\":\"line\"},{\"id\":\"Time\",\"type\":\"line\"}],\"graphics\":{},\"defaults\":{},\"_metainfoVersion\":53,\"description\":\"Splits\",\"format\":{\"type\":\"inherit\"},\"id\":\"Splits@tv-basicstudies-262\",\"is_hidden_study\":true,\"is_price_study\":true,\"linkedToSeries\":true,\"shortDescription\":\"Splits\",\"description_localized\":\"Splits\",\"shortId\":\"Splits\",\"packageId\":\"tv-basicstudies\",\"version\":262,\"fullId\":\"Splits@tv-basicstudies-262\",\"productId\":\"tv-basicstudies\",\"_serverMetaInfoVersion\":51},\"Earnings@tv-basicstudies-262\":{\"palettes\":{},\"inputs\":[],\"plots\":[{\"id\":\"Actual\",\"type\":\"line\"},{\"id\":\"Estimate\",\"type\":\"line\"},{\"id\":\"FiscalDate\",\"type\":\"line\"},{\"id\":\"Time\",\"type\":\"line\"},{\"id\":\"Reported\",\"type\":\"line\"},{\"id\":\"RevenueEstimate\",\"type\":\"line\"},{\"id\":\"RevenueActual\",\"type\":\"line\"},{\"id\":\"Flags\",\"type\":\"line\"}],\"graphics\":{},\"defaults\":{},\"_metainfoVersion\":53,\"description\":\"Earnings\",\"format\":{\"type\":\"inherit\"},\"id\":\"Earnings@tv-basicstudies-262\",\"is_hidden_study\":true,\"is_price_study\":true,\"linkedToSeries\":true,\"shortDescription\":\"Earnings\",\"description_localized\":\"Earnings\",\"shortId\":\"Earnings\",\"packageId\":\"tv-basicstudies\",\"version\":262,\"fullId\":\"Earnings@tv-basicstudies-262\",\"productId\":\"tv-basicstudies\",\"_serverMetaInfoVersion\":51},\"BarSetContinuousRollDates@tv-corestudies-37\":{\"palettes\":{},\"inputs\":[{\"defval\":\"now\",\"id\":\"currenttime\",\"name\":\"Currenttime\",\"type\":\"text\",\"display\":15}],\"plots\":[{\"id\":\"CurrentContractCode\",\"type\":\"line\"},{\"id\":\"NextContractCode\",\"type\":\"line\"},{\"id\":\"SwitchDate\",\"type\":\"line\"},{\"id\":\"CurrentContractCode2\",\"type\":\"line\"},{\"id\":\"NextContractCode2\",\"type\":\"line\"},{\"id\":\"SwitchDate2\",\"type\":\"line\"},{\"id\":\"CurrentContractCode3\",\"type\":\"line\"},{\"id\":\"NextContractCode3\",\"type\":\"line\"},{\"id\":\"SwitchDate3\",\"type\":\"line\"},{\"id\":\"CurrentContractCode4\",\"type\":\"line\"},{\"id\":\"NextContractCode4\",\"type\":\"line\"},{\"id\":\"SwitchDate4\",\"type\":\"line\"},{\"id\":\"Overflowed\",\"type\":\"line\"}],\"graphics\":{},\"defaults\":{\"inputs\":{\"currenttime\":\"now\"}},\"_metainfoVersion\":53,\"description\":\"Dates calculator for continuous\",\"format\":{\"type\":\"inherit\"},\"id\":\"BarSetContinuousRollDates@tv-corestudies-37\",\"is_hidden_study\":true,\"is_price_study\":true,\"shortDescription\":\"RollDatesCalculator\",\"description_localized\":\"Dates calculator for continuous\",\"shortId\":\"BarSetContinuousRollDates\",\"packageId\":\"tv-corestudies\",\"version\":37,\"fullId\":\"BarSetContinuousRollDates@tv-corestudies-37\",\"productId\":\"tv-corestudies\",\"_serverMetaInfoVersion\":51}},\"symbolAliasServiceState\":[]}"
},
"msg": "Success"
} Market Data - Market Data
Get comprehensive market data including company information, financials, analyst recommendations, and more.
Get all market data for specified symbol, including company info, financial data, technical indicators, and 10 other categories
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
symbol | string | ✓ | Trading symbol |
Request Examples
curl --request GET \
--url 'https://tradingview-data1.p.rapidapi.com/api/market-data/NASDAQ:AAPL' \
--header 'x-rapidapi-host: tradingview-data1.p.rapidapi.com' \
--header 'x-rapidapi-key: YOUR_RAPIDAPI_KEY' const symbol = 'NASDAQ:AAPL';
const response = await fetch(`https://tradingview-data1.p.rapidapi.com/api/market-data/${symbol}`, {
method: 'GET',
headers: {
'x-rapidapi-host': 'tradingview-data1.p.rapidapi.com',
'x-rapidapi-key': 'YOUR_RAPIDAPI_KEY'
}
});
const data = await response.json();
console.log(data); import requests
symbol = "NASDAQ:AAPL"
url = f"https://tradingview-data1.p.rapidapi.com/api/market-data/{symbol}"
headers = {
"x-rapidapi-host": "tradingview-data1.p.rapidapi.com",
"x-rapidapi-key": "YOUR_RAPIDAPI_KEY"
}
response = requests.get(url, headers=headers)
print(response.json()) Response Examples
{
"success": true,
"data": {
"symbol": "NASDAQ:AAPL",
"company": {
"isin-displayed": "US0378331005",
"ceo": "Timothy Donald Cook",
"isin": "US0378331005",
"currency-logoid": "country/US",
"description": "Apple Inc.",
"sector": "Electronic Technology",
"country_code": "US",
"listed_exchange": "NASDAQ",
"web_site_url": "http://www.apple.com",
"local_description": "Apple Inc.",
"currency_id": "USD",
"industry": "Telecommunications Equipment",
"currency_code": "USD",
"business_description": "Apple, Inc. engages in the design, manufacture, and sale of smartphones, personal computers, tablets, wearables and accessories, and other varieties of related services. It operates through the following geographical segments: Americas, Europe, Greater China, Japan, and Rest of Asia Pacific. The Americas segment includes North and South America. The Europe segment consists of European countries, as well as India, the Middle East, and Africa. The Greater China segment comprises China, Hong Kong, and Taiwan. The Rest of Asia Pacific segment includes Australia and Asian countries. Its products and services include iPhone, Mac, iPad, AirPods, Apple TV, Apple Watch, Beats products, AppleCare, iCloud, digital content stores, streaming, and licensing services. The company was founded by Steven Paul Jobs, Ronald Gerald Wayne, and Stephen G. Wozniak in April 1976 and is headquartered in Cupertino, CA.",
"fundamental_currency_code": "USD",
"exchange": "Cboe One",
"cusip": "037833100",
"timezone": "America/New_York",
"founded": 1976,
"short_description": "Apple Inc.",
"exchange_traded_name": "Cboe One",
"short-description": "Apple Inc.",
"local-description": "Apple Inc.",
"country_code_fund": "US",
"exchange-ticker": "AAPL",
"industry-i18n-en": "Telecommunications Equipment",
"currency-id": "USD",
"country": "United States",
"exchange-listed": "NASDAQ",
"description-i18n-en": "APPLE INC",
"number_of_employees": 166000,
"country_fund": "United States",
"exchange_listed_name": "NASDAQ",
"exchange-listed-symbol": "AAPL",
"top_revenue_country_code": "US",
"exchange-traded": "Cboe One",
"business_description-i18n-en": "Apple, Inc. engages in the design, manufacture, and sale of smartphones, personal computers, tablets, wearables and accessories, and other variety of related services. It operates through the following geographical segments: Americas, Europe, Greater China, Japan, and Rest of Asia Pacific. The Americas segment includes North and South America. The Europe segment consists of European countries, as well as India, the Middle East, and Africa. The Greater China segment comprises of China, Hong Kong, and Taiwan. The Rest of Asia Pacific segment includes Australia and Asian countries. Its products and services include iPhone, Mac, iPad, AirPods, Apple TV, Apple Watch, Beats products, Apple Care, iCloud, digital content stores, streaming, and licensing services. The company was founded by Steven Paul Jobs, Ronald Gerald Wayne, and Stephen G. Wozniak in 1977 and is headquartered in Cupertino, CA.",
"sector-i18n-en": "Electronic Technology",
"currency_fund": "USD",
"currency": "USD"
},
"ipo": {
"ipo_offer_date": 345427200
},
"indicators": {
"market_cap_basic": 4008685001793,
"price_52_week_high": 288.62,
"market_cap_calc": 4008685001792.9995,
"earnings_availability": 1,
"price_percent_change_52_week": 38.4634888438134,
"earnings_release_date": 1769722200,
"beta_1_year": 1.1557966,
"price_52_week_low": 193.25,
"price_earnings": 34.18988334725069,
"earnings_release_next_date": 1777581000,
"earnings_release_calendar_date": 1767139200,
"beta_2_year": 1.1140423,
"earnings_release_date_h": [
1769722200,
1761856320,
1753993980,
1746131400,
1738272600,
1730406900,
1722544500,
1714681980
],
"quick_ratio": 0.937561203939224,
"earnings_release_next_time": 1,
"earnings_release_time": 1,
"price_sales_ratio": 9.743150536234776,
"price_percent_change_1_week": 5.128402571901587,
"price_annual_sales": 9.743150536234776,
"price_book_ratio": 54.143675190042835,
"beta_10_year": 1.1667725,
"earnings_per_share_diluted_fh": 4.690300000000001,
"current_ratio": 0.973744664864166,
"beta_3_year": 0.8453335,
"beta_5_year": 1.1087966,
"earnings_per_share_forecast_next_fh": 3.679022,
"earnings_per_share_basic_fh": 4.7083,
"earnings_per_share_fh": 4.6899999999999995,
"price_annual_book": 54.143675190042835,
"earnings_release_next_calendar_date": 1774915200
},
"ttm": {
"earnings_per_share_basic_ttm": 7.9334,
"rates_ttm": {
"time": 1767139200,
"to_aud": 1.498689,
"to_cad": 1.373249,
"to_chf": 0.79277,
"to_cny": 6.994964,
"to_eur": 0.851419,
"to_gbp": 0.74228,
"to_inr": 89.88764,
"to_jpy": 156.715248,
"to_market": 1,
"to_symbol": 1,
"to_usd": 1
},
"price_earnings_ttm": 34.18988334725069,
"pre_tax_margin_ttm": 32.4016280356368,
"price_revenue_ttm": 9.1874341494478,
"pretax_income_ttm": 141147000000,
"free_cash_flow_ttm": 123324000000,
"change_in_accounts_receivable_ttm": -11164000000,
"dividend_payout_ratio_ttm": 13.03170626787115,
"total_cash_dividends_paid_ttm": -15486000000,
"purchase_sale_business_ttm": 0,
"piotroski_f_score_ttm": 9,
"free_cash_flow_ttm_h": [
123324000000,
98767000000,
96184000000,
98486000000,
98299000000,
108807000000,
104339000000,
101919000000
],
"non_oper_income_ttm": 77000000,
"capital_expenditures_fixed_assets_ttm": -12148000000,
"operating_cash_flow_per_share_ttm": 9.1471130066016,
"other_financing_cash_flow_sources_ttm": 0,
"sell_gen_admin_exp_total_ttm": -65087000000,
"other_financing_cash_flow_uses_ttm": -6075000000,
"supplying_of_long_term_debt_ttm": 4481000000,
"purchase_of_business_ttm": 0,
"funds_f_operations_ttm": 144172000000,
"ebitda_ttm": 152902000000,
"issuance_of_short_term_debt_ttm": 2000000,
"total_oper_expense_ttm": -294547000000,
"cash_f_financing_activities_ttm": -120971000000,
"reduction_of_long_term_debt_ttm": -12087000000,
"other_financing_cash_flow_items_total_ttm": -6075000000,
"operating_expenses_ttm": -65087000000,
"ebitda_per_share_ttm": 10.323992211936027,
"other_oper_expense_total_ttm": 0,
"debt_to_revenue_ttm": 0.2077719648223095,
"gross_margin_ttm": 47.325288039723,
"ebitda_margin_ttm": 35.1000993992429,
"minority_interest_exp_ttm": 0,
"earnings_per_share_ttm": 7.9038,
"dilution_adjustment_ttm": 0,
"earnings_per_share_diluted_ttm_h": [
7.9038,
7.4593,
6.5782,
6.4079,
6.2904,
6.0699,
6.5679,
6.4308
],
"total_revenue_ttm_h": [
435617000000,
416161000000,
408625000000,
400366000000,
395760000000,
391035000000,
385603000000,
381623000000
],
"capital_expenditures_other_assets_ttm": 0,
"sustainable_growth_rate_ttm": 147.999690369089,
"discontinued_operations_ttm": 0,
"preferred_dividends_cash_flow_ttm": 0,
"interest_capitalized_ttm": 0,
"net_margin_ttm": 27.0368236317683,
"return_on_equity_adjust_to_book_ttm": 3.3491193072391447,
"sale_of_stock_ttm": 0,
"other_investing_cash_flow_items_total_ttm": -1031000000,
"common_dividends_cash_flow_ttm": -15486000000,
"oper_income_ttm": 141070000000,
"cash_flow_deprecation_n_amortization_ttm": 11832000000,
"purchase_sale_investments_ttm": 13696000000,
"non_cash_items_ttm": 14563000000,
"ebit_ttm": 141070000000,
"operating_margin_ttm": 32.3839519577978,
"sales_of_investments_ttm": 44672000000,
"cash_flow_deferred_taxes_ttm": 0,
"return_on_common_equity_ttm": 152.02132328265,
"total_non_oper_income_ttm": 77000000,
"enterprise_value_ebitda_ttm": 26.37170868787197,
"altman_z_score_ttm": 10.6382004968314,
"net_income_starting_line_ttm": 117777000000,
"capex_per_share_ttm": 0.820236866689768,
"graham_numbers_ttm": 32.66031923925423,
"cash_f_operating_activities_ttm": 135472000000,
"other_income_ttm": 77000000,
"issuance_of_debt_net_ttm": -7604000000,
"diluted_net_income_ttm": 117777000000,
"zmijewski_score_ttm": -1.3748734798308557,
"cash_dividend_coverage_ratio_ttm": 9.30982823195144,
"earnings_per_share_diluted_ttm": 7.9038,
"ebitda_ttm_h": [
152902000000,
144748000000,
141696000000,
138866000000,
137352000000,
134661000000,
131781000000,
129629000000
],
"sell_gen_admin_exp_other_ttm": -27918000000,
"after_tax_other_income_ttm": 0,
"revenue_per_share_ttm": 29.4129999305891,
"return_of_invested_capital_percent_ttm": 0.7463948363219249,
"cash_f_investing_activities_ttm": 517000000,
"capital_expenditures_unchanged_ttm": 12148000000,
"other_investing_cash_flow_sources_ttm": 0,
"total_revenue_ttm": 435617000000,
"ebit_per_share_ttm": 9.525091766869075,
"issuance_of_stock_net_ttm": -91806000000,
"gross_profit_ttm": 206157000000,
"change_in_other_assets_ttm": -6931000000,
"income_tax_ttm": -23370000000,
"net_income_bef_disc_oper_ttm": 117777000000,
"issuance_of_long_term_debt_ttm": -7606000000,
"research_and_dev_ttm": -37169000000,
"other_investing_cash_flow_uses_ttm": -1031000000,
"changes_in_working_capital_ttm": -8700000000,
"sloan_ratio_ttm": -4.801514380551389,
"change_in_inventories_ttm": 974000000,
"total_extra_items_ttm": 0,
"preferred_dividends_ttm": 0,
"pretax_equity_in_earnings_ttm": 0,
"sales_of_business_ttm": 0,
"capital_expenditures_ttm": -12148000000,
"cost_of_goods_ttm": -229460000000,
"price_free_cash_flow_ttm": 45.9902082357882,
"equity_in_earnings_ttm": 0,
"cost_of_goods_excl_dep_amort_ttm": -217628000000,
"free_cash_flow_per_share_ttm": 8.32687613991183,
"price_earnings_growth_ttm": 1.3330112942081678,
"purchase_of_investments_ttm": -30976000000,
"gross_profit_ttm_h": [
206157000000,
195201000000,
190739000000,
186699000000,
184103000000,
180683000000,
177231000000,
173966000000
],
"net_income_ttm": 117777000000,
"change_in_accounts_payable_ttm": 8421000000,
"dep_amort_exp_income_s_ttm": -11832000000,
"unusual_expense_inc_ttm": 0,
"net_income_ttm_h": [
117777000000,
112010000000,
99280000000,
97294000000,
96150000000,
93736000000,
101956000000,
100389000000
],
"purchase_of_stock_ttm": -91806000000,
"non_oper_interest_income_ttm": 0,
"capital_expenditures_unchanged_ttm_h": [
12148000000,
12715000000,
12381000000,
11070000000,
9995000000,
9447000000,
8702000000,
8644000000
]
},
"current": {
"enterprise_value_current": 4032287001793,
"total_shares_outstanding_current": 14681100000,
"price_earnings_current": 34.18988334725069,
"price_free_cash_flow_current": 32.45274643929811,
"long_term_debt_to_equity_current": 0.8695430320898061,
"net_margin_current": 29.2836472912435,
"book_tangible_per_share_current": 5.99821679047723,
"total_debt_per_share_current": 6.111196786896953,
"pre_tax_margin_current": 35.4781713458917,
"market_cap_basic_current": 4008674355000,
"debt_to_asset_current": 0.23862303155574702,
"operating_margin_current": 35.3738278750104,
"capex_per_share_current": 0.820236866689768,
"current_ratio_current": 0.973744664864166,
"float_shares_outstanding_current": 14663394593.4,
"free_cash_flow_per_share_current": 8.32687613991183,
"ebit_per_share_current": 9.525091766869075,
"dividend_payout_ratio_current": 9.14719954967633,
"quick_ratio_current": 0.937561203939224,
"dividends_yield_current": 0.380882622230361,
"rates_current": {
"time": 1776729600,
"to_aud": 1.393534,
"to_cad": 1.364629,
"to_chf": 0.778549,
"to_cny": 6.818957,
"to_eur": 0.848522,
"to_gbp": 0.738989,
"to_inr": 93.10987,
"to_jpy": 158.831004,
"to_market": 1,
"to_symbol": 1,
"to_usd": 1
},
"gross_margin_current": 48.1586855505162,
"revenue_per_share_current": 29.4129999305891,
"fiscal_period_current": "2026-Q1",
"price_cash_flow_current": 29.542654584563593,
"ebitda_per_share_current": 10.323992211936027,
"return_on_equity_current": 152.02132328265,
"enterprise_value_ebitda_current": 26.37170868787197,
"ncavps_ratio_current": -10.495965920805313,
"asset_turnover_current": 1.20438993505506,
"book_value_per_share_current": 5.99822,
"cash_per_share_current": 4.517582156701702,
"operating_cash_flow_per_share_current": 9.1471130066016,
"working_capital_per_share_current": -0.289946685313578,
"debt_to_equity_current": 1.02629549835582,
"invent_turnover_current": 35.8923822931331,
"return_on_assets_current": 32.5628782579605,
"fiscal_period_end_current": 1767139200,
"price_sales_current": 9.1874341494478,
"return_on_invested_capital_current": 74.6394836321925,
"ebitda_margin_current": 37.6095606444253,
"price_book_current": 45.05169867060562,
"long_term_debt_to_assets_current": 0.2021766583969818
},
"financials_quarterly": {
"earnings_per_share_fq": 2.84,
"earnings_per_share_forecast_next_fq": 1.942915,
"other_receivables_fq": 30399000000,
"rates_earnings_next_fq": {
"time": 1774915200,
"to_aud": 1.44959,
"to_cad": 1.390975,
"to_chf": 0.799194,
"to_cny": 6.899883,
"to_eur": 0.865524,
"to_gbp": 0.75643,
"to_inr": 93.519125,
"to_jpy": 158.780565,
"to_market": 1,
"to_symbol": 1,
"to_usd": 1
},
"dividend_payout_ratio_percent_fq": 0.0914719954967633,
"eps_diluted_growth_percent_fq": 0.18537053254931402,
"pretax_income_fq": 51002000000,
"non_oper_income_fq": 150000000,
"working_capital_fq": -4263000000,
"total_current_assets_fq": 158104000000,
"fiscal_period_end_fq": 1767139200,
"issuance_of_short_term_debt_fq": -5910000000,
"operating_expenses_fq": -18379000000,
"after_tax_other_income_fq": 0,
"interest_capitalized_fq": 0,
"dep_amort_exp_income_s_fq": -3214000000,
"return_on_equity_fq": 152.02132328265,
"sales_of_investments_fq": 10334000000,
"ppe_total_gross_fq": 127320000000,
"current_port_debt_capital_leases_fq": 11827000000,
"net_margin_fq": 29.2836472912435,
"net_debt_to_ebitda_fq": 0.15436030921766883,
"inventory_progress_payments_fq": 0,
"cash_f_investing_activities_fq": -4886000000,
"enterprise_value_ebitda_fq": 26.6363640135512,
"cash_flow_deprecation_n_amortization_fq": 3214000000,
"ebitda_margin_fq": 37.6095606444253,
"basic_shares_outstanding_fq": 14748158000,
"total_debt_fq": 90509000000,
"purchase_sale_business_fq": 0,
"total_receivables_net_fq": 70320000000,
"other_income_fq": 150000000,
"total_assets_to_equity_fq": 4.30090713232793,
"capital_expenditures_other_assets_fq": 0,
"non_oper_interest_income_fq": 0,
"inventory_raw_materials_fq": 0,
"working_capital_per_share_fq": -0.289946685313578,
"reduction_of_long_term_debt_fq": -2164000000,
"other_oper_expense_total_fq": 0,
"capital_lease_obligations_fq": 0,
"diluted_shares_outstanding_fq": 14810356000,
"dividend_payout_ratio_fq": 9.14719954967633,
"earnings_per_share_basic_fq": 2.8544,
"revenue_forecast_fq": 138391007589,
"capital_expenditures_fq": -2373000000,
"earnings_publication_type_next_fq": 12,
"tobin_q_ratio_fq": 10.5978138508873,
"retained_earnings_fq": -2177000000,
"price_cash_flow_fq": 29.89,
"earnings_release_next_time_fq": 1,
"other_current_liabilities_fq": 68543000000,
"earnings_release_next_trading_date_fq": 1777507200,
"quick_ratio_fq": 0.937561203939224,
"goodwill_fq": 0,
"income_tax_fq": -8905000000,
"invent_turnover_fq": 35.8923822931331,
"next_earnings_fiscal_period_fq": "2026-Q2",
"total_oper_expense_fq": -92904000000,
"other_proceeds_from_stock_sales_fq": 0,
"sales_of_business_fq": 0,
"preferred_dividends_cash_flow_fq": 0,
"short_term_debt_fq": 13824000000,
"debt_to_asset_fq": 0.23862303155574702,
"enterprise_value_fq": 4072753330400,
"cash_f_operating_activities_fq": 53925000000,
"common_equity_total_fq": 88190000000,
"cost_of_goods_fq": -74525000000,
"inventory_work_in_progress_fq": 0,
"other_common_equity_fq": -4854000000,
"total_cash_dividends_paid_fq": -3921000000,
"other_liabilities_total_fq": 52055000000,
"gross_profit_fq": 69231000000,
"funds_f_operations_fq": 48377000000,
"tangible_assets_fq": 379297000000,
"dividends_yield_fq": 0.376737381126555,
"current_ratio_fq": 0.973744664864166,
"total_liabilities_fq": 291107000000,
"accounts_receivables_net_fq": 39921000000,
"return_on_capital_employed_fq": 67.71630865234609,
"ebitda_fq": 54066000000,
"return_on_tang_assets_fq": 32.56287825796053,
"rates_earnings_fq": {
"time": 1767139200,
"to_aud": 1.498689,
"to_cad": 1.373249,
"to_chf": 0.79277,
"to_cny": 6.994964,
"to_eur": 0.851419,
"to_gbp": 0.74228,
"to_inr": 89.88764,
"to_jpy": 156.715248,
"to_market": 1,
"to_symbol": 1,
"to_usd": 1
},
"net_debt_fq": 23602000000,
"proceeds_from_stock_options_fq": 0,
"rates_fq": {
"time": 1767139200,
"to_aud": 1.498689,
"to_cad": 1.373249,
"to_chf": 0.79277,
"to_cny": 6.994964,
"to_eur": 0.851419,
"to_gbp": 0.74228,
"to_inr": 89.88764,
"to_jpy": 156.715248,
"to_market": 1,
"to_symbol": 1,
"to_usd": 1
},
"minority_interest_fq": 0,
"total_current_liabilities_fq": 162367000000,
"cash_per_share_fq": 4.517582156701702,
"return_on_total_capital_fq": 82.4353700154271,
"treasury_stock_common_fq": 0,
"total_extra_items_fq": 0,
"ebitda_per_share_fq": 3.650553707149241,
"accounts_payable_fq": 70587000000,
"free_cash_flow_fq": 51552000000,
"ncavps_ratio_fq": -10.495965920805313,
"net_income_starting_line_fq": 42097000000,
"other_financing_cash_flow_uses_fq": -2960000000,
"cash_n_equivalents_fq": 36785000000,
"non_cash_items_fq": 3066000000,
"total_inventory_fq": 5875000000,
"other_investing_cash_flow_sources_fq": 0,
"discontinued_operations_fq": 0,
"diluted_net_income_fq": 42097000000,
"invested_capital_fq": 164875000000,
"total_non_oper_income_fq": 150000000,
"long_term_debt_to_assets_fq": 0.2021766583969818,
"deferred_income_current_fq": 9413000000,
"revenue_forecast_next_fq": 109347054075,
"market_cap_basic_fq": 4019719000200,
"earnings_fiscal_period_fq": "2026-Q1",
"price_book_fq": 45.5802,
"equity_in_earnings_fq": 0,
"total_revenue_fq": 143756000000,
"long_term_debt_fq": 76685000000,
"earnings_release_calendar_date_fq": 1767139200,
"other_investments_fq": 77888000000,
"change_in_other_assets_fq": 2283000000,
"receivables_turnover_fq": 6.72113619181337,
"sell_gen_admin_exp_other_fq": -7492000000,
"operating_margin_fq": 35.3738278750104,
"shrhldrs_equity_fq": 88190000000,
"short_term_invest_fq": 30122000000,
"fixed_assets_turnover_fq": 9.053851269900653,
"cash_n_short_term_invest_fq": 66907000000,
"other_current_assets_total_fq": 15002000000,
"earnings_publication_type_fq": 22,
"book_per_share_fq": 5.99822,
"price_sales_fq": 9.29520962313225,
"total_assets_fq": 379297000000,
"long_term_other_assets_total_fq": 93146000000,
"purchase_of_stock_fq": -24701000000,
"oper_income_fq": 50852000000,
"common_stock_par_fq": 95221000000,
"issuance_of_stock_net_fq": -24701000000,
"pretax_equity_in_earnings_fq": 0,
"capital_operating_lease_obligations_fq": 0,
"ppe_total_net_fq": 50159000000,
"total_shares_outstanding_fq": 14702703000,
"total_equity_fq": 88190000000,
"common_dividends_cash_flow_fq": -3921000000,
"research_and_dev_fq": -10887000000,
"dividends_per_share_fq": 0.26,
"other_financing_cash_flow_sources_fq": 0,
"cash_flow_deferred_taxes_fq": 0,
"short_term_debt_excl_current_port_fq": 1997000000,
"purchase_of_business_fq": 0,
"cost_of_goods_excl_dep_amort_fq": -71311000000,
"book_tangible_per_share_fq": 5.99821679047723,
"changes_in_working_capital_fq": 5548000000,
"long_term_debt_excl_capital_lease_fq": 76685000000,
"minority_interest_exp_fq": 0,
"earnings_release_date_fq": 1769722200,
"gross_margin_fq": 48.1586855505162,
"capital_expenditures_unchanged_fq": 2373000000,
"accum_deprec_total_fq": -77161000000,
"debt_to_equity_fq": 1.02629549835582,
"supplying_of_long_term_debt_fq": 0,
"sell_gen_admin_exp_total_fq": -18379000000,
"share_buyback_ratio_fq": 0.4775993924157613,
"revenue_per_share_fq": 9.70645135066301,
"net_income_fq": 42097000000,
"issuance_of_long_term_debt_fq": -2164000000,
"net_income_bef_disc_oper_fq": 42097000000,
"change_in_inventories_fq": -211000000,
"purchase_sale_investments_fq": -2359000000,
"sale_of_stock_fq": 0,
"change_in_accounts_receivable_fq": 2628000000,
"ebit_fq": 50852000000,
"fiscal_period_fq": "2026-Q1",
"earnings_per_share_diluted_fq": 2.8424,
"total_liabilities_shrhldrs_equity_fq": 379297000000,
"purchase_of_investments_fq": -12693000000,
"long_term_debt_to_equity_fq": 0.8695430320898061,
"other_investing_cash_flow_uses_fq": -154000000,
"total_debt_per_share_fq": 6.111196786896953,
"preferred_dividends_fq": 0,
"issuance_of_debt_net_fq": -8074000000,
"earnings_release_trading_date_fq": 1769644800,
"paid_in_capital_fq": 95221000000,
"price_earnings_fq": 34.5909562488929,
"return_on_assets_fq": 32.5628782579605,
"return_on_invested_capital_fq": 74.6394836321925,
"total_non_current_assets_fq": 221193000000,
"change_in_accounts_payable_fq": 848000000,
"depreciation_depletion_fq": 3214000000,
"dps_common_stock_prim_issue_fq": 0.26,
"asset_turnover_fq": 1.20438993505506,
"book_value_per_share_fq": 5.99822,
"earnings_release_time_fq": 1,
"ebit_per_share_fq": 3.43354339355516,
"unusual_expense_inc_fq": 0,
"earnings_per_share_forecast_fq": 2.673324,
"return_on_tang_equity_fq": 152.02132328264966,
"operating_cash_flow_per_share_fq": 3.64103334180488,
"other_investing_cash_flow_items_total_fq": -154000000,
"capital_expenditures_fixed_assets_fq": -2373000000,
"pre_tax_margin_fq": 35.4781713458917,
"inventory_finished_goods_fq": 5875000000,
"investments_in_unconcsolidate_fq": 0,
"total_non_current_liabilities_fq": 128740000000,
"provision_f_risks_fq": 0,
"capex_per_share_fq": 0.160225723135892,
"long_term_investments_fq": 77888000000,
"cash_f_financing_activities_fq": -39656000000,
"total_debt_to_capital_fq": 0.506488564569472,
"earnings_release_next_date_fq": 1777581000,
"earnings_release_next_calendar_date_fq": 1774915200,
"preferred_stock_carrying_value_fq": 0,
"other_financing_cash_flow_items_total_fq": -2960000000,
"free_cash_flow_per_share_fq": 3.4808076186689907,
"dilution_adjustment_fq": 0,
"revenue_fq": 143756000000
},
"financials_annual": {
"dps_common_stock_prim_issue_fy": 1.02,
"rates_fy": {
"time": 1759190400,
"to_aud": 1.512814,
"to_cad": 1.392758,
"to_chf": 0.796495,
"to_cny": 7.120986,
"to_eur": 0.852195,
"to_gbp": 0.743937,
"to_inr": 88.873089,
"to_jpy": 147.928994,
"to_market": 1,
"to_symbol": 1,
"to_usd": 1
},
"net_margin_fy": 26.9150641218182,
"debt_to_asset_fy": 0.312817857649879,
"total_non_current_assets_fy": 211284000000,
"ppe_total_net_fy": 61039000000,
"ebitda_fy": 144748000000,
"deferred_income_current_fy": 9055000000,
"income_tax_deferred_foreign_fy": -604000000,
"depreciation_depletion_fy": 8000000000,
"total_debt_to_capital_fy": 0.603820321315351,
"sales_of_business_fy": 0,
"zmijewski_score_fy": -1.2261588856208425,
"preferred_stock_carrying_value_fy": 0,
"sales_of_investments_fy": 53797000000,
"inventory_raw_materials_fy": 0,
"total_equity_fy": 73733000000,
"income_tax_credits_fy": 0,
"cash_n_equivalents_fy": 33539000000,
"interest_capitalized_fy": 0,
"invent_turnover_fy": 33.9833897262381,
"other_investing_cash_flow_items_total_fy": -1480000000,
"inventory_finished_goods_fy": 5718000000,
"non_cash_items_fy": 12774000000,
"treasury_stock_common_fy": 0,
"ppe_gross_other_fy": 15091000000,
"common_equity_total_fy": 73733000000,
"sustainable_growth_rate_fy": 147.999690369089,
"total_debt_per_share_fy": 7.489454802052983,
"ebit_fy": 133050000000,
"changes_in_working_capital_fy": -25000000000,
"discontinued_operations_fy": 0,
"research_and_dev_per_employee_fy": 208132.53012048194,
"reduction_of_long_term_debt_fy": -10932000000,
"price_sales_fy": 9.21061775519571,
"pre_tax_margin_fy": 31.8936661532436,
"change_in_accounts_payable_fy": 902000000,
"common_dividends_cash_flow_fy": -15421000000,
"return_on_tang_assets_fy": 30.93254683307996,
"current_port_debt_capital_leases_fy": 12888000000,
"non_oper_income_fy": -321000000,
"inventory_progress_payments_fy": 0,
"operating_cash_flow_per_share_fy": 7.42980681315991,
"earnings_per_share_forecast_next_fy": 8.500259,
"change_in_inventories_fy": 1400000000,
"total_cash_dividends_paid_fy": -15421000000,
"purchase_of_investments_fy": -24407000000,
"investments_in_unconcsolidate_fy": 0,
"sloan_ratio_fy": -4.082774516271806,
"earnings_publication_type_fy": 22,
"unusual_expense_inc_fy": 0,
"cash_flow_deferred_taxes_fy": 0,
"income_tax_fy": -20719000000,
"accum_deprec_total_fy": -76014000000,
"change_in_other_assets_fy": -20273000000,
"asset_turnover_fy": 1.14926521048133,
"number_of_shareholders_fy": 22429,
"ppe_gross_machinery_fy": 83420000000,
"long_term_debt_to_assets_fy": 0.250336125330906,
"purchase_sale_investments_fy": 29390000000,
"dilution_adjustment_fy": 0,
"ncavps_ratio_fy": -9.310808853293045,
"other_investing_cash_flow_sources_fy": 0,
"income_tax_current_fy": -22058000000,
"return_on_capital_employed_fy": 69.62359823965588,
"ppe_total_gross_fy": 137053000000,
"next_earnings_fiscal_period_fy": "2026",
"minority_interest_fy": 0,
"total_debt_per_employee_fy": 676969.8795180724,
"dividend_payout_ratio_fy": 13.6637642330877,
"purchase_of_business_fy": 0,
"total_receivables_net_fy": 72957000000,
"dividends_yield_fy": 0.399279730681907,
"basic_shares_outstanding_fy": 14948500000,
"ebitda_per_employee_fy": 871975.9036144578,
"other_short_term_debt_fy": 9558000000,
"number_of_employees_fy": 166000,
"other_proceeds_from_stock_sales_fy": 0,
"long_term_debt_to_equity_fy": 1.219684537452701,
"graham_numbers_fy": 28.95336730416689,
"gross_profit_fy": 195201000000,
"revenue_per_employee_fy": 2506993.97590361,
"cash_f_financing_activities_fy": -120686000000,
"capital_lease_obligations_fy": 692000000,
"pretax_income_fy": 132729000000,
"supplying_of_long_term_debt_fy": 4481000000,
"restructuring_charge_fy": 0,
"short_term_debt_excl_current_port_fy": 9558000000,
"current_ratio_fy": 0.893292922218667,
"other_receivables_fy": 33180000000,
"accounts_receivables_net_fy": 39777000000,
"operating_margin_fy": 31.9707997625919,
"dividend_payout_ratio_percent_fy": 0.136637642330877,
"inventory_work_in_progress_fy": 0,
"goodwill_fy": 0,
"debt_to_revenue_fy": 0.2700325114559029,
"non_oper_interest_income_fy": 0,
"free_cash_flow_per_share_fy": 6.582405496092323,
"market_cap_basic_fy": 3773976999600,
"preferred_dividends_fy": 0,
"ebitda_per_share_fy": 9.64684591764832,
"diluted_shares_outstanding_fy": 15004697000,
"working_capital_fy": -17674000000,
"earnings_publication_type_next_fy": 10,
"long_term_debt_excl_capital_lease_fy": 89239000000,
"book_value_per_share_fy": 4.99098,
"cost_of_goods_excl_dep_amort_fy": -209262000000,
"total_current_assets_fy": 147957000000,
"return_on_equity_adjust_to_book_fy": 3.3491193072391447,
"purchase_of_stock_fy": -90711000000,
"other_financing_cash_flow_sources_fy": 0,
"oper_income_fy": 133050000000,
"dividends_payable_fy": 0,
"other_liabilities_total_fy": 29946000000,
"rates_earnings_next_fy": {
"time": 1790726400,
"to_aud": 1.393534,
"to_cad": 1.364629,
"to_chf": 0.778549,
"to_cny": 6.818957,
"to_eur": 0.848522,
"to_gbp": 0.738989,
"to_inr": 93.10987,
"to_jpy": 158.831004,
"to_market": 1,
"to_symbol": 1,
"to_usd": 1
},
"book_per_share_fy": 4.99098,
"sell_gen_admin_exp_total_fy": -62151000000,
"accounts_receivables_gross_fy": 39777000000,
"fiscal_period_fy": "2025",
"cash_f_investing_activities_fy": 15195000000,
"total_liabilities_fy": 285508000000,
"other_investments_fy": 77723000000,
"quick_ratio_fy": 0.858770399261008,
"other_common_equity_fy": -5571000000,
"invested_capital_fy": 163664000000,
"amortization_of_deferred_charges_fy": 0,
"eps_diluted_growth_percent_fy": 0.227069498323361,
"total_shares_outstanding_fy": 14773260000,
"earnings_release_trading_date_fy": 1761782400,
"other_current_liabilities_fy": 51254000000,
"amortization_of_intangibles_fy": -3698000000,
"paid_in_capital_fy": 93568000000,
"operating_expenses_fy": -62151000000,
"issuance_of_debt_net_fy": -8483000000,
"book_tangible_per_share_fy": 4.99097694077001,
"cash_n_short_term_invest_fy": 54697000000,
"ebit_per_share_fy": 8.86722337678662,
"fiscal_period_end_fy": 1759190400,
"cash_per_share_fy": 3.6453251938376363,
"purchase_sale_business_fy": 0,
"deferred_tax_assests_fy": 20777000000,
"rates_earnings_fy": {
"time": 1759190400,
"to_aud": 1.512814,
"to_cad": 1.392758,
"to_chf": 0.796495,
"to_cny": 7.120986,
"to_eur": 0.852195,
"to_gbp": 0.743937,
"to_inr": 88.873089,
"to_jpy": 147.928994,
"to_market": 1,
"to_symbol": 1,
"to_usd": 1
},
"cash_f_operating_activities_fy": 111482000000,
"minority_interest_exp_fy": 0,
"cost_of_goods_fy": -220960000000,
"enterprise_value_ebitda_fy": 26.7933919337055,
"earnings_release_date_fy": 1761856320,
"capital_expenditures_fixed_assets_fy": -12715000000,
"revenue_fy": 416161000000,
"price_book_fy": 51.1843,
"total_assets_to_equity_fy": 4.8721874872852,
"total_extra_items_fy": 0,
"cash_flow_deprecation_n_amortization_fy": 11698000000,
"return_on_assets_fy": 30.93254683308,
"fixed_assets_turnover_fy": 7.116722102040991,
"dep_amort_exp_income_s_fy": -11698000000,
"diluted_net_income_fy": 112010000000,
"sell_gen_admin_exp_other_fy": -27601000000,
"earnings_fiscal_period_fy": "2025",
"research_and_dev_fy": -34550000000,
"issuance_of_stock_net_fy": -90711000000,
"earnings_per_share_fy": 7.46,
"short_term_debt_fy": 22446000000,
"amortization_fy": 3698000000,
"issuance_of_short_term_debt_fy": -2032000000,
"gross_margin_fy": 46.9051641071605,
"net_income_per_employee_fy": 674759.036144578,
"total_non_oper_income_fy": -321000000,
"funds_f_operations_fy": 136482000000,
"piotroski_f_score_fy": 8,
"total_debt_fy": 112377000000,
"sale_of_stock_fy": 0,
"earnings_per_share_basic_fy": 7.4931,
"equity_in_earnings_fy": 0,
"earnings_release_next_trading_date_fy": 1793232000,
"free_cash_flow_fy": 98767000000,
"common_stock_par_fy": 93568000000,
"return_on_common_equity_fy": 171.422449744802,
"preferred_dividends_cash_flow_fy": 0,
"total_non_current_liabilities_fy": 119877000000,
"return_on_invested_capital_fy": 70.6326735233099,
"total_assets_fy": 359241000000,
"enterprise_value_fy": 3890779895620,
"price_cash_flow_fy": 34.38,
"return_on_tang_equity_fy": 171.42244974480232,
"capital_expenditures_fy": -12715000000,
"return_on_total_capital_fy": 73.4841309072432,
"income_tax_deferred_fy": 1339000000,
"income_tax_current_domestic_fy": -13167000000,
"revenue_forecast_fy": 415406882375,
"proceeds_from_stock_options_fy": 0,
"other_oper_expense_total_fy": 0,
"total_liabilities_shrhldrs_equity_fy": 359241000000,
"net_income_starting_line_fy": 112010000000,
"capital_expenditures_other_assets_fy": 0,
"change_in_accounts_receivable_fy": -7029000000,
"price_earnings_fy": 34.2210314802411,
"float_shares_outstanding_fy": 14760953874.42,
"provision_f_risks_fy": 0,
"operating_lease_liabilities_fy": 10911000000,
"short_term_invest_fy": 21158000000,
"long_term_other_assets_total_fy": 51745000000,
"receivables_turnover_fy": 5.97932471264368,
"other_financing_cash_flow_items_total_fy": -6071000000,
"debt_to_equity_fy": 1.5241072518410999,
"depreciation_fy": -8000000000,
"accrued_expenses_fy": 8919000000,
"accounts_payable_fy": 69860000000,
"revenue_per_share_fy": 27.7353817941142,
"net_debt_to_ebitda_fy": 0.3984856440158068,
"share_buyback_ratio_fy": 2.2724804068801387,
"net_debt_fy": 57680000000,
"shrhldrs_equity_fy": 73733000000,
"total_current_liabilities_fy": 165631000000,
"return_on_equity_fy": 171.422449744802,
"income_tax_payable_fy": 13016000000,
"total_oper_expense_fy": -283111000000,
"tangible_assets_fy": 359241000000,
"long_term_investments_fy": 77723000000,
"net_income_bef_disc_oper_fy": 112010000000,
"working_capital_per_share_fy": -1.19635070390692,
"other_income_fy": -321000000,
"capex_per_share_fy": 0.847401317067582,
"net_income_fy": 112010000000,
"income_tax_current_foreign_fy": -8891000000,
"other_current_assets_total_fy": 14585000000,
"cash_dividend_coverage_ratio_fy": 8.85039880682187,
"total_revenue_fy": 416161000000,
"total_inventory_fy": 5718000000,
"revenue_forecast_next_fy": 465619085380,
"earnings_release_next_date_fy": 1793275200,
"ppe_gross_buildings_fy": 27337000000,
"retained_earnings_fy": -14264000000,
"ebitda_margin_fy": 34.7817311088737,
"earnings_per_share_forecast_fy": 7.381826,
"issuance_of_long_term_debt_fy": -6451000000,
"after_tax_other_income_fy": 0,
"tobin_q_ratio_fy": 10.505418367057214,
"capital_expenditures_unchanged_fy": 12715000000,
"other_financing_cash_flow_uses_fy": -6071000000,
"capital_operating_lease_obligations_fy": 11603000000,
"free_cash_flow_per_employee_fy": 594981.9277108434,
"earnings_per_share_diluted_fy": 7.465,
"pretax_equity_in_earnings_fy": 0,
"total_assets_per_employee_fy": 2164102.40963855,
"income_tax_deferred_domestic_fy": 1943000000,
"other_investing_cash_flow_uses_fy": -1480000000,
"long_term_debt_fy": 89931000000,
"oper_income_per_employee_fy": 801506.0240963855
},
"history_quarterly": {
"net_debt_fq_h": [
23602000000,
57680000000,
46326000000,
49688000000,
43024000000,
53888000000,
39503000000,
37440000000,
34940000000,
62375000000,
46798000000,
53743000000,
59755000000,
84176000000,
71460000000,
68470000000,
58885000000,
73883000000,
60095000000,
51811000000,
35217000000,
31299000000,
29132000000,
23633000000,
9521000000,
7467000000,
13538000000,
32197000000,
28303000000,
48182000000,
43630000000,
33900000000
],
"total_equity_fq_h": [
88190000000,
73733000000,
65830000000,
66796000000,
66758000000,
56950000000,
66708000000,
74194000000,
74100000000,
62146000000,
60274000000,
62158000000,
56727000000,
50672000000,
58107000000,
67399000000,
71932000000,
63090000000,
64280000000,
69178000000,
66224000000,
65339000000,
72282000000,
78425000000,
89531000000,
90488000000,
96456000000,
105860000000,
117892000000,
107147000000,
114949000000,
126878000000
],
"deferred_charges_fq_h": [
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null
],
"other_common_equity_fq_h": [
-4854000000,
-5571000000,
-6369000000,
-6363000000,
-6789000000,
-7172000000,
-8416000000,
-8960000000,
-9378000000,
-11452000000,
-11801000000,
-11746000000,
-12912000000,
-11109000000,
-9297000000,
-6494000000,
-927000000,
163000000,
58000000,
-286000000,
179000000,
-406000000,
-550000000,
-2789000000,
-418000000,
-584000000,
-639000000,
-1499000000,
-3588000000,
-3454000000,
-3111000000,
-3064000000
],
"sell_gen_admin_exp_total_fq_h": [
-18379000000,
-15914000000,
-15516000000,
-15278000000,
-15443000000,
-14288000000,
-14326000000,
-14371000000,
-14482000000,
-13458000000,
-13415000000,
-13658000000,
-14316000000,
-13201000000,
-12809000000,
-12580000000,
-12755000000,
-11388000000,
-11129000000,
-10576000000,
-10794000000,
-9914000000,
-9589000000,
-9517000000,
-9648000000,
-8688000000,
-8683000000,
-8406000000,
-8685000000,
-7966000000,
-7809000000,
-7528000000
],
"other_income_fq_h": [
150000000,
377000000,
-171000000,
-279000000,
-248000000,
19000000,
142000000,
158000000,
-50000000,
47000000,
-247000000,
76000000,
-258000000,
-163000000,
-13000000,
151000000,
-203000000,
-525000000,
-29000000,
-320000000,
-495000000,
-5000000,
355000000,
-182000000,
229000000,
354000000,
98000000,
203000000,
455000000,
349000000,
-268000000,
-547000000
],
"purchase_of_stock_fq_h": [
-24701000000,
-20132000000,
-21075000000,
-25898000000,
-23606000000,
-25083000000,
-26522000000,
-23205000000,
-20139000000,
-21003000000,
-17478000000,
-19594000000,
-19475000000,
-24428000000,
-21865000000,
-22631000000,
-20478000000,
-19748000000,
-22900000000,
-18548000000,
-24775000000,
-17187000000,
-15891000000,
-18574000000,
-20706000000,
-17444000000,
-16955000000,
-23702000000,
-8796000000,
-19104000000,
-20783000000,
-22756000000
],
"invent_turnover_fq_h": [
35.8923822931331,
33.9833897262381,
36.0440033085194,
34.1839852811775,
31.5388168678289,
30.8954982742161,
30.833382657591,
30.2839434154878,
31.8108168929563,
37.9776536312849,
33.9669899874844,
33.8134755061042,
34.7614996849401,
38.7898663890335,
41.4062765055132,
40.9560820301526,
39.6469720711586,
39.8889202142656,
44.5860637833115,
45.6925055536069,
39.7433296582139,
41.665972817436,
46.3226510295923,
40.4098320759309,
36.6280682443588,
40.2540312577524,
34.7818318803143,
25.6094372708433,
34.4504198108194,
37.1866984451254,
34.6646113190927,
28.9003026863413
],
"operating_cash_flow_per_share_fq_h": [
3.64103334180488,
2.00005261171765,
1.86424045363653,
1.59084673335444,
1.97579478135407,
1.75892268986652,
1.88022354449308,
1.467211571844,
2.56120687380546,
1.37809142186264,
1.67226401790527,
1.80222817496001,
2.13121089254648,
1.49685469429006,
1.40768135780866,
1.7170918367969,
2.84310022748555,
1.21430010296904,
1.2569618099678,
1.41655015663213,
2.26502902238255,
1.19236084724146,
0.934086802847808,
0.75550135071904,
1.71261014447075,
1.10112594690748,
0.63220164385467,
0.593269520827563,
1.39789393059491,
1.00684944364645,
0.735191284715308,
0.746277049213642
],
"total_extra_items_fq_h": [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0
],
"income_tax_fq_h": [
-8905000000,
-5338000000,
-4597000000,
-4530000000,
-6254000000,
-14874000000,
-4046000000,
-4422000000,
-6407000000,
-4042000000,
-2852000000,
-4222000000,
-5625000000,
-3936000000,
-3624000000,
-5129000000,
-6611000000,
-2697000000,
-2625000000,
-4381000000,
-4824000000,
-2228000000,
-1884000000,
-1886000000,
-3682000000,
-2441000000,
-1867000000,
-2232000000,
-3941000000,
-2296000000,
-1765000000,
-2346000000
],
"price_sales_fq_h": [
9.29520962313225,
9.12401103212459,
7.35583929842765,
8.19433063921512,
9.78474223102385,
8.87943402731213,
8.38331812382165,
6.94897398563504,
7.77527622523373,
7.00072166664493,
7.96983021352684,
6.78580232150508,
5.34949292516586,
6.14894374721044,
5.94439745106337,
7.42335692496574,
7.68957931401622,
6.67229542101312,
6.42638181665185,
6.30366955219616,
7.68270817652081,
7.06752572635419,
5.63230078428791,
4.07557217788501,
4.82926353056484,
3.80488375438515,
3.52013671365567,
3.45546115774442,
2.84948762904797,
4.11681041567441,
3.56651333188634,
3.43544046514634
],
"cash_n_equivalents_fq_h": [
36785000000,
33539000000,
30465000000,
26193000000,
28010000000,
27977000000,
24514000000,
29580000000,
31542000000,
28840000000,
26445000000,
21706000000,
18726000000,
21475000000,
23822000000,
21951000000,
29348000000,
26913000000,
24421000000,
31442000000,
25041000000,
19980000000,
27295000000,
29955000000,
22986000000,
28124000000,
22899000000,
20811000000,
15913000000,
19658000000,
17695000000,
15676000000
],
"book_tangible_per_share_fq_h": [
5.99821679047723,
4.99097694077001,
4.43099090095379,
4.47115547131846,
4.4384810818038,
3.76733519942665,
4.38226678445032,
4.83736594946591,
4.7929450952939,
3.99651165355557,
3.85189854617894,
3.953214716964,
3.58070588642244,
3.17823805110884,
3.61016684417104,
4.15848941679591,
4.40197392412427,
3.84067826779992,
3.88235943569773,
4.14579500974002,
3.93645394475495,
3.84873135120046,
4.21819731793567,
4.53429901616263,
5.10443769257592,
5.09133433380536,
5.32154005554581,
5.74416510898829,
6.23133775339058,
5.63340249582228,
5.93387208576979,
6.41668834592079
],
"change_in_inventories_fq_h": [
-211000000,
177000000,
365000000,
643000000,
215000000,
-1087000000,
-12000000,
190000000,
-137000000,
952000000,
-22000000,
-741000000,
-1807000000,
435000000,
-16000000,
384000000,
681000000,
-1429000000,
13000000,
-276000000,
-950000000,
-137000000,
-689000000,
727000000,
-28000000,
-785000000,
1502000000,
70000000,
-1076000000,
1942000000,
1693000000,
-3241000000
],
"cost_of_goods_fq_h": [
-74525000000,
-54125000000,
-50318000000,
-50492000000,
-66025000000,
-51051000000,
-46099000000,
-48482000000,
-64720000000,
-49071000000,
-45384000000,
-52860000000,
-66822000000,
-52051000000,
-47074000000,
-54719000000,
-69702000000,
-48186000000,
-46078000000,
-51099000000,
-66866000000,
-40072000000,
-37367000000,
-35931000000,
-56773000000,
-39771000000,
-33569000000,
-36270000000,
-52654000000,
-39086000000,
-32638000000,
-37694000000
],
"net_income_bef_disc_oper_fq_h": [
42097000000,
27466000000,
23434000000,
24780000000,
36330000000,
14736000000,
21448000000,
23636000000,
33916000000,
22956000000,
19881000000,
24160000000,
29998000000,
20721000000,
19442000000,
25010000000,
34630000000,
20551000000,
21744000000,
23630000000,
28755000000,
12673000000,
11253000000,
11249000000,
22236000000,
13686000000,
10044000000,
11561000000,
19965000000,
14125000000,
11519000000,
13822000000
],
"market_cap_basic_fq_h": [
4019719000200,
3773976999600,
2987389659760,
3255276738500,
3844260436290,
3443452682940,
3206112190580,
2630106395280,
2976556734190,
2662325943810,
3035216955960,
2592789649400,
2058403941510,
2398369422750,
2280071247480,
2831786280960,
2880565214280,
2413423399120,
2203894549620,
2022547029050,
2220166018110,
1906150949640,
1514929348570,
1071224539380,
1270761118200,
972268901520,
896853698400,
875153595800,
738937122690,
1073390539640.0001,
896472365870,
829383853960
],
"earnings_per_share_forecast_fq_h": [
2.673324,
1.777147,
1.438019,
1.627339,
2.347687,
1.600377,
1.345527,
1.505077
],
"purchase_of_business_fq_h": [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
-137000000,
-2000000,
-167000000,
0,
-20000000,
-4000000,
0,
-9000000,
-51000000,
-339000000,
-176000000,
-958000000,
-13000000,
-320000000,
-124000000,
-167000000,
-290000000,
-126000000,
-132000000
],
"other_financing_cash_flow_sources_fq_h": [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0
],
"short_term_debt_fq_h": [
13824000000,
22446000000,
19268000000,
19620000000,
12843000000,
22511000000,
15108000000,
12759000000,
12952000000,
17382000000,
11209000000,
12574000000,
11483000000,
22773000000,
24991000000,
16658000000,
16169000000,
17141000000,
16039000000,
13003000000,
12762000000,
15229000000,
20048000000,
21625000000,
16473000000,
16240000000,
23482000000,
22429000000,
21741000000,
20748000000,
17472000000,
20478000000
],
"ebit_per_share_fq_h": [
3.43354339355516,
2.18163704387003,
1.88665121015744,
1.96524565769976,
2.82703330799925,
1.94130324552759,
1.65179247695573,
1.80410766216164,
2.591893849258,
1.72079579387969,
1.45787444593576,
1.78695719392568,
2.25724721382015,
1.54443987067007,
1.41899593800422,
1.82761826937919,
2.51148793250267,
1.42986842817929,
1.44722819184071,
1.66712376759221,
1.97987716031752,
0.850692906177323,
0.715247217545378,
0.732117190513478,
1.41993541962428,
0.85595812557946,
0.624214909440211,
0.704264903164374,
1.20641022095628,
0.806026223159879,
0.65866806154091,
0.789287861303153
],
"changes_in_working_capital_fq_h": [
5548000000,
-5707000000,
-2034000000,
-6507000000,
-10752000000,
6608000000,
1684000000,
-5764000000,
1123000000,
-6060000000,
749000000,
231000000,
-1497000000,
-48000000,
-3225000000,
-2052000000,
6525000000,
-1790000000,
-4697000000,
-3779000000,
5355000000,
3877000000,
-430000000,
-2002000000,
4245000000,
2160000000,
-2798000000,
-4622000000,
1772000000,
814000000,
-1914000000,
-2141000000
],
"purchase_sale_investments_fq_h": [
-2359000000,
1160000000,
8875000000,
6020000000,
13335000000,
4544000000,
2412000000,
2131000000,
4603000000,
5141000000,
3036000000,
5341000000,
2483000000,
2806000000,
6953000000,
-6390000000,
-12929000000,
4608000000,
5747000000,
-7895000000,
-5279000000,
7468000000,
-2998000000,
11338000000,
-10473000000,
2802000000,
30120000000,
15749000000,
9422000000,
-926000000,
9394000000,
32800000000
],
"inventory_work_in_progress_fq_h": [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0
],
"long_term_debt_fq_h": [
76685000000,
89931000000,
82430000000,
78566000000,
83956000000,
96548000000,
86196000000,
91831000000,
95088000000,
106548000000,
98071000000,
97041000000,
99627000000,
109707000000,
94700000000,
103323000000,
106629000000,
119381000000,
105752000000,
108642000000,
99281000000,
107049000000,
102138000000,
97136000000,
100278000000,
91807000000,
84936000000,
90201000000,
92989000000,
93735000000,
97128000000,
101362000000
],
"total_receivables_net_fq_h": [
70320000000,
72957000000,
46835000000,
49798000000,
59306000000,
66243000000,
43172000000,
41150000000,
50102000000,
60985000000,
39186000000,
35899000000,
54180000000,
60932000000,
42242000000,
45400000000,
65253000000,
51506000000,
33908000000,
33036000000,
58620000000,
37445000000,
32075000000,
30677000000,
39946000000,
45804000000,
26474000000,
26278000000,
36981000000,
48995000000,
26367000000,
22408000000
],
"short_term_debt_excl_current_port_fq_h": [
1997000000,
9558000000,
9923000000,
5982000000,
1995000000,
11455000000,
2994000000,
1997000000,
1998000000,
7395000000,
3993000000,
1996000000,
1743000000,
11516000000,
10982000000,
6999000000,
5000000000,
7449000000,
8000000000,
5000000000,
5000000000,
6432000000,
12519000000,
11214000000,
6235000000,
5980000000,
9953000000,
11924000000,
11969000000,
11964000000,
11974000000,
11980000000
],
"earnings_per_share_basic_fq_h": [
2.8544,
1.8539,
1.5724,
1.6526,
2.4089,
0.9713,
1.403,
1.5342,
2.1868,
1.4716,
1.2665,
1.5304,
1.8875,
1.2926,
1.2029,
1.5364,
2.1126,
1.2465,
1.3076,
1.4104,
1.698,
0.743,
0.6523,
0.645,
1.2591,
0.7619,
0.5494,
0.6184,
1.0539,
0.735,
0.59,
0.6875
],
"working_capital_per_share_fq_h": [
-0.289946685313578,
-1.19635070390692,
-1.25391051942683,
-1.73347974790009,
-0.739658198793662,
-1.54827884710414,
-0.40657566002523,
0.299523669998199,
0.62864552471203,
-0.112025284016571,
-0.147240505863163,
-0.455499272867469,
-0.537102726877298,
-1.16518251254044,
-1.09230115626983,
-0.57553360257381,
0.341475483743166,
0.569496674516853,
0.402791771572311,
0.90373512889762,
1.28387697440146,
2.25726188202074,
2.61132336384808,
2.75550088379082,
3.48178854123836,
3.21280481162828,
2.49752007935746,
1.6047415353601,
1.72020906578984,
0.760938097399235,
1.40478352199718,
2.0600180204164
],
"price_cash_flow_fq_h": [
29.89,
34.06,
27.69,
29.95,
35.76,
29.36,
28.6,
23.99,
25.76,
24.27,
27.06,
23.85,
18.99,
19.85,
19.49,
24.62,
25.94,
23.49,
21.39,
20.6,
25.4,
24.02,
19.25,
14.48,
17.63,
14.25,
13.2,
12.43,
9.83,
14.13,
12.4,
12.61
],
"preferred_dividends_cash_flow_fq_h": [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0
],
"operating_margin_fq_h": [
35.3738278750104,
31.646594968087,
29.9906418818325,
31.0290586100945,
34.4585679806919,
31.1713894448541,
29.5557084066824,
30.7427853624674,
33.7637466025507,
30.1336342711569,
28.115945572576,
29.8599687882239,
30.7424415726309,
27.6152020056353,
27.8161501464579,
30.8178622093382,
33.4729113719795,
28.5340690978887,
29.8021940265541,
31.3944692874146,
30.3766260545261,
22.7012649614944,
20.9694521585458,
22.1073919824498,
27.5844399380737,
24.2070195195195,
21.3784633706109,
22.8633585413861,
27.3002026714707,
24.9341905840685,
24.2948322009471,
26.1368090944728
],
"book_value_per_share_fq_h": [
5.99822,
4.99098,
4.43099,
4.47116,
4.43848,
3.76734,
4.38227,
4.83737,
4.79295,
3.99651,
3.8519,
3.95321,
3.58071,
3.17824,
3.61017,
4.15849,
4.40197,
3.84068,
3.88236,
4.1458,
3.93645,
3.84873,
4.2182,
4.5343,
5.10444,
5.09133,
5.32154,
5.74417,
6.23134,
5.6334,
5.93387,
6.41669
],
"revenue_per_share_fq_h": [
9.70645135066301,
6.89374969430372,
6.2907997020908,
6.33356519897905,
8.20415204016404,
6.22783674421055,
5.58874263552507,
5.86839364387652,
7.6765587651407,
5.71054848013068,
5.18522289130392,
5.98445767508779,
7.34244613749127,
5.59271617985956,
5.10133836110643,
5.93038627067844,
7.50304598423746,
5.01109191007422,
4.85611291085219,
5.31024669450464,
6.51776519473769,
3.74733702117594,
3.41090082915632,
3.31163979493681,
5.14759561119237,
3.53599138832127,
2.91983057256736,
3.08032130051912,
4.41905225200765,
3.23261435113471,
2.71114472449508,
3.01983252221124
],
"total_inventory_fq_h": [
5875000000,
5718000000,
5925000000,
6269000000,
6911000000,
7286000000,
6165000000,
6232000000,
6511000000,
6331000000,
7351000000,
7482000000,
6820000000,
4946000000,
5433000000,
5460000000,
5876000000,
6580000000,
5178000000,
5219000000,
4973000000,
4061000000,
3978000000,
3334000000,
4097000000,
4106000000,
3355000000,
4884000000,
4988000000,
3956000000,
5936000000,
7662000000
],
"minority_interest_fq_h": [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0
],
"total_liabilities_shrhldrs_equity_fq_h": [
379297000000,
359241000000,
331495000000,
331233000000,
344085000000,
364980000000,
331612000000,
337411000000,
353514000000,
352583000000,
335038000000,
332160000000,
346747000000,
352755000000,
336309000000,
350662000000,
381191000000,
351002000000,
329840000000,
337158000000,
354054000000,
323888000000,
317344000000,
320400000000,
340618000000,
338516000000,
322239000000,
341998000000,
373719000000,
365725000000,
349197000000,
367502000000
],
"operating_lease_liabilities_fq_h": [
null,
10911000000,
null,
null,
null,
10046000000,
null,
null,
null,
10408000000,
null,
null,
null,
9936000000,
null,
null,
null,
9506000000,
null,
null,
null,
7745000000,
7460000000,
7421000000,
6573000000,
null,
null,
null,
null,
null,
null,
null
],
"short_term_invest_fq_h": [
30122000000,
21158000000,
24907000000,
22305000000,
25765000000,
37194000000,
37287000000,
37570000000,
41558000000,
32715000000,
36037000000,
34166000000,
32629000000,
26829000000,
24409000000,
29560000000,
34565000000,
35726000000,
37275000000,
38392000000,
51785000000,
70999000000,
65759000000,
65173000000,
84244000000,
72456000000,
71981000000,
59622000000,
70514000000,
46643000000,
53275000000,
72264000000
],
"cash_f_investing_activities_fq_h": [
-4886000000,
-2587000000,
5073000000,
2917000000,
9792000000,
1445000000,
-127000000,
-310000000,
1927000000,
2394000000,
437000000,
2319000000,
-1445000000,
-1217000000,
4234000000,
-9265000000,
-16106000000,
835000000,
3572000000,
-10368000000,
-8584000000,
5531000000,
-5165000000,
9013000000,
-13668000000,
-798000000,
27502000000,
13348000000,
5844000000,
-3001000000,
3947000000,
28710000000
],
"cost_of_goods_excl_dep_amort_fq_h": [
-71311000000,
-50998000000,
-47488000000,
-47831000000,
-62945000000,
-48140000000,
-43249000000,
-45646000000,
-61872000000,
-46418000000,
-42332000000,
-49962000000,
-63906000000,
-49186000000,
-44269000000,
-51982000000,
-67005000000,
-45197000000,
-43246000000,
-48302000000,
-64200000000,
-37370000000,
-34615000000,
-33145000000,
-53957000000,
-37839000000,
-30636000000,
-33230000000,
-49259000000,
-36332000000,
-29973000000,
-34955000000
],
"non_oper_interest_income_fq_h": [
0,
0,
0,
0,
0,
0,
0,
0,
0,
984000000,
980000000,
918000000,
868000000,
753000000,
722000000,
700000000,
650000000,
659000000,
719000000,
718000000,
747000000,
768000000,
901000000,
1049000000,
1045000000,
1106000000,
1190000000,
1358000000,
1307000000,
1311000000,
1418000000,
1505000000
],
"basic_shares_outstanding_fq_h": [
14748158000,
14815307000,
14902886000,
14994082000,
15081724000,
15171990000,
15287521000,
15405856000,
15509763000,
15599434000,
15697614000,
15787154000,
15892723000,
16030382000,
16162945000,
16278802000,
16391723999.999998,
16487121000,
16629371000,
16753475999.999998,
16935118999.999998,
17057622000,
17250292000,
17440404000,
17660160000,
17963248000,
18282532000,
18696284000,
18943280000,
19206356000,
19528668000,
20099508000
],
"free_cash_flow_per_share_fq_h": [
3.4808076186689907,
1.7819360022185728,
1.6326403369935563,
1.3868766966923047,
1.781746454740373,
1.5681447561030735,
1.740076588910408,
1.338143511138813,
2.4076435991559415,
1.240078099078635,
1.5395859060980013,
1.6182191638191337,
1.8938665123061211,
1.2928030057452742,
1.2784245775311007,
1.5638301426370134,
2.6734198217102656,
1.0205531112923476,
1.1322428819189434,
1.2825210375212424,
2.0605143672129587,
1.0889796384798534,
0.8442431640759551,
0.6503293874644102,
1.5943616985931857,
0.9475434881148083,
0.523538590596734,
0.4675953049857403,
1.2221751543811221,
0.8500175449562429,
0.5694078827850961,
0.5393615025215581
],
"income_tax_payable_fq_h": [
null,
13016000000,
null,
null,
null,
26601000000,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null
],
"other_current_assets_total_fq_h": [
15002000000,
14585000000,
14359000000,
14109000000,
13248000000,
14287000000,
14297000000,
13884000000,
13979000000,
14695000000,
13640000000,
13660000000,
16422000000,
21223000000,
16386000000,
15809000000,
18112000000,
14111000000,
13641000000,
13376000000,
13687000000,
11228000000,
10958000000,
14614000000,
11958000000,
12329000000,
10264000000,
11751000000,
12432000000,
12087000000,
12488000000,
12043000000
],
"investments_in_unconcsolidate_fq_h": [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0
],
"capital_expenditures_fq_h": [
-2373000000,
-3242000000,
-3462000000,
-3071000000,
-2940000000,
-2908000000,
-2151000000,
-1996000000,
-2392000000,
-2163000000,
-2093000000,
-2916000000,
-3787000000,
-3289000000,
-2102000000,
-2514000000,
-2803000000,
-3223000000,
-2093000000,
-2269000000,
-3500000000,
-1784000000,
-1565000000,
-1853000000,
-2107000000,
-2777000000,
-2000000000,
-2363000000,
-3355000000,
-3041000000,
-3267000000,
-4041000000
],
"ebitda_margin_fq_h": [
37.6095606444253,
34.6983389612164,
33.0001276107023,
33.8195660608857,
36.9364440868866,
34.2378594754029,
32.8782773937069,
33.867750928344,
36.1455153669245,
33.0979463228229,
31.8471337579618,
32.9157703825551,
33.2314731037779,
30.7933796286025,
31.1973384442918,
33.6314480149674,
35.6488765178103,
32.1197216890595,
33.277296488085,
34.5057732096376,
32.7667356983405,
26.879658553181,
25.6012791382647,
26.8822732959707,
30.6545866858551,
27.2287912912913,
26.8361213970711,
28.1121585690114,
31.3240017541157,
29.32786649862,
29.2829468246392,
30.6105448843591
],
"other_investing_cash_flow_items_total_fq_h": [
-154000000,
-505000000,
-340000000,
-32000000,
-603000000,
-191000000,
-388000000,
-445000000,
-284000000,
-584000000,
-506000000,
-106000000,
-141000000,
-597000000,
-615000000,
-194000000,
-374000000,
-530000000,
-78000000,
-204000000,
204000000,
-102000000,
-263000000,
-296000000,
-130000000,
-810000000,
-298000000,
86000000,
-56000000,
1256000000,
-2054000000,
83000000
],
"debt_to_equity_fq_h": [
1.02629549835582,
1.5241072518410999,
1.54485796749202,
1.46993831965986,
1.44999850205219,
2.09058823529412,
1.51861845655693,
1.40968272367038,
1.45802968960864,
1.99417500724101,
1.81305372133922,
1.7634898162746502,
1.9586792885222202,
2.6144616356172996,
2.0598378852806,
1.78015994302586,
1.7071400767391403,
2.16392455222698,
1.89469508400747,
1.75843476249675,
1.6918790770717602,
1.8714397220649202,
1.6904070169613499,
1.51432578897035,
1.30402877215713,
1.19404782954646,
1.12401509496558,
1.06395238994899,
0.973178841651681,
1.06846668595481,
0.996963870934066,
0.9602925645107899
],
"quick_ratio_fq_h": [
0.937561203939224,
0.858770399261008,
0.826006235827664,
0.777507245574839,
0.875066671284591,
0.826006848383147,
0.906141737069228,
0.986771333042593,
1.02394512327111,
0.944442150466595,
0.922737130190536,
0.878042889860504,
0.888342584094518,
0.847235391149615,
0.822796116205832,
0.88402296326505,
0.997994226625286,
1.02211490185765,
1.0138370733337,
1.09269163885886,
1.12547261654101,
1.32507211173524,
1.42771564657253,
1.46126709263846,
1.55767856618475,
1.5012864412872,
1.46724783733167,
1.26329821268609,
1.25449054791611,
1.08999195659987,
1.24028775353481,
1.37025302283923
],
"fiscal_period_fq_h": [
"2026-Q1",
"2025-Q4",
"2025-Q3",
"2025-Q2",
"2025-Q1",
"2024-Q4",
"2024-Q3",
"2024-Q2",
"2024-Q1",
"2023-Q4",
"2023-Q3",
"2023-Q2",
"2023-Q1",
"2022-Q4",
"2022-Q3",
"2022-Q2",
"2022-Q1",
"2021-Q4",
"2021-Q3",
"2021-Q2",
"2021-Q1",
"2020-Q4",
"2020-Q3",
"2020-Q2",
"2020-Q1",
"2019-Q4",
"2019-Q3",
"2019-Q2",
"2019-Q1",
"2018-Q4",
"2018-Q3",
"2018-Q2"
],
"oper_income_fq_h": [
50852000000,
32427000000,
28202000000,
29589000000,
42832000000,
29591000000,
25352000000,
27900000000,
40373000000,
26969000000,
22998000000,
28318000000,
36016000000,
24894000000,
23076000000,
29979000000,
41488000000,
23786000000,
24287000000,
28223000000,
33883000000,
14680000000,
12459000000,
12899000000,
25301000000,
15477000000,
11489000000,
13242000000,
23034000000,
15629000000,
12980000000,
16002000000
],
"ebit_fq_h": [
50852000000,
32427000000,
28202000000,
29589000000,
42832000000,
29591000000,
25352000000,
27900000000,
40373000000,
26969000000,
22998000000,
28318000000,
36016000000,
24894000000,
23076000000,
29979000000,
41488000000,
23786000000,
24287000000,
28223000000,
33883000000,
14680000000,
12459000000,
12899000000,
25301000000,
15477000000,
11489000000,
13242000000,
23034000000,
15629000000,
12980000000,
16002000000
],
"change_in_other_assets_fq_h": [
2283000000,
1004000000,
-1327000000,
-8891000000,
-11059000000,
9445000000,
2251000000,
-2553000000,
-5322000000,
-776000000,
458000000,
-2125000000,
-210000000,
2654000000,
-2016000000,
-804000000,
-223000000,
3131000000,
-4052000000,
-5420000000,
5774000000,
2653000000,
-1101000000,
412000000,
-555000000,
4384000000,
-4306000000,
-3844000000,
-686000000,
1182000000,
-1742000000,
440000000
],
"reduction_of_long_term_debt_fq_h": [
-2164000000,
-1250000000,
-5673000000,
-3000000000,
-1009000000,
-2558000000,
-4250000000,
-3150000000,
0,
0,
-7500000000,
-2250000000,
-1401000000,
-2793000000,
-3000000000,
-3750000000,
0,
-1250000000,
-3000000000,
-3500000000,
-1000000000,
0,
-7379000000,
-4250000000,
-1000000000,
-3305000000,
-3000000000,
-2500000000,
0,
0,
-6000000000,
-500000000
],
"dps_common_stock_prim_issue_fq_h": [
0.26,
0.26,
0.26,
0.25,
0.25,
0.25,
0.25,
0.24,
0.24,
0.24,
0.24,
0.23,
0.23,
0.23,
0.23,
0.22,
0.22,
0.22,
0.22,
0.205,
0.205,
0.205,
0.205,
0.1925,
0.1925,
0.1925,
0.1925,
0.1825,
0.1825,
0.1825,
0.1825,
0.1575
],
"long_term_note_receivable_fq_h": [
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null
],
"preferred_stock_carrying_value_fq_h": [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0
],
"sale_of_stock_fq_h": [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
544000000,
0,
561000000,
0,
450000000,
0,
428000000,
2000000,
390000000,
1000000,
390000000,
0,
341000000,
1000000,
327000000
],
"price_earnings_fq_h": [
34.5909562488929,
34.2471813709061,
30.5676324830501,
34.004900201314,
40.6317563271016,
37.5278011169871,
32.0680887346031,
26.6654226534801,
29.9564337949277,
27.9312201249653,
32.5972607343921,
28.0170582938308,
22.075163953923,
24.6521689254519,
23.4071381361533,
28.4000585166041,
29.2663490113393,
26.2024932674645,
26.0688196470888,
27.1990844627951,
35.6762455732476,
34.3700257132362,
26.8772991213936,
19.4214487300094,
22.8881026094648,
18.4614605831533,
16.8660735589869,
15.9729229734275,
12.8449041339165,
19.0176916596462,
16.7824116047144,
16.1949806949807
],
"cash_f_operating_activities_fq_h": [
53925000000,
29728000000,
27867000000,
23952000000,
29935000000,
26811000000,
28858000000,
22690000000,
39895000000,
21598000000,
26380000000,
28560000000,
34005000000,
24127000000,
22892000000,
28166000000,
46966000000,
20200000000,
21094000000,
23981000000,
38763000000,
20576000000,
16271000000,
13311000000,
30516000000,
19910000000,
11636000000,
11155000000,
26690000000,
19523000000,
14488000000,
15130000000
],
"dilution_adjustment_fq_h": [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0
],
"total_debt_fq_h": [
90509000000,
112377000000,
101698000000,
98186000000,
96799000000,
119059000000,
101304000000,
104590000000,
108040000000,
123930000000,
109280000000,
109615000000,
111110000000,
132480000000,
119691000000,
119981000000,
122798000000,
136522000000,
121791000000,
121645000000,
112043000000,
122278000000,
122186000000,
118761000000,
116751000000,
108047000000,
108418000000,
112630000000,
114730000000,
114483000000,
114600000000,
121840000000
],
"pre_tax_margin_fq_h": [
35.4781713458917,
32.014521890188,
29.8087966310775,
30.736480038591,
34.2590506838294,
31.1914041925629,
29.7212539491938,
30.9168842903265,
33.7219318419402,
30.1660372298822,
27.7919728107388,
29.9274537095618,
30.4069856769722,
27.3522951656202,
27.8040959992285,
30.9823392750673,
33.2736294324095,
27.8886756238004,
29.9028149311606,
31.1586464659948,
30.1040854199726,
23.0430210620728,
22.1105781368341,
22.5118686479168,
28.2571247901267,
25.2236611611612,
22.1637111330269,
23.8147035463932,
28.3337086508717,
26.1977313699526,
24.8638328934808,
26.4079445968901
],
"total_non_current_liabilities_fq_h": [
128740000000,
119877000000,
124545000000,
119866000000,
132962000000,
131638000000,
133280000000,
139395000000,
145441000000,
145129000000,
149801000000,
149927000000,
152734000000,
148101000000,
148329000000,
155755000000,
161685000000,
162431000000,
157806000000,
161595000000,
155323000000,
153157000000,
149744000000,
145881000000,
148926000000,
142310000000,
136079000000,
142366000000,
147544000000,
141712000000,
145700000000,
151304000000
],
"depreciation_depletion_fq_h": [
3214000000,
null,
null,
null,
3080000000,
-334000000,
2850000000,
2836000000,
2848000000,
-366000000,
3052000000,
2898000000,
2916000000,
461000000,
2805000000,
2737000000,
2697000000,
1205000000,
2832000000,
2797000000,
2666000000,
1346000000,
2752000000,
2786000000,
2816000000,
1932000000,
2933000000,
3040000000,
3395000000,
1151000000,
2665000000,
null
],
"asset_turnover_fq_h": [
1.20438993505506,
1.14926521048133,
1.23245569719517,
1.19754607833167,
1.1346346540061,
1.08989733305647,
1.15683792094802,
1.13990301252593,
1.1016064010419,
1.08681228006998,
1.14376916855218,
1.12795135481868,
1.06475276740602,
1.12063681071734,
1.16352948064172,
1.12261056671804,
1.03012465232678,
1.08549541406748,
1.0741952829489,
0.990093649533577,
0.846359145035355,
0.827742586095495,
0.8549945824076,
0.808414276613154,
0.748433862448676,
0.73829271513587,
0.770625942010854,
0.728397463002114,
0.670597414777204,
0.717390600288242,
0.73650071287642,
0.705193765544119
],
"long_term_investments_fq_h": [
77888000000,
77723000000,
77614000000,
84424000000,
87593000000,
91479000000,
91240000000,
95187000000,
99475000000,
100544000000,
104061000000,
110461000000,
114095000000,
120805000000,
131077000000,
141219000000,
138683000000,
127877000000,
133174000000,
136079000000,
120454000000,
102624000000,
102219000000,
100591000000,
101725000000,
106698000000,
117351000000,
146807000000,
158608000000,
170799000000,
172773000000,
179286000000
],
"revenue_fq_h": [
143756000000,
102466000000,
94036000000,
95359000000,
124300000000,
94930000000,
85777000000,
90753000000
],
"long_term_debt_to_assets_fq_h": [
0.2021766583969818,
0.250336125330906,
0.24866136744143955,
0.23719255025918312,
0.24399784936861532,
0.2645295632637405,
0.2599302799657431,
0.272163622407094,
0.2689794463585601,
0.302192675199882,
0.29271605011968793,
0.2921513728323699,
0.2873189962710564,
0.31100055279159755,
0.2815862792848244,
0.2946512596175234,
0.2797259116820701,
0.3401148711403354,
0.3206160562697065,
0.32222874735287316,
0.280412027543821,
0.33051239934792276,
0.3218526268024604,
0.30317103620474406,
0.29440017849908107,
0.2712043153056281,
0.26358075838120154,
0.2637471564161194,
0.24882063796595838,
0.25629913186137127,
0.278146719473535,
0.2758134649607349
],
"deferred_income_current_fq_h": [
9413000000,
9055000000,
8979000000,
8976000000,
8461000000,
8249000000,
8053000000,
8012000000,
8264000000,
8061000000,
8158000000,
8131000000,
7992000000,
7912000000,
7728000000,
7920000000,
7876000000,
7612000000,
7681000000,
7595000000,
7395000000,
6643000000,
6313000000,
5928000000,
5573000000,
5522000000,
5434000000,
5532000000,
5546000000,
7543000000,
7403000000,
7775000000
],
"shrhldrs_equity_fq_h": [
88190000000,
73733000000,
65830000000,
66796000000,
66758000000,
56950000000,
66708000000,
74194000000,
74100000000,
62146000000,
60274000000,
62158000000,
56727000000,
50672000000,
58107000000,
67399000000,
71932000000,
63090000000,
64280000000,
69178000000,
66224000000,
65339000000,
72282000000,
78425000000,
89531000000,
90488000000,
96456000000,
105860000000,
117892000000,
107147000000,
114949000000,
126878000000
],
"supplying_of_long_term_debt_fq_h": [
0,
0,
4481000000,
0,
0,
0,
0,
0,
0,
0,
5228000000,
0,
0,
5465000000,
0,
0,
0,
6470000000,
0,
13923000000,
0,
5456000000,
8425000000,
0,
2210000000,
6963000000,
0,
0,
0,
0,
0,
0
],
"purchase_sale_business_fq_h": [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
-137000000,
-2000000,
-167000000,
0,
-20000000,
-4000000,
0,
-9000000,
-51000000,
-339000000,
-176000000,
-958000000,
-13000000,
-320000000,
-124000000,
-167000000,
-290000000,
-126000000,
-132000000
],
"funds_f_operations_fq_h": [
48377000000,
35435000000,
29901000000,
30459000000,
40687000000,
20203000000,
27174000000,
28454000000,
38772000000,
27658000000,
25631000000,
28329000000,
35502000000,
24175000000,
26117000000,
30218000000,
40441000000,
21990000000,
25791000000,
27760000000,
33408000000,
16699000000,
16701000000,
15313000000,
26271000000,
17750000000,
14434000000,
15777000000,
24918000000,
18709000000,
16402000000,
17271000000
],
"total_current_liabilities_fq_h": [
162367000000,
165631000000,
141120000000,
144571000000,
144365000000,
176392000000,
131624000000,
123822000000,
133973000000,
145308000000,
124963000000,
120075000000,
137286000000,
153982000000,
129873000000,
127508000000,
147574000000,
125481000000,
107754000000,
106385000000,
132507000000,
105392000000,
95318000000,
96094000000,
102161000000,
105718000000,
89704000000,
93772000000,
108283000000,
116866000000,
88548000000,
89320000000
],
"return_on_assets_fq_h": [
32.5628782579605,
30.93254683308,
29.943885375965,
29.1018838126118,
27.5659798824253,
26.1262077336763,
30.5875646891172,
29.9860657047572,
28.8215393974532,
27.503126160791,
28.2298126006372,
27.6268192881893,
26.1481060200182,
28.3629150402767,
29.9131275435376,
29.6400220988049,
27.3527871661827,
28.0579057327861,
26.8245197656308,
23.2104240234322,
18.4058087845775,
17.3341344557098,
18.2694036583211,
17.2751125456297,
16.1064035602244,
15.6923553158649,
16.5898164530946,
16.1155743481325,
15.2287021484588,
16.0667922552507,
16.1642928121895,
15.1895777127603
],
"gross_profit_fq_h": [
69231000000,
48341000000,
43718000000,
44867000000,
58275000000,
43879000000,
39678000000,
42271000000,
54855000000,
40427000000,
36413000000,
41976000000,
50332000000,
38095000000,
35885000000,
42559000000,
54243000000,
35174000000,
35416000000,
38799000000,
44677000000,
24594000000,
22048000000,
22416000000,
34949000000,
24165000000,
20172000000,
21648000000,
31719000000,
23595000000,
20789000000,
23530000000
],
"dep_amort_exp_income_s_fq_h": [
-3214000000,
-3127000000,
-2830000000,
-2661000000,
-3080000000,
-2911000000,
-2850000000,
-2836000000,
-2848000000,
-2653000000,
-3052000000,
-2898000000,
-2916000000,
-2865000000,
-2805000000,
-2737000000,
-2697000000,
-2989000000,
-2832000000,
-2797000000,
-2666000000,
-2702000000,
-2752000000,
-2786000000,
-2816000000,
-1932000000,
-2933000000,
-3040000000,
-3395000000,
-2754000000,
-2665000000,
-2739000000
],
"other_proceeds_from_stock_sales_fq_h": [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
544000000,
0,
561000000,
0,
450000000,
0,
428000000,
2000000,
390000000,
1000000,
390000000,
0,
341000000,
1000000,
327000000
],
"common_dividends_cash_flow_fq_h": [
-3921000000,
-3862000000,
-3945000000,
-3758000000,
-3856000000,
-3804000000,
-3895000000,
-3710000000,
-3825000000,
-3758000000,
-3849000000,
-3650000000,
-3768000000,
-3703000000,
-3811000000,
-3595000000,
-3732000000,
-3640000000,
-3767000000,
-3447000000,
-3613000000,
-3511000000,
-3656000000,
-3375000000,
-3539000000,
-3479000000,
-3629000000,
-3443000000,
-3568000000,
-3530000000,
-3653000000,
-3190000000
],
"ebitda_fq_h": [
54066000000,
35554000000,
31032000000,
32250000000,
45912000000,
32502000000,
28202000000,
30736000000,
43221000000,
29622000000,
26050000000,
31216000000,
38932000000,
27759000000,
25881000000,
32716000000,
44185000000,
26775000000,
27119000000,
31020000000,
36549000000,
17382000000,
15211000000,
15685000000,
28117000000,
17409000000,
14422000000,
16282000000,
26429000000,
18383000000,
15645000000,
18741000000
],
"unusual_expense_inc_fq_h": [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
57000000,
60000000,
82000000,
92000000,
119000000,
126000000,
128000000,
null,
null,
null,
null,
null,
null,
null
],
"ppe_total_net_fq_h": [
50159000000,
61039000000,
48508000000,
46876000000,
46069000000,
55914000000,
44502000000,
43546000000,
43666000000,
54376000000,
43550000000,
43398000000,
42951000000,
52534000000,
40335000000,
39304000000,
39245000000,
49527000000,
38615000000,
37815000000,
37933000000,
45336000000,
43851000000,
43986000000,
44293000000,
37378000000,
37636000000,
38746000000,
39597000000,
41304000000,
38117000000,
35077000000
],
"enterprise_value_fq_h": [
4072753330400,
3854737555140,
3052105833320,
3330419380700,
3915433585350,
3526057484870,
3272135618500,
2689328299320,
3033910691730,
2745646604000,
3106678823370,
2666921545000,
2132881439739.9998,
2508876689950,
2375163676980,
2934457371520,
2970905617480,
2517911451240,
2293911745850,
2103794119970,
2293710405360,
1968861177880,
1569115680440,
1114851148340,
1300465239200,
996615019860,
924243129600,
925084707700,
774028159960,
1142467259780,
955594591990,
884291755540
],
"ppe_total_gross_fq_h": [
127320000000,
137053000000,
124311000000,
121179000000,
120615000000,
129362000000,
117129000000,
115243000000,
116176000000,
125260000000,
114337000000,
113066000000,
110995000000,
124874000000,
111851000000,
109324000000,
107699000000,
119810000000,
108857000000,
107280000000,
105493000000,
112096000000,
109081000000,
106840000000,
105252000000,
95957000000,
93984000000,
93036000000,
91526000000,
90403000000,
85368000000,
80502000000
],
"capital_lease_obligations_fq_h": [
0,
692000000,
0,
0,
0,
752000000,
0,
0,
0,
859000000,
0,
0,
0,
812000000,
0,
0,
0,
769000000,
0,
0,
0,
637000000,
630000000,
629000000,
627000000,
0,
0,
0,
0,
0,
0,
0
],
"earnings_publication_type_fq_h": [
22,
22,
22,
22,
22,
22,
22,
22
],
"earnings_per_share_diluted_fq_h": [
2.8424,
1.8479,
1.5677,
1.6458,
2.3979,
0.9668,
1.3974,
1.5284,
2.1774,
1.4647,
1.2603,
1.5246,
1.8801,
1.2855,
1.1955,
1.5247,
2.0963,
1.2354,
1.2957,
1.3958,
1.6802,
0.7344,
0.646,
0.6385,
1.2479,
0.7569,
0.5457,
0.6149,
1.0457,
0.7275,
0.585,
0.6825
],
"debt_to_asset_fq_h": [
0.23862303155574702,
0.312817857649879,
0.306785924372917,
0.296425778832423,
0.281322928927445,
0.32620691544742203,
0.30548954802600603,
0.309978038653156,
0.305617316428769,
0.351491705499131,
0.326171956613877,
0.33000662331406605,
0.320435360652003,
0.37555810690138997,
0.355895917147623,
0.34215569408718405,
0.322142967698608,
0.38894935071595,
0.36924266310938597,
0.360795235468237,
0.31645737655837797,
0.377531739366695,
0.385026973883231,
0.370664794007491,
0.34276227327974396,
0.319178414018835,
0.33645213645772204,
0.32932941128310705,
0.30699536282608103,
0.31303028231594804,
0.328181513586886,
0.331535610690554
],
"long_term_debt_excl_capital_lease_fq_h": [
76685000000,
89239000000,
82430000000,
78566000000,
83956000000,
95796000000,
86196000000,
91831000000,
95088000000,
105689000000,
98071000000,
97041000000,
99627000000,
108895000000,
94700000000,
103323000000,
106629000000,
118612000000,
105752000000,
108642000000,
99281000000,
106412000000,
101508000000,
96507000000,
99651000000,
91807000000,
84936000000,
90201000000,
92989000000,
93735000000,
97128000000,
101362000000
],
"issuance_of_stock_net_fq_h": [
-24701000000,
-20132000000,
-21075000000,
-25898000000,
-23606000000,
-25083000000,
-26522000000,
-23205000000,
-20139000000,
-21003000000,
-17478000000,
-19594000000,
-19475000000,
-24428000000,
-21865000000,
-22631000000,
-20478000000,
-19204000000,
-22900000000,
-17987000000,
-24775000000,
-16737000000,
-15891000000,
-18146000000,
-20704000000,
-17054000000,
-16954000000,
-23312000000,
-8796000000,
-18763000000,
-20782000000,
-22429000000
],
"dividend_payout_ratio_fq_h": [
9.14719954967633,
14.0700254342767,
16.5848057664094,
15.1901810669583,
10.4257892322449,
25.8585022755482,
17.8903678259625,
15.7026956294164,
11.0223201984018,
16.3856079743292,
19.0430849797667,
15.0859241768333,
12.2333918408595,
17.8918708673668,
19.2388122124634,
14.4290680133797,
10.4946811048037,
17.8079974097458,
16.9792390213784,
14.6869178965468,
12.2009284608975,
27.9139433551198,
31.733746130031,
30.1487862176977,
15.425915538104,
25.4326859558726,
35.2757925600147,
29.6796227028785,
17.4524242134455,
25.085910652921,
31.1965811965812,
23.0769230769231
],
"other_investing_cash_flow_uses_fq_h": [
-154000000,
-505000000,
-340000000,
-32000000,
-603000000,
-191000000,
-388000000,
-445000000,
-284000000,
-584000000,
-506000000,
-106000000,
-141000000,
-597000000,
-615000000,
-194000000,
-374000000,
-530000000,
-78000000,
0,
0,
-102000000,
-263000000,
-296000000,
-130000000,
-810000000,
-268000000,
56000000,
-56000000,
1566000000,
-2311000000,
94000000
],
"current_ratio_fq_h": [
0.973744664864166,
0.893292922218667,
0.867991780045351,
0.820870022341963,
0.922938385342708,
0.867312576534083,
0.952979699750805,
1.03710164591107,
1.07254446791518,
0.988011671759297,
0.981562542512584,
0.94035394545076,
0.938019900062643,
0.879356028626723,
0.864629291692654,
0.926843805878847,
1.03781153861791,
1.0745531195958,
1.06189097388496,
1.14174930676317,
1.16300270929083,
1.36360444815546,
1.46944963175895,
1.49596228692738,
1.59778193243997,
1.54012561720804,
1.50464862213502,
1.3153819903596,
1.3005550271049,
1.12384269162973,
1.30732484076433,
1.45603448275862
],
"total_non_current_assets_fq_h": [
221193000000,
211284000000,
209004000000,
212559000000,
210845000000,
211993000000,
206177000000,
208995000000,
209822000000,
209017000000,
212379000000,
219247000000,
217970000000,
217350000000,
224017000000,
232482000000,
228037000000,
216166000000,
215417000000,
215693000000,
199948000000,
180175000000,
177279000000,
176647000000,
177387000000,
175697000000,
187266000000,
218652000000,
232891000000,
234386000000,
233436000000,
237449000000
],
"long_term_other_assets_total_fq_h": [
93146000000,
51745000000,
82882000000,
81259000000,
77183000000,
45101000000,
70435000000,
70262000000,
66681000000,
36245000000,
64768000000,
65388000000,
60924000000,
44011000000,
52605000000,
51959000000,
50109000000,
38762000000,
43628000000,
41799000000,
41561000000,
32215000000,
31209000000,
32070000000,
31369000000,
31621000000,
32279000000,
33099000000,
34686000000,
22283000000,
22546000000,
23086000000
],
"cash_n_short_term_invest_fq_h": [
66907000000,
54697000000,
55372000000,
48498000000,
53775000000,
65171000000,
61801000000,
67150000000,
73100000000,
61555000000,
62482000000,
55872000000,
51355000000,
48304000000,
48231000000,
51511000000,
63913000000,
62639000000,
61696000000,
69834000000,
76826000000,
90979000000,
93054000000,
95128000000,
107230000000,
100580000000,
94880000000,
80433000000,
86427000000,
66301000000,
70970000000,
87940000000
],
"change_in_accounts_payable_fq_h": [
848000000,
19381000000,
-3875000000,
-7933000000,
-6671000000,
21191000000,
1539000000,
-12168000000,
-4542000000,
14901000000,
3974000000,
-14689000000,
-6075000000,
15556000000,
-4358000000,
-21563000000,
19813000000,
14112000000,
211000000,
-23667000000,
21670000000,
6725000000,
2733000000,
-12431000000,
-1089000000,
17881000000,
220000000,
-11523000000,
-8501000000,
20314000000,
2081000000,
-27808000000
],
"capital_expenditures_other_assets_fq_h": [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
154000000
],
"total_debt_per_share_fq_h": [
6.111196786896953,
7.560546028895136,
6.803370497503408,
6.52132921514442,
6.389008152339817,
7.810808121025638,
6.600393857901673,
6.7631405156087965,
6.936026836594617,
7.907531711799087,
6.92740757682668,
6.917060273047666,
6.9636477656474,
8.219144937188497,
7.360072924929052,
7.31443569092981,
7.4336120115566695,
8.206865280076213,
7.257354498804801,
7.185532038009926,
6.546981574047629,
7.085901034165577,
7.014463161008068,
6.740597694594241,
6.552265925321308,
5.975557769237185,
5.890515454059434,
5.990134121990892,
6.009006019376307,
5.904171738819655,
5.815359002510651,
6.009675854341714
],
"capital_operating_lease_obligations_fq_h": [
0,
11603000000,
0,
0,
0,
10798000000,
0,
0,
0,
11267000000,
0,
0,
0,
10748000000,
0,
0,
0,
10275000000,
0,
0,
0,
8382000000,
8090000000,
8050000000,
7200000000,
0,
0,
0,
0,
0,
0,
0
],
"capex_per_share_fq_h": [
0.160225723135892,
0.218116609499079,
0.23160011664297,
0.203970036662136,
0.194048326613695,
0.19077793376345,
0.140146955582667,
0.129068060705184,
0.153563274649522,
0.138013322784002,
0.132678111807268,
0.184009011140875,
0.237344380240363,
0.204051688544784,
0.129256780277555,
0.153261694159888,
0.169680405775284,
0.193746991676694,
0.124718928048858,
0.134029119110893,
0.204514655169593,
0.103381208761604,
0.089843638771853,
0.10517196325463,
0.118248445877568,
0.15358245879267,
0.108663053257936,
0.125674215841823,
0.175718776213785,
0.156831898690204,
0.165783401930212,
0.199319600520312
],
"issuance_of_short_term_debt_fq_h": [
-5910000000,
-1967000000,
3903000000,
3976000000,
-7944000000,
6945000000,
997000000,
2000000,
-3984000000,
1993000000,
1989000000,
254000000,
-8214000000,
-1015000000,
3971000000,
1999000000,
-1000000000,
-2000000000,
3000000000,
0,
22000000,
-6159000000,
1122000000,
5053000000,
-979000000,
-3951000000,
-2026000000,
-6000000,
6000000,
-27000000,
-11000000,
-1000000
],
"other_investing_cash_flow_sources_fq_h": [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
-204000000,
204000000,
0,
0,
0,
0,
0,
-30000000,
30000000,
0,
-310000000,
257000000,
-11000000
],
"revenues_fq_h": [
{
"Actual": 89584000000,
"Estimate": 77088700724,
"FiscalPeriod": "2021-Q2",
"IsReported": true,
"Type": 22
},
{
"Actual": 81434000000,
"Estimate": 73334747261,
"FiscalPeriod": "2021-Q3",
"IsReported": true,
"Type": 22
},
{
"Actual": 83360000000,
"Estimate": 85054907222,
"FiscalPeriod": "2021-Q4",
"IsReported": true,
"Type": 22
},
{
"Actual": 123945000000,
"Estimate": 119002502550,
"FiscalPeriod": "2022-Q1",
"IsReported": true,
"Type": 22
},
{
"Actual": 97278000000,
"Estimate": 94033796672,
"FiscalPeriod": "2022-Q2",
"IsReported": true,
"Type": 22
},
{
"Actual": 82959000000,
"Estimate": 82791243730,
"FiscalPeriod": "2022-Q3",
"IsReported": true,
"Type": 22
},
{
"Actual": 90146000000,
"Estimate": 88739279089,
"FiscalPeriod": "2022-Q4",
"IsReported": true,
"Type": 22
},
{
"Actual": 117154000000,
"Estimate": 121333299852,
"FiscalPeriod": "2023-Q1",
"IsReported": true,
"Type": 22
},
{
"Actual": 94836000000,
"Estimate": 92906049631,
"FiscalPeriod": "2023-Q2",
"IsReported": true,
"Type": 22
},
{
"Actual": 81797000000,
"Estimate": 81794915987,
"FiscalPeriod": "2023-Q3",
"IsReported": true,
"Type": 22
},
{
"Actual": 89498000000,
"Estimate": 89303802150,
"FiscalPeriod": "2023-Q4",
"IsReported": true,
"Type": 22
},
{
"Actual": 119575000000,
"Estimate": 117986596460,
"FiscalPeriod": "2024-Q1",
"IsReported": true,
"Type": 22
},
{
"Actual": 90753000000,
"Estimate": 90366105851,
"FiscalPeriod": "2024-Q2",
"IsReported": true,
"Type": 22
},
{
"Actual": 85777000000,
"Estimate": 84480707659,
"FiscalPeriod": "2024-Q3",
"IsReported": true,
"Type": 22
},
{
"Actual": 94930000000,
"Estimate": 94511953345,
"FiscalPeriod": "2024-Q4",
"IsReported": true,
"Type": 22
},
{
"Actual": 124300000000,
"Estimate": 124257393152,
"FiscalPeriod": "2025-Q1",
"IsReported": true,
"Type": 22
},
{
"Actual": 95359000000,
"Estimate": 94542181546,
"FiscalPeriod": "2025-Q2",
"IsReported": true,
"Type": 22
},
{
"Actual": 94036000000,
"Estimate": 89562736363,
"FiscalPeriod": "2025-Q3",
"IsReported": true,
"Type": 22
},
{
"Actual": 102466000000,
"Estimate": 102227074560,
"FiscalPeriod": "2025-Q4",
"IsReported": true,
"Type": 22
},
{
"Actual": 143756000000,
"Estimate": 138391007589,
"FiscalPeriod": "2026-Q1",
"IsReported": true,
"Type": 22
},
{
"Actual": null,
"Estimate": 109347054075,
"FiscalPeriod": "2026-Q2",
"IsReported": false,
"Type": 12
},
{
"Actual": null,
"Estimate": 102435407544,
"FiscalPeriod": "2026-Q3",
"IsReported": false,
"Type": 10
},
{
"Actual": null,
"Estimate": 111506104529,
"FiscalPeriod": "2026-Q4",
"IsReported": false,
"Type": 10
},
{
"Actual": null,
"Estimate": 149225282346,
"FiscalPeriod": "2027-Q1",
"IsReported": false,
"Type": 10
},
{
"Actual": null,
"Estimate": 116114153931,
"FiscalPeriod": "2027-Q2",
"IsReported": false,
"Type": 10
},
{
"Actual": null,
"Estimate": 110034381290,
"FiscalPeriod": "2027-Q3",
"IsReported": false,
"Type": 10
},
{
"Actual": null,
"Estimate": 118418743920,
"FiscalPeriod": "2027-Q4",
"IsReported": false,
"Type": 10
},
{
"Actual": null,
"Estimate": 153095058526,
"FiscalPeriod": "2028-Q1",
"IsReported": false,
"Type": 10
},
{
"Actual": null,
"Estimate": 120890450268,
"FiscalPeriod": "2028-Q2",
"IsReported": false,
"Type": 10
},
{
"Actual": null,
"Estimate": 112078730744,
"FiscalPeriod": "2028-Q3",
"IsReported": false,
"Type": 10
},
{
"Actual": null,
"Estimate": 123401826658,
"FiscalPeriod": "2028-Q4",
"IsReported": false,
"Type": 10
}
],
"minority_interest_exp_fq_h": [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0
],
"non_oper_income_fq_h": [
150000000,
377000000,
-171000000,
-279000000,
-248000000,
19000000,
142000000,
158000000,
-50000000,
1031000000,
733000000,
994000000,
610000000,
590000000,
709000000,
851000000,
447000000,
134000000,
690000000,
398000000,
252000000,
763000000,
1256000000,
867000000,
1274000000,
1460000000,
1288000000,
1561000000,
1762000000,
1660000000,
1150000000,
958000000
],
"free_cash_flow_fq_h": [
51552000000,
26486000000,
24405000000,
20881000000,
26995000000,
23903000000,
26707000000,
20694000000,
37503000000,
19435000000,
24287000000,
25644000000,
30218000000,
20838000000,
20790000000,
25652000000,
44163000000,
16977000000,
19001000000,
21712000000,
35263000000,
18792000000,
14706000000,
11458000000,
28409000000,
17133000000,
9636000000,
8792000000,
23335000000,
16482000000,
11221000000,
10935000000
],
"ebitda_per_share_fq_h": [
3.650553707149241,
2.3920166360673236,
2.0759719294236443,
2.1419842664779862,
3.0303220311183554,
2.132277992840317,
1.8374823065283006,
1.987492942802868,
2.7747317281049235,
1.8900742706924274,
1.6513448698420115,
1.969830346973096,
2.4400030133397945,
1.7221863248144287,
1.5914817937028582,
1.9944747757099845,
2.6747515979953373,
1.6095487750988164,
1.6159830911404571,
1.832341681278046,
2.135658894798129,
1.0072713961290343,
0.8732342424016968,
0.8902440602530348,
1.5779741588702385,
0.9628077152040331,
0.7835692770429741,
0.8659448084369681,
1.384224004934162,
0.9480568213160183,
0.793903068012907,
0.9243871896439434
],
"equity_in_earnings_fq_h": [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0
],
"total_oper_expense_fq_h": [
-92904000000,
-70039000000,
-65834000000,
-65770000000,
-81468000000,
-65339000000,
-60425000000,
-62853000000,
-79202000000,
-62529000000,
-58799000000,
-66518000000,
-81138000000,
-65252000000,
-59883000000,
-67299000000,
-82457000000,
-59574000000,
-57207000000,
-61675000000,
-77660000000,
-49986000000,
-46956000000,
-45448000000,
-66421000000,
-48459000000,
-42252000000,
-44676000000,
-61339000000,
-47052000000,
-40447000000,
-45222000000
],
"non_cash_items_fq_h": [
3066000000,
4842000000,
3637000000,
3018000000,
1277000000,
2556000000,
2876000000,
1982000000,
2008000000,
2049000000,
2698000000,
1271000000,
2588000000,
2450000000,
2202000000,
2065000000,
2432000000,
2487000000,
1745000000,
1482000000,
2045000000,
1721000000,
1863000000,
1580000000,
1568000000,
1187000000,
1371000000,
1353000000,
1505000000,
1311000000,
1092000000,
1208000000
],
"total_liabilities_fq_h": [
291107000000,
285508000000,
265665000000,
264437000000,
277327000000,
308030000000,
264904000000,
263217000000,
279414000000,
290437000000,
274764000000,
270002000000,
290020000000,
302083000000,
278202000000,
283263000000,
309259000000,
287912000000,
265560000000,
267980000000,
287830000000,
258549000000,
245062000000,
241975000000,
251087000000,
248028000000,
225783000000,
236138000000,
255827000000,
258578000000,
234248000000,
240624000000
],
"earnings_per_share_fq_h": [
2.84,
1.85,
1.57,
1.65,
2.4,
1.64,
1.4,
1.53
],
"other_financing_cash_flow_uses_fq_h": [
-2960000000,
-265000000,
-2524000000,
-326000000,
-2956000000,
-448000000,
-2347000000,
-370000000,
-2637000000,
-385000000,
-2438000000,
-484000000,
-2705000000,
-320000000,
-2740000000,
-374000000,
-2949000000,
-758000000,
-2729000000,
-315000000,
-2883000000,
-406000000,
-1737000000,
-222000000,
-1395000000,
-213000000,
-1195000000,
-196000000,
-1318000000,
-260000000,
-1077000000,
-152000000
],
"change_in_taxes_payable_fq_h": [
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null
],
"other_intangibles_net_fq_h": [
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null
],
"sales_of_investments_fq_h": [
10334000000,
7976000000,
14024000000,
12338000000,
19459000000,
15126000000,
15444000000,
17393000000,
14383000000,
13698000000,
12795000000,
11385000000,
7636000000,
9551000000,
15144000000,
20684000000,
21984000000,
20245000000,
25375000000,
26729000000,
34521000000,
25800000000,
27183000000,
40480000000,
27020000000,
20899000000,
38310000000,
22589000000,
16926000000,
16168000000,
17078000000,
39977000000
],
"issuance_of_long_term_debt_fq_h": [
-2164000000,
-1250000000,
-1192000000,
-3000000000,
-1009000000,
-2558000000,
-4250000000,
-3150000000,
0,
0,
-2272000000,
-2250000000,
-1401000000,
2672000000,
-3000000000,
-3750000000,
0,
5220000000,
-3000000000,
10423000000,
-1000000000,
5456000000,
1046000000,
-4250000000,
1210000000,
3658000000,
-3000000000,
-2500000000,
0,
0,
-6000000000,
-500000000
],
"pretax_income_fq_h": [
51002000000,
32804000000,
28031000000,
29310000000,
42584000000,
29610000000,
25494000000,
28058000000,
40323000000,
26998000000,
22733000000,
28382000000,
35623000000,
24657000000,
23066000000,
30139000000,
41241000000,
23248000000,
24369000000,
28011000000,
33579000000,
14901000000,
13137000000,
13135000000,
25918000000,
16127000000,
11911000000,
13793000000,
23906000000,
16421000000,
13284000000,
16168000000
],
"ncavps_ratio_fq_h": [
-10.495965920805313,
-8.766479858880055,
-9.212167523887222,
-8.868417308843068,
-8.643795112140362,
-10.576421533008778,
-9.09037576237223,
-9.559251983953095,
-9.508466737409284,
-9.723883042696285,
-10.09432645819191,
-9.3673523381176,
-8.375695978134798,
-10.181358666266183,
-9.891862881442721,
-9.696454667465325,
-9.22252716372561,
-8.493904285522511,
-7.3235753356898865,
-7.182433712219764,
-7.103772235954772,
-5.38627702872411,
-6.073681504260828,
-6.437035355319968,
-5.827885432014822,
-6.135086412452108,
-5.679531571571431,
-5.36510965791553,
-5.510856609397222,
-6.336710168017212,
-5.869348069222261,
-6.657651107463481
],
"diluted_net_income_fq_h": [
42097000000,
27466000000,
23434000000,
24780000000,
36330000000,
14736000000,
21448000000,
23636000000,
33916000000,
22956000000,
19881000000,
24160000000,
29998000000,
20721000000,
19442000000,
25010000000,
34630000000,
20551000000,
21744000000,
23630000000,
28755000000,
12673000000,
11253000000,
11249000000,
22236000000,
13686000000,
10044000000,
11561000000,
19965000000,
14125000000,
11519000000,
13822000000
],
"diluted_shares_outstanding_fq_h": [
14810356000,
14863609000,
14948179000,
15056133000,
15150865000,
15242853000,
15348175000,
15464709000,
15576641000,
15672400000,
15775021000,
15847050000,
15955718000,
16118465000,
16262203000,
16403315999.999998,
16519291000.000002,
16635097000.000002,
16781735000,
16929157000,
17113687999.999998,
17256521000,
17419152000,
17618764000,
17818416000,
18081492000,
18405520000,
18802584000,
19093008000,
19390188000,
19706436000,
20273972000
],
"other_liabilities_total_fq_h": [
52055000000,
29946000000,
42115000000,
41300000000,
49006000000,
25836000000,
47084000000,
47564000000,
50353000000,
23124000000,
51730000000,
52886000000,
53107000000,
21737000000,
32930000000,
31721000000,
30367000000,
18361000000,
27131000000,
27791000000,
27872000000,
63000000,
19418000000,
20557000000,
20450000000,
4039000000,
4522000000,
4979000000,
7707000000,
71000000,
567000000,
394000000
],
"other_current_liabilities_fq_h": [
68543000000,
51254000000,
62499000000,
61849000000,
61151000000,
50071000000,
60889000000,
57298000000,
54611000000,
57254000000,
58897000000,
56425000000,
59893000000,
59182000000,
48811000000,
50248000000,
49167000000,
45965000000,
43625000000,
45660000000,
48504000000,
41224000000,
33632000000,
36120000000,
35004000000,
37720000000,
31673000000,
35368000000,
36703000000,
32687000000,
25184000000,
26756000000
],
"capital_expenditures_fixed_assets_fq_h": [
-2373000000,
-3242000000,
-3462000000,
-3071000000,
-2940000000,
-2908000000,
-2151000000,
-1996000000,
-2392000000,
-2163000000,
-2093000000,
-2916000000,
-3787000000,
-3289000000,
-2102000000,
-2514000000,
-2803000000,
-3223000000,
-2093000000,
-2269000000,
-3500000000,
-1784000000,
-1565000000,
-1853000000,
-2107000000,
-2777000000,
-2000000000,
-2363000000,
-3355000000,
-3041000000,
-3267000000,
-4195000000
],
"intangibles_net_fq_h": [
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null
],
"revenue_forecast_fq_h": [
138391007589,
102227074560,
89562736363,
94542181546,
124257393152,
94511953345,
84480707659,
90366105851
],
"inventory_finished_goods_fq_h": [
5875000000,
5718000000,
5925000000,
6269000000,
6911000000,
7286000000,
6165000000,
6232000000,
6511000000,
6331000000,
7351000000,
7482000000,
6820000000,
4946000000,
5433000000,
5460000000,
5876000000,
6580000000,
5178000000,
5219000000,
4973000000,
4061000000,
3978000000,
3334000000,
4097000000,
4106000000,
3355000000,
4884000000,
4988000000,
3956000000,
5936000000,
7662000000
],
"accounts_payable_fq_h": [
70587000000,
69860000000,
50374000000,
54126000000,
61910000000,
68960000000,
47574000000,
45753000000,
58146000000,
62611000000,
46699000000,
42945000000,
57918000000,
64115000000,
48343000000,
52682000000,
74362000000,
54763000000,
40409000000,
40127000000,
63846000000,
42296000000,
35325000000,
32421000000,
45111000000,
46236000000,
29115000000,
30443000000,
44293000000,
55888000000,
38489000000,
34311000000
],
"preferred_dividends_fq_h": [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0
],
"total_shares_outstanding_fq_h": [
14702703000,
14773260000,
14856722000,
14939315000,
15040731000,
15116786000,
15222259000,
15337686000,
15460223000,
15550061000,
15647868000,
15723406000,
15842407000,
15943425000,
16095378000,
16207568000,
16340851000,
16426786000,
16556942000,
16686305000,
16823262999.999998,
16976762999.999998,
17135756000.000002,
17295948000,
17539836000,
17772944000,
18125580000,
18429136000,
18919212000,
19019944000,
19371668000,
19773128000
],
"amortization_fq_h": [
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null
],
"other_investments_fq_h": [
77888000000,
77723000000,
77614000000,
84424000000,
87593000000,
91479000000,
91240000000,
95187000000,
99475000000,
100544000000,
104061000000,
110461000000,
114095000000,
120805000000,
131077000000,
141219000000,
138683000000,
127877000000,
133174000000,
136079000000,
120454000000,
102624000000,
102219000000,
100591000000,
101725000000,
106698000000,
117351000000,
146807000000,
158608000000,
170799000000,
172773000000,
179286000000
],
"purchase_of_investments_fq_h": [
-12693000000,
-6816000000,
-5149000000,
-6318000000,
-6124000000,
-10582000000,
-13032000000,
-15262000000,
-9780000000,
-8557000000,
-9759000000,
-6044000000,
-5153000000,
-6745000000,
-8191000000,
-27074000000,
-34913000000,
-15637000000,
-19628000000,
-34624000000,
-39800000000,
-18332000000,
-30181000000,
-29142000000,
-37493000000,
-18097000000,
-8190000000,
-6840000000,
-7504000000,
-17094000000,
-7684000000,
-7177000000
],
"discontinued_operations_fq_h": [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0
],
"current_port_debt_capital_leases_fq_h": [
11827000000,
12888000000,
9345000000,
13638000000,
10848000000,
11056000000,
12114000000,
10762000000,
10954000000,
9987000000,
7216000000,
10578000000,
9740000000,
11257000000,
14009000000,
9659000000,
11169000000,
9692000000,
8039000000,
8003000000,
7762000000,
8797000000,
7529000000,
10411000000,
10238000000,
10260000000,
13529000000,
10505000000,
9772000000,
8784000000,
5498000000,
8498000000
],
"other_oper_expense_total_fq_h": [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0
],
"cash_flow_deferred_taxes_fq_h": [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
-1861000000,
1668000000,
406000000,
682000000,
-4037000000,
-530000000,
-149000000,
-58000000,
-397000000,
833000000,
-302000000,
-349000000,
-302000000,
86000000,
-177000000,
53000000,
519000000,
1126000000,
-498000000
],
"accrued_payroll_fq_h": [
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null
],
"enterprise_value_ebitda_fq_h": [
26.6363640135512,
26.5443913224362,
21.5398164614386,
23.9829719348149,
28.506564049668,
26.0990448969635,
24.8301015965883,
20.7463476484429,
23.3182231185391,
21.7280925449054,
25.0625525252305,
21.5442655588587,
17.0238286167869,
19.1312054446496,
18.3329629196415,
22.4355470126534,
23.0126152602266,
20.6396717621004,
20.4685620223967,
21.0039148576306,
27.039862371179,
25.6519429004516,
20.4169307325116,
14.6264877545516,
16.9571984677948,
13.3698454543747,
12.2390371523915,
12.0549486923207,
9.77332962903104,
13.9418788184758,
12.0751935502989,
11.5755600060215
],
"interest_capitalized_fq_h": [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0
],
"gross_margin_fq_h": [
48.1586855505162,
47.1776003747585,
46.4907056871836,
47.0506192388762,
46.8825422365245,
46.2224797219004,
46.2571551814589,
46.5780745540092,
45.8749738657746,
45.1708418065208,
44.5163025538834,
44.2616727824877,
42.9622548099083,
42.2592239256318,
43.2563073325378,
43.7498715022924,
43.763766186615,
42.1952975047985,
43.4584141163767,
43.1589134352266,
40.0536116116655,
38.0323508489778,
37.108474291004,
38.4184276826572,
38.1031813523473,
37.7956081081081,
37.5355873541616,
37.3769812493525,
37.5937800007111,
37.6429859127965,
38.9110374904075,
38.4326407944597
],
"research_and_dev_fq_h": [
-10887000000,
-8866000000,
-8866000000,
-8550000000,
-8268000000,
-7765000000,
-8006000000,
-7903000000,
-7696000000,
-7307000000,
-7442000000,
-7457000000,
-7709000000,
-6761000000,
-6797000000,
-6387000000,
-6306000000,
-5772000000,
-5717000000,
-5262000000,
-5163000000,
-4978000000,
-4758000000,
-4565000000,
-4451000000,
-4110000000,
-4257000000,
-3948000000,
-3902000000,
-3750000000,
-3701000000,
-3378000000
],
"accounts_receivables_net_fq_h": [
39921000000,
39777000000,
27557000000,
26136000000,
29639000000,
33410000000,
22795000000,
21837000000,
23194000000,
29508000000,
19549000000,
17936000000,
23752000000,
28184000000,
21803000000,
20815000000,
30213000000,
26278000000,
17475000000,
18503000000,
27101000000,
16120000000,
17882000000,
15722000000,
20970000000,
22926000000,
14148000000,
15085000000,
18077000000,
23186000000,
14104000000,
14324000000
],
"retained_earnings_fq_h": [
-2177000000,
-14264000000,
-17607000000,
-15552000000,
-11221000000,
-19154000000,
-4726000000,
4339000000,
8242000000,
-214000000,
1408000000,
4336000000,
3240000000,
-3068000000,
5289000000,
12712000000,
14435000000,
5562000000,
9233000000,
15261000000,
14301000000,
14966000000,
24136000000,
33182000000,
43977000000,
45898000000,
53724000000,
64558000000,
80510000000,
70400000000,
79436000000,
91898000000
],
"sales_of_business_fq_h": [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0
],
"net_margin_fq_h": [
29.2836472912435,
26.8049889719517,
24.9202433110724,
25.986010759341,
29.2276749798874,
15.5230169598652,
25.0043718012987,
26.0443180941677,
28.3637884173113,
25.6497351896132,
24.3052923701358,
25.4755578050529,
25.6056131246052,
22.9860448605595,
23.4356730433106,
25.7098213367874,
27.939812013393,
24.653310940499,
26.6817188995509,
26.285345613918,
25.7792958769264,
19.5976247177806,
18.9396617015905,
19.2794830925326,
24.2428206973245,
21.4057807807808,
18.6896410561768,
19.9609793155841,
23.6627831178221,
22.5347393947129,
21.5602597937372,
22.5761139422449
],
"non_oper_interest_exp_fq_h": [
null,
null,
null,
null,
null,
null,
null,
null,
null,
-1002000000,
-998000000,
-930000000,
-1003000000,
-827000000,
-719000000,
-691000000,
-694000000,
-672000000,
-665000000,
-670000000,
-638000000,
-634000000,
-697000000,
-757000000,
-785000000,
-810000000,
-866000000,
-1010000000,
-890000000,
-868000000,
-846000000,
-792000000
],
"total_current_assets_fq_h": [
158104000000,
147957000000,
122491000000,
118674000000,
133240000000,
152987000000,
125435000000,
128416000000,
143692000000,
143566000000,
122659000000,
112913000000,
128777000000,
135405000000,
112292000000,
118180000000,
153154000000,
134836000000,
114423000000,
121465000000,
154106000000,
143713000000,
140065000000,
143753000000,
163231000000,
162819000000,
134973000000,
123346000000,
140828000000,
131339000000,
115761000000,
130053000000
],
"total_assets_fq_h": [
379297000000,
359241000000,
331495000000,
331233000000,
344085000000,
364980000000,
331612000000,
337411000000,
353514000000,
352583000000,
335038000000,
332160000000,
346747000000,
352755000000,
336309000000,
350662000000,
381191000000,
351002000000,
329840000000,
337158000000,
354054000000,
323888000000,
317344000000,
320400000000,
340618000000,
338516000000,
322239000000,
341998000000,
373719000000,
365725000000,
349197000000,
367502000000
],
"change_in_accounts_receivable_fq_h": [
2628000000,
-26269000000,
2803000000,
9674000000,
6763000000,
-22941000000,
-2094000000,
8767000000,
11124000000,
-21137000000,
-3661000000,
17786000000,
6595000000,
-18693000000,
3165000000,
19931000000,
-13746000000,
-17604000000,
-869000000,
25584000000,
-21139000000,
-5364000000,
-1373000000,
9290000000,
5917000000,
-19320000000,
-214000000,
10675000000,
12035000000,
-22624000000,
-3946000000,
28468000000
],
"prepaid_expenses_fq_h": [
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null
],
"capital_expenditures_unchanged_fq_h": [
2373000000,
3242000000,
3462000000,
3071000000,
2940000000,
2908000000,
2151000000,
1996000000,
2392000000,
2163000000,
2093000000,
2916000000,
3787000000,
3289000000,
2102000000,
2514000000,
2803000000,
3223000000,
2093000000,
2269000000,
3500000000,
1784000000,
1565000000,
1853000000,
2107000000,
2777000000,
2000000000,
2363000000,
3355000000,
3041000000,
3267000000,
4041000000
],
"price_book_fq_h": [
45.5802,
51.1843,
45.3804,
48.7346,
57.585,
60.4644,
48.0618,
35.449,
40.1694,
42.8399,
50.357,
41.7129,
36.2861,
47.3312,
39.2392,
42.0153,
40.0457,
38.2536,
34.2858,
29.2368,
33.5251,
29.1733,
20.9586,
13.6592,
14.1935,
10.7447,
9.29806,
8.26708,
6.26791,
10.0179,
7.79887,
6.53686
],
"change_in_accrued_expenses_fq_h": [
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null
],
"other_receivables_fq_h": [
30399000000,
33180000000,
19278000000,
23662000000,
29667000000,
32833000000,
20377000000,
19313000000,
26908000000,
31477000000,
19637000000,
17963000000,
30428000000,
32748000000,
20439000000,
24585000000,
35040000000,
25228000000,
16433000000,
14533000000,
31519000000,
21325000000,
14193000000,
14955000000,
18976000000,
22878000000,
12326000000,
11193000000,
18904000000,
25809000000,
12263000000,
8084000000
],
"cash_flow_deprecation_n_amortization_fq_h": [
3214000000,
3127000000,
2830000000,
2661000000,
3080000000,
2911000000,
2850000000,
2836000000,
2848000000,
2653000000,
3052000000,
2898000000,
2916000000,
2865000000,
2805000000,
2737000000,
2697000000,
2989000000,
2832000000,
2797000000,
2666000000,
2702000000,
2752000000,
2786000000,
2816000000,
3179000000,
2933000000,
3040000000,
3395000000,
2754000000,
2665000000,
2739000000
],
"deferred_income_non_current_fq_h": [
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
2797000000,
2878000000,
3087000000
],
"additional_paid_in_capital_fq_h": [
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null
],
"cash_per_share_fq_h": [
4.517582156701702,
3.6799272639639535,
3.704263910674337,
3.221145828082151,
3.5493023005617172,
4.275511939923582,
4.026602511373502,
4.342144427030602,
4.692924488662222,
3.927605216814272,
3.9608188160256645,
3.5257035221066384,
3.21859536499705,
2.9968114209386565,
2.965834333761545,
3.14027968491249,
3.8689917139906305,
3.765472482667218,
3.676377919207996,
4.1250725006567075,
4.489155113731185,
5.272151901301543,
5.342051094106074,
5.399243669987293,
6.017931111272741,
5.562594060268921,
5.154975246556468,
4.277763098944273,
4.526630900694117,
3.419306713271682,
3.6013615044343887,
4.3375812100361975
],
"earnings_fiscal_period_fq_h": [
"2026-Q1",
"2025-Q4",
"2025-Q3",
"2025-Q2",
"2025-Q1",
"2024-Q4",
"2024-Q3",
"2024-Q2"
],
"total_cash_dividends_paid_fq_h": [
-3921000000,
-3862000000,
-3945000000,
-3758000000,
-3856000000,
-3804000000,
-3895000000,
-3710000000,
-3825000000,
-3758000000,
-3849000000,
-3650000000,
-3768000000,
-3703000000,
-3811000000,
-3595000000,
-3732000000,
-3640000000,
-3767000000,
-3447000000,
-3613000000,
-3511000000,
-3656000000,
-3375000000,
-3539000000,
-3479000000,
-3629000000,
-3443000000,
-3568000000,
-3530000000,
-3653000000,
-3190000000
],
"paid_in_capital_fq_h": [
95221000000,
93568000000,
89806000000,
88711000000,
84768000000,
83276000000,
79850000000,
78815000000,
75236000000,
73812000000,
70667000000,
69568000000,
66399000000,
64849000000,
62115000000,
61181000000,
58424000000,
57365000000,
54989000000,
54203000000,
51744000000,
50779000000,
48696000000,
48032000000,
45972000000,
45174000000,
43371000000,
42801000000,
40970000000,
40201000000,
38624000000,
38044000000
],
"other_financing_cash_flow_items_total_fq_h": [
-2960000000,
-265000000,
-2524000000,
-326000000,
-2956000000,
-448000000,
-2347000000,
-370000000,
-2637000000,
-385000000,
-2438000000,
-484000000,
-2705000000,
-320000000,
-2740000000,
-374000000,
-2949000000,
-758000000,
-2729000000,
-315000000,
-2883000000,
-406000000,
-1737000000,
-222000000,
-1395000000,
-213000000,
-1195000000,
-196000000,
-1318000000,
-260000000,
-1077000000,
-152000000
],
"pretax_equity_in_earnings_fq_h": [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0
],
"proceeds_from_stock_options_fq_h": [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0
],
"total_non_oper_income_fq_h": [
150000000,
377000000,
-171000000,
-279000000,
-248000000,
19000000,
142000000,
158000000,
-50000000,
29000000,
-265000000,
64000000,
-393000000,
-237000000,
-10000000,
160000000,
-247000000,
-538000000,
82000000,
-212000000,
-304000000,
221000000,
678000000,
236000000,
617000000,
650000000,
422000000,
551000000,
872000000,
792000000,
304000000,
166000000
],
"common_equity_total_fq_h": [
88190000000,
73733000000,
65830000000,
66796000000,
66758000000,
56950000000,
66708000000,
74194000000,
74100000000,
62146000000,
60274000000,
62158000000,
56727000000,
50672000000,
58107000000,
67399000000,
71932000000,
63090000000,
64280000000,
69178000000,
66224000000,
65339000000,
72282000000,
78425000000,
89531000000,
90488000000,
96456000000,
105860000000,
117892000000,
107147000000,
114949000000,
126878000000
],
"fiscal_period_end_fq_h": [
1767139200,
1759190400,
1751241600,
1743379200,
1735603200,
1727654400,
1719705600,
1711843200,
1703980800,
1696032000,
1688083200,
1680220800,
1672444800,
1664496000,
1656547200,
1648684800,
1640908800,
1632960000,
1625011200,
1617148800,
1609372800,
1601424000,
1593475200,
1585612800,
1577750400,
1569801600,
1561852800,
1553990400,
1546214400,
1538265600,
1530316800,
1522454400
],
"issuance_of_debt_net_fq_h": [
-8074000000,
-3217000000,
2711000000,
976000000,
-8953000000,
4387000000,
-3253000000,
-3148000000,
-3984000000,
1993000000,
-283000000,
-1996000000,
-9615000000,
1657000000,
971000000,
-1751000000,
-1000000000,
3220000000,
0,
10423000000,
-978000000,
-703000000,
2168000000,
803000000,
231000000,
-293000000,
-5026000000,
-2506000000,
6000000,
-27000000,
-6011000000,
-501000000
],
"interest_expense_on_debt_fq_h": [
null,
null,
null,
null,
null,
null,
null,
null,
null,
-1002000000,
-998000000,
-930000000,
-1003000000,
-827000000,
-719000000,
-691000000,
-694000000,
-672000000,
-665000000,
-670000000,
-638000000,
-634000000,
-697000000,
-757000000,
-785000000,
-810000000,
-866000000,
-1010000000,
-890000000,
-868000000,
-846000000,
-792000000
],
"earnings_release_date_fq_h": [
1769722200,
1761856320,
1753993980,
1746131400,
1738272600,
1730406900,
1722544500,
1714681980
],
"net_income_fq_h": [
42097000000,
27466000000,
23434000000,
24780000000,
36330000000,
14736000000,
21448000000,
23636000000,
33916000000,
22956000000,
19881000000,
24160000000,
29998000000,
20721000000,
19442000000,
25010000000,
34630000000,
20551000000,
21744000000,
23630000000,
28755000000,
12673000000,
11253000000,
11249000000,
22236000000,
13686000000,
10044000000,
11561000000,
19965000000,
14125000000,
11519000000,
13822000000
],
"issuance_of_other_debt_fq_h": [
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null
],
"deferred_tax_liabilities_fq_h": [
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
17875000000,
null,
null,
null,
16919000000,
16100000000,
16200000000,
15900000000,
11520000000,
11098000000,
11548000000
],
"operating_expenses_fq_h": [
-18379000000,
-15914000000,
-15516000000,
-15278000000,
-15443000000,
-14288000000,
-14326000000,
-14371000000,
-14482000000,
-13458000000,
-13415000000,
-13658000000,
-14316000000,
-13201000000,
-12809000000,
-12580000000,
-12755000000,
-11388000000,
-11129000000,
-10576000000,
-10794000000,
-9914000000,
-9589000000,
-9517000000,
-9648000000,
-8688000000,
-8683000000,
-8406000000,
-8685000000,
-7966000000,
-7809000000,
-7528000000
],
"earnings_fq_h": [
{
"Actual": 1.4,
"Estimate": 0.986396,
"FiscalPeriod": "2021-Q2",
"IsReported": true,
"Type": 22
},
{
"Actual": 1.3,
"Estimate": 1.010662,
"FiscalPeriod": "2021-Q3",
"IsReported": true,
"Type": 22
},
{
"Actual": 1.24,
"Estimate": 1.238778,
"FiscalPeriod": "2021-Q4",
"IsReported": true,
"Type": 22
},
{
"Actual": 2.1,
"Estimate": 1.899115,
"FiscalPeriod": "2022-Q1",
"IsReported": true,
"Type": 22
},
{
"Actual": 1.52,
"Estimate": 1.424043,
"FiscalPeriod": "2022-Q2",
"IsReported": true,
"Type": 22
},
{
"Actual": 1.2,
"Estimate": 1.163501,
"FiscalPeriod": "2022-Q3",
"IsReported": true,
"Type": 22
},
{
"Actual": 1.29,
"Estimate": 1.267978,
"FiscalPeriod": "2022-Q4",
"IsReported": true,
"Type": 22
},
{
"Actual": 1.88,
"Estimate": 1.938753,
"FiscalPeriod": "2023-Q1",
"IsReported": true,
"Type": 22
},
{
"Actual": 1.52,
"Estimate": 1.429075,
"FiscalPeriod": "2023-Q2",
"IsReported": true,
"Type": 22
},
{
"Actual": 1.26,
"Estimate": 1.195265,
"FiscalPeriod": "2023-Q3",
"IsReported": true,
"Type": 22
},
{
"Actual": 1.46,
"Estimate": 1.393139,
"FiscalPeriod": "2023-Q4",
"IsReported": true,
"Type": 22
},
{
"Actual": 2.18,
"Estimate": 2.100711,
"FiscalPeriod": "2024-Q1",
"IsReported": true,
"Type": 22
},
{
"Actual": 1.53,
"Estimate": 1.505077,
"FiscalPeriod": "2024-Q2",
"IsReported": true,
"Type": 22
},
{
"Actual": 1.4,
"Estimate": 1.345527,
"FiscalPeriod": "2024-Q3",
"IsReported": true,
"Type": 22
},
{
"Actual": 1.64,
"Estimate": 1.600377,
"FiscalPeriod": "2024-Q4",
"IsReported": true,
"Type": 22
},
{
"Actual": 2.4,
"Estimate": 2.347687,
"FiscalPeriod": "2025-Q1",
"IsReported": true,
"Type": 22
},
{
"Actual": 1.65,
"Estimate": 1.627339,
"FiscalPeriod": "2025-Q2",
"IsReported": true,
"Type": 22
},
{
"Actual": 1.57,
"Estimate": 1.438019,
"FiscalPeriod": "2025-Q3",
"IsReported": true,
"Type": 22
},
{
"Actual": 1.85,
"Estimate": 1.777147,
"FiscalPeriod": "2025-Q4",
"IsReported": true,
"Type": 22
},
{
"Actual": 2.84,
"Estimate": 2.673324,
"FiscalPeriod": "2026-Q1",
"IsReported": true,
"Type": 22
},
{
"Actual": null,
"Estimate": 1.942915,
"FiscalPeriod": "2026-Q2",
"IsReported": false,
"Type": 12
},
{
"Actual": null,
"Estimate": 1.736107,
"FiscalPeriod": "2026-Q3",
"IsReported": false,
"Type": 10
},
{
"Actual": null,
"Estimate": 1.967875,
"FiscalPeriod": "2026-Q4",
"IsReported": false,
"Type": 10
},
{
"Actual": null,
"Estimate": 2.916093,
"FiscalPeriod": "2027-Q1",
"IsReported": false,
"Type": 10
},
{
"Actual": null,
"Estimate": 2.122489,
"FiscalPeriod": "2027-Q2",
"IsReported": false,
"Type": 10
},
{
"Actual": null,
"Estimate": 1.971468,
"FiscalPeriod": "2027-Q3",
"IsReported": false,
"Type": 10
},
{
"Actual": null,
"Estimate": 2.209045,
"FiscalPeriod": "2027-Q4",
"IsReported": false,
"Type": 10
},
{
"Actual": null,
"Estimate": 3.125843,
"FiscalPeriod": "2028-Q1",
"IsReported": false,
"Type": 10
},
{
"Actual": null,
"Estimate": 2.345549,
"FiscalPeriod": "2028-Q2",
"IsReported": false,
"Type": 10
},
{
"Actual": null,
"Estimate": 2.123508,
"FiscalPeriod": "2028-Q3",
"IsReported": false,
"Type": 10
},
{
"Actual": null,
"Estimate": 2.404806,
"FiscalPeriod": "2028-Q4",
"IsReported": false,
"Type": 10
}
],
"inventory_raw_materials_fq_h": [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0
],
"provision_f_risks_fq_h": [
0,
0,
0,
0,
0,
9254000000,
0,
0,
0,
15457000000,
0,
0,
0,
16657000000,
20699000000,
20711000000,
24689000000,
24689000000,
24923000000,
25162000000,
28170000000,
28170000000,
28188000000,
28188000000,
28198000000,
29545000000,
30521000000,
30986000000,
30948000000,
33589000000,
34029000000,
34913000000
],
"return_on_equity_fq_h": [
152.02132328265,
171.422449744802,
149.813638352774,
138.01546208951,
136.520467421091,
157.412507556929,
160.583389771779,
147.249765313307,
154.269378645081,
171.949511602758,
160.093258208665,
145.605409202127,
147.943012148392,
175.459292206536,
162.81631219002,
149.271107141027,
145.567329685283,
147.443334449384,
127.124675971354,
103.400337391516,
82.0904625854708,
73.6855615522342,
69.2481835745357,
62.0940391241827,
55.4682942585923,
55.9172211399803,
52.6903337196377,
49.1282042468355,
46.0542986775982,
49.3635828420276,
45.372593724482,
40.8629675045984
],
"inventory_progress_payments_fq_h": [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0
],
"cash_f_financing_activities_fq_h": [
-39656000000,
-27476000000,
-24833000000,
-29006000000,
-39371000000,
-24948000000,
-36017000000,
-30433000000,
-30585000000,
-23153000000,
-24048000000,
-25724000000,
-35563000000,
-26794000000,
-27445000000,
-28351000000,
-28159000000,
-20382000000,
-29396000000,
-11326000000,
-32249000000,
-21357000000,
-19116000000,
-20940000000,
-25407000000,
-21039000000,
-26804000000,
-29457000000,
-13676000000,
-22580000000,
-31523000000,
-26272000000
],
"goodwill_fq_h": [
0,
0,
0,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null
],
"return_on_invested_capital_fq_h": [
74.6394836321925,
70.6326735233099,
65.9308549494627,
62.4907269731877,
60.1121593488006,
58.1864230024333,
65.5141060694171,
61.7352962880968,
61.9969159125397,
58.950445645799,
60.9091376561938,
57.177930474265,
56.8329277577893,
58.2196295756162,
61.7230260284538,
58.4922333606854,
58.4509948672638,
53.3620395706464,
50.4000557407128,
43.1890792091256,
35.9850723585336,
32.3731331921744,
32.8398142839477,
30.7920413753761,
28.7139684045022,
28.8409794951158,
28.3097270687144,
26.9478507003283,
26.1234016553773,
27.5519743784364,
25.8399598495278,
23.863776230662
],
"treasury_stock_common_fq_h": [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0
],
"after_tax_other_income_fq_h": [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0
],
"long_term_debt_to_equity_fq_h": [
0.8695430320898061,
1.219684537452701,
1.2521646665653958,
1.1762081561770166,
1.2576170646214686,
1.6953116769095697,
1.2921388738981832,
1.2377146399978436,
1.283238866396761,
1.7144788079683326,
1.627086305869861,
1.5611988802728531,
1.7562536358347878,
2.1650418377012945,
1.629752009224362,
1.5330049407261235,
1.4823583384307402,
1.8922333174829609,
1.6451773490976975,
1.570470380756888,
1.4991694853829427,
1.6383629991276267,
1.4130488918402921,
1.2385846350015939,
1.1200366353553517,
1.0145765184333835,
0.8805673052998259,
0.8520782165123748,
0.7887642927425101,
0.8748261733879623,
0.8449660284126004,
0.7988934251800943
],
"sell_gen_admin_exp_other_fq_h": [
-7492000000,
-7048000000,
-6650000000,
-6728000000,
-7175000000,
-6523000000,
-6320000000,
-6468000000,
-6786000000,
-6151000000,
-5973000000,
-6201000000,
-6607000000,
-6440000000,
-6012000000,
-6193000000,
-6449000000,
-5616000000,
-5412000000,
-5314000000,
-5631000000,
-4936000000,
-4831000000,
-4952000000,
-5197000000,
-4578000000,
-4426000000,
-4458000000,
-4783000000,
-4216000000,
-4108000000,
-4150000000
],
"deferred_tax_assests_fq_h": [
null,
20777000000,
null,
null,
null,
19499000000,
null,
null,
null,
17852000000,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null
],
"net_income_starting_line_fq_h": [
42097000000,
27466000000,
23434000000,
24780000000,
36330000000,
14736000000,
21448000000,
23636000000,
33916000000,
22956000000,
19881000000,
24160000000,
29998000000,
20721000000,
19442000000,
25010000000,
34630000000,
20551000000,
21744000000,
23630000000,
28755000000,
12673000000,
11253000000,
11249000000,
22236000000,
13686000000,
10044000000,
11561000000,
19965000000,
14125000000,
11519000000,
13822000000
],
"common_stock_par_fq_h": [
95221000000,
93568000000,
89806000000,
88711000000,
84768000000,
83276000000,
79850000000,
78815000000,
75236000000,
73812000000,
70667000000,
69568000000,
66399000000,
64849000000,
62115000000,
61181000000,
58424000000,
57365000000,
54989000000,
54203000000,
51744000000,
50779000000,
48696000000,
48032000000,
45972000000,
45174000000,
43371000000,
42801000000,
40970000000,
40201000000,
38624000000,
38044000000
],
"accum_deprec_total_fq_h": [
-77161000000,
-76014000000,
-75803000000,
-74303000000,
-74546000000,
-73448000000,
-72627000000,
-71697000000,
-72510000000,
-70884000000,
-70787000000,
-69668000000,
-68044000000,
-72340000000,
-71516000000,
-70020000000,
-68454000000,
-70283000000,
-70242000000,
-69465000000,
-67560000000,
-66760000000,
-65230000000,
-62854000000,
-60959000000,
-58579000000,
-56348000000,
-54290000000,
-51929000000,
-49099000000,
-47251000000,
-45425000000
],
"total_revenue_fq_h": [
143756000000,
102466000000,
94036000000,
95359000000,
124300000000,
94930000000,
85777000000,
90753000000,
119575000000,
89498000000,
81797000000,
94836000000,
117154000000,
90146000000,
82959000000,
97278000000,
123945000000,
83360000000,
81494000000,
89898000000,
111543000000,
64666000000,
59415000000,
58347000000,
91722000000,
63936000000,
53741000000,
57918000000,
84373000000,
62681000000,
53427000000,
61224000000
]
},
"history_annual": {
"proceeds_from_stock_options_fy_h": [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0
],
"pretax_equity_in_earnings_fy_h": [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0
],
"inventory_work_in_progress_fy_h": [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0
],
"earnings_per_share_basic_fy_h": [
7.4931,
6.109,
6.1607,
6.1546,
5.669,
3.3086,
2.9914,
3.0025,
2.3175,
2.0875,
2.32,
1.6225,
1.4296,
1.5943,
1.0018,
0.5504,
0.3293,
0.1957,
0.1443,
0.0843
],
"other_proceeds_from_stock_sales_fy_h": [
0,
0,
0,
0,
1105000000,
880000000,
781000000,
669000000,
555000000,
495000000,
543000000,
730000000,
530000000,
665000000,
831000000,
912000000,
475000000,
483000000,
365000000,
318000000
],
"total_inventory_fy_h": [
5718000000,
7286000000,
6331000000,
4946000000,
6580000000,
4061000000,
4106000000,
3956000000,
4855000000,
2132000000,
2349000000,
2111000000,
1764000000,
791000000,
776000000,
1051000000,
455000000,
509000000,
346000000,
270000000
],
"debt_to_equity_fy_h": [
1.5241072518410999,
2.09058823529412,
1.99417500724101,
2.6144616356172996,
2.16392455222698,
1.8714397220649202,
1.19404782954646,
1.06846668595481,
0.862980894760793,
0.678617377133545,
0.540086297180679,
0.316413709019516,
0.137273470444925,
0,
0,
0,
0,
0,
0,
0
],
"issuance_of_debt_net_fy_h": [
-8483000000,
-5998000000,
-9901000000,
-123000000,
12665000000,
2499000000,
-7819000000,
432000000,
29014000000,
22057000000,
29305000000,
18266000000,
16896000000,
0,
0,
0,
0,
0,
0,
0
],
"income_tax_current_domestic_fy_h": [
-13167000000,
-7297000000,
-11015000000,
-9409000000,
-9877000000,
-6761000000,
-6859000000,
-41976000000,
-8101000000,
-8642000000,
-12995000000,
-9479000000,
-10418000000,
-8422000000,
-4646000000,
-2805000000,
-2446000000,
-2152000000,
-1331000000,
-675000000
],
"return_on_invested_capital_fy_h": [
70.6326735233099,
58.1864230024333,
58.950445645799,
58.2196295756162,
53.3620395706464,
32.3731331921744,
28.8409794951158,
27.5519743784364,
22.2339227002046,
24.2697094774419,
34.0792463427711,
28.1166938867006,
28.6310630452344,
42.8415244450148,
41.6732311946369,
37.0601536569562,
31.2701727738751,
27.1863224790507,
28.5201501060532,
22.7965616045845
],
"ppe_gross_other_fy_h": [
15091000000,
14233000000,
12839000000,
11271000000,
11023000000,
10283000000,
9075000000,
8205000000,
7279000000,
6517000000,
5263000000,
4513000000,
3968000000,
3705000000,
2783000000,
2174000000,
1780000000,
1446000000,
1125000000,
854000000
],
"purchase_of_business_fy_h": [
0,
0,
0,
-306000000,
-33000000,
-1524000000,
-624000000,
-721000000,
-329000000,
-297000000,
-343000000,
-3765000000,
-496000000,
-350000000,
-244000000,
-638000000,
0,
-220000000,
0,
0
],
"non_cash_items_fy_h": [
12774000000,
9422000000,
8606000000,
9149000000,
7759000000,
6732000000,
5416000000,
4896000000,
4674000000,
4210000000,
3586000000,
2863000000,
2253000000,
1740000000,
1168000000,
903000000,
736000000,
538000000,
254000000,
174000000
],
"long_term_debt_to_equity_fy_h": [
1.219684537452701,
1.6953116769095697,
1.7144788079683326,
2.1650418377012945,
1.8922333174829609,
1.6383629991276267,
1.0145765184333835,
0.8748261733879623,
0.7251710221041874,
0.58812934213912,
0.44793263792886767,
0.25986355527266536,
0.1372734704449247,
0,
0,
0,
0,
0,
0,
0
],
"inventory_progress_payments_fy_h": [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0
],
"total_oper_expense_fy_h": [
-283111000000,
-267819000000,
-268984000000,
-274891000000,
-256868000000,
-208811000000,
-196726000000,
-194767000000,
-168544000000,
-155745000000,
-164653000000,
-130587000000,
-122543000000,
-101337000000,
-74104000000,
-46797000000,
-31233000000,
-26204000000,
-19597000000,
-16862000000
],
"price_cash_flow_fy_h": [
34.38,
29.68,
24.49,
20.11,
23.82,
24.4,
14.66,
14.58,
12.73,
9.42,
8.18,
10.33,
8.38,
12.26,
10.09,
14.54,
16.28,
12.06,
24.95,
30.43
],
"ppe_gross_land_fy_h": [
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null
],
"purchase_sale_investments_fy_h": [
29390000000,
13690000000,
16001000000,
-9560000000,
-2819000000,
5335000000,
58093000000,
30845000000,
-33147000000,
-30634000000,
-44417000000,
-9017000000,
-24042000000,
-38427000000,
-32464000000,
-11093000000,
-16147000000,
-6760000000,
-2312000000,
1032000000
],
"market_cap_basic_fy_h": [
3773976999600,
3443452682940,
2662325943810,
2398369422750,
2413423399120,
1906150949640,
972268901520,
1073390539640.0001,
790050098120,
601439269860,
639938756630,
591015720750,
434095048773.61,
626550258919.2001,
375706691100,
267756365016,
164097529035,
113918922777.52,
133876353502.70901,
65838112484.64001
],
"inventory_raw_materials_fy_h": [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
471000000,
683000000,
0,
0,
0,
0,
0,
0,
0
],
"changes_in_working_capital_fy_h": [
-25000000000,
3651000000,
-6577000000,
1200000000,
-4911000000,
5690000000,
-3488000000,
34694000000,
-5550000000,
484000000,
11647000000,
7047000000,
6478000000,
-299000000,
5757000000,
1212000000,
-586000000,
4119000000,
1325000000,
-221000000
],
"cost_of_goods_excl_dep_amort_fy_h": [
-209262000000,
-198907000000,
-202618000000,
-212442000000,
-201697000000,
-159087000000,
-149717000000,
-152923000000,
-132302000000,
-121706000000,
-131757000000,
-104553000000,
-100478000000,
-84711000000,
-62284000000,
-38614000000,
-25092000000,
-20925000000,
-15568000000,
-13525000000
],
"revenues_fy_h": [
{
"Actual": 229234000000,
"Estimate": 227461939394,
"FiscalPeriod": "2017",
"IsReported": true,
"Type": 22
},
{
"Actual": 265595000000,
"Estimate": 264521756757,
"FiscalPeriod": "2018",
"IsReported": true,
"Type": 22
},
{
"Actual": 260174000000,
"Estimate": 259058735507,
"FiscalPeriod": "2019",
"IsReported": true,
"Type": 22
},
{
"Actual": 274515000000,
"Estimate": 273305434710,
"FiscalPeriod": "2020",
"IsReported": true,
"Type": 22
},
{
"Actual": 365817000000,
"Estimate": 366419852406,
"FiscalPeriod": "2021",
"IsReported": true,
"Type": 22
},
{
"Actual": 394328000000,
"Estimate": 392776831583,
"FiscalPeriod": "2022",
"IsReported": true,
"Type": 22
},
{
"Actual": 383285000000,
"Estimate": 383094279806,
"FiscalPeriod": "2023",
"IsReported": true,
"Type": 22
},
{
"Actual": 391035000000,
"Estimate": 390480701773,
"FiscalPeriod": "2024",
"IsReported": true,
"Type": 22
},
{
"Actual": 416161000000,
"Estimate": 415406882375,
"FiscalPeriod": "2025",
"IsReported": true,
"Type": 22
},
{
"Actual": null,
"Estimate": 465619085380,
"FiscalPeriod": "2026",
"IsReported": false,
"Type": 10
},
{
"Actual": null,
"Estimate": 498772844730,
"FiscalPeriod": "2027",
"IsReported": false,
"Type": 10
},
{
"Actual": null,
"Estimate": 529987878048.00006,
"FiscalPeriod": "2028",
"IsReported": false,
"Type": 10
},
{
"Actual": null,
"Estimate": 586895134433,
"FiscalPeriod": "2029",
"IsReported": false,
"Type": 10
},
{
"Actual": null,
"Estimate": 627849333333,
"FiscalPeriod": "2030",
"IsReported": false,
"Type": 10
}
],
"price_sales_fy_h": [
9.21061775519571,
8.97569261076374,
7.06332408487157,
6.22804607375079,
6.77331534477621,
7.17879944526719,
3.91307831217688,
4.24637467376951,
3.54107577061057,
2.89384421830217,
2.87320272129815,
3.36632193823536,
2.6322369725407,
3.99831807456643,
3.48704003296562,
4.1543610715109,
3.88260220759101,
3.56200330552049,
5.68523160538032,
3.49738293968418
],
"equity_in_earnings_fy_h": [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0
],
"other_liabilities_total_fy_h": [
29946000000,
25836000000,
23124000000,
21737000000,
18361000000,
63000000,
4039000000,
71000000,
504000000,
1355000000,
1165000000,
4567000000,
429000000,
316000000,
280000000,
41000000,
24000000,
21000000,
67000000,
14000000
],
"earnings_per_share_diluted_fy_h": [
7.465,
6.0836,
6.134,
6.1132,
5.614,
3.2754,
2.9714,
2.9775,
2.3025,
2.0775,
2.305,
1.6125,
1.4196,
1.5768,
0.9886,
0.5411,
0.3243,
0.1914,
0.1404,
0.0811
],
"ppe_total_gross_fy_h": [
137053000000,
129362000000,
125260000000,
124874000000,
119810000000,
112096000000,
95957000000,
90403000000,
75076000000,
61245000000,
49257000000,
39015000000,
28519000000,
21887000000,
11768000000,
7234000000,
4667000000,
3747000000,
2841000000,
2075000000
],
"accum_deprec_other_intang_fy_h": [
null,
null,
null,
null,
null,
null,
null,
null,
5309000000,
5806000000,
4332000000,
3085000000,
2002000000,
1042000000,
437000000,
245000000,
176000000,
123000000,
77000000,
42000000
],
"issuance_of_other_debt_fy_h": [
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null
],
"funds_f_operations_fy_h": [
136482000000,
114603000000,
117120000000,
120951000000,
108949000000,
74984000000,
72879000000,
42740000000,
69148000000,
65340000000,
69619000000,
52666000000,
47188000000,
51155000000,
31772000000,
17383000000,
10745000000,
5477000000,
4145000000,
2441000000
],
"total_liabilities_shrhldrs_equity_fy_h": [
359241000000,
364980000000,
352583000000,
352755000000,
351002000000,
323888000000,
338516000000,
365725000000,
375319000000,
321686000000,
290479000000,
231839000000,
207000000000,
176064000000,
116371000000,
75183000000,
47501000000,
39572000000,
25347000000,
17205000000
],
"total_shares_outstanding_fy_h": [
14773260000,
15116786000,
15550061000,
15943425000,
16426786000,
16976762999.999998,
17772944000,
19019944000,
20504804000,
21344664000,
22315012000,
23464644000,
25177989177.963997,
26297850297.824,
26019782019.756,
25647187047.1614,
25194579194.554,
24873152117.1272,
24425235641.211197,
23947375851.3519
],
"total_cash_dividends_paid_fy_h": [
-15421000000,
-15234000000,
-15025000000,
-14841000000,
-14467000000,
-14081000000,
-14119000000,
-13712000000,
-12769000000,
-12150000000,
-11561000000,
-11126000000,
-10564000000,
-2488000000,
0,
0,
0,
0,
0,
0
],
"accum_deprec_trans_equip_fy_h": [
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null
],
"price_book_fy_h": [
51.1843,
60.4644,
42.8399,
47.3312,
38.2536,
29.1733,
10.7447,
10.0179,
5.89383,
4.68962,
5.36164,
5.29836,
3.51355,
5.30032,
4.90383,
5.60266,
5.18638,
5.41697,
9.2125,
6.59443
],
"other_financing_cash_flow_sources_fy_h": [
0,
0,
0,
0,
0,
0,
0,
0,
627000000,
407000000,
749000000,
739000000,
701000000,
1351000000,
1133000000,
751000000,
270000000,
757000000,
377000000,
361000000
],
"ppe_gross_machinery_fy_h": [
83420000000,
80205000000,
78314000000,
81060000000,
78659000000,
75291000000,
69797000000,
65982000000,
54210000000,
44543000000,
37038000000,
29639000000,
21242000000,
15743000000,
6926000000,
3589000000,
1932000000,
1491000000,
954000000,
595000000
],
"restructuring_charge_fy_h": [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0
],
"short_term_invest_fy_h": [
21158000000,
37194000000,
32715000000,
26829000000,
35726000000,
70999000000,
72456000000,
46643000000,
59665000000,
54888000000,
28414000000,
13299000000,
30048000000,
24560000000,
21138000000,
21177000000,
20717000000,
24122000000,
15130000000,
9910000000
],
"amortization_of_deferred_charges_fy_h": [
0,
0,
null,
null,
null,
null,
0,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null
],
"ppe_total_net_fy_h": [
61039000000,
55914000000,
54376000000,
52534000000,
49527000000,
45336000000,
37378000000,
41304000000,
33783000000,
27010000000,
22471000000,
20624000000,
16597000000,
15452000000,
7777000000,
4768000000,
2954000000,
2455000000,
1832000000,
1281000000
],
"accum_deprec_total_fy_h": [
-76014000000,
-73448000000,
-70884000000,
-72340000000,
-70283000000,
-66760000000,
-58579000000,
-49099000000,
-41293000000,
-34235000000,
-26786000000,
-18391000000,
-11922000000,
-6435000000,
-3991000000,
-2466000000,
-1713000000,
-1292000000,
-1009000000,
-794000000
],
"change_in_other_assets_fy_h": [
-20273000000,
3821000000,
-2653000000,
-389000000,
-567000000,
1409000000,
-4452000000,
38023000000,
-6098000000,
-2568000000,
9609000000,
7637000000,
7060000000,
2214000000,
4758000000,
361000000,
-379000000,
4471000000,
292000000,
-1370000000
],
"sales_of_investments_fy_h": [
53797000000,
62346000000,
45514000000,
67363000000,
106870000000,
120483000000,
98724000000,
104072000000,
126339000000,
111794000000,
121985000000,
208111000000,
124447000000,
112805000000,
69853000000,
46718000000,
30678000000,
16243000000,
9424000000,
8312000000
],
"total_debt_per_share_fy_h": [
7.489454802052983,
7.727042181398804,
7.837447060236406,
8.114753691683095,
8.095028502656906,
6.976067270744184,
5.810336738932306,
5.724025216250285,
5.506796666674283,
3.9557978946893804,
2.7818588040294356,
1.4411621217760966,
0.6501431635084459,
0,
0,
0,
0,
0,
0,
0
],
"net_income_fy_h": [
112010000000,
93736000000,
96995000000,
99803000000,
94680000000,
57411000000,
55256000000,
59531000000,
48351000000,
45687000000,
53394000000,
39510000000,
37037000000,
41733000000,
25922000000,
14013000000,
8235000000,
4834000000,
3496000000,
1989000000
],
"long_term_note_receivable_fy_h": [
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null
],
"preferred_dividends_fy_h": [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0
],
"cost_of_goods_fy_h": [
-220960000000,
-210352000000,
-214137000000,
-223546000000,
-212981000000,
-170143000000,
-162264000000,
-163826000000,
-141702000000,
-131506000000,
-142257000000,
-112553000000,
-107238000000,
-87916000000,
-64076000000,
-39498000000,
-25751000000,
-21334000000,
-15852000000,
-13717000000
],
"other_oper_expense_total_fy_h": [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0
],
"non_oper_income_fy_h": [
-321000000,
269000000,
3368000000,
2597000000,
2903000000,
4160000000,
6071000000,
5101000000,
6384000000,
3799000000,
6618000000,
1210000000,
2268000000,
1784000000,
81000000,
567000000,
923000000,
620000000,
599000000,
365000000
],
"accum_deprec_leases_fy_h": [
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null
],
"other_financing_cash_flow_uses_fy_h": [
-6071000000,
-5802000000,
-6012000000,
-6383000000,
-6685000000,
-3760000000,
-2922000000,
-2527000000,
-1874000000,
-1570000000,
-1499000000,
-1158000000,
-1082000000,
-1226000000,
-520000000,
-406000000,
-82000000,
-124000000,
0,
0
],
"deferred_charges_fy_h": [
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
3000000000,
1600000000,
799000000,
6015000000,
3228000000,
625000000,
1042000000
],
"doubtful_accounts_fy_h": [
null,
null,
null,
null,
null,
null,
null,
null,
-58000000,
-53000000,
-82000000,
-86000000,
-99000000,
-98000000,
-53000000,
-55000000,
-52000000,
-47000000,
-47000000,
-52000000
],
"accounts_receivables_net_fy_h": [
39777000000,
33410000000,
29508000000,
28184000000,
26278000000,
16120000000,
22926000000,
23186000000,
17874000000,
15754000000,
16849000000,
17460000000,
13102000000,
10930000000,
5369000000,
5510000000,
3361000000,
2422000000,
1637000000,
1252000000
],
"accum_deprec_leased_prop_fy_h": [
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null
],
"after_tax_other_income_fy_h": [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0
],
"total_revenue_fy_h": [
416161000000,
391035000000,
383285000000,
394328000000,
365817000000,
274150000000,
259968000000,
265809000000,
228572000000,
214226000000,
231283000000,
183244000000,
170866000000,
155971000000,
108598000000,
65067000000,
42603000000,
32479000000,
24006000000,
19315000000
],
"preferred_dividends_cash_flow_fy_h": [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0
],
"dilution_adjustment_fy_h": [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0
],
"ppe_gross_comp_soft_fy_h": [
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null
],
"earnings_per_share_fy_h": [
7.46,
6.75,
6.13,
6.11,
5.61,
3.28,
2.9725,
2.9775
],
"income_tax_deferred_domestic_fy_h": [
1943000000,
3378000000,
3693000000,
2181000000,
7514000000,
3598000000,
3006000000,
33771000000,
-5982000000,
-4905000000,
-3188000000,
-3005000000,
-1567000000,
-4895000000,
-3035000000,
-1561000000,
-1075000000,
237000000,
-94000000,
-70000000
],
"common_stock_par_fy_h": [
93568000000,
83276000000,
73812000000,
64849000000,
57365000000,
50779000000,
45174000000,
40201000000,
35867000000,
31251000000,
27416000000,
23313000000,
19764000000,
16422000000,
13331000000,
10668000000,
8210000000,
7177000000,
5368000000,
4355000000
],
"operating_margin_fy_h": [
31.9707997625919,
31.5102228700756,
29.8214122650247,
30.2887443955286,
29.7823775275616,
23.8333029363487,
24.3268402264894,
26.726709780331,
26.2621843445391,
27.2987405823756,
28.8088618705223,
28.7360022701971,
28.2812262240586,
35.0283065441653,
31.7630158934787,
28.0787495965697,
26.688261390043,
19.3201761137966,
18.3662417728901,
12.6999741133834
],
"net_income_starting_line_fy_h": [
112010000000,
93736000000,
96995000000,
99803000000,
94680000000,
57411000000,
55256000000,
59531000000,
48351000000,
45687000000,
53394000000,
39510000000,
37037000000,
41733000000,
25922000000,
14013000000,
8235000000,
4834000000,
3496000000,
1989000000
],
"diluted_shares_outstanding_fy_h": [
15004697000,
15408095000,
15812547000,
16325819000,
16864919000.000002,
17528214000,
18595652000,
20000436000,
21006768000,
22001124000,
23172276000,
24490652000,
26086562086.536,
26174930174.904,
26226086226.06,
25891961891.936,
25396165396.14,
25259917259.892002,
24900200900.176003,
24570752570.728
],
"supplying_of_long_term_debt_fy_h": [
4481000000,
0,
5228000000,
5465000000,
20393000000,
16091000000,
6963000000,
6969000000,
28662000000,
24954000000,
27114000000,
11960000000,
16896000000,
0,
0,
0,
0,
0,
0,
0
],
"dividends_yield_fy_h": [
0.399279730681907,
0.430220817419553,
0.549033350855674,
0.598284916572492,
0.5785461475633,
0.708051300320627,
1.37098985467508,
1.20492602108621,
1.55722813392162,
1.93416733209121,
1.72609188388109,
1.79794421836228,
2.3614566770289,
0.397227280135403,
0,
0,
0,
0,
0,
0
],
"accum_deprec_other_fy_h": [
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null
],
"other_short_term_debt_fy_h": [
9558000000,
11455000000,
7395000000,
11516000000,
7449000000,
6432000000,
5980000000,
11964000000,
11977000000,
8105000000,
8499000000,
6308000000,
0,
0,
0,
0,
0,
0,
0,
0
],
"total_liabilities_fy_h": [
285508000000,
308030000000,
290437000000,
302083000000,
287912000000,
258549000000,
248028000000,
258578000000,
241272000000,
193437000000,
171124000000,
120292000000,
83451000000,
57854000000,
39756000000,
27392000000,
15861000000,
18542000000,
10815000000,
7221000000
],
"return_on_assets_fy_h": [
30.93254683308,
26.1262077336763,
27.503126160791,
28.3629150402767,
28.0579057327861,
17.3341344557098,
15.6923553158649,
16.0667922552507,
13.8739320377903,
14.9263678910098,
20.4450162544657,
18.0066037886332,
19.3372386859637,
28.5417272214338,
27.0649529636552,
21.7198567819334,
18.9151631389753,
14.8924043808438,
16.4316600864824,
13.8336347197107
],
"income_tax_current_fy_h": [
-22058000000,
-32780000000,
-19765000000,
-18405000000,
-19301000000,
-9895000000,
-10821000000,
-45962000000,
-9772000000,
-10747000000,
-17739000000,
-11626000000,
-11977000000,
-9625000000,
-5415000000,
-3087000000,
-2791000000,
-2429000000,
-1434000000,
-776000000
],
"working_capital_per_share_fy_h": [
-1.19635070390692,
-1.54827884710414,
-0.112025284016571,
-1.16518251254044,
0.569496674516853,
2.25726188202074,
3.21280481162828,
0.760938097399235,
1.35729168637749,
1.30538480249677,
0.392919349539225,
0.216623785129661,
1.17674210559796,
0.726713392295085,
0.654040836586516,
0.817087658052519,
0.795766416465243,
0.750487912110915,
0.518193567747801,
0.335652643107709
],
"other_intangibles_net_fy_h": [
null,
null,
null,
null,
null,
null,
null,
null,
2298000000,
3206000000,
3893000000,
4142000000,
4179000000,
4224000000,
3536000000,
342000000,
247000000,
352000000,
382000000,
160000000
],
"dep_amort_exp_income_s_fy_h": [
-11698000000,
-11445000000,
-11519000000,
-11104000000,
-11284000000,
-11056000000,
-12547000000,
-10903000000,
-9400000000,
-9800000000,
-10500000000,
-8000000000,
-6760000000,
-3205000000,
-1792000000,
-884000000,
-659000000,
-409000000,
-284000000,
-192000000
],
"goodwill_fy_h": [
0,
null,
null,
null,
null,
null,
null,
null,
5717000000,
5414000000,
5116000000,
4616000000,
1577000000,
1135000000,
896000000,
741000000,
206000000,
207000000,
38000000,
38000000
],
"retained_earnings_fy_h": [
-14264000000,
-19154000000,
-214000000,
-3068000000,
5562000000,
14966000000,
45898000000,
70400000000,
98330000000,
96364000000,
92284000000,
87152000000,
104256000000,
101289000000,
62841000000,
37169000000,
23353000000,
13845000000,
9101000000,
5607000000
],
"treasury_stock_common_fy_h": [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0
],
"depreciation_fy_h": [
-8000000000,
-8200000000,
-8500000000,
-8700000000,
-9500000000,
-9700000000,
-11300000000,
-9300000000,
-8200000000,
-8300000000,
-9200000000,
-6900000000,
-5800000000,
-2600000000,
-1600000000,
-815000000,
-606000000,
-363000000,
-249000000,
-180000000
],
"cash_f_financing_activities_fy_h": [
-120686000000,
-121983000000,
-108488000000,
-110749000000,
-93353000000,
-86820000000,
-90976000000,
-87876000000,
-17347000000,
-20483000000,
-17716000000,
-37549000000,
-16379000000,
-1698000000,
1444000000,
1257000000,
663000000,
1116000000,
739000000,
324000000
],
"cash_f_investing_activities_fy_h": [
15195000000,
2935000000,
3705000000,
-22354000000,
-14545000000,
-4289000000,
45896000000,
16066000000,
-46446000000,
-45977000000,
-56274000000,
-22579000000,
-33774000000,
-48227000000,
-40419000000,
-13854000000,
-17434000000,
-8189000000,
-3249000000,
357000000
],
"earnings_fy_h": [
{
"Actual": 2.3025,
"Estimate": 2.248051,
"FiscalPeriod": "2017",
"IsReported": true,
"Type": 22
},
{
"Actual": 2.9775,
"Estimate": 2.936966,
"FiscalPeriod": "2018",
"IsReported": true,
"Type": 22
},
{
"Actual": 2.9725,
"Estimate": 2.919387,
"FiscalPeriod": "2019",
"IsReported": true,
"Type": 22
},
{
"Actual": 3.28,
"Estimate": 3.246186,
"FiscalPeriod": "2020",
"IsReported": true,
"Type": 22
},
{
"Actual": 5.61,
"Estimate": 5.60786,
"FiscalPeriod": "2021",
"IsReported": true,
"Type": 22
},
{
"Actual": 6.11,
"Estimate": 6.098353,
"FiscalPeriod": "2022",
"IsReported": true,
"Type": 22
},
{
"Actual": 6.13,
"Estimate": 6.057597,
"FiscalPeriod": "2023",
"IsReported": true,
"Type": 22
},
{
"Actual": 6.75,
"Estimate": 6.708209,
"FiscalPeriod": "2024",
"IsReported": true,
"Type": 22
},
{
"Actual": 7.46,
"Estimate": 7.381826,
"FiscalPeriod": "2025",
"IsReported": true,
"Type": 22
},
{
"Actual": null,
"Estimate": 8.500259,
"FiscalPeriod": "2026",
"IsReported": false,
"Type": 10
},
{
"Actual": null,
"Estimate": 9.341658,
"FiscalPeriod": "2027",
"IsReported": false,
"Type": 10
},
{
"Actual": null,
"Estimate": 10.322817,
"FiscalPeriod": "2028",
"IsReported": false,
"Type": 10
},
{
"Actual": null,
"Estimate": 11.547157,
"FiscalPeriod": "2029",
"IsReported": false,
"Type": 10
},
{
"Actual": null,
"Estimate": 13.073333,
"FiscalPeriod": "2030",
"IsReported": false,
"Type": 10
}
],
"long_term_investments_fy_h": [
77723000000,
91479000000,
100544000000,
120805000000,
127877000000,
102624000000,
106698000000,
170799000000,
194714000000,
170430000000,
164065000000,
130162000000,
106215000000,
92122000000,
55618000000,
25391000000,
10528000000,
0,
0,
0
],
"notes_payable_short_term_debt_fy_h": [
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null
],
"earnings_per_share_forecast_fy_h": [
7.381826,
6.708209,
6.057597,
6.098353,
5.60786,
3.246186,
2.919387,
2.936966
],
"float_shares_outstanding_fy_h": [
14760953874.42,
15102697155.448,
15536330296.137,
15928757049,
16410654896.148,
16959209027.058,
17746408994.607998,
18993297058.455997,
20478209269.211998,
21133415860.392002,
22079655568.436,
23229715984.272,
25152257273.0241,
26267265897.927597,
25835405844.364,
25444907682.9204,
24987807283.104298,
24684340019.4061,
24242119649.6091,
23762238688.6451
],
"unusual_expense_inc_fy_h": [
0,
0,
0,
0,
0,
465000000,
null,
null,
null,
548000000,
null,
null,
-300000000,
-655000000,
-370000000,
-297000000,
-227000000,
null,
null,
null
],
"revenue_fy_h": [
416161000000,
391035000000,
383285000000,
394328000000,
365817000000,
274515000000,
260174000000,
265595000000
],
"basic_shares_outstanding_fy_h": [
14948500000,
15343783000,
15744231000,
16215963000,
16701272000,
17352119000,
18471336000,
19821508000,
20868968000,
21883280000,
23013684000,
24342288000,
25909293909.267998,
26174930174.904,
25879249879.224,
25464933464.908,
25004473004.447998,
24684600684.576,
24208684208.66,
23633647633.624
],
"inventory_finished_goods_fy_h": [
5718000000,
7286000000,
6331000000,
4946000000,
6580000000,
4061000000,
4106000000,
3956000000,
4855000000,
2132000000,
2349000000,
1640000000,
1081000000,
791000000,
776000000,
1051000000,
455000000,
509000000,
346000000,
270000000
],
"change_in_accounts_payable_fy_h": [
902000000,
6020000000,
-1889000000,
9448000000,
12326000000,
-4062000000,
-1923000000,
9175000000,
9618000000,
1791000000,
5400000000,
5938000000,
2340000000,
4467000000,
2515000000,
6307000000,
92000000,
596000000,
1494000000,
1611000000
],
"accum_deprec_buildings_fy_h": [
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null
],
"discontinued_operations_fy_h": [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0
],
"income_tax_current_foreign_fy_h": [
-8891000000,
-25483000000,
-8750000000,
-8996000000,
-9424000000,
-3134000000,
-3962000000,
-3986000000,
-1671000000,
-2105000000,
-4744000000,
-2147000000,
-1559000000,
-1203000000,
-769000000,
-282000000,
-345000000,
-277000000,
-103000000,
-101000000
],
"earnings_publication_type_fy_h": [
22,
22,
22,
22,
22,
22,
22,
22
],
"free_cash_flow_fy_h": [
98767000000,
108807000000,
99584000000,
111443000000,
92953000000,
73365000000,
58896000000,
64121000000,
51147000000,
53090000000,
70019000000,
50142000000,
45501000000,
42561000000,
33269000000,
16590000000,
9015000000,
8505000000,
4735000000,
1563000000
],
"ebit_fy_h": [
133050000000,
123216000000,
114301000000,
119437000000,
108949000000,
65339000000,
63242000000,
71042000000,
60028000000,
58481000000,
66630000000,
52657000000,
48323000000,
54634000000,
34494000000,
18270000000,
11370000000,
6275000000,
4409000000,
2453000000
],
"goodwill_gross_fy_h": [
null,
null,
null,
null,
null,
null,
null,
null,
5717000000,
5414000000,
5116000000,
4616000000,
1577000000,
1135000000,
896000000,
741000000,
206000000,
207000000,
38000000,
38000000
],
"amortization_fy_h": [
3698000000,
3245000000,
3019000000,
2404000000,
1784000000,
1356000000,
1247000000,
1603000000,
1957000000,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null
],
"net_debt_fy_h": [
57680000000,
53888000000,
62375000000,
84176000000,
73883000000,
31299000000,
7467000000,
48182000000,
41499000000,
19877000000,
22861000000,
10218000000,
-23586000000,
-29129000000,
-25952000000,
-25620000000,
-23464000000,
-24490000000,
-15386000000,
-10110000000
],
"minority_interest_exp_fy_h": [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0
],
"debt_to_asset_fy_h": [
0.312817857649879,
0.32620691544742203,
0.351491705499131,
0.37555810690138997,
0.38894935071595,
0.377531739366695,
0.319178414018835,
0.31303028231594804,
0.30821780938348403,
0.27054954210006,
0.22191621425301,
0.152239269493053,
0.08193236714975839,
0,
0,
0,
0,
0,
0,
0
],
"enterprise_value_fy_h": [
3890779895620,
3563697960050,
2769641171870,
2540068952170,
2551676899480,
1999366867920,
1024742142660,
1176906605660,
850889771040,
639813671510,
687383944990,
627076297250,
426173802550.14,
594492668408.2001,
352733573500,
244691811840,
141946501850,
91200305360,
121093669918.76001,
57441951480
],
"number_of_shareholders_fy_h": [
22429,
22429,
22429,
22429,
22429,
22429,
22429,
22429,
22429,
22429,
22429,
22429,
22429,
22429,
22429,
22429,
22429,
22429,
22429,
22429
],
"total_assets_fy_h": [
359241000000,
364980000000,
352583000000,
352755000000,
351002000000,
323888000000,
338516000000,
365725000000,
375319000000,
321686000000,
290479000000,
231839000000,
207000000000,
176064000000,
116371000000,
75183000000,
47501000000,
39572000000,
25347000000,
17205000000
],
"legal_claim_expense_fy_h": [
null,
null,
null,
null,
null,
null,
null,
null,
null,
548000000,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null
],
"price_earnings_fy_h": [
34.2210314802411,
37.4432901571438,
27.9116400391262,
24.6074069227246,
26.1702885643035,
34.2797826219698,
18.4105135626304,
18.9538203190596,
16.7339847991314,
13.5631768953069,
12.441431670282,
15.6201550387597,
12.145007830438,
15.109811754724,
14.605777134346,
19.2940113842366,
20.0838969241644,
23.9289206896791,
39.038938881289,
33.8999132552743
],
"ppe_gross_buildings_fy_h": [
27337000000,
24690000000,
23446000000,
22126000000,
20041000000,
17952000000,
17085000000,
16216000000,
13587000000,
10185000000,
6956000000,
4863000000,
3309000000,
2439000000,
2059000000,
1471000000,
955000000,
810000000,
762000000,
626000000
],
"dividends_payable_fy_h": [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0
],
"accum_deprec_machinery_fy_h": [
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null
],
"asset_turnover_fy_h": [
1.14926521048133,
1.08989733305647,
1.08681228006998,
1.12063681071734,
1.08407888692972,
0.827742586095495,
0.73829271513587,
0.717390600288242,
0.655869039676903,
0.699896269796542,
0.885602257628495,
0.835130879434143,
0.892101580936867,
1.06670542171765,
1.13386303601073,
1.00852488491405,
0.978558221262619,
1.00060074862521,
1.1283135927806,
1.34337181805536
],
"other_common_equity_fy_h": [
-5571000000,
-7172000000,
-11452000000,
-11109000000,
163000000,
-406000000,
-584000000,
-3454000000,
-150000000,
634000000,
-345000000,
1082000000,
-471000000,
499000000,
443000000,
-46000000,
77000000,
8000000,
63000000,
22000000
],
"accum_deprec_land_fy_h": [
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null
],
"ppe_gross_leased_prop_fy_h": [
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null
],
"deferred_income_current_fy_h": [
9055000000,
8249000000,
8061000000,
7912000000,
7612000000,
6643000000,
5522000000,
7543000000,
7548000000,
8080000000,
8940000000,
9548000000,
8697000000,
7445000000,
6129000000,
3647000000,
2278000000,
5534000000,
1955000000,
1070000000
],
"other_investments_fy_h": [
77723000000,
91479000000,
100544000000,
120805000000,
127877000000,
102624000000,
106698000000,
170799000000,
194714000000,
170430000000,
164065000000,
130162000000,
106215000000,
92122000000,
55618000000,
25391000000,
10528000000,
0,
0,
0
],
"long_term_debt_fy_h": [
89931000000,
96548000000,
106548000000,
109707000000,
119381000000,
107049000000,
91807000000,
93735000000,
97207000000,
75427000000,
53463000000,
28987000000,
16960000000,
0,
0,
0,
0,
0,
0,
0
],
"ppe_gross_construction_fy_h": [
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null
],
"fiscal_period_fy_h": [
"2025",
"2024",
"2023",
"2022",
"2021",
"2020",
"2019",
"2018",
"2017",
"2016",
"2015",
"2014",
"2013",
"2012",
"2011",
"2010",
"2009",
"2008",
"2007",
"2006"
],
"book_value_per_share_fy_h": [
4.99098,
3.76734,
3.99651,
3.17824,
3.84068,
3.84873,
5.09133,
5.6334,
6.53735,
6.00848,
5.34864,
4.75383,
4.90702,
4.49504,
2.94449,
1.8634,
1.25583,
0.84549,
0.59496,
0.41691
],
"earnings_release_date_fy_h": [
1761856320,
1730406900,
1698957000,
1666902600,
1635453000,
1604003520,
1572467400,
1541107800
],
"additional_paid_in_capital_fy_h": [
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null
],
"change_in_accrued_expenses_fy_h": [
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null
],
"current_port_debt_capital_leases_fy_h": [
12888000000,
11056000000,
9987000000,
11257000000,
9692000000,
8797000000,
10260000000,
8784000000,
6496000000,
3500000000,
2500000000,
0,
0,
0,
0,
0,
0,
0,
0,
0
],
"pre_tax_margin_fy_h": [
31.8936661532436,
31.5790146662064,
29.6740023742124,
30.204043334483,
29.8529045943737,
24.4723691409812,
25.2865737321517,
27.4268365630961,
28.0388674028315,
28.6482499789941,
31.3533636281093,
29.1867673702822,
29.3534114452261,
35.752159055209,
31.496896812096,
28.4937064871594,
28.32194915851,
21.2291018812156,
20.8614513038407,
14.5896971265856
],
"operating_cash_flow_per_share_fy_h": [
7.42980681315991,
7.67479691681548,
6.99084088097888,
7.48207486558561,
6.16890007002109,
4.60252253880515,
3.73157122966164,
3.87161559877995,
3.02750047032461,
2.99184714380956,
3.50703573528988,
2.4381956021424,
2.05722777198374,
1.94292781910684,
1.43097981439216,
0.718176555241701,
0.400021020557067,
0.379890397156472,
0.219676942444321,
0.0903513229238556
],
"purchase_of_investments_fy_h": [
-24407000000,
-48656000000,
-29513000000,
-76923000000,
-109689000000,
-115148000000,
-40631000000,
-73227000000,
-159486000000,
-142428000000,
-166402000000,
-217128000000,
-148489000000,
-151232000000,
-102317000000,
-57811000000,
-46825000000,
-23003000000,
-11736000000,
-7280000000
],
"capital_operating_lease_obligations_fy_h": [
11603000000,
10798000000,
11267000000,
10748000000,
10275000000,
8382000000,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0
],
"preferred_stock_carrying_value_fy_h": [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0
],
"pretax_income_fy_h": [
132729000000,
123485000000,
113736000000,
119103000000,
109207000000,
67091000000,
65737000000,
72903000000,
64089000000,
61372000000,
72515000000,
53483000000,
50155000000,
55763000000,
34205000000,
18540000000,
12066000000,
6895000000,
5008000000,
2818000000
],
"cash_n_short_term_invest_fy_h": [
54697000000,
65171000000,
61555000000,
48304000000,
62639000000,
90979000000,
100580000000,
66301000000,
74181000000,
67155000000,
41601000000,
25077000000,
40546000000,
29129000000,
25952000000,
25620000000,
23464000000,
24490000000,
15386000000,
10110000000
],
"total_non_oper_income_fy_h": [
-321000000,
269000000,
-565000000,
-334000000,
258000000,
1752000000,
2495000000,
1861000000,
4061000000,
2891000000,
5885000000,
826000000,
1832000000,
1129000000,
-289000000,
270000000,
696000000,
620000000,
599000000,
365000000
],
"common_equity_total_fy_h": [
73733000000,
56950000000,
62146000000,
50672000000,
63090000000,
65339000000,
90488000000,
107147000000,
134047000000,
128249000000,
119355000000,
111547000000,
123549000000,
118210000000,
76615000000,
47791000000,
31640000000,
21030000000,
14532000000,
9984000000
],
"prepaid_expenses_fy_h": [
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
1200000000,
728000000,
157000000,
309000000,
475000000,
417000000,
208000000
],
"cash_per_share_fy_h": [
3.6453251938376363,
4.229659798956328,
3.892794753432195,
2.9587489607718913,
3.7141595521448987,
5.1904318374935405,
5.408791259376117,
3.3149777334854096,
3.531290486951634,
3.052344052967476,
1.7952919255752002,
1.023941706411083,
1.554286834175321,
1.1128587471048272,
0.9895490991794402,
0.9894962810052373,
0.9239190103702163,
0.9695201986621514,
0.6179066611422901,
0.41146480845053146
],
"goodwill_amortization_fy_h": [
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
0
],
"other_receivables_fy_h": [
33180000000,
32833000000,
31477000000,
32748000000,
25228000000,
21325000000,
22878000000,
25809000000,
17799000000,
13545000000,
13494000000,
9759000000,
7539000000,
7762000000,
6348000000,
4414000000,
1696000000,
2282000000,
2392000000,
1593000000
],
"free_cash_flow_per_share_fy_h": [
6.582405496092323,
7.061677644121483,
6.297783652437523,
6.8261812776437125,
5.511618526006558,
4.185537670865954,
3.1671919865998786,
3.2059801096336096,
2.4347867315905045,
2.4130585328276863,
3.02167124196173,
2.047393429950334,
1.7442313728064738,
1.6260215295934826,
1.2685461228653205,
0.6407393950771618,
0.35497484991849215,
0.3366994401642139,
0.19015910831332014,
0.06361221519368751
],
"income_tax_deferred_foreign_fy_h": [
-604000000,
-347000000,
-669000000,
-3076000000,
-2740000000,
-3383000000,
-2666000000,
-1181000000,
16000000,
-33000000,
1806000000,
658000000,
426000000,
490000000,
167000000,
121000000,
35000000,
131000000,
16000000,
17000000
],
"deferred_tax_assests_fy_h": [
20777000000,
19499000000,
17852000000,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
259000000,
138000000,
88000000,
0
],
"sell_gen_admin_exp_other_fy_h": [
-27601000000,
-26097000000,
-24932000000,
-25094000000,
-21973000000,
-19916000000,
-18245000000,
-16705000000,
-15261000000,
-14194000000,
-14329000000,
-11993000000,
-10830000000,
-10040000000,
-7599000000,
-5517000000,
-4149000000,
-3761000000,
-2963000000,
-2433000000
],
"ebit_per_share_fy_h": [
8.86722337678662,
7.9968354296881,
7.2285002536277,
7.31583511981849,
6.46009625068463,
3.72764732333825,
3.40090253356,
3.55202256590806,
2.85755524124416,
2.6580914684177,
2.87541888418729,
2.15008567350514,
1.85240967513082,
2.08726440280563,
1.31525534167292,
0.705624397110292,
0.447705384755769,
0.248417282425684,
0.177066844467461,
0.0998341419514494
],
"dps_common_stock_prim_issue_fy_h": [
1.02,
0.98,
0.94,
0.9,
0.85,
0.795,
0.75,
0.68,
0.6,
0.545,
0.495,
0.4528572,
0.40714,
0.09464,
0,
0,
0,
0,
0,
0
],
"depreciation_depletion_fy_h": [
8000000000,
8200000000,
8500000000,
8700000000,
9500000000,
9700000000,
11300000000,
9300000000,
8200000000,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null
],
"accounts_receivables_gross_fy_h": [
39777000000,
33410000000,
29508000000,
28184000000,
26278000000,
16120000000,
22926000000,
23186000000,
17932000000,
15807000000,
16931000000,
17546000000,
13201000000,
11028000000,
5422000000,
5565000000,
3413000000,
2469000000,
1684000000,
1304000000
],
"long_term_debt_excl_capital_lease_fy_h": [
89239000000,
95796000000,
105689000000,
108895000000,
118612000000,
106412000000,
91807000000,
93735000000,
97207000000,
75427000000,
53463000000,
28987000000,
16960000000,
0,
0,
0,
0,
0,
0,
0
],
"sales_of_business_fy_h": [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
40000000
],
"total_extra_items_fy_h": [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0
],
"capex_per_share_fy_h": [
0.847401317067582,
0.613119272693996,
0.69305722854136,
0.655893587941897,
0.657281544014531,
0.416984867939198,
0.564379243061765,
0.665635489146337,
0.609089413469031,
0.615786720714814,
0.49576485279219,
0.400683493440681,
0.347918593868081,
0.35919866594389,
0.28414457024835,
0.081917315066827,
0.0477631162452724,
0.0474665054387881,
0.0395980740859416,
0.0267391077301681
],
"total_current_liabilities_fy_h": [
165631000000,
176392000000,
145308000000,
153982000000,
125481000000,
105392000000,
105718000000,
116866000000,
100814000000,
79006000000,
80610000000,
63448000000,
43658000000,
38542000000,
27970000000,
20722000000,
11506000000,
14092000000,
9299000000,
6471000000
],
"capital_expenditures_other_assets_fy_h": [
0,
0,
0,
0,
0,
0,
0,
0,
-344000000,
-814000000,
-241000000,
-242000000,
-911000000,
-1107000000,
-3192000000,
-116000000,
-69000000,
-108000000,
-251000000,
0
],
"amortization_of_intangibles_fy_h": [
-3698000000,
-3245000000,
-3019000000,
-2404000000,
-1784000000,
-1356000000,
-1247000000,
-1603000000,
-1200000000,
-1500000000,
-1300000000,
-1100000000,
-960000000,
-605000000,
-192000000,
-69000000,
-53000000,
-46000000,
-35000000,
-12000000
],
"total_current_assets_fy_h": [
147957000000,
152987000000,
143566000000,
135405000000,
134836000000,
143713000000,
162819000000,
131339000000,
128645000000,
106869000000,
89378000000,
68531000000,
73286000000,
57653000000,
44988000000,
41678000000,
31555000000,
32759000000,
21956000000,
14509000000
],
"total_receivables_net_fy_h": [
72957000000,
66243000000,
60985000000,
60932000000,
51506000000,
37445000000,
45804000000,
48995000000,
35673000000,
29299000000,
30343000000,
27219000000,
20641000000,
18692000000,
11717000000,
9924000000,
5057000000,
4704000000,
4029000000,
2845000000
],
"reduction_of_long_term_debt_fy_h": [
-10932000000,
-9958000000,
-11151000000,
-9543000000,
-8750000000,
-12629000000,
-8805000000,
-6500000000,
-3500000000,
-2500000000,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0
],
"book_tangible_per_share_fy_h": [
4.99097694077001,
3.76733519942665,
3.99651165355557,
3.17823805110884,
3.84067826779992,
3.84873135120046,
5.09133433380536,
5.63340249582228,
6.14646206810853,
5.60463261450262,
4.9449222792262,
4.38059064522777,
4.67841173365399,
4.29126330562988,
2.77415852082057,
1.82117438119474,
1.23784563969782,
0.823015913045617,
0.577763105637748,
0.408646027053004
],
"net_margin_fy_h": [
26.9150641218182,
23.9712557699439,
25.3062342643203,
25.3096407051997,
25.8817933556942,
20.9414554076236,
21.2549236829148,
22.3961566387895,
21.153509616226,
21.3265429966484,
23.0860028622942,
21.5614153805855,
21.6760502381984,
26.7568971154894,
23.8696845245769,
21.5362626216054,
19.3296246743187,
14.8834631608116,
14.5630259101891,
10.2976960911209
],
"shrhldrs_equity_fy_h": [
73733000000,
56950000000,
62146000000,
50672000000,
63090000000,
65339000000,
90488000000,
107147000000,
134047000000,
128249000000,
119355000000,
111547000000,
123549000000,
118210000000,
76615000000,
47791000000,
31640000000,
21030000000,
14532000000,
9984000000
],
"revenue_forecast_fy_h": [
415406882375,
390480701773,
383094279806,
392776831583,
366419852406,
273305434710,
259058735507,
264521756757
],
"accounts_payable_fy_h": [
69860000000,
68960000000,
62611000000,
64115000000,
54763000000,
42296000000,
46236000000,
55888000000,
49049000000,
37294000000,
35490000000,
30196000000,
22367000000,
21175000000,
14632000000,
12015000000,
5601000000,
5520000000,
4970000000,
3390000000
],
"earnings_fiscal_period_fy_h": [
"2025",
"2024",
"2023",
"2022",
"2021",
"2020",
"2019",
"2018"
],
"change_in_taxes_payable_fy_h": [
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null
],
"ncavps_ratio_fy_h": [
-9.310808853293045,
-10.256346818695455,
-9.445043334556694,
-10.454340896011994,
-9.31868230340372,
-6.764304832434782,
-4.79430982284083,
-6.6897673305452425,
-5.492712829637386,
-4.055720905234208,
-3.663273853493783,
-2.2059145666134974,
-0.4037256481505083,
-0.007643210289954066,
0.20107777982257913,
0.5570201509323479,
0.6229117731560437,
0.5715801492730964,
0.4561266128054247,
0.3043339715064676
],
"sale_of_stock_fy_h": [
0,
0,
0,
0,
1105000000,
880000000,
781000000,
669000000,
555000000,
495000000,
543000000,
730000000,
530000000,
665000000,
831000000,
912000000,
475000000,
483000000,
365000000,
318000000
],
"ebitda_per_share_fy_h": [
9.64684591764832,
8.739626800068406,
7.956972396667026,
7.995984764990963,
7.129177436310248,
4.3584018314701085,
4.075630152683004,
4.097160681897134,
3.3050300741170653,
3.103523256357266,
3.3285465786787625,
2.4767409213931915,
2.1115469266235687,
2.2097098106284494,
1.3835842560428935,
0.739766267227725,
0.47365418410089205,
0.2646089427463381,
0.1884723749344058,
0.10764831042053964
],
"net_income_bef_disc_oper_fy_h": [
112010000000,
93736000000,
96995000000,
99803000000,
94680000000,
57411000000,
55256000000,
59531000000,
48351000000,
45687000000,
53394000000,
39510000000,
37037000000,
41733000000,
25922000000,
14013000000,
8235000000,
4834000000,
3496000000,
1989000000
],
"oper_income_fy_h": [
133050000000,
123216000000,
114301000000,
119437000000,
108949000000,
65339000000,
63242000000,
71042000000,
60028000000,
58481000000,
66630000000,
52657000000,
48323000000,
54634000000,
34494000000,
18270000000,
11370000000,
6275000000,
4409000000,
2453000000
],
"issuance_of_stock_net_fy_h": [
-90711000000,
-94949000000,
-77550000000,
-89402000000,
-84866000000,
-71478000000,
-66116000000,
-72069000000,
-32345000000,
-29227000000,
-34710000000,
-44270000000,
-22330000000,
665000000,
831000000,
912000000,
475000000,
483000000,
362000000,
-37000000
],
"gross_profit_fy_h": [
195201000000,
180683000000,
169148000000,
170782000000,
152836000000,
104007000000,
97704000000,
101983000000,
86870000000,
82720000000,
89026000000,
70691000000,
63628000000,
68055000000,
44522000000,
25569000000,
16852000000,
11145000000,
8154000000,
5598000000
],
"cash_n_equivalents_fy_h": [
33539000000,
27977000000,
28840000000,
21475000000,
26913000000,
19980000000,
28124000000,
19658000000,
14516000000,
12267000000,
13187000000,
11778000000,
10498000000,
4569000000,
4814000000,
4443000000,
2747000000,
368000000,
256000000,
200000000
],
"operating_lease_liabilities_fy_h": [
10911000000,
10046000000,
10408000000,
9936000000,
9506000000,
7745000000,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null
],
"capital_lease_obligations_fy_h": [
692000000,
752000000,
859000000,
812000000,
769000000,
637000000,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0
],
"other_investing_cash_flow_sources_fy_h": [
0,
0,
0,
0,
0,
0,
0,
0,
220000000,
0,
0,
16000000,
0,
0,
0,
0,
0,
0,
49000000,
0
],
"operating_expenses_fy_h": [
-62151000000,
-57467000000,
-54847000000,
-51345000000,
-43887000000,
-38668000000,
-34462000000,
-30941000000,
-26842000000,
-24239000000,
-22396000000,
-18034000000,
-15305000000,
-13421000000,
-10028000000,
-7299000000,
-5482000000,
-4870000000,
-3745000000,
-3145000000
],
"change_in_inventories_fy_h": [
1400000000,
-1046000000,
-1618000000,
1484000000,
-2642000000,
-127000000,
-289000000,
828000000,
-2723000000,
217000000,
-238000000,
-76000000,
-973000000,
-15000000,
275000000,
-596000000,
54000000,
-163000000,
-76000000,
-105000000
],
"gross_margin_fy_h": [
46.9051641071605,
46.2063498152339,
44.1311295772076,
43.3096305613601,
41.7793596251678,
37.937990151377,
37.5830871491876,
38.3670229375228,
38.005529986175,
38.6134269416411,
38.4922367835076,
38.5775250485691,
37.2385378015521,
43.6331112835078,
40.9970717692775,
39.2964175388446,
39.5558998192616,
34.3144801256196,
33.9665083729068,
28.9826559668651
],
"short_term_debt_excl_current_port_fy_h": [
9558000000,
11455000000,
7395000000,
11516000000,
7449000000,
6432000000,
5980000000,
11964000000,
11977000000,
8105000000,
8499000000,
6308000000,
0,
0,
0,
0,
0,
0,
0,
0
],
"other_income_fy_h": [
-321000000,
269000000,
-382000000,
-228000000,
60000000,
397000000,
1110000000,
-585000000,
1183000000,
-200000000,
3697000000,
-585000000,
652000000,
696000000,
-438000000,
256000000,
516000000,
-33000000,
-48000000,
-29000000
],
"total_debt_fy_h": [
112377000000,
119059000000,
123930000000,
132480000000,
136522000000,
122278000000,
108047000000,
114483000000,
115680000000,
87032000000,
64462000000,
35295000000,
16960000000,
0,
0,
0,
0,
0,
0,
0
],
"accrued_expenses_fy_h": [
8919000000,
null,
null,
null,
null,
null,
36120000000,
32687000000,
25709000000,
21864000000,
24181000000,
3530000000,
2250000000,
1645000000,
1188000000,
832000000,
716000000,
649000000,
542000000,
519000000
],
"current_ratio_fy_h": [
0.893292922218667,
0.867312576534083,
0.988011671759297,
0.879356028626723,
1.0745531195958,
1.36360444815546,
1.54012561720804,
1.12384269162973,
1.27606284841391,
1.35266941751259,
1.10877062399206,
1.08011284831673,
1.67863850840625,
1.49584868455192,
1.60843761172685,
2.01129234629862,
2.74248218320876,
2.32465228498439,
2.36111409829014,
2.24215731726163
],
"capital_expenditures_fixed_assets_fy_h": [
-12715000000,
-9447000000,
-10959000000,
-10708000000,
-11085000000,
-7309000000,
-10495000000,
-13313000000,
-12451000000,
-12734000000,
-11247000000,
-9571000000,
-8165000000,
-8295000000,
-4260000000,
-2005000000,
-1144000000,
-1091000000,
-735000000,
-657000000
],
"other_investing_cash_flow_items_total_fy_h": [
-1480000000,
-1308000000,
-1337000000,
-1780000000,
-608000000,
-791000000,
-1078000000,
-745000000,
-175000000,
-1498000000,
-26000000,
16000000,
-160000000,
-48000000,
-259000000,
-2000000,
-74000000,
-10000000,
49000000,
-58000000
],
"number_of_employees_fy_h": [
166000,
164000,
161000,
164000,
154000,
147000,
137000,
132000,
123000,
116000,
110000,
97000,
84400,
76100,
63300,
49400,
36800,
35100,
23700,
20186
],
"unrealized_gain_loss_fy_h": [
null,
null,
null,
null,
null,
465000000,
null,
null,
null,
null,
null,
null,
-300000000,
-655000000,
-370000000,
-297000000,
-227000000,
null,
null,
null
],
"short_term_debt_fy_h": [
22446000000,
22511000000,
17382000000,
22773000000,
17141000000,
15229000000,
16240000000,
20748000000,
18473000000,
11605000000,
10999000000,
6308000000,
0,
0,
0,
0,
0,
0,
0,
0
],
"accrued_payroll_fy_h": [
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
1209000000,
959000000,
735000000,
590000000,
436000000,
357000000,
320000000,
254000000,
221000000
],
"impairments_fy_h": [
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null
],
"capital_expenditures_unchanged_fy_h": [
12715000000,
9447000000,
10959000000,
10708000000,
11085000000,
7309000000,
10495000000,
13313000000,
12795000000,
13548000000,
11488000000,
9813000000,
9076000000,
9402000000,
7452000000,
2121000000,
1213000000,
1199000000,
986000000,
657000000
],
"issuance_of_short_term_debt_fy_h": [
-2032000000,
3960000000,
-3978000000,
3955000000,
1022000000,
-963000000,
-5977000000,
-37000000,
3852000000,
-397000000,
2191000000,
6306000000,
0,
0,
0,
0,
0,
0,
0,
0
],
"cash_f_operating_activities_fy_h": [
111482000000,
118254000000,
110543000000,
122151000000,
104038000000,
80674000000,
69391000000,
77434000000,
63598000000,
65824000000,
81266000000,
59713000000,
53666000000,
50856000000,
37529000000,
18595000000,
10159000000,
9596000000,
5470000000,
2220000000
],
"non_oper_interest_exp_fy_h": [
null,
null,
-3933000000,
-2931000000,
-2645000000,
-2873000000,
-3576000000,
-3240000000,
-2323000000,
-1456000000,
-733000000,
-384000000,
-136000000,
0,
0,
0,
0,
0,
0,
0
],
"dividend_payout_ratio_fy_h": [
13.6637642330877,
16.1088828982839,
15.3244212585589,
14.7222403978277,
15.1407196294977,
24.2718446601942,
25.2406273137242,
22.8379513014274,
26.0586319218241,
26.2334536702768,
21.4750542299349,
28.0841674418605,
28.679909833756,
6.00202942668696,
0,
0,
0,
0,
0,
0
],
"return_on_equity_fy_h": [
171.422449744802,
157.412507556929,
171.949511602758,
175.459292206536,
147.443334449384,
73.6855615522342,
55.9172211399803,
49.3635828420276,
36.8675084637204,
36.9032810455405,
46.2481918736087,
33.611801136557,
30.6396039030605,
42.8415244450148,
41.6732311946369,
37.0601536569562,
31.2701727738751,
27.1863224790507,
28.5201501060532,
22.7965616045845
],
"invent_turnover_fy_h": [
33.9833897262381,
30.8954982742161,
37.9776536312849,
38.7898663890335,
40.0302603138803,
41.665972817436,
40.2540312577524,
37.1866984451254,
40.5616144267926,
58.6949341664807,
63.7923766816143,
58.0918709677419,
83.9436399217221,
112.20931716656,
70.1434044882321,
52.4541832669323,
53.4253112033195,
49.9040935672515,
51.4675324675325,
63.0666666666667
],
"total_equity_fy_h": [
73733000000,
56950000000,
62146000000,
50672000000,
63090000000,
65339000000,
90488000000,
107147000000,
134047000000,
128249000000,
119355000000,
111547000000,
123549000000,
118210000000,
76615000000,
47791000000,
31640000000,
21030000000,
14532000000,
9984000000
],
"income_tax_payable_fy_h": [
13016000000,
26601000000,
null,
null,
null,
null,
null,
null,
null,
null,
null,
1209000000,
1200000000,
1535000000,
1140000000,
210000000,
430000000,
100000000,
488000000,
388000000
],
"ppe_gross_trans_equip_fy_h": [
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null
],
"issuance_of_long_term_debt_fy_h": [
-6451000000,
-9958000000,
-5923000000,
-4078000000,
11643000000,
3462000000,
-1842000000,
469000000,
25162000000,
22454000000,
27114000000,
11960000000,
16896000000,
0,
0,
0,
0,
0,
0,
0
],
"total_non_current_liabilities_fy_h": [
119877000000,
131638000000,
145129000000,
148101000000,
162431000000,
153157000000,
142310000000,
141712000000,
140458000000,
114431000000,
90514000000,
56844000000,
39793000000,
19312000000,
11786000000,
6670000000,
4355000000,
4450000000,
1516000000,
750000000
],
"purchase_of_stock_fy_h": [
-90711000000,
-94949000000,
-77550000000,
-89402000000,
-85971000000,
-72358000000,
-66897000000,
-72738000000,
-32900000000,
-29722000000,
-35253000000,
-45000000000,
-22860000000,
0,
0,
0,
0,
0,
-3000000,
-355000000
],
"purchase_sale_business_fy_h": [
0,
0,
0,
-306000000,
-33000000,
-1524000000,
-624000000,
-721000000,
-329000000,
-297000000,
-343000000,
-3765000000,
-496000000,
-350000000,
-244000000,
-638000000,
0,
-220000000,
0,
40000000
],
"non_oper_interest_income_fy_h": [
0,
0,
3750000000,
2825000000,
2843000000,
3763000000,
4961000000,
5686000000,
5201000000,
3999000000,
2921000000,
1795000000,
1616000000,
1088000000,
519000000,
311000000,
407000000,
653000000,
647000000,
394000000
],
"accum_deprec_comp_soft_fy_h": [
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null
],
"deferred_income_non_current_fy_h": [
null,
null,
null,
null,
null,
null,
null,
2797000000,
2836000000,
2930000000,
3624000000,
3031000000,
2625000000,
2648000000,
1686000000,
1139000000,
853000000,
3029000000,
830000000,
355000000
],
"cash_flow_deprecation_n_amortization_fy_h": [
11698000000,
11445000000,
11519000000,
11104000000,
11284000000,
11056000000,
12547000000,
10903000000,
10157000000,
10505000000,
11257000000,
7946000000,
6757000000,
3277000000,
1814000000,
1027000000,
734000000,
473000000,
317000000,
225000000
],
"long_term_other_assets_total_fy_h": [
51745000000,
45101000000,
36245000000,
44011000000,
38762000000,
32215000000,
31621000000,
22283000000,
10162000000,
8757000000,
5556000000,
3764000000,
5146000000,
2478000000,
1956000000,
1464000000,
2011000000,
433000000,
426000000,
175000000
],
"revenue_per_share_fy_h": [
27.7353817941142,
25.3785429022861,
24.2392955416986,
24.153642766712,
21.6910024886571,
15.6404982276004,
13.9800422163202,
13.290160274506,
10.8808742020667,
9.7370479799123,
9.98102214905433,
7.48220178049976,
6.54996236886994,
5.9587933552366,
4.14083897474911,
2.51301930195815,
1.67753672003078,
1.28579201847072,
0.964088607005188,
0.786097208231653
],
"capital_expenditures_fy_h": [
-12715000000,
-9447000000,
-10959000000,
-10708000000,
-11085000000,
-7309000000,
-10495000000,
-13313000000,
-12795000000,
-13548000000,
-11488000000,
-9813000000,
-9076000000,
-9402000000,
-7452000000,
-2121000000,
-1213000000,
-1199000000,
-986000000,
-657000000
],
"enterprise_value_ebitda_fy_h": [
26.7933919337055,
26.3785651380132,
21.9187980596884,
19.3701515398993,
21.1316518716159,
26.0512581702991,
13.5209877773819,
14.3621527324425,
12.255714856254,
9.3703031811192,
8.91201795656684,
10.3380697569942,
7.73693884774141,
10.2784050278912,
9.72092745135865,
12.7749719035189,
11.8003576232438,
13.6445699222023,
25.8030406816024,
21.7171839243856
],
"income_tax_fy_h": [
-20719000000,
-29749000000,
-16741000000,
-19300000000,
-14527000000,
-9680000000,
-10481000000,
-13372000000,
-15738000000,
-15685000000,
-19121000000,
-13973000000,
-13118000000,
-14030000000,
-8283000000,
-4527000000,
-3831000000,
-2061000000,
-1512000000,
-829000000
],
"accum_deprec_construction_fy_h": [
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null
],
"total_non_current_assets_fy_h": [
211284000000,
211993000000,
209017000000,
217350000000,
216166000000,
180175000000,
175697000000,
234386000000,
246674000000,
214817000000,
201101000000,
163308000000,
133714000000,
118411000000,
71383000000,
33505000000,
15946000000,
6813000000,
3391000000,
2696000000
],
"interest_expense_on_debt_fy_h": [
null,
null,
-3933000000,
-2931000000,
-2645000000,
-2873000000,
-3576000000,
-3240000000,
-2323000000,
-1456000000,
-733000000,
-384000000,
-136000000,
0,
0,
0,
0,
0,
0,
0
],
"other_investing_cash_flow_uses_fy_h": [
-1480000000,
-1308000000,
-1337000000,
-1780000000,
-608000000,
-791000000,
-1078000000,
-745000000,
-395000000,
-1498000000,
-26000000,
0,
-160000000,
-48000000,
-259000000,
-2000000,
-74000000,
-10000000,
0,
-58000000
],
"quick_ratio_fy_h": [
0.858770399261008,
0.826006848383147,
0.944442150466595,
0.847235391149615,
1.02211490185765,
1.32507211173524,
1.5012864412872,
1.08999195659987,
1.2279048544845,
1.32568412525631,
1.07963031881901,
1.04684150800656,
1.63823354253516,
1.47532561880546,
1.58069360028602,
1.96057330373516,
2.70293759777507,
2.28853250070962,
2.32390579632219,
2.20043269973729
],
"other_intangibles_gross_fy_h": [
null,
null,
null,
null,
null,
null,
null,
null,
13324000000,
14426000000,
13341000000,
11843000000,
7758000000,
6401000000,
4869000000,
1328000000,
629000000,
682000000,
497000000,
240000000
],
"ppe_gross_leases_fy_h": [
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null
],
"other_current_liabilities_fy_h": [
51254000000,
50071000000,
57254000000,
59182000000,
45965000000,
41224000000,
37720000000,
32687000000,
25744000000,
22027000000,
25181000000,
14978000000,
10435000000,
7652000000,
5479000000,
4414000000,
2840000000,
2618000000,
1632000000,
1402000000
],
"provision_f_risks_fy_h": [
0,
9254000000,
15457000000,
16657000000,
24689000000,
28170000000,
29545000000,
33589000000,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0
],
"ebitda_fy_h": [
144748000000,
134661000000,
125820000000,
130541000000,
120233000000,
76395000000,
75789000000,
81945000000,
69428000000,
68281000000,
77130000000,
60657000000,
55083000000,
57839000000,
36286000000,
19154000000,
12029000000,
6684000000,
4693000000,
2645000000
],
"interest_capitalized_fy_h": [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0
],
"intangibles_net_fy_h": [
null,
null,
null,
null,
null,
null,
null,
null,
8015000000,
8620000000,
9009000000,
8758000000,
5756000000,
5359000000,
4432000000,
1083000000,
453000000,
559000000,
420000000,
198000000
],
"research_and_dev_fy_h": [
-34550000000,
-31370000000,
-29915000000,
-26251000000,
-21914000000,
-18752000000,
-16217000000,
-14236000000,
-11581000000,
-10045000000,
-8067000000,
-6041000000,
-4475000000,
-3381000000,
-2429000000,
-1782000000,
-1333000000,
-1109000000,
-782000000,
-712000000
],
"investments_in_unconcsolidate_fy_h": [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0
],
"cash_flow_deferred_taxes_fy_h": [
0,
0,
0,
895000000,
-4774000000,
-215000000,
-340000000,
-32590000000,
5966000000,
4938000000,
1382000000,
2347000000,
1141000000,
4405000000,
2868000000,
1440000000,
1040000000,
-368000000,
78000000,
53000000
],
"income_tax_credits_fy_h": [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0
],
"deferred_tax_liabilities_fy_h": [
null,
null,
null,
null,
null,
17875000000,
16919000000,
11520000000,
39911000000,
34719000000,
32262000000,
20259000000,
19779000000,
16348000000,
9820000000,
5490000000,
3478000000,
1400000000,
619000000,
381000000
],
"sell_gen_admin_exp_total_fy_h": [
-62151000000,
-57467000000,
-54847000000,
-51345000000,
-43887000000,
-38668000000,
-34462000000,
-30941000000,
-26842000000,
-24239000000,
-22396000000,
-18034000000,
-15305000000,
-13421000000,
-10028000000,
-7299000000,
-5482000000,
-4870000000,
-3745000000,
-3145000000
],
"income_tax_deferred_fy_h": [
1339000000,
3031000000,
3024000000,
-895000000,
4774000000,
215000000,
340000000,
32590000000,
-5966000000,
-4938000000,
-1382000000,
-2347000000,
-1141000000,
-4405000000,
-2868000000,
-1440000000,
-1040000000,
368000000,
-78000000,
-53000000
],
"minority_interest_fy_h": [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0
],
"paid_in_capital_fy_h": [
93568000000,
83276000000,
73812000000,
64849000000,
57365000000,
50779000000,
45174000000,
40201000000,
35867000000,
31251000000,
27416000000,
23313000000,
19764000000,
16422000000,
13331000000,
10668000000,
8210000000,
7177000000,
5368000000,
4355000000
],
"other_exceptional_charges_fy_h": [
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null
],
"other_current_assets_total_fy_h": [
14585000000,
14287000000,
14695000000,
21223000000,
14111000000,
11228000000,
12329000000,
12087000000,
13936000000,
8283000000,
15085000000,
14124000000,
10335000000,
7841000000,
5815000000,
4926000000,
2579000000,
2581000000,
1778000000,
1076000000
],
"ebitda_margin_fy_h": [
34.7817311088737,
34.4370708504354,
32.8267477203647,
33.104674281309,
32.8669799380565,
27.8661316797374,
29.1532034711965,
30.8285272507703,
30.3746740633148,
31.8733487065062,
33.3487545561066,
33.1017659514091,
32.2375428698512,
37.0831757185631,
33.4131383635058,
29.4373491939078,
28.2351008144966,
20.5794513377875,
19.54927934683,
13.694020191561
],
"common_dividends_cash_flow_fy_h": [
-15421000000,
-15234000000,
-15025000000,
-14841000000,
-14467000000,
-14081000000,
-14119000000,
-13712000000,
-12769000000,
-12150000000,
-11561000000,
-11126000000,
-10564000000,
-2488000000,
0,
0,
0,
0,
0,
0
],
"fiscal_period_end_fy_h": [
1759190400,
1727654400,
1696032000,
1664496000,
1632960000,
1601424000,
1569801600,
1538265600,
1506729600,
1475193600,
1443571200,
1412035200,
1380499200,
1348963200,
1317340800,
1285804800,
1254268800,
1222732800,
1191110400,
1159574400
],
"long_term_debt_to_assets_fy_h": [
0.250336125330906,
0.2645295632637405,
0.302192675199882,
0.31100055279159755,
0.3401148711403354,
0.33051239934792276,
0.2712043153056281,
0.25629913186137127,
0.25899834540750666,
0.23447399016432172,
0.18405117065261173,
0.12503073253421557,
0.08193236714975845,
0,
0,
0,
0,
0,
0,
0
],
"diluted_net_income_fy_h": [
112010000000,
93736000000,
96995000000,
99803000000,
94680000000,
57411000000,
55256000000,
59531000000,
48351000000,
45687000000,
53394000000,
39510000000,
37037000000,
41733000000,
25922000000,
14013000000,
8235000000,
4834000000,
3496000000,
1989000000
],
"other_financing_cash_flow_items_total_fy_h": [
-6071000000,
-5802000000,
-6012000000,
-6383000000,
-6685000000,
-3760000000,
-2922000000,
-2527000000,
-1247000000,
-1163000000,
-750000000,
-419000000,
-381000000,
125000000,
613000000,
345000000,
188000000,
633000000,
377000000,
361000000
],
"change_in_accounts_receivable_fy_h": [
-7029000000,
-5144000000,
-417000000,
-9343000000,
-14028000000,
8470000000,
3176000000,
-13332000000,
-6347000000,
1044000000,
-3124000000,
-6452000000,
-1949000000,
-6965000000,
-1791000000,
-4860000000,
-353000000,
-785000000,
-385000000,
-357000000
]
},
"dividend": {
"continuous_dividend_payout": 14,
"continuous_dividend_growth": 13,
"dividend_yield_recent": 0.38088262223036073,
"dividend_amount_recent": 0.25999999,
"dividend_amount_h": [
0.26,
0.26,
0.26,
0.26,
0.25,
0.25,
0.25,
0.25,
0.24,
0.24,
0.24,
0.24,
0.23,
0.23,
0.23,
0.23,
0.22,
0.22,
0.22,
0.22,
0.205,
0.205,
0.205,
0.205,
0.1925,
0.1925,
0.1925,
0.1925
],
"dividend_payment_date_recent": 1770897540,
"dividend_ex_date_recent": 1770638340,
"dividend_record_date_h": [
1770638340,
1762775940,
1754913540,
1747051140,
1739188740,
1731326340,
1723463940,
1715601540,
1707739140,
1699876740,
1692014340,
1684151940,
1676289540,
1667822340,
1659959940,
1652097540,
1644235140,
1636372740,
1628510340,
1620647940,
1612785540,
1604923140,
1597060740,
1589198340,
1581335940,
1573473540,
1565611140,
1557748740
],
"dividend_type_h": [
"Quarterly",
"Quarterly",
"Quarterly",
"Quarterly",
"Quarterly",
"Quarterly",
"Quarterly",
"Quarterly",
"Quarterly",
"Quarterly",
"Quarterly",
"Quarterly",
"Quarterly",
"Quarterly",
"Quarterly",
"Quarterly",
"Quarterly",
"Quarterly",
"Quarterly",
"Quarterly",
"Quarterly",
"Quarterly",
"Quarterly",
"Quarterly",
"Quarterly",
"Quarterly",
"Quarterly",
"Quarterly"
],
"dividend_payment_date_h": [
1770897540,
1763035140,
1755172740,
1747310340,
1739447940,
1731585540,
1723723140,
1715860740,
1707998340,
1700135940,
1692273540,
1684411140,
1676548740,
1668081540,
1660219140,
1652356740,
1644494340,
1636631940,
1628769540,
1620907140,
1613044740,
1605182340,
1597319940,
1589457540,
1581595140,
1573732740,
1565870340,
1558007940
],
"dividend_ex_date_h": [
1770638340,
1762775940,
1754913540,
1747051140,
1739188740,
1731067140,
1723463940,
1715342340,
1707479940,
1699617540,
1691755140,
1683892740,
1676030340,
1667563140,
1659700740,
1651838340,
1643975940,
1636113540,
1628251140,
1620388740,
1612526340,
1604663940,
1596801540,
1588939140,
1581076740,
1573127940,
1565351940,
1557489540
]
},
"analyst_recommendations": {
"recommendation_mark": 1.443396,
"price_target_low": 215,
"price_target_down_num": 0,
"price_target_estimates_num": 41,
"price_target_up_num": 10,
"price_target_high": 350,
"price_target_average": 301.617561,
"price_target_median": 310,
"recommendation_buy": 26,
"recommendation_under": 0,
"recommendation_date": "2026-04-16",
"recommendation_sell": 2,
"recommendation_total": 53,
"price_target_date": "2026-04-20",
"recommendation_hold": 14,
"recommendation_over": 11
},
"enterprise_value": {
"sum_for_enterprise_value": 23602000000
},
"credit_ratings": {
"issuer_snp_rating_st_h": [
{
"date": 1398297600,
"outlook": null,
"rating": 730
},
{
"date": 856742400,
"outlook": null,
"rating": 500
}
],
"issuer_snp_rating_st": 730,
"issuer_snp_rating_lt_h": [
{
"date": 1366675200,
"outlook": 0,
"rating": 740
},
{
"date": 1082073600,
"outlook": null,
"rating": 500
}
],
"issuer_snp_rating_lt": 740
},
"cash_flow": {
"operating_cash_flow_per_share": 9.1471130066016,
"cash_f_investing_activities_fh": -7473000000,
"cash_f_operating_activities_fh": 83653000000,
"cash_f_financing_activities_fh": -67132000000
}
},
"msg": "Success"
} Get company name, industry, country, exchange, and other basic information
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
symbol | string | ✓ |
Request Examples
curl --request GET \
--url 'https://tradingview-data1.p.rapidapi.com/api/market-data/NASDAQ:AAPL/company' \
--header 'x-rapidapi-host: tradingview-data1.p.rapidapi.com' \
--header 'x-rapidapi-key: YOUR_RAPIDAPI_KEY' const symbol = 'NASDAQ:AAPL';
const response = await fetch(`https://tradingview-data1.p.rapidapi.com/api/market-data/${symbol}/company`, {
method: 'GET',
headers: {
'x-rapidapi-host': 'tradingview-data1.p.rapidapi.com',
'x-rapidapi-key': 'YOUR_RAPIDAPI_KEY'
}
});
const data = await response.json();
console.log(data); import requests
symbol = "NASDAQ:AAPL"
url = f"https://tradingview-data1.p.rapidapi.com/api/market-data/{symbol}/company"
headers = {
"x-rapidapi-host": "tradingview-data1.p.rapidapi.com",
"x-rapidapi-key": "YOUR_RAPIDAPI_KEY"
}
response = requests.get(url, headers=headers)
print(response.json()) Response Examples
{
"success": true,
"data": {
"symbol": "NASDAQ:AAPL",
"company": {
"isin-displayed": "US0378331005",
"ceo": "Timothy Donald Cook",
"isin": "US0378331005",
"currency-logoid": "country/US",
"description": "Apple Inc.",
"sector": "Electronic Technology",
"country_code": "US",
"listed_exchange": "NASDAQ",
"web_site_url": "http://www.apple.com",
"local_description": "Apple Inc.",
"currency_id": "USD",
"industry": "Telecommunications Equipment",
"currency_code": "USD",
"business_description": "Apple, Inc. engages in the design, manufacture, and sale of smartphones, personal computers, tablets, wearables and accessories, and other varieties of related services. It operates through the following geographical segments: Americas, Europe, Greater China, Japan, and Rest of Asia Pacific. The Americas segment includes North and South America. The Europe segment consists of European countries, as well as India, the Middle East, and Africa. The Greater China segment comprises China, Hong Kong, and Taiwan. The Rest of Asia Pacific segment includes Australia and Asian countries. Its products and services include iPhone, Mac, iPad, AirPods, Apple TV, Apple Watch, Beats products, AppleCare, iCloud, digital content stores, streaming, and licensing services. The company was founded by Steven Paul Jobs, Ronald Gerald Wayne, and Stephen G. Wozniak in April 1976 and is headquartered in Cupertino, CA.",
"fundamental_currency_code": "USD",
"exchange": "Cboe One",
"cusip": "037833100",
"timezone": "America/New_York",
"founded": 1976,
"short_description": "Apple Inc.",
"exchange_traded_name": "Cboe One",
"short-description": "Apple Inc.",
"local-description": "Apple Inc.",
"country_code_fund": "US",
"exchange-ticker": "AAPL",
"industry-i18n-en": "Telecommunications Equipment",
"currency-id": "USD",
"country": "United States",
"exchange-listed": "NASDAQ",
"description-i18n-en": "APPLE INC",
"number_of_employees": 166000,
"country_fund": "United States",
"exchange_listed_name": "NASDAQ",
"exchange-listed-symbol": "AAPL",
"top_revenue_country_code": "US",
"exchange-traded": "Cboe One",
"business_description-i18n-en": "Apple, Inc. engages in the design, manufacture, and sale of smartphones, personal computers, tablets, wearables and accessories, and other variety of related services. It operates through the following geographical segments: Americas, Europe, Greater China, Japan, and Rest of Asia Pacific. The Americas segment includes North and South America. The Europe segment consists of European countries, as well as India, the Middle East, and Africa. The Greater China segment comprises of China, Hong Kong, and Taiwan. The Rest of Asia Pacific segment includes Australia and Asian countries. Its products and services include iPhone, Mac, iPad, AirPods, Apple TV, Apple Watch, Beats products, Apple Care, iCloud, digital content stores, streaming, and licensing services. The company was founded by Steven Paul Jobs, Ronald Gerald Wayne, and Stephen G. Wozniak in 1977 and is headquartered in Cupertino, CA.",
"sector-i18n-en": "Electronic Technology",
"currency_fund": "USD",
"currency": "USD"
}
},
"msg": "Success"
} Get analyst buy/hold/sell recommendations, price targets, and other analyst rating data
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
symbol | string | ✓ |
Request Examples
curl --request GET \
--url 'https://tradingview-data1.p.rapidapi.com/api/market-data/NASDAQ:AAPL/analyst-recommendations' \
--header 'x-rapidapi-host: tradingview-data1.p.rapidapi.com' \
--header 'x-rapidapi-key: YOUR_RAPIDAPI_KEY' const symbol = 'NASDAQ:AAPL';
const response = await fetch(`https://tradingview-data1.p.rapidapi.com/api/market-data/${symbol}/analyst-recommendations`, {
method: 'GET',
headers: {
'x-rapidapi-host': 'tradingview-data1.p.rapidapi.com',
'x-rapidapi-key': 'YOUR_RAPIDAPI_KEY'
}
});
const data = await response.json();
console.log(data); import requests
symbol = "NASDAQ:AAPL"
url = f"https://tradingview-data1.p.rapidapi.com/api/market-data/{symbol}/analyst-recommendations"
headers = {
"x-rapidapi-host": "tradingview-data1.p.rapidapi.com",
"x-rapidapi-key": "YOUR_RAPIDAPI_KEY"
}
response = requests.get(url, headers=headers)
print(response.json()) Response Examples
{
"success": true,
"data": {
"symbol": "NASDAQ:AAPL",
"analyst_recommendations": {
"recommendation_mark": 1.443396,
"price_target_low": 215,
"price_target_down_num": 0,
"price_target_estimates_num": 41,
"price_target_up_num": 10,
"price_target_high": 350,
"price_target_average": 301.617561,
"price_target_median": 310,
"recommendation_buy": 26,
"recommendation_under": 0,
"recommendation_date": "2026-04-16",
"recommendation_sell": 2,
"recommendation_total": 53,
"price_target_date": "2026-04-20",
"recommendation_hold": 14,
"recommendation_over": 11
}
},
"msg": "Success"
} Get operating, investing, financing cash flow and other cash flow statement data
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
symbol | string | ✓ |
Request Examples
curl --request GET \
--url 'https://tradingview-data1.p.rapidapi.com/api/market-data/NASDAQ:AAPL/cash-flow' \
--header 'x-rapidapi-host: tradingview-data1.p.rapidapi.com' \
--header 'x-rapidapi-key: YOUR_RAPIDAPI_KEY' const symbol = 'NASDAQ:AAPL';
const response = await fetch(`https://tradingview-data1.p.rapidapi.com/api/market-data/${symbol}/cash-flow`, {
method: 'GET',
headers: {
'x-rapidapi-host': 'tradingview-data1.p.rapidapi.com',
'x-rapidapi-key': 'YOUR_RAPIDAPI_KEY'
}
});
const data = await response.json();
console.log(data); import requests
symbol = "NASDAQ:AAPL"
url = f"https://tradingview-data1.p.rapidapi.com/api/market-data/{symbol}/cash-flow"
headers = {
"x-rapidapi-host": "tradingview-data1.p.rapidapi.com",
"x-rapidapi-key": "YOUR_RAPIDAPI_KEY"
}
response = requests.get(url, headers=headers)
print(response.json()) Response Examples
{
"success": true,
"data": {
"symbol": "NASDAQ:AAPL",
"cash_flow": {
"operating_cash_flow_per_share": 9.1471130066016,
"cash_f_investing_activities_fh": -7473000000,
"cash_f_operating_activities_fh": 83653000000,
"cash_f_financing_activities_fh": -67132000000
}
},
"msg": "Success"
} Other Market Data Endpoints
GET /api/market-data/{symbol}/ipo- IPO InformationGET /api/market-data/{symbol}/indicators- Technical IndicatorsGET /api/market-data/{symbol}/ttm- TTM DataGET /api/market-data/{symbol}/current- Current Financial MetricsGET /api/market-data/{symbol}/financials-quarterly- Quarterly FinancialsGET /api/market-data/{symbol}/financials-annual- Annual FinancialsGET /api/market-data/{symbol}/history-quarterly- Quarterly HistoryGET /api/market-data/{symbol}/history-annual- Annual HistoryGET /api/market-data/{symbol}/dividend- Dividend DataGET /api/market-data/{symbol}/enterprise-value- Enterprise ValueGET /api/market-data/{symbol}/credit-ratings- Credit Ratings