Files
sure/app/models/data_enrichment.rb
Gian-Reto Tarnutzer ce5d7dd736 Add Interactive Brokers Provider (#1722)
* 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
2026-05-12 23:45:19 +02:00

19 lines
411 B
Ruby

class DataEnrichment < ApplicationRecord
belongs_to :enrichable, polymorphic: true
enum :source, {
rule: "rule",
plaid: "plaid",
simplefin: "simplefin",
lunchflow: "lunchflow",
synth: "synth",
ai: "ai",
enable_banking: "enable_banking",
coinstats: "coinstats",
mercury: "mercury",
indexa_capital: "indexa_capital",
sophtron: "sophtron",
ibkr: "ibkr"
}
end