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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
use super::super::utils::http_get;
use crate::error::Result;
use std::collections::BTreeMap;
const BASE_URL: &str = "https://www.mexc.com";
/// MXC Spot market.
///
/// * REST API doc: <https://mxcdevelop.github.io/APIDoc/>
/// * Trading at: <https://www.mxc.com/trade/pro>
/// * Rate Limits: <https://mxcdevelop.github.io/APIDoc/open.api.v2.en.html#rate-limit>
/// * The default rate limiting rule for an endpoint is 20 times per second.
pub struct MxcSpotRestClient {
_access_key: String,
_secret_key: Option<String>,
}
impl MxcSpotRestClient {
pub fn new(access_key: String, secret_key: Option<String>) -> Self {
MxcSpotRestClient {
_access_key: access_key,
_secret_key: secret_key,
}
}
/// Get latest trades.
///
/// 1000 trades are returned.
///
/// For example: <https://www.mxc.co/open/api/v2/market/deals?symbol=BTC_USDT&limit=1000>
#[allow(non_snake_case)]
pub fn fetch_trades(symbol: &str) -> Result<String> {
gen_api!(format!(
"/open/api/v2/market/deals?symbol={}&limit=1000",
symbol
))
}
/// Get latest Level2 snapshot of orderbook.
///
/// Top 2000 bids and asks will be returned.
///
/// For example: <https://www.mxc.co/open/api/v2/market/depth?symbol=BTC_USDT&depth=2000>
pub fn fetch_l2_snapshot(symbol: &str) -> Result<String> {
gen_api!(format!(
"/open/api/v2/market/depth?symbol={}&depth=2000",
symbol
))
}
}