API Reference

MarketData

FinancialDSL.MarketData.AbstractMarketDataProviderType

Interface

  • MarketData.get_value(provider, serie_id, at, asof::Date; locf::Bool=false) :: Union{Missing, T}

  • MarketData.get_serie_currency(provider, serie_id) :: Union{Nothing, Currecies.Currency}

  • MarketData.has_serie(provider, serie_id) :: Bool

Arguments

  • at : a key to the value of the time series.

  • asof : the closing date at which the time series is being assessed. This is usually set to the pricing date.

  • locf : last observation carried forward. Use locf=true to repeat the latest observation prior to at.

Provided methods

  • MarketData.has_value(provider, serie_id, at, asof::Date; locf::Bool=false) :: Bool

  • MarketData.get_cash(provider, serie_id, at, asof::Date; locf::Bool=false) :: Union{Missing, Currencies.Cash}

  • MarketData.assert_has_serie(provider, serie_id)

source
FinancialDSL.MarketData.get_valueFunction
get_value(provider, serie_id, at, asof::Date; locf::Bool=false) :: Union{Missing, T}

Returns a value for serie_id at state (or date) at.

Arguments

  • at : a key to the value of the time series.

  • asof : the date at which the time series is being assessed.

  • locf : last observation carried forward. Use locf=true to repeat the latest observation prior to at.

This method should error if provider does not know about serie_id. Use MarketData.assert_has_serie for that.

source

Core