use crate::{Client, Result};
use serde::{de::DeserializeOwned, Deserialize};
use std::collections::HashMap;
#[must_use = "Does nothing until you send or execute it"]
pub struct GetTradesHistoryRequest {
client: Client,
trades: Option<bool>,
start: Option<i64>,
end: Option<i64>,
}
impl GetTradesHistoryRequest {
pub fn trades(self, trades: bool) -> Self {
Self {
trades: Some(trades),
..self
}
}
pub fn start(self, start: i64) -> Self {
Self {
start: Some(start),
..self
}
}
pub fn end(self, end: i64) -> Self {
Self {
end: Some(end),
..self
}
}
pub async fn execute<T: DeserializeOwned>(self) -> Result<T> {
let mut query: Vec<String> = Vec::new();
if let Some(true) = self.trades {
query.push(String::from("trades=true"));
}
if let Some(start) = self.start {
query.push(format!("start={}", start));
}
if let Some(end) = self.end {
query.push(format!("end={}", end));
}
let query = if query.is_empty() {
None
} else {
Some(query.join("&"))
};
self.client
.send_private("/0/private/TradesHistory", query)
.await
}
pub async fn send(self) -> Result<GetOpenOrdersResponse> {
self.execute().await
}
}
#[derive(Debug, Deserialize)]
pub struct ClosedOrderInfo {
pub status: String,
pub descr: OrderInfo,
pub oflags: String,
pub closetm: f64,
pub reason: Option<String>,
}
#[derive(Debug, Deserialize)]
pub struct OrderInfo {
pub pair: String,
#[serde(rename(deserialize = "type"))]
pub marketside: String,
pub ordertype: String,
pub price: String,
pub price2: String,
pub leverage: String,
pub order: String,
pub close: String,
}
#[derive(Debug, Deserialize)]
pub struct GetOpenOrdersResponse {
pub closed: HashMap<String, ClosedOrderInfo>,
pub count: i32,
}
impl Client {
pub fn get_trades_history(&self) -> GetTradesHistoryRequest {
GetTradesHistoryRequest {
client: self.clone(),
trades: None,
start: None,
end: None,
}
}
}