Fix 1 to 0

This commit is contained in:
Matthias 2019-02-17 15:55:47 +01:00
parent f1ededf0eb
commit 9fad83bd15
1 changed files with 2 additions and 2 deletions

View File

@ -267,7 +267,7 @@ class TestStrategy(IStrategy):
(dataframe['adx'] > 30) &
(dataframe['tema'] <= dataframe['bb_middleband']) &
(dataframe['tema'] > dataframe['tema'].shift(1)) &
(dataframe['volume'] > 1) # Make sure Volume is not 0
(dataframe['volume'] > 0) # Make sure Volume is not 0
),
'buy'] = 1
@ -285,7 +285,7 @@ class TestStrategy(IStrategy):
(dataframe['adx'] > 70) &
(dataframe['tema'] > dataframe['bb_middleband']) &
(dataframe['tema'] < dataframe['tema'].shift(1)) &
(dataframe['volume'] > 1) # Make sure Volume is not 0
(dataframe['volume'] > 0) # Make sure Volume is not 0
),
'sell'] = 1
return dataframe