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
Utilizing Plotly to make a "Coin-USD" market data Candlestick plot
Required Packages
NumPy
Pandas
Matplotlib
yfinance
Plotly
kaleido
Random (Python built-in)
Default function - get_crypto_visuals —————————–––––––––––––––– def get_crypto_visuals(coin, period='5d', interval='15m', MA=False,days=[7,25,99], boll=False, boll_sma=25, save_fig=False, img_format='png'): “”” ----------------------SKIPPING PARAMETER DESCRIPTION TO END OF DOCSTRING-------------------- Examples of valid use ---------------- >>> get_crypto_visuals("ETH") >>> get_crypto_visuals("ETH", MA=True) >>> get_crypto_visuals("ETH", period="5d", interval="15m",MA=True, days=[5, 20], save_fig=True) >>> get_crypto_visuals("ETH", period="5d", interval="15m", boll=True, boll_sma=26, save_fig=True, img_format='jpeg') ”””
-------Main Code goes here-------
The text was updated successfully, but these errors were encountered:
invest41
Successfully merging a pull request may close this issue.
Utilizing Plotly to make a "Coin-USD" market data Candlestick plot
Required Packages
NumPy
Pandas
Matplotlib
yfinance
Plotly
kaleido
Random (Python built-in)
✅ - signifies packages currently in requirements.txt
-------Main Code goes here-------
End Result Snippet
The text was updated successfully, but these errors were encountered: