Notes on default denomination, 1/10-th of full coin

This commit is contained in:
Conner Fromknecht
2017-07-03 09:27:19 -07:00
parent cbaccda564
commit 52f68fbea6
2 changed files with 6 additions and 0 deletions
+3
View File
@@ -28,6 +28,9 @@ ASSET = 'USDT_BTC'
TARGET_HODL_RATIO = 0.8
RESERVE_RATIO = 1.0 - TARGET_HODL_RATIO
# For all trading pairs in the poloniex bundle, the default denomination
# currently supported by Catalyst is 1/10th of a full coin. Use this constant
# to scale the price of up to that of a full coin if desired.
UNITS_PER_COIN = 10.0
def initialize(context):
+3
View File
@@ -37,6 +37,9 @@ TARGET_INVESTMENT_RATIO = 0.8
SHORT_WINDOW = 30
LONG_WINDOW = 100
# For all trading pairs in the poloniex bundle, the default denomination
# currently supported by Catalyst is 1/10th of a full coin. Use this constant
# to scale the price of up to that of a full coin if desired.
UNITS_PER_COIN = 10.0
def initialize(context):