Trying to fix an issue with merging new candles in get_history()

This commit is contained in:
fredfortier
2017-10-18 00:04:55 -04:00
parent 1a4dfe8abb
commit 74fd4a6a0f
8 changed files with 117 additions and 103 deletions
+8 -1
View File
@@ -78,7 +78,14 @@ class AlgoPickleNotFound(ZiplineError):
class InvalidHistoryFrequencyError(ZiplineError):
msg = (
'History frequency {frequency} not supported by the exchange.'
'Frequency {frequency} not supported by the exchange.'
).strip()
class MismatchingFrequencyError(ZiplineError):
msg = (
'Bar aggregate frequency {frequency} not compatible with '
'data frequency {data_frequency}.'
).strip()