-
Notifications
You must be signed in to change notification settings - Fork 0
/
BTCWatch.html
133 lines (123 loc) · 5.04 KB
/
BTCWatch.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
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head runat="server">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-125039435-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-125039435-1');
</script>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>BTC Watch</title>
<link href="css/bootstrap.min.css" rel="stylesheet"/> <!-- Bootstrap core CSS -->
<link href="css/style.css" rel="stylesheet"/>
</head>
<body style="background-color:black;">
<script src="Scripts/jquery-1.11.3.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="MainMenu.js"></script>
<form id="form1">
<nav class="navbar navbar-fixed-top navbar-logo navbar" id="mainmenu"></nav>
<br /><br /><br />
<div class="panel" style="background-color:black">
<div class="col-sm-12" style="padding:0,0;min-height:inherit;">
<div>
<!-- TradingView Widget BEGIN -->
<div class="tradingview-widget-container" style="padding:0 0;min-height:540px;">
<div id="tradingview_fa2b8" style="min-height:inherit;height:540px;padding-left:0px;padding-right:1px;"></div>
<div class="tradingview-widget-copyright"> </div>
<script type="text/javascript" src="https://s3.tradingview.com/tv.js"></script>
<script type="text/javascript">
new TradingView.widget({
"autosize": true, "symbol": "COINBASE:BTCUSD",
"interval": "1", "timezone": "Etc/UTC", "theme": "Dark", "style": "1",
"locale": "en", "toolbar_bg": "#f1f3f6",
"enable_publishing": false,
"withdateranges": true,
"hide_side_toolbar": false,
"allow_symbol_change": true,
"watchlist": ["OTC:GBTC", "OTC:ETHE",
"BITFINEX:BTCUSD", "BITTREX:BTCUSDT", "COINBASE:BTCUSD", "BINANCE:BTCUSD",
"BINANCE:LTCBTC", "COINBASE:LTCBTC", "POLONIEX:LTCBTC",
"BINANCE:LTCUSDC", "COINBASE:LTCUSD", "POLONIEX:LTCUSDC",
"BITTREX:ADABTC", "BINANCE:ADABTC", "BINANCE:ADAUSD", "BITTREX:ADAUSD",
"BITTREX:STRATBTC", "BITTREX:STRATBTC", "POLONIEX:STRATUSD", "POLONIEX:STRATBTC"
],
"details": false,
"studies": [
"BB@tv-basicstudies",
"MASimple@tv-basicstudies",
"MAExp@tv-basicstudies",
"VSTOP@tv-basicstudies"
],
"no_referral_id": true,
"container_id": "tradingview_fa2b8"
});
</script>
</div>
<!-- TradingView Widget END -->
</div>
</div>
<div class="col-sm-12" style="padding:0 0;min-height:inherit;">
<!-- TradingView Widget BEGIN -->
<div class="tradingview-widget-container">
<div id="tradingview_fa2b9" style="min-height:inherit;height:300px;padding-left:0px;padding-right:1px;"></div>
<div class="tradingview-widget-copyright"> </div>
<script type="text/javascript">
new TradingView.widget({
"autosize": true,
"symbol": "POLONIEX:LTCBTC",
"interval": "1", "timezone": "Etc/UTC", "theme": "Dark", "style": "1", "locale": "en", "toolbar_bg": "#f1f3f6",
"enable_publishing": false,
"hide_side_toolbar": false,
"allow_symbol_change": true,
"details": true,
"studies": [
"BB@tv-basicstudies",
"MASimple@tv-basicstudies",
"MAExp@tv-basicstudies",
"VSTOP@tv-basicstudies"
],
"no_referral_id": true,
"container_id": "tradingview_fa2b9"
});
</script>
</div>
<!-- TradingView Widget END -->
</div>
</div>
</form>
<br /><br />
<div class="container-fluid">
<div class="panel center-block" style="background-color:black;">
<p class="text-center">
[email protected]<br />
<span class="glyphicon glyphicon-copyright-mark"></span> Matthew Meents 2019
</p>
</div>
</div>
<script type="text/javascript">
function doResizeWidget() {
}
$(window).load(function () {
// setTimeout(doResizeWidget, 1500);
$('#mainmenu').html(PrintMainMenu('BTCWatch.html','Mattei\'s BTC Watch'));
});
var ppd = new Date();
function pu(s) {
ppd = new Date();
ns = 'MM' + ppd.getTime();
try {
var x = window.open(s, ns, 'location=yes,menubar=yes,resizable=yes,scrollbars=yes,toolbar=yes,status=yes');
} catch (e) { }
}
function doBack() {
window.history.back();
}
</script>
</body>
</html>