progress
This commit is contained in:
parent
31830b92b9
commit
5e49af0589
@ -1,5 +1,6 @@
|
|||||||
{
|
{
|
||||||
"refdata": @inc=http://cloud11.cvtt.vpn:6789/refdata/refdata
|
"refdata": @inc=http://cloud11.cvtt.vpn:6789/refdata/refdata
|
||||||
|
, "redis": @inc=http://cloud11.cvtt.vpn:6789/apps/redis
|
||||||
, "exchanges_settings": {
|
, "exchanges_settings": {
|
||||||
"COINBASE_AT": {
|
"COINBASE_AT": {
|
||||||
"order_entry": {
|
"order_entry": {
|
||||||
@ -20,13 +21,4 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
, "redis": {
|
|
||||||
"url": "redis://cloud17.cvtt.vpn"
|
|
||||||
, "listen_channel_patterns": {
|
|
||||||
"executor": ["EXEC*", "ALL:*"]
|
|
||||||
, "risk_manager": ["RMGR*", "ALL:*"]
|
|
||||||
, "trader": ["TRDR*", "ALL:*"]
|
|
||||||
, "quant": ["QANT*", "ALL:*"]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
24
data/apps/redis.cfg
Normal file
24
data/apps/redis.cfg
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
{
|
||||||
|
"localhost": {
|
||||||
|
"url": "redis://localhost"
|
||||||
|
, "app_channels": {
|
||||||
|
"executor": "EXEC"
|
||||||
|
, "risk_manager": "RMGR"
|
||||||
|
, "trader": "TRDR"
|
||||||
|
, "quant": "QANT"
|
||||||
|
}
|
||||||
|
, "read_timeout" : 0.01
|
||||||
|
, "ping_timeout_secs": 1.0
|
||||||
|
}
|
||||||
|
, "cloud17": {
|
||||||
|
"url": "redis://cloud17.cvtt.vpn"
|
||||||
|
, "app_channels": {
|
||||||
|
"executor": "EXEC"
|
||||||
|
, "risk_manager": "RMGR"
|
||||||
|
, "trader": "TRDR"
|
||||||
|
, "quant": "QANT"
|
||||||
|
}
|
||||||
|
, "read_timeout" : 0.01
|
||||||
|
, "ping_timeout_secs": 2.0
|
||||||
|
}
|
||||||
|
}
|
||||||
44
data/apps/risk_manager_app.cfg
Normal file
44
data/apps/risk_manager_app.cfg
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
|
||||||
|
{
|
||||||
|
|
||||||
|
"refdata": @inc=http://cloud11.cvtt.vpn:6789/refdata/refdata
|
||||||
|
, "redis": @inc=http://cloud11.cvtt.vpn:6789/apps/redis
|
||||||
|
, "risk_manager": {
|
||||||
|
"book": "CVTT_BK01"
|
||||||
|
, "database": {
|
||||||
|
"positions_table": "cvtt_positions"
|
||||||
|
, "credentials_key": {
|
||||||
|
"write": "CVTT_DB_01"
|
||||||
|
, "read_only": "CVTT_DB_01"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
, "positions": {
|
||||||
|
"load_interval_sec": 10.0
|
||||||
|
, "to_store_zero_positions": false
|
||||||
|
, "to_save_unchanged_positions": false
|
||||||
|
, "to_save_unchanged_positions": false
|
||||||
|
}
|
||||||
|
, "publish_value_interval": 10.0
|
||||||
|
}
|
||||||
|
, "exchanges_settings": {
|
||||||
|
"COINBASE_AT": {
|
||||||
|
"order_entry": {
|
||||||
|
"enabled": false
|
||||||
|
, "streaming": false
|
||||||
|
},
|
||||||
|
"mkt_data": {
|
||||||
|
"enabled": true
|
||||||
|
, "streaming": true
|
||||||
|
},
|
||||||
|
"accounting": {
|
||||||
|
"enabled": true
|
||||||
|
, "streaming": false
|
||||||
|
}
|
||||||
|
, "credentials_key": {
|
||||||
|
"trade": "COINBASE_ADV"
|
||||||
|
"read_only": "COINBASE_ADV_RO"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
15
data/apps/trader_app.cfg
Normal file
15
data/apps/trader_app.cfg
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"refdata": @inc=http://cloud11.cvtt.vpn:6789/refdata/refdata
|
||||||
|
, "redis": @inc=http://cloud11.cvtt.vpn:6789/apps/redis
|
||||||
|
, "exchanges_settings": {
|
||||||
|
"COINBASE_AT": {
|
||||||
|
"mkt_data": {
|
||||||
|
"enabled": true
|
||||||
|
, "streaming": true
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
, "trader": {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@ -91,12 +91,8 @@
|
|||||||
"class": "cvttpy.exchanges.proxies.cvtt.connector.CvttExecutorClient"
|
"class": "cvttpy.exchanges.proxies.cvtt.connector.CvttExecutorClient"
|
||||||
|
|
||||||
}
|
}
|
||||||
, "redis": {
|
|
||||||
"url": "redis://localhost"
|
|
||||||
,"listen_channel_prefix": "CVTT_CLNT"
|
,"listen_channel_prefix": "CVTT_CLNT"
|
||||||
, "executor_channel": "EXEC"
|
, "executor_channel": "EXEC"
|
||||||
, "ping_timeout_secs": 1.0
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
, "COINBASE_AT": {
|
, "COINBASE_AT": {
|
||||||
"exchange_id": "COINBASE"
|
"exchange_id": "COINBASE"
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user