getting online Forex data

17 visualizaciones (últimos 30 días)
Abolfazl Nejatian
Abolfazl Nejatian el 7 de En. de 2020
Editada: Saeid Kamandi el 29 de Dic. de 2021
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 comentario
Andrew Janke
Andrew Janke el 31 de En. de 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.

Iniciar sesión para comentar.

Respuestas (1)

Saeid Kamandi
Saeid Kamandi el 29 de Dic. de 2021
Editada: Saeid Kamandi el 29 de Dic. de 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.

Categorías

Más información sobre Environment and Settings en Help Center y File Exchange.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by