File size: 1,530 Bytes
7ea4bc8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>BTC/USD Live Chart</title>
    <style>

        body, html {

            margin: 0;

            padding: 0;

            background-color: black;

            height: 100%;

            width: 100%;

            overflow: hidden;

        }



        .tradingview-widget-container {

            width: 100%;

            height: 100%;

        }



        #tradingview_9c9a7 {

            width: 100%;

            height: 100%;

        }

    </style>
</head>
<body>
    <!-- TradingView Widget BEGIN -->
    <div class="tradingview-widget-container">
        <div id="tradingview_9c9a7"></div>
        <script type="text/javascript" src="https://s3.tradingview.com/tv.js"></script>
        <script type="text/javascript">

        new TradingView.widget(

            {

                "width": "100%",

                "height": "100%",

                "symbol": "BITSTAMP:BTCUSD",

                "interval": "D",

                "timezone": "Etc/UTC",

                "theme": "dark",

                "style": "1",

                "locale": "en",

                "toolbar_bg": "#f1f3f6",

                "enable_publishing": false,

                "allow_symbol_change": true,

                "container_id": "tradingview_9c9a7"

            }

        );

        </script>
    </div>
    <!-- TradingView Widget END -->
</body>
</html>