Skip to content

Commit 43890cf

Browse files
committed
feat(bitmex-client): introduce getter for instrument
This allows us to fetch funding rates etc from bitmex.
1 parent d3e144c commit 43890cf

File tree

2 files changed

+63
-0
lines changed

2 files changed

+63
-0
lines changed

crates/bitmex-client/src/client.rs

+23
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
use crate::models::ContractSymbol;
2+
use crate::models::ContractSymbol::XbtUsd;
3+
use crate::models::GetInstrumentRequest;
24
use crate::models::GetPositionRequest;
5+
use crate::models::Instrument;
36
use crate::models::Network;
47
use crate::models::OrdType;
58
use crate::models::Order;
@@ -8,6 +11,7 @@ use crate::models::PostOrderRequest;
811
use crate::models::Request;
912
use crate::models::Side;
1013
use anyhow::bail;
14+
use anyhow::Context;
1115
use anyhow::Result;
1216
use hex::encode as hexify;
1317
use reqwest;
@@ -78,6 +82,25 @@ impl Client {
7882
Ok(positions)
7983
}
8084

85+
/// Returns the latest instrument
86+
pub async fn latest_instrument(&self) -> Result<Instrument> {
87+
let instruments = self
88+
.send_request(GetInstrumentRequest {
89+
symbol: Some(XbtUsd),
90+
count: Some(1),
91+
end_time: None,
92+
start_time: None,
93+
reverse: Some(true),
94+
})
95+
.await?
96+
.first()
97+
.cloned();
98+
99+
let instrument = instruments.context("No instrument found")?;
100+
101+
Ok(instrument)
102+
}
103+
81104
async fn send_request<R>(&self, req: R) -> Result<R::Response>
82105
where
83106
R: Request,

crates/bitmex-client/src/models.rs

+40
Original file line numberDiff line numberDiff line change
@@ -219,3 +219,43 @@ pub struct Position {
219219
#[serde(with = "time::serde::rfc3339::option")]
220220
pub timestamp: Option<OffsetDateTime>,
221221
}
222+
223+
#[derive(Clone, Debug, Serialize)]
224+
pub struct GetInstrumentRequest {
225+
pub symbol: Option<ContractSymbol>,
226+
/// Number of results to fetch.
227+
pub count: Option<u64>,
228+
/// If true, will sort results newest first.
229+
pub reverse: Option<bool>,
230+
/// Starting date filter for results.
231+
#[serde(with = "time::serde::rfc3339::option", rename = "startTime")]
232+
pub start_time: Option<OffsetDateTime>,
233+
/// Ending date filter for results.
234+
#[serde(with = "time::serde::rfc3339::option", rename = "endTime")]
235+
pub end_time: Option<OffsetDateTime>,
236+
}
237+
238+
impl Request for GetInstrumentRequest {
239+
const METHOD: Method = Method::GET;
240+
const SIGNED: bool = false;
241+
const ENDPOINT: &'static str = "/instrument";
242+
const HAS_PAYLOAD: bool = true;
243+
type Response = Vec<Instrument>;
244+
}
245+
246+
/// Note: only relevant fields have been added
247+
#[derive(Clone, Debug, Deserialize, Serialize)]
248+
pub struct Instrument {
249+
pub symbol: ContractSymbol,
250+
#[serde(rename = "fundingTimestamp", with = "time::serde::rfc3339")]
251+
pub funding_timestamp: OffsetDateTime,
252+
#[serde(rename = "fundingInterval", with = "time::serde::rfc3339")]
253+
pub funding_interval: OffsetDateTime,
254+
#[serde(rename = "fundingRate")]
255+
pub funding_rate: f64,
256+
/// Predicted funding rate for the the next interval after funding_timestamp
257+
#[serde(rename = "indicativeFundingRate")]
258+
pub indicative_funding_rate: f64,
259+
#[serde(with = "time::serde::rfc3339")]
260+
pub timestamp: OffsetDateTime,
261+
}

0 commit comments

Comments
 (0)