mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-22 06:53:52 +00:00
scripts: fix fraction
This commit is contained in:
parent
fe25e38c93
commit
c0b21fd392
|
@ -80,6 +80,6 @@ case "$command" in
|
|||
market=$1
|
||||
declare -A trades_params=()
|
||||
trades_params[market]=$market
|
||||
myTrades trades_params | jq -r '.[] | "\(.id) \(.market) \(.side) \(.price) \t \(.volume) \t fee = \( .fee | tonumber * 1000 | floor / 1000 ) \(.fee_currency)\t\( .created_at | strflocaltime("%Y-%m-%dT%H:%M:%S %Z") )"'
|
||||
myTrades trades_params | jq -r '.[] | "\(.id) \(.market) \(.side) \(.price) \t \(.volume) \t fee = \( .fee | tonumber * 100000 | floor / 100000 ) \(.fee_currency)\t\( .created_at | strflocaltime("%Y-%m-%dT%H:%M:%S %Z") )"'
|
||||
;;
|
||||
esac
|
||||
|
|
Loading…
Reference in New Issue
Block a user