-
Notifications
You must be signed in to change notification settings - Fork 18
/
interface.go
604 lines (557 loc) · 19.9 KB
/
interface.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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
package iex
import (
"encoding/json"
"fmt"
)
const IEXTP1 = "IEXTP1"
const (
StartMessages = "O"
StartSystemHours = "S"
StartMarketHours = "R"
EndMarketHours = "M"
EndSystemHours = "E"
EndMessages = "C"
)
const (
// Trading halted across all US equity markets.
TradingHalted = "H"
// Trading halt released into an Order Acceptance Period
// (IEX-listed securities only)
TradingOrderAcceptancePeriod = "O"
// Trading paused and Order Acceptance Period on IEX
// (IEX-listed securities only)
TradingPaused = "P"
// Trading on IEX
Trading = "T"
)
const (
// Trading halt reasons.
HaltNewsPending = "T1"
IPOIssueNotYetTrading = "IPO1"
IPOIssueDeferred = "IPOD"
MarketCircuitBreakerLevel3 = "MCB3"
ReasonNotAvailable = "NA"
// Order Acceptance Period Reasons
HaltNewsDisseminations = "T2"
IPONewIssueOrderAcceptancePeriod = "IPO2"
IPOPreLaunchPeriod = "IPO3"
MarketCircuitBreakerLevel1 = "MCB1"
MarketCircuitBreakerLevel2 = "MCB2"
)
const (
MarketOpen = "MarketOpen"
MarketClose = "MarketClose"
)
type TOPS struct {
// Refers to the stock ticker.
Symbol string
// Refers to IEX’s percentage of the market in the stock.
MarketPercent float64
// Refers to amount of shares on the bid on IEX.
BidSize int
// Refers to the best bid price on IEX.
BidPrice float64
// Refers to amount of shares on the ask on IEX.
AskSize int
// Refers to the best ask price on IEX.
AskPrice float64
// Refers to shares traded in the stock on IEX.
Volume int
// Refers to last sale price of the stock on IEX. (Refer to the attribution section above.)
LastSalePrice float64
// Refers to last sale size of the stock on IEX.
LastSaleSize int
// Refers to last sale time of the stock on IEX.
LastSaleTime Time
// Refers to the last update time of the data.
// If the value is the zero Time, IEX has not quoted the symbol in
// the trading day.
LastUpdated Time
}
type Last struct {
// Refers to the stock ticker.
Symbol string
// Refers to last sale price of the stock on IEX. (Refer to the attribution section above.)
Price float64
// Refers to last sale size of the stock on IEX.
Size int
// Refers to last sale time in epoch time of the stock on IEX.
Time Time
}
type HIST struct {
// URL to the available data file.
Link string
// Date of the data contained in this file.
Date string
// Which data feed is contained in this file.
Feed string
// The feed format specification version.
Version string
// The protocol version of the data.
Protocol string
// The size, in bytes, of the data file.
Size int64 `json:",string"`
}
type DEEP struct {
Symbol string
MarketPercent float64
Volume int
LastSalePrice float64
LastSaleSize int
LastSaleTime Time
LastUpdate Time
Bids []*Quote
Asks []*Quote
SystemEvent *SystemEvent
TradingStatus *TradingStatusMessage
OpHaltStatus *OpHaltStatus
SSRStatus *SSRStatus
SecurityEvent *SecurityEventMessage
Trades []*Trade
TradeBreaks []*TradeBreak
}
type Quote struct {
Price float64
Size float64
Timestamp Time
}
type SystemEvent struct {
SystemEvent string
Timestamp Time
}
type TradingStatusMessage struct {
Status string
Reason string
Timestamp Time
}
type OpHaltStatus struct {
IsHalted bool
Timestamp Time
}
type SSRStatus struct {
IsSSR bool
Detail string
Timestamp Time
}
type SecurityEventMessage struct {
SecurityEvent string
Timestamp Time
}
type Trade struct {
Price float64
Size int
TradeID int64
IsISO bool
IsOddLot bool
IsOutsideRegularHours bool
IsSinglePriceCross bool
IsTradeThroughExcempt bool
Timestamp Time
}
type TradeBreak struct {
Price float64
Size int
TradeID int64
IsISO bool
IsOddLot bool
IsOutsideRegularHours bool
IsSinglePriceCross bool
IsTradeThroughExcempt bool
Timestamp Time
}
type Book struct {
Bids []*Quote
Asks []*Quote
}
type Market struct {
// Refers to the Market Identifier Code (MIC).
MIC string
// Refers to the tape id of the venue.
TapeID string
// Refers to name of the venue defined by IEX.
VenueName string
// Refers to the amount of traded shares reported by the venue.
Volume int
// Refers to the amount of Tape A traded shares reported by the venue.
TapeA int
// Refers to the amount of Tape B traded shares reported by the venue.
TapeB int
// Refers to the amount of Tape C traded shares reported by the venue.
TapeC int
// Refers to the venue’s percentage of shares traded in the market.
MarketPercent float64
// Refers to the last update time of the data.
LastUpdated Time
}
type Symbol struct {
// Refers to the symbol represented in Nasdaq Integrated symbology (INET).
Symbol string
// Refers to the name of the company or security.
Name string
// Refers to the date the symbol reference data was generated.
Date string
// Will be true if the symbol is enabled for trading on IEX.
IsEnabled bool
}
type IntradayStats struct {
// Refers to single counted shares matched from executions on IEX.
Volume struct {
Value int
LastUpdated Time
}
// Refers to number of symbols traded on IEX.
SymbolsTraded struct {
Value int
LastUpdated Time
}
// Refers to executions received from order routed to away trading centers.
RoutedVolume struct {
Value int
LastUpdated Time
}
// Refers to sum of matched volume times execution price of those trades.
Notional struct {
Value int
LastUpdated Time
}
// Refers to IEX’s percentage of total US Equity market volume.
MarketShare struct {
Value float64
LastUpdated Time
}
}
type Stats struct {
// Refers to the trading day.
Date string
// Refers to executions received from order routed to away trading centers.
Volume int
// Refers to single counted shares matched from executions on IEX.
RoutedVolume int
// Refers to IEX’s percentage of total US Equity market volume.
MarketShare float64
// Will be true if the trading day is a half day.
IsHalfDay bool
// Refers to the number of lit shares traded on IEX (single-counted).
LitVolume int
}
type intBool bool
func (bit *intBool) UnmarshalJSON(data []byte) error {
asString := string(data)
if asString == "1" || asString == "true" {
*bit = true
} else if asString == "0" || asString == "false" {
*bit = false
} else {
return fmt.Errorf("boolean unmarshal error: invalid input %s", asString)
}
return nil
}
// UnmarshalJSON customizes JSON unmarshalling for the Stats
// type to be able to decode either 0/1 or true/false in the
// IsHalfDay field (see: https://github.com/timpalpant/go-iex/issues/21).
func (s *Stats) UnmarshalJSON(data []byte) error {
type Alias Stats
tmp := &struct {
IsHalfDay intBool
*Alias
}{
Alias: (*Alias)(s),
}
if err := json.Unmarshal(data, &tmp); err != nil {
return err
}
s.IsHalfDay = bool(tmp.IsHalfDay)
return nil
}
type Records struct {
// Refers to single counted shares matched from executions on IEX.
Volume *Record
// Refers to number of symbols traded on IEX.
SymbolsTraded *Record
// Refers to executions received from order routed to away trading centers.
RoutedVolume *Record
// Refers to sum of matched volume times execution price of those trades.
Notional *Record
}
type Record struct {
Value int `json:"recordValue"`
Date string `json:"recordDate"`
PreviousDayValue int
Avg30Value float64
}
type HistoricalSummary struct {
AverageDailyVolume float64
AverageDailyRoutedVolume float64
AverageMarketShare float64
AverageOrderSize float64
AverageFillSize float64
Bin100Percent float64
Bin101Percent float64
Bin200Percent float64
Bin300Percent float64
Bin400Percent float64
Bin500Percent float64
Bin1000Percent float64
Bin5000Percent float64
Bin10000Percent float64
Bin10000Trades float64
Bin20000Trades float64
Bin50000Trades float64
UniqueSymbolsTraded float64
BlockPercent float64
SelfCrossPercent float64
ETFPercent float64
LargeCapPercent float64
MidCapPercent float64
SmallCapPercent float64
VenueARCXFirstWaveWeight float64
VenueBATSFirstWaveWeight float64
VenueBATYFirstWaveWeight float64
VenueEDGAFirstWaveWeight float64
VenueEDGXFirstWaveWeight float64
VenueOverallFirstWaveWeight float64
VenueXASEFirstWaveWeight float64
VenueXBOSFirstWaveWeight float64
VenueXCHIFirstWaveWeight float64
VenueXCISFirstWaveWeight float64
VenueXNGSFirstWaveWeight float64
VenueXNYSFirstWaveWeight float64
VenueXPHLFirstWaveWeight float64
VenueARCXFirstWaveRate float64
VenueBATSFirstWaveRate float64
VenueBATYFirstWaveRate float64
VenueEDGAFirstWaveRate float64
VenueEDGXFirstWaveRate float64
VenueOverallFirstWaveRate float64
VenueXASEFirstWaveRate float64
VenueXBOSFirstWaveRate float64
VenueXCHIFirstWaveRate float64
VenueXCISFirstWaveRate float64
VenueXNGSFirstWaveRate float64
VenueXNYSFirstWaveRate float64
VenueXPHLFirstWaveRate float64
}
type KeyStats struct {
CompanyName string
Marketcap float64 // is not calculated in real time.
Beta float64
Week52high float64
Week52low float64
Week52change float64
ShortInterest float64
ShortDateJSON interface{} `json:"shortDate"`
ShortDate string // if not available, iex returns a number 0, see ShortDateJSON
DividendRate float64
DividendYield float64
ExDividendDateJSON interface{} `json:"exDividendDate"`
ExDividendDate string // if not available, iex returns a number 0, see ExDividendDateJSON
LatestEPS float64 // (Most recent quarter)
LatestEPSDate string
SharesOutstanding float64
Float float64
ReturnOnEquity float64 // (Trailing twelve months)
ConsensusEPS float64 // (Most recent quarter)
NumberOfEstimates float64 // (Most recent quarter)
Symbol string
EBITDA float64 // (Trailing twelve months)
Revenue float64 // (Trailing twelve months)
GrossProfit float64 // (Trailing twelve months)
Cash float64 // refers to total cash. (Trailing twelve months)
Debt float64 // refers to total debt. (Trailing twelve months)
TtmEPS float64 // (Trailing twelve months)
RevenuePerShare float64 // (Trailing twelve months)
RevenuePerEmployeeJSON interface{} `json:"revenuePerEmployee"`
RevenuePerEmployee float64 // (Trailing twelve months)
PeRatioHigh float64
PeRatioLow float64
EPSSurpriseDollar float64 // refers to the difference between actual EPS and consensus EPS in dollars.
EPSSurprisePercent float64 // refers to the percent difference between actual EPS and consensus EPS.
ReturnOnAssets float64 // (Trailing twelve months)
ReturnOnCapital float64 // (Trailing twelve months)
ProfitMargin float64
PriceToSales float64
PriceToBook float64
Day200MovingAvg float64
Day50MovingAvg float64
InstitutionPercent float64 // represents top 15 institutions
InsiderPercent float64
ShortRatio float64
Year5ChangePercent float64
Year2ChangePercent float64
Year1ChangePercent float64
YtdChangePercent float64
Month6ChangePercent float64
Month3ChangePercent float64
Month1ChangePercent float64
Day5ChangePercent float64
}
type News struct {
Datetime string
Headline string
Source string
URL string
Summary string
Related string
}
type StockQuote struct {
Symbol string // refers to the stock ticker.
CompanyName string // refers to the company name.
PrimaryExchange string // refers to the primary listings exchange.
Sector string // refers to the sector of the stock.
CalculationPrice string // refers to the source of the latest price. ("tops", "sip", "previousclose" or "close")
Open float64 // refers to the official open price
OpenTime int64 // refers to the official listing exchange time for the open
Close float64 // refers to the official close price
CloseTime int64 // refers to the official listing exchange time for the close
High float64 // refers to the market-wide highest price from the SIP. 15 minute delayed
Low float64 // refers to the market-wide lowest price from the SIP. 15 minute delayed
LatestPrice float64 // refers to the latest price being the IEX real time price, the 15 minute delayed market price, or the previous close price.
LatestSource string // refers to the source of latestPrice. ("IEX real time price", "15 minute delayed price", "Close" or "Previous close")
LatestTime string // refers to a human readable time of the latestPrice. The format will vary based on latestSource.
LatestUpdate int64 // refers to the update time of latestPrice in milliseconds since midnight Jan 1, 1970.
LatestVolume int64 // refers to the total market volume of the stock.
IexRealtimePrice float64 // refers to last sale price of the stock on IEX. (Refer to the attribution section above.)
IexRealtimeSize int64 // refers to last sale size of the stock on IEX.
IexLastUpdated int64 // refers to the last update time of the data in milliseconds since midnight Jan 1, 1970 UTC or -1 or 0. If the value is -1 or 0, IEX has not quoted the symbol in the trading day.
DelayedPrice float64 // refers to the 15 minute delayed market price.
DelayedPriceTime int64 // refers to the time of the delayed market price.
PreviousClose float64 // refers to the adjusted close price of the last trading day of the stock.
Change float64 // is calculated using calculationPrice from previousClose.
ChangePercent float64 // is calculated using calculationPrice from previousClose.
IexMarketPercent float64 // refers to IEX’s percentage of the market in the stock.
IexVolume int64 // refers to shares traded in the stock on IEX.
AvgTotalVolume int64 // refers to the 30 day average volume on all markets.
IexBidPrice float64 // refers to the best bid price on IEX.
IexBidSize int64 // refers to amount of shares on the bid on IEX.
IexAskPrice float64 // refers to the best ask price on IEX.
IexAskSize int64 // refers to amount of shares on the ask on IEX.
MarketCap int64 // is calculated in real time using calculationPrice.
PeRatio float64 // is calculated in real time using calculationPrice.
Week52High float64 // refers to the adjusted 52 week high.
Week52Low float64 // refers to the adjusted 52 week low.
YtdChange float64 // refers to the price change percentage from start of year to previous close.
}
type Company struct {
Symbol string
CompanyName string
Exchange string
Industry string
Website string
Description string
CEO string
Sector string
IssueType string // refers to the common issue type of the stock.
// ad – American Depository Receipt (ADR’s)
// re – Real Estate Investment Trust (REIT’s)
// ce – Closed end fund (Stock and Bond Fund)
// si – Secondary Issue
// lp – Limited Partnerships
// cs – Common Stock
// et – Exchange Traded Fund (ETF)
// (blank) = Not Available, i.e., Warrant, Note, or (non-filing) Closed Ended Funds
}
type Dividends struct {
ExDate string // refers to the dividend ex-date
PaymentDate string // refers to the payment date
RecordDate string // refers to the dividend record date
DeclaredDate string // refers to the dividend declaration date
AmountJSON interface{} `json:"amount"`
Amount float64 // refers to the payment amount
Flag string // refers to the dividend flag (
// FI = Final dividend, div ends or instrument ends,
// LI = Liquidation, instrument liquidates,
// PR = Proceeds of a sale of rights or shares,
// RE = Redemption of rights,
// AC = Accrued dividend,
// AR = Payment in arrears,
// AD = Additional payment,
// EX = Extra payment,
// SP = Special dividend,
// YE = Year end,
// UR = Unknown rate,
// SU = Regular dividend is suspended)
Type string // refers to the dividend payment type (Dividend income, Interest income, Stock dividend, Short term capital gain, Medium term capital gain, Long term capital gain, Unspecified term capital gain)
Qualified string // refers to the dividend income type
// P = Partially qualified income
// Q = Qualified income
// N = Unqualified income
// null = N/A or unknown
IndicatedJSON interface{} `json:"Indicated"`
Indicated float64 // refers to the indicated rate of the dividend
}
type EarningsReport struct {
Symbol string
Earnings []*Earning
}
type Earning struct {
ActualEPS float64 // Actual earnings per share for the period
ConsensusEPS float64 // Consensus EPS estimate trend for the period
EstimatedEPS float64 // Earnings per share estimate for the period
AnnounceTime string // Time of earnings announcement. BTO (Before open), DMT (During trading), AMC (After close)
NumberOfEstimates float64 // Number of estimates for the period
EPSSurpriseDollar float64 // Dollar amount of EPS surprise for the period
EPSReportDate string // Expected earnings report date YYYY-MM-DD
FiscalPeriod string // The fiscal quarter the earnings data applies to Q# YYYY
FiscalEndDate string // Date representing the company fiscal quarter end YYYY-MM-DD
YearAgo float64 // Represents the EPS of the quarter a year ago
YearAgoChangePercent float64 // Represents the percent difference between the quarter a year ago actualEPS and current period actualEPS.
EstimatedChangePercent float64 // Represents the percent difference between the quarter a year ago actualEPS and current period estimatedEPS.
SymbolId float64 // Represents the IEX id for the stock
}
type FinancialsReport struct {
Symbol string
Financials []*Financial
}
type Financial struct {
ReportDate string
GrossProfit int64
CostOfRevenue int64
OperatingRevenue int64
TotalRevenue int64
OperatingIncome int64
NetIncome int64
ResearchAndDevelopment int64
OperatingExpense int64
CurrentAssets int64
TotalAssets int64
TotalLiabilities int64
CurrentCash int64
CurrentDebt int64
TotalCash int64
TotalDebt int64
ShareholderEquity int64
CashChange int64
CashFlow int64
OperatingGainsLosses string
}
type Chart struct {
// Only available on 1d charts
Minute string
Average float64
Notional float64
NumberOfTrades int
MarketHigh float64
MarketLow float64
// only available on 1d charts, 15 minutes delayed
MarketAverage float64
MarketVolume int
MarketNotional float64
MarketNumberOfTrades int
MarketChangeOverTime float64
// TODO: Only available on 1d charts when chartSimplify = true
// simplifyFactor: array (of what?)
// Not availabe on 1d charts
Date string
Open float64
Close float64
UnadjustedVolume int
Change float64
ChangePercent float64
VWAP float64 // volume weitghted average price
// Available on all charts
High float64
Low float64
Volume int
Label string
ChangeOverTime float64
}