CT_LOW

Get the 24-hour low price for any cryptocurrency directly in Google Sheets. Spot daily bottoms and track support levels with one formula.

Syntax

=CT_LOW(symbol)

Parameters

ParameterRequiredDescriptionExample
symbolYesCryptocurrency ticker"BTC"

Examples

FormulaResultDescription
=CT_LOW("BTC")$66,800.00Bitcoin 24h low
=CT_LOW("ETH")$3,150.20Ethereum 24h low
=CT_LOW("SOL")$122.10Solana 24h low
=CT_LOW("ADA")$0.58Cardano 24h low

Common use cases

Calculate daily volatility

Measure the daily price range as a percentage. Higher values mean more volatile trading days.

=(CT_HIGH("BTC") - CT_LOW("BTC")) / CT_LOW("BTC") * 100

Build a volatility column across your watchlist to compare coins side by side.

Buy-the-dip tracker

Track how close the current price is to the daily low. A small gap may signal a buying opportunity.

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

Use conditional formatting to highlight coins trading within 1% of their daily low:

  • Green: within 1% of 24h low
  • Yellow: within 5% of 24h low
  • Neutral: more than 5% above 24h low

Troubleshooting

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