forked from gofinance/ib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscanner_subscription.go
More file actions
28 lines (26 loc) · 857 Bytes
/
scanner_subscription.go
File metadata and controls
28 lines (26 loc) · 857 Bytes
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
package ib
// This file ports IB API ScannerSubscription.java. Please preserve declaration order.
// ScannerSubscription .
type ScannerSubscription struct {
NumberOfRows int64
Instrument string
LocationCode string
ScanCode string
AbovePrice float64
BelowPrice float64
AboveVolume int64
AverageOptionVolumeAbove int64
MarketCapAbove float64
MarketCapBelow float64
MoodyRatingAbove string
MoodyRatingBelow string
SPRatingAbove string
SPRatingBelow string
MaturityDateAbove string
MaturityDateBelow string
CouponRateAbove float64
CouponRateBelow float64
ExcludeConvertible string
ScannerSettingPairs string
StockTypeFilter string
}