piker/README.rst

40 lines
1.0 KiB
ReStructuredText
Raw Normal View History

2018-01-20 18:19:15 +00:00
piker
------
2018-01-27 06:52:24 +00:00
Anti-fragile trading gear for hackers, scientists, quants and underpants warriors.
Install
*******
``piker`` is currently under heavy alpha development and as such should
be cloned from this repo and hacked on directly.
2018-02-12 15:55:04 +00:00
A couple very alpha components are being used atm pertaining to
async ports of libraries for use with ``trio``.
Before installing make sure you have ``pip`` and ``virtualenv``.
Then for a development install::
git clone git@github.com:pikers/piker.git
cd piker
virtualenv env
source ./env/bin/activate
pip install cython
pip install -e ./ -r requirements.txt
2018-02-12 15:55:04 +00:00
To start the real-time watchlist::
piker watch cannabis
2018-02-12 15:55:04 +00:00
2018-01-27 06:52:24 +00:00
If you insist on trying to install it (which should work) please do it
from this GitHub repository::
pip install git+git://github.com/pikers/piker.git
Tech
****
``piker`` is an attempt at a pro-grade, next-gen open source toolset
for trading and financial analysis. As such, it tries to use as much
cutting edge tech as possible including Python 3.6+ and ``trio``.