Metadata-Version: 2.4
Name: skyblue-bridge
Version: 0.1.0
Summary: Python client for the SkyBlue Bridge microservice to communicate with MetaTrader 4/5 trading terminals.
Author-email: SkyBlue Fintech Solutions LLP <vignesh.k@skybluefin.tech>
License: Proprietary
Keywords: mt5,trading,bridge,skyblue,mt4,forex,crypto,metaquotes,metatrader,mql5,mql4
Classifier: Programming Language :: Python :: 3
Classifier: License :: Other/Proprietary License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: requests<3.0,>=2.31
Requires-Dist: pandas<3.0,>=2.0

# SkyBlue Bridge

Python client for interacting with the SkyBlue MT5 bridge microservice.

## Installation

```bash
pip install skyblue-bridge
```

## Usage

```python
from skyblue_bridge import MTClient

client = MTClient(api_key="your-api-key")
print(client.get_server_status())
```
