Skip to content

Commit

Permalink
Breaking change attributes minimum to min, maximum to max and margin …
Browse files Browse the repository at this point in the history
…to has_margin
  • Loading branch information
Zatura committed Jan 27, 2023
1 parent d058385 commit 4b1d646
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,19 +44,19 @@ print(symbol.name)
print(symbol.precision)
> 5

print(symbol.minimum_margin)
print(symbol.min_margin)
> 5.0

print(symbol.initial_margin)
> 10.0

print(symbol.minimum_order_size)
print(symbol.min_order_size)
> 0.00006

print(symbol.maximum_order_size)
print(symbol.max_order_size)
> 2000.0

print(symbol.margin)
print(symbol.has_margin)
> True

bitfinex.BTCUSD == 'tBTCUSD'
Expand Down

0 comments on commit 4b1d646

Please sign in to comment.