From c44458790adbad3af470c8b8c8b325cc6a7ddf32 Mon Sep 17 00:00:00 2001 From: twiecki Date: Wed, 7 May 2014 13:57:52 -0400 Subject: [PATCH] DOC: Add release notes for 0.6.2. --- docs/release-notes/zipline-0.6.2.md | 43 +++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 docs/release-notes/zipline-0.6.2.md diff --git a/docs/release-notes/zipline-0.6.2.md b/docs/release-notes/zipline-0.6.2.md new file mode 100644 index 00000000..d8e16ff5 --- /dev/null +++ b/docs/release-notes/zipline-0.6.2.md @@ -0,0 +1,43 @@ +# Zipline 0.6.2 Release Notes + +**Highlights** + +* Command line interface to run algorithms directly. + +* IPython Magic %%zipline that runs algorithm defined in an IPython + notebook cell. + +## Enhancements (ENH) + +* CLI: Adds a CLI and IPython magic for zipline. [PR325](https://github.com/quantopian/zipline/pull/325) + + > Example: + + > ``` + > python run_algo.py -f dual_moving_avg.py --symbols AAPL --start 2011-1-1 --end 2012-1-1 -o dma.pickle + > ``` + + > Grabs the data from yahoo finance, runs the file + dual_moving_avg.py (and looks for `dual_moving_avg_analyze.py` + which, if found, will be executed after the algorithm has been run), + and outputs the perf `DataFrame` to `dma.pickle`. + +* IPython magic command (at the top of an IPython notebook cell). [PR325](https://github.com/quantopian/zipline/pull/325) + + > ``` + %%zipline --symbols AAPL --start 2011-1-1 --end 2012-1-1 -o perf + ``` + + > Does the same as above except instead of executing the file looks + for the algorithm in the cell and instead of outputting the perf df + to a file, creates a variable in the namespace called perf. + +## Bug Fixes (BUG) + +## Performance (PERF) + +## Maintenance and Refactorings (MAINT) + +## Build (BLD) + +# Contributors