-
-
Notifications
You must be signed in to change notification settings - Fork 306
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
REFACTOR: [okx] refactor kline api #1507
Conversation
Welcome back! @bailantaotao, This pull request may get 877 BBG. |
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## main #1507 +/- ##
==========================================
+ Coverage 21.79% 21.82% +0.02%
==========================================
Files 602 603 +1
Lines 43914 43799 -115
==========================================
- Hits 9569 9557 -12
+ Misses 33650 33560 -90
+ Partials 695 682 -13
Continue to review full report in Codecov by Sentry.
|
418ebbe
to
774dcd1
Compare
Re-estimated karma: this pull request may get 901 BBG |
pkg/exchange/okex/exchange.go
Outdated
@@ -54,7 +55,8 @@ var ErrSymbolRequired = errors.New("symbol is a required parameter") | |||
type Exchange struct { | |||
key, secret, passphrase string | |||
|
|||
client *okexapi.RestClient | |||
client *okexapi.RestClient | |||
bizClient *okexapi.RestClient |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what's bizClient? this is not used?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh no! You found it.
774dcd1
to
84d1a41
Compare
Re-estimated karma: this pull request may get 927 BBG |
return nil, fmt.Errorf("unexpected kline length: %d, data: %q", len(raw), raw) | ||
} | ||
var kline KLine | ||
if err = json.Unmarshal(raw[0], &kline.StartTime); err != nil { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I found you can actually use []fixedpoint.Value to unmarshal it? since all the fields are numbers in string format?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes, all the types are strings.
{
"code":"0",
"msg":"",
"data":[
[
"1597026383085",
"3.721",
"3.743",
"3.677",
"3.708",
"8422410",
"22698348.04828491",
"12698348.04828491",
"0"
],
[
"1597026383085",
"3.731",
"3.799",
"3.494",
"3.72",
"24912403",
"67632347.24399722",
"37632347.24399722",
"1"
]
]
}
https://www.okx.com/docs-v5/en/#order-book-trading-market-data-get-candlesticks
// VolumeInCurrencyQuote Trading volume, the value is the quantity in quote currency | ||
// e.g. The unit is USDT for BTC-USDT and BTC-USDT-SWAP; | ||
// The unit is USD for BTC-USD-SWAP | ||
VolumeInCurrencyQuote fixedpoint.Value |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this field could overflow, maybe use float64 for now?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
or maybe not now :p
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK, i will skip it
84d1a41
to
dc70999
Compare
Re-estimated karma: this pull request may get 973 BBG |
dc70999
to
f8ff01e
Compare
Re-estimated karma: this pull request may get 988 BBG |
f8ff01e
to
f13c17e
Compare
Re-estimated karma: this pull request may get 993 BBG |
f13c17e
to
d2b45f5
Compare
Re-estimated karma: this pull request may get 998 BBG |
Hi @bailantaotao, Well done! 1003 BBG has been sent to your polygon wallet. Please check the following tx: https://polygonscan.com/tx/0x0cc2f38919153b2d6cf5b70d2e628d3be58b1e4625e64fc2af9a8a7bcdc60336 Thank you for your contribution! |
No description provided.