Metadata-Version: 2.1
Name: tradovate
Version: 0.0.1
Summary: The package fetch data from tradovate.
Home-page: https://github.com/dearvn/tradovate
Author: Donald
Author-email: donald.nguyen.it@gmail.com
License: MIT
Project-URL: Bug Tracker, https://github.com/dearvn/tradovate/issues
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.6.0
Description-Content-Type: text/markdown
License-File: LICENSE


# Information
This package to connect TradOvate API
## Installation
```bash

# Create an isolated Python virtual environment
pip3 install virtualenv
virtualenv ./virtualenv --python=$(which python3)

# Activate the virtualenv
# IMPORTANT: it needs to be activated every time before you run
. virtualenv/bin/activate

# Install Python requirements
pip install -r requirements.txt

# Install cointrol-*
pip install -e .

# Set param enviroment env.env
TO_ENV=DEMO
TO_NAME=Your credentials here
TO_PASSWORD=Your credentials here
TO_APPID="Sample App"
TO_CID=0
TO_SEC=Your API secret here

# run test
python -m test

