Metadata-Version: 2.4
Name: trading-data-client
Version: 0.2.0
Summary: Python client library for Trading Data Server - fetch historical and real-time market data
Home-page: https://github.com/benjamincham/moonbase_Datahub
Author: Benjamin Cham
Author-email: Benjamin Cham <benjamincham@users.noreply.github.com>
License: MIT
Project-URL: Homepage, https://github.com/benjamincham/moonbase_Datahub
Project-URL: Documentation, https://github.com/benjamincham/moonbase_Datahub#readme
Project-URL: Repository, https://github.com/benjamincham/moonbase_Datahub
Project-URL: Bug Tracker, https://github.com/benjamincham/moonbase_Datahub/issues
Keywords: trading,market-data,ohlcv,real-time,streaming,alpaca,yfinance,historical-data
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Financial and Insurance Industry
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Office/Business :: Financial
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests>=2.28.0
Requires-Dist: pyzmq>=25.0.0
Requires-Dist: pydantic>=2.0.0
Requires-Dist: python-dateutil>=2.8.0
Requires-Dist: backtrader>=1.9.76.123
Provides-Extra: dev
Requires-Dist: pytest>=7.0.0; extra == "dev"
Requires-Dist: pytest-cov>=4.0.0; extra == "dev"
Requires-Dist: pytest-mock>=3.10.0; extra == "dev"
Requires-Dist: responses>=0.22.0; extra == "dev"
Requires-Dist: mypy>=1.0.0; extra == "dev"
Requires-Dist: flake8>=6.0.0; extra == "dev"
Requires-Dist: black>=23.0.0; extra == "dev"
Dynamic: author
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python

# Trading Data Client

A Python client library for the Trading Data Server. Provides a simple, intuitive interface for fetching historical OHLCV data and subscribing to real-time market data streams.

## Features

- 📊 **Historical Data**: Fetch OHLCV bars via REST API
- 🔴 **Real-Time Streaming**: Subscribe to live market data via ZeroMQ
- ⏯️ **Historical Playback**: Replay historical data at controlled speeds
- 🔒 **Type Safe**: Full type hints with Pydantic models
- 🧵 **Thread Safe**: Safe for concurrent use
- 🎯 **Simple API**: Intuitive interface with context manager support
- ⚡ **High Performance**: Efficient data handling with minimal overhead
- ✅ **Well Tested**: 99% test coverage with 104 passing tests
- 📈 **Backtrader Integration**: Seamless backtesting with backtrader framework

## Installation

```bash
pip install trading-data-client
```

## Quick Start

### Historical Data

```python
from trading_data_client import TradingDataClient
from datetime import datetime, timedelta

# Create client
client = TradingDataClient(server_url="http://localhost:8000")

# Fetch historical bars
bars = client.get_historical_bars(
    symbol="AAPL",
    start=datetime.now() - timedelta(days=30),
    end=datetime.now(),
    timeframe="1d"
)

# Process bars
for bar in bars:
    print(f"{bar.timestamp}: O={bar.open} H={bar.high} L={bar.low} C={bar.close} V={bar.volume}")

client.close()
```

### Real-Time Streaming

```python
from trading_data_client import TradingDataClient

def on_bar(bar):
    print(f"New bar: {bar.symbol} @ {bar.timestamp}: Close={bar.close}")

# Create client
client = TradingDataClient(
    server_url="http://localhost:8000",
    zmq_address="tcp://localhost:5555"
)

# Subscribe to real-time stream
subscription_id = client.subscribe("AAPL", "1m", callback=on_bar, poll_interval=60)

# Keep running
try:
    client.run()  # Blocks until interrupted
except KeyboardInterrupt:
    client.close()
```

### Historical Playback

```python
from trading_data_client import TradingDataClient
from datetime import datetime, timedelta

def on_playback_bar(bar):
    print(f"Playback: {bar.timestamp}: Close={bar.close}")

client = TradingDataClient(
    server_url="http://localhost:8000",
    zmq_address="tcp://localhost:5555"
)

# Replay last 7 days at 10x speed
playback_id = client.playback(
    symbol="AAPL",
    start=datetime.now() - timedelta(days=7),
    end=datetime.now(),
    timeframe="1m",
    speed=10.0,
    callback=on_playback_bar
)

# Stop after some time
import time
time.sleep(60)
client.stop_playback(playback_id)
client.close()
```

### Context Manager

```python
from trading_data_client import TradingDataClient
from datetime import datetime, timedelta

with TradingDataClient() as client:
    bars = client.get_historical_bars(
        "AAPL",
        datetime.now() - timedelta(days=7),
        datetime.now(),
        "1d"
    )
    print(f"Fetched {len(bars)} bars")
# Automatic cleanup
```

### Backtrader Integration

Use the Trading Data Server as a data source for backtrader backtesting:

