use super::super::utils::http_get;
use super::utils::*;
use crate::error::Result;
use std::collections::BTreeMap;
const BASE_URL: &str = "https://fapi.binance.com";
pub struct BinanceLinearRestClient {
_api_key: Option<String>,
_api_secret: Option<String>,
}
impl BinanceLinearRestClient {
pub fn new(api_key: Option<String>, api_secret: Option<String>) -> Self {
BinanceLinearRestClient {
_api_key: api_key,
_api_secret: api_secret,
}
}
pub fn fetch_agg_trades(
symbol: &str,
from_id: Option<u64>,
start_time: Option<u64>,
end_time: Option<u64>,
) -> Result<String> {
check_symbol(symbol);
let symbol = Some(symbol);
let limit = Some(1000);
gen_api_binance!(
"/fapi/v1/aggTrades",
symbol,
from_id,
start_time,
end_time,
limit
)
}
pub fn fetch_l2_snapshot(symbol: &str) -> Result<String> {
check_symbol(symbol);
let symbol = Some(symbol);
let limit = Some(1000);
gen_api_binance!("/fapi/v1/depth", symbol, limit)
}
}