Metadata-Version: 2.4
Name: algo-trade-v1
Version: 0.1.0
Summary: A Python library for algorithmic trading analysis
Home-page: https://github.com/yourusername/Algo_Trade_v1
Author: Ahmad Syafiq Kamil
Author-email: your.email@example.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pandas
Requires-Dist: numpy
Requires-Dist: yfinance
Requires-Dist: ta
Requires-Dist: requests
Requires-Dist: beautifulsoup4
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# Algo Trade V1

A Python library for algorithmic trading analysis that provides various tools for market analysis, including technical analysis, fundamental analysis, and pump detection.

## Features

- Technical Analysis Tools
- Fundamental Analysis
- Pump Detection
- Volume Profile Analysis
- Signal Analysis
- Data Fetching Utilities

## Installation

You can install the package using pip:

```bash
pip install algo-trade-v1
```

## Usage

Here's a basic example of how to use the library:

```python
from algo_trade_v1.libs import technical_analyzer, fundamental_analyzer, pump_ranking_analyzer

# Technical Analysis
analyzer = technical_analyzer.TechnicalAnalyzer()
# Your analysis code here

# Fundamental Analysis
fundamental = fundamental_analyzer.FundamentalAnalyzer()
# Your fundamental analysis code here

# Pump Detection
pump_detector = pump_ranking_analyzer.PumpRankingAnalyzer()
# Your pump detection code here
```

## Documentation

For detailed documentation, please visit our [documentation page](https://github.com/yourusername/Algo_Trade_v1/wiki).

## Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

## License

This project is licensed under the MIT License - see the LICENSE file for details. 
