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.
Questions tagged [currency-exchange-rates]
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',
…

Faraz Anwer
- 31
- 4
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 =…

Sameer
- 1
- 1
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…

B.Birgovan
- 3
- 1
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) => (
…