snaptrade 2.0.86 → 2.0.88
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 +1 -1
- data/README.md +376 -304
- data/lib/snaptrade/api/trading_api.rb +831 -14
- data/lib/snaptrade/models/cryptocurrency_pair.rb +12 -2
- data/lib/snaptrade/models/{crypto_spot_quote.rb → cryptocurrency_pair_quote.rb} +3 -3
- 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/{crypto_spot_order_preview.rb → simple_order_preview.rb} +5 -5
- data/lib/snaptrade/models/{crypto_spot_order_preview_estimated_fee.rb → simple_order_preview_estimated_fee.rb} +3 -3
- data/lib/snaptrade/models/{crypto_spot_order_request_body_time_in_force.rb → simple_order_request_body_time_in_force.rb} +3 -3
- data/lib/snaptrade/models/{trading_crypto_spot_cancel_order_request.rb → trading_instrument.rb} +21 -16
- data/lib/snaptrade/models/trading_instrument_type.rb +38 -0
- data/lib/snaptrade/models/{trading_crypto_spot_place_order_request.rb → trading_place_simple_order_request.rb} +14 -14
- data/lib/snaptrade/models/{trading_crypto_spot_symbols200_response.rb → trading_search_cryptocurrency_pair_instruments200_response.rb} +3 -3
- data/lib/snaptrade/version.rb +1 -1
- data/lib/snaptrade.rb +9 -10
- data/spec/api/trading_api_spec.rb +93 -0
- data/spec/models/{crypto_spot_quote_spec.rb → cryptocurrency_pair_quote_spec.rb} +6 -6
- data/spec/models/cryptocurrency_pair_spec.rb +6 -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/{crypto_spot_order_preview_estimated_fee_spec.rb → simple_order_preview_estimated_fee_spec.rb} +6 -6
- data/spec/models/{crypto_spot_order_preview_spec.rb → simple_order_preview_spec.rb} +6 -6
- data/spec/models/simple_order_request_body_time_in_force_spec.rb +23 -0
- data/spec/models/trading_instrument_spec.rb +35 -0
- data/spec/models/trading_instrument_type_spec.rb +23 -0
- data/spec/models/{trading_crypto_spot_place_order_request_spec.rb → trading_place_simple_order_request_spec.rb} +7 -7
- data/spec/models/trading_search_cryptocurrency_pair_instruments200_response_spec.rb +29 -0
- metadata +29 -26
- data/lib/snaptrade/api/crypto_spot_trading_api.rb +0 -698
- data/spec/api/crypto_spot_trading_api_spec.rb +0 -107
- data/spec/models/crypto_spot_order_request_body_time_in_force_spec.rb +0 -23
- data/spec/models/trading_crypto_spot_cancel_order_request_spec.rb +0 -29
- data/spec/models/trading_crypto_spot_symbols200_response_spec.rb +0 -29
@@ -1,107 +0,0 @@
|
|
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 [OrderUpdatedResponse]
|
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 [OrderUpdatedResponse]
|
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
|
-
# Preview a crypto spot order
|
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 cryptocurrency spot market quote
|
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
|
@@ -1,23 +0,0 @@
|
|
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
|
@@ -1,29 +0,0 @@
|
|
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
|
@@ -1,29 +0,0 @@
|
|
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
|