Skip to main content

profitfactor

Get profit factor

Source Code: [link]

openbb.portfolio.metric.profitfactor(portfolio_engine: portfolio_engine.PortfolioEngine)

Parameters

NameTypeDescriptionDefaultOptional
portfolio_enginePortfolioEnginePortfolioEngine class instance, this will hold transactions and perform calculations.
Use portfolio.load to create a PortfolioEngine.
NoneFalse

Returns

TypeDescription
pd.DataFrameDataFrame of profit factor of the portfolio during different time periods

Examples

from openbb_terminal.sdk import openbb
p = openbb.portfolio.load("openbb_terminal/miscellaneous/portfolio/holdings_example.xlsx")
output = openbb.portfolio.metric.profitfactor(p)
During some time periods there were no losing trades. Thus some values could not be calculated.