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!