mirror of
https://github.com/we-promise/sure.git
synced 2026-05-27 14:34:56 +00:00
* Display multi-currency holdings correctly * Implement IBKR provider * Fix: Use historical exchange rate for historical prices * Add brokerage exchange rate for trades * Sync historical balances from IBKR * Add logos in activity history * Fix privacy mode blur in account view * Improve IBKR XML Flex report parser errors
10 lines
197 B
Ruby
10 lines
197 B
Ruby
module IbkrItem::Provided
|
|
extend ActiveSupport::Concern
|
|
|
|
def ibkr_provider
|
|
return nil unless credentials_configured?
|
|
|
|
Provider::IbkrFlex.new(query_id: query_id, token: token)
|
|
end
|
|
end
|