freqtrade/freqtrade

View on GitHub
freqtrade/plugins/pairlist/IPairList.py

Summary

Maintainability
A
2 hrs
Test Coverage

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

    def filter_pairlist(self, pairlist: List[str], tickers: Tickers) -> List[str]:
        """
        Filters and sorts pairlist and returns the whitelist again.

        Called on each bot iteration - please use internal caching if necessary
Severity: Minor
Found in freqtrade/plugins/pairlist/IPairList.py - About 1 hr 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 5 arguments (exceeds 4 allowed). Consider refactoring.
Open

    def __init__(self, exchange: Exchange, pairlistmanager,
Severity: Minor
Found in freqtrade/plugins/pairlist/IPairList.py - About 35 mins to fix

    Function _whitelist_for_active_markets has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

        def _whitelist_for_active_markets(self, pairlist: List[str]) -> List[str]:
            """
            Check available markets and remove pair from whitelist if necessary
            :param pairlist: the sorted list of pairs the user might want to trade
            :return: the list of pairs the user wants to trade without those unavailable or
    Severity: Minor
    Found in freqtrade/plugins/pairlist/IPairList.py - About 25 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