Skip to content

Commit c467c94

Browse files
authored
Bugfix/fix symbol validation in Yahoo Finance service (ghostfolio#4472)
* Fix symbol validation * Add test cases
1 parent a6952a0 commit c467c94

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

apps/api/src/services/data-provider/data-enhancer/yahoo-finance/yahoo-finance.service.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ export class YahooFinanceDataEnhancerService implements DataEnhancerInterface {
170170
symbol = quotes[0].symbol;
171171
}
172172
} catch {}
173-
} else if (symbol?.includes('-')) {
173+
} else if (symbol?.endsWith(`-${DEFAULT_CURRENCY}`)) {
174174
throw new Error(`${symbol} is not valid`);
175175
} else {
176176
symbol = this.convertToYahooFinanceSymbol(symbol);
+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Date,Code,Currency,Price,Quantity,Action,Fee
2+
12/12/2021,BTC-USD,USD,44558.42,1,buy,0

test/import/ok-btcusd.csv

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Date,Code,Currency,Price,Quantity,Action,Fee
2+
12/12/2021,BTCUSD,USD,44558.42,1,buy,0

0 commit comments

Comments
 (0)