-
Notifications
You must be signed in to change notification settings - Fork 1
/
webveiw.html
210 lines (189 loc) · 9.34 KB
/
webveiw.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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
<!DOCTYPE html>
<html lang="ko">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=euc-kr" />
<style>
table {border-collapse: collapse}
td, th {padding:5px; width:120px}
</style>
<script src="https://code.jquery.com/jquery-1.4.4.min.js"></script>
<script>
// 전역 변수 세팅
var usd = 0;
var alert_array = new Array();
// 천단위 콤마 함수
function numberWithCommas(x) {
return x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
}
// 숫자 외 문자열 제거 함수
function numberDeleteChar(x) {
return x.toString().replace(/[^0-9]+/g, '');
}
// 코인원 함수
function coinone(){
$.get('https://api.coinone.co.kr/ticker?currency=all', function(data) {
var coinone_btc = parseFloat(data['btc']['last']);
var coinone_eth = parseFloat(data['eth']['last']);
var coinone_xrp = parseFloat(data['xrp']['last']);
$('#coinone_BTC').html(numberWithCommas(coinone_btc)); // 거래소 시세 정보 표에 값 세팅
$('#coinone_ETH').html(numberWithCommas(coinone_eth));
$('#coinone_XRP').html(numberWithCommas(coinone_xrp));
});
}
// 빗썸 함수
function bithumb(){
$.get('https://api.bithumb.com/public/ticker/ALL', function(data) {
var bithumb_btc = parseFloat(data['data']['BTC']['closing_price']);
var bithumb_eth = parseFloat(data['data']['ETH']['closing_price']);
var bithumb_xrp = parseFloat(data['data']['XRP']['closing_price']);
$('#bithumb_BTC').html(numberWithCommas(bithumb_btc)); // 거래소 시세 정보 표에 값 세팅
$('#bithumb_ETH').html(numberWithCommas(bithumb_eth));
$('#bithumb_XRP').html(numberWithCommas(bithumb_xrp));
});
}
// 업비트 함수
function upbit(){
$.get('https://api.upbit.com/v1/ticker?markets=KRW-BTC', function(data) {
var upbit_btc = parseFloat(data[0]['prev_closing_price']);
$('#upbit_BTC').html(numberWithCommas(upbit_btc));
});
$.get('https://api.upbit.com/v1/ticker?markets=KRW-ETH', function(data) {
var upbit_eth = parseFloat(data[0]['prev_closing_price']);
$('#upbit_ETH').html(numberWithCommas(upbit_eth));
});
$.get('https://api.upbit.com/v1/ticker?markets=KRW-XRP', function(data) {
var upbit_xrp = parseFloat(data[0]['prev_closing_price']);
$('#upbit_XRP').html(numberWithCommas(upbit_xrp));
});
}
// 알람 세팅 함수
function alert_setting() {
var selectTrade = $("#targetTrade option:selected").val(); // 선택된 거래소
var selectAmount = numberDeleteChar($("#targetAmount").val()); // 선택된 시세
var targetIf = $("#targetIf option:selected").val(); // 이상/이하
var tmp_array = new Array(selectTrade, selectAmount, targetIf); // 세팅 값 3개를 묶음
alert_array.push(tmp_array); // 세팅 값 저장
if(targetIf == '0')
var targetIfPrint = "<font color='blue'>이하</font>";
else if(targetIf == '1')
var targetIfPrint = "<font color='red'>이상</font>";
$("#alert_list").append("<li><b>"+selectTrade+"</b> 거래소의 시세가 <b>"+numberWithCommas(selectAmount)+"</b> 원 "+targetIfPrint+" 일 때 알람</li>")
}
// 알람 실행 함수
function alert_start() {
// 알람 배열 크기만큼 순회
for(var i=0; i < alert_array.length; i++) {
if(typeof alert_array[i]=='undefined') continue; // 지워진 알람이면 건너뛰기
var selectTrade = alert_array[i][0];
var selectAmount = alert_array[i][1];
var targetIf = alert_array[i][2];
var currentAmount = numberDeleteChar($('#'+selectTrade).html()); // 선택된 거래소의 현재 시세
var d = new Date();
if(targetIf == '0' && parseFloat(currentAmount) <= parseFloat(selectAmount)) { // 선택된 거래소의 현재 시세가 설정 값보다 이하일때
alert(selectTrade + " 거래소의 시세가 " + numberWithCommas(selectAmount) + "원 이하(" + numberWithCommas(currentAmount) + ")입니다.\n" + d.toString());
delete(alert_array[i]); // 알람 세팅 값 삭제
} else if(targetIf == '1' && parseFloat(currentAmount) >= parseFloat(selectAmount)) { // 선택된 거래소의 현재 시세가 설정 값보다 이상일때
alert(selectTrade + " 거래소의 시세가 " + numberWithCommas(selectAmount) + "원 이상(" + numberWithCommas(currentAmount) + ")입니다.\n" + d.toString());
delete(alert_array[i]); // 알람 세팅 값 삭제
}
}
// 알람목록 갱신
$("#alert_list").empty();
for(var i=0; i < alert_array.length; i++) {
if(typeof alert_array[i]=='undefined') continue; // 지워진 알람이면 건너뛰기
var selectTrade = alert_array[i][0];
var selectAmount = alert_array[i][1];
var targetIf = alert_array[i][2];
if(targetIf == '0') var targetIfPrint = "<font color='blue'>이하</font>";
else if(targetIf == '1') var targetIfPrint = "<font color='red'>이상</font>";
$("#alert_list").append("<li><b>"+selectTrade+"</b> 거래소의 시세가 <b>"+numberWithCommas(selectAmount)+"</b> 원 "+targetIfPrint+" 일 때 알람</li>")
}
}
// 현재 시간 갱신
function CurrentTime() {
var d = new Date();
$("#lastUpdate").html(d.toString());
}
// 갱신 함수
function proc() {
try {
coinone(); // 코인원
bithumb(); // 빗썸
upbit(); // 업비트
alert_start(); // 알람 확인
CurrentTime(); // 갱신 시간
} catch(e){
} finally {
setTimeout("proc()", 10000); //10초후 재시작
}
}
</script>
</head>
<body onLoad="proc()">
<!-- 거래소 시세 정보 -->
<table border=1>
<tr>
<th></th>
<th>코인원</th>
<th>빗썸</th>
<th>업비트</th>
</tr>
<tr>
<td>비트코인</td>
<td id="coinone_BTC"></td>
<td id="bithumb_BTC"></td>
<td id="upbit_BTC"></td>
</tr>
<tr>
<td>이더리움</td>
<td id="coinone_ETH"></td>
<td id="bithumb_ETH"></td>
<td id="upbit_ETH"></td>
</tr>
<tr>
<td>리플</td>
<td id="coinone_XRP"></td>
<td id="bithumb_XRP"></td>
<td id="upbit_XRP"></td>
</tr>
<tr>
<td>최근 갱신 시간</td>
<td colspan="4" id="lastUpdate"></td>
</tr>
</table>
<!-- 작대기 구분 -->
<hr>
<!-- 알람 설정 -->
<select id="targetTrade">
<option value="coinone_BTC">코인원 비트코인</option>
<option value="coinone_ETH">코인원 이더리움</option>
<option value="coinone_XRP">코인원 리플</option>
<option value="bithumb_BTC">빗썸 비트코인</option>
<option value="bithumb_ETH">빗썸 이더리움</option>
<option value="bithumb_XRP">빗썸 리플</option>
<option value="upbit_BTC">업비트 비트코인</option>
<option value="upbit_ETH">업비트 이더리움</option>
<option value="upbit_XRP">업비트 리플</option>
</select> 이
<input id="targetAmount" type="text" value="3000000"> 원
<select id="targetIf">
<option value="1">이상</option>
<option value="0">이하</option>
</select> 일때 알람
<input id="targetSetting" type="button" value="설정" onClick="alert_setting()">
<!-- 알람 목록 -->
<ul id="alert_list"></ul>
</body>
<script src="https://1forge.com/widget-cdn/forex-ticker/main.js" type="text/javascript"></script>
<div id="forex-ticker"></div>
<script>
ForexTicker.init(
{
pairs: ["BTCUSD" ,"ETHUSD", "XRPUSD", "BCHUSD"],
theme: "light", //this can be "light" or "dark"
margin: "10px",
width: "100%",
height: "600px",
});
</script>
</html>