mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 10:21:59 +00:00
switch to faster short circuiting condition
This commit is contained in:
parent
5cf2dd79f2
commit
a071571eac
|
@ -86,7 +86,7 @@ def get_sell_trade_entry(pair, row, buy_subset, ticker, trade_count_lock, args):
|
|||
|
||||
# Buy is on is in the buy_subset there is a row that matches the date
|
||||
# of the sell event
|
||||
buy_signal = not buy_subset[buy_subset.index == row2.Index].empty
|
||||
buy_signal = (buy_subset.index == row2.Index).any()
|
||||
if(should_sell(trade, row2.close, row2.Index, buy_signal, row2.sell)):
|
||||
return row2, (pair,
|
||||
trade.calc_profit_percent(rate=row2.close),
|
||||
|
|
Loading…
Reference in New Issue
Block a user