1mod amount;
2mod depth;
3mod depthmap;
4mod depths;
5mod liq;
6mod order_id;
7mod order_placed;
8mod order_to_place;
9mod price;
10mod side;
11mod spread;
12mod symbol;
13mod trade;
14mod worth;
15
16pub mod depth_util;
17pub mod my_date_formatter;
18pub mod my_duration_formatter;
19
20pub use amount::*;
21pub use depth::*;
22pub use depthmap::*;
23pub use depths::*;
24pub use liq::*;
25pub use order_id::*;
26pub use order_placed::*;
27pub use order_to_place::*;
28pub use price::*;
29pub use side::*;
30pub use spread::*;
31pub use symbol::*;
32pub use trade::*;
33pub use worth::*;
34
35use std::collections::HashMap;
36
37pub type BotId = String;
38pub type Currency = String;
39pub type Exchange = String;
40
41pub type LiqByCurrency = HashMap<Currency, Liq>;
42pub type Balances = HashMap<Currency, Amount>;