GregoryMorse / trendln

Support and Resistance Trend lines Calculator for Financial Analysis
MIT License
663 stars 162 forks source link

Getting error for minimaIdxs, pmin, mintrend, minwindows #24

Open ketulshah84 opened 3 years ago

ketulshah84 commented 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.