use super::utils::http_get;
use crate::error::Result;
use std::collections::BTreeMap;
const BASE_URL: &str = "https://api.bybit.com/v2";
pub struct BybitRestClient {
_api_key: Option<String>,
_api_secret: Option<String>,
}
impl BybitRestClient {
pub fn new(api_key: Option<String>, api_secret: Option<String>) -> Self {
BybitRestClient { _api_key: api_key, _api_secret: api_secret }
}
pub fn fetch_l2_snapshot(symbol: &str) -> Result<String> {
gen_api!(format!("/public/orderBook/L2?symbol={symbol}"))
}
pub fn fetch_open_interest(symbol: &str) -> Result<String> {
gen_api!(format!("/public/open-interest?symbol={symbol}&period=5min&limit=200"))
}
pub fn fetch_long_short_ratio(symbol: &str) -> Result<String> {
gen_api!(format!("/public/account-ratio?symbol={symbol}&period=5min&limit=200"))
}
}