use super::utils::http_get;
use crate::error::Result;
use std::collections::BTreeMap;
const BASE_URL: &str = "https://www.bitmex.com/api/v1";
pub struct BitmexRestClient {
_api_key: Option<String>,
_api_secret: Option<String>,
}
impl BitmexRestClient {
pub fn new(api_key: Option<String>, api_secret: Option<String>) -> Self {
BitmexRestClient { _api_key: api_key, _api_secret: api_secret }
}
#[allow(non_snake_case)]
pub fn fetch_trades(symbol: &str, start_time: Option<String>) -> Result<String> {
let symbol = Some(symbol);
let startTime = start_time;
gen_api!("/trade", symbol, startTime)
}
pub fn fetch_l2_snapshot(symbol: &str) -> Result<String> {
let symbol = Some(symbol);
let depth = Some(0);
gen_api!("/orderBook/L2", symbol, depth)
}
}