Skip to content

Commit

Permalink
fix: update code
Browse files Browse the repository at this point in the history
  • Loading branch information
HaoZhengZhao committed Jan 17, 2025
1 parent 6d259c1 commit 8185bd0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
### Change Log

## v0.0.66
- 修复一些 bug

## v0.0.65
- 修复一些 bug

Expand Down
1 change: 1 addition & 0 deletions spot/api/binance/index.go
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ func SellLimit(symbol string, quantity float64, price float64) (res *binance.Cre
Symbol(symbol).
Side(binance.SideTypeSell).
Type(binance.OrderTypeLimit).
TimeInForce(binance.TimeInForceTypeGTC).
Quantity(strconv.FormatFloat(quantity, 'f', -1, 64)).
Price(strconv.FormatFloat(quantity, 'f', -1, 64)).
Do(context.Background())
Expand Down

0 comments on commit 8185bd0

Please sign in to comment.