Skip to content

Commit

Permalink
[coinex] Fix ticker mapping
Browse files Browse the repository at this point in the history
  • Loading branch information
bigscoop committed Jun 10, 2024
1 parent cc96b70 commit 6500c0f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ public Ticker toTicker(Instrument instrument, CoinexTickerV1 coinexTickerV1, Ins

builder
.open(coinexTickerV1.getOpen24h())
.last(coinexTickerV1.getVolume24h())
.last(coinexTickerV1.getLast())
.bid(coinexTickerV1.getBestBidPrice())
.ask(coinexTickerV1.getBestAskPrice())
.high(coinexTickerV1.getHigh24h())
Expand Down

0 comments on commit 6500c0f

Please sign in to comment.