Fix the fee calculation
This commit is contained in:
@@ -51,7 +51,7 @@ class Bittrex(Exchange):
|
||||
@property
|
||||
def fee(self) -> float:
|
||||
# See https://bittrex.com/fees
|
||||
return 0.0025
|
||||
return 0.0025 #0.25%
|
||||
|
||||
def buy(self, pair: str, rate: float, amount: float) -> str:
|
||||
data = _API.buy_limit(pair.replace('_', '-'), amount, rate)
|
||||
|
Reference in New Issue
Block a user