This commit is contained in:
Cryptoval Trading Technologies 2023-11-11 01:46:24 +00:00
parent 5e49af0589
commit 2c3aa1c01e
3 changed files with 74 additions and 0 deletions

11
data/apps/cvttcomm.cfg Normal file
View File

@ -0,0 +1,11 @@
{
"type": "redis",
"redis_settings": "localhost"
, "app_channels": {
"executor": "EXEC"
, "risk_manager": "RMGR"
, "trader": "TRDR"
, "quant": "QUANT"
}
}

41
data/apps/quant_app.cfg Normal file
View File

@ -0,0 +1,41 @@
@var CONFIG_SVC_HOST=cloud16.cvtt.vpn
{
"refdata": @inc=http://${CONFIG_SVC_HOST}:6789/refdata/refdata
, "redis": @inc=http://${CONFIG_SVC_HOST}:6789/apps/redis
, "cvttcomm": @inc=http://${CONFIG_SVC_HOST}:6789/apps/cvttcomm
, "quant": {
"books": {
"CVTT_BK01": {}
}
, "strategies": {
"CVTT_QST001": {
"class": "cvttpy.trading.strategies.test_strat.TestStrategy"
, "params": {
"dummy": "dummy"
}
}
}
}
, "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"
}
}
}
}

View File

@ -0,0 +1,22 @@
@var CONFIG_SVC_HOST=cloud16.cvtt.vpn
{
"__DUMMY__": null
, "exchanges_settings": {
"CVTT_COINBASE": {
"accounting": {
"enabled": true
, "streaming": false
}
}
, "CVTT_COINBASE_LOCAL": {
"accounting": {
"enabled": true
, "streaming": false
}
}
}
, "refdata": @inc=http://${CONFIG_SVC_HOST}:6789/refdata/refdata
, "redis": @inc=http://${CONFIG_SVC_HOST}:6789/apps/redis
}