WIP: Poloniex exchange - placing orders, executing transactions

This commit is contained in:
Victor Grau Serrat
2017-09-27 14:31:15 -06:00
parent 1d0faf693d
commit 3362dbf95c
3 changed files with 146 additions and 22 deletions
+6
View File
@@ -101,6 +101,12 @@ class OrphanOrderError(ZiplineError):
).strip()
class OrphanOrderReverseError(ZiplineError):
msg = (
'Order {order_id} tracked by algorithm, but not found in exchange {exchange}.'
).strip()
class OrderCancelError(ZiplineError):
msg = (
'Unable to cancel order {order_id} on exchange {exchange} {error}.'