Metadata-Version: 2.4
Name: pandastock
Version: 0.0.6
Summary: Pandas extension for financial data processing and visualization
Author-email: Alexey Sheshukov <alexeyshesh@yandex.ru>
License: GPL-3.0-or-later
Project-URL: Homepage, https://github.com/alexeyshesh/pandastock
Project-URL: Repository, https://github.com/alexeyshesh/pandastock
Project-URL: Issues, https://github.com/alexeyshesh/pandastock/issues
Keywords: pandas,finance,trading,candlestick,technical-indicators,visualization,stock,charting
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Financial and Insurance Industry
Classifier: Intended Audience :: Developers
Classifier: Topic :: Office/Business :: Financial
Classifier: Topic :: Scientific/Engineering :: Visualization
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Operating System :: OS Independent
Requires-Python: >=3.11
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pandas
Requires-Dist: matplotlib
Dynamic: license-file

# Pandastock

A simple pandas extension for financial data processing and visualization. Pandastock makes it easy to plot candlestick charts from pandas DataFrames and overlay technical indicators.

## Key features

- 📊 **DataFrame Charting:** Build charts right from pandas DataFrame
- 📈 **Technical Indicators:** Built-in support for most popular indicators and interface for adding new indicators
- 🔄 **Streaming support:** Real-time indicator calculation with `next_value()`
- 📁 **Easy Data Loading**: Convenient functions to load candle data from single CSV file, list of files or directory

## Installation

```bash
pip install pandastock
```

Or install from source:

```bash
git clone https://github.com/alexeyshesh/pandastock.git
cd pandastock
pip install -e .
```

## Quick Start

### Basic Usage

```python
import pandas as pd
from pandastock.candles import read_candles_from_csv
from pandastock.indicators import RSI, SMA, MACD

# Load candlestick data from CSV
# CSV must have columns: timestamp, open, high, low, close, volume
df = read_candles_from_csv('data.csv')

# Add indicators
df.candles.add_indicators(
    rsi_14=RSI(period=14),
    sma_20=SMA(window=20),
    macd=MACD()
)

# Plot the chart
df.candles.plot('2025-01-13 20:10:00', window=30)
```

![example-1.png](https://raw.githubusercontent.com/alexeyshesh/pandastock/master/img/example-1.png)

## Data Loading

Pandastock provides several convenient functions to load candlestick data:

### Load from Single CSV File

```python
from pandastock.candles import read_candles_from_csv

# Load data from a single CSV file
df = read_candles_from_csv('data.csv')

# Optional: Aggregate data to different timeframes
df_hourly = read_candles_from_csv('data.csv', agg='1H')
df_daily = read_candles_from_csv('data.csv', agg='1D')

# Optional: Remove weekend data
df = read_candles_from_csv('data.csv', remove_weekend=True)
```

### Load from Multiple CSV Files

```python
from pandastock.candles import read_candles_from_csv_list

# Load and combine multiple CSV files
df = read_candles_from_csv_list([
    'data_2025-01-01.csv',
    'data_2025-01-02.csv',
    'data_2025-01-03.csv'
])
```

### Load from Directory Range

```python
from pandastock.candles import read_candles_csv_range

# Load all CSV files in a directory within a date range
df = read_candles_csv_range(
    dir='data/YDEX',
    from_='2025-01-01',
    to_='2025-01-31',
    agg='1H'
)
```

## Available Indicators

Pandastock provides several built-in indicators:

- RSI (Relative Strength Index)
- SMA (Simple Moving Average)
- LSMA (Least Squares Moving Average)
- MACD (Moving Average Convergence Divergence)
- Stochastic RSI

Example:

```python
from pandastock.indicators import RSI

# Create RSI indicator with default period (14)
rsi = RSI()

# Custom period
rsi_20 = RSI(period=20)

# Add to dataframe
df.candles.add_indicators(rsi=rsi)
```

## Plotting

### Basic Plot

```python
# Plot centered on a specific timestamp
df.candles.plot('2025-01-13 20:10:00')
```

### Custom Window Size

```python
# Plot with custom window size (number of candles on each side)
df.candles.plot('2025-01-13 20:10:00', window=50)
```

### Date Range

```python
# Plot specific date range
df.candles.plot(
    center_time='2025-01-13 20:10:00',
    from_='2025-01-01',
    to_='2025-01-31'
)
```

### Custom Figure Size

```python
# Plot with custom figure size
df.candles.plot('2025-01-13 20:10:00', figsize=(16, 12))
```

## Complete Example

Here's a complete example showing how to use pandastock:

```python
import pandas as pd
from pandastock.candles import read_candles_csv_range
from pandastock.indicators import RSI, SMA, MACD, StochasticRSI, LSMA

# Load data from multiple CSV files in a directory
df = read_candles_csv_range(
    dir='data/YDEX',
    from_='2025-01-01',
    to_='2025-01-31',
    agg='1H'
)

# Add multiple indicators
df.candles.add_indicators(
    # Overlaid indicators (plotted on the same chart as candles)
    sma_20=SMA(window=20),
    sma_50=SMA(window=50),
    lsma_30=LSMA(window=30),

    # Under indicators (plotted in separate subplots)
    rsi_14=RSI(period=14),
    macd=MACD(fast=12, slow=26, signal=9),
    stoch_rsi=StochasticRSI(period=14, k=3, d=3)
)

# Plot the chart
df.candles.plot(
    center_time='2025-01-15 10:00:00',
    window=40,
    figsize=(14, 10)
)

# Access indicator values
print(df[['close', 'sma_20__sma', 'sma_50__sma', 'rsi_14__rsi']].tail())
```

## Indicator Plot Positions

Indicators can be plotted in two positions:

- **Over** (`PlotPosition.over`): Plotted on the same chart as candlesticks (e.g., SMA, LSMA)
- **Under** (`PlotPosition.under`): Plotted in separate subplots below the main chart (e.g., RSI, MACD, StochasticRSI)

## Streaming Support

All indicators support streaming data processing with the `next_value()` method:

```python
from pandastock.indicators import RSI

# Create indicator
rsi = RSI(period=14)

# Process candles one by one (streaming)
for _, candle in df.iterrows():
    result = rsi.next_value(candle)
    print(f"RSI: {result['rsi']}")
```

## Data Format

Your CSV files should have the following columns:

- `timestamp`: Date and time of the candle
- `open`: Opening price
- `high`: Highest price
- `low`: Lowest price
- `close`: Closing price
- `volume`: Trading volume

Example CSV format:
```csv
timestamp,open,high,low,close,volume
2025-01-01 00:00:00,100.0,105.0,99.0,104.0,1000
2025-01-01 01:00:00,104.0,108.0,103.0,107.0,1200
2025-01-01 02:00:00,107.0,110.0,106.0,109.0,900
```

## License

GPL 3.0 License - see LICENSE file for details.

## Contributing

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

## Author

Alexey Sheshukov - [alexeyshesh@yandex.ru](mailto:alexeyshesh@yandex.ru)

## Links

- [GitHub Repository](https://github.com/alexeyshesh/pandastock)
- [Homepage](https://github.com/alexeyshesh/pandastock)
