Questions tagged [currency-exchange-rates]

For questions relating to issues dealing with currency exchange rates. Examples include reaching currency exchange API services, converting data, historical analyses of international financial data, etc.

108 questions
0
votes
0 answers

Showing API data on leaflet.js using PHP and Javascript

I'm trying to show currency exchange rates data of each country on popup in leaflet.js I'm using the following code. function makePopupContent(country) { $.ajax({ url: "php/opencage.php", type: 'POST', dataType: 'json', …
0
votes
1 answer

Currency Exchange in Python Using request & sys libraries

import sys import requests date = str(sys.argv[1]) from_currency=str(sys.argv[2]).upper() to_currency= str(sys.argv[3]).upper() amount=float(sys.argv[4]) response =…
0
votes
1 answer

Indicator Currency

first of all I do not know a single thing about coding. I am a lawyer but like to meddle in new things. I am trying to create a indicator to show me the price of a crypto currency in TRY as a label while in USD chart. Drop down currecy menu does not…
0
votes
1 answer

Python - Scarping exchange rate data from Danish National Bank website

I would like to scrap exchange rate data, for 5 currencies, from the Danish National Bank website: https://www.nationalbanken.dk/en/statistics/exchange_rates/pages/default.aspx on a daily basis, and having it added in an Excel, always at the end of…
0
votes
1 answer

How can I fix displaying of currency conversion in react app?

I know that bug is here: const firstCurrency = Object.keys(data.rates)[0]; and because of this it displays currency of [0]currency{toAmount} for all currencies, not different for each {currencyOptions.map((option) => ( …
0
votes
1 answer

How to backfill currency data using calendar table and currency data updated monthly

I have an SQL problem that I can't figure out or seem to find any solutions that help out. I am using an SQL serverless pool on Azure Synapse. My problem is that I can't figure out how to backfill rates for each date until there is an update. For…
0
votes
1 answer

Concurrency Gem Historical Rate

Is it possible to get an historical exchange rate using the Concurrency Gem in Ruby on Rails? The current documentation only describe converting as at this moment: Concurrency Gem but it also uses data from Currency Converter API which has…
0
votes
0 answers

how to read Currencies Exchange Rates right?

Does anyone know a way to read the currency exchange rates right in laravel? We develop web exchange currency so I have a problem when I put right rates but get a different results. Example: Exchange between USD TO EGP : 1 USD = 15.70 EGP So i…
0
votes
1 answer

How can I get foreign exchange rates thru an API by using PHP or Ajax?

I need a foreign exchange rate API in PHP for my recent project, in which I need updates after 60 sec.I also need metals like Gold, Silver etc latest exchange rates. So anyone who can I guide me for a PHP endpoint providing latest exchange rates.…
0
votes
1 answer

How can I get foreign exchange rates thru an API?

I need an API that provides latest currency exchange rates for my money transfer website
0
votes
2 answers

How to add currency converter to my flutter e-commerce app?

I'm creating an app where users can upload products in their country's currency and the product will be visible for other users in their own country's currency. For example, a user from France should be able to set the price of the product in Euros…
marc walton
  • 71
  • 3
  • 11
0
votes
1 answer

Power BI exchange rate calculation

I am a newbie in Power BI desktop. We have a Sales transaction table with RateDate, orderAmount and transaction Currency Also, we have an exchange rate table with BaseCurrency(standard currency i.e. USD,EUR and INR) ,target currency, effective date…
0
votes
2 answers

Pentaho Kettle: Reading exchange rates

I am a total newbie in Pentaho Kettle/Spoon. I am reading a transaction table with amounts in different transaction currencies. The requirement is to convert the amounts in standardized currencies(in this case, EUR and USD) using the live exchange…
0
votes
1 answer

Calculate Exchange Rates in MS SQL from Currency table with effective date clause

I have a Currency table with the following structure where currency rates for each transaction currency are maintained in reference currency i.e. EUR but not necessarily in other currencies. bcur|curr | effectivedt|Expressinbase|rate EUR |SAR …
sweenal
  • 67
  • 8
0
votes
1 answer

Currency Exchange Rate in SQL Server

From Mexico's official currency exchange website, http://dof.gob.mx/index.php, I need to pull the USD rate on the far right of the page into a simple math equation in a SQL Server 2005 query to calculate USD to Mexican Pesos for invoices. Is this…
milkmood
  • 1
  • 1
  • 1