use super::utils::http_get;
use crate::error::Result;
use std::collections::BTreeMap;
const BASE_URL: &str = "https://www.bitstamp.net/api";
pub struct BitstampRestClient {
_api_key: Option<String>,
_api_secret: Option<String>,
}
impl BitstampRestClient {
pub fn new(api_key: Option<String>, api_secret: Option<String>) -> Self {
BitstampRestClient {
_api_key: api_key,
_api_secret: api_secret,
}
}
pub fn fetch_trades(symbol: &str, time: Option<String>) -> Result<String> {
gen_api!(format!("/v2/transactions/{}/", symbol), time)
}
pub fn fetch_l2_snapshot(symbol: &str) -> Result<String> {
gen_api!(format!("/order_book/{}", symbol))
}
pub fn fetch_l3_snapshot(symbol: &str) -> Result<String> {
gen_api!(format!("/order_book/{}?group=2", symbol))
}
}