getting online Forex data
조회 수: 2 (최근 30일)
이전 댓글 표시
good evening every one,
i have start a project that i need to get online data rate from Euro to USD.
i just test this code,
apikey = '************'; %
c = quandl(apikey);
s = 'WGC/GOLD_DAILY_USD'; % WGC/GOLD_DAILY_USD
startdate = datetime('01-01-2015','InputFormat','MM-dd-yyyy');
enddate = datetime('now','InputFormat','MM-dd-yyyy');
periodicity = 'daily';
d = history(c,s,startdate,enddate,periodicity, ...
"limit",inf,"order","asc");
but the problem is, this data is Daily and 'quandl' couldnt give me tick data or hourly data.
so is there any way to get online rate of euro/usd tick by tick
댓글 수: 0
답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Bloomberg Desktop에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!