snaptrade 2.0.76 → 2.0.78
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 +4 -4
- data/README.md +7 -5
- data/lib/snaptrade/api/account_information_api.rb +4 -4
- data/lib/snaptrade/version.rb +1 -1
- data/spec/api/account_information_api_spec.rb +1 -1
- metadata +114 -114
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '09538d31f22ff2931ab1bd59868f5290101158c89d1cc61abc0e3f15f9c34278'
|
4
|
+
data.tar.gz: a367d4addc803359ca974dd2a4323cd8cd2fb9a575e62f3df68b14da0d17e130
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b63efd0729f706636afd56b384a182cbbf943cfa9c173fd2543a30ed10137ff18a3d3a15b972906a731ad62f8c66a60c6f40ac4c28416880fd9acb1843a5c077
|
7
|
+
data.tar.gz: ad8e0bbc53098cc8a127384f1410633aca33139390bb00eb6dc530baae560f1e0c1daac8a4f9529516f1d3954e80ac5b3d23b8c5b13ef9a6fd29324f3911baeb
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
snaptrade (2.0.
|
4
|
+
snaptrade (2.0.78)
|
5
5
|
faraday (>= 1.0.1, < 3.0)
|
6
6
|
faraday-multipart (~> 1.0, >= 1.0.4)
|
7
7
|
|
@@ -15,7 +15,7 @@ GEM
|
|
15
15
|
debug (1.8.0)
|
16
16
|
irb (>= 1.5.0)
|
17
17
|
reline (>= 0.3.1)
|
18
|
-
diff-lcs (1.
|
18
|
+
diff-lcs (1.6.0)
|
19
19
|
faraday (2.8.1)
|
20
20
|
base64
|
21
21
|
faraday-net_http (>= 2.0, < 3.1)
|
@@ -44,7 +44,7 @@ GEM
|
|
44
44
|
regexp_parser (2.10.0)
|
45
45
|
reline (0.6.0)
|
46
46
|
io-console (~> 0.5)
|
47
|
-
rexml (3.4.
|
47
|
+
rexml (3.4.1)
|
48
48
|
rspec (3.13.0)
|
49
49
|
rspec-core (~> 3.13.0)
|
50
50
|
rspec-expectations (~> 3.13.0)
|
@@ -67,7 +67,7 @@ GEM
|
|
67
67
|
rubocop-ast (>= 1.2.0, < 2.0)
|
68
68
|
ruby-progressbar (~> 1.7)
|
69
69
|
unicode-display_width (>= 1.4.0, < 3.0)
|
70
|
-
rubocop-ast (1.38.
|
70
|
+
rubocop-ast (1.38.1)
|
71
71
|
parser (>= 3.3.1.0)
|
72
72
|
ruby-progressbar (1.13.0)
|
73
73
|
ruby2_keywords (0.0.5)
|
data/README.md
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
|
7
7
|
Connect brokerage accounts to your app for live positions and trading
|
8
8
|
|
9
|
-
[](https://rubygems.org/gems/snaptrade/versions/2.0.78)
|
10
10
|
[](https://snaptrade.com/)
|
11
11
|
|
12
12
|
</div>
|
@@ -74,7 +74,7 @@ Connect brokerage accounts to your app for live positions and trading
|
|
74
74
|
Add to Gemfile:
|
75
75
|
|
76
76
|
```ruby
|
77
|
-
gem 'snaptrade', '~> 2.0.
|
77
|
+
gem 'snaptrade', '~> 2.0.78'
|
78
78
|
```
|
79
79
|
|
80
80
|
## Getting Started<a id="getting-started"></a>
|
@@ -179,9 +179,10 @@ a best effort to categorize brokerage transaction types into a common set of
|
|
179
179
|
values. Here are some of the most popular values: - `BUY` - Asset bought. -
|
180
180
|
`SELL` - Asset sold. - `DIVIDEND` - Dividend payout. - `CONTRIBUTION` - Cash
|
181
181
|
contribution. - `WITHDRAWAL` - Cash withdrawal. - `REI` - Dividend reinvestment.
|
182
|
-
- `
|
183
|
-
|
184
|
-
|
182
|
+
- `STOCK_DIVIDEND` - A type of dividend where a company distributes shares
|
183
|
+
instead of cash - `INTEREST` - Interest deposited into the account. - `FEE` -
|
184
|
+
Fee withdrawn from the account. - `OPTIONEXPIRATION` - Option expiration event.
|
185
|
+
- `OPTIONASSIGNMENT` - Option assignment event. - `OPTIONEXERCISE` - Option
|
185
186
|
exercise event. - `TRANSFER` - Transfer of assets from one account to another
|
186
187
|
|
187
188
|
#### 🔄 Return<a id="🔄-return"></a>
|
@@ -1881,6 +1882,7 @@ before responding to the request.
|
|
1881
1882
|
|
1882
1883
|
|
1883
1884
|
### `snaptrade.transactions_and_reporting.get_activities`<a id="snaptradetransactions_and_reportingget_activities"></a>
|
1885
|
+

|
1884
1886
|
|
1885
1887
|
Returns all historical transactions for the specified user and filtering criteria. It's recommended to use `startDate` and `endDate` to paginate through the data, as the response may be very large for accounts with a long history and/or a lot of activity. There's a max number of 10000 transactions returned per request.
|
1886
1888
|
|
@@ -34,7 +34,7 @@ module SnapTrade
|
|
34
34
|
# @param end_date [Date] The end date (inclusive) of the transaction history to retrieve. If not provided, the default is the last transaction known to SnapTrade based on `trade_date`.
|
35
35
|
# @param offset [Integer] An integer that specifies the starting point of the paginated results. Default is 0.
|
36
36
|
# @param limit [Integer] An integer that specifies the maximum number of transactions to return. Default of 1000.
|
37
|
-
# @param type [String] Optional comma separated list of transaction types to filter by. SnapTrade does a best effort to categorize brokerage transaction types into a common set of values. Here are some of the most popular values: - `BUY` - Asset bought. - `SELL` - Asset sold. - `DIVIDEND` - Dividend payout. - `CONTRIBUTION` - Cash contribution. - `WITHDRAWAL` - Cash withdrawal. - `REI` - Dividend reinvestment. - `INTEREST` - Interest deposited into the account. - `FEE` - Fee withdrawn from the account. - `OPTIONEXPIRATION` - Option expiration event. - `OPTIONASSIGNMENT` - Option assignment event. - `OPTIONEXERCISE` - Option exercise event. - `TRANSFER` - Transfer of assets from one account to another
|
37
|
+
# @param type [String] Optional comma separated list of transaction types to filter by. SnapTrade does a best effort to categorize brokerage transaction types into a common set of values. Here are some of the most popular values: - `BUY` - Asset bought. - `SELL` - Asset sold. - `DIVIDEND` - Dividend payout. - `CONTRIBUTION` - Cash contribution. - `WITHDRAWAL` - Cash withdrawal. - `REI` - Dividend reinvestment. - `STOCK_DIVIDEND` - A type of dividend where a company distributes shares instead of cash - `INTEREST` - Interest deposited into the account. - `FEE` - Fee withdrawn from the account. - `OPTIONEXPIRATION` - Option expiration event. - `OPTIONASSIGNMENT` - Option assignment event. - `OPTIONEXERCISE` - Option exercise event. - `TRANSFER` - Transfer of assets from one account to another
|
38
38
|
# @param [Hash] extra additional parameters to pass along through :header_params, :query_params, or parameter name
|
39
39
|
def get_account_activities(account_id:, user_id:, user_secret:, start_date: SENTINEL, end_date: SENTINEL, offset: SENTINEL, limit: SENTINEL, type: SENTINEL, extra: {})
|
40
40
|
extra[:start_date] = start_date if start_date != SENTINEL
|
@@ -63,7 +63,7 @@ module SnapTrade
|
|
63
63
|
# @param end_date [Date] The end date (inclusive) of the transaction history to retrieve. If not provided, the default is the last transaction known to SnapTrade based on `trade_date`.
|
64
64
|
# @param offset [Integer] An integer that specifies the starting point of the paginated results. Default is 0.
|
65
65
|
# @param limit [Integer] An integer that specifies the maximum number of transactions to return. Default of 1000.
|
66
|
-
# @param type [String] Optional comma separated list of transaction types to filter by. SnapTrade does a best effort to categorize brokerage transaction types into a common set of values. Here are some of the most popular values: - `BUY` - Asset bought. - `SELL` - Asset sold. - `DIVIDEND` - Dividend payout. - `CONTRIBUTION` - Cash contribution. - `WITHDRAWAL` - Cash withdrawal. - `REI` - Dividend reinvestment. - `INTEREST` - Interest deposited into the account. - `FEE` - Fee withdrawn from the account. - `OPTIONEXPIRATION` - Option expiration event. - `OPTIONASSIGNMENT` - Option assignment event. - `OPTIONEXERCISE` - Option exercise event. - `TRANSFER` - Transfer of assets from one account to another
|
66
|
+
# @param type [String] Optional comma separated list of transaction types to filter by. SnapTrade does a best effort to categorize brokerage transaction types into a common set of values. Here are some of the most popular values: - `BUY` - Asset bought. - `SELL` - Asset sold. - `DIVIDEND` - Dividend payout. - `CONTRIBUTION` - Cash contribution. - `WITHDRAWAL` - Cash withdrawal. - `REI` - Dividend reinvestment. - `STOCK_DIVIDEND` - A type of dividend where a company distributes shares instead of cash - `INTEREST` - Interest deposited into the account. - `FEE` - Fee withdrawn from the account. - `OPTIONEXPIRATION` - Option expiration event. - `OPTIONASSIGNMENT` - Option assignment event. - `OPTIONEXERCISE` - Option exercise event. - `TRANSFER` - Transfer of assets from one account to another
|
67
67
|
# @param [Hash] extra additional parameters to pass along through :header_params, :query_params, or parameter name
|
68
68
|
def get_account_activities_with_http_info(account_id:, user_id:, user_secret:, start_date: SENTINEL, end_date: SENTINEL, offset: SENTINEL, limit: SENTINEL, type: SENTINEL, extra: {})
|
69
69
|
extra[:start_date] = start_date if start_date != SENTINEL
|
@@ -84,7 +84,7 @@ module SnapTrade
|
|
84
84
|
# @option opts [Date] :end_date The end date (inclusive) of the transaction history to retrieve. If not provided, the default is the last transaction known to SnapTrade based on `trade_date`.
|
85
85
|
# @option opts [Integer] :offset An integer that specifies the starting point of the paginated results. Default is 0.
|
86
86
|
# @option opts [Integer] :limit An integer that specifies the maximum number of transactions to return. Default of 1000.
|
87
|
-
# @option opts [String] :type Optional comma separated list of transaction types to filter by. SnapTrade does a best effort to categorize brokerage transaction types into a common set of values. Here are some of the most popular values: - `BUY` - Asset bought. - `SELL` - Asset sold. - `DIVIDEND` - Dividend payout. - `CONTRIBUTION` - Cash contribution. - `WITHDRAWAL` - Cash withdrawal. - `REI` - Dividend reinvestment. - `INTEREST` - Interest deposited into the account. - `FEE` - Fee withdrawn from the account. - `OPTIONEXPIRATION` - Option expiration event. - `OPTIONASSIGNMENT` - Option assignment event. - `OPTIONEXERCISE` - Option exercise event. - `TRANSFER` - Transfer of assets from one account to another
|
87
|
+
# @option opts [String] :type Optional comma separated list of transaction types to filter by. SnapTrade does a best effort to categorize brokerage transaction types into a common set of values. Here are some of the most popular values: - `BUY` - Asset bought. - `SELL` - Asset sold. - `DIVIDEND` - Dividend payout. - `CONTRIBUTION` - Cash contribution. - `WITHDRAWAL` - Cash withdrawal. - `REI` - Dividend reinvestment. - `STOCK_DIVIDEND` - A type of dividend where a company distributes shares instead of cash - `INTEREST` - Interest deposited into the account. - `FEE` - Fee withdrawn from the account. - `OPTIONEXPIRATION` - Option expiration event. - `OPTIONASSIGNMENT` - Option assignment event. - `OPTIONEXERCISE` - Option exercise event. - `TRANSFER` - Transfer of assets from one account to another
|
88
88
|
# @return [PaginatedUniversalActivity]
|
89
89
|
private def get_account_activities_impl(account_id, user_id, user_secret, opts = {})
|
90
90
|
data, _status_code, _headers = get_account_activities_with_http_info(account_id, user_id, user_secret, opts)
|
@@ -101,7 +101,7 @@ module SnapTrade
|
|
101
101
|
# @option opts [Date] :end_date The end date (inclusive) of the transaction history to retrieve. If not provided, the default is the last transaction known to SnapTrade based on `trade_date`.
|
102
102
|
# @option opts [Integer] :offset An integer that specifies the starting point of the paginated results. Default is 0.
|
103
103
|
# @option opts [Integer] :limit An integer that specifies the maximum number of transactions to return. Default of 1000.
|
104
|
-
# @option opts [String] :type Optional comma separated list of transaction types to filter by. SnapTrade does a best effort to categorize brokerage transaction types into a common set of values. Here are some of the most popular values: - `BUY` - Asset bought. - `SELL` - Asset sold. - `DIVIDEND` - Dividend payout. - `CONTRIBUTION` - Cash contribution. - `WITHDRAWAL` - Cash withdrawal. - `REI` - Dividend reinvestment. - `INTEREST` - Interest deposited into the account. - `FEE` - Fee withdrawn from the account. - `OPTIONEXPIRATION` - Option expiration event. - `OPTIONASSIGNMENT` - Option assignment event. - `OPTIONEXERCISE` - Option exercise event. - `TRANSFER` - Transfer of assets from one account to another
|
104
|
+
# @option opts [String] :type Optional comma separated list of transaction types to filter by. SnapTrade does a best effort to categorize brokerage transaction types into a common set of values. Here are some of the most popular values: - `BUY` - Asset bought. - `SELL` - Asset sold. - `DIVIDEND` - Dividend payout. - `CONTRIBUTION` - Cash contribution. - `WITHDRAWAL` - Cash withdrawal. - `REI` - Dividend reinvestment. - `STOCK_DIVIDEND` - A type of dividend where a company distributes shares instead of cash - `INTEREST` - Interest deposited into the account. - `FEE` - Fee withdrawn from the account. - `OPTIONEXPIRATION` - Option expiration event. - `OPTIONASSIGNMENT` - Option assignment event. - `OPTIONEXERCISE` - Option exercise event. - `TRANSFER` - Transfer of assets from one account to another
|
105
105
|
# @return [Array<(PaginatedUniversalActivity, Integer, Hash)>] PaginatedUniversalActivity data, response status code and response headers
|
106
106
|
private def get_account_activities_with_http_info_impl(account_id, user_id, user_secret, opts = {})
|
107
107
|
if @api_client.config.debugging
|
data/lib/snaptrade/version.rb
CHANGED
@@ -38,7 +38,7 @@ describe 'AccountInformationApi' do
|
|
38
38
|
# @option opts [Date] :end_date The end date (inclusive) of the transaction history to retrieve. If not provided, the default is the last transaction known to SnapTrade based on `trade_date`.
|
39
39
|
# @option opts [Integer] :offset An integer that specifies the starting point of the paginated results. Default is 0.
|
40
40
|
# @option opts [Integer] :limit An integer that specifies the maximum number of transactions to return. Default of 1000.
|
41
|
-
# @option opts [String] :type Optional comma separated list of transaction types to filter by. SnapTrade does a best effort to categorize brokerage transaction types into a common set of values. Here are some of the most popular values: - `BUY` - Asset bought. - `SELL` - Asset sold. - `DIVIDEND` - Dividend payout. - `CONTRIBUTION` - Cash contribution. - `WITHDRAWAL` - Cash withdrawal. - `REI` - Dividend reinvestment. - `INTEREST` - Interest deposited into the account. - `FEE` - Fee withdrawn from the account. - `OPTIONEXPIRATION` - Option expiration event. - `OPTIONASSIGNMENT` - Option assignment event. - `OPTIONEXERCISE` - Option exercise event. - `TRANSFER` - Transfer of assets from one account to another
|
41
|
+
# @option opts [String] :type Optional comma separated list of transaction types to filter by. SnapTrade does a best effort to categorize brokerage transaction types into a common set of values. Here are some of the most popular values: - `BUY` - Asset bought. - `SELL` - Asset sold. - `DIVIDEND` - Dividend payout. - `CONTRIBUTION` - Cash contribution. - `WITHDRAWAL` - Cash withdrawal. - `REI` - Dividend reinvestment. - `STOCK_DIVIDEND` - A type of dividend where a company distributes shares instead of cash - `INTEREST` - Interest deposited into the account. - `FEE` - Fee withdrawn from the account. - `OPTIONEXPIRATION` - Option expiration event. - `OPTIONASSIGNMENT` - Option assignment event. - `OPTIONEXERCISE` - Option exercise event. - `TRANSFER` - Transfer of assets from one account to another
|
42
42
|
# @return [PaginatedUniversalActivity]
|
43
43
|
describe 'get_account_activities test' do
|
44
44
|
it 'should work' do
|
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.78
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- SnapTrade
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-03-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -385,140 +385,140 @@ signing_key:
|
|
385
385
|
specification_version: 4
|
386
386
|
summary: SnapTrade Ruby Gem
|
387
387
|
test_files:
|
388
|
+
- spec/api/options_api_spec.rb
|
388
389
|
- spec/api/transactions_and_reporting_api_spec.rb
|
390
|
+
- spec/api/account_information_api_spec.rb
|
389
391
|
- spec/api/connections_api_spec.rb
|
390
|
-
- spec/api/trading_api_spec.rb
|
391
392
|
- spec/api/api_status_api_spec.rb
|
392
|
-
- spec/api/reference_data_api_spec.rb
|
393
393
|
- spec/api/authentication_api_spec.rb
|
394
|
-
- spec/api/
|
395
|
-
- spec/api/
|
394
|
+
- spec/api/trading_api_spec.rb
|
395
|
+
- spec/api/reference_data_api_spec.rb
|
396
396
|
- spec/api_client_spec.rb
|
397
397
|
- spec/configuration_spec.rb
|
398
398
|
- spec/getting_started_spec.rb
|
399
|
-
- spec/models/option_leg_spec.rb
|
400
399
|
- spec/models/symbols_quotes_inner_spec.rb
|
401
|
-
- spec/models/
|
402
|
-
- spec/models/
|
403
|
-
- spec/models/
|
404
|
-
- spec/models/options_place_option_strategy_request_spec.rb
|
405
|
-
- spec/models/strategy_quotes_spec.rb
|
406
|
-
- spec/models/encrypted_response_spec.rb
|
407
|
-
- spec/models/model404_failed_request_response_spec.rb
|
408
|
-
- spec/models/option_strategy_legs_inner_spec.rb
|
409
|
-
- spec/models/position_symbol_spec.rb
|
410
|
-
- spec/models/option_chain_inner_spec.rb
|
411
|
-
- spec/models/brokerage_authorization_type_read_only_brokerage_spec.rb
|
412
|
-
- spec/models/notional_value_spec.rb
|
413
|
-
- spec/models/manual_trade_form_with_options_take_profit_spec.rb
|
414
|
-
- spec/models/position_spec.rb
|
415
|
-
- spec/models/timeframe_spec.rb
|
416
|
-
- spec/models/option_type_spec.rb
|
400
|
+
- spec/models/account_order_record_status_spec.rb
|
401
|
+
- spec/models/rate_of_return_object_spec.rb
|
402
|
+
- spec/models/partner_data_spec.rb
|
417
403
|
- spec/models/snap_trade_holdings_account_spec.rb
|
418
|
-
- spec/models/
|
419
|
-
- spec/models/universal_activity_spec.rb
|
420
|
-
- spec/models/past_value_spec.rb
|
421
|
-
- spec/models/holdings_status_spec.rb
|
422
|
-
- spec/models/net_contributions_spec.rb
|
423
|
-
- spec/models/brokerage_spec.rb
|
424
|
-
- spec/models/dividend_at_date_spec.rb
|
425
|
-
- spec/models/account_balance_spec.rb
|
426
|
-
- spec/models/model403_feature_not_enabled_response_spec.rb
|
427
|
-
- spec/models/exchange_spec.rb
|
428
|
-
- spec/models/snap_trade_holdings_total_value_spec.rb
|
429
|
-
- spec/models/time_in_force_strict_spec.rb
|
430
|
-
- spec/models/options_position_currency_spec.rb
|
431
|
-
- spec/models/symbol_spec.rb
|
404
|
+
- spec/models/account_spec.rb
|
432
405
|
- spec/models/options_symbol_spec.rb
|
433
|
-
- spec/models/
|
434
|
-
- spec/models/
|
435
|
-
- spec/models/
|
436
|
-
- spec/models/
|
437
|
-
- spec/models/session_event_type_spec.rb
|
438
|
-
- spec/models/option_chain_inner_chain_per_root_inner_spec.rb
|
439
|
-
- spec/models/recent_orders_response_spec.rb
|
440
|
-
- spec/models/pagination_details_spec.rb
|
441
|
-
- spec/models/universal_symbol_spec.rb
|
442
|
-
- spec/models/manual_trade_form_with_options_spec.rb
|
406
|
+
- spec/models/symbol_currency_spec.rb
|
407
|
+
- spec/models/brokerage_authorization_spec.rb
|
408
|
+
- spec/models/strategy_order_record_status_spec.rb
|
409
|
+
- spec/models/time_in_force_strict_spec.rb
|
443
410
|
- spec/models/delete_user_response_spec.rb
|
444
|
-
- spec/models/
|
445
|
-
- spec/models/
|
446
|
-
- spec/models/
|
447
|
-
- spec/models/
|
448
|
-
- spec/models/
|
411
|
+
- spec/models/model401_failed_request_response_spec.rb
|
412
|
+
- spec/models/auth_type_spec.rb
|
413
|
+
- spec/models/login_redirect_uri_spec.rb
|
414
|
+
- spec/models/options_position_currency_spec.rb
|
415
|
+
- spec/models/manual_trade_and_impact_spec.rb
|
449
416
|
- spec/models/validated_trade_body_spec.rb
|
417
|
+
- spec/models/exchange_rate_pairs_spec.rb
|
418
|
+
- spec/models/manual_trade_form_with_options_take_profit_spec.rb
|
419
|
+
- spec/models/strategy_order_record_spec.rb
|
420
|
+
- spec/models/option_chain_inner_chain_per_root_inner_spec.rb
|
421
|
+
- spec/models/model425_failed_request_response_spec.rb
|
422
|
+
- spec/models/underlying_symbol_exchange_spec.rb
|
423
|
+
- spec/models/symbol_exchange_spec.rb
|
450
424
|
- spec/models/balance_spec.rb
|
451
|
-
- spec/models/
|
452
|
-
- spec/models/
|
453
|
-
- spec/models/
|
454
|
-
- spec/models/encrypted_response_encrypted_message_data_spec.rb
|
425
|
+
- spec/models/brokerage_authorization_type_read_only_brokerage_spec.rb
|
426
|
+
- spec/models/option_leg_spec.rb
|
427
|
+
- spec/models/connection_type_spec.rb
|
455
428
|
- spec/models/underlying_symbol_type_spec.rb
|
456
|
-
- spec/models/
|
457
|
-
- spec/models/
|
458
|
-
- spec/models/
|
459
|
-
- spec/models/symbol_currency_spec.rb
|
460
|
-
- spec/models/account_sync_status_spec.rb
|
461
|
-
- spec/models/account_order_record_universal_symbol_spec.rb
|
462
|
-
- spec/models/symbol_query_spec.rb
|
463
|
-
- spec/models/account_spec.rb
|
464
|
-
- spec/models/model425_failed_request_response_spec.rb
|
465
|
-
- spec/models/strategy_type_spec.rb
|
466
|
-
- spec/models/action_strict_with_options_spec.rb
|
467
|
-
- spec/models/strategy_order_record_status_spec.rb
|
468
|
-
- spec/models/manual_trade_symbol_spec.rb
|
469
|
-
- spec/models/options_position_spec.rb
|
470
|
-
- spec/models/model401_failed_request_response_spec.rb
|
429
|
+
- spec/models/account_balance_spec.rb
|
430
|
+
- spec/models/exchange_spec.rb
|
431
|
+
- spec/models/option_leg_action_spec.rb
|
471
432
|
- spec/models/account_holdings_account_spec.rb
|
472
|
-
- spec/models/
|
473
|
-
- spec/models/
|
474
|
-
- spec/models/
|
475
|
-
- spec/models/
|
476
|
-
- spec/models/
|
477
|
-
- spec/models/
|
433
|
+
- spec/models/option_chain_inner_chain_per_root_inner_chain_per_strike_price_inner_spec.rb
|
434
|
+
- spec/models/symbol_spec.rb
|
435
|
+
- spec/models/strategy_quotes_greek_spec.rb
|
436
|
+
- spec/models/session_event_type_spec.rb
|
437
|
+
- spec/models/action_strict_spec.rb
|
438
|
+
- spec/models/account_universal_activity_option_symbol_spec.rb
|
439
|
+
- spec/models/pagination_details_spec.rb
|
440
|
+
- spec/models/encrypted_response_spec.rb
|
441
|
+
- spec/models/account_universal_activity_spec.rb
|
442
|
+
- spec/models/option_strategy_legs_inner_spec.rb
|
443
|
+
- spec/models/transactions_status_spec.rb
|
444
|
+
- spec/models/authentication_login_snap_trade_user200_response_spec.rb
|
445
|
+
- spec/models/performance_custom_spec.rb
|
446
|
+
- spec/models/connections_session_events200_response_inner_spec.rb
|
447
|
+
- spec/models/manual_trade_balance_spec.rb
|
448
|
+
- spec/models/brokerage_type_spec.rb
|
449
|
+
- spec/models/rate_of_return_response_spec.rb
|
450
|
+
- spec/models/net_contributions_spec.rb
|
451
|
+
- spec/models/notional_value_spec.rb
|
478
452
|
- spec/models/stop_loss_spec.rb
|
479
|
-
- spec/models/
|
480
|
-
- spec/models/
|
453
|
+
- spec/models/model404_failed_request_response_spec.rb
|
454
|
+
- spec/models/past_value_spec.rb
|
455
|
+
- spec/models/account_order_record_universal_symbol_spec.rb
|
456
|
+
- spec/models/us_exchange_spec.rb
|
481
457
|
- spec/models/model500_unexpected_exception_response_spec.rb
|
458
|
+
- spec/models/session_event_spec.rb
|
459
|
+
- spec/models/account_holdings_spec.rb
|
460
|
+
- spec/models/brokerage_authorization_disabled_confirmation_spec.rb
|
461
|
+
- spec/models/brokerage_spec.rb
|
462
|
+
- spec/models/universal_activity_spec.rb
|
463
|
+
- spec/models/account_order_record_spec.rb
|
464
|
+
- spec/models/symbol_figi_instrument_spec.rb
|
465
|
+
- spec/models/strategy_quotes_spec.rb
|
466
|
+
- spec/models/monthly_dividends_spec.rb
|
482
467
|
- spec/models/snap_trade_register_user_request_body_spec.rb
|
483
|
-
- spec/models/
|
484
|
-
- spec/models/
|
485
|
-
- spec/models/
|
468
|
+
- spec/models/status_spec.rb
|
469
|
+
- spec/models/account_sync_status_spec.rb
|
470
|
+
- spec/models/account_balance_total_spec.rb
|
486
471
|
- spec/models/take_profit_spec.rb
|
487
|
-
- spec/models/
|
472
|
+
- spec/models/balance_currency_spec.rb
|
473
|
+
- spec/models/option_type_spec.rb
|
474
|
+
- spec/models/timeframe_spec.rb
|
475
|
+
- spec/models/universal_symbol_spec.rb
|
476
|
+
- spec/models/account_order_record_option_symbol_spec.rb
|
477
|
+
- spec/models/model403_failed_request_response_spec.rb
|
478
|
+
- spec/models/sub_period_return_rate_spec.rb
|
479
|
+
- spec/models/snap_trade_holdings_total_value_spec.rb
|
488
480
|
- spec/models/brokerage_authorization_refresh_confirmation_spec.rb
|
489
|
-
- spec/models/
|
490
|
-
- spec/models/account_order_record_spec.rb
|
491
|
-
- spec/models/user_i_dand_secret_spec.rb
|
492
|
-
- spec/models/authentication_login_snap_trade_user200_response_spec.rb
|
481
|
+
- spec/models/paginated_universal_activity_spec.rb
|
493
482
|
- spec/models/account_universal_activity_symbol_spec.rb
|
494
|
-
- spec/models/
|
495
|
-
- spec/models/
|
496
|
-
- spec/models/
|
483
|
+
- spec/models/snap_trade_login_user_request_body_spec.rb
|
484
|
+
- spec/models/strategy_type_spec.rb
|
485
|
+
- spec/models/option_strategy_spec.rb
|
486
|
+
- spec/models/manual_trade_form_with_options_spec.rb
|
487
|
+
- spec/models/options_position_spec.rb
|
488
|
+
- spec/models/position_symbol_spec.rb
|
497
489
|
- spec/models/options_get_option_strategy_request_spec.rb
|
498
|
-
- spec/models/
|
499
|
-
- spec/models/
|
500
|
-
- spec/models/
|
490
|
+
- spec/models/manual_trade_form_with_options_stop_loss_spec.rb
|
491
|
+
- spec/models/action_strict_with_options_spec.rb
|
492
|
+
- spec/models/currency_spec.rb
|
493
|
+
- spec/models/symbol_query_spec.rb
|
494
|
+
- spec/models/model402_brokerage_auth_already_disabled_exception_spec.rb
|
495
|
+
- spec/models/model402_brokerage_auth_disabled_response_spec.rb
|
496
|
+
- spec/models/trading_cancel_user_account_order_request_spec.rb
|
497
|
+
- spec/models/underlying_symbol_spec.rb
|
498
|
+
- spec/models/order_class_spec.rb
|
501
499
|
- spec/models/model400_failed_request_response_spec.rb
|
502
|
-
- spec/models/
|
503
|
-
- spec/models/
|
504
|
-
- spec/models/brokerage_authorization_disabled_confirmation_spec.rb
|
505
|
-
- spec/models/connections_session_events200_response_inner_spec.rb
|
506
|
-
- spec/models/order_type_strict_spec.rb
|
507
|
-
- spec/models/connection_type_spec.rb
|
508
|
-
- spec/models/account_order_record_status_spec.rb
|
509
|
-
- spec/models/us_exchange_spec.rb
|
510
|
-
- spec/models/option_leg_action_spec.rb
|
511
|
-
- spec/models/transactions_status_spec.rb
|
500
|
+
- spec/models/net_dividend_spec.rb
|
501
|
+
- spec/models/user_i_dand_secret_spec.rb
|
512
502
|
- spec/models/account_simple_spec.rb
|
513
|
-
- spec/models/
|
514
|
-
- spec/models/
|
515
|
-
- spec/models/
|
516
|
-
- spec/models/
|
517
|
-
- spec/models/
|
518
|
-
- spec/models/
|
519
|
-
- spec/models/
|
520
|
-
- spec/models/
|
521
|
-
- spec/models/
|
522
|
-
- spec/models/
|
523
|
-
- spec/models/
|
503
|
+
- spec/models/options_place_option_strategy_request_spec.rb
|
504
|
+
- spec/models/position_spec.rb
|
505
|
+
- spec/models/holdings_status_spec.rb
|
506
|
+
- spec/models/recent_orders_response_spec.rb
|
507
|
+
- spec/models/encrypted_response_encrypted_message_data_spec.rb
|
508
|
+
- spec/models/manual_trade_form_notional_value_spec.rb
|
509
|
+
- spec/models/dividend_at_date_spec.rb
|
510
|
+
- spec/models/option_chain_inner_spec.rb
|
511
|
+
- spec/models/connection_portal_version_spec.rb
|
512
|
+
- spec/models/figi_instrument_spec.rb
|
513
|
+
- spec/models/order_type_strict_spec.rb
|
514
|
+
- spec/models/manual_trade_impact_spec.rb
|
515
|
+
- spec/models/model403_feature_not_enabled_response_spec.rb
|
516
|
+
- spec/models/account_universal_activity_currency_spec.rb
|
517
|
+
- spec/models/security_type_spec.rb
|
518
|
+
- spec/models/type_spec.rb
|
519
|
+
- spec/models/manual_trade_form_spec.rb
|
520
|
+
- spec/models/manual_trade_spec.rb
|
521
|
+
- spec/models/brokerage_authorization_type_read_only_spec.rb
|
522
|
+
- spec/models/option_brokerage_symbol_spec.rb
|
523
|
+
- spec/models/manual_trade_symbol_spec.rb
|
524
524
|
- spec/spec_helper.rb
|