Metadata-Version: 2.1
Name: stockdatamanager
Version: 0.6
Summary: A comprehensive library for financial analysis
Home-page: https://github.com/GiorgioMB/stockdatafetcher/
Author: Giorgio Micaletto
Author-email: giorgio.micaletto@studbocconi.it
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pandas>=1.1.5
Requires-Dist: yfinance>=0.1.63
Requires-Dist: requests>=2.25.1
Requires-Dist: pandas-datareader>=0.10.0
Requires-Dist: numpy>=1.23

# StockDataManager
This Python library offers a combination of technical analysis tools and fundamental data retrieval functionalities, designed to support investors, researchers, and enthusiasts in the financial markets. Utilizing the yfinance library, it provides easy access to historical stock data, financial statements, and key financial metrics from Yahoo Finance, alongside a suite of technical indicators for market analysis.
## Features
- **Technical Analysis (`Transform` Class)**: Over 30 technical indicators, including Moving Averages, MACD, Bollinger Bands, RSI, Ichimoku Cloud, and more, to dissect stock market trends and volatility.
- **Fundamental Analysis (`Fetcher` Class)**: Fetch historical stock data, income statements, balance sheets, cash flows, and key financial ratios (e.g., P/E, ROE, current ratio) for in-depth fundamental analysis.

## Installation

```bash
pip install stockdatamanager
```
## Quick Start
```python
from stockdatamanager import Fetcher, Transform

# Fetch historical data and financial statements for analysis
fetcher = Fetcher(ticker='AAPL')
print(fetcher.get_pe_ratio())

# Apply technical analysis on fetched data
transform = Transform(dataframe=fetcher.df)
df_with_rsi = transform.calculate_RSI()
```
## Usage
### Fetching Data
```python
fetcher = Fetcher(ticker='AAPL')
income_statement = fetcher.get_income_statement()
```
### Calculating Technical Indicators
```python
transform = Transform(dataframe=fetcher.df)
df_with_macd = transform.calculate_MACD()
```
## Contributions
Contributions to stockdatamanager are welcome! If you have suggestions for improvement or new features, feel free to open an issue or submit a pull request.
***
## License
stockdatamanager is made available under the MIT License. See the LICENSE file for more details.
## Contacts
Email: giorgio.micaletto@studbocconi.it

