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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
use indexmap::map::IndexMap;
use serde::{Deserialize, Serialize};

use crate::auth::KrakenAuth;
// Structs/Enums
use super::{EndpointInfo, KAsset, KrakenInput, MethodType};

// Traits
use super::{Input, MutateInput, Output, UpdateInput};

/// Request builder for the Get Trade Balance endpoint
pub struct KITradeBalance {
    params: IndexMap<String, String>,
}

impl KITradeBalance {
    /// Constructor returning a [KrakenInput] builder for the get trade balance endpoint.
    pub fn build() -> KITradeBalance {
        KITradeBalance {
            params: IndexMap::new(),
        }
    }

    /// Base asset to determine balance for. Default to USD
    pub fn with_asset(self, asset: KAsset) -> Self {
        self.update_input("asset", asset.to_string())
    }

    fn with_nonce(self) -> Self {
        self.update_input("nonce", KrakenAuth::nonce())
    }
}

impl MutateInput for KITradeBalance {
    fn list_mut(&mut self) -> &mut IndexMap<String, String> {
        &mut self.params
    }
}

impl UpdateInput for KITradeBalance {}

impl Input for KITradeBalance {
    fn finish(self) -> KrakenInput {
        KrakenInput {
            info: EndpointInfo {
                methodtype: MethodType::Private,
                endpoint: String::from("TradeBalance"),
            },
            params: Some(self.with_nonce().params),
        }
    }

    fn finish_clone(self) -> (KrakenInput, Self) {
        let newself = self.with_nonce();
        (
            KrakenInput {
                info: EndpointInfo {
                    methodtype: MethodType::Private,
                    endpoint: String::from("TradeBalance"),
                },
                params: Some(newself.params.clone()),
            },
            newself,
        )
    }
}

/// Response from the Get Trade Balance endpoint
#[derive(Deserialize, Serialize, Debug)]
pub struct KOTradeBalance {
    /// cost basis of open positions
    pub c: String,
    /// equity = trade balance + unrealized net profit/loss
    pub e: String,
    /// equivalent balance (combined balance of all currencies)
    pub eb: String,
    /// margin amount of open positions
    pub m: String,
    /// free margin = equity - initial margin (maximum margin available to open new positions)
    pub mf: String,
    /// margin level = (equity / initial margin) * 100
    pub ml: String,
    /// unrealized net profit/loss of open positions
    pub n: String,
    /// trade balance (combined balance of all equity currencies)
    pub tb: String,
    /// current floating valuation of open positions
    pub v: String,
}

impl Output for KOTradeBalance {}