Took liquidation price out of order completely

This commit is contained in:
Sam Germain
2021-07-07 01:30:42 -06:00
parent 0fc9d6b6ac
commit 60572c9e0d
5 changed files with 2 additions and 19 deletions

View File

@@ -2132,8 +2132,7 @@ def limit_short_order_open():
'cost': 0.00106733393,
'remaining': 90.99181073,
'status': 'open',
'is_short': True,
'liquidation_price': 0.00001300
'is_short': True
}
@@ -2188,7 +2187,6 @@ def market_short_order():
'status': 'closed',
'is_short': True,
'leverage': 3.0,
'liquidation_price': 0.00004300
}
@@ -2227,7 +2225,6 @@ def limit_leveraged_buy_order_open():
'leverage': 3.0,
'status': 'open',
'exchange': 'binance',
'liquidation_price': 0.00001000
}
@@ -2282,7 +2279,6 @@ def market_leveraged_buy_order():
'remaining': 0.0,
'status': 'closed',
'exchange': 'kraken',
'liquidation_price': 0.00004000,
'leverage': 3.0
}

View File

@@ -426,8 +426,6 @@ def test_update_limit_order_lev(limit_leveraged_buy_order, limit_leveraged_sell_
assert trade.close_profit is None
assert trade.close_date is None
assert trade.borrowed == 0.0019999999998453998
assert trade.stop_loss == 0.00001000
assert trade.liquidation_price == 0.00001000
assert log_has_re(r"LIMIT_BUY has been fulfilled for Trade\(id=2, "
r"pair=ETH/BTC, amount=272.97543219, open_rate=0.00001099, open_since=.*\).",
caplog)
@@ -493,8 +491,6 @@ def test_update_market_order_lev(market_leveraged_buy_order, market_leveraged_se
assert trade.close_profit is None
assert trade.close_date is None
assert trade.interest_rate == 0.0005
assert trade.stop_loss == 0.00004000
assert trade.liquidation_price == 0.00004000
# TODO: Uncomment the next assert and make it work.
# The logger also has the exact same but there's some spacing in there
assert log_has_re(r"MARKET_BUY has been fulfilled for Trade\(id=1, "

View File

@@ -433,8 +433,6 @@ def test_update_with_binance_short(limit_short_order, limit_exit_short_order, fe
assert trade.close_date is None
assert trade.borrowed == 90.99181073
assert trade.is_short is True
assert trade.stop_loss == 0.00001300
assert trade.liquidation_price == 0.00001300
assert log_has_re(r"LIMIT_SELL has been fulfilled for Trade\(id=2, "
r"pair=ETH/BTC, amount=90.99181073, open_rate=0.00001173, open_since=.*\).",
caplog)
@@ -507,8 +505,6 @@ def test_update_market_order_short(
assert trade.close_profit is None
assert trade.close_date is None
assert trade.interest_rate == 0.0005
assert trade.stop_loss == 0.00004300
assert trade.liquidation_price == 0.00004300
# The logger also has the exact same but there's some spacing in there
assert log_has_re(r"MARKET_SELL has been fulfilled for Trade\(id=1, "
r"pair=ETH/BTC, amount=275.97543219, open_rate=0.00004173, open_since=.*\).",