available_trading_pairs#

API documentation for tradeexecutor.strategy.chart.standard.trading_universe.available_trading_pairs Python function.

available_trading_pairs(input, all_criteria_included_pair_count='all_criteria_included_pair_count', volume_included_pair_count='volume_included_pair_count', tvl_included_pair_count='tvl_included_pair_count', trading_pair_count='trading_pair_count', with_dataframe=False)[source]#

Render a chart showing the number of trading pairs available for the strategy to trade over history.

Parameters:
  • input (ChartInput) – ChartInput containing strategy input indicators.

  • all_criteria_included_pair_count – Indicator name for pairs meeting all criteria.

  • volume_included_pair_count – Indicator name for pairs meeting volume criteria.

  • tvl_included_pair_count – Indicator name for pairs meeting TVL criteria.

  • trading_pair_count – Indicator name for total trading pairs available.

  • with_dataframe (bool) – If True, return both DataFrame and Figure.

Return type:

plotly.graph_objs._figure.Figure | tuple[plotly.graph_objs._figure.Figure, pandas.core.frame.DataFrame]