From 5ac225f531283721b250981e14be2d928cc44fbe Mon Sep 17 00:00:00 2001 From: "W. Latif Ayubi" Date: Wed, 2 Jul 2025 14:58:24 -0700 Subject: [PATCH] Added "minute" to the inverval_check for crypto.py --- robin_stocks/robinhood/crypto.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/robin_stocks/robinhood/crypto.py b/robin_stocks/robinhood/crypto.py index bb88fdd5..e730f68f 100644 --- a/robin_stocks/robinhood/crypto.py +++ b/robin_stocks/robinhood/crypto.py @@ -213,7 +213,7 @@ def get_crypto_historicals(symbol, interval='hour', span='week', bounds='24_7', if interval not in interval_check: print( - 'ERROR: Interval must be "15second","5minute","10minute","hour","day",or "week"', file=get_output()) + 'ERROR: Interval must be "15second","5minute","10minute","minute","hour","day",or "week"', file=get_output()) return([None]) if span not in span_check: print('ERROR: Span must be "hour","day","week","month","3month","year",or "5year"', file=get_output())