CT_HIGH

Get the 24-hour high price for any cryptocurrency directly in Google Sheets. Track daily price peaks with a single formula.

Syntax

=CT_HIGH(symbol)

Parameters

ParameterRequiredDescriptionExample
symbolYesCryptocurrency ticker"BTC"

Examples

FormulaResultDescription
=CT_HIGH("BTC")$68,100.00Bitcoin 24h high
=CT_HIGH("ETH")$3,290.45Ethereum 24h high
=CT_HIGH("SOL")$128.50Solana 24h high
=CT_HIGH("ADA")$0.62Cardano 24h high

Common use cases

Daily range analysis

Combine 24h high and low to measure daily volatility. Wider ranges signal higher trading activity.

=CT_HIGH("BTC") - CT_LOW("BTC")

Express it as a percentage of current price:

=(CT_HIGH("BTC") - CT_LOW("BTC")) / CT_PRICE("BTC")

Set price alert thresholds

Use the 24h high as a breakout reference. If the current price approaches or exceeds the daily high, it may signal momentum.

ABC
1Coin24h HighCurrent
2BTC=CT_HIGH("BTC")=CT_PRICE("BTC")
3ETH=CT_HIGH("ETH")=CT_PRICE("ETH")

Add a column with =IF(C2 >= B2 * 0.99, "NEAR HIGH", "") to flag coins near their daily peak.

Troubleshooting

ProblemSolution
Returns #ERROR!Check the ticker symbol spelling
Returns N/AThis coin may not be in the free plan
High equals current priceThe coin just set a new 24h high
Stale dataPress Ctrl+Shift+F9 to force refresh
  • CT_LOW — Get 24-hour low price
  • CT_PRICE — Get current coin price
  • CT_CHANGE — Get 24-hour price change percentage