Skip to content

Commit

Permalink
Add spinoff as dividend
Browse files Browse the repository at this point in the history
  • Loading branch information
dickwolff committed Jan 20, 2025
1 parent 06bce55 commit 189442e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/converters/xtbConverter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export class XtbConverter extends AbstractConverter {
else if (type.indexOf("free funds interests") > -1) {
return "interest";
}
else if (type.indexOf("dividend") > -1) {
else if (type.indexOf("dividend") > -1 || type.indexOf("spin off") > -1) {
return "dividend";
}
else if (type.indexOf("profit/loss") > -1) {
Expand Down

0 comments on commit 189442e

Please sign in to comment.