mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 10:21:59 +00:00
fix reduce() TypeError in hyperopts
This commit is contained in:
parent
1a5dbd29e0
commit
c3e93e7593
|
@ -122,9 +122,10 @@ So let's write the buy strategy using these values:
|
||||||
dataframe['macd'], dataframe['macdsignal']
|
dataframe['macd'], dataframe['macdsignal']
|
||||||
))
|
))
|
||||||
|
|
||||||
dataframe.loc[
|
if conditions:
|
||||||
reduce(lambda x, y: x & y, conditions),
|
dataframe.loc[
|
||||||
'buy'] = 1
|
reduce(lambda x, y: x & y, conditions),
|
||||||
|
'buy'] = 1
|
||||||
|
|
||||||
return dataframe
|
return dataframe
|
||||||
|
|
||||||
|
|
|
@ -70,9 +70,10 @@ class DefaultHyperOpts(IHyperOpt):
|
||||||
dataframe['close'], dataframe['sar']
|
dataframe['close'], dataframe['sar']
|
||||||
))
|
))
|
||||||
|
|
||||||
dataframe.loc[
|
if conditions:
|
||||||
reduce(lambda x, y: x & y, conditions),
|
dataframe.loc[
|
||||||
'buy'] = 1
|
reduce(lambda x, y: x & y, conditions),
|
||||||
|
'buy'] = 1
|
||||||
|
|
||||||
return dataframe
|
return dataframe
|
||||||
|
|
||||||
|
@ -129,9 +130,10 @@ class DefaultHyperOpts(IHyperOpt):
|
||||||
dataframe['sar'], dataframe['close']
|
dataframe['sar'], dataframe['close']
|
||||||
))
|
))
|
||||||
|
|
||||||
dataframe.loc[
|
if conditions:
|
||||||
reduce(lambda x, y: x & y, conditions),
|
dataframe.loc[
|
||||||
'sell'] = 1
|
reduce(lambda x, y: x & y, conditions),
|
||||||
|
'sell'] = 1
|
||||||
|
|
||||||
return dataframe
|
return dataframe
|
||||||
|
|
||||||
|
|
|
@ -79,9 +79,10 @@ class SampleHyperOpts(IHyperOpt):
|
||||||
dataframe['close'], dataframe['sar']
|
dataframe['close'], dataframe['sar']
|
||||||
))
|
))
|
||||||
|
|
||||||
dataframe.loc[
|
if conditions:
|
||||||
reduce(lambda x, y: x & y, conditions),
|
dataframe.loc[
|
||||||
'buy'] = 1
|
reduce(lambda x, y: x & y, conditions),
|
||||||
|
'buy'] = 1
|
||||||
|
|
||||||
return dataframe
|
return dataframe
|
||||||
|
|
||||||
|
@ -138,9 +139,10 @@ class SampleHyperOpts(IHyperOpt):
|
||||||
dataframe['sar'], dataframe['close']
|
dataframe['sar'], dataframe['close']
|
||||||
))
|
))
|
||||||
|
|
||||||
dataframe.loc[
|
if conditions:
|
||||||
reduce(lambda x, y: x & y, conditions),
|
dataframe.loc[
|
||||||
'sell'] = 1
|
reduce(lambda x, y: x & y, conditions),
|
||||||
|
'sell'] = 1
|
||||||
|
|
||||||
return dataframe
|
return dataframe
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user