Add test for pandas deprecation warning

This commit is contained in:
Matthias
2024-01-14 13:56:02 +01:00
parent 5841c65430
commit 4aab57ce62
2 changed files with 29 additions and 2 deletions
+2 -2
View File
@@ -152,7 +152,7 @@ class StrategyTestV3(IStrategy):
(
qtpylib.crossed_below(dataframe['rsi'], self.sell_rsi.value)
),
'enter_short'] = 1
('enter_short', 'enter_tag')] = (1, 'short_Tag')
return dataframe
@@ -176,7 +176,7 @@ class StrategyTestV3(IStrategy):
(
qtpylib.crossed_above(dataframe['rsi'], self.buy_rsi.value)
),
'exit_short'] = 1
('exit_short', 'exit_tag')] = (1, 'short_Tag')
return dataframe