freqtrade/freqtrade

View on GitHub

Showing 502 of 504 total issues

Function _get_close_rate_for_roi has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring.
Open

    def _get_close_rate_for_roi(self, row: Tuple, trade: LocalTrade, exit: ExitCheckTuple,
                                trade_dur: int) -> float:
        is_short = trade.is_short or False
        leverage = trade.leverage or 1.0
        side_1 = -1 if is_short else 1
Severity: Minor
Found in freqtrade/optimize/backtesting.py - About 2 hrs to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Function _get_ohlcv_as_lists has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring.
Open

    def _get_ohlcv_as_lists(self, processed: Dict[str, DataFrame]) -> Dict[str, Tuple]:
        """
        Helper function to convert a processed dataframes into lists for performance reasons.

        Used by backtest() - so keep this optimized for performance.
Severity: Minor
Found in freqtrade/optimize/backtesting.py - About 2 hrs to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Function _enter_trade has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring.
Open

    def _enter_trade(self, pair: str, row: Tuple, direction: LongShort,
                     stake_amount: Optional[float] = None,
                     trade: Optional[LocalTrade] = None,
                     requested_rate: Optional[float] = None,
                     requested_stake: Optional[float] = None,
Severity: Minor
Found in freqtrade/optimize/backtesting.py - About 2 hrs to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Function _analyze_candles_and_indicators has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring.
Open

def _analyze_candles_and_indicators(pair, trades: pd.DataFrame, signal_candles: pd.DataFrame):
    buyf = signal_candles

    if len(buyf) > 0:
        buyf = buyf.set_index('date', drop=False)
Severity: Minor
Found in freqtrade/data/entryexitanalysis.py - About 2 hrs to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

BaseEnvironment has 23 functions (exceeds 20 allowed). Consider refactoring.
Open

class BaseEnvironment(gym.Env):
    """
    Base class for environments. This class is agnostic to action count.
    Inherited classes customize this to include varying action counts/types,
    See RL/Base5ActionRLEnv.py and RL/Base4ActionRLEnv.py
Severity: Minor
Found in freqtrade/freqai/RL/BaseEnvironment.py - About 2 hrs to fix

    File api_backtest.py has 270 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    import asyncio
    import logging
    from copy import deepcopy
    from datetime import datetime
    from pathlib import Path
    Severity: Minor
    Found in freqtrade/rpc/api_server/api_backtest.py - About 2 hrs to fix

      Function step has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring.
      Open

          def step(self, action: int):
              """
              Logic for a single step (incrementing one candle in time)
              by the agent
              :param: action: int = the action type that the agent plans
      Severity: Minor
      Found in freqtrade/freqai/RL/Base3ActionRLEnv.py - About 2 hrs to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Function _params_pretty_print has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring.
      Open

          def _params_pretty_print(
                  params, space: str, header: str, non_optimized: Optional[Dict] = None) -> None:
      
              if space in params or (non_optimized and space in non_optimized):
                  space_params = HyperoptTools._space_params(params, space, 5)
      Severity: Minor
      Found in freqtrade/optimize/hyperopt_tools.py - About 2 hrs to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Function purge_old_models has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring.
      Open

          def purge_old_models(self) -> None:
      
              num_keep = self.freqai_info["purge_old_models"]
              if not num_keep:
                  return
      Severity: Minor
      Found in freqtrade/freqai/data_drawer.py - About 2 hrs to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      File migrations.py has 263 lines of code (exceeds 250 allowed). Consider refactoring.
      Open

      import logging
      from typing import List, Optional
      
      from sqlalchemy import inspect, select, text, update
      
      
      Severity: Minor
      Found in freqtrade/persistence/migrations.py - About 2 hrs to fix

        Function add_indicators has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
        Open

        def add_indicators(fig, row, indicators: Dict[str, Dict], data: pd.DataFrame) -> make_subplots:
            """
            Generate all the indicators selected by the user for a specific row, based on the configuration
            :param fig: Plot figure to append to
            :param row: row number for this plot
        Severity: Minor
        Found in freqtrade/plot/plotting.py - About 2 hrs to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Function filter_pairlist has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
        Open

            def filter_pairlist(self, pairlist: List[str], tickers: Dict) -> List[str]:
                """
                Filters and sorts pairlist and returns the whitelist again.
                Called on each bot iteration - please use internal caching if necessary
                :param pairlist: pairlist to filter or sort
        Severity: Minor
        Found in freqtrade/plugins/pairlist/MarketCapPairList.py - About 2 hrs to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Function update_historic_data has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
        Open

            def update_historic_data(self, strategy: IStrategy, dk: FreqaiDataKitchen) -> None:
                """
                Append new candles to our stores historic data (in memory) so that
                we do not need to load candle history from disk and we dont need to
                pinging exchange multiple times for the same candle.
        Severity: Minor
        Found in freqtrade/freqai/data_drawer.py - About 2 hrs to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Function get_valid_price_and_stake has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
        Open

            def get_valid_price_and_stake(
                self, pair: str, row: Tuple, propose_rate: float, stake_amount: float,
                direction: LongShort, current_time: datetime, entry_tag: Optional[str],
                trade: Optional[LocalTrade], order_type: str, price_precision: Optional[float]
            ) -> Tuple[float, float, float, float]:
        Severity: Minor
        Found in freqtrade/optimize/backtesting.py - About 2 hrs to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Function _worker has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
        Open

            def _worker(self, old_state: Optional[State]) -> State:
                """
                The main routine that runs each throttling iteration and handles the states.
                :param old_state: the previous service state from the previous call
                :return: current service state
        Severity: Minor
        Found in freqtrade/worker.py - About 2 hrs to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Function _detect_next_stop_or_sell_point has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
        Open

            def _detect_next_stop_or_sell_point(self, buy_column, sell_column, date_column,
                                                ohlc_columns, stoploss, pair: str):
                """
                Iterate through ohlc_columns in order to find the next trade
                Next trade opens from the first buy signal noticed to
        Severity: Minor
        Found in freqtrade/edge/edge_positioning.py - About 2 hrs to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Function import_kraken_trades_from_csv has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
        Open

        def import_kraken_trades_from_csv(config: Config, convert_to: str):
            """
            Import kraken trades from csv
            """
            if config['exchange']['name'] != 'kraken':
        Severity: Minor
        Found in freqtrade/data/converter/trade_converter_kraken.py - About 2 hrs to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        File RemotePairList.py has 259 lines of code (exceeds 250 allowed). Consider refactoring.
        Open

        """
        Remote PairList provider
        
        Provides pair list fetched from a remote source
        """
        Severity: Minor
        Found in freqtrade/plugins/pairlist/RemotePairList.py - About 2 hrs to fix

          File parameters.py has 257 lines of code (exceeds 250 allowed). Consider refactoring.
          Open

          """
          IHyperStrategy interface, hyperoptable Parameter class.
          This module defines a base class for auto-hyperoptable strategies.
          """
          import logging
          Severity: Minor
          Found in freqtrade/strategy/parameters.py - About 2 hrs to fix

            Function merge_informative_pair has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
            Open

            def merge_informative_pair(dataframe: pd.DataFrame, informative: pd.DataFrame,
                                       timeframe: str, timeframe_inf: str, ffill: bool = True,
                                       append_timeframe: bool = True,
                                       date_column: str = 'date',
                                       suffix: Optional[str] = None) -> pd.DataFrame:
            Severity: Minor
            Found in freqtrade/strategy/strategy_helper.py - About 2 hrs to fix

            Cognitive Complexity

            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

            A method's cognitive complexity is based on a few simple rules:

            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
            • Code is considered more complex for each "break in the linear flow of the code"
            • Code is considered more complex when "flow breaking structures are nested"

            Further reading

            Severity
            Category
            Status
            Source
            Language