-
Notifications
You must be signed in to change notification settings - Fork 0
/
chart.html
27 lines (27 loc) · 844 Bytes
/
chart.html
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
<div id="ccchart-container" style="width:1280px; height: 600px; position:relative; top:-50px; left:-10px;">
<div class="tradingview-widget-container">
<div id="tradingview_bc0b0"></div>
<script type="text/javascript" src="https://s3.tradingview.com/tv.js"></script>
<script type="text/javascript">
new TradingView.widget(
{
"width": 1280,
"height": 600,
"symbol": "AMZN",
"interval": "D",
"timezone": "Etc/UTC",
"theme": "dark",
"style": "1",
"locale": "en",
"toolbar_bg": "#f1f3f6",
"enable_publishing": false,
"allow_symbol_change": true,
"studies": [
"RSI@tv-basicstudies","MACD@tv-basicstudies"
],
"container_id": "tradingview_bc0b0"
}
);
</script>
</div>
</div>