Skip to content

Commit

Permalink
Releasing version version 0.15.
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriel Becedillas authored and Gabriel Becedillas committed Mar 30, 2014
1 parent cc12053 commit 56878f2
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Version 0.15 (TBD)
Version 0.15 (30/Mar/2014)
. [NEW] Xignite support (http://www.xignite.com/).
. [NEW] Added support for papertrading Bitcoin strategies through Bitstamp.
. [NEW] Partial fill support for orders.
Expand All @@ -14,12 +14,12 @@ Version 0.15 (TBD)
. [NEW] Added stopLimitOrder method to the Strategy class to place stop limit orders.
. [BREAKING CHANGE] Support for auto-exit on session close was removed.
. [BREAKING CHANGE] Removed some deprecated methods from DataSeries (appendValue, appendValueWithDatetime, getValue, getValues, getValuesAbsolute, getFirstValidPos and getLength).
. [BREAKING CHANGE] Prevent resubmitting orders.
. [BREAKING CHANGE] Prevent changing order properties that are set during initialization.
. [BREAKING CHANGE] Fail when resubmitting orders.
. [BREAKING CHANGE] Fail when changing order properties that are set during initialization.
. [BREAKING CHANGE] The last parameter to broker.backtesting.FillStrategy.fillStopLimitOrder was removed. FillStrategy will now handle all the details for order filling to allow better customization.
. [BREAKING CHANGE] Changed the order of the stopPrice and limitPrice parameters in Strategy.enterLongStopLimit, Strategy.enterShortStopLimit and Position.exit.
. [CHANGE] Removed MtGox support.
. [CHANGE] pyalgotrade.technical.trend.Slope was moved into the pyalgotrade.technical.linreg package.
. [BREAKING CHANGE] Removed MtGox support.
. [BREAKING CHANGE] pyalgotrade.technical.trend.Slope was moved into the pyalgotrade.technical.linreg package.
. [CHANGE] setUseAdjustedValues should now be called on the strategy instead of the broker.
. [CHANGE] Position.getUnrealizedNetProfit and Position.getUnrealizedReturn will automatically use the last available price if None is given.
. [CHANGE] Daily bars from Yahoo and NinjaTrader CSV feeds are loaded with time set to 00:00:00.
Expand Down
4 changes: 2 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@
# built documents.
#
# The short X.Y version.
version = '0.14'
version = '0.15'
# The full version, including alpha/beta/rc tags.
release = '0.14'
release = '0.15'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion pyalgotrade/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@
.. moduleauthor:: Gabriel Martin Becedillas Ruiz <[email protected]>
"""

__version__ = "0.14"
__version__ = "0.15"
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@

setup(
name='PyAlgoTrade',
version='0.14',
version='0.15',
description='Python Algorithmic Trading',
long_description='Python library for backtesting stock trading strategies.',
author='Gabriel Martin Becedillas Ruiz',
author_email='[email protected]',
url='http://gbeced.github.io/pyalgotrade/',
download_url='http://sourceforge.net/projects/pyalgotrade/files/0.14/PyAlgoTrade-0.14.tar.gz/download',
download_url='http://sourceforge.net/projects/pyalgotrade/files/0.15/PyAlgoTrade-0.15.tar.gz/download',
packages=['pyalgotrade',
'pyalgotrade.barfeed',
'pyalgotrade.bitstamp',
Expand Down

0 comments on commit 56878f2

Please sign in to comment.