-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBigDayTrader.html
128 lines (113 loc) · 4.78 KB
/
BigDayTrader.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
<!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>Crypto 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 />
<div class="panel" style="background-color:black">
<div class="col-sm-12" style="padding:0,0;min-height:inherit;" onclick="openFullscreen();">
<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:840px;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", "OTC:GDLC", "OTC:LTCN",
"COINBASE:BTCUSD", "BITFINEX:BTCUSD", "BITTREX:BTCUSDT",
"BINANCE:ETHBTC", "COINBASE:ETHBTC", "BINANCE:ETHUSDC", "COINBASE:ETHUSD",
"BITTREX:ADABTC", "BITTREX:ADAETH", "BITTREX:ADAUSD",
"BINANCE:ADABTC", "BINANCE:ADAUSD",
"COINBASE:LINKBTC", "BITTREX:LINKBTC",
"BITTREX:LINKETH", "BITTREX:LINKUSD",
"BINANCE:LTCUSDC", "COINBASE:LTCUSD"
],
"details": false,
"studies": [
"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;">
</div>
</div>
</form>
<br /><br />
<iframe width="560" height="315" src="https://www.youtube.com/embed/WsDyRAPFBC8?autoplay=1" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<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 2020
</p>
</div>
</div>
<script type="text/javascript">
function doResizeWidget() {
openFullscreen();
}
$(window).load(function () {
setTimeout(doResizeWidget, 750);
$('#mainmenu').html(PrintMainMenu('BigCryptoChart.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();
}
var elem = document.getElementById("tradingview_fa2b8");
function openFullscreen() {
if (elem.requestFullscreen) {
elem.requestFullscreen();
} else if (elem.mozRequestFullScreen) { /* Firefox */
elem.mozRequestFullScreen();
} else if (elem.webkitRequestFullscreen) { /* Chrome, Safari & Opera */
elem.webkitRequestFullscreen();
} else if (elem.msRequestFullscreen) { /* IE/Edge */
elem.msRequestFullscreen();
}
}
</script>
</body>
</html>