snaptrade 2.0.85 → 2.0.87
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 +89 -12
- data/lib/snaptrade/api/trading_api.rb +178 -14
- data/lib/snaptrade/models/account_order_record.rb +19 -1
- data/lib/snaptrade/models/account_order_record_quote_currency.rb +245 -0
- data/lib/snaptrade/models/account_order_record_quote_universal_symbol.rb +346 -0
- data/lib/snaptrade/models/manual_trade_form_bracket.rb +13 -19
- data/lib/snaptrade/models/manual_trade_replace_form.rb +285 -0
- data/lib/snaptrade/models/trading_instrument.rb +227 -0
- data/lib/snaptrade/models/trading_instrument_type.rb +38 -0
- data/lib/snaptrade/version.rb +1 -1
- data/lib/snaptrade.rb +5 -0
- data/spec/api/trading_api_spec.rb +17 -0
- data/spec/models/account_order_record_quote_currency_spec.rb +41 -0
- data/spec/models/account_order_record_quote_universal_symbol_spec.rb +83 -0
- data/spec/models/account_order_record_spec.rb +12 -0
- data/spec/models/manual_trade_form_bracket_spec.rb +3 -3
- data/spec/models/manual_trade_replace_form_spec.rb +59 -0
- data/spec/models/trading_instrument_spec.rb +35 -0
- data/spec/models/trading_instrument_type_spec.rb +23 -0
- metadata +17 -2
@@ -0,0 +1,83 @@
|
|
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::AccountOrderRecordQuoteUniversalSymbol
|
15
|
+
describe SnapTrade::AccountOrderRecordQuoteUniversalSymbol do
|
16
|
+
let(:instance) { SnapTrade::AccountOrderRecordQuoteUniversalSymbol.new }
|
17
|
+
|
18
|
+
describe 'test an instance of AccountOrderRecordQuoteUniversalSymbol' do
|
19
|
+
it 'should create an instance of AccountOrderRecordQuoteUniversalSymbol' do
|
20
|
+
expect(instance).to be_instance_of(SnapTrade::AccountOrderRecordQuoteUniversalSymbol)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
describe 'test attribute "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 "symbol"' 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
|
+
describe 'test attribute "raw_symbol"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
describe 'test attribute "description"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
describe 'test attribute "currency"' do
|
48
|
+
it 'should work' do
|
49
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
describe 'test attribute "exchange"' do
|
54
|
+
it 'should work' do
|
55
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
describe 'test attribute "type"' do
|
60
|
+
it 'should work' do
|
61
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
describe 'test attribute "figi_code"' do
|
66
|
+
it 'should work' do
|
67
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
71
|
+
describe 'test attribute "figi_instrument"' do
|
72
|
+
it 'should work' do
|
73
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
74
|
+
end
|
75
|
+
end
|
76
|
+
|
77
|
+
describe 'test attribute "currencies"' do
|
78
|
+
it 'should work' do
|
79
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
80
|
+
end
|
81
|
+
end
|
82
|
+
|
83
|
+
end
|
@@ -44,6 +44,18 @@ describe SnapTrade::AccountOrderRecord do
|
|
44
44
|
end
|
45
45
|
end
|
46
46
|
|
47
|
+
describe 'test attribute "quote_universal_symbol"' do
|
48
|
+
it 'should work' do
|
49
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
describe 'test attribute "quote_currency"' do
|
54
|
+
it 'should work' do
|
55
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
47
59
|
describe 'test attribute "action"' do
|
48
60
|
it 'should work' do
|
49
61
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -20,19 +20,19 @@ describe SnapTrade::ManualTradeFormBracket do
|
|
20
20
|
expect(instance).to be_instance_of(SnapTrade::ManualTradeFormBracket)
|
21
21
|
end
|
22
22
|
end
|
23
|
-
describe 'test attribute "
|
23
|
+
describe 'test attribute "action"' 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 "symbol"' 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
|
33
33
|
end
|
34
34
|
|
35
|
-
describe 'test attribute "
|
35
|
+
describe 'test attribute "instrument"' do
|
36
36
|
it 'should work' do
|
37
37
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
38
|
end
|
@@ -0,0 +1,59 @@
|
|
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::ManualTradeReplaceForm
|
15
|
+
describe SnapTrade::ManualTradeReplaceForm do
|
16
|
+
let(:instance) { SnapTrade::ManualTradeReplaceForm.new }
|
17
|
+
|
18
|
+
describe 'test an instance of ManualTradeReplaceForm' do
|
19
|
+
it 'should create an instance of ManualTradeReplaceForm' do
|
20
|
+
expect(instance).to be_instance_of(SnapTrade::ManualTradeReplaceForm)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
describe 'test attribute "action"' 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 "order_type"' 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
|
+
describe 'test attribute "time_in_force"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
describe 'test attribute "price"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
describe 'test attribute "stop"' do
|
48
|
+
it 'should work' do
|
49
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
describe 'test attribute "units"' do
|
54
|
+
it 'should work' do
|
55
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
end
|
@@ -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::TradingInstrument
|
15
|
+
describe SnapTrade::TradingInstrument do
|
16
|
+
let(:instance) { SnapTrade::TradingInstrument.new }
|
17
|
+
|
18
|
+
describe 'test an instance of TradingInstrument' do
|
19
|
+
it 'should create an instance of TradingInstrument' do
|
20
|
+
expect(instance).to be_instance_of(SnapTrade::TradingInstrument)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
describe 'test attribute "symbol"' 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 "type"' 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
|
@@ -0,0 +1,23 @@
|
|
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::TradingInstrumentType
|
15
|
+
describe SnapTrade::TradingInstrumentType do
|
16
|
+
let(:instance) { SnapTrade::TradingInstrumentType.new }
|
17
|
+
|
18
|
+
describe 'test an instance of TradingInstrumentType' do
|
19
|
+
it 'should create an instance of TradingInstrumentType' do
|
20
|
+
expect(instance).to be_instance_of(SnapTrade::TradingInstrumentType)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: snaptrade
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.87
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- SnapTrade
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-03-
|
11
|
+
date: 2025-03-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -104,6 +104,8 @@ files:
|
|
104
104
|
- lib/snaptrade/models/account_order_record.rb
|
105
105
|
- lib/snaptrade/models/account_order_record_child_brokerage_order_ids.rb
|
106
106
|
- lib/snaptrade/models/account_order_record_option_symbol.rb
|
107
|
+
- lib/snaptrade/models/account_order_record_quote_currency.rb
|
108
|
+
- lib/snaptrade/models/account_order_record_quote_universal_symbol.rb
|
107
109
|
- lib/snaptrade/models/account_order_record_status.rb
|
108
110
|
- lib/snaptrade/models/account_order_record_universal_symbol.rb
|
109
111
|
- lib/snaptrade/models/account_simple.rb
|
@@ -153,6 +155,7 @@ files:
|
|
153
155
|
- lib/snaptrade/models/manual_trade_form_notional_value.rb
|
154
156
|
- lib/snaptrade/models/manual_trade_form_with_options.rb
|
155
157
|
- lib/snaptrade/models/manual_trade_impact.rb
|
158
|
+
- lib/snaptrade/models/manual_trade_replace_form.rb
|
156
159
|
- lib/snaptrade/models/manual_trade_symbol.rb
|
157
160
|
- lib/snaptrade/models/model400_failed_request_response.rb
|
158
161
|
- lib/snaptrade/models/model401_failed_request_response.rb
|
@@ -221,6 +224,8 @@ files:
|
|
221
224
|
- lib/snaptrade/models/trading_crypto_spot_cancel_order_request.rb
|
222
225
|
- lib/snaptrade/models/trading_crypto_spot_place_order_request.rb
|
223
226
|
- lib/snaptrade/models/trading_crypto_spot_symbols200_response.rb
|
227
|
+
- lib/snaptrade/models/trading_instrument.rb
|
228
|
+
- lib/snaptrade/models/trading_instrument_type.rb
|
224
229
|
- lib/snaptrade/models/transactions_status.rb
|
225
230
|
- lib/snaptrade/models/type.rb
|
226
231
|
- lib/snaptrade/models/underlying_symbol.rb
|
@@ -251,6 +256,8 @@ files:
|
|
251
256
|
- spec/models/account_holdings_spec.rb
|
252
257
|
- spec/models/account_order_record_child_brokerage_order_ids_spec.rb
|
253
258
|
- spec/models/account_order_record_option_symbol_spec.rb
|
259
|
+
- spec/models/account_order_record_quote_currency_spec.rb
|
260
|
+
- spec/models/account_order_record_quote_universal_symbol_spec.rb
|
254
261
|
- spec/models/account_order_record_spec.rb
|
255
262
|
- spec/models/account_order_record_status_spec.rb
|
256
263
|
- spec/models/account_order_record_universal_symbol_spec.rb
|
@@ -301,6 +308,7 @@ files:
|
|
301
308
|
- spec/models/manual_trade_form_spec.rb
|
302
309
|
- spec/models/manual_trade_form_with_options_spec.rb
|
303
310
|
- spec/models/manual_trade_impact_spec.rb
|
311
|
+
- spec/models/manual_trade_replace_form_spec.rb
|
304
312
|
- spec/models/manual_trade_spec.rb
|
305
313
|
- spec/models/manual_trade_symbol_spec.rb
|
306
314
|
- spec/models/model400_failed_request_response_spec.rb
|
@@ -370,6 +378,8 @@ files:
|
|
370
378
|
- spec/models/trading_crypto_spot_cancel_order_request_spec.rb
|
371
379
|
- spec/models/trading_crypto_spot_place_order_request_spec.rb
|
372
380
|
- spec/models/trading_crypto_spot_symbols200_response_spec.rb
|
381
|
+
- spec/models/trading_instrument_spec.rb
|
382
|
+
- spec/models/trading_instrument_type_spec.rb
|
373
383
|
- spec/models/transactions_status_spec.rb
|
374
384
|
- spec/models/type_spec.rb
|
375
385
|
- spec/models/underlying_symbol_exchange_spec.rb
|
@@ -473,6 +483,7 @@ test_files:
|
|
473
483
|
- spec/models/brokerage_type_spec.rb
|
474
484
|
- spec/models/rate_of_return_response_spec.rb
|
475
485
|
- spec/models/net_contributions_spec.rb
|
486
|
+
- spec/models/trading_instrument_spec.rb
|
476
487
|
- spec/models/notional_value_spec.rb
|
477
488
|
- spec/models/stop_loss_spec.rb
|
478
489
|
- spec/models/model404_failed_request_response_spec.rb
|
@@ -493,6 +504,7 @@ test_files:
|
|
493
504
|
- spec/models/monthly_dividends_spec.rb
|
494
505
|
- spec/models/trading_crypto_spot_place_order_request_spec.rb
|
495
506
|
- spec/models/snap_trade_register_user_request_body_spec.rb
|
507
|
+
- spec/models/account_order_record_quote_currency_spec.rb
|
496
508
|
- spec/models/crypto_spot_order_preview_spec.rb
|
497
509
|
- spec/models/status_spec.rb
|
498
510
|
- spec/models/account_sync_status_spec.rb
|
@@ -522,6 +534,7 @@ test_files:
|
|
522
534
|
- spec/models/currency_spec.rb
|
523
535
|
- spec/models/symbol_query_spec.rb
|
524
536
|
- spec/models/model402_brokerage_auth_already_disabled_exception_spec.rb
|
537
|
+
- spec/models/manual_trade_replace_form_spec.rb
|
525
538
|
- spec/models/model402_brokerage_auth_disabled_response_spec.rb
|
526
539
|
- spec/models/trading_cancel_user_account_order_request_spec.rb
|
527
540
|
- spec/models/underlying_symbol_spec.rb
|
@@ -534,6 +547,7 @@ test_files:
|
|
534
547
|
- spec/models/position_spec.rb
|
535
548
|
- spec/models/holdings_status_spec.rb
|
536
549
|
- spec/models/recent_orders_response_spec.rb
|
550
|
+
- spec/models/trading_instrument_type_spec.rb
|
537
551
|
- spec/models/crypto_spot_order_preview_estimated_fee_spec.rb
|
538
552
|
- spec/models/encrypted_response_encrypted_message_data_spec.rb
|
539
553
|
- spec/models/manual_trade_form_notional_value_spec.rb
|
@@ -553,5 +567,6 @@ test_files:
|
|
553
567
|
- spec/models/brokerage_authorization_type_read_only_spec.rb
|
554
568
|
- spec/models/option_brokerage_symbol_spec.rb
|
555
569
|
- spec/models/crypto_spot_quote_spec.rb
|
570
|
+
- spec/models/account_order_record_quote_universal_symbol_spec.rb
|
556
571
|
- spec/models/manual_trade_symbol_spec.rb
|
557
572
|
- spec/spec_helper.rb
|