File tree Expand file tree Collapse file tree 3 files changed +33
-3
lines changed Expand file tree Collapse file tree 3 files changed +33
-3
lines changed Original file line number Diff line number Diff line change
1
+ .. _snapshot_header :
2
+
3
+ Snapshot
4
+ =================================
5
+
6
+ =================================
7
+ Get all snapshots
8
+ =================================
9
+ .. automethod :: polygon.RESTClient.get_snapshot_all
10
+
11
+ =================================
12
+ Get gainers/losers snapshot
13
+ =================================
14
+ .. automethod :: polygon.RESTClient.get_snapshot_direction
15
+
16
+ =================================
17
+ Get ticker snapshot
18
+ =================================
19
+ .. automethod :: polygon.RESTClient.get_snapshot_ticker
20
+
21
+ =================================
22
+ Get options snapshot
23
+ =================================
24
+ .. automethod :: polygon.RESTClient.get_snapshot_option
25
+
26
+ =================================
27
+ Get crypto L2 book snapshot
28
+ =================================
29
+ .. automethod :: polygon.RESTClient.get_snapshot_crypto_book
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ This documentation is for the Python client only. For details about the response
9
9
10
10
Getting-Started
11
11
Aggs
12
+ Snapshot
12
13
Quotes
13
14
Reference
14
15
Trades
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ def get_market_holidays(
33
33
34
34
:param params: Any additional query params
35
35
:param raw: Return HTTPResponse object instead of results object
36
- :return: List of quotes
36
+ :return: List of market holidays
37
37
"""
38
38
url = "/v1/marketstatus/upcoming"
39
39
@@ -53,7 +53,7 @@ def get_market_status(
53
53
54
54
:param params: Any additional query params
55
55
:param raw: Return HTTPResponse object instead of results object
56
- :return: List of quotes
56
+ :return: Market status
57
57
"""
58
58
url = "/v1/marketstatus/now"
59
59
@@ -393,7 +393,7 @@ def get_exchanges(
393
393
:param locale: Filter by locale.
394
394
:param params: Any additional query params
395
395
:param raw: Return HTTPResponse object instead of results object
396
- :return: List of quotes
396
+ :return: List of exchanges
397
397
"""
398
398
url = "/v3/reference/exchanges"
399
399
You can’t perform that action at this time.
0 commit comments