snaptrade 3.0.20 → 3.0.21
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/README.md +3 -3
- data/lib/snaptrade/api/reference_data_api.rb +4 -4
- data/lib/snaptrade/models/account_order_record_quote_universal_symbol.rb +1 -1
- data/lib/snaptrade/models/account_order_record_universal_symbol.rb +1 -1
- data/lib/snaptrade/models/account_universal_activity_currency_universal_symbol.rb +1 -1
- data/lib/snaptrade/models/account_universal_activity_symbol.rb +1 -1
- data/lib/snaptrade/models/symbol.rb +1 -1
- data/lib/snaptrade/models/universal_symbol.rb +1 -1
- data/lib/snaptrade/version.rb +1 -1
- data/spec/api/reference_data_api_spec.rb +1 -1
- metadata +222 -222
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 936cdb3999900c28fb41c81c9c4c9d16e4bb490e2ac530616aca9f80e3cf4147
|
|
4
|
+
data.tar.gz: d9f11553550a3229eb0d2deded2718000bbf1a145ea828920ce414ebc4e4d7c6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 66c0bc306aa3131e29c1c14d25c94afd8d04558f230525c1c557bad06a4f834c2643139ac773fed4e0e3af9b3d123e99d215379d17202b775aa1b3b7edd64fb6
|
|
7
|
+
data.tar.gz: 211caf483706c12c938c6ba348c572b0b9ccdf9d16537007ba8dd86a23dbb018658b4446580a9396871134096a58f37485d428ae49ec05810c42d77c983889ea
|
data/README.md
CHANGED
|
@@ -63,7 +63,7 @@ backoff with jitter rather than from the headers.
|
|
|
63
63
|
See https://docs.snaptrade.com/docs/ratelimiting.
|
|
64
64
|
|
|
65
65
|
|
|
66
|
-
[](https://rubygems.org/gems/snaptrade/versions/3.0.21)
|
|
67
67
|
[](https://snaptrade.com/)
|
|
68
68
|
|
|
69
69
|
</div>
|
|
@@ -139,7 +139,7 @@ See https://docs.snaptrade.com/docs/ratelimiting.
|
|
|
139
139
|
Add to Gemfile:
|
|
140
140
|
|
|
141
141
|
```ruby
|
|
142
|
-
gem 'snaptrade', '~> 3.0.
|
|
142
|
+
gem 'snaptrade', '~> 3.0.21'
|
|
143
143
|
```
|
|
144
144
|
|
|
145
145
|
## Getting Started<a id="getting-started"></a>
|
|
@@ -1607,7 +1607,7 @@ The search query for symbols.
|
|
|
1607
1607
|
|
|
1608
1608
|
### `snaptrade.reference_data.get_symbols_by_ticker`<a id="snaptradereference_dataget_symbols_by_ticker"></a>
|
|
1609
1609
|
|
|
1610
|
-
Returns the Universal Symbol object specified by the ticker or the Universal Symbol ID. When a ticker is specified, the first matching result is returned. We largely follow the [Yahoo Finance ticker format](https://help.yahoo.com/kb/SLN2310.html)(click on "Yahoo Finance Market Coverage and Data Delays"). For example, for securities traded on the Toronto Stock Exchange, the symbol has a '.TO' suffix. For securities traded on NASDAQ or NYSE, the symbol does not have a suffix. Please use the ticker with the proper suffix for the best results.
|
|
1610
|
+
Returns the Universal Symbol object specified by the ticker or the Universal Symbol ID. When a ticker is specified, the first matching result is returned. We largely follow the [Yahoo Finance ticker format](https://help.yahoo.com/kb/SLN2310.html)(click on "Yahoo Finance Market Coverage and Data Delays"). For example, for securities traded on the Toronto Stock Exchange, the symbol has a '.TO' suffix. For securities traded on NASDAQ or NYSE, the symbol does not have a suffix. Share classes and preferred series use SnapTrade's canonical dotted form: use `HBND.U.TO` (not Yahoo's `HBND-U.TO`), `FTN.PR.A.TO` (not `FTN-PA.TO`), and `ECF.PRA` (not `ECF-P-A`). Please use the ticker with the proper suffix and canonical share-class notation for the best results.
|
|
1611
1611
|
|
|
1612
1612
|
|
|
1613
1613
|
#### 🛠️ Usage<a id="🛠️-usage"></a>
|
|
@@ -267,7 +267,7 @@ module SnapTrade
|
|
|
267
267
|
|
|
268
268
|
# Get symbol detail
|
|
269
269
|
#
|
|
270
|
-
# Returns the Universal Symbol object specified by the ticker or the Universal Symbol ID. When a ticker is specified, the first matching result is returned. We largely follow the [Yahoo Finance ticker format](https://help.yahoo.com/kb/SLN2310.html)(click on "Yahoo Finance Market Coverage and Data Delays"). For example, for securities traded on the Toronto Stock Exchange, the symbol has a '.TO' suffix. For securities traded on NASDAQ or NYSE, the symbol does not have a suffix. Please use the ticker with the proper suffix for the best results.
|
|
270
|
+
# Returns the Universal Symbol object specified by the ticker or the Universal Symbol ID. When a ticker is specified, the first matching result is returned. We largely follow the [Yahoo Finance ticker format](https://help.yahoo.com/kb/SLN2310.html)(click on "Yahoo Finance Market Coverage and Data Delays"). For example, for securities traded on the Toronto Stock Exchange, the symbol has a '.TO' suffix. For securities traded on NASDAQ or NYSE, the symbol does not have a suffix. Share classes and preferred series use SnapTrade's canonical dotted form: use `HBND.U.TO` (not Yahoo's `HBND-U.TO`), `FTN.PR.A.TO` (not `FTN-PA.TO`), and `ECF.PRA` (not `ECF-P-A`). Please use the ticker with the proper suffix and canonical share-class notation for the best results.
|
|
271
271
|
#
|
|
272
272
|
# @param query [String] The ticker or Universal Symbol ID to look up the symbol with.
|
|
273
273
|
# @param [Hash] extra additional parameters to pass along through :header_params, :query_params, or parameter name
|
|
@@ -278,7 +278,7 @@ module SnapTrade
|
|
|
278
278
|
|
|
279
279
|
# Get symbol detail
|
|
280
280
|
#
|
|
281
|
-
# Returns the Universal Symbol object specified by the ticker or the Universal Symbol ID. When a ticker is specified, the first matching result is returned. We largely follow the [Yahoo Finance ticker format](https://help.yahoo.com/kb/SLN2310.html)(click on "Yahoo Finance Market Coverage and Data Delays"). For example, for securities traded on the Toronto Stock Exchange, the symbol has a '.TO' suffix. For securities traded on NASDAQ or NYSE, the symbol does not have a suffix. Please use the ticker with the proper suffix for the best results.
|
|
281
|
+
# Returns the Universal Symbol object specified by the ticker or the Universal Symbol ID. When a ticker is specified, the first matching result is returned. We largely follow the [Yahoo Finance ticker format](https://help.yahoo.com/kb/SLN2310.html)(click on "Yahoo Finance Market Coverage and Data Delays"). For example, for securities traded on the Toronto Stock Exchange, the symbol has a '.TO' suffix. For securities traded on NASDAQ or NYSE, the symbol does not have a suffix. Share classes and preferred series use SnapTrade's canonical dotted form: use `HBND.U.TO` (not Yahoo's `HBND-U.TO`), `FTN.PR.A.TO` (not `FTN-PA.TO`), and `ECF.PRA` (not `ECF-P-A`). Please use the ticker with the proper suffix and canonical share-class notation for the best results.
|
|
282
282
|
#
|
|
283
283
|
# @param query [String] The ticker or Universal Symbol ID to look up the symbol with.
|
|
284
284
|
# @param [Hash] extra additional parameters to pass along through :header_params, :query_params, or parameter name
|
|
@@ -287,7 +287,7 @@ module SnapTrade
|
|
|
287
287
|
end
|
|
288
288
|
|
|
289
289
|
# Get symbol detail
|
|
290
|
-
# Returns the Universal Symbol object specified by the ticker or the Universal Symbol ID. When a ticker is specified, the first matching result is returned. We largely follow the [Yahoo Finance ticker format](https://help.yahoo.com/kb/SLN2310.html)(click on \"Yahoo Finance Market Coverage and Data Delays\"). For example, for securities traded on the Toronto Stock Exchange, the symbol has a '.TO' suffix. For securities traded on NASDAQ or NYSE, the symbol does not have a suffix. Please use the ticker with the proper suffix for the best results.
|
|
290
|
+
# Returns the Universal Symbol object specified by the ticker or the Universal Symbol ID. When a ticker is specified, the first matching result is returned. We largely follow the [Yahoo Finance ticker format](https://help.yahoo.com/kb/SLN2310.html)(click on \"Yahoo Finance Market Coverage and Data Delays\"). For example, for securities traded on the Toronto Stock Exchange, the symbol has a '.TO' suffix. For securities traded on NASDAQ or NYSE, the symbol does not have a suffix. Share classes and preferred series use SnapTrade's canonical dotted form: use `HBND.U.TO` (not Yahoo's `HBND-U.TO`), `FTN.PR.A.TO` (not `FTN-PA.TO`), and `ECF.PRA` (not `ECF-P-A`). Please use the ticker with the proper suffix and canonical share-class notation for the best results.
|
|
291
291
|
# @param query [String] The ticker or Universal Symbol ID to look up the symbol with.
|
|
292
292
|
# @param [Hash] opts the optional parameters
|
|
293
293
|
# @return [UniversalSymbol]
|
|
@@ -297,7 +297,7 @@ module SnapTrade
|
|
|
297
297
|
end
|
|
298
298
|
|
|
299
299
|
# Get symbol detail
|
|
300
|
-
# Returns the Universal Symbol object specified by the ticker or the Universal Symbol ID. When a ticker is specified, the first matching result is returned. We largely follow the [Yahoo Finance ticker format](https://help.yahoo.com/kb/SLN2310.html)(click on \"Yahoo Finance Market Coverage and Data Delays\"). For example, for securities traded on the Toronto Stock Exchange, the symbol has a '.TO' suffix. For securities traded on NASDAQ or NYSE, the symbol does not have a suffix. Please use the ticker with the proper suffix for the best results.
|
|
300
|
+
# Returns the Universal Symbol object specified by the ticker or the Universal Symbol ID. When a ticker is specified, the first matching result is returned. We largely follow the [Yahoo Finance ticker format](https://help.yahoo.com/kb/SLN2310.html)(click on \"Yahoo Finance Market Coverage and Data Delays\"). For example, for securities traded on the Toronto Stock Exchange, the symbol has a '.TO' suffix. For securities traded on NASDAQ or NYSE, the symbol does not have a suffix. Share classes and preferred series use SnapTrade's canonical dotted form: use `HBND.U.TO` (not Yahoo's `HBND-U.TO`), `FTN.PR.A.TO` (not `FTN-PA.TO`), and `ECF.PRA` (not `ECF-P-A`). Please use the ticker with the proper suffix and canonical share-class notation for the best results.
|
|
301
301
|
# @param query [String] The ticker or Universal Symbol ID to look up the symbol with.
|
|
302
302
|
# @param [Hash] opts the optional parameters
|
|
303
303
|
# @return [Array<(UniversalSymbol, Integer, Hash)>] UniversalSymbol data, response status code and response headers
|
|
@@ -16,7 +16,7 @@ module SnapTrade
|
|
|
16
16
|
# Unique identifier for the symbol within SnapTrade. This is the ID used to reference the symbol in SnapTrade API calls.
|
|
17
17
|
attr_accessor :id
|
|
18
18
|
|
|
19
|
-
# The security's trading ticker symbol. For example \"AAPL\" for Apple Inc. We largely follow the [Yahoo Finance ticker format](https://help.yahoo.com/kb/SLN2310.html)(click on \"Yahoo Finance Market Coverage and Data Delays\"). For example, for securities traded on the Toronto Stock Exchange, the symbol has a '.TO' suffix. For securities traded on NASDAQ or NYSE, the symbol does not have a suffix.
|
|
19
|
+
# The security's trading ticker symbol. For example \"AAPL\" for Apple Inc. We largely follow the [Yahoo Finance ticker format](https://help.yahoo.com/kb/SLN2310.html)(click on \"Yahoo Finance Market Coverage and Data Delays\"). For example, for securities traded on the Toronto Stock Exchange, the symbol has a '.TO' suffix. For securities traded on NASDAQ or NYSE, the symbol does not have a suffix. Share classes and preferred series use SnapTrade's canonical dotted form, for example `HBND.U.TO`, `FTN.PR.A.TO`, and `ECF.PRA`.
|
|
20
20
|
attr_accessor :symbol
|
|
21
21
|
|
|
22
22
|
# The raw symbol is `symbol` with the exchange suffix removed. For example, if `symbol` is \"VAB.TO\", then `raw_symbol` is \"VAB\".
|
|
@@ -16,7 +16,7 @@ module SnapTrade
|
|
|
16
16
|
# Unique identifier for the symbol within SnapTrade. This is the ID used to reference the symbol in SnapTrade API calls.
|
|
17
17
|
attr_accessor :id
|
|
18
18
|
|
|
19
|
-
# The security's trading ticker symbol. For example \"AAPL\" for Apple Inc. We largely follow the [Yahoo Finance ticker format](https://help.yahoo.com/kb/SLN2310.html)(click on \"Yahoo Finance Market Coverage and Data Delays\"). For example, for securities traded on the Toronto Stock Exchange, the symbol has a '.TO' suffix. For securities traded on NASDAQ or NYSE, the symbol does not have a suffix.
|
|
19
|
+
# The security's trading ticker symbol. For example \"AAPL\" for Apple Inc. We largely follow the [Yahoo Finance ticker format](https://help.yahoo.com/kb/SLN2310.html)(click on \"Yahoo Finance Market Coverage and Data Delays\"). For example, for securities traded on the Toronto Stock Exchange, the symbol has a '.TO' suffix. For securities traded on NASDAQ or NYSE, the symbol does not have a suffix. Share classes and preferred series use SnapTrade's canonical dotted form, for example `HBND.U.TO`, `FTN.PR.A.TO`, and `ECF.PRA`.
|
|
20
20
|
attr_accessor :symbol
|
|
21
21
|
|
|
22
22
|
# The raw symbol is `symbol` with the exchange suffix removed. For example, if `symbol` is \"VAB.TO\", then `raw_symbol` is \"VAB\".
|
|
@@ -16,7 +16,7 @@ module SnapTrade
|
|
|
16
16
|
# Unique identifier for the symbol within SnapTrade. This is the ID used to reference the symbol in SnapTrade API calls.
|
|
17
17
|
attr_accessor :id
|
|
18
18
|
|
|
19
|
-
# The security's trading ticker symbol. For example \"AAPL\" for Apple Inc. We largely follow the [Yahoo Finance ticker format](https://help.yahoo.com/kb/SLN2310.html)(click on \"Yahoo Finance Market Coverage and Data Delays\"). For example, for securities traded on the Toronto Stock Exchange, the symbol has a '.TO' suffix. For securities traded on NASDAQ or NYSE, the symbol does not have a suffix.
|
|
19
|
+
# The security's trading ticker symbol. For example \"AAPL\" for Apple Inc. We largely follow the [Yahoo Finance ticker format](https://help.yahoo.com/kb/SLN2310.html)(click on \"Yahoo Finance Market Coverage and Data Delays\"). For example, for securities traded on the Toronto Stock Exchange, the symbol has a '.TO' suffix. For securities traded on NASDAQ or NYSE, the symbol does not have a suffix. Share classes and preferred series use SnapTrade's canonical dotted form, for example `HBND.U.TO`, `FTN.PR.A.TO`, and `ECF.PRA`.
|
|
20
20
|
attr_accessor :symbol
|
|
21
21
|
|
|
22
22
|
# The raw symbol is `symbol` with the exchange suffix removed. For example, if `symbol` is \"VAB.TO\", then `raw_symbol` is \"VAB\".
|
|
@@ -16,7 +16,7 @@ module SnapTrade
|
|
|
16
16
|
# Unique identifier for the symbol within SnapTrade. This is the ID used to reference the symbol in SnapTrade API calls.
|
|
17
17
|
attr_accessor :id
|
|
18
18
|
|
|
19
|
-
# The security's trading ticker symbol. For example \"AAPL\" for Apple Inc. We largely follow the [Yahoo Finance ticker format](https://help.yahoo.com/kb/SLN2310.html)(click on \"Yahoo Finance Market Coverage and Data Delays\"). For example, for securities traded on the Toronto Stock Exchange, the symbol has a '.TO' suffix. For securities traded on NASDAQ or NYSE, the symbol does not have a suffix.
|
|
19
|
+
# The security's trading ticker symbol. For example \"AAPL\" for Apple Inc. We largely follow the [Yahoo Finance ticker format](https://help.yahoo.com/kb/SLN2310.html)(click on \"Yahoo Finance Market Coverage and Data Delays\"). For example, for securities traded on the Toronto Stock Exchange, the symbol has a '.TO' suffix. For securities traded on NASDAQ or NYSE, the symbol does not have a suffix. Share classes and preferred series use SnapTrade's canonical dotted form, for example `HBND.U.TO`, `FTN.PR.A.TO`, and `ECF.PRA`.
|
|
20
20
|
attr_accessor :symbol
|
|
21
21
|
|
|
22
22
|
# The raw symbol is `symbol` with the exchange suffix removed. For example, if `symbol` is \"VAB.TO\", then `raw_symbol` is \"VAB\".
|
|
@@ -16,7 +16,7 @@ module SnapTrade
|
|
|
16
16
|
# Unique identifier for the symbol within SnapTrade. This is the ID used to reference the symbol in SnapTrade API calls.
|
|
17
17
|
attr_accessor :id
|
|
18
18
|
|
|
19
|
-
# The security's trading ticker symbol. For example \"AAPL\" for Apple Inc. We largely follow the [Yahoo Finance ticker format](https://help.yahoo.com/kb/SLN2310.html)(click on \"Yahoo Finance Market Coverage and Data Delays\"). For example, for securities traded on the Toronto Stock Exchange, the symbol has a '.TO' suffix. For securities traded on NASDAQ or NYSE, the symbol does not have a suffix.
|
|
19
|
+
# The security's trading ticker symbol. For example \"AAPL\" for Apple Inc. We largely follow the [Yahoo Finance ticker format](https://help.yahoo.com/kb/SLN2310.html)(click on \"Yahoo Finance Market Coverage and Data Delays\"). For example, for securities traded on the Toronto Stock Exchange, the symbol has a '.TO' suffix. For securities traded on NASDAQ or NYSE, the symbol does not have a suffix. Share classes and preferred series use SnapTrade's canonical dotted form, for example `HBND.U.TO`, `FTN.PR.A.TO`, and `ECF.PRA`.
|
|
20
20
|
attr_accessor :symbol
|
|
21
21
|
|
|
22
22
|
# The raw symbol is `symbol` with the exchange suffix removed. For example, if `symbol` is \"VAB.TO\", then `raw_symbol` is \"VAB\".
|
|
@@ -16,7 +16,7 @@ module SnapTrade
|
|
|
16
16
|
# Unique identifier for the symbol within SnapTrade. This is the ID used to reference the symbol in SnapTrade API calls.
|
|
17
17
|
attr_accessor :id
|
|
18
18
|
|
|
19
|
-
# The security's trading ticker symbol. For example \"AAPL\" for Apple Inc. We largely follow the [Yahoo Finance ticker format](https://help.yahoo.com/kb/SLN2310.html)(click on \"Yahoo Finance Market Coverage and Data Delays\"). For example, for securities traded on the Toronto Stock Exchange, the symbol has a '.TO' suffix. For securities traded on NASDAQ or NYSE, the symbol does not have a suffix.
|
|
19
|
+
# The security's trading ticker symbol. For example \"AAPL\" for Apple Inc. We largely follow the [Yahoo Finance ticker format](https://help.yahoo.com/kb/SLN2310.html)(click on \"Yahoo Finance Market Coverage and Data Delays\"). For example, for securities traded on the Toronto Stock Exchange, the symbol has a '.TO' suffix. For securities traded on NASDAQ or NYSE, the symbol does not have a suffix. Share classes and preferred series use SnapTrade's canonical dotted form, for example `HBND.U.TO`, `FTN.PR.A.TO`, and `ECF.PRA`.
|
|
20
20
|
attr_accessor :symbol
|
|
21
21
|
|
|
22
22
|
# The raw symbol is `symbol` with the exchange suffix removed. For example, if `symbol` is \"VAB.TO\", then `raw_symbol` is \"VAB\".
|
data/lib/snaptrade/version.rb
CHANGED
|
@@ -63,7 +63,7 @@ describe 'ReferenceDataApi' do
|
|
|
63
63
|
|
|
64
64
|
# unit tests for get_symbols_by_ticker
|
|
65
65
|
# Get symbol detail
|
|
66
|
-
# Returns the Universal Symbol object specified by the ticker or the Universal Symbol ID. When a ticker is specified, the first matching result is returned. We largely follow the [Yahoo Finance ticker format](https://help.yahoo.com/kb/SLN2310.html)(click on \"Yahoo Finance Market Coverage and Data Delays\"). For example, for securities traded on the Toronto Stock Exchange, the symbol has a '.TO' suffix. For securities traded on NASDAQ or NYSE, the symbol does not have a suffix. Please use the ticker with the proper suffix for the best results.
|
|
66
|
+
# Returns the Universal Symbol object specified by the ticker or the Universal Symbol ID. When a ticker is specified, the first matching result is returned. We largely follow the [Yahoo Finance ticker format](https://help.yahoo.com/kb/SLN2310.html)(click on \"Yahoo Finance Market Coverage and Data Delays\"). For example, for securities traded on the Toronto Stock Exchange, the symbol has a '.TO' suffix. For securities traded on NASDAQ or NYSE, the symbol does not have a suffix. Share classes and preferred series use SnapTrade's canonical dotted form: use `HBND.U.TO` (not Yahoo's `HBND-U.TO`), `FTN.PR.A.TO` (not `FTN-PA.TO`), and `ECF.PRA` (not `ECF-P-A`). Please use the ticker with the proper suffix and canonical share-class notation for the best results.
|
|
67
67
|
# @param query The ticker or Universal Symbol ID to look up the symbol with.
|
|
68
68
|
# @param [Hash] opts the optional parameters
|
|
69
69
|
# @return [UniversalSymbol]
|
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: 3.0.
|
|
4
|
+
version: 3.0.21
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- SnapTrade
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-09-
|
|
11
|
+
date: 2026-09-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday
|
|
@@ -656,259 +656,259 @@ signing_key:
|
|
|
656
656
|
specification_version: 4
|
|
657
657
|
summary: SnapTrade Ruby Gem
|
|
658
658
|
test_files:
|
|
659
|
-
- spec/api/connections_api_spec.rb
|
|
660
|
-
- spec/api/authentication_api_spec.rb
|
|
661
|
-
- spec/api/experimental_endpoints_api_spec.rb
|
|
662
659
|
- spec/api/trading_api_spec.rb
|
|
663
|
-
- spec/api/api_status_api_spec.rb
|
|
664
660
|
- spec/api/account_information_api_spec.rb
|
|
661
|
+
- spec/api/experimental_endpoints_api_spec.rb
|
|
662
|
+
- spec/api/api_status_api_spec.rb
|
|
663
|
+
- spec/api/connections_api_spec.rb
|
|
665
664
|
- spec/api/reference_data_api_spec.rb
|
|
665
|
+
- spec/api/authentication_api_spec.rb
|
|
666
666
|
- spec/api_client_spec.rb
|
|
667
667
|
- spec/configuration_spec.rb
|
|
668
668
|
- spec/getting_started_spec.rb
|
|
669
|
+
- spec/models/underlying_option_instrument_spec.rb
|
|
670
|
+
- spec/models/kind_spec.rb
|
|
671
|
+
- spec/models/rate_of_return_response_spec.rb
|
|
672
|
+
- spec/models/manual_trade_spec.rb
|
|
669
673
|
- spec/models/option_brokerage_symbol_spec.rb
|
|
670
|
-
- spec/models/
|
|
671
|
-
- spec/models/
|
|
672
|
-
- spec/models/
|
|
673
|
-
- spec/models/
|
|
674
|
-
- spec/models/
|
|
675
|
-
- spec/models/security_type_spec.rb
|
|
676
|
-
- spec/models/connection_account_spec.rb
|
|
677
|
-
- spec/models/brokerage_authorization_spec.rb
|
|
678
|
-
- spec/models/auth_type_spec.rb
|
|
679
|
-
- spec/models/account_order_record_quote_currency_spec.rb
|
|
680
|
-
- spec/models/manual_trade_form_spec.rb
|
|
674
|
+
- spec/models/brokerage_authorization_type_read_only_spec.rb
|
|
675
|
+
- spec/models/underlying_cfd_instrument_spec.rb
|
|
676
|
+
- spec/models/line_of_credit_account_sync_status_spec.rb
|
|
677
|
+
- spec/models/deposit_account_sync_status_spec.rb
|
|
678
|
+
- spec/models/account_order_record_v2_order_role_spec.rb
|
|
681
679
|
- spec/models/timeframe_spec.rb
|
|
682
|
-
- spec/models/
|
|
683
|
-
- spec/models/
|
|
684
|
-
- spec/models/
|
|
685
|
-
- spec/models/
|
|
686
|
-
- spec/models/
|
|
687
|
-
- spec/models/
|
|
688
|
-
- spec/models/
|
|
689
|
-
- spec/models/
|
|
690
|
-
- spec/models/
|
|
691
|
-
- spec/models/
|
|
692
|
-
- spec/models/
|
|
693
|
-
- spec/models/
|
|
694
|
-
- spec/models/
|
|
695
|
-
- spec/models/
|
|
696
|
-
- spec/models/
|
|
697
|
-
- spec/models/
|
|
698
|
-
- spec/models/
|
|
699
|
-
- spec/models/
|
|
700
|
-
- spec/models/
|
|
701
|
-
- spec/models/
|
|
702
|
-
- spec/models/
|
|
703
|
-
- spec/models/
|
|
704
|
-
- spec/models/
|
|
705
|
-
- spec/models/
|
|
706
|
-
- spec/models/
|
|
707
|
-
- spec/models/
|
|
708
|
-
- spec/models/account_balance_total_spec.rb
|
|
709
|
-
- spec/models/model400_failed_request_response_spec.rb
|
|
710
|
-
- spec/models/manual_trade_spec.rb
|
|
711
|
-
- spec/models/line_of_credit_account_available_credit_spec.rb
|
|
712
|
-
- spec/models/universal_symbol_spec.rb
|
|
680
|
+
- spec/models/mleg_order_type_strict_spec.rb
|
|
681
|
+
- spec/models/line_of_credit_account_minimum_payment_amount_spec.rb
|
|
682
|
+
- spec/models/trade_detection_cancel_subscription_response_spec.rb
|
|
683
|
+
- spec/models/strategy_quotes_greek_spec.rb
|
|
684
|
+
- spec/models/cryptocurrency_pair_quote_spec.rb
|
|
685
|
+
- spec/models/model425_failed_request_response_spec.rb
|
|
686
|
+
- spec/models/rate_of_return_object_spec.rb
|
|
687
|
+
- spec/models/adr_instrument_spec.rb
|
|
688
|
+
- spec/models/line_of_credit_account_kind_spec.rb
|
|
689
|
+
- spec/models/cef_instrument_spec.rb
|
|
690
|
+
- spec/models/model404_failed_request_response_spec.rb
|
|
691
|
+
- spec/models/snap_trade_login_user_request_body_spec.rb
|
|
692
|
+
- spec/models/investment_account_spec.rb
|
|
693
|
+
- spec/models/take_profit_spec.rb
|
|
694
|
+
- spec/models/account_status_spec.rb
|
|
695
|
+
- spec/models/snap_trade_holdings_total_value_spec.rb
|
|
696
|
+
- spec/models/stop_loss_spec.rb
|
|
697
|
+
- spec/models/brokerage_authorization_disabled_confirmation_spec.rb
|
|
698
|
+
- spec/models/brokerage_authorization_transactions_sync_confirmation_spec.rb
|
|
699
|
+
- spec/models/strategy_quotes_spec.rb
|
|
700
|
+
- spec/models/mutual_fund_instrument_kind_spec.rb
|
|
701
|
+
- spec/models/manual_trade_form_complex_spec.rb
|
|
702
|
+
- spec/models/option_instrument_option_type_spec.rb
|
|
703
|
+
- spec/models/underlying_symbol_spec.rb
|
|
704
|
+
- spec/models/cash_change_direction_spec.rb
|
|
705
|
+
- spec/models/option_instrument_spec.rb
|
|
713
706
|
- spec/models/model403_feature_not_enabled_response_spec.rb
|
|
714
|
-
- spec/models/
|
|
715
|
-
- spec/models/account_holdings_spec.rb
|
|
716
|
-
- spec/models/kind_spec.rb
|
|
717
|
-
- spec/models/mleg_leg_spec.rb
|
|
718
|
-
- spec/models/line_of_credit_account_sync_status_spec.rb
|
|
719
|
-
- spec/models/adr_instrument_kind_spec.rb
|
|
720
|
-
- spec/models/option_instrument_kind_spec.rb
|
|
721
|
-
- spec/models/stock_instrument_figi_instrument_spec.rb
|
|
722
|
-
- spec/models/account_value_history_response_spec.rb
|
|
707
|
+
- spec/models/complex_order_response_spec.rb
|
|
723
708
|
- spec/models/encrypted_response_encrypted_message_data_spec.rb
|
|
724
|
-
- spec/models/option_impact_spec.rb
|
|
725
709
|
- spec/models/manual_trade_form_with_options_spec.rb
|
|
726
|
-
- spec/models/
|
|
710
|
+
- spec/models/symbol_spec.rb
|
|
711
|
+
- spec/models/brokerage_instrument_spec.rb
|
|
727
712
|
- spec/models/brokerage_authorization_data_freshness_mode_spec.rb
|
|
713
|
+
- spec/models/option_quote_greeks_spec.rb
|
|
714
|
+
- spec/models/manual_trade_form_spec.rb
|
|
715
|
+
- spec/models/partner_data_spec.rb
|
|
716
|
+
- spec/models/stock_instrument_spec.rb
|
|
717
|
+
- spec/models/mutual_fund_instrument_spec.rb
|
|
718
|
+
- spec/models/brokerage_authorization_refresh_confirmation_spec.rb
|
|
719
|
+
- spec/models/performance_custom_spec.rb
|
|
728
720
|
- spec/models/past_value_spec.rb
|
|
729
|
-
- spec/models/
|
|
721
|
+
- spec/models/user_i_dand_secret_spec.rb
|
|
722
|
+
- spec/models/exchange_rate_pairs_spec.rb
|
|
723
|
+
- spec/models/account_simple_spec.rb
|
|
724
|
+
- spec/models/account_order_record_spec.rb
|
|
725
|
+
- spec/models/order_updated_response_spec.rb
|
|
726
|
+
- spec/models/mleg_trade_form_spec.rb
|
|
727
|
+
- spec/models/crypto_order_preview_spec.rb
|
|
728
|
+
- spec/models/options_position_spec.rb
|
|
729
|
+
- spec/models/simple_order_form_type_spec.rb
|
|
730
|
+
- spec/models/option_quote_spec.rb
|
|
731
|
+
- spec/models/monthly_dividends_spec.rb
|
|
732
|
+
- spec/models/model503_brokerage_request_response_spec.rb
|
|
733
|
+
- spec/models/option_type_spec.rb
|
|
734
|
+
- spec/models/encrypted_response_spec.rb
|
|
735
|
+
- spec/models/deposit_account_kind_spec.rb
|
|
736
|
+
- spec/models/account_order_record_leg_instrument_spec.rb
|
|
737
|
+
- spec/models/strategy_type_spec.rb
|
|
738
|
+
- spec/models/manual_trade_form_bracket_spec.rb
|
|
739
|
+
- spec/models/option_impact_spec.rb
|
|
730
740
|
- spec/models/option_chain_inner_chain_per_root_inner_chain_per_strike_price_inner_spec.rb
|
|
741
|
+
- spec/models/us_exchange_spec.rb
|
|
742
|
+
- spec/models/holdings_status_spec.rb
|
|
743
|
+
- spec/models/account_universal_activity_currency_universal_symbol_spec.rb
|
|
744
|
+
- spec/models/other_instrument_kind_spec.rb
|
|
745
|
+
- spec/models/crypto_order_form_time_in_force_spec.rb
|
|
746
|
+
- spec/models/option_chain_inner_spec.rb
|
|
747
|
+
- spec/models/strategy_order_record_status_spec.rb
|
|
748
|
+
- spec/models/manual_trade_form_notional_value_spec.rb
|
|
749
|
+
- spec/models/authentication_login_snap_trade_user200_response_spec.rb
|
|
750
|
+
- spec/models/account_universal_activity_symbol_spec.rb
|
|
751
|
+
- spec/models/manual_trade_and_impact_spec.rb
|
|
752
|
+
- spec/models/account_balance_spec.rb
|
|
753
|
+
- spec/models/account_universal_activity_option_symbol_spec.rb
|
|
754
|
+
- spec/models/cryptocurrency_pair_spec.rb
|
|
755
|
+
- spec/models/model402_brokerage_auth_disabled_response_spec.rb
|
|
756
|
+
- spec/models/account_order_record_quote_universal_symbol_spec.rb
|
|
757
|
+
- spec/models/type_spec.rb
|
|
758
|
+
- spec/models/snaptrade_spec.rb
|
|
759
|
+
- spec/models/account_information_get_user_account_order_detail_request_spec.rb
|
|
760
|
+
- spec/models/notional_value_spec.rb
|
|
761
|
+
- spec/models/position_spec.rb
|
|
762
|
+
- spec/models/option_strategy_spec.rb
|
|
763
|
+
- spec/models/action_strict_spec.rb
|
|
764
|
+
- spec/models/connection_portal_version_spec.rb
|
|
765
|
+
- spec/models/model402_brokerage_auth_already_disabled_exception_spec.rb
|
|
766
|
+
- spec/models/account_order_record_leg_spec.rb
|
|
767
|
+
- spec/models/position_currency_spec.rb
|
|
768
|
+
- spec/models/net_contributions_spec.rb
|
|
731
769
|
- spec/models/option_chain_inner_chain_per_root_inner_spec.rb
|
|
732
|
-
- spec/models/
|
|
733
|
-
- spec/models/
|
|
734
|
-
- spec/models/
|
|
735
|
-
- spec/models/
|
|
736
|
-
- spec/models/
|
|
737
|
-
- spec/models/
|
|
738
|
-
- spec/models/strategy_type_spec.rb
|
|
739
|
-
- spec/models/all_account_positions_response_spec.rb
|
|
740
|
-
- spec/models/order_type_strict_spec.rb
|
|
741
|
-
- spec/models/cash_change_direction_spec.rb
|
|
742
|
-
- spec/models/other_instrument_spec.rb
|
|
743
|
-
- spec/models/crypto_order_form_spec.rb
|
|
770
|
+
- spec/models/institution_spec.rb
|
|
771
|
+
- spec/models/future_option_instrument_spec.rb
|
|
772
|
+
- spec/models/deposit_account_spec.rb
|
|
773
|
+
- spec/models/account_order_record_v2_spec.rb
|
|
774
|
+
- spec/models/account_holdings_account_spec.rb
|
|
775
|
+
- spec/models/simple_order_form_time_in_force_spec.rb
|
|
744
776
|
- spec/models/complex_order_leg_order_role_spec.rb
|
|
745
|
-
- spec/models/
|
|
746
|
-
- spec/models/
|
|
747
|
-
- spec/models/
|
|
748
|
-
- spec/models/
|
|
749
|
-
- spec/models/
|
|
750
|
-
- spec/models/
|
|
777
|
+
- spec/models/mleg_trading_instrument_spec.rb
|
|
778
|
+
- spec/models/mleg_leg_spec.rb
|
|
779
|
+
- spec/models/validated_trade_body_spec.rb
|
|
780
|
+
- spec/models/delete_user_response_spec.rb
|
|
781
|
+
- spec/models/option_leg_action_spec.rb
|
|
782
|
+
- spec/models/crypto_trading_instrument_spec.rb
|
|
783
|
+
- spec/models/recent_orders_response_spec.rb
|
|
751
784
|
- spec/models/tax_lot_spec.rb
|
|
752
|
-
- spec/models/
|
|
753
|
-
- spec/models/
|
|
754
|
-
- spec/models/
|
|
755
|
-
- spec/models/
|
|
756
|
-
- spec/models/
|
|
757
|
-
- spec/models/
|
|
758
|
-
- spec/models/
|
|
759
|
-
- spec/models/option_quote_greeks_spec.rb
|
|
760
|
-
- spec/models/model501_not_implemented_response_spec.rb
|
|
761
|
-
- spec/models/account_order_record_leg_instrument_spec.rb
|
|
762
|
-
- spec/models/underlying_symbol_type_spec.rb
|
|
763
|
-
- spec/models/etf_instrument_kind_spec.rb
|
|
764
|
-
- spec/models/net_dividend_spec.rb
|
|
765
|
-
- spec/models/account_order_record_option_symbol_spec.rb
|
|
785
|
+
- spec/models/balance_currency_spec.rb
|
|
786
|
+
- spec/models/order_type_strict_spec.rb
|
|
787
|
+
- spec/models/underlying_symbol_exchange_spec.rb
|
|
788
|
+
- spec/models/brokerage_instruments_response_spec.rb
|
|
789
|
+
- spec/models/symbol_query_spec.rb
|
|
790
|
+
- spec/models/account_order_record_status_spec.rb
|
|
791
|
+
- spec/models/line_of_credit_account_available_credit_spec.rb
|
|
766
792
|
- spec/models/manual_trade_replace_form_spec.rb
|
|
767
|
-
- spec/models/
|
|
768
|
-
- spec/models/
|
|
769
|
-
- spec/models/
|
|
793
|
+
- spec/models/crypto_order_form_type_spec.rb
|
|
794
|
+
- spec/models/manual_trade_place_time_in_force_strict_spec.rb
|
|
795
|
+
- spec/models/cef_instrument_kind_spec.rb
|
|
796
|
+
- spec/models/model403_failed_request_response_spec.rb
|
|
797
|
+
- spec/models/model501_not_implemented_response_spec.rb
|
|
798
|
+
- spec/models/session_event_type_spec.rb
|
|
799
|
+
- spec/models/investment_account_net_value_spec.rb
|
|
770
800
|
- spec/models/trade_detection_add_subscription_request_spec.rb
|
|
771
|
-
- spec/models/
|
|
772
|
-
- spec/models/model402_brokerage_auth_disabled_response_spec.rb
|
|
801
|
+
- spec/models/other_instrument_spec.rb
|
|
773
802
|
- spec/models/mleg_order_response_spec.rb
|
|
803
|
+
- spec/models/balance_spec.rb
|
|
804
|
+
- spec/models/manual_trade_balance_spec.rb
|
|
805
|
+
- spec/models/account_universal_activity_currency_spec.rb
|
|
806
|
+
- spec/models/time_in_force_strict_spec.rb
|
|
807
|
+
- spec/models/mleg_instrument_type_spec.rb
|
|
774
808
|
- spec/models/deposit_account_net_value_spec.rb
|
|
775
|
-
- spec/models/
|
|
776
|
-
- spec/models/brokerage_instrument_spec.rb
|
|
777
|
-
- spec/models/position_spec.rb
|
|
778
|
-
- spec/models/universal_activity_spec.rb
|
|
779
|
-
- spec/models/account_order_record_spec.rb
|
|
780
|
-
- spec/models/option_strategy_legs_inner_spec.rb
|
|
809
|
+
- spec/models/session_event_spec.rb
|
|
781
810
|
- spec/models/simple_order_form_spec.rb
|
|
782
|
-
- spec/models/
|
|
783
|
-
- spec/models/
|
|
784
|
-
- spec/models/
|
|
811
|
+
- spec/models/security_type_spec.rb
|
|
812
|
+
- spec/models/crypto_order_preview_estimated_fee_spec.rb
|
|
813
|
+
- spec/models/trading_session_spec.rb
|
|
814
|
+
- spec/models/all_account_positions_response_data_freshness_spec.rb
|
|
815
|
+
- spec/models/trade_detection_subscription_spec.rb
|
|
816
|
+
- spec/models/account_sync_status_spec.rb
|
|
817
|
+
- spec/models/etf_instrument_spec.rb
|
|
818
|
+
- spec/models/connection_account_spec.rb
|
|
819
|
+
- spec/models/manual_trade_impact_spec.rb
|
|
820
|
+
- spec/models/line_of_credit_account_net_value_spec.rb
|
|
821
|
+
- spec/models/strategy_order_record_spec.rb
|
|
822
|
+
- spec/models/delete_connection_confirmation_spec.rb
|
|
823
|
+
- spec/models/crypto_instrument_spec.rb
|
|
824
|
+
- spec/models/account_value_history_item_spec.rb
|
|
785
825
|
- spec/models/login_redirect_uri_spec.rb
|
|
786
|
-
- spec/models/
|
|
826
|
+
- spec/models/account_universal_activity_spec.rb
|
|
827
|
+
- spec/models/symbols_quotes_inner_spec.rb
|
|
828
|
+
- spec/models/account_order_record_trailing_stop_spec.rb
|
|
829
|
+
- spec/models/cfd_instrument_spec.rb
|
|
830
|
+
- spec/models/option_strategy_legs_inner_spec.rb
|
|
831
|
+
- spec/models/paginated_universal_activity_spec.rb
|
|
832
|
+
- spec/models/connection_account_sync_status_spec.rb
|
|
833
|
+
- spec/models/brokerage_authorization_type_read_only_brokerage_spec.rb
|
|
834
|
+
- spec/models/complex_order_response_type_spec.rb
|
|
835
|
+
- spec/models/account_order_record_child_brokerage_order_ids_spec.rb
|
|
836
|
+
- spec/models/account_order_record_quote_currency_spec.rb
|
|
837
|
+
- spec/models/net_dividend_spec.rb
|
|
838
|
+
- spec/models/etf_instrument_kind_spec.rb
|
|
839
|
+
- spec/models/account_holdings_spec.rb
|
|
840
|
+
- spec/models/price_effect_spec.rb
|
|
841
|
+
- spec/models/all_account_positions_response_spec.rb
|
|
787
842
|
- spec/models/account_position_spec.rb
|
|
788
|
-
- spec/models/
|
|
789
|
-
- spec/models/
|
|
790
|
-
- spec/models/
|
|
791
|
-
- spec/models/
|
|
792
|
-
- spec/models/account_information_get_user_account_order_detail_request_spec.rb
|
|
843
|
+
- spec/models/symbol_currency_spec.rb
|
|
844
|
+
- spec/models/future_instrument_kind_spec.rb
|
|
845
|
+
- spec/models/account_order_record_option_symbol_spec.rb
|
|
846
|
+
- spec/models/o_auth_webhook_base_spec.rb
|
|
793
847
|
- spec/models/child_brokerage_order_ids_spec.rb
|
|
794
|
-
- spec/models/
|
|
848
|
+
- spec/models/model401_failed_request_response_spec.rb
|
|
849
|
+
- spec/models/instrument_spec.rb
|
|
850
|
+
- spec/models/line_of_credit_account_spec.rb
|
|
851
|
+
- spec/models/trading_instrument_spec.rb
|
|
852
|
+
- spec/models/action_strict_with_options_spec.rb
|
|
853
|
+
- spec/models/sub_period_return_rate_spec.rb
|
|
854
|
+
- spec/models/account_value_history_response_spec.rb
|
|
855
|
+
- spec/models/account_category_spec.rb
|
|
856
|
+
- spec/models/cancel_order_response_spec.rb
|
|
857
|
+
- spec/models/figi_instrument_spec.rb
|
|
858
|
+
- spec/models/dividend_at_date_spec.rb
|
|
859
|
+
- spec/models/account_spec.rb
|
|
860
|
+
- spec/models/cfd_instrument_kind_spec.rb
|
|
861
|
+
- spec/models/model429_too_many_requests_response_spec.rb
|
|
862
|
+
- spec/models/order_role_spec.rb
|
|
863
|
+
- spec/models/auth_type_spec.rb
|
|
864
|
+
- spec/models/trade_detection_cancel_subscription_request_spec.rb
|
|
795
865
|
- spec/models/currency_spec.rb
|
|
796
|
-
- spec/models/
|
|
866
|
+
- spec/models/order_updated_response_order_spec.rb
|
|
797
867
|
- spec/models/exchange_spec.rb
|
|
798
|
-
- spec/models/
|
|
799
|
-
- spec/models/
|
|
868
|
+
- spec/models/account_order_record_status_v2_spec.rb
|
|
869
|
+
- spec/models/future_instrument_spec.rb
|
|
800
870
|
- spec/models/symbol_exchange_spec.rb
|
|
801
|
-
- spec/models/
|
|
871
|
+
- spec/models/underlying_symbol_type_spec.rb
|
|
802
872
|
- spec/models/option_leg_spec.rb
|
|
803
|
-
- spec/models/
|
|
804
|
-
- spec/models/
|
|
805
|
-
- spec/models/
|
|
806
|
-
- spec/models/
|
|
807
|
-
- spec/models/
|
|
808
|
-
- spec/models/
|
|
809
|
-
- spec/models/
|
|
810
|
-
- spec/models/
|
|
811
|
-
- spec/models/
|
|
812
|
-
- spec/models/complex_order_response_spec.rb
|
|
813
|
-
- spec/models/strategy_quotes_spec.rb
|
|
814
|
-
- spec/models/holdings_status_spec.rb
|
|
815
|
-
- spec/models/monthly_dividends_spec.rb
|
|
816
|
-
- spec/models/options_position_spec.rb
|
|
817
|
-
- spec/models/adr_instrument_spec.rb
|
|
818
|
-
- spec/models/underlying_symbol_spec.rb
|
|
819
|
-
- spec/models/trading_session_spec.rb
|
|
873
|
+
- spec/models/pagination_details_spec.rb
|
|
874
|
+
- spec/models/brokerage_spec.rb
|
|
875
|
+
- spec/models/manual_trade_form_complex_type_spec.rb
|
|
876
|
+
- spec/models/options_symbol_option_type_spec.rb
|
|
877
|
+
- spec/models/future_option_instrument_kind_spec.rb
|
|
878
|
+
- spec/models/model400_failed_request_response_spec.rb
|
|
879
|
+
- spec/models/stock_instrument_kind_spec.rb
|
|
880
|
+
- spec/models/position_symbol_spec.rb
|
|
881
|
+
- spec/models/mleg_price_effect_strict_spec.rb
|
|
820
882
|
- spec/models/connection_type_spec.rb
|
|
821
|
-
- spec/models/
|
|
822
|
-
- spec/models/
|
|
883
|
+
- spec/models/model500_unexpected_exception_response_spec.rb
|
|
884
|
+
- spec/models/manual_trade_symbol_spec.rb
|
|
885
|
+
- spec/models/account_orders_v2_response_spec.rb
|
|
886
|
+
- spec/models/status_spec.rb
|
|
887
|
+
- spec/models/trading_search_cryptocurrency_pair_instruments200_response_spec.rb
|
|
888
|
+
- spec/models/account_balance_total_spec.rb
|
|
889
|
+
- spec/models/crypto_instrument_kind_spec.rb
|
|
890
|
+
- spec/models/brokerage_authorization_spec.rb
|
|
891
|
+
- spec/models/account_order_record_universal_symbol_spec.rb
|
|
892
|
+
- spec/models/option_instrument_kind_spec.rb
|
|
823
893
|
- spec/models/snap_trade_holdings_account_spec.rb
|
|
824
|
-
- spec/models/
|
|
825
|
-
- spec/models/
|
|
826
|
-
- spec/models/
|
|
827
|
-
- spec/models/
|
|
828
|
-
- spec/models/
|
|
894
|
+
- spec/models/options_position_currency_spec.rb
|
|
895
|
+
- spec/models/snap_trade_register_user_request_body_spec.rb
|
|
896
|
+
- spec/models/stock_instrument_figi_instrument_spec.rb
|
|
897
|
+
- spec/models/schema_version_spec.rb
|
|
898
|
+
- spec/models/adr_instrument_kind_spec.rb
|
|
899
|
+
- spec/models/brokerage_authorization_type_read_only_type_spec.rb
|
|
829
900
|
- spec/models/trailing_stop_spec.rb
|
|
901
|
+
- spec/models/mleg_action_strict_spec.rb
|
|
902
|
+
- spec/models/crypto_order_form_spec.rb
|
|
903
|
+
- spec/models/trading_instrument_type_spec.rb
|
|
904
|
+
- spec/models/brokerage_type_spec.rb
|
|
905
|
+
- spec/models/complex_order_leg_spec.rb
|
|
906
|
+
- spec/models/universal_activity_spec.rb
|
|
907
|
+
- spec/models/universal_symbol_spec.rb
|
|
908
|
+
- spec/models/transactions_status_spec.rb
|
|
830
909
|
- spec/models/options_symbol_spec.rb
|
|
831
|
-
- spec/models/order_role_spec.rb
|
|
832
|
-
- spec/models/option_strategy_spec.rb
|
|
833
|
-
- spec/models/exchange_rate_pairs_spec.rb
|
|
834
|
-
- spec/models/figi_instrument_spec.rb
|
|
835
|
-
- spec/models/model402_brokerage_auth_already_disabled_exception_spec.rb
|
|
836
|
-
- spec/models/etf_instrument_spec.rb
|
|
837
|
-
- spec/models/model425_failed_request_response_spec.rb
|
|
838
|
-
- spec/models/strategy_order_record_spec.rb
|
|
839
|
-
- spec/models/line_of_credit_account_minimum_payment_amount_spec.rb
|
|
840
|
-
- spec/models/account_balance_spec.rb
|
|
841
|
-
- spec/models/snap_trade_login_user_request_body_spec.rb
|
|
842
|
-
- spec/models/strategy_quotes_greek_spec.rb
|
|
843
|
-
- spec/models/brokerage_authorization_refresh_confirmation_spec.rb
|
|
844
|
-
- spec/models/crypto_trading_instrument_spec.rb
|
|
845
|
-
- spec/models/account_order_record_leg_spec.rb
|
|
846
910
|
- spec/models/crypto_trading_instrument_type_spec.rb
|
|
847
|
-
- spec/models/manual_trade_form_complex_spec.rb
|
|
848
|
-
- spec/models/account_universal_activity_option_symbol_spec.rb
|
|
849
|
-
- spec/models/status_spec.rb
|
|
850
|
-
- spec/models/brokerage_authorization_type_read_only_spec.rb
|
|
851
|
-
- spec/models/snap_trade_holdings_total_value_spec.rb
|
|
852
|
-
- spec/models/option_instrument_spec.rb
|
|
853
|
-
- spec/models/model500_unexpected_exception_response_spec.rb
|
|
854
|
-
- spec/models/crypto_instrument_kind_spec.rb
|
|
855
|
-
- spec/models/balance_spec.rb
|
|
856
|
-
- spec/models/mleg_trading_instrument_spec.rb
|
|
857
|
-
- spec/models/cryptocurrency_pair_quote_spec.rb
|
|
858
|
-
- spec/models/manual_trade_impact_spec.rb
|
|
859
|
-
- spec/models/deposit_account_kind_spec.rb
|
|
860
|
-
- spec/models/mutual_fund_instrument_kind_spec.rb
|
|
861
|
-
- spec/models/authentication_login_snap_trade_user200_response_spec.rb
|
|
862
|
-
- spec/models/brokerage_authorization_disabled_confirmation_spec.rb
|
|
863
|
-
- spec/models/future_option_instrument_spec.rb
|
|
864
|
-
- spec/models/symbol_currency_spec.rb
|
|
865
|
-
- spec/models/cancel_order_response_spec.rb
|
|
866
|
-
- spec/models/paginated_universal_activity_spec.rb
|
|
867
|
-
- spec/models/performance_custom_spec.rb
|
|
868
|
-
- spec/models/account_order_record_status_v2_spec.rb
|
|
869
|
-
- spec/models/model429_too_many_requests_response_spec.rb
|
|
870
|
-
- spec/models/stock_instrument_kind_spec.rb
|
|
871
|
-
- spec/models/order_updated_response_order_spec.rb
|
|
872
|
-
- spec/models/delete_connection_confirmation_spec.rb
|
|
873
|
-
- spec/models/manual_trade_balance_spec.rb
|
|
874
|
-
- spec/models/model503_brokerage_request_response_spec.rb
|
|
875
|
-
- spec/models/cryptocurrency_pair_spec.rb
|
|
876
|
-
- spec/models/line_of_credit_account_kind_spec.rb
|
|
877
|
-
- spec/models/rate_of_return_response_spec.rb
|
|
878
|
-
- spec/models/account_sync_status_spec.rb
|
|
879
|
-
- spec/models/future_option_instrument_kind_spec.rb
|
|
880
|
-
- spec/models/trading_instrument_type_spec.rb
|
|
881
|
-
- spec/models/net_contributions_spec.rb
|
|
882
|
-
- spec/models/account_order_record_quote_universal_symbol_spec.rb
|
|
883
|
-
- spec/models/account_spec.rb
|
|
884
|
-
- spec/models/trade_detection_cancel_subscription_response_spec.rb
|
|
885
|
-
- spec/models/mleg_instrument_type_spec.rb
|
|
886
|
-
- spec/models/brokerage_authorization_transactions_sync_confirmation_spec.rb
|
|
887
|
-
- spec/models/position_currency_spec.rb
|
|
888
|
-
- spec/models/dividend_at_date_spec.rb
|
|
889
|
-
- spec/models/option_leg_action_spec.rb
|
|
890
|
-
- spec/models/balance_currency_spec.rb
|
|
891
|
-
- spec/models/validated_trade_body_spec.rb
|
|
892
|
-
- spec/models/o_auth_webhook_base_spec.rb
|
|
893
|
-
- spec/models/line_of_credit_account_spec.rb
|
|
894
|
-
- spec/models/simple_order_form_type_spec.rb
|
|
895
|
-
- spec/models/mutual_fund_instrument_spec.rb
|
|
896
|
-
- spec/models/line_of_credit_account_net_value_spec.rb
|
|
897
|
-
- spec/models/user_i_dand_secret_spec.rb
|
|
898
|
-
- spec/models/deposit_account_spec.rb
|
|
899
|
-
- spec/models/recent_orders_response_spec.rb
|
|
900
|
-
- spec/models/manual_trade_form_complex_type_spec.rb
|
|
901
|
-
- spec/models/sub_period_return_rate_spec.rb
|
|
902
|
-
- spec/models/position_symbol_spec.rb
|
|
903
|
-
- spec/models/notional_value_spec.rb
|
|
904
|
-
- spec/models/connection_account_sync_status_spec.rb
|
|
905
|
-
- spec/models/investment_account_net_value_spec.rb
|
|
906
|
-
- spec/models/account_category_spec.rb
|
|
907
|
-
- spec/models/cef_instrument_spec.rb
|
|
908
|
-
- spec/models/trading_instrument_spec.rb
|
|
909
|
-
- spec/models/account_universal_activity_currency_universal_symbol_spec.rb
|
|
910
|
-
- spec/models/crypto_order_preview_estimated_fee_spec.rb
|
|
911
|
-
- spec/regression/all_account_positions_spec.rb
|
|
912
|
-
- spec/regression/request_signing_spec.rb
|
|
913
911
|
- spec/regression/fixtures/all_account_positions.json
|
|
912
|
+
- spec/regression/request_signing_spec.rb
|
|
913
|
+
- spec/regression/all_account_positions_spec.rb
|
|
914
914
|
- spec/spec_helper.rb
|