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
Windows PL, Python cannon generte chasrt. I think ther is something with charset?
Programs\Python\Python312\Lib\encodings\cp1250.py", line 23, in decode return codecs.charmap_decode(input,self.errors,decoding_table)[0]
no able to display chart
# Simple chart form MetaTrader5 def display_chart(rolling_window): chart = StreamlitChart(width=1200, height=600) chart.legend(visible=True) df = rolling_window.copy() df.rename(columns={'time': 'time', 'Close': 'close', 'Open': 'open', 'High': 'high', 'Low': 'low'}, inplace=True) df['time'] = pd.to_datetime(df['time'], unit='s') chart.set(df) chart.load()
- OS: Windows 11 PL - Library: 2.1
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Expected Behavior
Windows PL, Python cannon generte chasrt. I think ther is something with charset?
Programs\Python\Python312\Lib\encodings\cp1250.py", line 23, in decode
return codecs.charmap_decode(input,self.errors,decoding_table)[0]
Current Behaviour
no able to display chart
Reproducible Example
Environment
The text was updated successfully, but these errors were encountered: