freqtrade/freqtrade

View on GitHub
freqtrade/freqtradebot.py

Summary

Maintainability
F
5 days
Test Coverage

File freqtradebot.py has 1761 lines of code (exceeds 250 allowed). Consider refactoring.
Open

"""
Freqtrade is the main module of this bot. It contains the class Freqtrade()
"""
import logging
import traceback
Severity: Major
Found in freqtrade/freqtradebot.py - About 4 days to fix

    Function __init__ has 37 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        def __init__(self, config: Config) -> None:
            """
            Init all variables and objects the bot needs to work
            :param config: configuration dict, you can use Configuration.get_config()
            to get the config dict.
    Severity: Minor
    Found in freqtrade/freqtradebot.py - About 1 hr to fix

      Function startup_update_open_orders has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
      Open

          def startup_update_open_orders(self):
              """
              Updates open orders based on order list kept in the database.
              Mainly updates the state of orders - but may also close trades
              """
      Severity: Minor
      Found in freqtrade/freqtradebot.py - About 55 mins 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 __init__ has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
      Open

          def __init__(self, config: Config) -> None:
              """
              Init all variables and objects the bot needs to work
              :param config: configuration dict, you can use Configuration.get_config()
              to get the config dict.
      Severity: Minor
      Found in freqtrade/freqtradebot.py - About 55 mins 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

      There are no issues that match your filters.

      Category
      Status