Merge pull request #72 from keshav-005/fix-35-tradingview-timezone

Fix stock chart timezone display
This commit is contained in:
Ravi 2026-05-03 01:09:32 +05:30 committed by GitHub
commit b3406bb9b1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 3 deletions

View File

@ -195,7 +195,7 @@ export const CANDLE_CHART_WIDGET_CONFIG = (symbol: string) => ({
style: 1, style: 1,
symbol: symbol.toUpperCase(), symbol: symbol.toUpperCase(),
theme: 'dark', theme: 'dark',
timezone: 'Etc/UTC', timezone: 'exchange',
backgroundColor: '#141414', backgroundColor: '#141414',
gridColor: '#141414', gridColor: '#141414',
watchlist: [], watchlist: [],
@ -221,7 +221,7 @@ export const BASELINE_WIDGET_CONFIG = (symbol: string) => ({
style: 10, style: 10,
symbol: symbol.toUpperCase(), symbol: symbol.toUpperCase(),
theme: 'dark', theme: 'dark',
timezone: 'Etc/UTC', timezone: 'exchange',
backgroundColor: '#141414', backgroundColor: '#141414',
gridColor: '#141414', gridColor: '#141414',
watchlist: [], watchlist: [],
@ -337,4 +337,4 @@ export const WATCHLIST_TABLE_HEADER = [
'P/E Ratio', 'P/E Ratio',
'Alert', 'Alert',
'Action', 'Action',
]; ];