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.
Files changed (128) hide show
  1. data/.gitignore +0 -1
  2. data/HISTORY +5 -0
  3. data/README.md +47 -53
  4. data/Rakefile +2 -1
  5. data/VERSION +1 -1
  6. data/app/assets/javascripts/ib/application.js +15 -0
  7. data/app/assets/javascripts/ib/underlyings.js +2 -0
  8. data/app/assets/stylesheets/ib/application.css +13 -0
  9. data/app/assets/stylesheets/ib/underlyings.css +4 -0
  10. data/app/assets/stylesheets/scaffold.css +56 -0
  11. data/app/controllers/ib/application_controller.rb +5 -0
  12. data/app/controllers/ib/underlyings_controller.rb +87 -0
  13. data/app/helpers/ib/application_helper.rb +4 -0
  14. data/app/helpers/ib/underlyings_helper.rb +4 -0
  15. data/app/models/ib/underlying.rb +5 -0
  16. data/app/views/ib/underlyings/_form.html.erb +33 -0
  17. data/app/views/ib/underlyings/edit.html.erb +6 -0
  18. data/app/views/ib/underlyings/index.html.erb +29 -0
  19. data/app/views/ib/underlyings/new.html.erb +5 -0
  20. data/app/views/ib/underlyings/show.html.erb +25 -0
  21. data/app/views/layouts/ib/application.html.erb +14 -0
  22. data/config/routes.rb +6 -0
  23. data/db/config.yml +19 -0
  24. data/db/migrate/{101_add_executions.rb → 101_add_ib_executions.rb} +2 -2
  25. data/db/migrate/{111_add_bars.rb → 111_add_ib_bars.rb} +2 -2
  26. data/db/migrate/{121_add_order_states.rb → 121_add_ib_order_states.rb} +2 -2
  27. data/db/migrate/{131_add_orders.rb → 131_add_ib_orders.rb} +2 -2
  28. data/db/migrate/{141_add_combo_legs.rb → 141_add_ib_combo_legs.rb} +2 -2
  29. data/db/migrate/{151_add_underlyings.rb → 151_add_ib_underlyings.rb} +2 -2
  30. data/db/migrate/{161_add_contract_details.rb → 161_add_ib_contract_details.rb} +2 -2
  31. data/db/migrate/{171_add_contracts.rb → 171_add_ib_contracts.rb} +2 -2
  32. data/db/schema.rb +245 -0
  33. data/lib/ib/base.rb +97 -0
  34. data/lib/ib/base_properties.rb +140 -0
  35. data/lib/{ib-ruby → ib}/connection.rb +2 -2
  36. data/lib/{ib-ruby → ib}/constants.rb +0 -0
  37. data/lib/{ib-ruby → ib}/db.rb +9 -5
  38. data/lib/ib/engine.rb +35 -0
  39. data/lib/{ib-ruby → ib}/errors.rb +0 -0
  40. data/lib/{ib-ruby → ib}/extensions.rb +2 -2
  41. data/lib/{ib-ruby → ib}/logger.rb +0 -0
  42. data/lib/{ib-ruby → ib}/messages/abstract_message.rb +0 -0
  43. data/lib/{ib-ruby → ib}/messages/incoming/abstract_message.rb +1 -1
  44. data/lib/{ib-ruby → ib}/messages/incoming/alert.rb +0 -0
  45. data/lib/{ib-ruby → ib}/messages/incoming/contract_data.rb +0 -0
  46. data/lib/{ib-ruby → ib}/messages/incoming/delta_neutral_validation.rb +0 -0
  47. data/lib/{ib-ruby → ib}/messages/incoming/execution_data.rb +0 -0
  48. data/lib/{ib-ruby → ib}/messages/incoming/historical_data.rb +0 -0
  49. data/lib/{ib-ruby → ib}/messages/incoming/market_depths.rb +0 -0
  50. data/lib/{ib-ruby → ib}/messages/incoming/next_valid_id.rb +0 -0
  51. data/lib/{ib-ruby → ib}/messages/incoming/open_order.rb +0 -0
  52. data/lib/{ib-ruby → ib}/messages/incoming/order_status.rb +0 -0
  53. data/lib/{ib-ruby → ib}/messages/incoming/portfolio_value.rb +0 -0
  54. data/lib/{ib-ruby → ib}/messages/incoming/real_time_bar.rb +0 -0
  55. data/lib/{ib-ruby → ib}/messages/incoming/scanner_data.rb +0 -0
  56. data/lib/{ib-ruby → ib}/messages/incoming/ticks.rb +0 -0
  57. data/lib/{ib-ruby → ib}/messages/incoming.rb +14 -14
  58. data/lib/{ib-ruby → ib}/messages/outgoing/abstract_message.rb +1 -1
  59. data/lib/{ib-ruby → ib}/messages/outgoing/bar_requests.rb +0 -0
  60. data/lib/{ib-ruby → ib}/messages/outgoing/place_order.rb +0 -0
  61. data/lib/{ib-ruby → ib}/messages/outgoing.rb +5 -5
  62. data/lib/ib/messages.rb +8 -0
  63. data/lib/ib/model.rb +8 -0
  64. data/lib/ib/models.rb +10 -0
  65. data/lib/ib/requires.rb +9 -0
  66. data/lib/{ib-ruby → ib}/socket.rb +0 -0
  67. data/lib/{ib-ruby → ib}/symbols/forex.rb +1 -1
  68. data/lib/{ib-ruby → ib}/symbols/futures.rb +2 -2
  69. data/lib/{ib-ruby → ib}/symbols/options.rb +1 -1
  70. data/lib/{ib-ruby → ib}/symbols/stocks.rb +1 -1
  71. data/lib/ib/symbols.rb +9 -0
  72. data/lib/{ib-ruby → ib}/version.rb +0 -0
  73. data/lib/ib-ruby.rb +2 -24
  74. data/lib/ib.rb +23 -0
  75. data/lib/models/ib/bag.rb +51 -0
  76. data/lib/models/ib/bar.rb +41 -0
  77. data/lib/models/ib/combo_leg.rb +102 -0
  78. data/lib/models/ib/contract.rb +287 -0
  79. data/lib/models/ib/contract_detail.rb +68 -0
  80. data/lib/models/ib/execution.rb +62 -0
  81. data/lib/models/ib/option.rb +60 -0
  82. data/lib/models/ib/order.rb +389 -0
  83. data/lib/models/ib/order_state.rb +126 -0
  84. data/lib/models/ib/underlying.rb +35 -0
  85. data/spec/README.md +34 -2
  86. data/spec/TODO +5 -1
  87. data/spec/comb.rb +13 -0
  88. data/spec/db.rb +1 -1
  89. data/spec/db_helper.rb +3 -3
  90. data/spec/dummy.rb +13 -0
  91. data/spec/gw.rb +4 -0
  92. data/spec/{ib-ruby → ib}/connection_spec.rb +0 -0
  93. data/spec/{ib-ruby → ib}/messages/incoming/alert_spec.rb +0 -0
  94. data/spec/{ib-ruby → ib}/messages/incoming/open_order_spec.rb +0 -0
  95. data/spec/{ib-ruby → ib}/messages/incoming/order_status_spec.rb +16 -17
  96. data/spec/{ib-ruby → ib}/messages/outgoing/account_data_spec.rb +0 -0
  97. data/spec/{ib-ruby → ib}/messages/outgoing/market_data_type_spec.rb +0 -0
  98. data/spec/integration/historic_data_spec.rb +3 -3
  99. data/spec/integration/orders/trades_spec.rb +1 -1
  100. data/spec/{ib-ruby/models → models/ib}/bag_spec.rb +2 -7
  101. data/spec/{ib-ruby/models → models/ib}/bar_spec.rb +1 -6
  102. data/spec/{ib-ruby/models → models/ib}/combo_leg_spec.rb +2 -12
  103. data/spec/{ib-ruby/models → models/ib}/contract_detail_spec.rb +3 -8
  104. data/spec/{ib-ruby/models → models/ib}/contract_spec.rb +4 -12
  105. data/spec/{ib-ruby/models → models/ib}/execution_spec.rb +2 -7
  106. data/spec/{ib-ruby/models → models/ib}/option_spec.rb +1 -6
  107. data/spec/{ib-ruby/models → models/ib}/order_spec.rb +5 -10
  108. data/spec/{ib-ruby/models → models/ib}/order_state_spec.rb +2 -7
  109. data/spec/{ib-ruby/models → models/ib}/underlying_spec.rb +3 -7
  110. data/spec/my.rb +5 -0
  111. data/spec/spec_helper.rb +62 -36
  112. metadata +417 -544
  113. data/lib/ib-ruby/messages.rb +0 -8
  114. data/lib/ib-ruby/models/bag.rb +0 -54
  115. data/lib/ib-ruby/models/bar.rb +0 -43
  116. data/lib/ib-ruby/models/combo_leg.rb +0 -104
  117. data/lib/ib-ruby/models/contract.rb +0 -287
  118. data/lib/ib-ruby/models/contract_detail.rb +0 -70
  119. data/lib/ib-ruby/models/execution.rb +0 -64
  120. data/lib/ib-ruby/models/model.rb +0 -105
  121. data/lib/ib-ruby/models/model_properties.rb +0 -146
  122. data/lib/ib-ruby/models/option.rb +0 -62
  123. data/lib/ib-ruby/models/order.rb +0 -389
  124. data/lib/ib-ruby/models/order_state.rb +0 -128
  125. data/lib/ib-ruby/models/underlying.rb +0 -36
  126. data/lib/ib-ruby/models.rb +0 -15
  127. data/lib/ib-ruby/symbols.rb +0 -9
  128. 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.1
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
- date: 2012-06-13 00:00:00.000000000 Z
14
- dependencies:
15
- - !ruby/object:Gem::Dependency
16
- name: bundler
17
- version_requirements: !ruby/object:Gem::Requirement
18
- requirements:
19
- - - ! '>='
20
- - !ruby/object:Gem::Version
21
- version: 1.1.3
22
- none: false
23
- requirement: !ruby/object:Gem::Requirement
24
- requirements:
25
- - - ! '>='
26
- - !ruby/object:Gem::Version
27
- version: 1.1.3
28
- none: false
29
- prerelease: false
30
- type: :runtime
31
- - !ruby/object:Gem::Dependency
32
- name: activerecord
33
- version_requirements: !ruby/object:Gem::Requirement
34
- requirements:
35
- - - ! '>='
36
- - !ruby/object:Gem::Version
37
- version: 3.2.0
38
- none: false
39
- requirement: !ruby/object:Gem::Requirement
40
- requirements:
41
- - - ! '>='
42
- - !ruby/object:Gem::Version
43
- version: 3.2.0
44
- none: false
45
- prerelease: false
46
- type: :runtime
47
- - !ruby/object:Gem::Dependency
48
- name: xml-simple
49
- version_requirements: !ruby/object:Gem::Requirement
50
- requirements:
51
- - - ! '>='
52
- - !ruby/object:Gem::Version
53
- version: 1.1.1
54
- none: false
55
- requirement: !ruby/object:Gem::Requirement
56
- requirements:
57
- - - ! '>='
58
- - !ruby/object:Gem::Version
59
- version: 1.1.1
60
- none: false
61
- prerelease: false
62
- type: :runtime
63
- - !ruby/object:Gem::Dependency
64
- name: standalone_migrations
65
- version_requirements: !ruby/object:Gem::Requirement
66
- requirements:
67
- - - ! '>='
68
- - !ruby/object:Gem::Version
69
- version: !binary |-
70
- MA==
71
- none: false
72
- requirement: !ruby/object:Gem::Requirement
73
- requirements:
74
- - - ! '>='
75
- - !ruby/object:Gem::Version
76
- version: !binary |-
77
- MA==
78
- none: false
79
- prerelease: false
80
- type: :runtime
81
- - !ruby/object:Gem::Dependency
82
- name: database_cleaner
83
- version_requirements: !ruby/object:Gem::Requirement
84
- requirements:
85
- - - ! '>='
86
- - !ruby/object:Gem::Version
87
- version: 0.7.2
88
- none: false
89
- requirement: !ruby/object:Gem::Requirement
90
- requirements:
91
- - - ! '>='
92
- - !ruby/object:Gem::Version
93
- version: 0.7.2
94
- none: false
95
- prerelease: false
96
- type: :development
97
- - !ruby/object:Gem::Dependency
98
- name: rspec
99
- version_requirements: !ruby/object:Gem::Requirement
100
- requirements:
101
- - - ! '>='
102
- - !ruby/object:Gem::Version
103
- version: 2.10.0
104
- none: false
105
- requirement: !ruby/object:Gem::Requirement
106
- requirements:
107
- - - ! '>='
108
- - !ruby/object:Gem::Version
109
- version: 2.10.0
110
- none: false
111
- prerelease: false
112
- type: :development
113
- - !ruby/object:Gem::Dependency
114
- name: standalone_migrations
115
- version_requirements: !ruby/object:Gem::Requirement
116
- requirements:
117
- - - ! '>='
118
- - !ruby/object:Gem::Version
119
- version: !binary |-
120
- MA==
121
- none: false
122
- requirement: !ruby/object:Gem::Requirement
123
- requirements:
124
- - - ! '>='
125
- - !ruby/object:Gem::Version
126
- version: !binary |-
127
- MA==
128
- none: false
129
- prerelease: false
130
- type: :development
131
- - !ruby/object:Gem::Dependency
132
- name: my_scripts
133
- version_requirements: !ruby/object:Gem::Requirement
134
- requirements:
135
- - - ! '>='
136
- - !ruby/object:Gem::Version
137
- version: !binary |-
138
- MA==
139
- none: false
140
- requirement: !ruby/object:Gem::Requirement
141
- requirements:
142
- - - ! '>='
143
- - !ruby/object:Gem::Version
144
- version: !binary |-
145
- MA==
146
- none: false
147
- prerelease: false
148
- type: :development
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
- files:
173
- - !binary |-
174
- YmluL2FjY291bnRfaW5mbw==
175
- - !binary |-
176
- YmluL2NhbmNlbF9vcmRlcnM=
177
- - !binary |-
178
- YmluL2NvbnRyYWN0X2RldGFpbHM=
179
- - !binary |-
180
- YmluL2RlcHRoX29mX21hcmtldA==
181
- - !binary |-
182
- YmluL2ZhX2FjY291bnRz
183
- - !binary |-
184
- YmluL2Z1bmRhbWVudGFsX2RhdGE=
185
- - !binary |-
186
- YmluL2hpc3RvcmljX2RhdGE=
187
- - !binary |-
188
- YmluL2hpc3RvcmljX2RhdGFfY2xp
189
- - !binary |-
190
- YmluL2xpc3Rfb3JkZXJz
191
- - !binary |-
192
- YmluL21hcmtldF9kYXRh
193
- - !binary |-
194
- YmluL29wdGlvbl9kYXRh
195
- - !binary |-
196
- YmluL3BsYWNlX2NvbWJvX29yZGVy
197
- - !binary |-
198
- YmluL3BsYWNlX29yZGVy
199
- - !binary |-
200
- YmluL3RlbXBsYXRl
201
- - !binary |-
202
- YmluL3RpY2tfZGF0YQ==
203
- - !binary |-
204
- YmluL3RpbWVfYW5kX3NhbGVz
205
- - !binary |-
206
- bGliL2liLXJ1YnkucmI=
207
- - !binary |-
208
- bGliL2liLXJ1YnkvY29ubmVjdGlvbi5yYg==
209
- - !binary |-
210
- bGliL2liLXJ1YnkvY29uc3RhbnRzLnJi
211
- - !binary |-
212
- bGliL2liLXJ1YnkvZGIucmI=
213
- - !binary |-
214
- bGliL2liLXJ1YnkvZXJyb3JzLnJi
215
- - !binary |-
216
- bGliL2liLXJ1YnkvZXh0ZW5zaW9ucy5yYg==
217
- - !binary |-
218
- bGliL2liLXJ1YnkvbG9nZ2VyLnJi
219
- - !binary |-
220
- bGliL2liLXJ1YnkvbWVzc2FnZXMucmI=
221
- - !binary |-
222
- bGliL2liLXJ1YnkvbW9kZWxzLnJi
223
- - !binary |-
224
- bGliL2liLXJ1Ynkvc29ja2V0LnJi
225
- - !binary |-
226
- bGliL2liLXJ1Ynkvc3ltYm9scy5yYg==
227
- - !binary |-
228
- bGliL2liLXJ1YnkvdmVyc2lvbi5yYg==
229
- - !binary |-
230
- bGliL2liLXJ1YnkvbWVzc2FnZXMvYWJzdHJhY3RfbWVzc2FnZS5yYg==
231
- - !binary |-
232
- bGliL2liLXJ1YnkvbWVzc2FnZXMvaW5jb21pbmcucmI=
233
- - !binary |-
234
- bGliL2liLXJ1YnkvbWVzc2FnZXMvb3V0Z29pbmcucmI=
235
- - !binary |-
236
- bGliL2liLXJ1YnkvbWVzc2FnZXMvaW5jb21pbmcvYWJzdHJhY3RfbWVzc2Fn
237
- ZS5yYg==
238
- - !binary |-
239
- bGliL2liLXJ1YnkvbWVzc2FnZXMvaW5jb21pbmcvYWxlcnQucmI=
240
- - !binary |-
241
- bGliL2liLXJ1YnkvbWVzc2FnZXMvaW5jb21pbmcvY29udHJhY3RfZGF0YS5y
242
- Yg==
243
- - !binary |-
244
- bGliL2liLXJ1YnkvbWVzc2FnZXMvaW5jb21pbmcvZGVsdGFfbmV1dHJhbF92
245
- YWxpZGF0aW9uLnJi
246
- - !binary |-
247
- bGliL2liLXJ1YnkvbWVzc2FnZXMvaW5jb21pbmcvZXhlY3V0aW9uX2RhdGEu
248
- cmI=
249
- - !binary |-
250
- bGliL2liLXJ1YnkvbWVzc2FnZXMvaW5jb21pbmcvaGlzdG9yaWNhbF9kYXRh
251
- LnJi
252
- - !binary |-
253
- bGliL2liLXJ1YnkvbWVzc2FnZXMvaW5jb21pbmcvbWFya2V0X2RlcHRocy5y
254
- Yg==
255
- - !binary |-
256
- bGliL2liLXJ1YnkvbWVzc2FnZXMvaW5jb21pbmcvbmV4dF92YWxpZF9pZC5y
257
- Yg==
258
- - !binary |-
259
- bGliL2liLXJ1YnkvbWVzc2FnZXMvaW5jb21pbmcvb3Blbl9vcmRlci5yYg==
260
- - !binary |-
261
- bGliL2liLXJ1YnkvbWVzc2FnZXMvaW5jb21pbmcvb3JkZXJfc3RhdHVzLnJi
262
- - !binary |-
263
- bGliL2liLXJ1YnkvbWVzc2FnZXMvaW5jb21pbmcvcG9ydGZvbGlvX3ZhbHVl
264
- LnJi
265
- - !binary |-
266
- bGliL2liLXJ1YnkvbWVzc2FnZXMvaW5jb21pbmcvcmVhbF90aW1lX2Jhci5y
267
- Yg==
268
- - !binary |-
269
- bGliL2liLXJ1YnkvbWVzc2FnZXMvaW5jb21pbmcvc2Nhbm5lcl9kYXRhLnJi
270
- - !binary |-
271
- bGliL2liLXJ1YnkvbWVzc2FnZXMvaW5jb21pbmcvdGlja3MucmI=
272
- - !binary |-
273
- bGliL2liLXJ1YnkvbWVzc2FnZXMvb3V0Z29pbmcvYWJzdHJhY3RfbWVzc2Fn
274
- ZS5yYg==
275
- - !binary |-
276
- bGliL2liLXJ1YnkvbWVzc2FnZXMvb3V0Z29pbmcvYmFyX3JlcXVlc3RzLnJi
277
- - !binary |-
278
- bGliL2liLXJ1YnkvbWVzc2FnZXMvb3V0Z29pbmcvcGxhY2Vfb3JkZXIucmI=
279
- - !binary |-
280
- bGliL2liLXJ1YnkvbW9kZWxzL2JhZy5yYg==
281
- - !binary |-
282
- bGliL2liLXJ1YnkvbW9kZWxzL2Jhci5yYg==
283
- - !binary |-
284
- bGliL2liLXJ1YnkvbW9kZWxzL2NvbWJvX2xlZy5yYg==
285
- - !binary |-
286
- bGliL2liLXJ1YnkvbW9kZWxzL2NvbnRyYWN0LnJi
287
- - !binary |-
288
- bGliL2liLXJ1YnkvbW9kZWxzL2NvbnRyYWN0X2RldGFpbC5yYg==
289
- - !binary |-
290
- bGliL2liLXJ1YnkvbW9kZWxzL2V4ZWN1dGlvbi5yYg==
291
- - !binary |-
292
- bGliL2liLXJ1YnkvbW9kZWxzL21vZGVsLnJi
293
- - !binary |-
294
- bGliL2liLXJ1YnkvbW9kZWxzL21vZGVsX3Byb3BlcnRpZXMucmI=
295
- - !binary |-
296
- bGliL2liLXJ1YnkvbW9kZWxzL29wdGlvbi5yYg==
297
- - !binary |-
298
- bGliL2liLXJ1YnkvbW9kZWxzL29yZGVyLnJi
299
- - !binary |-
300
- bGliL2liLXJ1YnkvbW9kZWxzL29yZGVyX3N0YXRlLnJi
301
- - !binary |-
302
- bGliL2liLXJ1YnkvbW9kZWxzL3VuZGVybHlpbmcucmI=
303
- - !binary |-
304
- bGliL2liLXJ1Ynkvc3ltYm9scy9mb3JleC5yYg==
305
- - !binary |-
306
- bGliL2liLXJ1Ynkvc3ltYm9scy9mdXR1cmVzLnJi
307
- - !binary |-
308
- bGliL2liLXJ1Ynkvc3ltYm9scy9vcHRpb25zLnJi
309
- - !binary |-
310
- bGliL2liLXJ1Ynkvc3ltYm9scy9zdG9ja3MucmI=
311
- - !binary |-
312
- c3BlYy9hY2NvdW50X2hlbHBlci5yYg==
313
- - !binary |-
314
- c3BlYy9jb21ib19oZWxwZXIucmI=
315
- - !binary |-
316
- c3BlYy9kYi5yYg==
317
- - !binary |-
318
- c3BlYy9kYl9oZWxwZXIucmI=
319
- - !binary |-
320
- c3BlYy9pbnRlZ3JhdGlvbl9oZWxwZXIucmI=
321
- - !binary |-
322
- c3BlYy9tZXNzYWdlX2hlbHBlci5yYg==
323
- - !binary |-
324
- c3BlYy9tb2RlbF9oZWxwZXIucmI=
325
- - !binary |-
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
- post_install_message:
361
+
362
+ post_install_message:
442
363
  rdoc_options: []
