im using anaconda.
display no module candlestrick and mpl_finanace
anybody say how to install candlestrick in anaconda
where i can get candlestrick
You can use below command to install candlestick and mpl_finance from Jupyter notebook
!pip install module_name
You can refer more about the installation process from here: https://blog.quantinsti.com/installing-python-packages/
i trie in jupter.
it displays error msg "
Could not find a version that satisfies the requirement candelstrick (from versions: none) ERROR: No matching distribution found for candelstrick
"
You can follow below steps
- Run the below command from the Jupyter notebook
!pip install mpl_finance
2. Then import mpl_finance and candlesticks as shown below
import mpl_finance as mpf
from mpl_finance import candlestick_ohlc
Note: candlestick_ohlc is part of mpl_finance therefore you need to only install mpl_finance
Thank you.
i tried. but display error ERROR: Could not find a version that satisfies the requirement mpl_finanace (from versions: none) ERROR: No matching distribution found for mpl_finanace
I just tried this code and it is working fine.
!pip install mpl_finance
If this is not working. Try installing mpl_finance using Anaconda prompt.
Open the Anaconda prompt from start tab and type the following command.
pip install mpl_finance
I INSTALLED.
pip install mpl_finance=0.10.0