-
Notifications
You must be signed in to change notification settings - Fork 128
/
types.go
182 lines (155 loc) · 3.55 KB
/
types.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
package models
import (
"encoding/json"
"time"
"github.com/diadata-org/diadata/pkg/dia"
clientInfluxdb "github.com/influxdata/influxdb1-client/v2"
)
type SymbolExchangeDetails struct {
Name string
Price float64
PriceYesterday *float64
VolumeYesterdayUSD *float64
Time *time.Time
LastTrades []dia.Trade
}
// Quotation is deprecating. Going to be substituted by AssetQuotation
type Quotation struct {
Symbol string
Name string
Price float64
PriceYesterday *float64
VolumeYesterdayUSD *float64
Source string
Time time.Time
}
type StockQuotation struct {
Symbol string
Name string
PriceAsk float64
PriceBid float64
SizeAskLot float64
SizeBidLot float64
Source string
Time time.Time
ISIN string
}
type Stock struct {
Symbol string
Name string
ISIN string
}
// MarshalBinary for quotations
func (e *Quotation) MarshalBinary() ([]byte, error) {
return json.Marshal(e)
}
// UnmarshalBinary for quotations
func (e *Quotation) UnmarshalBinary(data []byte) error {
if err := json.Unmarshal(data, &e); err != nil {
return err
}
return nil
}
type FiatQuotation struct {
QuoteCurrency string
BaseCurrency string
Price float64
Source string
Time time.Time
}
// MarshalBinary for fiat quotations
func (fq *FiatQuotation) MarshalBinary() ([]byte, error) {
return json.Marshal(fq)
}
// UnmarshalBinary for fiat quotations
func (fq *FiatQuotation) UnmarshalBinary(data []byte) error {
if err := json.Unmarshal(data, &fq); err != nil {
return err
}
return nil
}
// AssetQuotation is the most recent price point information on an asset.
type AssetQuotation struct {
Asset dia.Asset
Price float64
Source string
Time time.Time
}
// MarshalBinary for quotations
func (aq *AssetQuotation) MarshalBinary() ([]byte, error) {
return json.Marshal(aq)
}
// UnmarshalBinary for quotations
func (aq *AssetQuotation) UnmarshalBinary(data []byte) error {
if err := json.Unmarshal(data, &aq); err != nil {
return err
}
return nil
}
type AssetQuotationFull struct {
Symbol string
Name string
Address string
Blockchain string
Price float64
PriceYesterday float64
VolumeYesterdayUSD float64
Time time.Time
Source string
}
// MarshalBinary for quotations
func (aq *AssetQuotationFull) MarshalBinary() ([]byte, error) {
return json.Marshal(aq)
}
// UnmarshalBinary for quotations
func (aq *AssetQuotationFull) UnmarshalBinary(data []byte) error {
if err := json.Unmarshal(data, &aq); err != nil {
return err
}
return nil
}
type Price struct {
Symbol string
Name string
Price float64
Time time.Time
}
type CurrencyChange struct {
Symbol string
Rate float64
RateYesterday float64
}
type Change struct {
USD []CurrencyChange
}
// MarshalBinary -
func (e *Change) MarshalBinary() ([]byte, error) {
return json.Marshal(e)
}
// UnmarshalBinary -
func (e *Change) UnmarshalBinary(data []byte) error {
if err := json.Unmarshal(data, &e); err != nil {
return err
}
return nil
}
type Points struct {
DataPoints []clientInfluxdb.Result
}
func (e *Points) UnmarshalBinary(data []byte) error {
if err := json.Unmarshal(data, &e); err != nil {
return err
}
return nil
}
// MarshalBinary -
func (e *Points) MarshalBinary() ([]byte, error) {
return json.Marshal(e)
}
type CoinSymbolAndName struct {
Symbol string
Name string
}
type Pairs struct {
Pairs []dia.ExchangePair
}