Skip to content

Commit

Permalink
fix: xeggex close
Browse files Browse the repository at this point in the history
  • Loading branch information
wouthoekstra committed Mar 27, 2024
1 parent 654ffa3 commit f108afb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/xeggex.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class Xeggex extends Driver {
quote: ticker.target_currency,
high: parseToFloat(ticker.high),
low: parseToFloat(ticker.low),
const: parseToFloat(ticker.last_price),
close: parseToFloat(ticker.last_price),
bid: parseToFloat(ticker.bid),
ask: parseToFloat(ticker.ask),
baseVolume: parseToFloat(ticker.base_volume),
Expand Down

0 comments on commit f108afb

Please sign in to comment.