snaptrade 2.0.82 → 2.0.83
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +2 -2
- data/README.md +92 -23
- data/lib/snaptrade/api/trading_api.rb +158 -16
- data/lib/snaptrade/models/account_order_record.rb +14 -4
- data/lib/snaptrade/models/{manual_trade_form_with_options_take_profit.rb → account_order_record_child_brokerage_order_ids.rb} +22 -11
- data/lib/snaptrade/models/{manual_trade_form_with_options_stop_loss.rb → child_brokerage_order_ids.rb} +18 -24
- data/lib/snaptrade/models/manual_trade_form_bracket.rb +343 -0
- data/lib/snaptrade/models/manual_trade_form_with_options.rb +6 -37
- data/lib/snaptrade/version.rb +1 -1
- data/lib/snaptrade.rb +3 -3
- data/spec/api/trading_api_spec.rb +14 -0
- data/spec/models/account_order_record_child_brokerage_order_ids_spec.rb +35 -0
- data/spec/models/account_order_record_spec.rb +6 -0
- data/spec/models/{manual_trade_form_with_options_stop_loss_spec.rb → child_brokerage_order_ids_spec.rb} +8 -8
- data/spec/models/manual_trade_form_bracket_spec.rb +83 -0
- data/spec/models/manual_trade_form_with_options_spec.rb +0 -18
- metadata +11 -11
- data/lib/snaptrade/models/order_class.rb +0 -37
- data/spec/models/manual_trade_form_with_options_take_profit_spec.rb +0 -29
- data/spec/models/order_class_spec.rb +0 -23
@@ -11,16 +11,18 @@ require 'date'
|
|
11
11
|
require 'time'
|
12
12
|
|
13
13
|
module SnapTrade
|
14
|
-
class
|
15
|
-
|
14
|
+
class ChildBrokerageOrderIDs
|
15
|
+
# The brokerage order ID for the take profit leg of the bracket order
|
16
|
+
attr_accessor :take_profit_order_id
|
16
17
|
|
17
|
-
|
18
|
+
# The brokerage order ID for the stop loss leg of the bracket order
|
19
|
+
attr_accessor :stop_loss_order_id
|
18
20
|
|
19
21
|
# Attribute mapping from ruby-style variable name to JSON key.
|
20
22
|
def self.attribute_map
|
21
23
|
{
|
22
|
-
:'
|
23
|
-
:'
|
24
|
+
:'take_profit_order_id' => :'take_profit_order_id',
|
25
|
+
:'stop_loss_order_id' => :'stop_loss_order_id'
|
24
26
|
}
|
25
27
|
end
|
26
28
|
|
@@ -32,46 +34,38 @@ module SnapTrade
|
|
32
34
|
# Attribute type mapping.
|
33
35
|
def self.openapi_types
|
34
36
|
{
|
35
|
-
:'
|
36
|
-
:'
|
37
|
+
:'take_profit_order_id' => :'String',
|
38
|
+
:'stop_loss_order_id' => :'String'
|
37
39
|
}
|
38
40
|
end
|
39
41
|
|
40
42
|
# List of attributes with nullable: true
|
41
43
|
def self.openapi_nullable
|
42
44
|
Set.new([
|
43
|
-
:'limit_price'
|
44
45
|
])
|
45
46
|
end
|
46
47
|
|
47
|
-
# List of class defined in allOf (OpenAPI v3)
|
48
|
-
def self.openapi_all_of
|
49
|
-
[
|
50
|
-
:'StopLoss'
|
51
|
-
]
|
52
|
-
end
|
53
|
-
|
54
48
|
# Initializes the object
|
55
49
|
# @param [Hash] attributes Model attributes in the form of hash
|
56
50
|
def initialize(attributes = {})
|
57
51
|
if (!attributes.is_a?(Hash))
|
58
|
-
fail ArgumentError, "The input argument (attributes) must be a hash in `SnapTrade::
|
52
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `SnapTrade::ChildBrokerageOrderIDs` initialize method"
|
59
53
|
end
|
60
54
|
|
61
55
|
# check to see if the attribute exists and convert string to symbol for hash key
|
62
56
|
attributes = attributes.each_with_object({}) { |(k, v), h|
|
63
57
|
if (!self.class.attribute_map.key?(k.to_sym))
|
64
|
-
fail ArgumentError, "`#{k}` is not a valid attribute in `SnapTrade::
|
58
|
+
fail ArgumentError, "`#{k}` is not a valid attribute in `SnapTrade::ChildBrokerageOrderIDs`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
|
65
59
|
end
|
66
60
|
h[k.to_sym] = v
|
67
61
|
}
|
68
62
|
|
69
|
-
if attributes.key?(:'
|
70
|
-
self.
|
63
|
+
if attributes.key?(:'take_profit_order_id')
|
64
|
+
self.take_profit_order_id = attributes[:'take_profit_order_id']
|
71
65
|
end
|
72
66
|
|
73
|
-
if attributes.key?(:'
|
74
|
-
self.
|
67
|
+
if attributes.key?(:'stop_loss_order_id')
|
68
|
+
self.stop_loss_order_id = attributes[:'stop_loss_order_id']
|
75
69
|
end
|
76
70
|
end
|
77
71
|
|
@@ -93,8 +87,8 @@ module SnapTrade
|
|
93
87
|
def ==(o)
|
94
88
|
return true if self.equal?(o)
|
95
89
|
self.class == o.class &&
|
96
|
-
|
97
|
-
|
90
|
+
take_profit_order_id == o.take_profit_order_id &&
|
91
|
+
stop_loss_order_id == o.stop_loss_order_id
|
98
92
|
end
|
99
93
|
|
100
94
|
# @see the `==` method
|
@@ -106,7 +100,7 @@ module SnapTrade
|
|
106
100
|
# Calculates hash code according to all attributes.
|
107
101
|
# @return [Integer] Hash code
|
108
102
|
def hash
|
109
|
-
[
|
103
|
+
[take_profit_order_id, stop_loss_order_id].hash
|
110
104
|
end
|
111
105
|
|
112
106
|
# Builds the object from hash
|
@@ -0,0 +1,343 @@
|
|
1
|
+
=begin
|
2
|
+
#SnapTrade
|
3
|
+
|
4
|
+
#Connect brokerage accounts to your app for live positions and trading
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 1.0.0
|
7
|
+
Contact: api@snaptrade.com
|
8
|
+
=end
|
9
|
+
|
10
|
+
require 'date'
|
11
|
+
require 'time'
|
12
|
+
|
13
|
+
module SnapTrade
|
14
|
+
# Inputs for placing an order with the brokerage.
|
15
|
+
class ManualTradeFormBracket
|
16
|
+
# Unique identifier for the connected brokerage account. This is the UUID used to reference the account in SnapTrade.
|
17
|
+
attr_accessor :account_id
|
18
|
+
|
19
|
+
# The action describes the intent or side of a trade. This is either `BUY` or `SELL` for Equity symbols or `BUY_TO_OPEN`, `BUY_TO_CLOSE`, `SELL_TO_OPEN` or `SELL_TO_CLOSE` for Options.
|
20
|
+
attr_accessor :action
|
21
|
+
|
22
|
+
# The security's trading ticker symbol.
|
23
|
+
attr_accessor :symbol
|
24
|
+
|
25
|
+
# The type of order to place. - For `Limit` and `StopLimit` orders, the `price` field is required. - For `Stop` and `StopLimit` orders, the `stop` field is required.
|
26
|
+
attr_accessor :order_type
|
27
|
+
|
28
|
+
# The Time in Force type for the order. This field indicates how long the order will remain active before it is executed or expires. Here are the supported values: - `Day` - Day. The order is valid only for the trading day on which it is placed. - `GTC` - Good Til Canceled. The order is valid until it is executed or canceled. - `FOK` - Fill Or Kill. The order must be executed in its entirety immediately or be canceled completely.
|
29
|
+
attr_accessor :time_in_force
|
30
|
+
|
31
|
+
# The limit price for `Limit` and `StopLimit` orders.
|
32
|
+
attr_accessor :price
|
33
|
+
|
34
|
+
# The price at which a stop order is triggered for `Stop` and `StopLimit` orders.
|
35
|
+
attr_accessor :stop
|
36
|
+
|
37
|
+
# Number of shares for the order. This can be a decimal for fractional orders. Must be `null` if `notional_value` is provided.
|
38
|
+
attr_accessor :units
|
39
|
+
|
40
|
+
attr_accessor :stop_loss
|
41
|
+
|
42
|
+
attr_accessor :take_profit
|
43
|
+
|
44
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
45
|
+
def self.attribute_map
|
46
|
+
{
|
47
|
+
:'account_id' => :'account_id',
|
48
|
+
:'action' => :'action',
|
49
|
+
:'symbol' => :'symbol',
|
50
|
+
:'order_type' => :'order_type',
|
51
|
+
:'time_in_force' => :'time_in_force',
|
52
|
+
:'price' => :'price',
|
53
|
+
:'stop' => :'stop',
|
54
|
+
:'units' => :'units',
|
55
|
+
:'stop_loss' => :'stop_loss',
|
56
|
+
:'take_profit' => :'take_profit'
|
57
|
+
}
|
58
|
+
end
|
59
|
+
|
60
|
+
# Returns all the JSON keys this model knows about
|
61
|
+
def self.acceptable_attributes
|
62
|
+
attribute_map.values
|
63
|
+
end
|
64
|
+
|
65
|
+
# Attribute type mapping.
|
66
|
+
def self.openapi_types
|
67
|
+
{
|
68
|
+
:'account_id' => :'String',
|
69
|
+
:'action' => :'ActionStrictWithOptions',
|
70
|
+
:'symbol' => :'String',
|
71
|
+
:'order_type' => :'OrderTypeStrict',
|
72
|
+
:'time_in_force' => :'TimeInForceStrict',
|
73
|
+
:'price' => :'Float',
|
74
|
+
:'stop' => :'Float',
|
75
|
+
:'units' => :'Float',
|
76
|
+
:'stop_loss' => :'StopLoss',
|
77
|
+
:'take_profit' => :'TakeProfit'
|
78
|
+
}
|
79
|
+
end
|
80
|
+
|
81
|
+
# List of attributes with nullable: true
|
82
|
+
def self.openapi_nullable
|
83
|
+
Set.new([
|
84
|
+
:'price',
|
85
|
+
:'stop',
|
86
|
+
])
|
87
|
+
end
|
88
|
+
|
89
|
+
# Initializes the object
|
90
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
91
|
+
def initialize(attributes = {})
|
92
|
+
if (!attributes.is_a?(Hash))
|
93
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `SnapTrade::ManualTradeFormBracket` initialize method"
|
94
|
+
end
|
95
|
+
|
96
|
+
# check to see if the attribute exists and convert string to symbol for hash key
|
97
|
+
attributes = attributes.each_with_object({}) { |(k, v), h|
|
98
|
+
if (!self.class.attribute_map.key?(k.to_sym))
|
99
|
+
fail ArgumentError, "`#{k}` is not a valid attribute in `SnapTrade::ManualTradeFormBracket`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
|
100
|
+
end
|
101
|
+
h[k.to_sym] = v
|
102
|
+
}
|
103
|
+
|
104
|
+
if attributes.key?(:'account_id')
|
105
|
+
self.account_id = attributes[:'account_id']
|
106
|
+
end
|
107
|
+
|
108
|
+
if attributes.key?(:'action')
|
109
|
+
self.action = attributes[:'action']
|
110
|
+
end
|
111
|
+
|
112
|
+
if attributes.key?(:'symbol')
|
113
|
+
self.symbol = attributes[:'symbol']
|
114
|
+
end
|
115
|
+
|
116
|
+
if attributes.key?(:'order_type')
|
117
|
+
self.order_type = attributes[:'order_type']
|
118
|
+
end
|
119
|
+
|
120
|
+
if attributes.key?(:'time_in_force')
|
121
|
+
self.time_in_force = attributes[:'time_in_force']
|
122
|
+
end
|
123
|
+
|
124
|
+
if attributes.key?(:'price')
|
125
|
+
self.price = attributes[:'price']
|
126
|
+
end
|
127
|
+
|
128
|
+
if attributes.key?(:'stop')
|
129
|
+
self.stop = attributes[:'stop']
|
130
|
+
end
|
131
|
+
|
132
|
+
if attributes.key?(:'units')
|
133
|
+
self.units = attributes[:'units']
|
134
|
+
end
|
135
|
+
|
136
|
+
if attributes.key?(:'stop_loss')
|
137
|
+
self.stop_loss = attributes[:'stop_loss']
|
138
|
+
end
|
139
|
+
|
140
|
+
if attributes.key?(:'take_profit')
|
141
|
+
self.take_profit = attributes[:'take_profit']
|
142
|
+
end
|
143
|
+
end
|
144
|
+
|
145
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
146
|
+
# @return Array for valid properties with the reasons
|
147
|
+
def list_invalid_properties
|
148
|
+
invalid_properties = Array.new
|
149
|
+
if @account_id.nil?
|
150
|
+
invalid_properties.push('invalid value for "account_id", account_id cannot be nil.')
|
151
|
+
end
|
152
|
+
|
153
|
+
if @action.nil?
|
154
|
+
invalid_properties.push('invalid value for "action", action cannot be nil.')
|
155
|
+
end
|
156
|
+
|
157
|
+
if @symbol.nil?
|
158
|
+
invalid_properties.push('invalid value for "symbol", symbol cannot be nil.')
|
159
|
+
end
|
160
|
+
|
161
|
+
if @order_type.nil?
|
162
|
+
invalid_properties.push('invalid value for "order_type", order_type cannot be nil.')
|
163
|
+
end
|
164
|
+
|
165
|
+
if @time_in_force.nil?
|
166
|
+
invalid_properties.push('invalid value for "time_in_force", time_in_force cannot be nil.')
|
167
|
+
end
|
168
|
+
|
169
|
+
if @stop_loss.nil?
|
170
|
+
invalid_properties.push('invalid value for "stop_loss", stop_loss cannot be nil.')
|
171
|
+
end
|
172
|
+
|
173
|
+
if @take_profit.nil?
|
174
|
+
invalid_properties.push('invalid value for "take_profit", take_profit cannot be nil.')
|
175
|
+
end
|
176
|
+
|
177
|
+
invalid_properties
|
178
|
+
end
|
179
|
+
|
180
|
+
# Check to see if the all the properties in the model are valid
|
181
|
+
# @return true if the model is valid
|
182
|
+
def valid?
|
183
|
+
return false if @account_id.nil?
|
184
|
+
return false if @action.nil?
|
185
|
+
return false if @symbol.nil?
|
186
|
+
return false if @order_type.nil?
|
187
|
+
return false if @time_in_force.nil?
|
188
|
+
return false if @stop_loss.nil?
|
189
|
+
return false if @take_profit.nil?
|
190
|
+
true
|
191
|
+
end
|
192
|
+
|
193
|
+
# Checks equality by comparing each attribute.
|
194
|
+
# @param [Object] Object to be compared
|
195
|
+
def ==(o)
|
196
|
+
return true if self.equal?(o)
|
197
|
+
self.class == o.class &&
|
198
|
+
account_id == o.account_id &&
|
199
|
+
action == o.action &&
|
200
|
+
symbol == o.symbol &&
|
201
|
+
order_type == o.order_type &&
|
202
|
+
time_in_force == o.time_in_force &&
|
203
|
+
price == o.price &&
|
204
|
+
stop == o.stop &&
|
205
|
+
units == o.units &&
|
206
|
+
stop_loss == o.stop_loss &&
|
207
|
+
take_profit == o.take_profit
|
208
|
+
end
|
209
|
+
|
210
|
+
# @see the `==` method
|
211
|
+
# @param [Object] Object to be compared
|
212
|
+
def eql?(o)
|
213
|
+
self == o
|
214
|
+
end
|
215
|
+
|
216
|
+
# Calculates hash code according to all attributes.
|
217
|
+
# @return [Integer] Hash code
|
218
|
+
def hash
|
219
|
+
[account_id, action, symbol, order_type, time_in_force, price, stop, units, stop_loss, take_profit].hash
|
220
|
+
end
|
221
|
+
|
222
|
+
# Builds the object from hash
|
223
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
224
|
+
# @return [Object] Returns the model itself
|
225
|
+
def self.build_from_hash(attributes)
|
226
|
+
new.build_from_hash(attributes)
|
227
|
+
end
|
228
|
+
|
229
|
+
# Builds the object from hash
|
230
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
231
|
+
# @return [Object] Returns the model itself
|
232
|
+
def build_from_hash(attributes)
|
233
|
+
return nil unless attributes.is_a?(Hash)
|
234
|
+
attributes = attributes.transform_keys(&:to_sym)
|
235
|
+
self.class.openapi_types.each_pair do |key, type|
|
236
|
+
if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
|
237
|
+
self.send("#{key}=", nil)
|
238
|
+
elsif type =~ /\AArray<(.*)>/i
|
239
|
+
# check to ensure the input is an array given that the attribute
|
240
|
+
# is documented as an array but the input is not
|
241
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
242
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
243
|
+
end
|
244
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
245
|
+
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
246
|
+
end
|
247
|
+
end
|
248
|
+
|
249
|
+
self
|
250
|
+
end
|
251
|
+
|
252
|
+
# Deserializes the data based on type
|
253
|
+
# @param string type Data type
|
254
|
+
# @param string value Value to be deserialized
|
255
|
+
# @return [Object] Deserialized data
|
256
|
+
def _deserialize(type, value)
|
257
|
+
case type.to_sym
|
258
|
+
when :Time
|
259
|
+
Time.parse(value)
|
260
|
+
when :Date
|
261
|
+
Date.parse(value)
|
262
|
+
when :String
|
263
|
+
value.to_s
|
264
|
+
when :Integer
|
265
|
+
value.to_i
|
266
|
+
when :Float
|
267
|
+
value.to_f
|
268
|
+
when :Boolean
|
269
|
+
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
270
|
+
true
|
271
|
+
else
|
272
|
+
false
|
273
|
+
end
|
274
|
+
when :Object
|
275
|
+
# generic object (usually a Hash), return directly
|
276
|
+
value
|
277
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
278
|
+
inner_type = Regexp.last_match[:inner_type]
|
279
|
+
value.map { |v| _deserialize(inner_type, v) }
|
280
|
+
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
281
|
+
k_type = Regexp.last_match[:k_type]
|
282
|
+
v_type = Regexp.last_match[:v_type]
|
283
|
+
{}.tap do |hash|
|
284
|
+
value.each do |k, v|
|
285
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
286
|
+
end
|
287
|
+
end
|
288
|
+
else # model
|
289
|
+
# models (e.g. Pet) or oneOf
|
290
|
+
klass = SnapTrade.const_get(type)
|
291
|
+
klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
292
|
+
end
|
293
|
+
end
|
294
|
+
|
295
|
+
# Returns the string representation of the object
|
296
|
+
# @return [String] String presentation of the object
|
297
|
+
def to_s
|
298
|
+
to_hash.to_s
|
299
|
+
end
|
300
|
+
|
301
|
+
# to_body is an alias to to_hash (backward compatibility)
|
302
|
+
# @return [Hash] Returns the object in the form of hash
|
303
|
+
def to_body
|
304
|
+
to_hash
|
305
|
+
end
|
306
|
+
|
307
|
+
# Returns the object in the form of hash
|
308
|
+
# @return [Hash] Returns the object in the form of hash
|
309
|
+
def to_hash
|
310
|
+
hash = {}
|
311
|
+
self.class.attribute_map.each_pair do |attr, param|
|
312
|
+
value = self.send(attr)
|
313
|
+
if value.nil?
|
314
|
+
is_nullable = self.class.openapi_nullable.include?(attr)
|
315
|
+
next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
|
316
|
+
end
|
317
|
+
|
318
|
+
hash[param] = _to_hash(value)
|
319
|
+
end
|
320
|
+
hash
|
321
|
+
end
|
322
|
+
|
323
|
+
# Outputs non-array value in the form of hash
|
324
|
+
# For object, use to_hash. Otherwise, just return the value
|
325
|
+
# @param [Object] value Any valid value
|
326
|
+
# @return [Hash] Returns the value in the form of hash
|
327
|
+
def _to_hash(value)
|
328
|
+
if value.is_a?(Array)
|
329
|
+
value.compact.map { |v| _to_hash(v) }
|
330
|
+
elsif value.is_a?(Hash)
|
331
|
+
{}.tap do |hash|
|
332
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
333
|
+
end
|
334
|
+
elsif value.respond_to? :to_hash
|
335
|
+
value.to_hash
|
336
|
+
else
|
337
|
+
value
|
338
|
+
end
|
339
|
+
end
|
340
|
+
|
341
|
+
end
|
342
|
+
|
343
|
+
end
|
@@ -22,7 +22,7 @@ module SnapTrade
|
|
22
22
|
# The universal symbol ID of the security to trade. Must be 'null' if `symbol` is provided, otherwise must be provided.
|
23
23
|
attr_accessor :universal_symbol_id
|
24
24
|
|
25
|
-
# The security's trading ticker symbol. This currently
|
25
|
+
# The security's trading ticker symbol. This currently supports stock symbols and Options symbols in the 21 character OCC format. For example \"AAPL 131124C00240000\" represents a call option on AAPL expiring on 2024-11-13 with a strike price of $240. For more information on the OCC format, see [here](https://en.wikipedia.org/wiki/Option_symbol#OCC_format). If 'symbol' is provided, then 'universal_symbol_id' must be 'null'.
|
26
26
|
attr_accessor :symbol
|
27
27
|
|
28
28
|
# The type of order to place. - For `Limit` and `StopLimit` orders, the `price` field is required. - For `Stop` and `StopLimit` orders, the `stop` field is required.
|
@@ -42,13 +42,6 @@ module SnapTrade
|
|
42
42
|
|
43
43
|
attr_accessor :notional_value
|
44
44
|
|
45
|
-
# The class of order intended to be placed. Defaults to SIMPLE for regular, one legged trades. Set to BRACKET if looking to place a bracket (One-triggers-a-one-cancels-the-other) order, then specify take profit and stop loss conditions. Bracket orders currently only supported on Alpaca, Tradier, and Tradestation, contact us for more details
|
46
|
-
attr_accessor :order_class
|
47
|
-
|
48
|
-
attr_accessor :stop_loss
|
49
|
-
|
50
|
-
attr_accessor :take_profit
|
51
|
-
|
52
45
|
# Attribute mapping from ruby-style variable name to JSON key.
|
53
46
|
def self.attribute_map
|
54
47
|
{
|
@@ -61,10 +54,7 @@ module SnapTrade
|
|
61
54
|
:'price' => :'price',
|
62
55
|
:'stop' => :'stop',
|
63
56
|
:'units' => :'units',
|
64
|
-
:'notional_value' => :'notional_value'
|
65
|
-
:'order_class' => :'order_class',
|
66
|
-
:'stop_loss' => :'stop_loss',
|
67
|
-
:'take_profit' => :'take_profit'
|
57
|
+
:'notional_value' => :'notional_value'
|
68
58
|
}
|
69
59
|
end
|
70
60
|
|
@@ -85,10 +75,7 @@ module SnapTrade
|
|
85
75
|
:'price' => :'Float',
|
86
76
|
:'stop' => :'Float',
|
87
77
|
:'units' => :'Float',
|
88
|
-
:'notional_value' => :'ManualTradeFormNotionalValue'
|
89
|
-
:'order_class' => :'OrderClass',
|
90
|
-
:'stop_loss' => :'ManualTradeFormWithOptionsStopLoss',
|
91
|
-
:'take_profit' => :'ManualTradeFormWithOptionsTakeProfit'
|
78
|
+
:'notional_value' => :'ManualTradeFormNotionalValue'
|
92
79
|
}
|
93
80
|
end
|
94
81
|
|
@@ -100,10 +87,7 @@ module SnapTrade
|
|
100
87
|
:'price',
|
101
88
|
:'stop',
|
102
89
|
:'units',
|
103
|
-
:'notional_value'
|
104
|
-
:'order_class',
|
105
|
-
:'stop_loss',
|
106
|
-
:'take_profit'
|
90
|
+
:'notional_value'
|
107
91
|
])
|
108
92
|
end
|
109
93
|
|
@@ -161,18 +145,6 @@ module SnapTrade
|
|
161
145
|
if attributes.key?(:'notional_value')
|
162
146
|
self.notional_value = attributes[:'notional_value']
|
163
147
|
end
|
164
|
-
|
165
|
-
if attributes.key?(:'order_class')
|
166
|
-
self.order_class = attributes[:'order_class']
|
167
|
-
end
|
168
|
-
|
169
|
-
if attributes.key?(:'stop_loss')
|
170
|
-
self.stop_loss = attributes[:'stop_loss']
|
171
|
-
end
|
172
|
-
|
173
|
-
if attributes.key?(:'take_profit')
|
174
|
-
self.take_profit = attributes[:'take_profit']
|
175
|
-
end
|
176
148
|
end
|
177
149
|
|
178
150
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -222,10 +194,7 @@ module SnapTrade
|
|
222
194
|
price == o.price &&
|
223
195
|
stop == o.stop &&
|
224
196
|
units == o.units &&
|
225
|
-
notional_value == o.notional_value
|
226
|
-
order_class == o.order_class &&
|
227
|
-
stop_loss == o.stop_loss &&
|
228
|
-
take_profit == o.take_profit
|
197
|
+
notional_value == o.notional_value
|
229
198
|
end
|
230
199
|
|
231
200
|
# @see the `==` method
|
@@ -237,7 +206,7 @@ module SnapTrade
|
|
237
206
|
# Calculates hash code according to all attributes.
|
238
207
|
# @return [Integer] Hash code
|
239
208
|
def hash
|
240
|
-
[account_id, action, universal_symbol_id, symbol, order_type, time_in_force, price, stop, units, notional_value
|
209
|
+
[account_id, action, universal_symbol_id, symbol, order_type, time_in_force, price, stop, units, notional_value].hash
|
241
210
|
end
|
242
211
|
|
243
212
|
# Builds the object from hash
|
data/lib/snaptrade/version.rb
CHANGED
data/lib/snaptrade.rb
CHANGED
@@ -22,6 +22,7 @@ require 'snaptrade/models/account_balance_total'
|
|
22
22
|
require 'snaptrade/models/account_holdings'
|
23
23
|
require 'snaptrade/models/account_holdings_account'
|
24
24
|
require 'snaptrade/models/account_order_record'
|
25
|
+
require 'snaptrade/models/account_order_record_child_brokerage_order_ids'
|
25
26
|
require 'snaptrade/models/account_order_record_option_symbol'
|
26
27
|
require 'snaptrade/models/account_order_record_status'
|
27
28
|
require 'snaptrade/models/account_order_record_universal_symbol'
|
@@ -44,6 +45,7 @@ require 'snaptrade/models/brokerage_authorization_refresh_confirmation'
|
|
44
45
|
require 'snaptrade/models/brokerage_authorization_type_read_only'
|
45
46
|
require 'snaptrade/models/brokerage_authorization_type_read_only_brokerage'
|
46
47
|
require 'snaptrade/models/brokerage_type'
|
48
|
+
require 'snaptrade/models/child_brokerage_order_ids'
|
47
49
|
require 'snaptrade/models/connection_portal_version'
|
48
50
|
require 'snaptrade/models/connection_type'
|
49
51
|
require 'snaptrade/models/connections_session_events200_response_inner'
|
@@ -61,10 +63,9 @@ require 'snaptrade/models/manual_trade'
|
|
61
63
|
require 'snaptrade/models/manual_trade_and_impact'
|
62
64
|
require 'snaptrade/models/manual_trade_balance'
|
63
65
|
require 'snaptrade/models/manual_trade_form'
|
66
|
+
require 'snaptrade/models/manual_trade_form_bracket'
|
64
67
|
require 'snaptrade/models/manual_trade_form_notional_value'
|
65
68
|
require 'snaptrade/models/manual_trade_form_with_options'
|
66
|
-
require 'snaptrade/models/manual_trade_form_with_options_stop_loss'
|
67
|
-
require 'snaptrade/models/manual_trade_form_with_options_take_profit'
|
68
69
|
require 'snaptrade/models/manual_trade_impact'
|
69
70
|
require 'snaptrade/models/manual_trade_symbol'
|
70
71
|
require 'snaptrade/models/model400_failed_request_response'
|
@@ -94,7 +95,6 @@ require 'snaptrade/models/options_place_option_strategy_request'
|
|
94
95
|
require 'snaptrade/models/options_position'
|
95
96
|
require 'snaptrade/models/options_position_currency'
|
96
97
|
require 'snaptrade/models/options_symbol'
|
97
|
-
require 'snaptrade/models/order_class'
|
98
98
|
require 'snaptrade/models/order_type_strict'
|
99
99
|
require 'snaptrade/models/paginated_universal_activity'
|
100
100
|
require 'snaptrade/models/pagination_details'
|
@@ -72,6 +72,20 @@ describe 'TradingApi' do
|
|
72
72
|
end
|
73
73
|
end
|
74
74
|
|
75
|
+
# unit tests for place_bracket_order
|
76
|
+
# Place a Bracket Order
|
77
|
+
# Places a bracket order (entry order + OCO of stop loss and take profit). Disabled by default please contact support for use. Only supported on certain brokerages
|
78
|
+
# @param user_id
|
79
|
+
# @param user_secret
|
80
|
+
# @param manual_trade_form_bracket
|
81
|
+
# @param [Hash] opts the optional parameters
|
82
|
+
# @return [AccountOrderRecord]
|
83
|
+
describe 'place_bracket_order test' do
|
84
|
+
it 'should work' do
|
85
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
86
|
+
end
|
87
|
+
end
|
88
|
+
|
75
89
|
# unit tests for place_force_order
|
76
90
|
# Place order
|
77
91
|
# Places a brokerage order in the specified account. The order could be rejected by the brokerage if it is invalid or if the account does not have sufficient funds. This endpoint does not compute the impact to the account balance from the order and any potential commissions before submitting the order to the brokerage. If that is desired, you can use the [check order impact endpoint](/reference/Trading/Trading_getOrderImpact). It's recommended to trigger a manual refresh of the account after placing an order to ensure the account is up to date. You can use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint for this.
|
@@ -0,0 +1,35 @@
|
|
1
|
+
=begin
|
2
|
+
#SnapTrade
|
3
|
+
|
4
|
+
#Connect brokerage accounts to your app for live positions and trading
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 1.0.0
|
7
|
+
Contact: api@snaptrade.com
|
8
|
+
=end
|
9
|
+
|
10
|
+
require 'spec_helper'
|
11
|
+
require 'json'
|
12
|
+
require 'date'
|
13
|
+
|
14
|
+
# Unit tests for SnapTrade::AccountOrderRecordChildBrokerageOrderIds
|
15
|
+
describe SnapTrade::AccountOrderRecordChildBrokerageOrderIds do
|
16
|
+
let(:instance) { SnapTrade::AccountOrderRecordChildBrokerageOrderIds.new }
|
17
|
+
|
18
|
+
describe 'test an instance of AccountOrderRecordChildBrokerageOrderIds' do
|
19
|
+
it 'should create an instance of AccountOrderRecordChildBrokerageOrderIds' do
|
20
|
+
expect(instance).to be_instance_of(SnapTrade::AccountOrderRecordChildBrokerageOrderIds)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
describe 'test attribute "take_profit_order_id"' do
|
24
|
+
it 'should work' do
|
25
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
describe 'test attribute "stop_loss_order_id"' do
|
30
|
+
it 'should work' do
|
31
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
end
|
@@ -134,4 +134,10 @@ describe SnapTrade::AccountOrderRecord do
|
|
134
134
|
end
|
135
135
|
end
|
136
136
|
|
137
|
+
describe 'test attribute "child_brokerage_order_ids"' do
|
138
|
+
it 'should work' do
|
139
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
140
|
+
end
|
141
|
+
end
|
142
|
+
|
137
143
|
end
|
@@ -11,22 +11,22 @@ require 'spec_helper'
|
|
11
11
|
require 'json'
|
12
12
|
require 'date'
|
13
13
|
|
14
|
-
# Unit tests for SnapTrade::
|
15
|
-
describe SnapTrade::
|
16
|
-
let(:instance) { SnapTrade::
|
14
|
+
# Unit tests for SnapTrade::ChildBrokerageOrderIDs
|
15
|
+
describe SnapTrade::ChildBrokerageOrderIDs do
|
16
|
+
let(:instance) { SnapTrade::ChildBrokerageOrderIDs.new }
|
17
17
|
|
18
|
-
describe 'test an instance of
|
19
|
-
it 'should create an instance of
|
20
|
-
expect(instance).to be_instance_of(SnapTrade::
|
18
|
+
describe 'test an instance of ChildBrokerageOrderIDs' do
|
19
|
+
it 'should create an instance of ChildBrokerageOrderIDs' do
|
20
|
+
expect(instance).to be_instance_of(SnapTrade::ChildBrokerageOrderIDs)
|
21
21
|
end
|
22
22
|
end
|
23
|
-
describe 'test attribute "
|
23
|
+
describe 'test attribute "take_profit_order_id"' do
|
24
24
|
it 'should work' do
|
25
25
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
26
26
|
end
|
27
27
|
end
|
28
28
|
|
29
|
-
describe 'test attribute "
|
29
|
+
describe 'test attribute "stop_loss_order_id"' do
|
30
30
|
it 'should work' do
|
31
31
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
32
32
|
end
|