remove unnecessary calculation
This commit is contained in:
parent
1b6a60ecb2
commit
174122a09b
@ -59,7 +59,6 @@ def buy_strategy_generator(params):
|
|||||||
dataframe.loc[
|
dataframe.loc[
|
||||||
reduce(lambda x, y: x & y, conditions),
|
reduce(lambda x, y: x & y, conditions),
|
||||||
'buy'] = 1
|
'buy'] = 1
|
||||||
dataframe.loc[dataframe['buy'] == 1, 'buy_price'] = dataframe['close']
|
|
||||||
|
|
||||||
return dataframe
|
return dataframe
|
||||||
return populate_buy_trend
|
return populate_buy_trend
|
||||||
|
Loading…
Reference in New Issue
Block a user