getting online Forex data
6 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Good evening everyone,
i have started a new work that i need to get an online rate of Euro to USD.
and i just use this code for this purpose,
apikey = '***********'; % my formal email address
c = quandl(apikey);
s = 'WGC/GOLD_DAILY_USD';
startdate = datetime('01-01-2010','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 code can only give me daily and monthly data but i need tick, minutes and hourly data too.
so the question is, is there any way to fetch an online rate of Euro to USD (from anywhere freely or not) in the Matlab environment?
thanks in advance,
Abolfazl
1 Commento
Andrew Janke
il 31 Gen 2020
This is really a market data question, and not a Matlab question. Do you have an existing market data vendor that you're working with? Lots of places have forex data, but if you want minute and tick data, you're going to have to pay for it. Once you've chosen a vendor, they provide web-based or other APIs that Matlab can work with.
Risposte (1)
Saeid Kamandi
il 29 Dic 2021
Modificato: Saeid Kamandi
il 29 Dic 2021
Hi, Abolfazl, to get forex data, you need to use MetaTrader 4, the expert data export v3 can also help you, but this is the manual way to get the data.
0 Commenti
Vedere anche
Categorie
Scopri di più su Data Import and Analysis in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!