Fixed extremely broken fee calculation
This commit is contained in:
parent
39c7895afb
commit
bbcfa52234
1 changed files with 1 additions and 1 deletions
2
main.py
2
main.py
|
@ -55,7 +55,7 @@ if __name__ == "__main__":
|
||||||
# Buy shit
|
# Buy shit
|
||||||
# If the previous state is known, and the short term EMA (accounting for the fee) is greater than the long term EMA,
|
# If the previous state is known, and the short term EMA (accounting for the fee) is greater than the long term EMA,
|
||||||
# and there is more than a 0.1% difference between short and long term EMA (accounting for the fee), buy
|
# and there is more than a 0.1% difference between short and long term EMA (accounting for the fee), buy
|
||||||
if previous_state != "Unknown" and k.short_ema.tail(1)[0][0] * (k.fee/100+1) > k.long_ema.tail(1)[0][0] and (k.short_ema.tail(1)[0][0] * (k.fee/100+1))/k.long_ema.tail(1)[0][0] - 1 > 0.001:
|
if previous_state != "Unknown" and k.short_ema.tail(1)[0][0] * (1-k.fee/100) > k.long_ema.tail(1)[0][0] and (k.short_ema.tail(1)[0][0] * (1-k.fee/100))/k.long_ema.tail(1)[0][0] - 1 > 0.001:
|
||||||
print("Buying shit")
|
print("Buying shit")
|
||||||
k.buy_order(currency_pair, currency_buy, currency_sell, k.balances["vol"][currency_sell] * 0.95 * (1/k.prices.tail(1)[0][0]))
|
k.buy_order(currency_pair, currency_buy, currency_sell, k.balances["vol"][currency_sell] * 0.95 * (1/k.prices.tail(1)[0][0]))
|
||||||
print(k.balances)
|
print(k.balances)
|
||||||
|
|
Loading…
Reference in a new issue