1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
use super::super::utils::http_get;
use crate::error::Result;
use std::collections::BTreeMap;
const BASE_URL: &str = "https://api.hbdm.com/option-ex";
/// Huobi Option market.
///
///
/// * REST API doc: <https://huobiapi.github.io/docs/option/v1/en/>
/// * Trading at: <https://futures.huobi.com/en-us/option/exchange/>
/// * Rate Limits: <https://huobiapi.github.io/docs/option/v1/en/#api-rate-limit-illustration>
/// * For restful interfaces:all products(futures, coin margined swap, usdt margined swap and option) 800 times/second for one IP at most
pub struct HuobiOptionRestClient {
_api_key: Option<String>,
_api_secret: Option<String>,
}
impl_contract!(HuobiOptionRestClient);
impl HuobiOptionRestClient {
/// Get the latest Level2 orderbook snapshot.
///
/// Top 150 bids and asks (aggregated) are returned.
///
/// For example: <https://api.hbdm.com/option-ex/market/depth?contract_code=BTC-USDT-210326-C-32000&type=step0>
pub fn fetch_l2_snapshot(symbol: &str) -> Result<String> {
gen_api!(format!("/market/depth?contract_code={}&type=step0", symbol))
}
}