ib-ruby 0.8.1 → 0.8.3
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +0 -1
- data/HISTORY +5 -0
- data/README.md +47 -53
- data/Rakefile +2 -1
- data/VERSION +1 -1
- data/app/assets/javascripts/ib/application.js +15 -0
- data/app/assets/javascripts/ib/underlyings.js +2 -0
- data/app/assets/stylesheets/ib/application.css +13 -0
- data/app/assets/stylesheets/ib/underlyings.css +4 -0
- data/app/assets/stylesheets/scaffold.css +56 -0
- data/app/controllers/ib/application_controller.rb +5 -0
- data/app/controllers/ib/underlyings_controller.rb +87 -0
- data/app/helpers/ib/application_helper.rb +4 -0
- data/app/helpers/ib/underlyings_helper.rb +4 -0
- data/app/models/ib/underlying.rb +5 -0
- data/app/views/ib/underlyings/_form.html.erb +33 -0
- data/app/views/ib/underlyings/edit.html.erb +6 -0
- data/app/views/ib/underlyings/index.html.erb +29 -0
- data/app/views/ib/underlyings/new.html.erb +5 -0
- data/app/views/ib/underlyings/show.html.erb +25 -0
- data/app/views/layouts/ib/application.html.erb +14 -0
- data/config/routes.rb +6 -0
- data/db/config.yml +19 -0
- data/db/migrate/{101_add_executions.rb → 101_add_ib_executions.rb} +2 -2
- data/db/migrate/{111_add_bars.rb → 111_add_ib_bars.rb} +2 -2
- data/db/migrate/{121_add_order_states.rb → 121_add_ib_order_states.rb} +2 -2
- data/db/migrate/{131_add_orders.rb → 131_add_ib_orders.rb} +2 -2
- data/db/migrate/{141_add_combo_legs.rb → 141_add_ib_combo_legs.rb} +2 -2
- data/db/migrate/{151_add_underlyings.rb → 151_add_ib_underlyings.rb} +2 -2
- data/db/migrate/{161_add_contract_details.rb → 161_add_ib_contract_details.rb} +2 -2
- data/db/migrate/{171_add_contracts.rb → 171_add_ib_contracts.rb} +2 -2
- data/db/schema.rb +245 -0
- data/lib/ib/base.rb +97 -0
- data/lib/ib/base_properties.rb +140 -0
- data/lib/{ib-ruby → ib}/connection.rb +2 -2
- data/lib/{ib-ruby → ib}/constants.rb +0 -0
- data/lib/{ib-ruby → ib}/db.rb +9 -5
- data/lib/ib/engine.rb +35 -0
- data/lib/{ib-ruby → ib}/errors.rb +0 -0
- data/lib/{ib-ruby → ib}/extensions.rb +2 -2
- data/lib/{ib-ruby → ib}/logger.rb +0 -0
- data/lib/{ib-ruby → ib}/messages/abstract_message.rb +0 -0
- data/lib/{ib-ruby → ib}/messages/incoming/abstract_message.rb +1 -1
- data/lib/{ib-ruby → ib}/messages/incoming/alert.rb +0 -0
- data/lib/{ib-ruby → ib}/messages/incoming/contract_data.rb +0 -0
- data/lib/{ib-ruby → ib}/messages/incoming/delta_neutral_validation.rb +0 -0
- data/lib/{ib-ruby → ib}/messages/incoming/execution_data.rb +0 -0
- data/lib/{ib-ruby → ib}/messages/incoming/historical_data.rb +0 -0
- data/lib/{ib-ruby → ib}/messages/incoming/market_depths.rb +0 -0
- data/lib/{ib-ruby → ib}/messages/incoming/next_valid_id.rb +0 -0
- data/lib/{ib-ruby → ib}/messages/incoming/open_order.rb +0 -0
- data/lib/{ib-ruby → ib}/messages/incoming/order_status.rb +0 -0
- data/lib/{ib-ruby → ib}/messages/incoming/portfolio_value.rb +0 -0
- data/lib/{ib-ruby → ib}/messages/incoming/real_time_bar.rb +0 -0
- data/lib/{ib-ruby → ib}/messages/incoming/scanner_data.rb +0 -0
- data/lib/{ib-ruby → ib}/messages/incoming/ticks.rb +0 -0
- data/lib/{ib-ruby → ib}/messages/incoming.rb +14 -14
- data/lib/{ib-ruby → ib}/messages/outgoing/abstract_message.rb +1 -1
- data/lib/{ib-ruby → ib}/messages/outgoing/bar_requests.rb +0 -0
- data/lib/{ib-ruby → ib}/messages/outgoing/place_order.rb +0 -0
- data/lib/{ib-ruby → ib}/messages/outgoing.rb +5 -5
- data/lib/ib/messages.rb +8 -0
- data/lib/ib/model.rb +8 -0
- data/lib/ib/models.rb +10 -0
- data/lib/ib/requires.rb +9 -0
- data/lib/{ib-ruby → ib}/socket.rb +0 -0
- data/lib/{ib-ruby → ib}/symbols/forex.rb +1 -1
- data/lib/{ib-ruby → ib}/symbols/futures.rb +2 -2
- data/lib/{ib-ruby → ib}/symbols/options.rb +1 -1
- data/lib/{ib-ruby → ib}/symbols/stocks.rb +1 -1
- data/lib/ib/symbols.rb +9 -0
- data/lib/{ib-ruby → ib}/version.rb +0 -0
- data/lib/ib-ruby.rb +2 -24
- data/lib/ib.rb +23 -0
- data/lib/models/ib/bag.rb +51 -0
- data/lib/models/ib/bar.rb +41 -0
- data/lib/models/ib/combo_leg.rb +102 -0
- data/lib/models/ib/contract.rb +287 -0
- data/lib/models/ib/contract_detail.rb +68 -0
- data/lib/models/ib/execution.rb +62 -0
- data/lib/models/ib/option.rb +60 -0
- data/lib/models/ib/order.rb +389 -0
- data/lib/models/ib/order_state.rb +126 -0
- data/lib/models/ib/underlying.rb +35 -0
- data/spec/README.md +34 -2
- data/spec/TODO +5 -1
- data/spec/comb.rb +13 -0
- data/spec/db.rb +1 -1
- data/spec/db_helper.rb +3 -3
- data/spec/dummy.rb +13 -0
- data/spec/gw.rb +4 -0
- data/spec/{ib-ruby → ib}/connection_spec.rb +0 -0
- data/spec/{ib-ruby → ib}/messages/incoming/alert_spec.rb +0 -0
- data/spec/{ib-ruby → ib}/messages/incoming/open_order_spec.rb +0 -0
- data/spec/{ib-ruby → ib}/messages/incoming/order_status_spec.rb +16 -17
- data/spec/{ib-ruby → ib}/messages/outgoing/account_data_spec.rb +0 -0
- data/spec/{ib-ruby → ib}/messages/outgoing/market_data_type_spec.rb +0 -0
- data/spec/integration/historic_data_spec.rb +3 -3
- data/spec/integration/orders/trades_spec.rb +1 -1
- data/spec/{ib-ruby/models → models/ib}/bag_spec.rb +2 -7
- data/spec/{ib-ruby/models → models/ib}/bar_spec.rb +1 -6
- data/spec/{ib-ruby/models → models/ib}/combo_leg_spec.rb +2 -12
- data/spec/{ib-ruby/models → models/ib}/contract_detail_spec.rb +3 -8
- data/spec/{ib-ruby/models → models/ib}/contract_spec.rb +4 -12
- data/spec/{ib-ruby/models → models/ib}/execution_spec.rb +2 -7
- data/spec/{ib-ruby/models → models/ib}/option_spec.rb +1 -6
- data/spec/{ib-ruby/models → models/ib}/order_spec.rb +5 -10
- data/spec/{ib-ruby/models → models/ib}/order_state_spec.rb +2 -7
- data/spec/{ib-ruby/models → models/ib}/underlying_spec.rb +3 -7
- data/spec/my.rb +5 -0
- data/spec/spec_helper.rb +62 -36
- metadata +417 -544
- data/lib/ib-ruby/messages.rb +0 -8
- data/lib/ib-ruby/models/bag.rb +0 -54
- data/lib/ib-ruby/models/bar.rb +0 -43
- data/lib/ib-ruby/models/combo_leg.rb +0 -104
- data/lib/ib-ruby/models/contract.rb +0 -287
- data/lib/ib-ruby/models/contract_detail.rb +0 -70
- data/lib/ib-ruby/models/execution.rb +0 -64
- data/lib/ib-ruby/models/model.rb +0 -105
- data/lib/ib-ruby/models/model_properties.rb +0 -146
- data/lib/ib-ruby/models/option.rb +0 -62
- data/lib/ib-ruby/models/order.rb +0 -389
- data/lib/ib-ruby/models/order_state.rb +0 -128
- data/lib/ib-ruby/models/underlying.rb +0 -36
- data/lib/ib-ruby/models.rb +0 -15
- data/lib/ib-ruby/symbols.rb +0 -9
- data/spec/test.rb +0 -61
metadata
CHANGED
@@ -1,559 +1,432 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: ib-ruby
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
prerelease:
|
5
|
-
version: 0.8.
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease:
|
5
|
+
version: 0.8.3
|
6
6
|
platform: ruby
|
7
|
-
authors:
|
8
|
-
- Paul Legato
|
9
|
-
- arvicco
|
10
|
-
autorequire:
|
7
|
+
authors:
|
8
|
+
- Paul Legato
|
9
|
+
- arvicco
|
10
|
+
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
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
|
-
|
13
|
+
|
14
|
+
date: 2012-07-16 00:00:00 Z
|
15
|
+
dependencies:
|
16
|
+
- !ruby/object:Gem::Dependency
|
17
|
+
name: bundler
|
18
|
+
prerelease: false
|
19
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
20
|
+
none: false
|
21
|
+
requirements:
|
22
|
+
- - ">="
|
23
|
+
- !ruby/object:Gem::Version
|
24
|
+
version: 1.1.3
|
25
|
+
type: :runtime
|
26
|
+
version_requirements: *id001
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: activerecord
|
29
|
+
prerelease: false
|
30
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
31
|
+
none: false
|
32
|
+
requirements:
|
33
|
+
- - ">="
|
34
|
+
- !ruby/object:Gem::Version
|
35
|
+
version: 3.2.0
|
36
|
+
type: :runtime
|
37
|
+
version_requirements: *id002
|
38
|
+
- !ruby/object:Gem::Dependency
|
39
|
+
name: xml-simple
|
40
|
+
prerelease: false
|
41
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
42
|
+
none: false
|
43
|
+
requirements:
|
44
|
+
- - ">="
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: 1.1.1
|
47
|
+
type: :runtime
|
48
|
+
version_requirements: *id003
|
49
|
+
- !ruby/object:Gem::Dependency
|
50
|
+
name: standalone_migrations
|
51
|
+
prerelease: false
|
52
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
53
|
+
none: false
|
54
|
+
requirements:
|
55
|
+
- - ">="
|
56
|
+
- !ruby/object:Gem::Version
|
57
|
+
version: "0"
|
58
|
+
type: :runtime
|
59
|
+
version_requirements: *id004
|
60
|
+
- !ruby/object:Gem::Dependency
|
61
|
+
name: database_cleaner
|
62
|
+
prerelease: false
|
63
|
+
requirement: &id005 !ruby/object:Gem::Requirement
|
64
|
+
none: false
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: 0.7.2
|
69
|
+
type: :development
|
70
|
+
version_requirements: *id005
|
71
|
+
- !ruby/object:Gem::Dependency
|
72
|
+
name: rspec
|
73
|
+
prerelease: false
|
74
|
+
requirement: &id006 !ruby/object:Gem::Requirement
|
75
|
+
none: false
|
76
|
+
requirements:
|
77
|
+
- - ">="
|
78
|
+
- !ruby/object:Gem::Version
|
79
|
+
version: 2.10.0
|
80
|
+
type: :development
|
81
|
+
version_requirements: *id006
|
82
|
+
- !ruby/object:Gem::Dependency
|
83
|
+
name: standalone_migrations
|
84
|
+
prerelease: false
|
85
|
+
requirement: &id007 !ruby/object:Gem::Requirement
|
86
|
+
none: false
|
87
|
+
requirements:
|
88
|
+
- - ">="
|
89
|
+
- !ruby/object:Gem::Version
|
90
|
+
version: "0"
|
91
|
+
type: :development
|
92
|
+
version_requirements: *id007
|
93
|
+
- !ruby/object:Gem::Dependency
|
94
|
+
name: my_scripts
|
95
|
+
prerelease: false
|
96
|
+
requirement: &id008 !ruby/object:Gem::Requirement
|
97
|
+
none: false
|
98
|
+
requirements:
|
99
|
+
- - ">="
|
100
|
+
- !ruby/object:Gem::Version
|
101
|
+
version: "0"
|
102
|
+
type: :development
|
103
|
+
version_requirements: *id008
|
104
|
+
- !ruby/object:Gem::Dependency
|
105
|
+
name: rails
|
106
|
+
prerelease: false
|
107
|
+
requirement: &id009 !ruby/object:Gem::Requirement
|
108
|
+
none: false
|
109
|
+
requirements:
|
110
|
+
- - ~>
|
111
|
+
- !ruby/object:Gem::Version
|
112
|
+
version: 3.2.3
|
113
|
+
type: :development
|
114
|
+
version_requirements: *id009
|
115
|
+
- !ruby/object:Gem::Dependency
|
116
|
+
name: rspec-rails
|
117
|
+
prerelease: false
|
118
|
+
requirement: &id010 !ruby/object:Gem::Requirement
|
119
|
+
none: false
|
120
|
+
requirements:
|
121
|
+
- - ~>
|
122
|
+
- !ruby/object:Gem::Version
|
123
|
+
version: 2.10.1
|
124
|
+
type: :development
|
125
|
+
version_requirements: *id010
|
126
|
+
- !ruby/object:Gem::Dependency
|
127
|
+
name: capybara
|
128
|
+
prerelease: false
|
129
|
+
requirement: &id011 !ruby/object:Gem::Requirement
|
130
|
+
none: false
|
131
|
+
requirements:
|
132
|
+
- - ">="
|
133
|
+
- !ruby/object:Gem::Version
|
134
|
+
version: "0"
|
135
|
+
type: :development
|
136
|
+
version_requirements: *id011
|
137
|
+
- !ruby/object:Gem::Dependency
|
138
|
+
name: combustion
|
139
|
+
prerelease: false
|
140
|
+
requirement: &id012 !ruby/object:Gem::Requirement
|
141
|
+
none: false
|
142
|
+
requirements:
|
143
|
+
- - ">="
|
144
|
+
- !ruby/object:Gem::Version
|
145
|
+
version: "0"
|
146
|
+
type: :development
|
147
|
+
version_requirements: *id012
|
148
|
+
- !ruby/object:Gem::Dependency
|
149
|
+
name: pry
|
150
|
+
prerelease: false
|
151
|
+
requirement: &id013 !ruby/object:Gem::Requirement
|
152
|
+
none: false
|
153
|
+
requirements:
|
154
|
+
- - ">="
|
155
|
+
- !ruby/object:Gem::Version
|
156
|
+
version: "0"
|
157
|
+
type: :development
|
158
|
+
version_requirements: *id013
|
159
|
+
- !ruby/object:Gem::Dependency
|
160
|
+
name: pry-doc
|
161
|
+
prerelease: false
|
162
|
+
requirement: &id014 !ruby/object:Gem::Requirement
|
163
|
+
none: false
|
164
|
+
requirements:
|
165
|
+
- - ">="
|
166
|
+
- !ruby/object:Gem::Version
|
167
|
+
version: "0"
|
168
|
+
type: :development
|
169
|
+
version_requirements: *id014
|
170
|
+
- !ruby/object:Gem::Dependency
|
171
|
+
name: pry-rails
|
172
|
+
prerelease: false
|
173
|
+
requirement: &id015 !ruby/object:Gem::Requirement
|
174
|
+
none: false
|
175
|
+
requirements:
|
176
|
+
- - ">="
|
177
|
+
- !ruby/object:Gem::Version
|
178
|
+
version: "0"
|
179
|
+
type: :development
|
180
|
+
version_requirements: *id015
|
149
181
|
description: Ruby Implementation of the Interactive Brokers TWS API
|
150
|
-
email:
|
151
|
-
- pjlegato@gmail.com
|
152
|
-
- arvicco@gmail.com
|
153
|
-
executables:
|
154
|
-
- account_info
|
155
|
-
- cancel_orders
|
156
|
-
- contract_details
|
157
|
-
- depth_of_market
|
158
|
-
- fa_accounts
|
159
|
-
- fundamental_data
|
160
|
-
- historic_data
|
161
|
-
- historic_data_cli
|
162
|
-
- list_orders
|
163
|
-
- market_data
|
164
|
-
- option_data
|
165
|
-
- place_combo_order
|
166
|
-
- place_order
|
167
|
-
- template
|
168
|
-
- tick_data
|
169
|
-
- time_and_sales
|
182
|
+
email:
|
183
|
+
- pjlegato@gmail.com
|
184
|
+
- arvicco@gmail.com
|
185
|
+
executables:
|
186
|
+
- account_info
|
187
|
+
- cancel_orders
|
188
|
+
- contract_details
|
189
|
+
- depth_of_market
|
190
|
+
- fa_accounts
|
191
|
+
- fundamental_data
|
192
|
+
- historic_data
|
193
|
+
- historic_data_cli
|
194
|
+
- list_orders
|
195
|
+
- market_data
|
196
|
+
- option_data
|
197
|
+
- place_combo_order
|
198
|
+
- place_order
|
199
|
+
- template
|
200
|
+
- tick_data
|
201
|
+
- time_and_sales
|
170
202
|
extensions: []
|
203
|
+
|
171
204
|
extra_rdoc_files: []
|
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
|
-
c3BlYy9vcmRlcl9oZWxwZXIucmI=
|
327
|
-
- !binary |-
|
328
|
-
c3BlYy9SRUFETUUubWQ=
|
329
|
-
- !binary |-
|
330
|
-
c3BlYy9zcGVjX2hlbHBlci5yYg==
|
331
|
-
- !binary |-
|
332
|
-
c3BlYy90ZXN0LnJi
|
333
|
-
- !binary |-
|
334
|
-
c3BlYy9UT0RP
|
335
|
-
- !binary |-
|
336
|
-
c3BlYy90d3MucmI=
|
337
|
-
- !binary |-
|
338
|
-
c3BlYy92LnJi
|
339
|
-
- !binary |-
|
340
|
-
c3BlYy9pYi1ydWJ5L2Nvbm5lY3Rpb25fc3BlYy5yYg==
|
341
|
-
- !binary |-
|
342
|
-
c3BlYy9pYi1ydWJ5L21lc3NhZ2VzL2luY29taW5nL2FsZXJ0X3NwZWMucmI=
|
343
|
-
- !binary |-
|
344
|
-
c3BlYy9pYi1ydWJ5L21lc3NhZ2VzL2luY29taW5nL29wZW5fb3JkZXJfc3Bl
|
345
|
-
Yy5yYg==
|
346
|
-
- !binary |-
|
347
|
-
c3BlYy9pYi1ydWJ5L21lc3NhZ2VzL2luY29taW5nL29yZGVyX3N0YXR1c19z
|
348
|
-
cGVjLnJi
|
349
|
-
- !binary |-
|
350
|
-
c3BlYy9pYi1ydWJ5L21lc3NhZ2VzL291dGdvaW5nL2FjY291bnRfZGF0YV9z
|
351
|
-
cGVjLnJi
|
352
|
-
- !binary |-
|
353
|
-
c3BlYy9pYi1ydWJ5L21lc3NhZ2VzL291dGdvaW5nL21hcmtldF9kYXRhX3R5
|
354
|
-
cGVfc3BlYy5yYg==
|
355
|
-
- !binary |-
|
356
|
-
c3BlYy9pYi1ydWJ5L21vZGVscy9iYWdfc3BlYy5yYg==
|
357
|
-
- !binary |-
|
358
|
-
c3BlYy9pYi1ydWJ5L21vZGVscy9iYXJfc3BlYy5yYg==
|
359
|
-
- !binary |-
|
360
|
-
c3BlYy9pYi1ydWJ5L21vZGVscy9jb21ib19sZWdfc3BlYy5yYg==
|
361
|
-
- !binary |-
|
362
|
-
c3BlYy9pYi1ydWJ5L21vZGVscy9jb250cmFjdF9kZXRhaWxfc3BlYy5yYg==
|
363
|
-
- !binary |-
|
364
|
-
c3BlYy9pYi1ydWJ5L21vZGVscy9jb250cmFjdF9zcGVjLnJi
|
365
|
-
- !binary |-
|
366
|
-
c3BlYy9pYi1ydWJ5L21vZGVscy9leGVjdXRpb25fc3BlYy5yYg==
|
367
|
-
- !binary |-
|
368
|
-
c3BlYy9pYi1ydWJ5L21vZGVscy9vcHRpb25fc3BlYy5yYg==
|
369
|
-
- !binary |-
|
370
|
-
c3BlYy9pYi1ydWJ5L21vZGVscy9vcmRlcl9zcGVjLnJi
|
371
|
-
- !binary |-
|
372
|
-
c3BlYy9pYi1ydWJ5L21vZGVscy9vcmRlcl9zdGF0ZV9zcGVjLnJi
|
373
|
-
- !binary |-
|
374
|
-
c3BlYy9pYi1ydWJ5L21vZGVscy91bmRlcmx5aW5nX3NwZWMucmI=
|
375
|
-
- !binary |-
|
376
|
-
c3BlYy9pbnRlZ3JhdGlvbi9hY2NvdW50X2luZm9fc3BlYy5yYg==
|
377
|
-
- !binary |-
|
378
|
-
c3BlYy9pbnRlZ3JhdGlvbi9jb250cmFjdF9pbmZvX3NwZWMucmI=
|
379
|
-
- !binary |-
|
380
|
-
c3BlYy9pbnRlZ3JhdGlvbi9kZXB0aF9kYXRhX3NwZWMucmI=
|
381
|
-
- !binary |-
|
382
|
-
c3BlYy9pbnRlZ3JhdGlvbi9mdW5kYW1lbnRhbF9kYXRhX3NwZWMucmI=
|
383
|
-
- !binary |-
|
384
|
-
c3BlYy9pbnRlZ3JhdGlvbi9oaXN0b3JpY19kYXRhX3NwZWMucmI=
|
385
|
-
- !binary |-
|
386
|
-
c3BlYy9pbnRlZ3JhdGlvbi9tYXJrZXRfZGF0YV9zcGVjLnJi
|
387
|
-
- !binary |-
|
388
|
-
c3BlYy9pbnRlZ3JhdGlvbi9vcHRpb25fZGF0YV9zcGVjLnJi
|
389
|
-
- !binary |-
|
390
|
-
c3BlYy9pbnRlZ3JhdGlvbi9vcmRlcnMvYXR0YWNoZWRfc3BlYy5yYg==
|
391
|
-
- !binary |-
|
392
|
-
c3BlYy9pbnRlZ3JhdGlvbi9vcmRlcnMvY29tYm9fc3BlYy5yYg==
|
393
|
-
- !binary |-
|
394
|
-
c3BlYy9pbnRlZ3JhdGlvbi9vcmRlcnMvcGxhY2VtZW50X3NwZWMucmI=
|
395
|
-
- !binary |-
|
396
|
-
c3BlYy9pbnRlZ3JhdGlvbi9vcmRlcnMvdHJhZGVzX3NwZWMucmI=
|
397
|
-
- !binary |-
|
398
|
-
c3BlYy9pbnRlZ3JhdGlvbi9vcmRlcnMvdmFsaWRfaWRzX3NwZWMucmI=
|
399
|
-
- !binary |-
|
400
|
-
dGFza3MvY29tbW9uLnJha2U=
|
401
|
-
- !binary |-
|
402
|
-
dGFza3MvZG9jLnJha2U=
|
403
|
-
- !binary |-
|
404
|
-
dGFza3MvZ2VtLnJha2U=
|
405
|
-
- !binary |-
|
406
|
-
dGFza3MvZ2l0LnJha2U=
|
407
|
-
- !binary |-
|
408
|
-
dGFza3Mvc3BlYy5yYWtl
|
409
|
-
- !binary |-
|
410
|
-
dGFza3MvdmVyc2lvbi5yYWtl
|
411
|
-
- !binary |-
|
412
|
-
ZGIvbWlncmF0ZS8xMDFfYWRkX2V4ZWN1dGlvbnMucmI=
|
413
|
-
- !binary |-
|
414
|
-
ZGIvbWlncmF0ZS8xMTFfYWRkX2JhcnMucmI=
|
415
|
-
- !binary |-
|
416
|
-
ZGIvbWlncmF0ZS8xMjFfYWRkX29yZGVyX3N0YXRlcy5yYg==
|
417
|
-
- !binary |-
|
418
|
-
ZGIvbWlncmF0ZS8xMzFfYWRkX29yZGVycy5yYg==
|
419
|
-
- !binary |-
|
420
|
-
ZGIvbWlncmF0ZS8xNDFfYWRkX2NvbWJvX2xlZ3MucmI=
|
421
|
-
- !binary |-
|
422
|
-
ZGIvbWlncmF0ZS8xNTFfYWRkX3VuZGVybHlpbmdzLnJi
|
423
|
-
- !binary |-
|
424
|
-
ZGIvbWlncmF0ZS8xNjFfYWRkX2NvbnRyYWN0X2RldGFpbHMucmI=
|
425
|
-
- !binary |-
|
426
|
-
ZGIvbWlncmF0ZS8xNzFfYWRkX2NvbnRyYWN0cy5yYg==
|
427
|
-
- !binary |-
|
428
|
-
UmFrZWZpbGU=
|
429
|
-
- !binary |-
|
430
|
-
UkVBRE1FLm1k
|
431
|
-
- !binary |-
|
432
|
-
TElDRU5TRQ==
|
433
|
-
- !binary |-
|
434
|
-
VkVSU0lPTg==
|
435
|
-
- !binary |-
|
436
|
-
SElTVE9SWQ==
|
437
|
-
- !binary |-
|
438
|
-
LmdpdGlnbm9yZQ==
|
205
|
+
|
206
|
+
files:
|
207
|
+
- app/assets/javascripts/ib/application.js
|
208
|
+
- app/assets/javascripts/ib/underlyings.js
|
209
|
+
- app/assets/stylesheets/scaffold.css
|
210
|
+
- app/assets/stylesheets/ib/application.css
|
211
|
+
- app/assets/stylesheets/ib/underlyings.css
|
212
|
+
- app/controllers/ib/application_controller.rb
|
213
|
+
- app/controllers/ib/underlyings_controller.rb
|
214
|
+
- app/helpers/ib/application_helper.rb
|
215
|
+
- app/helpers/ib/underlyings_helper.rb
|
216
|
+
- app/models/ib/underlying.rb
|
217
|
+
- app/views/ib/underlyings/_form.html.erb
|
218
|
+
- app/views/ib/underlyings/edit.html.erb
|
219
|
+
- app/views/ib/underlyings/index.html.erb
|
220
|
+
- app/views/ib/underlyings/new.html.erb
|
221
|
+
- app/views/ib/underlyings/show.html.erb
|
222
|
+
- app/views/layouts/ib/application.html.erb
|
223
|
+
- config/routes.rb
|
224
|
+
- db/config.yml
|
225
|
+
- db/schema.rb
|
226
|
+
- db/migrate/101_add_ib_executions.rb
|
227
|
+
- db/migrate/111_add_ib_bars.rb
|
228
|
+
- db/migrate/121_add_ib_order_states.rb
|
229
|
+
- db/migrate/131_add_ib_orders.rb
|
230
|
+
- db/migrate/141_add_ib_combo_legs.rb
|
231
|
+
- db/migrate/151_add_ib_underlyings.rb
|
232
|
+
- db/migrate/161_add_ib_contract_details.rb
|
233
|
+
- db/migrate/171_add_ib_contracts.rb
|
234
|
+
- bin/account_info
|
235
|
+
- bin/cancel_orders
|
236
|
+
- bin/contract_details
|
237
|
+
- bin/depth_of_market
|
238
|
+
- bin/fa_accounts
|
239
|
+
- bin/fundamental_data
|
240
|
+
- bin/historic_data
|
241
|
+
- bin/historic_data_cli
|
242
|
+
- bin/list_orders
|
243
|
+
- bin/market_data
|
244
|
+
- bin/option_data
|
245
|
+
- bin/place_combo_order
|
246
|
+
- bin/place_order
|
247
|
+
- bin/template
|
248
|
+
- bin/tick_data
|
249
|
+
- bin/time_and_sales
|
250
|
+
- lib/ib-ruby.rb
|
251
|
+
- lib/ib.rb
|
252
|
+
- lib/ib/base.rb
|
253
|
+
- lib/ib/base_properties.rb
|
254
|
+
- lib/ib/connection.rb
|
255
|
+
- lib/ib/constants.rb
|
256
|
+
- lib/ib/db.rb
|
257
|
+
- lib/ib/engine.rb
|
258
|
+
- lib/ib/errors.rb
|
259
|
+
- lib/ib/extensions.rb
|
260
|
+
- lib/ib/logger.rb
|
261
|
+
- lib/ib/messages.rb
|
262
|
+
- lib/ib/model.rb
|
263
|
+
- lib/ib/models.rb
|
264
|
+
- lib/ib/requires.rb
|
265
|
+
- lib/ib/socket.rb
|
266
|
+
- lib/ib/symbols.rb
|
267
|
+
- lib/ib/version.rb
|
268
|
+
- lib/ib/messages/abstract_message.rb
|
269
|
+
- lib/ib/messages/incoming.rb
|
270
|
+
- lib/ib/messages/outgoing.rb
|
271
|
+
- lib/ib/messages/incoming/abstract_message.rb
|
272
|
+
- lib/ib/messages/incoming/alert.rb
|
273
|
+
- lib/ib/messages/incoming/contract_data.rb
|
274
|
+
- lib/ib/messages/incoming/delta_neutral_validation.rb
|
275
|
+
- lib/ib/messages/incoming/execution_data.rb
|
276
|
+
- lib/ib/messages/incoming/historical_data.rb
|
277
|
+
- lib/ib/messages/incoming/market_depths.rb
|
278
|
+
- lib/ib/messages/incoming/next_valid_id.rb
|
279
|
+
- lib/ib/messages/incoming/open_order.rb
|
280
|
+
- lib/ib/messages/incoming/order_status.rb
|
281
|
+
- lib/ib/messages/incoming/portfolio_value.rb
|
282
|
+
- lib/ib/messages/incoming/real_time_bar.rb
|
283
|
+
- lib/ib/messages/incoming/scanner_data.rb
|
284
|
+
- lib/ib/messages/incoming/ticks.rb
|
285
|
+
- lib/ib/messages/outgoing/abstract_message.rb
|
286
|
+
- lib/ib/messages/outgoing/bar_requests.rb
|
287
|
+
- lib/ib/messages/outgoing/place_order.rb
|
288
|
+
- lib/ib/symbols/forex.rb
|
289
|
+
- lib/ib/symbols/futures.rb
|
290
|
+
- lib/ib/symbols/options.rb
|
291
|
+
- lib/ib/symbols/stocks.rb
|
292
|
+
- lib/models/ib/bag.rb
|
293
|
+
- lib/models/ib/bar.rb
|
294
|
+
- lib/models/ib/combo_leg.rb
|
295
|
+
- lib/models/ib/contract.rb
|
296
|
+
- lib/models/ib/contract_detail.rb
|
297
|
+
- lib/models/ib/execution.rb
|
298
|
+
- lib/models/ib/option.rb
|
299
|
+
- lib/models/ib/order.rb
|
300
|
+
- lib/models/ib/order_state.rb
|
301
|
+
- lib/models/ib/underlying.rb
|
302
|
+
- spec/account_helper.rb
|
303
|
+
- spec/comb.rb
|
304
|
+
- spec/combo_helper.rb
|
305
|
+
- spec/db.rb
|
306
|
+
- spec/db_helper.rb
|
307
|
+
- spec/dummy.rb
|
308
|
+
- spec/gw.rb
|
309
|
+
- spec/integration_helper.rb
|
310
|
+
- spec/message_helper.rb
|
311
|
+
- spec/model_helper.rb
|
312
|
+
- spec/my.rb
|
313
|
+
- spec/order_helper.rb
|
314
|
+
- spec/README.md
|
315
|
+
- spec/spec_helper.rb
|
316
|
+
- spec/TODO
|
317
|
+
- spec/tws.rb
|
318
|
+
- spec/v.rb
|
319
|
+
- spec/ib/connection_spec.rb
|
320
|
+
- spec/ib/messages/incoming/alert_spec.rb
|
321
|
+
- spec/ib/messages/incoming/open_order_spec.rb
|
322
|
+
- spec/ib/messages/incoming/order_status_spec.rb
|
323
|
+
- spec/ib/messages/outgoing/account_data_spec.rb
|
324
|
+
- spec/ib/messages/outgoing/market_data_type_spec.rb
|
325
|
+
- spec/integration/account_info_spec.rb
|
326
|
+
- spec/integration/contract_info_spec.rb
|
327
|
+
- spec/integration/depth_data_spec.rb
|
328
|
+
- spec/integration/fundamental_data_spec.rb
|
329
|
+
- spec/integration/historic_data_spec.rb
|
330
|
+
- spec/integration/market_data_spec.rb
|
331
|
+
- spec/integration/option_data_spec.rb
|
332
|
+
- spec/integration/orders/attached_spec.rb
|
333
|
+
- spec/integration/orders/combo_spec.rb
|
334
|
+
- spec/integration/orders/placement_spec.rb
|
335
|
+
- spec/integration/orders/trades_spec.rb
|
336
|
+
- spec/integration/orders/valid_ids_spec.rb
|
337
|
+
- spec/models/ib/bag_spec.rb
|
338
|
+
- spec/models/ib/bar_spec.rb
|
339
|
+
- spec/models/ib/combo_leg_spec.rb
|
340
|
+
- spec/models/ib/contract_detail_spec.rb
|
341
|
+
- spec/models/ib/contract_spec.rb
|
342
|
+
- spec/models/ib/execution_spec.rb
|
343
|
+
- spec/models/ib/option_spec.rb
|
344
|
+
- spec/models/ib/order_spec.rb
|
345
|
+
- spec/models/ib/order_state_spec.rb
|
346
|
+
- spec/models/ib/underlying_spec.rb
|
347
|
+
- tasks/common.rake
|
348
|
+
- tasks/doc.rake
|
349
|
+
- tasks/gem.rake
|
350
|
+
- tasks/git.rake
|
351
|
+
- tasks/spec.rake
|
352
|
+
- tasks/version.rake
|
353
|
+
- Rakefile
|
354
|
+
- README.md
|
355
|
+
- LICENSE
|
356
|
+
- VERSION
|
357
|
+
- HISTORY
|
358
|
+
- .gitignore
|
439
359
|
homepage: https://github.com/pjlegato/ib-ruby
|
440
360
|
licenses: []
|
441
|
-
|
361
|
+
|
362
|
+
post_install_message:
|
442
363
|
rdoc_options: []
|
443
|
-
|
444
|
-
|
445
|
-
|
446
|
-
|
447
|
-
- - ! '>='
|
448
|
-
- !ruby/object:Gem::Version
|
449
|
-
segments:
|
450
|
-
- 0
|
451
|
-
hash: 2
|
452
|
-
version: !binary |-
|
453
|
-
MA==
|
364
|
+
|
365
|
+
require_paths:
|
366
|
+
- lib
|
367
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
454
368
|
none: false
|
455
|
-
|
456
|
-
|
457
|
-
|
458
|
-
|
459
|
-
|
460
|
-
- 0
|
461
|
-
hash: 2
|
462
|
-
version: !binary |-
|
463
|
-
MA==
|
369
|
+
requirements:
|
370
|
+
- - ">="
|
371
|
+
- !ruby/object:Gem::Version
|
372
|
+
version: "0"
|
373
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
464
374
|
none: false
|
375
|
+
requirements:
|
376
|
+
- - ">="
|
377
|
+
- !ruby/object:Gem::Version
|
378
|
+
version: "0"
|
465
379
|
requirements: []
|
466
|
-
|
467
|
-
|
468
|
-
|
380
|
+
|
381
|
+
rubyforge_project:
|
382
|
+
rubygems_version: 1.8.15
|
383
|
+
signing_key:
|
469
384
|
specification_version: 3
|
470
385
|
summary: Ruby Implementation of the Interactive Brokers TWS API
|
471
|
-
test_files:
|
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
|
-
- !binary |-
|
519
|
-
c3BlYy9pYi1ydWJ5L21vZGVscy9iYXJfc3BlYy5yYg==
|
520
|
-
- !binary |-
|
521
|
-
c3BlYy9pYi1ydWJ5L21vZGVscy9jb21ib19sZWdfc3BlYy5yYg==
|
522
|
-
- !binary |-
|
523
|
-
c3BlYy9pYi1ydWJ5L21vZGVscy9jb250cmFjdF9kZXRhaWxfc3BlYy5yYg==
|
524
|
-
- !binary |-
|
525
|
-
c3BlYy9pYi1ydWJ5L21vZGVscy9jb250cmFjdF9zcGVjLnJi
|
526
|
-
- !binary |-
|
527
|
-
c3BlYy9pYi1ydWJ5L21vZGVscy9leGVjdXRpb25fc3BlYy5yYg==
|
528
|
-
- !binary |-
|
529
|
-
c3BlYy9pYi1ydWJ5L21vZGVscy9vcHRpb25fc3BlYy5yYg==
|
530
|
-
- !binary |-
|
531
|
-
c3BlYy9pYi1ydWJ5L21vZGVscy9vcmRlcl9zcGVjLnJi
|
532
|
-
- !binary |-
|
533
|
-
c3BlYy9pYi1ydWJ5L21vZGVscy9vcmRlcl9zdGF0ZV9zcGVjLnJi
|
534
|
-
- !binary |-
|
535
|
-
c3BlYy9pYi1ydWJ5L21vZGVscy91bmRlcmx5aW5nX3NwZWMucmI=
|
536
|
-
- !binary |-
|
537
|
-
c3BlYy9pbnRlZ3JhdGlvbi9hY2NvdW50X2luZm9fc3BlYy5yYg==
|
538
|
-
- !binary |-
|
539
|
-
c3BlYy9pbnRlZ3JhdGlvbi9jb250cmFjdF9pbmZvX3NwZWMucmI=
|
540
|
-
- !binary |-
|
541
|
-
c3BlYy9pbnRlZ3JhdGlvbi9kZXB0aF9kYXRhX3NwZWMucmI=
|
542
|
-
- !binary |-
|
543
|
-
c3BlYy9pbnRlZ3JhdGlvbi9mdW5kYW1lbnRhbF9kYXRhX3NwZWMucmI=
|
544
|
-
- !binary |-
|
545
|
-
c3BlYy9pbnRlZ3JhdGlvbi9oaXN0b3JpY19kYXRhX3NwZWMucmI=
|
546
|
-
- !binary |-
|
547
|
-
c3BlYy9pbnRlZ3JhdGlvbi9tYXJrZXRfZGF0YV9zcGVjLnJi
|
548
|
-
- !binary |-
|
549
|
-
c3BlYy9pbnRlZ3JhdGlvbi9vcHRpb25fZGF0YV9zcGVjLnJi
|
550
|
-
- !binary |-
|
551
|
-
c3BlYy9pbnRlZ3JhdGlvbi9vcmRlcnMvYXR0YWNoZWRfc3BlYy5yYg==
|
552
|
-
- !binary |-
|
553
|
-
c3BlYy9pbnRlZ3JhdGlvbi9vcmRlcnMvY29tYm9fc3BlYy5yYg==
|
554
|
-
- !binary |-
|
555
|
-
c3BlYy9pbnRlZ3JhdGlvbi9vcmRlcnMvcGxhY2VtZW50X3NwZWMucmI=
|
556
|
-
- !binary |-
|
557
|
-
c3BlYy9pbnRlZ3JhdGlvbi9vcmRlcnMvdHJhZGVzX3NwZWMucmI=
|
558
|
-
- !binary |-
|
559
|
-
c3BlYy9pbnRlZ3JhdGlvbi9vcmRlcnMvdmFsaWRfaWRzX3NwZWMucmI=
|
386
|
+
test_files:
|
387
|
+
- spec/account_helper.rb
|
388
|
+
- spec/comb.rb
|
389
|
+
- spec/combo_helper.rb
|
390
|
+
- spec/db.rb
|
391
|
+
- spec/db_helper.rb
|
392
|
+
- spec/dummy.rb
|
393
|
+
- spec/gw.rb
|
394
|
+
- spec/integration_helper.rb
|
395
|
+
- spec/message_helper.rb
|
396
|
+
- spec/model_helper.rb
|
397
|
+
- spec/my.rb
|
398
|
+
- spec/order_helper.rb
|
399
|
+
- spec/README.md
|
400
|
+
- spec/spec_helper.rb
|
401
|
+
- spec/TODO
|
402
|
+
- spec/tws.rb
|
403
|
+
- spec/v.rb
|
404
|
+
- spec/ib/connection_spec.rb
|
405
|
+
- spec/ib/messages/incoming/alert_spec.rb
|
406
|
+
- spec/ib/messages/incoming/open_order_spec.rb
|
407
|
+
- spec/ib/messages/incoming/order_status_spec.rb
|
408
|
+
- spec/ib/messages/outgoing/account_data_spec.rb
|
409
|
+
- spec/ib/messages/outgoing/market_data_type_spec.rb
|
410
|
+
- spec/integration/account_info_spec.rb
|
411
|
+
- spec/integration/contract_info_spec.rb
|
412
|
+
- spec/integration/depth_data_spec.rb
|
413
|
+
- spec/integration/fundamental_data_spec.rb
|
414
|
+
- spec/integration/historic_data_spec.rb
|
415
|
+
- spec/integration/market_data_spec.rb
|
416
|
+
- spec/integration/option_data_spec.rb
|
417
|
+
- spec/integration/orders/attached_spec.rb
|
418
|
+
- spec/integration/orders/combo_spec.rb
|
419
|
+
- spec/integration/orders/placement_spec.rb
|
420
|
+
- spec/integration/orders/trades_spec.rb
|
421
|
+
- spec/integration/orders/valid_ids_spec.rb
|
422
|
+
- spec/models/ib/bag_spec.rb
|
423
|
+
- spec/models/ib/bar_spec.rb
|
424
|
+
- spec/models/ib/combo_leg_spec.rb
|
425
|
+
- spec/models/ib/contract_detail_spec.rb
|
426
|
+
- spec/models/ib/contract_spec.rb
|
427
|
+
- spec/models/ib/execution_spec.rb
|
428
|
+
- spec/models/ib/option_spec.rb
|
429
|
+
- spec/models/ib/order_spec.rb
|
430
|
+
- spec/models/ib/order_state_spec.rb
|
431
|
+
- spec/models/ib/underlying_spec.rb
|
432
|
+
has_rdoc:
|