Source code for qf_lib.backtesting.portfolio.backtest_equity_position

#     Copyright 2016-present CERN – European Organization for Nuclear Research
#
#     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.
from numpy import sign

from qf_lib.backtesting.portfolio.backtest_position import BacktestPosition
from qf_lib.backtesting.portfolio.transaction import Transaction


[docs]class BacktestEquityPosition(BacktestPosition):
[docs] def market_value(self) -> float: return self.quantity() * self.current_price
[docs] def total_exposure(self) -> float: return self._quantity * self.current_price
def _cash_to_buy_or_proceeds_from_sale(self, transaction: Transaction) -> float: result = transaction.price * transaction.quantity + transaction.commission return -result def _compute_profit_and_loss_fraction(self, price: float, quantity: int): if sign(quantity) * self.direction() == -1: price_pnl = price - self._avg_price_per_unit # We multiply by the direction, so that the in case of finding a pair of transaction going in opposite # directions, the realized pnl of this operation would consider the direction of the position quantity = self.direction() * abs(quantity) return price_pnl * quantity else: return 0.0