참고 : https://gist.github.com/twkang/4608424#file-lun2sol-js
country: 국가명(영문) | ||
foreign-send: 해외 송금 환율 | ||
foreign-recv: 해외 받을 때 환율 | ||
cash-buy: 현찰 살 때 환율 | ||
cash-sell: 현찰 팔 때 환율 | ||
buy-tc: TC 구입 환율 | ||
standard / basic / default : 고시환율 | ||
bok / bank-of-korea : 한국은행 환율 | ||
us-calc : 달러대비 환율 | ||
통화 | 살때 | |
JPY | =getExchangeRate($A14,"cash-buy") | |
GBP | =getExchangeRate($A14,"cash-buy") | |
EUR | =getExchangeRate($A14,"cash-buy") |
function getDate(decrease) {
var date = new Date();
if(decrease && decrease > 0) {
date = new Date(date);
date.setDate(date.getDate() - decrease);
}
var yyyy = date.getFullYear().toString(),
dd = date.getDate().toString(),
mm = (date.getMonth() + 1).toString();
if(dd.length == 1) dd = '0' + dd;
if(mm.length == 1) mm = '0' + mm;
return yyyy + mm + dd;
}
var baseURL = 'https://spib.wooribank.com/pib/jcc?withyou=ENENG0358&__ID=c008822&BAS_DT=';
function getExchangeHash() {
var html = '';
var cache = CacheService.getPublicCache();
var cached = cache.get('exchange-rate-woori');
if (cached != null) {
html = cached;
} else {
var decrease = -1;
while(html.length == 0 || html.indexOf('Today\'s exchange rates are not notified') > -1) {
decrease++;
var url = baseURL + getDate(decrease);
var html = UrlFetchApp.fetch(url).getContentText();
}
cache.put('exchange-rate-woori', html, 3600); // cache for 1 hour
}
var hash = {};
var h = html.match(/<tbody[\s\S]*?<\/tr>/g).filter(function(tr) {
return tr.indexOf('<th') == -1;
});
h.map(function(tr) {
var data = tr.match(/\<td[\s\S]*?>*?\<\/(td|th)\>/gm).map(function(td) {
var datum = td.replace(/\<td[\s\S]*?\>|\<a[\s\S]*?\>|\<\/td\>|\<\/th\>|<\/a>|,/g, '').trim();
return (isNaN(parseFloat(datum)) ? datum : parseFloat(datum));
});
var key = data.shift();
hash[key] = {
'country': data[0],
'foreign-send': data[1],
'foreign-recv': data[2],
'cash-buy': data[3],
'cash-sell': data[4],
'buy-tc': data[5],
'standard': data[6],
'bank-of-korea': data[7],
'us-calc': data[8]
};
});
return hash;
}
function getExchangeRate(currency, type) {
if(!currency) currency = 'JPY';
var data = getExchangeHash();
if(!data.hasOwnProperty(currency)) {
throw 'Unexcepted currency: ' + currency;
} else if(!data[currency].hasOwnProperty(type)) {
throw 'Unexcepted type: ' + type;
}
return data[currency][type];
}
var cellConfig = {
'N3': ['JPY', 'standard'],
'O3': ['JPY', 'cash-buy'],
'N4': ['GBP', 'standard'],
'O4': ['GBP', 'cash-buy'],
'N5': ['EUR', 'standard'],
'O5': ['EUR', 'cash-buy'],
};
function setCellValue(cell, value, apply) {
SpreadsheetApp.getActiveSheet().getRange(cell).setValue(value);
if(apply) SpreadsheetApp.flush();
}
function reloadCell() {
for(var cell in cellConfig) {
if(cellConfig.hasOwnProperty(cell)) {
setCellValue(cell, 'Loading..', true);
var value = getExchangeRate.apply(null, cellConfig[cell]);
setCellValue(cell, value, true);
}
}
} |
Articles
- 자바스크립트 종말각?! HTML에서 파이썬 실행하는 PyScript 등장!
- Excel Vba) 현재 셀에서 한줄내림 (activecell.offset(1,0).Select)
- eXCEL VBA)엑셀파일 열지않고 내용 불러오기
- autohotkey) 윈도우 ahk_id 추출하기
- Google Spreadsheet (Docs) 에서 우리은행 환율정보 이용하기
- Excel) 엑셀 콤보박스 대화상자 목록지정하기
- 한글 HEX 코드표1
- Excel VBA) 원하는 범위 지정한 뒤 복사하여 붙여넣기
- autohotkey) 편입 변수
- curl로 다음 자동로그인 가능하다.2
- autohotkey) postmessage mouse control
- DIV 라운드박스 쉽게 만들자.1
- 트랜지스터의 종류와 특정
-
네트워크 무선연결이 안될 때의 점검 방법
- php 에서 mysql 제어하기
- rss리더기
- MySQL FEDERATED / InnoDB is disabled, myint64.dll 오류 어찌하오리
- Searchindexer.exe 제거하기
- [COM] 자바스크립트 / DOM / HTML 웹페이지 컨트롤
- mysql 접속에러시 재부팅 하는 배치파일