mirror of
https://github.com/freqtrade/freqtrade.git
synced 2025-12-14 11:51:19 +00:00
NAN is sometimes used by some programmers when numpy was 1.x but now on 2.x the caps version is disallowed.
Added the caps conversion to lower case nan to fix that automatically. Source: https://numpy.org/doc/2.0/reference/constants.html?utm_source=chatgpt.com NaN and NAN are aliases of nan.
This commit is contained in:
@@ -46,6 +46,7 @@ class StrategyUpdater:
|
||||
"aliases": set(),
|
||||
"replacements": [
|
||||
("NaN", "nan"),
|
||||
("NAN", "nan"),
|
||||
],
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user