Source code for tradeexecutor.strategy.account_correction

"""Apply accounting corrections on the strategy state.

- Read on-chain balances

- Compare them to the balances seen in the state

- Adjust statebalacnes to match chain based ones

- Generate the accounting events to reflect these changes

"""
import logging
import datetime
import enum
from _decimal import Decimal
from collections import Counter
from dataclasses import dataclass
from typing import List, Iterable, Collection, Tuple, Dict, Set

import pandas as pd
from web3 import Web3
from web3.types import BlockIdentifier

from eth_defi.provider.broken_provider import get_almost_latest_block_number
from eth_defi.token import fetch_erc20_details
from eth_defi.trace import assert_transaction_success_with_explanation
from eth_typing import HexAddress

from eth_defi.tx import AssetDelta
from tradeexecutor.ethereum.tx import TransactionBuilder
from tradeexecutor.state.generic_position import GenericPosition
from tradeexecutor.state.portfolio import Portfolio
from tradeexecutor.state.repair import close_position_with_empty_trade
from tradeexecutor.state.trade import TradeFlag, TradeExecution
from tradeexecutor.strategy.dust import DEFAULT_DUST_EPSILON, get_dust_epsilon_for_pair, get_dust_epsilon_for_asset, DEFAULT_RELATIVE_EPSILON, \
    get_relative_epsilon_for_asset
from tradeexecutor.strategy.lending_protocol_leverage import reset_credit_supply_loan
from tradeexecutor.strategy.pandas_trader.position_manager import PositionManager
from tradeexecutor.strategy.pricing_model import PricingModel
from tradeexecutor.strategy.trading_strategy_universe import translate_trading_pair, TradingStrategyUniverse
from tradingstrategy.pair import PandasPairUniverse

from tradeexecutor.state.balance_update import BalanceUpdate, BalanceUpdatePositionType, BalanceUpdateCause
from tradeexecutor.state.identifier import AssetIdentifier
from tradeexecutor.state.position import TradingPosition
from tradeexecutor.state.reserve import ReservePosition
from tradeexecutor.state.state import State
from tradeexecutor.state.sync import BalanceEventRef
from tradeexecutor.state.types import USDollarAmount
from tradeexecutor.strategy.asset import build_expected_asset_map
from tradeexecutor.strategy.sync_model import SyncModel


logger = logging.getLogger(__name__)


class UnexpectedAccountingCorrectionIssue(Exception):
    """Something wrong in the token accounting we do not expect to be automatically correct."""