443
- require_paths:
444
- - lib
445
- required_ruby_version: !ruby/object:Gem::Requirement
446
- requirements:
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
- required_rubygems_version: !ruby/object:Gem::Requirement
456
- requirements:
457
- - - ! '>='
458
- - !ruby/object:Gem::Version
459
- segments:
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
- rubyforge_project:
467
- rubygems_version: 1.8.24
468
- signing_key:
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
- - !binary |-
473
- c3BlYy9hY2NvdW50X2hlbHBlci5yYg==
474
- - !binary |-
475
- c3BlYy9jb21ib19oZWxwZXIucmI=
476
- - !binary |-
477
- c3BlYy9kYi5yYg==
478
- - !binary |-
479
- c3BlYy9kYl9oZWxwZXIucmI=
480
- - !binary |-
481
- c3BlYy9pbnRlZ3JhdGlvbl9oZWxwZXIucmI=
482
- - !binary |-
483
- c3BlYy9tZXNzYWdlX2hlbHBlci5yYg==
484
- - !binary |-
485
- c3BlYy9tb2RlbF9oZWxwZXIucmI=
486
- - !binary |-
487
- c3BlYy9vcmRlcl9oZWxwZXIucmI=
488
- - !binary |-
489
- c3BlYy9SRUFETUUubWQ=
490
- - !binary |-
491
- c3BlYy9zcGVjX2hlbHBlci5yYg==
492
- - !binary |-
493
- c3BlYy90ZXN0LnJi
494
- - !binary |-
495
- c3BlYy9UT0RP
496
- - !binary |-
497
- c3BlYy90d3MucmI=
498
- - !binary |-
499
- c3BlYy92LnJi
500
- - !binary |-
501
- c3BlYy9pYi1ydWJ5L2Nvbm5lY3Rpb25fc3BlYy5yYg==
502
- - !binary |-
503
- c3BlYy9pYi1ydWJ5L21lc3NhZ2VzL2luY29taW5nL2FsZXJ0X3NwZWMucmI=
504
- - !binary |-
505
- c3BlYy9pYi1ydWJ5L21lc3NhZ2VzL2luY29taW5nL29wZW5fb3JkZXJfc3Bl
506
- Yy5yYg==
507
- - !binary |-
508
- c3BlYy9pYi1ydWJ5L21lc3NhZ2VzL2luY29taW5nL29yZGVyX3N0YXR1c19z
509
- cGVjLnJi
510
- - !binary |-
511
- c3BlYy9pYi1ydWJ5L21lc3NhZ2VzL291dGdvaW5nL2FjY291bnRfZGF0YV9z
512
- cGVjLnJi
513
- - !binary |-
514
- c3BlYy9pYi1ydWJ5L21lc3NhZ2VzL291dGdvaW5nL21hcmtldF9kYXRhX3R5
515
- cGVfc3BlYy5yYg==
516
- - !binary |-
517
- c3BlYy9pYi1ydWJ5L21vZGVscy9iYWdfc3BlYy5yYg==
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: