snaptrade 2.0.138 → 2.0.139
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 +2 -2
- data/lib/snaptrade/api/trading_api.rb +4 -4
- data/lib/snaptrade/version.rb +1 -1
- data/spec/api/trading_api_spec.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 177324a2ac7f2e9389c88507b90f97a07610b19a2c0f797af0559a84ad74bc9e
|
4
|
+
data.tar.gz: a12bf1f72419d045d2f182d5c5ec4e9ab5c2399695e20f0801e9222cdf9fa8bc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 84ba0bf06578fd79d06cb93c87318742b28cc79e592545f389bdff7342b8bed81f4d172546d0ed4a4d2e45ba2bd2f4a30edf2ba32f9f8b6a1058ea0c3111094c
|
7
|
+
data.tar.gz: 8637197462c81af1d740a08595fff1c0e9e5f89d87c57d8c5bf3560f08e12968667e4f799e889ee3621425e3afa22593f596032d796ff0b8d6235fe35fc8fad7
|
data/Gemfile.lock
CHANGED
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.139)
|
10
10
|
[](https://snaptrade.com/)
|
11
11
|
|
12
12
|
</div>
|
@@ -81,7 +81,7 @@ Connect brokerage accounts to your app for live positions and trading
|
|
81
81
|
Add to Gemfile:
|
82
82
|
|
83
83
|
```ruby
|
84
|
-
gem 'snaptrade', '~> 2.0.
|
84
|
+
gem 'snaptrade', '~> 2.0.139'
|
85
85
|
```
|
86
86
|
|
87
87
|
## Getting Started<a id="getting-started"></a>
|
@@ -973,7 +973,7 @@ module SnapTrade
|
|
973
973
|
end
|
974
974
|
|
975
975
|
|
976
|
-
# Place order
|
976
|
+
# Place equity order
|
977
977
|
#
|
978
978
|
# 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.
|
979
979
|
#
|
@@ -1012,7 +1012,7 @@ module SnapTrade
|
|
1012
1012
|
data
|
1013
1013
|
end
|
1014
1014
|
|
1015
|
-
# Place order
|
1015
|
+
# Place equity order
|
1016
1016
|
#
|
1017
1017
|
# 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.
|
1018
1018
|
#
|
@@ -1050,7 +1050,7 @@ module SnapTrade
|
|
1050
1050
|
place_force_order_with_http_info_impl(user_id, user_secret, manual_trade_form_with_options, extra)
|
1051
1051
|
end
|
1052
1052
|
|
1053
|
-
# Place order
|
1053
|
+
# Place equity order
|
1054
1054
|
# 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.
|
1055
1055
|
# @param user_id [String]
|
1056
1056
|
# @param user_secret [String]
|
@@ -1062,7 +1062,7 @@ module SnapTrade
|
|
1062
1062
|
data
|
1063
1063
|
end
|
1064
1064
|
|
1065
|
-
# Place order
|
1065
|
+
# Place equity order
|
1066
1066
|
# 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.
|
1067
1067
|
# @param user_id [String]
|
1068
1068
|
# @param user_secret [String]
|
data/lib/snaptrade/version.rb
CHANGED
@@ -133,7 +133,7 @@ describe 'TradingApi' do
|
|
133
133
|
end
|
134
134
|
|
135
135
|
# unit tests for place_force_order
|
136
|
-
# Place order
|
136
|
+
# Place equity order
|
137
137
|
# 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.
|
138
138
|
# @param user_id
|
139
139
|
# @param user_secret
|
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.139
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- SnapTrade
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-09-
|
11
|
+
date: 2025-09-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|