Metadata-Version: 2.1
Name: rusquant
Version: 0.1.2
Summary: Quantitative Trading Framework
Home-page: https://github.com/arbuzovv/rusquant
Author: V.Arbuzov
Author-email: arbuzov1989@gmail.com
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests

# rusquant

### Intro
Rusquant is a package for interaction with alternative data, trading API of different exchanges and brokers. Package provides access to market data for storage, analysis, algorithmic trading, strategy backtesting. Also this is data downloader from different data sources starting from close price to order book and tradelog.

### Installation

```r
pip install pyrusquant
```
### Getting Started

It is possible to import data from a variety of sources with one rusquant
function: `get_symbols()` and datasource (as example gigapack). For example:

``` r
from pyrusquant.services import gigapack
df0 = gigapack.get_symbols(symbols=['SBER', 'LKOH'], fake=True, type_data='candles')
df1 = gigapack.get_symbols(symbols=['SBER', 'LKOH'], fake=False, type_data='candles')
df2 = gigapack.get_symbols(symbols=['SBER', 'LKOH'], fake=True, type_data='tech')
df3 = gigapack.get_symbols(symbols=['SBER', 'LKOH'], fake=False, type_data='tech')
```
