All-Time-Highs
Google Sheet & Excel
Airtable
All-Time-High prices are available via a simple syntax:
=CRYPTOFINANCE("BTC/USD", "ath")
This will return the all time high price for the
BTC/USD
market as an aggregated VWAP.Note: Calls to ATH data fall into the Historical Data quota of 25 call per day per user.
You can prefix an exchange name, to return ATH prices from a given exchange, and not the market average.
Example getting Kraken ATH price for its
BTC/EUR
market:=CRYPTOFINANCE("KRAKEN:BTC/EUR", "ath")
=CRYPTOFINANCE("OPENSEA:MUTANT-APE-YACHT-CLUB", "ath")
Returns the date when the asset price was at its All-Time-High:
=CRYPTOFINANCE("BTC/EUR", "ath_date")
Per exchange:
=CRYPTOFINANCE("KRAKEN:ETH/BTC", "ath_date")
=CRYPTOFINANCE("OPENSEA:MUTANT-APE-YACHT-CLUB", "ath_date")
Returns the percentage down from the asset All-Time-High price, or
0
when the current price is the ATH.=CRYPTOFINANCE("BTC/EUR", "ath_diff")
Per exchange:
=CRYPTOFINANCE("KRAKEN:ETH/BTC", "ath_diff")
=CRYPTOFINANCE("OPENSEA:MUTANT-APE-YACHT-CLUB", "ath_diff")
In addition to the price you can pull the ATH volume on any day for any market on any exchange:
=CRYPTOFINANCE("KRAKEN:ETH/BTC", "ath_volume")
Currently not available for Airtable. Coming soon...
Last modified 5mo ago