use of name.abuchen.portfolio.model.Taxonomy in project portfolio by buchen.
the class ClassificationTestCase method testCase4_TwoAccountsEach100Percent.
@Test
public void testCase4_TwoAccountsEach100Percent() {
Taxonomy case1 = client.getTaxonomies().stream().filter(t -> "case_4".equals(t.getName())).findAny().orElseThrow(IllegalArgumentException::new);
// check performance of 'subcategory'
Classification ccategory = case1.getAllClassifications().stream().filter(c -> "category".equals(c.getName())).findAny().orElseThrow(IllegalArgumentException::new);
Client categoryClient = new ClientClassificationFilter(ccategory).filter(client);
List<PortfolioTransaction> txp = categoryClient.getPortfolios().stream().flatMap(p -> p.getTransactions().stream()).collect(Collectors.toList());
assertThat(txp, hasSize(0));
List<AccountTransaction> txa = categoryClient.getAccounts().stream().flatMap(a -> a.getTransactions().stream()).collect(Collectors.toList());
assertThat(txa, hasItem(allOf(//
hasProperty("dateTime", is(LocalDateTime.parse("2012-01-02T00:00"))), //
hasProperty("type", is(AccountTransaction.Type.REMOVAL)), hasProperty("monetaryAmount", is(Money.of(CurrencyUnit.EUR, Values.Amount.factorize(2397.60)))))));
// check that transfer between two accounts is created
assertThat(txa, hasItem(allOf(//
hasProperty("dateTime", is(LocalDateTime.parse("2012-01-25T00:00"))), //
hasProperty("type", is(AccountTransaction.Type.TRANSFER_IN)), hasProperty("monetaryAmount", is(Money.of(CurrencyUnit.EUR, Values.Amount.factorize(100)))))));
assertThat(txa, hasItem(allOf(//
hasProperty("dateTime", is(LocalDateTime.parse("2012-01-25T00:00"))), //
hasProperty("type", is(AccountTransaction.Type.TRANSFER_OUT)), hasProperty("monetaryAmount", is(Money.of(CurrencyUnit.EUR, Values.Amount.factorize(100)))))));
// check that taxes are not included:
// tax refund w/o security
assertThat(txa, hasItem(allOf(//
hasProperty("dateTime", is(LocalDateTime.parse("2012-01-26T00:00"))), //
hasProperty("type", is(AccountTransaction.Type.DEPOSIT)), hasProperty("monetaryAmount", is(Money.of(CurrencyUnit.EUR, Values.Amount.factorize(10)))))));
// tax refund w/ security
assertThat(txa, hasItem(allOf(//
hasProperty("dateTime", is(LocalDateTime.parse("2012-01-27T00:00"))), //
hasProperty("type", is(AccountTransaction.Type.DEPOSIT)), hasProperty("monetaryAmount", is(Money.of(CurrencyUnit.EUR, Values.Amount.factorize(10)))))));
// tax transaction
assertThat(txa, hasItem(allOf(//
hasProperty("dateTime", is(LocalDateTime.parse("2012-01-28T00:00"))), //
hasProperty("type", is(AccountTransaction.Type.REMOVAL)), hasProperty("monetaryAmount", is(Money.of(CurrencyUnit.EUR, Values.Amount.factorize(10)))))));
// create index
List<Exception> warnings = new ArrayList<>();
PerformanceIndex index_subcategory = PerformanceIndex.forClassification(client, converter, ccategory, interval, warnings);
assertThat(warnings.isEmpty(), is(true));
assertThat(index_subcategory.getTotals()[index_subcategory.getTotals().length - 1], is(Values.Amount.factorize(1783.02)));
}
use of name.abuchen.portfolio.model.Taxonomy in project portfolio by buchen.
the class SecurityTaxAndFeeAccountTransactionsTestCase method checkTaxonomyWihtAccountOnlyAssignment.
@Test
public void checkTaxonomyWihtAccountOnlyAssignment() {
// if only the account is classified, the fees and taxes related to the
// security must be plain deposit and removal transactions
Taxonomy case5 = client.getTaxonomies().stream().filter(t -> "case_account_classification".equals(t.getName())).findAny().orElseThrow(IllegalArgumentException::new);
Classification classification = case5.getAllClassifications().stream().filter(c -> "category_account".equals(c.getName())).findAny().orElseThrow(IllegalArgumentException::new);
Client filteredClient = new ClientClassificationFilter(classification).filter(client);
List<AccountTransaction> txa = filteredClient.getAccounts().stream().flatMap(a -> a.getTransactions().stream()).collect(Collectors.toList());
// expect the 6 original transactions
assertThat(txa.size(), is(6));
// check for additional transactions
assertThat(txa, hasItem(allOf(//
hasProperty("dateTime", is(LocalDateTime.parse("2017-01-09T00:00"))), //
hasProperty("type", is(AccountTransaction.Type.REMOVAL)), hasProperty("monetaryAmount", is(Money.of(CurrencyUnit.EUR, Values.Amount.factorize(10)))))));
assertThat(txa, hasItem(allOf(//
hasProperty("dateTime", is(LocalDateTime.parse("2017-01-10T00:00"))), //
hasProperty("type", is(AccountTransaction.Type.DEPOSIT)), hasProperty("monetaryAmount", is(Money.of(CurrencyUnit.EUR, Values.Amount.factorize(5)))))));
}
use of name.abuchen.portfolio.model.Taxonomy in project portfolio by buchen.
the class SecurityTaxAndFeeAccountTransactionsTestCase method testAdidas.
@Test
public void testAdidas() {
SecurityPerformanceSnapshot snapshot = SecurityPerformanceSnapshot.create(client, converter, interval);
SecurityPerformanceRecord record = snapshot.getRecords().stream().filter(r -> r.getSecurity().equals(adidas)).findAny().orElseThrow(IllegalArgumentException::new);
assertThat(record.getTransactions().size(), is(6));
// fees and taxes from the buy transaction + separate transactions
assertThat(record.getFees(), is(Money.of(CurrencyUnit.EUR, Values.Amount.factorize(10d + 10d - 5d))));
assertThat(record.getTaxes(), is(Money.of(CurrencyUnit.EUR, Values.Amount.factorize(10d + 25d - 5d))));
// delta is end value - starting value including all fees and taxes
assertThat(record.getDelta(), is(Money.of(CurrencyUnit.EUR, Values.Amount.factorize(1456.5 - 1533 - 10 + 5 - 25 + 5))));
// IRR as calculated in Excel
// @formatter:off
// date w/ tax w/o tax
// 02.01.17 -1533 -1523
// 09.01.17 -10 -10
// 10.01.17 5 5
// 11.01.17 -25 0
// 12.01.17 5 0
// 31.01.17 1456,5 1456,5
// XIRR -0,573350433 -0,453151944
// @formatter:on
assertThat(record.getIrr(), closeTo(-0.453151944d, 1.0e-8));
// check filtering - ClientSecurityFilter
Client filteredClient = new ClientSecurityFilter(adidas).filter(client);
checkFilteredClientAdidas(filteredClient, 1.0);
// check filtering - ClientClassificationFilter
Taxonomy case1 = client.getTaxonomies().stream().filter(t -> "case_full_classification_adidas".equals(t.getName())).findAny().orElseThrow(IllegalArgumentException::new);
Classification classification = case1.getAllClassifications().stream().filter(c -> "category_security".equals(c.getName())).findAny().orElseThrow(IllegalArgumentException::new);
filteredClient = new ClientClassificationFilter(classification).filter(client);
checkFilteredClientAdidas(filteredClient, 1.0);
// TTWROR must be identical to one calculated via ClientSecurityFilter
// (implicitly used by the SecurityPeformanceSnapshot)
PerformanceIndex index = PerformanceIndex.forClassification(client, converter, classification, interval, new ArrayList<>());
assertThat(index.getFinalAccumulatedPercentage(), is(record.getTrueTimeWeightedRateOfReturn()));
// a partial assignment of the security should be identical to the full
// assignment - only the weight differs
Taxonomy case2 = client.getTaxonomies().stream().filter(t -> "case_partial_classification_adidas".equals(t.getName())).findAny().orElseThrow(IllegalArgumentException::new);
classification = case2.getAllClassifications().stream().filter(c -> "category_security".equals(c.getName())).findAny().orElseThrow(IllegalArgumentException::new);
filteredClient = new ClientClassificationFilter(classification).filter(client);
checkFilteredClientAdidas(filteredClient, 0.5);
}
use of name.abuchen.portfolio.model.Taxonomy in project portfolio by buchen.
the class ClassificationIndexTest method createClient.
private Client createClient(int weight) {
Client client = new Client();
Taxonomy taxonomy = //
new TaxonomyBuilder().addClassification(//
"one").addTo(client);
Security security = //
new SecurityBuilder().addPrice("2011-12-31", //
100 * Values.Quote.factor()).addPrice("2012-01-03", //
106 * Values.Quote.factor()).addPrice("2012-01-08", //
112 * Values.Quote.factor()).assign(taxonomy, "one", //
weight).addTo(client);
Account account = //
new AccountBuilder().deposit_("2011-12-31", //
10000 * Values.Amount.factor()).interest("2012-01-01", //
230 * Values.Amount.factor()).deposit_("2012-01-02", //
200 * Values.Amount.factor()).interest("2012-01-02", //
200 * Values.Amount.factor()).withdraw("2012-01-03", //
400 * Values.Amount.factor()).fees____("2012-01-03", //
234 * Values.Amount.factor()).interest("2012-01-04", //
293 * Values.Amount.factor()).interest("2012-01-05", //
293 * Values.Amount.factor()).deposit_("2012-01-06", //
5400 * Values.Amount.factor()).interest("2012-01-06", //
195 * Values.Amount.factor()).withdraw("2012-01-07", //
3697 * Values.Amount.factor()).fees____("2012-01-07", //
882 * Values.Amount.factor()).fees____("2012-01-08", //
1003 * Values.Amount.factor()).dividend("2012-01-08", 100 * Values.Amount.factor(), //
security).assign(taxonomy, "one", //
weight).addTo(client);
//
new PortfolioBuilder(account).buy(security, "2012-01-01", 50 * Values.Share.factor(), //
50 * 101 * Values.Amount.factor()).inbound_delivery(security, "2012-01-01", 100 * Values.Share.factor(), //
100 * 100 * Values.Amount.factor()).sell(security, "2012-01-05", 50 * Values.Share.factor(), //
50 * 105 * Values.Amount.factor()).addTo(client);
return client;
}
use of name.abuchen.portfolio.model.Taxonomy in project portfolio by buchen.
the class GroupByTaxonomyTest method testThatAccountsAreClassifiedCorrectlyWhenFiltered.
@Test
public void testThatAccountsAreClassifiedCorrectlyWhenFiltered() {
// bug report:
// https://forum.portfolio-performance.info/t/vermoegensaufstellung-klassifizierung-mit-filter/1129
Client client = new Client();
Taxonomy taxonomy = //
new TaxonomyBuilder().addClassification(//
"debt").addTo(client);
Security a = //
new SecurityBuilder().addPrice("2010-01-01", //
Values.Quote.factorize(10)).assign(taxonomy, "debt", //
Classification.ONE_HUNDRED_PERCENT).addTo(client);
Account account = //
new AccountBuilder().deposit_("2010-01-01", Values.Amount.factorize(100)).assign(taxonomy, "debt", //
Classification.ONE_HUNDRED_PERCENT).addTo(client);
//
new PortfolioBuilder(account).inbound_delivery(a, "2010-01-01", Values.Share.factorize(10), //
10000).addTo(client);
ClientFilter filter = new ClientClassificationFilter(taxonomy.getClassificationById("debt"));
LocalDate date = LocalDate.parse("2010-01-01");
ClientSnapshot snapshot = ClientSnapshot.create(filter.filter(client), new TestCurrencyConverter(), date);
assertNotNull(snapshot);
GroupByTaxonomy grouping = snapshot.groupByTaxonomy(taxonomy);
// everything is classified
assertThat(grouping.asList().size(), is(1));
// two positions in 'debt' category
AssetCategory debt = grouping.byClassification(taxonomy.getClassificationById("debt"));
assertThat(debt.getValuation(), is(Money.of(CurrencyUnit.EUR, Values.Money.factorize(200))));
assertThat(debt.getPositions().size(), is(2));
// nothing in unassigned
AssetCategory unassigned = null;
for (AssetCategory category : grouping.asList()) if (category.getClassification().getId().equals(Classification.UNASSIGNED_ID))
unassigned = category;
assertThat(unassigned, nullValue());
}
Aggregations