get_interbank_rates: Interbank money market/deposit rates and volume

get_interbank_ratesR Documentation

Interbank money market/deposit rates and volume

Description

Obtain daily interbank money market rates and volumes of transactions according to tenure (2015 - present) from the BNM API.

Usage

get_islamic_interbank_rate(date = NULL, year = NULL, month = NULL)

get_interest_volume(
  product = "money_market_operations",
  date = NULL,
  year = NULL,
  month = NULL
)

get_interest_rate(
  product = "money_market_operations",
  date = NULL,
  year = NULL,
  month = NULL
)

Arguments

date

Character string of date with format as defined by RFC 3339, section 5.6 (YYYY-MM-DD). If specified, return values for the specified date.

year, month

Year and month as integers. If date, year and month left blank, return today's values.

product

One of "money_market_operations", "interbank" or "overall"

Details

Interbank money market rate: Daily interbank money market rates and volumes of transactions according to tenure. (2015 - present) Interbank money market volume: Daily interbank money market rates and volumes of transactions according to tenure. (2015 - present) Islamic interbank deposit rate: Daily weighted average of Islamic interbank deposit rates for various tenures. (Jan 2015-present)

Functions

  • get_islamic_interbank_rate(): Islamic interbank deposit rate

  • get_interest_volume(): Interbank money market volume

  • get_interest_rate(): Interbank money market rate

Source

https://apikijangportal.bnm.gov.my/

Examples

## Not run: get_interest_rate()
get_interest_rate(date = "2018-01-01")
get_interest_rate(year = 2016, month = 2)
get_interest_rate(product = "overall", year = 2016, month = 2)
## Not run: get_interest_volume()
get_interest_volume(date = "2018-01-01")
get_interest_volume(year = 2016, month = 2)
get_interest_volume(product = "overall", year = 2016, month = 2)
## Not run: get_islamic_interbank_rate()
get_islamic_interbank_rate(date = "2018-01-01")
get_islamic_interbank_rate(year = 2016, month = 2)

philip-khor/bnmr documentation built on Nov. 23, 2023, 6:59 a.m.