We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 595d44c commit 9eafa40Copy full SHA for 9eafa40
polygon/rest/trades.py
@@ -77,12 +77,13 @@ def get_last_crypto_trade(
77
raw: bool = False,
78
) -> Union[CryptoTrade, HTTPResponse]:
79
"""
80
- Get the most recent trade for a ticker.
+ Get the last trade tick for a cryptocurrency pair.
81
82
- :param ticker: The ticker symbol of the asset
+ :param from_: The "from" symbol of the pair.
83
+ :param to: The "to" symbol of the pair.
84
:param params: Any additional query params
85
:param raw: Return raw object instead of results object
- :return: Last trade
86
+ :return: Last crypto trade
87
88
url = f"/v1/last/crypto/{from_}/{to}"
89
0 commit comments