snaptrade 2.0.82 → 2.0.84
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 +5 -5
- data/README.md +375 -23
- data/lib/snaptrade/api/crypto_spot_trading_api.rb +698 -0
- data/lib/snaptrade/api/trading_api.rb +158 -16
- data/lib/snaptrade/models/account_order_record.rb +14 -4
- data/lib/snaptrade/models/account_order_record_child_brokerage_order_ids.rb +234 -0
- data/lib/snaptrade/models/brokerage_authorization_type_read_only.rb +1 -1
- data/lib/snaptrade/models/{order_class.rb → brokerage_authorization_type_read_only_type.rb} +6 -6
- data/lib/snaptrade/models/child_brokerage_order_ids.rb +227 -0
- data/lib/snaptrade/models/{manual_trade_form_with_options_take_profit.rb → crypto_spot_order_preview.rb} +11 -17
- data/lib/snaptrade/models/crypto_spot_order_preview_estimated_fee.rb +237 -0
- data/lib/snaptrade/models/crypto_spot_order_request_body_time_in_force.rb +39 -0
- data/lib/snaptrade/models/crypto_spot_quote.rb +257 -0
- data/lib/snaptrade/models/cryptocurrency_pair.rb +238 -0
- 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/models/{manual_trade_form_with_options_stop_loss.rb → trading_crypto_spot_cancel_order_request.rb} +16 -27
- data/lib/snaptrade/models/trading_crypto_spot_place_order_request.rb +321 -0
- data/lib/snaptrade/models/trading_crypto_spot_symbols200_response.rb +224 -0
- data/lib/snaptrade/models/type.rb +7 -3
- data/lib/snaptrade/version.rb +1 -1
- data/lib/snaptrade.rb +15 -3
- data/spec/api/crypto_spot_trading_api_spec.rb +107 -0
- 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/brokerage_authorization_type_read_only_type_spec.rb +23 -0
- data/spec/models/child_brokerage_order_ids_spec.rb +35 -0
- data/spec/models/{manual_trade_form_with_options_stop_loss_spec.rb → crypto_spot_order_preview_estimated_fee_spec.rb} +8 -8
- data/spec/models/crypto_spot_order_preview_spec.rb +29 -0
- data/spec/models/crypto_spot_order_request_body_time_in_force_spec.rb +23 -0
- data/spec/models/crypto_spot_quote_spec.rb +47 -0
- data/spec/models/cryptocurrency_pair_spec.rb +35 -0
- data/spec/models/manual_trade_form_bracket_spec.rb +83 -0
- data/spec/models/manual_trade_form_with_options_spec.rb +0 -18
- data/spec/models/trading_crypto_spot_cancel_order_request_spec.rb +29 -0
- data/spec/models/trading_crypto_spot_place_order_request_spec.rb +77 -0
- data/spec/models/trading_crypto_spot_symbols200_response_spec.rb +29 -0
- metadata +41 -11
- data/spec/models/manual_trade_form_with_options_take_profit_spec.rb +0 -29
- data/spec/models/order_class_spec.rb +0 -23
@@ -0,0 +1,321 @@
|
|
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
|
+
class TradingCryptoSpotPlaceOrderRequest
|
15
|
+
attr_accessor :symbol
|
16
|
+
|
17
|
+
# The action describes the intent or side of a trade. This is either `BUY` or `SELL`.
|
18
|
+
attr_accessor :side
|
19
|
+
|
20
|
+
# The type of order to place.
|
21
|
+
attr_accessor :type
|
22
|
+
|
23
|
+
# The Time in Force type for the order. This field indicates how long the order will remain active before it is executed or expires. - `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. - `IOC` - Immediate Or Cancel. The order must be executed immediately. Any portion of the order that cannot be filled immediately will be canceled. - `GTD` - Good Til Date. The order is valid until the specified date.
|
24
|
+
attr_accessor :time_in_force
|
25
|
+
|
26
|
+
# The amount of the base currency to buy or sell.
|
27
|
+
attr_accessor :amount
|
28
|
+
|
29
|
+
# The limit price. Required if the order type is LIMIT, STOP_LOSS_LIMIT or TAKE_PROFIT_LIMIT.
|
30
|
+
attr_accessor :limit_price
|
31
|
+
|
32
|
+
# The stop price. Required if the order type is STOP_LOSS_MARKET, STOP_LOSS_LIMIT, TAKE_PROFIT_MARKET or TAKE_PROFIT_LIMIT.
|
33
|
+
attr_accessor :stop_price
|
34
|
+
|
35
|
+
# Required for order type LIMIT. If true orders that would be filled immediately are rejected to avoid incurring TAKER fees.
|
36
|
+
attr_accessor :post_only
|
37
|
+
|
38
|
+
# The expiration date of the order. Required if the time_in_force is GTD.
|
39
|
+
attr_accessor :expiration_date
|
40
|
+
|
41
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
42
|
+
def self.attribute_map
|
43
|
+
{
|
44
|
+
:'symbol' => :'symbol',
|
45
|
+
:'side' => :'side',
|
46
|
+
:'type' => :'type',
|
47
|
+
:'time_in_force' => :'time_in_force',
|
48
|
+
:'amount' => :'amount',
|
49
|
+
:'limit_price' => :'limit_price',
|
50
|
+
:'stop_price' => :'stop_price',
|
51
|
+
:'post_only' => :'post_only',
|
52
|
+
:'expiration_date' => :'expiration_date'
|
53
|
+
}
|
54
|
+
end
|
55
|
+
|
56
|
+
# Returns all the JSON keys this model knows about
|
57
|
+
def self.acceptable_attributes
|
58
|
+
attribute_map.values
|
59
|
+
end
|
60
|
+
|
61
|
+
# Attribute type mapping.
|
62
|
+
def self.openapi_types
|
63
|
+
{
|
64
|
+
:'symbol' => :'CryptocurrencyPair',
|
65
|
+
:'side' => :'ActionStrict',
|
66
|
+
:'type' => :'Type',
|
67
|
+
:'time_in_force' => :'CryptoSpotOrderRequestBodyTimeInForce',
|
68
|
+
:'amount' => :'Float',
|
69
|
+
:'limit_price' => :'Float',
|
70
|
+
:'stop_price' => :'Float',
|
71
|
+
:'post_only' => :'Boolean',
|
72
|
+
:'expiration_date' => :'Time'
|
73
|
+
}
|
74
|
+
end
|
75
|
+
|
76
|
+
# List of attributes with nullable: true
|
77
|
+
def self.openapi_nullable
|
78
|
+
Set.new([
|
79
|
+
])
|
80
|
+
end
|
81
|
+
|
82
|
+
# Initializes the object
|
83
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
84
|
+
def initialize(attributes = {})
|
85
|
+
if (!attributes.is_a?(Hash))
|
86
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `SnapTrade::TradingCryptoSpotPlaceOrderRequest` initialize method"
|
87
|
+
end
|
88
|
+
|
89
|
+
# check to see if the attribute exists and convert string to symbol for hash key
|
90
|
+
attributes = attributes.each_with_object({}) { |(k, v), h|
|
91
|
+
if (!self.class.attribute_map.key?(k.to_sym))
|
92
|
+
fail ArgumentError, "`#{k}` is not a valid attribute in `SnapTrade::TradingCryptoSpotPlaceOrderRequest`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
|
93
|
+
end
|
94
|
+
h[k.to_sym] = v
|
95
|
+
}
|
96
|
+
|
97
|
+
if attributes.key?(:'symbol')
|
98
|
+
self.symbol = attributes[:'symbol']
|
99
|
+
end
|
100
|
+
|
101
|
+
if attributes.key?(:'side')
|
102
|
+
self.side = attributes[:'side']
|
103
|
+
end
|
104
|
+
|
105
|
+
if attributes.key?(:'type')
|
106
|
+
self.type = attributes[:'type']
|
107
|
+
end
|
108
|
+
|
109
|
+
if attributes.key?(:'time_in_force')
|
110
|
+
self.time_in_force = attributes[:'time_in_force']
|
111
|
+
end
|
112
|
+
|
113
|
+
if attributes.key?(:'amount')
|
114
|
+
self.amount = attributes[:'amount']
|
115
|
+
end
|
116
|
+
|
117
|
+
if attributes.key?(:'limit_price')
|
118
|
+
self.limit_price = attributes[:'limit_price']
|
119
|
+
end
|
120
|
+
|
121
|
+
if attributes.key?(:'stop_price')
|
122
|
+
self.stop_price = attributes[:'stop_price']
|
123
|
+
end
|
124
|
+
|
125
|
+
if attributes.key?(:'post_only')
|
126
|
+
self.post_only = attributes[:'post_only']
|
127
|
+
end
|
128
|
+
|
129
|
+
if attributes.key?(:'expiration_date')
|
130
|
+
self.expiration_date = attributes[:'expiration_date']
|
131
|
+
end
|
132
|
+
end
|
133
|
+
|
134
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
135
|
+
# @return Array for valid properties with the reasons
|
136
|
+
def list_invalid_properties
|
137
|
+
invalid_properties = Array.new
|
138
|
+
if @symbol.nil?
|
139
|
+
invalid_properties.push('invalid value for "symbol", symbol cannot be nil.')
|
140
|
+
end
|
141
|
+
|
142
|
+
if @side.nil?
|
143
|
+
invalid_properties.push('invalid value for "side", side cannot be nil.')
|
144
|
+
end
|
145
|
+
|
146
|
+
if @type.nil?
|
147
|
+
invalid_properties.push('invalid value for "type", type cannot be nil.')
|
148
|
+
end
|
149
|
+
|
150
|
+
if @time_in_force.nil?
|
151
|
+
invalid_properties.push('invalid value for "time_in_force", time_in_force cannot be nil.')
|
152
|
+
end
|
153
|
+
|
154
|
+
if @amount.nil?
|
155
|
+
invalid_properties.push('invalid value for "amount", amount cannot be nil.')
|
156
|
+
end
|
157
|
+
|
158
|
+
invalid_properties
|
159
|
+
end
|
160
|
+
|
161
|
+
# Check to see if the all the properties in the model are valid
|
162
|
+
# @return true if the model is valid
|
163
|
+
def valid?
|
164
|
+
return false if @symbol.nil?
|
165
|
+
return false if @side.nil?
|
166
|
+
return false if @type.nil?
|
167
|
+
return false if @time_in_force.nil?
|
168
|
+
return false if @amount.nil?
|
169
|
+
true
|
170
|
+
end
|
171
|
+
|
172
|
+
# Checks equality by comparing each attribute.
|
173
|
+
# @param [Object] Object to be compared
|
174
|
+
def ==(o)
|
175
|
+
return true if self.equal?(o)
|
176
|
+
self.class == o.class &&
|
177
|
+
symbol == o.symbol &&
|
178
|
+
side == o.side &&
|
179
|
+
type == o.type &&
|
180
|
+
time_in_force == o.time_in_force &&
|
181
|
+
amount == o.amount &&
|
182
|
+
limit_price == o.limit_price &&
|
183
|
+
stop_price == o.stop_price &&
|
184
|
+
post_only == o.post_only &&
|
185
|
+
expiration_date == o.expiration_date
|
186
|
+
end
|
187
|
+
|
188
|
+
# @see the `==` method
|
189
|
+
# @param [Object] Object to be compared
|
190
|
+
def eql?(o)
|
191
|
+
self == o
|
192
|
+
end
|
193
|
+
|
194
|
+
# Calculates hash code according to all attributes.
|
195
|
+
# @return [Integer] Hash code
|
196
|
+
def hash
|
197
|
+
[symbol, side, type, time_in_force, amount, limit_price, stop_price, post_only, expiration_date].hash
|
198
|
+
end
|
199
|
+
|
200
|
+
# Builds the object from hash
|
201
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
202
|
+
# @return [Object] Returns the model itself
|
203
|
+
def self.build_from_hash(attributes)
|
204
|
+
new.build_from_hash(attributes)
|
205
|
+
end
|
206
|
+
|
207
|
+
# Builds the object from hash
|
208
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
209
|
+
# @return [Object] Returns the model itself
|
210
|
+
def build_from_hash(attributes)
|
211
|
+
return nil unless attributes.is_a?(Hash)
|
212
|
+
attributes = attributes.transform_keys(&:to_sym)
|
213
|
+
self.class.openapi_types.each_pair do |key, type|
|
214
|
+
if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
|
215
|
+
self.send("#{key}=", nil)
|
216
|
+
elsif type =~ /\AArray<(.*)>/i
|
217
|
+
# check to ensure the input is an array given that the attribute
|
218
|
+
# is documented as an array but the input is not
|
219
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
220
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
221
|
+
end
|
222
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
223
|
+
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
224
|
+
end
|
225
|
+
end
|
226
|
+
|
227
|
+
self
|
228
|
+
end
|
229
|
+
|
230
|
+
# Deserializes the data based on type
|
231
|
+
# @param string type Data type
|
232
|
+
# @param string value Value to be deserialized
|
233
|
+
# @return [Object] Deserialized data
|
234
|
+
def _deserialize(type, value)
|
235
|
+
case type.to_sym
|
236
|
+
when :Time
|
237
|
+
Time.parse(value)
|
238
|
+
when :Date
|
239
|
+
Date.parse(value)
|
240
|
+
when :String
|
241
|
+
value.to_s
|
242
|
+
when :Integer
|
243
|
+
value.to_i
|
244
|
+
when :Float
|
245
|
+
value.to_f
|
246
|
+
when :Boolean
|
247
|
+
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
248
|
+
true
|
249
|
+
else
|
250
|
+
false
|
251
|
+
end
|
252
|
+
when :Object
|
253
|
+
# generic object (usually a Hash), return directly
|
254
|
+
value
|
255
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
256
|
+
inner_type = Regexp.last_match[:inner_type]
|
257
|
+
value.map { |v| _deserialize(inner_type, v) }
|
258
|
+
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
259
|
+
k_type = Regexp.last_match[:k_type]
|
260
|
+
v_type = Regexp.last_match[:v_type]
|
261
|
+
{}.tap do |hash|
|
262
|
+
value.each do |k, v|
|
263
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
264
|
+
end
|
265
|
+
end
|
266
|
+
else # model
|
267
|
+
# models (e.g. Pet) or oneOf
|
268
|
+
klass = SnapTrade.const_get(type)
|
269
|
+
klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
270
|
+
end
|
271
|
+
end
|
272
|
+
|
273
|
+
# Returns the string representation of the object
|
274
|
+
# @return [String] String presentation of the object
|
275
|
+
def to_s
|
276
|
+
to_hash.to_s
|
277
|
+
end
|
278
|
+
|
279
|
+
# to_body is an alias to to_hash (backward compatibility)
|
280
|
+
# @return [Hash] Returns the object in the form of hash
|
281
|
+
def to_body
|
282
|
+
to_hash
|
283
|
+
end
|
284
|
+
|
285
|
+
# Returns the object in the form of hash
|
286
|
+
# @return [Hash] Returns the object in the form of hash
|
287
|
+
def to_hash
|
288
|
+
hash = {}
|
289
|
+
self.class.attribute_map.each_pair do |attr, param|
|
290
|
+
value = self.send(attr)
|
291
|
+
if value.nil?
|
292
|
+
is_nullable = self.class.openapi_nullable.include?(attr)
|
293
|
+
next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
|
294
|
+
end
|
295
|
+
|
296
|
+
hash[param] = _to_hash(value)
|
297
|
+
end
|
298
|
+
hash
|
299
|
+
end
|
300
|
+
|
301
|
+
# Outputs non-array value in the form of hash
|
302
|
+
# For object, use to_hash. Otherwise, just return the value
|
303
|
+
# @param [Object] value Any valid value
|
304
|
+
# @return [Hash] Returns the value in the form of hash
|
305
|
+
def _to_hash(value)
|
306
|
+
if value.is_a?(Array)
|
307
|
+
value.compact.map { |v| _to_hash(v) }
|
308
|
+
elsif value.is_a?(Hash)
|
309
|
+
{}.tap do |hash|
|
310
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
311
|
+
end
|
312
|
+
elsif value.respond_to? :to_hash
|
313
|
+
value.to_hash
|
314
|
+
else
|
315
|
+
value
|
316
|
+
end
|
317
|
+
end
|
318
|
+
|
319
|
+
end
|
320
|
+
|
321
|
+
end
|
@@ -0,0 +1,224 @@
|
|
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
|
+
# The symbols
|
15
|
+
class TradingCryptoSpotSymbols200Response
|
16
|
+
attr_accessor :items
|
17
|
+
|
18
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
19
|
+
def self.attribute_map
|
20
|
+
{
|
21
|
+
:'items' => :'items'
|
22
|
+
}
|
23
|
+
end
|
24
|
+
|
25
|
+
# Returns all the JSON keys this model knows about
|
26
|
+
def self.acceptable_attributes
|
27
|
+
attribute_map.values
|
28
|
+
end
|
29
|
+
|
30
|
+
# Attribute type mapping.
|
31
|
+
def self.openapi_types
|
32
|
+
{
|
33
|
+
:'items' => :'Array<CryptocurrencyPair>'
|
34
|
+
}
|
35
|
+
end
|
36
|
+
|
37
|
+
# List of attributes with nullable: true
|
38
|
+
def self.openapi_nullable
|
39
|
+
Set.new([
|
40
|
+
])
|
41
|
+
end
|
42
|
+
|
43
|
+
# Initializes the object
|
44
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
45
|
+
def initialize(attributes = {})
|
46
|
+
if (!attributes.is_a?(Hash))
|
47
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `SnapTrade::TradingCryptoSpotSymbols200Response` initialize method"
|
48
|
+
end
|
49
|
+
|
50
|
+
# check to see if the attribute exists and convert string to symbol for hash key
|
51
|
+
attributes = attributes.each_with_object({}) { |(k, v), h|
|
52
|
+
if (!self.class.attribute_map.key?(k.to_sym))
|
53
|
+
fail ArgumentError, "`#{k}` is not a valid attribute in `SnapTrade::TradingCryptoSpotSymbols200Response`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
|
54
|
+
end
|
55
|
+
h[k.to_sym] = v
|
56
|
+
}
|
57
|
+
|
58
|
+
if attributes.key?(:'items')
|
59
|
+
if (value = attributes[:'items']).is_a?(Array)
|
60
|
+
self.items = value
|
61
|
+
end
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
66
|
+
# @return Array for valid properties with the reasons
|
67
|
+
def list_invalid_properties
|
68
|
+
invalid_properties = Array.new
|
69
|
+
if @items.nil?
|
70
|
+
invalid_properties.push('invalid value for "items", items cannot be nil.')
|
71
|
+
end
|
72
|
+
|
73
|
+
invalid_properties
|
74
|
+
end
|
75
|
+
|
76
|
+
# Check to see if the all the properties in the model are valid
|
77
|
+
# @return true if the model is valid
|
78
|
+
def valid?
|
79
|
+
return false if @items.nil?
|
80
|
+
true
|
81
|
+
end
|
82
|
+
|
83
|
+
# Checks equality by comparing each attribute.
|
84
|
+
# @param [Object] Object to be compared
|
85
|
+
def ==(o)
|
86
|
+
return true if self.equal?(o)
|
87
|
+
self.class == o.class &&
|
88
|
+
items == o.items
|
89
|
+
end
|
90
|
+
|
91
|
+
# @see the `==` method
|
92
|
+
# @param [Object] Object to be compared
|
93
|
+
def eql?(o)
|
94
|
+
self == o
|
95
|
+
end
|
96
|
+
|
97
|
+
# Calculates hash code according to all attributes.
|
98
|
+
# @return [Integer] Hash code
|
99
|
+
def hash
|
100
|
+
[items].hash
|
101
|
+
end
|
102
|
+
|
103
|
+
# Builds the object from hash
|
104
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
105
|
+
# @return [Object] Returns the model itself
|
106
|
+
def self.build_from_hash(attributes)
|
107
|
+
new.build_from_hash(attributes)
|
108
|
+
end
|
109
|
+
|
110
|
+
# Builds the object from hash
|
111
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
112
|
+
# @return [Object] Returns the model itself
|
113
|
+
def build_from_hash(attributes)
|
114
|
+
return nil unless attributes.is_a?(Hash)
|
115
|
+
attributes = attributes.transform_keys(&:to_sym)
|
116
|
+
self.class.openapi_types.each_pair do |key, type|
|
117
|
+
if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
|
118
|
+
self.send("#{key}=", nil)
|
119
|
+
elsif type =~ /\AArray<(.*)>/i
|
120
|
+
# check to ensure the input is an array given that the attribute
|
121
|
+
# is documented as an array but the input is not
|
122
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
123
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
124
|
+
end
|
125
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
126
|
+
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
127
|
+
end
|
128
|
+
end
|
129
|
+
|
130
|
+
self
|
131
|
+
end
|
132
|
+
|
133
|
+
# Deserializes the data based on type
|
134
|
+
# @param string type Data type
|
135
|
+
# @param string value Value to be deserialized
|
136
|
+
# @return [Object] Deserialized data
|
137
|
+
def _deserialize(type, value)
|
138
|
+
case type.to_sym
|
139
|
+
when :Time
|
140
|
+
Time.parse(value)
|
141
|
+
when :Date
|
142
|
+
Date.parse(value)
|
143
|
+
when :String
|
144
|
+
value.to_s
|
145
|
+
when :Integer
|
146
|
+
value.to_i
|
147
|
+
when :Float
|
148
|
+
value.to_f
|
149
|
+
when :Boolean
|
150
|
+
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
151
|
+
true
|
152
|
+
else
|
153
|
+
false
|
154
|
+
end
|
155
|
+
when :Object
|
156
|
+
# generic object (usually a Hash), return directly
|
157
|
+
value
|
158
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
159
|
+
inner_type = Regexp.last_match[:inner_type]
|
160
|
+
value.map { |v| _deserialize(inner_type, v) }
|
161
|
+
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
162
|
+
k_type = Regexp.last_match[:k_type]
|
163
|
+
v_type = Regexp.last_match[:v_type]
|
164
|
+
{}.tap do |hash|
|
165
|
+
value.each do |k, v|
|
166
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
167
|
+
end
|
168
|
+
end
|
169
|
+
else # model
|
170
|
+
# models (e.g. Pet) or oneOf
|
171
|
+
klass = SnapTrade.const_get(type)
|
172
|
+
klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
173
|
+
end
|
174
|
+
end
|
175
|
+
|
176
|
+
# Returns the string representation of the object
|
177
|
+
# @return [String] String presentation of the object
|
178
|
+
def to_s
|
179
|
+
to_hash.to_s
|
180
|
+
end
|
181
|
+
|
182
|
+
# to_body is an alias to to_hash (backward compatibility)
|
183
|
+
# @return [Hash] Returns the object in the form of hash
|
184
|
+
def to_body
|
185
|
+
to_hash
|
186
|
+
end
|
187
|
+
|
188
|
+
# Returns the object in the form of hash
|
189
|
+
# @return [Hash] Returns the object in the form of hash
|
190
|
+
def to_hash
|
191
|
+
hash = {}
|
192
|
+
self.class.attribute_map.each_pair do |attr, param|
|
193
|
+
value = self.send(attr)
|
194
|
+
if value.nil?
|
195
|
+
is_nullable = self.class.openapi_nullable.include?(attr)
|
196
|
+
next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
|
197
|
+
end
|
198
|
+
|
199
|
+
hash[param] = _to_hash(value)
|
200
|
+
end
|
201
|
+
hash
|
202
|
+
end
|
203
|
+
|
204
|
+
# Outputs non-array value in the form of hash
|
205
|
+
# For object, use to_hash. Otherwise, just return the value
|
206
|
+
# @param [Object] value Any valid value
|
207
|
+
# @return [Hash] Returns the value in the form of hash
|
208
|
+
def _to_hash(value)
|
209
|
+
if value.is_a?(Array)
|
210
|
+
value.compact.map { |v| _to_hash(v) }
|
211
|
+
elsif value.is_a?(Hash)
|
212
|
+
{}.tap do |hash|
|
213
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
214
|
+
end
|
215
|
+
elsif value.respond_to? :to_hash
|
216
|
+
value.to_hash
|
217
|
+
else
|
218
|
+
value
|
219
|
+
end
|
220
|
+
end
|
221
|
+
|
222
|
+
end
|
223
|
+
|
224
|
+
end
|
@@ -12,11 +12,15 @@ require 'time'
|
|
12
12
|
|
13
13
|
module SnapTrade
|
14
14
|
class Type
|
15
|
-
|
16
|
-
|
15
|
+
MARKET = "MARKET".freeze
|
16
|
+
LIMIT = "LIMIT".freeze
|
17
|
+
STOP_LOSS_MARKET = "STOP_LOSS_MARKET".freeze
|
18
|
+
STOP_LOSS_LIMIT = "STOP_LOSS_LIMIT".freeze
|
19
|
+
TAKE_PROFIT_MARKET = "TAKE_PROFIT_MARKET".freeze
|
20
|
+
TAKE_PROFIT_LIMIT = "TAKE_PROFIT_LIMIT".freeze
|
17
21
|
|
18
22
|
def self.all_vars
|
19
|
-
@all_vars ||= [
|
23
|
+
@all_vars ||= [MARKET, LIMIT, STOP_LOSS_MARKET, STOP_LOSS_LIMIT, TAKE_PROFIT_MARKET, TAKE_PROFIT_LIMIT].freeze
|
20
24
|
end
|
21
25
|
|
22
26
|
# Builds the enum from string
|
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'
|
@@ -43,10 +44,17 @@ require 'snaptrade/models/brokerage_authorization_disabled_confirmation'
|
|
43
44
|
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'
|
47
|
+
require 'snaptrade/models/brokerage_authorization_type_read_only_type'
|
46
48
|
require 'snaptrade/models/brokerage_type'
|
49
|
+
require 'snaptrade/models/child_brokerage_order_ids'
|
47
50
|
require 'snaptrade/models/connection_portal_version'
|
48
51
|
require 'snaptrade/models/connection_type'
|
49
52
|
require 'snaptrade/models/connections_session_events200_response_inner'
|
53
|
+
require 'snaptrade/models/crypto_spot_order_preview'
|
54
|
+
require 'snaptrade/models/crypto_spot_order_preview_estimated_fee'
|
55
|
+
require 'snaptrade/models/crypto_spot_order_request_body_time_in_force'
|
56
|
+
require 'snaptrade/models/crypto_spot_quote'
|
57
|
+
require 'snaptrade/models/cryptocurrency_pair'
|
50
58
|
require 'snaptrade/models/currency'
|
51
59
|
require 'snaptrade/models/delete_user_response'
|
52
60
|
require 'snaptrade/models/dividend_at_date'
|
@@ -61,10 +69,9 @@ require 'snaptrade/models/manual_trade'
|
|
61
69
|
require 'snaptrade/models/manual_trade_and_impact'
|
62
70
|
require 'snaptrade/models/manual_trade_balance'
|
63
71
|
require 'snaptrade/models/manual_trade_form'
|
72
|
+
require 'snaptrade/models/manual_trade_form_bracket'
|
64
73
|
require 'snaptrade/models/manual_trade_form_notional_value'
|
65
74
|
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
75
|
require 'snaptrade/models/manual_trade_impact'
|
69
76
|
require 'snaptrade/models/manual_trade_symbol'
|
70
77
|
require 'snaptrade/models/model400_failed_request_response'
|
@@ -94,7 +101,6 @@ require 'snaptrade/models/options_place_option_strategy_request'
|
|
94
101
|
require 'snaptrade/models/options_position'
|
95
102
|
require 'snaptrade/models/options_position_currency'
|
96
103
|
require 'snaptrade/models/options_symbol'
|
97
|
-
require 'snaptrade/models/order_class'
|
98
104
|
require 'snaptrade/models/order_type_strict'
|
99
105
|
require 'snaptrade/models/paginated_universal_activity'
|
100
106
|
require 'snaptrade/models/pagination_details'
|
@@ -131,6 +137,9 @@ require 'snaptrade/models/take_profit'
|
|
131
137
|
require 'snaptrade/models/time_in_force_strict'
|
132
138
|
require 'snaptrade/models/timeframe'
|
133
139
|
require 'snaptrade/models/trading_cancel_user_account_order_request'
|
140
|
+
require 'snaptrade/models/trading_crypto_spot_cancel_order_request'
|
141
|
+
require 'snaptrade/models/trading_crypto_spot_place_order_request'
|
142
|
+
require 'snaptrade/models/trading_crypto_spot_symbols200_response'
|
134
143
|
require 'snaptrade/models/transactions_status'
|
135
144
|
require 'snaptrade/models/type'
|
136
145
|
require 'snaptrade/models/us_exchange'
|
@@ -147,6 +156,7 @@ require 'snaptrade/api/account_information_api'
|
|
147
156
|
require 'snaptrade/api/api_status_api'
|
148
157
|
require 'snaptrade/api/authentication_api'
|
149
158
|
require 'snaptrade/api/connections_api'
|
159
|
+
require 'snaptrade/api/crypto_spot_trading_api'
|
150
160
|
require 'snaptrade/api/options_api'
|
151
161
|
require 'snaptrade/api/reference_data_api'
|
152
162
|
require 'snaptrade/api/trading_api'
|
@@ -220,6 +230,7 @@ module SnapTrade
|
|
220
230
|
attr_reader :api_status
|
221
231
|
attr_reader :authentication
|
222
232
|
attr_reader :connections
|
233
|
+
attr_reader :crypto_spot_trading
|
223
234
|
attr_reader :options
|
224
235
|
attr_reader :reference_data
|
225
236
|
attr_reader :trading
|
@@ -231,6 +242,7 @@ module SnapTrade
|
|
231
242
|
@api_status = SnapTrade::APIStatusApi.new(@api_client)
|
232
243
|
@authentication = SnapTrade::AuthenticationApi.new(@api_client)
|
233
244
|
@connections = SnapTrade::ConnectionsApi.new(@api_client)
|
245
|
+
@crypto_spot_trading = SnapTrade::CryptoSpotTradingApi.new(@api_client)
|
234
246
|
@options = SnapTrade::OptionsApi.new(@api_client)
|
235
247
|
@reference_data = SnapTrade::ReferenceDataApi.new(@api_client)
|
236
248
|
@trading = SnapTrade::TradingApi.new(@api_client)
|