snaptrade 2.0.135 → 2.0.136
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 +3 -3
- 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: 02264ba319051c243dd0a579a6795a8d1fd13eb77371336f6bf06740841d373e
|
4
|
+
data.tar.gz: fc3353a5588c0ac6a951d92e259e208526036f63ec28dd70e5049f7b3efbc16f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: add4d4016fc4eb1f31732f9aef1c2249a00ace06dc33c31e78d4ba91812d69387f89a1d0a9ab596a292dca6c374b3806eaab00dfe9b7a8ab952b21f9de2477f4
|
7
|
+
data.tar.gz: 07a7566f68c2b751d0eabd35becbeaacbd83a1056e8425acd145094efd6debb8dae2f31da9b2e3009222db6ddbe9628db65fbbd0c2c24943f8e1cbd16bc25c10
|
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.136)
|
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.136'
|
85
85
|
```
|
86
86
|
|
87
87
|
## Getting Started<a id="getting-started"></a>
|
@@ -2289,7 +2289,7 @@ The price at which a stop order is triggered for `Stop` and `StopLimit` orders.
|
|
2289
2289
|
|
2290
2290
|
### `snaptrade.trading.search_cryptocurrency_pair_instruments`<a id="snaptradetradingsearch_cryptocurrency_pair_instruments"></a>
|
2291
2291
|
|
2292
|
-
Searches cryptocurrency pairs instruments accessible to the specified account.
|
2292
|
+
Searches cryptocurrency pairs instruments accessible to the specified account. Both `base` and `quote` are optional. Omit both for a full list of cryptocurrency pairs.
|
2293
2293
|
|
2294
2294
|
|
2295
2295
|
#### 🛠️ Usage<a id="🛠️-usage"></a>
|
@@ -1715,7 +1715,7 @@ module SnapTrade
|
|
1715
1715
|
|
1716
1716
|
# Get crypto pairs
|
1717
1717
|
#
|
1718
|
-
# Searches cryptocurrency pairs instruments accessible to the specified account.
|
1718
|
+
# Searches cryptocurrency pairs instruments accessible to the specified account. Both `base` and `quote` are optional. Omit both for a full list of cryptocurrency pairs.
|
1719
1719
|
#
|
1720
1720
|
# @param user_id [String]
|
1721
1721
|
# @param user_secret [String]
|
@@ -1732,7 +1732,7 @@ module SnapTrade
|
|
1732
1732
|
|
1733
1733
|
# Get crypto pairs
|
1734
1734
|
#
|
1735
|
-
# Searches cryptocurrency pairs instruments accessible to the specified account.
|
1735
|
+
# Searches cryptocurrency pairs instruments accessible to the specified account. Both `base` and `quote` are optional. Omit both for a full list of cryptocurrency pairs.
|
1736
1736
|
#
|
1737
1737
|
# @param user_id [String]
|
1738
1738
|
# @param user_secret [String]
|
@@ -1747,7 +1747,7 @@ module SnapTrade
|
|
1747
1747
|
end
|
1748
1748
|
|
1749
1749
|
# Get crypto pairs
|
1750
|
-
# Searches cryptocurrency pairs instruments accessible to the specified account.
|
1750
|
+
# Searches cryptocurrency pairs instruments accessible to the specified account. Both `base` and `quote` are optional. Omit both for a full list of cryptocurrency pairs.
|
1751
1751
|
# @param user_id [String]
|
1752
1752
|
# @param user_secret [String]
|
1753
1753
|
# @param account_id [String]
|
@@ -1761,7 +1761,7 @@ module SnapTrade
|
|
1761
1761
|
end
|
1762
1762
|
|
1763
1763
|
# Get crypto pairs
|
1764
|
-
# Searches cryptocurrency pairs instruments accessible to the specified account.
|
1764
|
+
# Searches cryptocurrency pairs instruments accessible to the specified account. Both `base` and `quote` are optional. Omit both for a full list of cryptocurrency pairs.
|
1765
1765
|
# @param user_id [String]
|
1766
1766
|
# @param user_secret [String]
|
1767
1767
|
# @param account_id [String]
|
data/lib/snaptrade/version.rb
CHANGED
@@ -208,7 +208,7 @@ describe 'TradingApi' do
|
|
208
208
|
|
209
209
|
# unit tests for search_cryptocurrency_pair_instruments
|
210
210
|
# Get crypto pairs
|
211
|
-
# Searches cryptocurrency pairs instruments accessible to the specified account.
|
211
|
+
# Searches cryptocurrency pairs instruments accessible to the specified account. Both `base` and `quote` are optional. Omit both for a full list of cryptocurrency pairs.
|
212
212
|
# @param user_id
|
213
213
|
# @param user_secret
|
214
214
|
# @param account_id
|
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.136
|
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-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|