Open ketulshah84 opened 3 years ago
import trendln from nsepy import get_history from datetime import datetime import matplotlib.pyplot as plt
start_date = datetime(2020, 1, 1) end_date = datetime(2021, 2, 10) stock_history = get_history(symbol="SBIN", start=start_date, end=end_date) minvals, maxvals = trendln.calc_support_resistance(stock_history['Close'], accuracy=2) minimaIdxs, pmin, mintrend, minwindows = trendln.calc_support_resistance(stock_history['Low'], None) #support only
Getting error: ValueError: not enough values to unpack (expected 4, got 2) Backend TkAgg is interactive backend. Turning interactive mode on.
import trendln from nsepy import get_history from datetime import datetime import matplotlib.pyplot as plt
start_date = datetime(2020, 1, 1) end_date = datetime(2021, 2, 10) stock_history = get_history(symbol="SBIN", start=start_date, end=end_date) minvals, maxvals = trendln.calc_support_resistance(stock_history['Close'], accuracy=2) minimaIdxs, pmin, mintrend, minwindows = trendln.calc_support_resistance(stock_history['Low'], None) #support only
Getting error: ValueError: not enough values to unpack (expected 4, got 2) Backend TkAgg is interactive backend. Turning interactive mode on.