```python
import backtrader as bt
from trading_data_client.backtrader import DatahubStore
from datetime import datetime

# Create Cerebro engine
cerebro = bt.Cerebro()

# Create store
store = DatahubStore(server_url='http://localhost:8000')

# Create data feed
data = store.getdata(
    symbol='AAPL',
    fromdate=datetime(2023, 1, 1),
    todate=datetime(2023, 12, 31),
    timeframe=bt.TimeFrame.Days
)

# Add data to Cerebro
cerebro.adddata(data)

# Add strategy
cerebro.addstrategy(bt.strategies.SMA_CrossOver)

# Set broker
broker = store.getbroker()
cerebro.setbroker(broker)
cerebro.broker.setcash(100000.0)
cerebro.broker.setcommission(commission=0.001)

# Run backtest
print(f'Starting Value: ${cerebro.broker.getvalue():.2f}')
results = cerebro.run()
print(f'Final Value: ${cerebro.broker.getvalue():.2f}')

# Plot results
cerebro.plot()
```

**Features:**
- 🔌 Seamless integration with backtrader
- 🚀 Fast backtesting with server-side caching
- 📊 All timeframes supported (1m, 5m, 15m, 30m, 1h, 4h, 1d, 1w, 1mo)
- 🔄 Connection reuse across multiple data feeds
- 🛡️ Robust error handling with automatic retry

**Documentation:**
- [Backtrader Quick Start](trading_data_client/backtrader/QUICKSTART.md)
- [Backtrader Full Documentation](trading_data_client/backtrader/README.md)
- [Example Scripts](examples/)

## Configuration

### Environment Variables

```bash
export TRADING_SERVER_URL="http://localhost:8000"
export TRADING_ZMQ_ADDRESS="tcp://localhost:5555"
export TRADING_CLIENT_TIMEOUT=30
export TRADING_CLIENT_MAX_RETRIES=3
```

### Programmatic Configuration

```python
client = TradingDataClient(
    server_url="http://production-server:8000",
    zmq_address="tcp://production-server:5555",
    timeout=60,
    max_retries=5
)
```

## Documentation

- [Quick Start Guide](docs/quickstart.md)
- [API Reference](docs/api_reference.md)
- [Examples](docs/examples.md)
- [Trading Data Server](http://localhost:8000/docs)

## Requirements

- Python 3.10+
- Trading Data Server running and accessible

## Dependencies

- `requests` - HTTP client for REST API
- `pyzmq` - ZeroMQ Python bindings for streaming
- `pydantic` - Data validation and serialization
- `python-dateutil` - Date/time parsing

## Development

### Install Development Dependencies

```bash
pip install -e ".[dev]"
```

### Run Tests

```bash
# Run all tests
pytest

# Run with coverage
pytest --cov=trading_data_client --cov-report=html

# Run specific test file
pytest tests/unit/test_models.py

# Run with timeout enforcement
pytest --timeout=60
```

### Test Coverage

The library has **99% test coverage** with **104 comprehensive tests**:

- ✅ HistoricalClient: 100% coverage (21 tests)
- ✅ StreamClient: 100% coverage (26 tests)
- ✅ Main Client: 97% coverage (24 tests)
- ✅ Models: 94% coverage (15 tests)
- ✅ Utils: 100% coverage (14 tests)
- ✅ Config: 100% coverage (6 tests)

All tests pass in < 10 seconds. See [FINAL_TEST_REPORT.md](FINAL_TEST_REPORT.md) for details.

### Type Checking

```bash
mypy trading_data_client/
```

### Code Formatting

```bash
black trading_data_client/ tests/
```

### Linting

```bash
flake8 trading_data_client/
```

## Examples

See the [examples/](examples/) directory for more usage examples:

**Client Library:**
- `fetch_historical.py` - Fetching historical data
- `stream_realtime.py` - Real-time streaming

**Backtrader Integration:**
- `backtrader_single_symbol.py` - Single symbol backtest with SMA crossover
- `backtrader_multi_symbol.py` - Multi-symbol pairs trading strategy
- `backtrader_multi_timeframe.py` - Multi-timeframe analysis strategy

## Error Handling

```python
from trading_data_client import (
    TradingDataClient,
    ConnectionError,
    ClientError,
    ServerError
)

client = TradingDataClient()

try:
    bars = client.get_historical_bars("AAPL", start, end, "1d")
except ConnectionError as e:
    print(f"Cannot connect to server: {e}")
except ClientError as e:
    print(f"Client error {e.status_code}: {e}")
except ServerError as e:
    print(f"Server error {e.status_code}: {e}")
finally:
    client.close()
```

## Thread Safety

- `get_historical_bars()` - Thread-safe, can be called concurrently
- `subscribe()` / `unsubscribe()` - Thread-safe subscription management
- Callbacks are invoked from a background thread - ensure your callback is thread-safe

## Performance

- **Historical Data**: < 100ms for cached data (server-dependent)
- **Streaming**: < 10ms from message receipt to callback invocation
- **Throughput**: Can handle 1000+ messages/second
- **Memory**: Minimal overhead, no buffering

## License

MIT License - see [LICENSE](LICENSE) file for details.

## Contributing

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

## Support

- GitHub Issues: https://github.com/example/trading-data-client/issues
- Documentation: https://trading-data-client.readthedocs.io

## Changelog

See [CHANGELOG.md](CHANGELOG.md) for version history.
