Metadata-Version: 2.4
Name: gq-sdk
Version: 0.1.5
Summary: Python SDK for GoQuant Trading Platform
Project-URL: Homepage, https://goquant.io
Project-URL: Documentation, https://docs.goquant.io
Project-URL: Repository, https://github.com/goquant/gq-sdk
Author-email: GoQuant <support@goquant.io>
License: Proprietary
License-File: LICENSE
Keywords: algorithmic-trading,api,goquant,sdk,trading
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Financial and Insurance Industry
Classifier: License :: Other/Proprietary License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Office/Business :: Financial :: Investment
Requires-Python: >=3.9
Requires-Dist: requests>=2.28.0
Requires-Dist: websocket-client>=1.4.0
Provides-Extra: dev
Requires-Dist: pytest-asyncio>=0.21.0; extra == 'dev'
Requires-Dist: pytest>=7.0.0; extra == 'dev'
Description-Content-Type: text/markdown

# gq-sdk

Python SDK for the GoQuant Trading Platform.

## Installation

```bash
pip install gq-sdk
```

## Quick Start

```python
from gq_sdk import Client

client = Client("https://your-backend-url.com", "your-api-key")
client.authenticate("email", "password")
client.login_exchange("okx", "account", "key", "secret", "pass")
algo_id = client.place_market_edge_order("okx", "account", "BTC-USDT-SWAP", "buy", 0.01, 60)
print(f"Order: {algo_id}")
```

## Documentation

For full API documentation: https://docs.goquant.io

## Support

Email: support@goquant.io

## License

Proprietary License - See LICENSE file for details.
