Search in sources :

Example 1 with CurrencyEntry

use of com.github.jnidzwetzki.cryptobot.CurrencyEntry in project crypto-bot by jnidzwetzki.

the class TestCapitalAllocation method testCapitalAllocationExchange1.

@Test
public void testCapitalAllocationExchange1() throws APIException {
    final PortfolioManager portfolioManager = buildPortfolioManager();
    final Map<BitfinexCurrencyPair, CurrencyEntry> entries = new HashMap<>();
    final CurrencyEntry entry1 = new CurrencyEntry(BitfinexCurrencyPair.BTC_USD, 1000, 990);
    entries.put(BitfinexCurrencyPair.BTC_USD, entry1);
    portfolioManager.calculatePositionSizes(entries);
    // Max loss = 10, max capital allocation 50%
    Assert.assertEquals(0.45, entry1.getPositionSize(), DELTA);
}
Also used : HashMap(java.util.HashMap) BasePortfolioManager(com.github.jnidzwetzki.cryptobot.portfolio.BasePortfolioManager) PortfolioManager(com.github.jnidzwetzki.cryptobot.portfolio.PortfolioManager) CurrencyEntry(com.github.jnidzwetzki.cryptobot.CurrencyEntry) BitfinexCurrencyPair(com.github.jnidzwetzki.bitfinex.v2.entity.BitfinexCurrencyPair) Test(org.junit.Test)

Example 2 with CurrencyEntry

use of com.github.jnidzwetzki.cryptobot.CurrencyEntry in project crypto-bot by jnidzwetzki.

the class TestCapitalAllocation method testCapitalAllocationExchangeMaxPositionLoss1.

@Test
public void testCapitalAllocationExchangeMaxPositionLoss1() throws APIException {
    final PortfolioManager portfolioManager = buildPortfolioManager();
    final Map<BitfinexCurrencyPair, CurrencyEntry> entries = new HashMap<>();
    final CurrencyEntry entry1 = new CurrencyEntry(BitfinexCurrencyPair.BTC_USD, 1000, 0);
    entries.put(BitfinexCurrencyPair.BTC_USD, entry1);
    portfolioManager.calculatePositionSizes(entries);
    // Max loss = 10, max capital allocation 50%
    Assert.assertEquals(0.045, entry1.getPositionSize(), DELTA);
}
Also used : HashMap(java.util.HashMap) BasePortfolioManager(com.github.jnidzwetzki.cryptobot.portfolio.BasePortfolioManager) PortfolioManager(com.github.jnidzwetzki.cryptobot.portfolio.PortfolioManager) CurrencyEntry(com.github.jnidzwetzki.cryptobot.CurrencyEntry) BitfinexCurrencyPair(com.github.jnidzwetzki.bitfinex.v2.entity.BitfinexCurrencyPair) Test(org.junit.Test)

Example 3 with CurrencyEntry

use of com.github.jnidzwetzki.cryptobot.CurrencyEntry in project crypto-bot by jnidzwetzki.

the class TestCapitalAllocation method testCapitalAllocationExchange2.

@Test
public void testCapitalAllocationExchange2() throws APIException {
    final PortfolioManager portfolioManager = buildPortfolioManager();
    final Map<BitfinexCurrencyPair, CurrencyEntry> entries = new HashMap<>();
    final CurrencyEntry entry1 = new CurrencyEntry(BitfinexCurrencyPair.BTC_USD, 1000, 990);
    entries.put(BitfinexCurrencyPair.BTC_USD, entry1);
    final CurrencyEntry entry2 = new CurrencyEntry(BitfinexCurrencyPair.IOT_USD, 1000, 990);
    entries.put(BitfinexCurrencyPair.IOT_USD, entry2);
    portfolioManager.calculatePositionSizes(entries);
    // Max loss = 10, max capital allocation 50%
    Assert.assertEquals(0.45, entry1.getPositionSize(), DELTA);
    Assert.assertEquals(0.45, entry2.getPositionSize(), DELTA);
}
Also used : HashMap(java.util.HashMap) BasePortfolioManager(com.github.jnidzwetzki.cryptobot.portfolio.BasePortfolioManager) PortfolioManager(com.github.jnidzwetzki.cryptobot.portfolio.PortfolioManager) CurrencyEntry(com.github.jnidzwetzki.cryptobot.CurrencyEntry) BitfinexCurrencyPair(com.github.jnidzwetzki.bitfinex.v2.entity.BitfinexCurrencyPair) Test(org.junit.Test)

Example 4 with CurrencyEntry

use of com.github.jnidzwetzki.cryptobot.CurrencyEntry in project crypto-bot by jnidzwetzki.

the class PortfolioManager method calculatePositionSizes.

/**
 * Calculate the position sizes
 * @param entries
 * @throws APIException
 */
