Skip to content
New issue

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

Modification to Folder structure #2

Merged
merged 5 commits into from
May 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# AlgoTrade - A Generic Python Package for Stock Market Analysis and Trading
# Trade - A Generic Python Package for Stock Market Analysis and Trading

### Overview

AlgoTrade is a powerful and flexible Python library designed to simplify the process of working with stock market data. It provides a comprehensive set of tools and utilities to handle, analyze, and visualize stock data, enabling developers and analysts to build dynamic stock scanners, trading strategies, and other financial applications with ease.
Trade is a powerful and flexible Python library designed to simplify the process of working with stock market data. It provides a comprehensive set of tools and utilities to handle, analyze, and visualize stock data, enabling developers and analysts to build dynamic stock scanners, trading strategies, and other financial applications with ease.


### Key Features
Expand All @@ -16,17 +16,17 @@ AlgoTrade is a powerful and flexible Python library designed to simplify the pro
To install the AlgoTrade package, use pip:

```
pip install algotrade
pip install trade
```

### Usage

Here's a simple example of how to use the AlgoTrade package to fetch and analyze stock data:
Here's a simple example of how to use the Trade package to fetch and analyze stock data:
python

```
from algotrade.data import StockDataFetcher
from algotrade.indicators import MovingAverage
from trade.data import StockDataFetcher
from trade.indicators import MovingAverage

# Fetch stock data for Apple (AAPL)
fetcher = StockDataFetcher()
Expand All @@ -42,4 +42,4 @@ sma_20.plot(label='SMA-20')

### Documentation

For detailed documentation, examples, and API reference, please visit the [AlgoTrade GitHub repository](https://github.com/sharmasourab93/AlgoTrade).
For detailed documentation, examples, and API reference, please visit the [Trade GitHub repository](https://github.com/sharmasourab93/Trade).
Empty file.
3 changes: 1 addition & 2 deletions tests/test_data_handler/test_calendar/test_calendar_data.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
from datetime import datetime, timedelta

import pytest

from algotrade.data_handler.calendar.calendar_data import (
from trade.calendar.calendar_data import (
DATE_FMT,
WEEKDAY_TO_ISO,
DateObj,
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from typing import List, NewType

from algotrade.data_handler.calendar.calendar_data import (
from trade.calendar.calendar_data import (
MarketHolidayType,
MarketTimingType,
WorkingDayDate,
Expand Down
Loading