Skip to content

Commit

Permalink
Bug fixed. Thanks physicsd00d for reporting this.
Browse files Browse the repository at this point in the history
  • Loading branch information
gbeced committed Jun 18, 2016
1 parent c1098f0 commit 56a3164
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Version 0.18 (TBD)
. [FIX] Added exception handling to optimizer module. Thanks Sergey Cheparev for reporting this.
. [FIX] Fixed a bug in VWAP calculation when using adjusted values.
. [FIX] Added a way to change the dataseries.DEFAULT_MAX_LEN value.
. [FIX] Added missing return in plotter.Series.getValues. Thanks physicsd00d for reporting this.
. [BREAKING CHANGE] Removed Xignite support (http://www.xignite.com/).
. [BREAKING CHANGE] Removed deprecated code that issued warnings in previous versions.

Expand Down
2 changes: 1 addition & 1 deletion pyalgotrade/plotter.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def getValue(self, dateTime):
return self.__values.get(dateTime, None)

def getValues(self):
self.__values
return self.__values

def getMarker(self):
raise NotImplementedError()
Expand Down

0 comments on commit 56a3164

Please sign in to comment.