We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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.
The text was updated successfully, but these errors were encountered: