|
47 | 47 | from stonks_overwatch.services.brokers.bitvavo.services.transaction_service import ( |
48 | 48 | TransactionsService as BitvavoTransactionService, |
49 | 49 | ) |
| 50 | +from stonks_overwatch.services.brokers.bitvavo.services.update_service import UpdateService as BitvavoUpdateService |
50 | 51 | from stonks_overwatch.services.brokers.degiro.services.account_service import ( |
51 | 52 | AccountOverviewService as DeGiroAccountService, |
52 | 53 | ) |
|
64 | 65 | from stonks_overwatch.services.brokers.degiro.services.transaction_service import ( |
65 | 66 | TransactionsService as DeGiroTransactionService, |
66 | 67 | ) |
| 68 | +from stonks_overwatch.services.brokers.degiro.services.update_service import UpdateService as DeGiroUpdateService |
67 | 69 | from stonks_overwatch.services.brokers.ibkr.services.account_overview import ( |
68 | 70 | AccountOverviewService as IbkrAccountOverviewService, |
69 | 71 | ) |
|
86 | 88 | from stonks_overwatch.services.brokers.ibkr.services.transactions import ( |
87 | 89 | TransactionsService as IbkrTransactionService, |
88 | 90 | ) |
| 91 | +from stonks_overwatch.services.brokers.ibkr.services.update_service import UpdateService as IbkrUpdateService |
89 | 92 |
|
90 | 93 | # Configuration-driven broker definitions |
91 | 94 | BROKER_CONFIGS: Dict[BrokerName, Dict[str, Any]] = { |
|
99 | 102 | ServiceType.FEE: DeGiroFeeService, |
100 | 103 | ServiceType.ACCOUNT: DeGiroAccountService, |
101 | 104 | ServiceType.AUTHENTICATION: DegiroAuthenticationService, |
| 105 | + ServiceType.UPDATE: DeGiroUpdateService, |
102 | 106 | }, |
103 | 107 | }, |
104 | 108 | BrokerName.BITVAVO: { |
|
110 | 114 | ServiceType.FEE: BitvavoFeeService, |
111 | 115 | ServiceType.ACCOUNT: BitvavoAccountService, |
112 | 116 | ServiceType.AUTHENTICATION: BitvavoAuthenticationService, |
| 117 | + ServiceType.UPDATE: BitvavoUpdateService, |
113 | 118 | }, |
114 | 119 | }, |
115 | 120 | BrokerName.IBKR: { |
|
120 | 125 | ServiceType.DIVIDEND: IbkrDividendsService, |
121 | 126 | ServiceType.ACCOUNT: IbkrAccountOverviewService, |
122 | 127 | ServiceType.AUTHENTICATION: IbkrAuthenticationService, |
| 128 | + ServiceType.UPDATE: IbkrUpdateService, |
123 | 129 | }, |
124 | 130 | }, |
125 | 131 | } |
|
0 commit comments