Files
config_service/data/apps/common/algos.cfg
T
Cryptoval Trading Technologies f19a46dd2d 20260121
2026-01-21 18:01:01 +00:00

27 lines
842 B
INI

{
"DIRECT_ORDER_ONLY": {
"class": "cvttpy_trading.trading.algos.common.trading_algo.DirOrdTradingAlgo"
, "params": {}
}
, "TGT_POS_ALGO": {
"class": "cvttpy_trading.trading.algos.tgt_pos.TgtPosTradingAlgo"
, "params": {
"direct_order_supported": true
, "pos_diff_pct_trigger": 10.0 # percent threshold between Tgt Pos and Current Pos that triggers order creation
}
}
, "TGT_POS_ALGO_01": {
"class": "cvttpy_trading.trading.algos.tgt_pos.TgtPosTradingAlgo",
"params": {
"order_pricer": {
"class": "BookTopMidPricer",
"shift_bps": 0
},
"any_instrument": true,
"pos_diff_pct_trigger": 10.0,
"direct_order_supported": true,
"mkt_data_threshold_sec": 1.0
}
},
}