forked from AsmrProg-YT/100-days-of-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
30 lines (30 loc) · 758 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
new TradingView.widget(
{
"autosize": true,
"symbol": "BINANCE:BTCUSDT",
"interval": "240",
"timezzone": "Etc/Utc",
"theme": "dark",
"style": "1",
"locale": "en",
"toolbar_bg": "#f1f3f6",
"enable_publishing": true,
"withdateranges": false,
"hide_side_toolbar": true,
"allow_symbol_change": true,
"watchlist": [
"BINANCE:BTCUSDT",
"BINANCE:ETHUSDT"
],
"details": true,
"hotlist": true,
"calendar": true,
"studies": [
"STD;SMA"
],
"container_id": "chart",
"show_popup_button": true,
"popup_width": "1000",
"popup_height": "650"
}
);