rsbit 0.5.4

This is a library for the Bybit API.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod linear;
pub mod inverse;
pub mod option;
pub mod spot;

use crate::{
    v5::ws::BybitWS,
    constants::PUBLIC_TICKERS_TOPIC,
};

impl BybitWS {
    pub fn add_tickers_args(&mut self, symbol: &str) {
        self.args.push(format!("{}.{}", PUBLIC_TICKERS_TOPIC, symbol));
    }
}