The rate of exchange (adjusted close) of MYR to CHF
The data is harvested from 4 open-source and globally-used APIs to ensure consistency.
This data is meant for analytical purposes, and is not intended to be used as a training dataset for trading algorithms.
-
A dataset containing the rates of exchange of the Malaysian Ringgit vis-à-vis major trading partners.
31 May 2023, 08:00
01 Jun 2023, 08:00
This data is made open under the Creative Commons Attribution 4.0 International License (CC BY 4.0). A human-readable copy of the license is available Here.
Connect directly to the data with Python.
# If not already installed, do: pip install pandas fastparquet
import pandas as pd
URL_DATA = 'https://storage.googleapis.com/dosm-public-economy/exchangerates-main.parquet'
df = pd.read_parquet(URL_DATA)
if 'date' in df.columns: df['date'] = pd.to_datetime(df['date'])
print(df)
Department of Statistics Malaysia
© 2023 Department of Statistics Malaysia (DOSM)