|
|
@@ -28,7 +28,6 @@ pub(crate) async fn reference_bybit_swap_run(is_shutdown_arc: Arc<AtomicBool>,
|
|
|
let mut ws = BybitSwapWs::new_label(name, is_colo, None, BybitSwapWsType::Public);
|
|
|
ws.set_subscribe(vec![
|
|
|
BybitSwapSubscribeType::PuOrderBook1,
|
|
|
- BybitSwapSubscribeType::PuTrade,
|
|
|
BybitSwapSubscribeType::PuKline("1".to_string()),
|
|
|
// BybitSwapSubscribeType::PuTickers
|
|
|
]);
|
|
|
@@ -85,7 +84,8 @@ pub(crate) async fn bybit_swap_run(is_shutdown_arc: Arc<AtomicBool>,
|
|
|
ws.set_subscribe(vec![
|
|
|
BybitSwapSubscribeType::PrPosition,
|
|
|
BybitSwapSubscribeType::PrOrder,
|
|
|
- BybitSwapSubscribeType::PrWallet
|
|
|
+ BybitSwapSubscribeType::PrWallet,
|
|
|
+ BybitSwapSubscribeType::PuTrade,
|
|
|
]);
|
|
|
|
|
|
let core_arc_clone_private = core_arc.clone();
|