ftx: define market request

This commit is contained in:
ycdesu 2021-03-21 10:51:17 +08:00
parent c30a026243
commit 14652c6918
3 changed files with 87 additions and 0 deletions

View File

@ -22,6 +22,7 @@ type restRequest struct {
*balanceRequest
*orderRequest
*accountRequest
*marketRequest
key, secret string
// Optional sub-account name
@ -43,6 +44,7 @@ func newRestRequest(c *http.Client, baseURL *url.URL) *restRequest {
baseURL: baseURL,
}
r.marketRequest = &marketRequest{restRequest: r}
r.accountRequest = &accountRequest{restRequest: r}
r.balanceRequest = &balanceRequest{restRequest: r}
r.orderRequest = &orderRequest{restRequest: r}

View File

@ -0,0 +1,29 @@
package ftx
import (
"context"
"encoding/json"
"fmt"
)
type marketRequest struct {
*restRequest
}
func (r *marketRequest) Markets(ctx context.Context) (marketsResponse, error) {
resp, err := r.
Method("GET").
ReferenceURL("api/markets").
DoAuthenticatedRequest(ctx)
if err != nil {
return marketsResponse{}, err
}
var m marketsResponse
if err := json.Unmarshal(resp.Body, &m); err != nil {
return marketsResponse{}, fmt.Errorf("failed to unmarshal market response body to json: %w", err)
}
return m, nil
}

View File

@ -102,6 +102,62 @@ type balances struct {
} `json:"result"`
}
/*
[
{
"name": "BTC/USD",
"enabled": true,
"postOnly": false,
"priceIncrement": 1.0,
"sizeIncrement": 0.0001,
"minProvideSize": 0.0001,
"last": 59039.0,
"bid": 59038.0,
"ask": 59040.0,
"price": 59039.0,
"type": "spot",
"baseCurrency": "BTC",
"quoteCurrency": "USD",
"underlying": null,
"restricted": false,
"highLeverageFeeExempt": true,
"change1h": 0.0015777151969599294,
"change24h": 0.05475756601279165,
"changeBod": -0.0035107262814994852,
"quoteVolume24h": 316493675.5463,
"volumeUsd24h": 316493675.5463
}
]
*/
type marketsResponse struct {
Success bool `json:"success"`
Result []market `json:"result"`
}
type market struct {
Name string `json:"name"`
Enabled bool `json:"enabled"`
PostOnly bool `json:"postOnly"`
PriceIncrement float64 `json:"priceIncrement"`
SizeIncrement float64 `json:"sizeIncrement"`
MinProvideSize float64 `json:"minProvideSize"`
Last float64 `json:"last"`
Bid float64 `json:"bid"`
Ask float64 `json:"ask"`
Price float64 `json:"price"`
Type string `json:"type"`
BaseCurrency string `json:"baseCurrency"`
QuoteCurrency string `json:"quoteCurrency"`
Underlying string `json:"underlying"`
Restricted bool `json:"restricted"`
HighLeverageFeeExempt bool `json:"highLeverageFeeExempt"`
Change1h float64 `json:"change1h"`
Change24h float64 `json:"change24h"`
ChangeBod float64 `json:"changeBod"`
QuoteVolume24h float64 `json:"quoteVolume24h"`
VolumeUsd24h float64 `json:"volumeUsd24h"`
}
type ordersHistoryResponse struct {
Success bool `json:"success"`
Result []order `json:"result"`