[docs]class AccountingCorrectionCause(enum.Enum): #: Do not know what caused the incorrect amount unknown_cause = "unknown_cause" #: aUSDC, etc. rebase = "rebase"
[docs]class UnknownTokenPositionFix(enum.Enum): """How to fix tokens we see in the wallet, but for which we do not have a position open in the state.""" #: Try to match the token with a spot position #: #: Open a new spot position with a fix trade for the token #: open_missing_position = "open_missing_position" #: Attempt to transfer unknown tokens to the hot wallet transfer_away = "tranfer_away"
class AccountingCorrectionAborted(Exception): """User presses n"""
[docs]@dataclass class AccountingBalanceCheck: """Accounting correction applied to a balance. Any irregular accounting correction will cause the position profit calcualtions and such to become invalid. Such positions should be separately market and not included in the profit calculations. """ type: AccountingCorrectionCause #: Where is this token being stored #: #: Hot wallet address or Enzyme vault address holding_address: str #: Related on-chain asset asset: AssetIdentifier #: Related positions #: #: Set none if no open position was found #: positions: Set[GenericPosition] | None expected_amount: Decimal actual_amount: Decimal #: Dust epsilon dust_epsilon: Decimal #: Relative epsilon relative_epsilon: Decimal block_number: int | None timestamp: datetime.datetime | None #: Keep track of monetary value of corrections. #: #: An estimated value at the time of the correction creation. #: #: Negative for negative corrections #: #: `None` if the the tokens are for a new position and we do not have pricing information yet available, #: or if the position is not a spot position. #: usd_value: USDollarAmount | None #: Is this correction for reserve asset #: reserve_asset: bool #: Was there a balance mismatch that is larger than the epsilon #: mismatch: bool def __post_init__(self): assert type(self.relative_epsilon) == float, f"Got {type(self.relative_epsilon)}" def __repr__(self): if self.position: position_name = self.position.get_human_readable_name() else: position_name = "unknown trading position" return f"<Accounting correction type {self.type.value} for {position_name} asset {self.asset.token_symbol}, expected {self.expected_amount}, actual {self.actual_amount} at {self.timestamp}>" @property def quantity(self): """How many tokens we corrected""" return self.actual_amount - self.expected_amount @property def position(self) -> GenericPosition | None: """Backwards compatibility. TODO: Remove code paths touching this """ if len(self.positions) >= 1: return next(iter(self.positions)) return None
[docs] def has_extra_tokens(self) -> bool: """We have extra""" return self.quantity > 0
[docs] def is_dusty(self) -> bool: """If there is a mismatch, is the mismatch within the dust tolerance,""" # Perfect accounting match if self.quantity == 0: return False # We have a mismatch, but is it larger # than the dust epsilon return not is_relative_mismatch( self.actual_amount, self.expected_amount, self.dust_epsilon, self.relative_epsilon, )
def is_mismatch(self) -> bool: return self.mismatch
[docs]def is_relative_mismatch( actual_amount: Decimal, expected_amount: Decimal, relative_epsilon: float | Decimal, dust_epsilon: float | Decimal, ) -> bool: """Calculate if we are within the relative tolerance. Mismatch has two methods of ronding - Close to zero as absolute units (dust) - Relative % of the position size """ assert isinstance(actual_amount, Decimal), f"Got {type(actual_amount)}" assert isinstance(expected_amount, Decimal), f"Got {type(expected_amount)}" # Accounting dust. # The position has been closed but we have left fractions of tokens on the account. # Cannot be compared with relative match. if abs(actual_amount) < dust_epsilon and abs(expected_amount) < dust_epsilon: return False # Avoid division by zero if actual_amount == 0 or expected_amount == 0: return actual_amount != expected_amount return abs((expected_amount - actual_amount) / actual_amount) > relative_epsilon
[docs]def calculate_total_assets(portfolio: Portfolio) -> Dict[AssetIdentifier, Decimal]: """Calculate total tokens the portfolio should held.""" assets: Counter[AssetIdentifier, Decimal] = Counter() for p in portfolio.get_open_and_frozen_positions(): for asset, quantity in p.get_held_assets(): assets[asset] += quantity return assets
[docs]def calculate_account_corrections( pair_universe: PandasPairUniverse, reserve_assets: Collection[AssetIdentifier], state: State, sync_model: SyncModel, relative_epsilon=None, all_balances=False, block_identifier: BlockIdentifier = None, ) -> Iterable[AccountingBalanceCheck]: """Figure out differences between our internal ledger (state) and on-chain balances. :param pair_universe: Needed to know what asses we are looking for :param reserve_assets: Needed to know what asses we are looking for :param state: The current state of the internal ledger :param sync_model: How ot access on-chain balances :param dust_epsilon: Minimum amount of token (abs quantity) before it is considered as a rounding error :param all_balances: If `True` iterate all balances even if there are no mismatch. :param block_identifier: Check at certain account height :raise UnexpectedAccountingCorrectionIssue: If we find on-chain tokens we do not know how to map any of our strategy positions :return: Difference in balances or all balances if `all_balances` is true. Yield one entry per token in positions. """ assert isinstance(pair_universe, PandasPairUniverse) assert isinstance(state, State) assert len(state.portfolio.reserves) > 0, "No reserve positions. Did you run init for the strategy?" logger.info( "Scanning for account corrections, we have %d open positions, %d frozen positions", len(state.portfolio.open_positions), len(state.portfolio.frozen_positions), ) if len(state.portfolio.frozen_positions) > 0: logger.warning("Be careful when doing check-accounts for frozen positions, as you should run repair first.") # assets = get_relevant_assets(pair_universe, reserve_assets, state) asset_to_position = build_expected_asset_map(state.portfolio, pair_universe=pair_universe) asset_balances = sync_model.fetch_onchain_balances( asset_to_position.keys(), filter_zero=False, block_identifier=block_identifier ) asset_balances = list(asset_balances) logger.info("Found %d on-chain tokens", len(asset_balances)) for ab in asset_balances: asset = ab.asset mapping = asset_to_position[asset] actual_amount = ab.amount expected_amount = mapping.quantity # position = map_onchain_asset_to_position(ab.asset, state) # if isinstance(position, TradingPosition): # if position.is_closed(): # raise UnexpectedAccountingCorrectionIssue(f"Mapped found tokens to already closed position:\n" # f"{ab}\n" # f"{position}") # if isinstance(position, TradingPosition): # # We might have balances tied up in frozen positions for the same pair # for frozen_position in state.portfolio.frozen_positions.values(): # if frozen_position.pair == position.pair: # expected_amount += frozen_position.get_quantity() diff = actual_amount - expected_amount reserve = mapping.is_for_reserve() if len(mapping.positions) == 0: # This asset does not have open our closed positions, # but is present in the trading universe position = None usd_value = None dust_epsilon = 0 elif mapping.is_one_to_one_asset_to_position(): position = mapping.get_only_position() if isinstance(position, TradingPosition): dust_epsilon = get_dust_epsilon_for_pair(position.pair) elif isinstance(position, ReservePosition): dust_epsilon = get_dust_epsilon_for_asset(position.asset) elif position is None: dust_epsilon = DEFAULT_DUST_EPSILON else: raise NotImplementedError(f"Could not figure out position: {position}") usd_value = position.calculate_quantity_usd_value(diff) if position else None else: # Loan based positions have multiple assets, both in base and quote. # We use some values from the first position (across multiple) to # estimate values. first_position = mapping.get_first_position() dust_epsilon = get_dust_epsilon_for_asset(asset) usd_value = None logger.debug("Correction check worth of %s worth of %f USD, actual amount %s, expected amount %s", ab.asset, usd_value or 0, actual_amount, expected_amount) if relative_epsilon is None: pair_relative_epsilon = get_relative_epsilon_for_asset(ab.asset) else: pair_relative_epsilon = relative_epsilon mismatch = is_relative_mismatch(actual_amount, expected_amount, pair_relative_epsilon, dust_epsilon) if mismatch or all_balances: yield AccountingBalanceCheck( AccountingCorrectionCause.unknown_cause, sync_model.get_token_storage_address(), ab.asset, mapping.positions, expected_amount, actual_amount, dust_epsilon, pair_relative_epsilon, ab.block_number, ab.timestamp, usd_value, reserve, mismatch, )
[docs]def apply_accounting_correction( state: State, correction: AccountingBalanceCheck, strategy_cycle_included_at: datetime.datetime | None, ): """Update the state to reflect the true on-chain balances.""" assert correction.type == AccountingCorrectionCause.unknown_cause, f"Not supported: {correction}" assert correction.timestamp frozen_count = len(state.portfolio.frozen_positions) if frozen_count > 0: raise AssertionError(f"We have {frozen_count} frozen positions. Run repair for these first before attempting an accounting correction.") portfolio = state.portfolio asset = correction.asset position = correction.position block_number = correction.block_number event_id = portfolio.next_balance_update_id portfolio.next_balance_update_id += 1 if isinstance(position, TradingPosition): position_type = BalanceUpdatePositionType.open_position position_id = correction.position.position_id assert position.is_spot() or position.is_credit_supply(), f"Correction not yet implemented for all position types, got {position}" logger.info("Correcting spot %s, asset %s, %f -> %f", position.get_human_readable_name(), asset, correction.expected_amount, correction.actual_amount) # assert position.is_open(), f"Cannot correct already closed positions, got {position}" elif isinstance(position, ReservePosition): position_type = BalanceUpdatePositionType.reserve position_id = None logger.info("Correcting reserve %s, asset %s, %f -> %f", position, asset, correction.expected_amount, correction.actual_amount) elif position is None: # Tokens were for a trading position, but no position was open. # Open a new position raise NotImplementedError() else: raise NotImplementedError() notes = f"Accounting correction based on the actual on-chain balances.\n" \ f"The internal ledger balance was {correction.expected_amount} {asset.token_symbol}\n" \ f"On-chain balance was {correction.actual_amount} {asset.token_symbol} at block {block_number or 0:,}\n" \ f"Balance was updated {correction.quantity} {asset.token_symbol}\n" evt = BalanceUpdate( balance_update_id=event_id, position_type=position_type, cause=BalanceUpdateCause.correction, asset=correction.asset, block_mined_at=correction.timestamp, strategy_cycle_included_at=strategy_cycle_included_at, chain_id=asset.chain_id, old_balance=correction.actual_amount, usd_value=correction.usd_value, quantity=correction.quantity, owner_address=None, tx_hash=None, log_index=None, position_id=position_id, block_number=correction.block_number, notes=notes, ) assert evt.balance_update_id not in position.balance_updates, f"Alreaddy written: {evt}" position.balance_updates[evt.balance_update_id] = evt ref = BalanceEventRef( balance_event_id=evt.balance_update_id, strategy_cycle_included_at=strategy_cycle_included_at, cause=evt.cause, position_type=position_type, position_id=evt.position_id, usd_value=evt.usd_value, ) if isinstance(position, TradingPosition): # Balance_updates toggle is enough position.balance_updates[evt.balance_update_id] = evt # The position has gone to zero if position.can_be_closed(): # In a lot of places we assume that a position with 1 trade cannot be closed # Make a 0-sized trade so that we know the position is closed t = close_position_with_empty_trade(portfolio, position) logger.info("Position %s closed with a trade %s", position, t) assert position.is_closed() else: assert position.get_quantity() > 0, \ f"Spoit position should have positive quantity, got {position} with {position.get_quantity()}\n" \ f"Accounting correction is: {correction}" if position.is_credit_supply(): reset_credit_supply_loan( position, timestamp=correction.timestamp, quantity=correction.actual_amount, block_number=correction.block_number, ) elif isinstance(position, ReservePosition): # No fancy method to correct reserves position.quantity += correction.quantity else: raise NotImplementedError() # Bump our last updated date accounting = state.sync.accounting accounting.balance_update_refs.append(ref) accounting.last_updated_at = datetime.datetime.utcnow() accounting.last_block_scanned = evt.block_number return evt
[docs]def correct_accounts( state: State, corrections: List[AccountingBalanceCheck], strategy_cycle_included_at: datetime.datetime | None, tx_builder: TransactionBuilder, interactive=True, unknown_token_receiver: HexAddress | str | None = None, block_identifier: BlockIdentifier = None, block_timestamp: datetime.datetime = None, token_fix_method=UnknownTokenPositionFix.open_missing_position, strategy_universe: TradingStrategyUniverse | None = None, pricing_model: PricingModel | None = None, ) -> Iterable[BalanceUpdate]: """Apply the accounting corrections on the state (internal ledger). - Change values of the underlying positions - Create BalanceUpdate events and store them in the state - Create BalanceUpdateRefs and store them in the state .. note:: You need to iterate the returend iterator to have any of the corrections applied. :return: Tuple (corrected anythimg, iterator of corrections). """ if interactive: for c in corrections: print("Correction needed:", c) # print(f"Any tokens that cannot be assigned to an open position will be send to {unknown_token_receiver}") confirmation = input("Attempt to repair [y/n]").lower() if confirmation != "y": raise AccountingCorrectionAborted() for correction in corrections: position = correction.position closed = False if isinstance(position, TradingPosition): if position.is_closed(): closed = True # Could not map to open position, # but we do not have code to open new positions yet. # Just deal with it by transferring away. if position is None: if token_fix_method == UnknownTokenPositionFix.transfer_away: logger.info("Transfer away token without open position: %s", correction) transfer_away_assets_without_position( correction, unknown_token_receiver, tx_builder, ) elif token_fix_method == UnknownTokenPositionFix.open_missing_position: logger.info("Open a new position in the state to match our wallet balance: %s", correction) open_missing_position( strategy_universe, state, pricing_model, correction, ) else: raise NotImplementedError() elif closed: if token_fix_method == UnknownTokenPositionFix.open_missing_position: logger.info("Closed position detected with tokens left. Open a new position in the state to match our wallet balance: %s", correction) open_missing_position( strategy_universe, state, pricing_model, correction, ) elif token_fix_method == UnknownTokenPositionFix.transfer_away: logger.info("Asset transfer with closed position: %s", correction) # We have tokens on a closed position. # Likely we have a failure, we closed position internally, # but the selling trade failed to execute. # Alternatively we reopenend a position, # but the buying trade failed to execute. transfer_away_assets_without_position( correction, unknown_token_receiver, tx_builder, ) else: raise NotImplementedError(f"Does not know how to fix {token_fix_method} for position {correction}") else: logger.info("Internal state balance fix: %s", correction) # Change open position balance to match the on-chain balance yield apply_accounting_correction(state, correction, strategy_cycle_included_at) # Update last scanned block, so we do not rescan events we might have skipped if block_identifier is not None: state.sync.treasury.last_block_scanned = block_identifier if block_timestamp: state.sync.treasury.last_updated_at = block_timestamp else: logger.warning("Treasury sync block identifier missing")
[docs]def transfer_away_assets_without_position( correction: AccountingBalanceCheck, unknown_token_receiver: HexAddress | str, tx_builder: TransactionBuilder, ): """Transfer away non-reserve assets that cannot be mapped to an open position. TODO: Correct approach would be to open a new trading position directly in the correction, but it's complicated and we do not want to get there yet. :param correction: :param unknown_token_receiver: """ position = correction.position if isinstance(position, TradingPosition): # Don't move tokens away from open position assert position.is_closed() else: # No closed or open position assert correction.position is None assert not correction.reserve_asset web3 = tx_builder.web3 asset = correction.asset token = fetch_erc20_details( web3, asset.address, ) tokens_to_transfer = correction.quantity tokens_to_transfer_raw = token.convert_to_raw(tokens_to_transfer) asset_delta = AssetDelta( Web3.to_checksum_address(token.address), -tokens_to_transfer_raw, ) logger.info(f"Transfering %s %s to the clean up wallet %s as we could not map the token to any open position", correction.quantity, asset.token_symbol, unknown_token_receiver) args_bound_func = token.contract.functions.transfer( Web3.to_checksum_address(unknown_token_receiver), tokens_to_transfer_raw ) blockchain_data = tx_builder.sign_transaction( token.contract, args_bound_func, gas_limit=250_000, asset_deltas=[asset_delta], notes="Accounting correction transaction, removing assets", ) tx_hash = web3.eth.send_raw_transaction(blockchain_data.get_prepared_raw_transaction()) logger.info("Broadcasted %s", tx_hash.hex()) assert_transaction_success_with_explanation(web3, tx_hash) logger.info("Fix tx %s complete", tx_hash.hex())
[docs]def open_missing_spot_position( strategy_universe: TradingStrategyUniverse, state: State, pricing_model: PricingModel, correction: AccountingBalanceCheck, ) -> tuple[TradingPosition, TradeExecution]: """Open a missing spot position. - Assume the token belongs to a spot position which we attempted to open, but state update failed (tx went eventually thru). """ logger.info("Fixing missing open position: %s", correction) pair_universe = strategy_universe.data_universe.pairs # Find all pairs that could match our # asset we hold matching_pairs = [] for raw_pair in pair_universe.iterate_pairs(): trading_pair = translate_trading_pair(raw_pair) if trading_pair.base == correction.asset: matching_pairs.append(trading_pair) if len(matching_pairs) == 0: raise RuntimeError(f"Could not find any spot pair for asset {correction.asset} for correction {correction}") # # We can have a strategy where the same base token is on multiple pairs, # then assume we get can one with the lowest fees # if len(matching_pairs) > 1: logger.warning(f"Found multiple matching trading pairs for asset {correction.asset}, correction {correction}, {matching_pairs}") pair = sorted(matching_pairs, key=lambda tp: tp.fee)[0] logger.warning(f"Will pick one with the lowest fees: {pair}") else: pair = matching_pairs[0] assert pair.is_spot(), f"Not spot: {pair}" quantity = correction.quantity assert quantity > 0 notes = f"Creating an account correction position for tokens that did not have open position: {correction}" timestamp = datetime.datetime.utcnow() position_manager = PositionManager(timestamp, strategy_universe, state, pricing_model) value = pricing_model.get_mid_price(timestamp, pair) * float(quantity) assert position_manager.get_current_position_for_pair(pair) is None trades = position_manager.open_spot( pair, value, notes=notes, ) assert len(trades) == 1 trade = trades[0] position = position_manager.get_current_position_for_pair(pair) position.add_notes_message(notes) trade.flags |= {TradeFlag.missing_position_repair, TradeFlag.open} trade.executed_quantity = quantity trade.executed_reserve = value trade.executed_at = timestamp return position, trade
[docs]def open_missing_credit_position( strategy_universe: TradingStrategyUniverse, state: State, pricing_model: PricingModel, correction: AccountingBalanceCheck, ) -> tuple[TradingPosition, TradeExecution]: """Open a missing spot position. - Assume the token belongs to a spot position which we attempted to open, but state update failed (tx went eventually thru). """ logger.info("Fixing missing open position: %s", correction) # Find all pairs that could match our # asset we hold matching_pairs = [] for trading_pair in strategy_universe.iterate_credit_for_reserve(): if trading_pair.base == correction.asset: matching_pairs.append(trading_pair) if len(matching_pairs) == 0: raise RuntimeError(f"Could not find any credit pair for asset {correction.asset} for correction {correction}") assert len(matching_pairs) == 1, f"Found multiple matching trading pairs for asset {correction.asset}, correction {correction}, {matching_pairs}" pair = matching_pairs[0] assert pair.is_credit_supply(), f"Not credit: {pair}" quantity = correction.quantity assert quantity > 0 notes = f"Creating an account correction position for tokens that did not have open position: {correction}" timestamp = datetime.datetime.utcnow() position_manager = PositionManager(timestamp, strategy_universe, state, pricing_model) interest_rate = strategy_universe.get_latest_supply_apr(pair.quote, timestamp) value = float(quantity) # Assume USD loan trades = position_manager.open_credit_supply_position_for_reserves( amount=value, notes=notes, ) assert len(trades) == 1 trade = trades[0] assert trade.pair == pair # Check we are still honouring our only lending reserve # Build Loan and Collateral data structures by hand position = position_manager.get_current_position_for_pair(pair) trade.flags |= {TradeFlag.missing_position_repair, TradeFlag.open} trade.executed_quantity = quantity trade.executed_at = timestamp trade.executed_loan_update = trade.planned_loan_update position.loan = trade.planned_loan_update position.loan.collateral.quantity = quantity position.loan.collateral.interest_rate_at_open = interest_rate position.loan.collateral.last_interest_rate = interest_rate position.loan.last_pricing_at = timestamp position.loan.last_usd_price = value return position, trade
[docs]def open_missing_position( strategy_universe: TradingStrategyUniverse, state: State, pricing_model: PricingModel, correction: AccountingBalanceCheck, ): """"We have tokens for a trading pair, but no position is closed. - Fix by initialising a new open position """ assert isinstance(strategy_universe, TradingStrategyUniverse) assert (correction.position is None) or (correction.position.is_closed()) , "open_missing_credit_position(): this can be only applied to assets that do not match known open position" assert pricing_model is not None, "Pricing model must be given to give the initial value of created positions" credit = correction.asset.is_credit() if credit: position, trade = open_missing_credit_position( strategy_universe, state, pricing_model, correction, ) else: position, trade = open_missing_spot_position( strategy_universe, state, pricing_model, correction, ) assert trade.is_repair_trade() assert trade.is_executed() assert trade.is_success() quantity = position.get_quantity() logger.info("Fixed %s. Generated trade: %s, position: %s", correction, trade, position) assert position.is_open() assert position.get_quantity() == quantity, f"Mismatch: {position.get_quantity()} vs {quantity}" return trade
[docs]def check_accounts( pair_universe: PandasPairUniverse, reserve_assets: Collection[AssetIdentifier], state: State, sync_model: SyncModel, block_identifier: BlockIdentifier = None, ) -> Tuple[bool, pd.DataFrame]: """Create a summary accounting corrections needed. Create a human-readable DataFrame of accounting inconsistencies. :param pair_universe: Trading pairs we have. Needed to get token addresses we read on-chain. :param reserve_assets: Cannot be deducted from pair universe. :param state: Current strategy state we check :param block_identifier: Check at certain block height :return: Tuple (accounts clean, accounting clean Dataframe that can be printed to the console) """ # Any unbroadcasted trades need to be cleaned up first state.check_if_clean() if block_identifier is None: web3 = sync_model.web3 block_identifier = get_almost_latest_block_number(web3) logger.info(f"Checking accounts at block {block_identifier:,}") clean = True corrections = calculate_account_corrections( pair_universe, reserve_assets, state, sync_model, relative_epsilon=None, all_balances=True, block_identifier=block_identifier, ) idx = [] items = [] for c in corrections: idx.append(c.asset.token_symbol) match c.position: case None: position_label = "No open position" case ReservePosition(): position_label = "Reserves" case TradingPosition(): position_label = c.position.pair.get_ticker() case _: raise NotImplementedError() dust = c.is_dusty() if c.expected_amount: relative_diff = (c.actual_amount - c.expected_amount) / c.expected_amount mismatch_str = f"{relative_diff * 100:.2f}%" else: mismatch_str = "Y" items.append({ "Address": c.asset.address, "Position": position_label, "Actual amount": c.actual_amount, "Expected amount": c.expected_amount, "Diff": c.quantity, "Dusty": "Y" if dust else "N", "Mismatch": mismatch_str if c.mismatch else "N", "Dust epsilon": c.dust_epsilon, "Relative epsilon": c.relative_epsilon, }) if c.mismatch: clean = False df = pd.DataFrame(items, index=idx) df = df.fillna("") df = df.replace({pd.NaT: ""}) return clean, df
[docs]def check_state_internal_coherence(state: State): """Check that we do not have any positions with non-executed trades.""" for p in state.portfolio.get_open_and_frozen_positions(): quantity = p.get_quantity() trading_quantity = p.get_available_trading_quantity() assert quantity == trading_quantity, f"Position {p}, quantity {quantity}, available for trading {trading_quantity}, probably unexecuted trades. You need to run repair command first."