Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Copyright 2016 Lukáš Petrovický
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.github.triceo.robozonky;
import java.math.BigDecimal;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
import java.util.Map;
import java.util.Optional;
import java.util.function.Function;
import java.util.stream.Collectors;
import java.util.stream.Stream;
import com.github.triceo.robozonky.operations.InvestOperation;
import com.github.triceo.robozonky.remote.Investment;
import com.github.triceo.robozonky.remote.Loan;
import com.github.triceo.robozonky.remote.Statistics;
import com.github.triceo.robozonky.remote.ZonkyApi;
import com.github.triceo.robozonky.remote.ZotifyApi;
import com.github.triceo.robozonky.strategy.InvestmentStrategy;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Controls the investments based on the strategy, user portfolio and balance.
*/
public class Investor {
private static final Logger LOGGER = LoggerFactory.getLogger(Investor.class);
/**
* Determine whether or not a given loan is present among existing investments.
*
* @param loan Loan in question.
* @param investments Known investments.
* @return True if present.
*/
private static boolean isLoanPresent(final Loan loan, final Collection investments) {
return investments.stream().filter(i -> loan.getId() == i.getLoanId()).findFirst().isPresent();
}
static Collection mergeInvestments(final Collection left,
final Collection right) {
if (left.isEmpty() && right.isEmpty()) {
return Collections.emptyList();
} else if (left.isEmpty()) {
return Collections.unmodifiableCollection(right);
} else if (right.isEmpty()) {
return Collections.unmodifiableCollection(left);
} else {
final Map investments
= left.stream().collect(Collectors.toMap(Investment::getLoanId, Function.identity()));
right.stream().filter(investment -> !investments.containsKey(investment.getLoanId()))
.forEach(investment -> investments.put(investment.getLoanId(), investment));
return Collections.unmodifiableCollection(investments.values());
}
}
/**
* The core investing call. Receives a particular loan, checks if the user has enough money to invest, and sends the
* command to the Zonky API.
*
* @param api Authenticated Zonky API, ready for {@link InvestOperation}.
* @param l Loan to invest into.
* @param amount Amount to invest into the loan.
* @param balance How much usable cash the user has in the wallet.
* @return Present if input valid and operation succeeded, empty otherwise.
*/
private static Optional invest(final ZonkyApi api, final Loan l, final int amount, final int balance) {
if (amount < InvestmentStrategy.MINIMAL_INVESTMENT_ALLOWED) {
Investor.LOGGER.info("Not investing into loan '{}', since investment ({} CZK) less than bare minimum.",
l, amount);
return Optional.empty();
} else if (amount > balance) {
Investor.LOGGER.info("Not investing into loan '{}', {} CZK to invest is more than {} CZK balance.",
l, amount, balance);
return Optional.empty();
} else if (amount > l.getAmount()) {
Investor.LOGGER.info("Not investing into loan '{}', {} CZK to invest is more than {} CZK loan amount.",
l, amount, l.getAmount());
return Optional.empty();
}
final Investment investment = new Investment(l, amount);
return new InvestOperation().apply(api, investment);
}
/**
* Blocked amounts represent loans in various stages. Either the user has invested and the loan has not yet been
* funded to 100 % ("na tržišti"), or the user invested and the loan has been funded ("na cestě"). In the latter
* case, the loan has already disappeared from the marketplace, which means that it will not be available for
* investing any more. As far as I know, the next stage is "v pořádku", the blocked amount is cleared and the loan
* becomes an active investment.
*
* Based on that, this method deals with the first case - when the loan is still available for investing, but we've
* already invested as evidenced by the blocked amount. It also unnecessarily deals with the second case, since
* that is represented by a blocked amount as well. But that does no harm.
*
* @param api Authenticated API that will be used to retrieve the user's blocked amounts from the wallet.
* @return Every blocked amount represents a future investment. This method returns such investments.
*/
static List retrieveInvestmentsRepresentedByBlockedAmounts(final ZonkyApi api) {
return Collections.unmodifiableList(api.getBlockedAmounts().stream()
.filter(blocked -> blocked.getLoanId() > 0) // 0 == Zonky investors' fee
.map(blocked -> {
final int loanId = blocked.getLoanId();
final int loanAmount = blocked.getAmount();
final Investment i = new Investment(api.getLoan(loanId), loanAmount);
Investor.LOGGER.debug("{} CZK is being blocked by loan {}.", loanAmount, loanId);
return i;
}).collect(Collectors.toList()));
}
private final ZonkyApi zonkyApi;
private final ZotifyApi zotifyApi;
private final BigDecimal initialBalance;
private final InvestmentStrategy strategy;
/**
* Standard constructor.
*
* @param zonky Authenticated API ready to retrieve user information.
* @param zotify Marketplace cache for reading loans out of.
* @param strategy Strategy used to determine the loans to invest in and the amounts to invest into them.
* @param initialBalance How much available cash the user has in their wallet.
*/
public Investor(final ZonkyApi zonky, final ZotifyApi zotify, final InvestmentStrategy strategy,
final BigDecimal initialBalance) {
this.zonkyApi = zonky;
this.zotifyApi = zotify;
this.initialBalance = initialBalance;
Investor.LOGGER.info("RoboZonky starting account balance is {} CZK.", this.initialBalance);
this.strategy = strategy;
}
/**
* Prepares a list of loans that are suitable for investment by asking the strategy. Then goes over that list one
* by one, in the order prescribed by the strategy, and attempts to invest into these loans. The first such
* investment operation that succeeds will return.
*
* @param balance How much money the user has in the wallet that can be used for investing.
* @param stats User's portfolio coming from the Zonky API.
* @param investmentsAlreadyMade Loans already invested into that have not yet disappeared from marketplace.
* @return The first {@link #invest(ZonkyApi, Loan, int, int)} which succeeds, or empty if none have.
*/
Optional investOnce(final BigDecimal balance, final Statistics stats,
final Collection investmentsAlreadyMade) {
final PortfolioOverview portfolio = PortfolioOverview.calculate(balance, stats, investmentsAlreadyMade);
Investor.LOGGER.debug("Current share of unpaid loans with a given rating is: {}.",
portfolio.getSharesOnInvestment());
return this.strategy.getMatchingLoans(this.zotifyApi.getLoans(), portfolio).stream()
.filter(l -> !Investor.isLoanPresent(l, investmentsAlreadyMade))
.map(l -> {
final int invest = this.strategy.recommendInvestmentAmount(l, portfolio);
return Investor.invest(this.zonkyApi, l, invest, portfolio.getCzkAvailable());
})
.flatMap(o -> o.isPresent() ? Stream.of(o.get()) : Stream.empty())
.findFirst();
}
/**
* One of the two entry points to the investment API. This takes the strategy, determines suitable loans, and tries
* to invest in as many of them as the balance allows.
*
* @return Investments made in the session.
*/
public Collection invest() {
// make sure we have enough money to invest
final BigDecimal minimumInvestmentAmount = BigDecimal.valueOf(InvestmentStrategy.MINIMAL_INVESTMENT_ALLOWED);
BigDecimal balance = this.initialBalance;
if (balance.compareTo(minimumInvestmentAmount) < 0) {
return Collections.emptyList(); // no need to do anything else
}
Collection investments = Investor.retrieveInvestmentsRepresentedByBlockedAmounts(this.zonkyApi);
Investor.LOGGER.debug("The following loans are coming from the API as already invested into: {}", investments);
final Statistics stats = this.zonkyApi.getStatistics();
// and start investing
final Collection investmentsMade = new ArrayList<>();
do {
final Optional investment = this.investOnce(balance, stats, investments);
if (!investment.isPresent()) { // there is nothing to invest into; RoboZonky is finished now
break;
}
final Investment i = investment.get();
investmentsMade.add(i);
investments = Investor.mergeInvestments(investments, Collections.singletonList(i));
balance = balance.subtract(BigDecimal.valueOf(i.getAmount()));
Investor.LOGGER.info("New account balance is {} CZK.", balance);
} while (balance.compareTo(minimumInvestmentAmount) >= 0);
return Collections.unmodifiableCollection(investmentsMade);
}
/**
* One of the two entry points to the investment API. Takes a particular loan and invests a given amount into it.
*
* @param loanId ID of the loan that should be invested into.
* @param loanAmount Amount in CZK to be invested.
* @return Present if investment succeeded, empty otherwise.
*/
public Optional invest(final int loanId, final int loanAmount) {
return Investor.invest(this.zonkyApi, this.zonkyApi.getLoan(loanId), loanAmount,
this.initialBalance.intValue());
}
}