1 Star 0 Fork 1

小栈/GoEx

forked from simonxing/GoEx 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Models.go 4.53 KB
一键复制 编辑 原始数据 按行查看 历史
nntaoli 提交于 2019-08-27 18:55 . [okex swap] add GetHistoricalFunding API
package goex
import (
"net/http"
"time"
)
type Order struct {
Price float64
Amount float64
AvgPrice float64
DealAmount float64
Fee float64
Cid string //客户端自定义ID
OrderID2 string
OrderID int //deprecated
OrderTime int
Status TradeStatus
Currency CurrencyPair
Side TradeSide
Type string //limit / market
OrderType int //0:default,1:maker,2:fok,3:ioc
}
type Trade struct {
Tid int64 `json:"tid"`
Type TradeSide `json:"type"`
Amount float64 `json:"amount,string"`
Price float64 `json:"price,string"`
Date int64 `json:"date_ms"`
Pair CurrencyPair `json:"omitempty"`
}
type SubAccount struct {
Currency Currency
Amount float64
ForzenAmount float64
LoanAmount float64
}
type MarginSubAccount struct {
Balance float64
Frozen float64
Available float64
CanWithdraw float64
Loan float64
LendingFee float64
}
type MarginAccount struct {
Sub map[Currency]MarginSubAccount
LiquidationPrice float64
RiskRate float64
MarginRatio float64
}
type Account struct {
Exchange string
Asset float64 //总资产
NetAsset float64 //净资产
SubAccounts map[Currency]SubAccount
}
type Ticker struct {
Pair CurrencyPair `json:"omitempty"`
Last float64 `json:"last,string"`
Buy float64 `json:"buy,string"`
Sell float64 `json:"sell,string"`
High float64 `json:"high,string"`
Low float64 `json:"low,string"`
Vol float64 `json:"vol,string"`
Date uint64 `json:"date"` // 单位:ms
}
type FutureTicker struct {
*Ticker
ContractType string `json:"omitempty"`
ContractId int `json:"contractId"`
LimitHigh float64 `json:"limitHigh,string"`
LimitLow float64 `json:"limitLow,string"`
HoldAmount float64 `json:"hold_amount,string"`
UnitAmount float64 `json:"unitAmount,string"`
}
type DepthRecord struct {
Price float64
Amount float64
}
type DepthRecords []DepthRecord
func (dr DepthRecords) Len() int {
return len(dr)
}
func (dr DepthRecords) Swap(i, j int) {
dr[i], dr[j] = dr[j], dr[i]
}
func (dr DepthRecords) Less(i, j int) bool {
return dr[i].Price < dr[j].Price
}
type Depth struct {
ContractType string //for future
Pair CurrencyPair
UTime time.Time
AskList DepthRecords // Descending order
BidList DepthRecords // Descending order
}
type APIConfig struct {
HttpClient *http.Client
Endpoint string
ApiKey string
ApiSecretKey string
ApiPassphrase string //for okex.com v3 api
ClientId string //for bitstamp.net , huobi.pro
Lever int //杠杆倍数 , for future
}
type Kline struct {
Pair CurrencyPair
Timestamp int64
Open float64
Close float64
High float64
Low float64
Vol float64
}
type FutureKline struct {
*Kline
Vol2 float64 //个数
}
type FutureSubAccount struct {
Currency Currency
AccountRights float64 //账户权益
KeepDeposit float64 //保证金
ProfitReal float64 //已实现盈亏
ProfitUnreal float64
RiskRate float64 //保证金率
}
type FutureAccount struct {
FutureSubAccounts map[Currency]FutureSubAccount
}
type FutureOrder struct {
ClientOid string //自定义ID,GoEx内部自动生成
OrderID2 string //请尽量用这个字段替代OrderID字段
Price float64
Amount float64
AvgPrice float64
DealAmount float64
OrderID int64 //deprecated
OrderTime int64
Status TradeStatus
Currency CurrencyPair
OrderType int //ORDINARY=0 POST_ONLY=1 FOK= 2 IOC= 3
OType int //1:开多 2:开空 3:平多 4: 平空
LeverRate int //倍数
Fee float64 //手续费
ContractName string
}
type FuturePosition struct {
BuyAmount float64
BuyAvailable float64
BuyPriceAvg float64
BuyPriceCost float64
BuyProfitReal float64
CreateDate int64
LeverRate int
SellAmount float64
SellAvailable float64
SellPriceAvg float64
SellPriceCost float64
SellProfitReal float64
Symbol CurrencyPair //btc_usd:比特币,ltc_usd:莱特币
ContractType string
ContractId int64
ForceLiquPrice float64 //预估爆仓价
}
type HistoricalFunding struct {
InstrumentId string `json:"instrument_id"`
RealizedRate float64 `json:"realized_rate,string"`
FundingTime time.Time `json:"funding_time"`
}
//api parameter struct
type BorrowParameter struct {
CurrencyPair CurrencyPair
Currency Currency
Amount float64
}
type RepaymentParameter struct {
BorrowParameter
BorrowId string
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/xiaozhan/GoEx.git
git@gitee.com:xiaozhan/GoEx.git
xiaozhan
GoEx
GoEx
master

搜索帮助