Skip to content

Commit df19c77

Browse files
committed
better fallback
1 parent 6edcda1 commit df19c77

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

freqtrade/optimize/analysis/recursive_helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class RecursiveAnalysisSubFunctions:
1717
@staticmethod
1818
def text_table_recursive_analysis_instances(recursive_instances: list[RecursiveAnalysis]):
1919
startups = recursive_instances[0]._startup_candle
20-
strat_scc = recursive_instances[0]._strat_scc or 0
20+
strat_scc = getattr(recursive_instances[0], "_strat_scc", 0) or 0
2121
headers = ["Indicators"]
2222
for candle in startups:
2323
if candle == strat_scc:

0 commit comments

Comments
 (0)