Commit Graph

43 Commits

Author SHA1 Message Date
Victor Grau Serrat 4337abd60a DOC: linking example_algo to their sources 2018-02-21 15:51:34 -07:00
Victor Grau Serrat 2c1f810163 DOC: pycharm: improved upon #195 2018-02-09 11:10:32 -08:00
Victor 77570f03eb Merge pull request #195 from izokay/develop
PyCharm Documentation
2018-02-09 11:17:16 -07:00
Victor Grau Serrat dcdb3d9d7a MAINT: removing many warnings from building docs 2018-02-09 00:07:38 -07:00
izokay 1f29f7fdf1 Update beginner-tutorial.rst 2018-01-29 17:31:32 -05:00
izokay cbae2465d2 Update beginner-tutorial.rst 2018-01-29 17:27:58 -05:00
izokay 4a4e32846b Update beginner-tutorial.rst 2018-01-29 17:27:14 -05:00
izokay 426fde40b1 Update beginner-tutorial.rst 2018-01-29 17:24:21 -05:00
izokay e9a3bcf3e9 Update beginner-tutorial.rst 2018-01-29 17:23:22 -05:00
izokay 5b77f5eeba Update beginner-tutorial.rst 2018-01-29 17:23:00 -05:00
izokay 5417881a72 Update beginner-tutorial.rst 2018-01-29 17:21:53 -05:00
izokay 1cadaf1ed0 Update beginner-tutorial.rst 2018-01-29 17:19:44 -05:00
izokay 929e0a9a01 Update beginner-tutorial.rst 2018-01-29 17:18:16 -05:00
izokay 15aadbb101 documentation for PyCharm 2018-01-29 17:14:15 -05:00
Victor 8d3f3ba81d Merge branch 'develop' into tutorial-fixes 2018-01-12 14:01:47 -07:00
Victor Grau Serrat 415fceb11c DOC: typo - #158 2018-01-12 08:32:28 -07:00
Cam Sweeney 93ebbf8b1f DOC: fix import and support python3 for beginner tutorial
The beginner tutorial Dual Moving Average example attempted to import
extract_transactions from the wrong location.

The tutorial and corresponding example also would fail using python3
due to indexing the view object returned via context.exchange.values()
2018-01-09 18:25:59 -08:00
Victor Grau Serrat 94583c2684 DOC: updating docs - no stop orders on ccxt 2017-12-12 16:28:13 -07:00
Victor Grau Serrat 1d15e12b8d DOC: added features page, restructured Jupyter & naming convention 2017-12-12 09:04:30 -07:00
Victor Grau Serrat 7cf4f84e89 DOC: documented 4 example algorithms 2017-11-28 12:35:50 -07:00
Victor Grau Serrat 4bcd34bd78 DOC: improved beginner tutorial 2017-11-27 21:07:03 -07:00
Victor Grau Serrat b4ab1a5375 DOC: remake of beginner tutorial 2017-11-21 22:53:50 -07:00
Victor Grau Serrat 6a0d0a0422 DOC: jupyter notebook fix 2017-10-30 15:14:27 -06:00
Victor Grau Serrat 9470771561 Merge branch 'master' into develop 2017-10-30 15:08:11 -06:00
Victor Grau Serrat 8132e1f5ea DOC: small fixes 2017-10-30 14:47:15 -06:00
Victor Grau Serrat 2f7cd97852 DOC: WIP fix tutorial 2017-10-20 15:37:04 -06:00
Victor Grau Serrat b1d5acf2ad DOC: jupyter notebook in beginner tutorial 2017-10-20 14:51:01 -06:00
Victor Grau Serrat 5d5ec6b9be DOC: jupyter notebook in beginner tutorial 2017-10-20 14:49:54 -06:00
Victor Grau Serrat 5fd4ca33d3 DOC: beginner tutorial 2017-10-20 10:14:31 -06:00
swacad 246eed215f DOC: Add development guide .rst 2017-06-07 21:50:19 -04:00
Richard Frank 87a40491d1 DOC: Updated more docs to remove --symbols, which was removed 2016-08-22 13:29:16 -04:00
Richard Frank 9abf22ab3d DOC: Replace run_algo.py in docs with zipline run 2016-08-17 21:54:56 -04:00
Richard Frank 9b87119fc6 DOC: Removed remaining mentions of add_history
which is no longer necessary and was removed from the api already.
2016-06-17 11:55:24 -04:00
Richard Frank 8218176c47 Merge pull request #1248 from wilsonkichoi/master
DOC: remove "python -m" and "--symbols" from the example
2016-06-03 12:52:15 -07:00
Wilson Choi 1c2e0da299 DOC: fix typo 2016-06-03 11:25:41 -07:00
JimStearns206 6aa847ca2d DOC: Fix bullet list format (minor). 2016-06-02 16:35:36 -07:00
Wilson Choi 25cc65e393 DOC: add ingesting data ref to beginner tutorial 2016-06-02 16:07:41 -07:00
Wilson Choi 13f506d9c8 DOC: remove "python -m" and "--symbols" from the example 2016-06-02 14:57:24 -07:00
Joe Jevnik 89542e33bd ENH: Adds quantopian-quandl bundle as new default.
This data bundle will use the quantopian mirror of the quandl WIKI data
instead of downloading from quandl directly. This dramatically improves
the speed because we do not pay the rate limiting for quandl and we can
send the data in the format zipline expects.
2016-05-05 18:22:13 -04:00
Joe Jevnik 59c8e371a2 ENH: Updates the cli, data bundles and extensions.
Adds the data bundle concept which makes it easy for users to register
loading functions to build out minute and daily data along with an
assets db and adjustments db. By default we have provided a `quandl`
bundle which pulls from the public domain WIKI dataset. Users may
register new bundles by decorating an ingest function with
`zipline.data.bundles.register(<name>)`. This also provides a
`yahoo_equities` function for creating an ingestion function that will
load a static set of assets from yahoo.

The cli is now structured as a couple of subcommands and has been
changed to `python -m zipline`. The old behavior of `run_algo.py` has
been moved to the `run` subcommand. This is almost entirely the same
except that it now takes the name of the data bundle to use, defaulting
to `quandl`.

The next subcommand is `ingest` which takes the name of
a data bundle to ingest. This will run the loading machinery and write
the data to a specified location that `run` can find.

There is also a `clean` subcommand which deletes the data that was
written with `ingest`.

Extensions have also been added to zipline. This is an experimental
feature where users can provide an extra set of python files to run at
the start of the process. These can be used to configure aspects of
zipline. Right now the only thing that is supported in an extension file
is the registration of a new data bundle.
2016-05-03 18:38:24 -04:00
llllllllll f7f5f538a5 REL 0.8.3
We messed up the sdist a couple times.
2015-11-06 19:41:49 -05:00
llllllllll 1955146184 REL: 0.8.0 2015-11-06 15:10:34 -05:00
llllllllll 39a4cf0a9e DOC: use sphinx docs 2015-11-06 15:10:34 -05:00