@VisibleForTesting
public void calculatePositionSizes(final Map<BitfinexCurrencyPair, CurrencyEntry> entries) throws APIException {
    final Wallet wallet = getWalletForCurrency("USD");
    // Wallet could be empty
    if (wallet == null) {
        throw new APIException("Unable to find USD wallet");
    }
    final double capitalAvailable = getAvailablePortfolioValueInUSD() * getInvestmentRate();
    double capitalNeeded = 0;
    for (final BitfinexCurrencyPair currency : entries.keySet()) {
        final CurrencyEntry entry = entries.get(currency);
        final double positionSize = calculatePositionSize(entry);
        entry.setPositionSize(positionSize);
        capitalNeeded = capitalNeeded + (positionSize * entry.getEntryPrice());
    }
    // Need the n% risk per position more than the available capital
    if (capitalNeeded > capitalAvailable) {
        final double investmentCorrectionFactor = capitalAvailable / capitalNeeded;
        logger.info("Needed capital {}, available capital {} ({})", capitalNeeded, capitalAvailable, investmentCorrectionFactor);
        capitalNeeded = 0;
        for (final BitfinexCurrencyPair currency : entries.keySet()) {
            final CurrencyEntry entry = entries.get(currency);
            final double newPositionSize = roundPositionSize(entry.getPositionSize() * investmentCorrectionFactor);
            entry.setPositionSize(newPositionSize);
            capitalNeeded = capitalNeeded + (entry.getPositionSize() * entry.getEntryPrice());
        }
    }
}
Also used : APIException(com.github.jnidzwetzki.bitfinex.v2.entity.APIException) Wallet(com.github.jnidzwetzki.bitfinex.v2.entity.Wallet) CurrencyEntry(com.github.jnidzwetzki.cryptobot.CurrencyEntry) BitfinexCurrencyPair(com.github.jnidzwetzki.bitfinex.v2.entity.BitfinexCurrencyPair) VisibleForTesting(com.google.common.annotations.VisibleForTesting)

Example 5 with CurrencyEntry

use of com.github.jnidzwetzki.cryptobot.CurrencyEntry in project crypto-bot by jnidzwetzki.

the class PortfolioManager method placeNewEntryOrders.

/**
 * Place the new entry orders
 * @param entries
 * @throws APIException
 * @throws InterruptedException
 */
private void placeNewEntryOrders(final Map<BitfinexCurrencyPair, CurrencyEntry> entries) throws APIException, InterruptedException {
    // Check current limits and position sizes
    for (final BitfinexCurrencyPair currency : entries.keySet()) {
        final ExchangeOrder order = getOpenOrderForSymbol(currency.toBitfinexString());
        final CurrencyEntry entry = entries.get(currency);
        final double entryPrice = entry.getEntryPrice();
        final double positionSize = entry.getPositionSize();
        if (positionSize < currency.getMinimumOrderSize()) {
            logger.info("Not placing order for {}, position size is too small {}", currency, positionSize);
            continue;
        }
        // Old order present
        if (order != null) {
            if (hasEntryOrderChanged(order, entryPrice, positionSize)) {
                logger.info("Entry order for {}, values changed (amount: {} / {}} (price: {} / {})", currency, order.getAmount(), positionSize, order.getPrice(), entryPrice);
                cancelOrder(order);
            } else {
                logger.info("Not placing a new order for {}, old order still active", currency);
                continue;
            }
        }
        final BitfinexOrder newOrder = BitfinexOrderBuilder.create(currency, getOrderType(), positionSize).withPrice(entryPrice).setPostOnly().build();
        placeOrder(newOrder);
    }
}
Also used : BitfinexOrder(com.github.jnidzwetzki.bitfinex.v2.entity.BitfinexOrder) CurrencyEntry(com.github.jnidzwetzki.cryptobot.CurrencyEntry) BitfinexCurrencyPair(com.github.jnidzwetzki.bitfinex.v2.entity.BitfinexCurrencyPair) ExchangeOrder(com.github.jnidzwetzki.bitfinex.v2.entity.ExchangeOrder)

Aggregations

BitfinexCurrencyPair (com.github.jnidzwetzki.bitfinex.v2.entity.BitfinexCurrencyPair)8 CurrencyEntry (com.github.jnidzwetzki.cryptobot.CurrencyEntry)8 BasePortfolioManager (com.github.jnidzwetzki.cryptobot.portfolio.BasePortfolioManager)6 PortfolioManager (com.github.jnidzwetzki.cryptobot.portfolio.PortfolioManager)6 HashMap (java.util.HashMap)6 Test (org.junit.Test)6 APIException (com.github.jnidzwetzki.bitfinex.v2.entity.APIException)1 BitfinexOrder (com.github.jnidzwetzki.bitfinex.v2.entity.BitfinexOrder)1 ExchangeOrder (com.github.jnidzwetzki.bitfinex.v2.entity.ExchangeOrder)1 Wallet (com.github.jnidzwetzki.bitfinex.v2.entity.Wallet)1 VisibleForTesting (com.google.common.annotations.VisibleForTesting)1