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,107 @@
|
|
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
|
+
|
13
|
+
# Unit tests for SnapTrade::CryptoSpotTradingApi
|
14
|
+
describe 'CryptoSpotTradingApi' do
|
15
|
+
before do
|
16
|
+
# run before each test
|
17
|
+
@api_instance = SnapTrade::CryptoSpotTradingApi.new
|
18
|
+
end
|
19
|
+
|
20
|
+
after do
|
21
|
+
# run after each test
|
22
|
+
end
|
23
|
+
|
24
|
+
describe 'test an instance of CryptoSpotTradingApi' do
|
25
|
+
it 'should create an instance of CryptoSpotTradingApi' do
|
26
|
+
expect(@api_instance).to be_instance_of(SnapTrade::CryptoSpotTradingApi)
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
# unit tests for crypto_spot_cancel_order
|
31
|
+
# Cancel a crypto spot order.
|
32
|
+
# Cancels a cryptocurrency spot order in the specified account.
|
33
|
+
# @param user_id
|
34
|
+
# @param user_secret
|
35
|
+
# @param account_id
|
36
|
+
# @param trading_crypto_spot_cancel_order_request
|
37
|
+
# @param [Hash] opts the optional parameters
|
38
|
+
# @return [AccountOrderRecord]
|
39
|
+
describe 'crypto_spot_cancel_order test' do
|
40
|
+
it 'should work' do
|
41
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
# unit tests for crypto_spot_place_order
|
46
|
+
# Place a spot order on a crypto exchange
|
47
|
+
# Places a spot cryptocurrency order in the specified account. This endpoint does not compute the impact to the account balance from the order before submitting the order to the exchange.
|
48
|
+
# @param user_id
|
49
|
+
# @param user_secret
|
50
|
+
# @param account_id
|
51
|
+
# @param trading_crypto_spot_place_order_request
|
52
|
+
# @param [Hash] opts the optional parameters
|
53
|
+
# @return [AccountOrderRecord]
|
54
|
+
describe 'crypto_spot_place_order test' do
|
55
|
+
it 'should work' do
|
56
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
57
|
+
end
|
58
|
+
end
|
59
|
+
|
60
|
+
# unit tests for crypto_spot_preview_order
|
61
|
+
# Place a spot order on a crypto exchange
|
62
|
+
# Previews a cryptocurrency spot order using the specified account.
|
63
|
+
# @param user_id
|
64
|
+
# @param user_secret
|
65
|
+
# @param account_id
|
66
|
+
# @param trading_crypto_spot_place_order_request
|
67
|
+
# @param [Hash] opts the optional parameters
|
68
|
+
# @return [CryptoSpotOrderPreview]
|
69
|
+
describe 'crypto_spot_preview_order test' do
|
70
|
+
it 'should work' do
|
71
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
72
|
+
end
|
73
|
+
end
|
74
|
+
|
75
|
+
# unit tests for crypto_spot_quote
|
76
|
+
# Get a quote for a cyrptocurrency market
|
77
|
+
# Gets a quote for the specified account.
|
78
|
+
# @param user_id
|
79
|
+
# @param user_secret
|
80
|
+
# @param account_id
|
81
|
+
# @param base
|
82
|
+
# @param quote
|
83
|
+
# @param [Hash] opts the optional parameters
|
84
|
+
# @return [CryptoSpotQuote]
|
85
|
+
describe 'crypto_spot_quote test' do
|
86
|
+
it 'should work' do
|
87
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
88
|
+
end
|
89
|
+
end
|
90
|
+
|
91
|
+
# unit tests for crypto_spot_symbols
|
92
|
+
# Search crypto spot symbols
|
93
|
+
# Searches cryptocurrency spot symbols accessible to the specified account.
|
94
|
+
# @param user_id
|
95
|
+
# @param user_secret
|
96
|
+
# @param account_id
|
97
|
+
# @param [Hash] opts the optional parameters
|
98
|
+
# @option opts [String] :base
|
99
|
+
# @option opts [String] :quote
|
100
|
+
# @return [TradingCryptoSpotSymbols200Response]
|
101
|
+
describe 'crypto_spot_symbols test' do
|
102
|
+
it 'should work' do
|
103
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
104
|
+
end
|
105
|
+
end
|
106
|
+
|
107
|
+
end
|
@@ -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
|
@@ -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::BrokerageAuthorizationTypeReadOnlyType
|
15
|
+
describe SnapTrade::BrokerageAuthorizationTypeReadOnlyType do
|
16
|
+
let(:instance) { SnapTrade::BrokerageAuthorizationTypeReadOnlyType.new }
|
17
|
+
|
18
|
+
describe 'test an instance of BrokerageAuthorizationTypeReadOnlyType' do
|
19
|
+
it 'should create an instance of BrokerageAuthorizationTypeReadOnlyType' do
|
20
|
+
expect(instance).to be_instance_of(SnapTrade::BrokerageAuthorizationTypeReadOnlyType)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
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::ChildBrokerageOrderIDs
|
15
|
+
describe SnapTrade::ChildBrokerageOrderIDs do
|
16
|
+
let(:instance) { SnapTrade::ChildBrokerageOrderIDs.new }
|
17
|
+
|
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
|
+
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
|
@@ -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::CryptoSpotOrderPreviewEstimatedFee
|
15
|
+
describe SnapTrade::CryptoSpotOrderPreviewEstimatedFee do
|
16
|
+
let(:instance) { SnapTrade::CryptoSpotOrderPreviewEstimatedFee.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 CryptoSpotOrderPreviewEstimatedFee' do
|
19
|
+
it 'should create an instance of CryptoSpotOrderPreviewEstimatedFee' do
|
20
|
+
expect(instance).to be_instance_of(SnapTrade::CryptoSpotOrderPreviewEstimatedFee)
|
21
21
|
end
|
22
22
|
end
|
23
|
-
describe 'test attribute "
|
23
|
+
describe 'test attribute "currency"' 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 "amount"' 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
|
@@ -0,0 +1,29 @@
|
|
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::CryptoSpotOrderPreview
|
15
|
+
describe SnapTrade::CryptoSpotOrderPreview do
|
16
|
+
let(:instance) { SnapTrade::CryptoSpotOrderPreview.new }
|
17
|
+
|
18
|
+
describe 'test an instance of CryptoSpotOrderPreview' do
|
19
|
+
it 'should create an instance of CryptoSpotOrderPreview' do
|
20
|
+
expect(instance).to be_instance_of(SnapTrade::CryptoSpotOrderPreview)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
describe 'test attribute "estimated_fee"' 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
|
+
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::CryptoSpotOrderRequestBodyTimeInForce
|
15
|
+
describe SnapTrade::CryptoSpotOrderRequestBodyTimeInForce do
|
16
|
+
let(:instance) { SnapTrade::CryptoSpotOrderRequestBodyTimeInForce.new }
|
17
|
+
|
18
|
+
describe 'test an instance of CryptoSpotOrderRequestBodyTimeInForce' do
|
19
|
+
it 'should create an instance of CryptoSpotOrderRequestBodyTimeInForce' do
|
20
|
+
expect(instance).to be_instance_of(SnapTrade::CryptoSpotOrderRequestBodyTimeInForce)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
@@ -0,0 +1,47 @@
|
|
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::CryptoSpotQuote
|
15
|
+
describe SnapTrade::CryptoSpotQuote do
|
16
|
+
let(:instance) { SnapTrade::CryptoSpotQuote.new }
|
17
|
+
|
18
|
+
describe 'test an instance of CryptoSpotQuote' do
|
19
|
+
it 'should create an instance of CryptoSpotQuote' do
|
20
|
+
expect(instance).to be_instance_of(SnapTrade::CryptoSpotQuote)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
describe 'test attribute "bid"' 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 "ask"' 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 "mid"' 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 "timestamp"' 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
|
+
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::CryptocurrencyPair
|
15
|
+
describe SnapTrade::CryptocurrencyPair do
|
16
|
+
let(:instance) { SnapTrade::CryptocurrencyPair.new }
|
17
|
+
|
18
|
+
describe 'test an instance of CryptocurrencyPair' do
|
19
|
+
it 'should create an instance of CryptocurrencyPair' do
|
20
|
+
expect(instance).to be_instance_of(SnapTrade::CryptocurrencyPair)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
describe 'test attribute "base"' 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 "quote"' 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,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::ManualTradeFormBracket
|
15
|
+
describe SnapTrade::ManualTradeFormBracket do
|
16
|
+
let(:instance) { SnapTrade::ManualTradeFormBracket.new }
|
17
|
+
|
18
|
+
describe 'test an instance of ManualTradeFormBracket' do
|
19
|
+
it 'should create an instance of ManualTradeFormBracket' do
|
20
|
+
expect(instance).to be_instance_of(SnapTrade::ManualTradeFormBracket)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
describe 'test attribute "account_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 "action"' 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 "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 "order_type"' 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 "time_in_force"' 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 "price"' 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 "stop"' 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 "units"' 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 "stop_loss"' 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 "take_profit"' 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
|
@@ -80,22 +80,4 @@ describe SnapTrade::ManualTradeFormWithOptions do
|
|
80
80
|
end
|
81
81
|
end
|
82
82
|
|
83
|
-
describe 'test attribute "order_class"' 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
|
-
|
89
|
-
describe 'test attribute "stop_loss"' do
|
90
|
-
it 'should work' do
|
91
|
-
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
92
|
-
end
|
93
|
-
end
|
94
|
-
|
95
|
-
describe 'test attribute "take_profit"' do
|
96
|
-
it 'should work' do
|
97
|
-
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
98
|
-
end
|
99
|
-
end
|
100
|
-
|
101
83
|
end
|
@@ -0,0 +1,29 @@
|
|
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::TradingCryptoSpotCancelOrderRequest
|
15
|
+
describe SnapTrade::TradingCryptoSpotCancelOrderRequest do
|
16
|
+
let(:instance) { SnapTrade::TradingCryptoSpotCancelOrderRequest.new }
|
17
|
+
|
18
|
+
describe 'test an instance of TradingCryptoSpotCancelOrderRequest' do
|
19
|
+
it 'should create an instance of TradingCryptoSpotCancelOrderRequest' do
|
20
|
+
expect(instance).to be_instance_of(SnapTrade::TradingCryptoSpotCancelOrderRequest)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
describe 'test attribute "brokerage_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
|
+
end
|
@@ -0,0 +1,77 @@
|
|
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::TradingCryptoSpotPlaceOrderRequest
|
15
|
+
describe SnapTrade::TradingCryptoSpotPlaceOrderRequest do
|
16
|
+
let(:instance) { SnapTrade::TradingCryptoSpotPlaceOrderRequest.new }
|
17
|
+
|
18
|
+
describe 'test an instance of TradingCryptoSpotPlaceOrderRequest' do
|
19
|
+
it 'should create an instance of TradingCryptoSpotPlaceOrderRequest' do
|
20
|
+
expect(instance).to be_instance_of(SnapTrade::TradingCryptoSpotPlaceOrderRequest)
|
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 "side"' 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 "type"' 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 "time_in_force"' 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 "amount"' 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 "limit_price"' 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 "stop_price"' 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 "post_only"' 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 "expiration_date"' 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
|
+
end
|
@@ -0,0 +1,29 @@
|
|
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::TradingCryptoSpotSymbols200Response
|
15
|
+
describe SnapTrade::TradingCryptoSpotSymbols200Response do
|
16
|
+
let(:instance) { SnapTrade::TradingCryptoSpotSymbols200Response.new }
|
17
|
+
|
18
|
+
describe 'test an instance of TradingCryptoSpotSymbols200Response' do
|
19
|
+
it 'should create an instance of TradingCryptoSpotSymbols200Response' do
|
20
|
+
expect(instance).to be_instance_of(SnapTrade::TradingCryptoSpotSymbols200Response)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
describe 'test attribute "items"' 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
|
+
end
|