-
Notifications
You must be signed in to change notification settings - Fork 7
/
Trade.cs
116 lines (104 loc) · 2.68 KB
/
Trade.cs
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
#region license
// Please read and agree to license.md contents before using this SDK.
#endregion
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace mcxNOW
{
public class Trade
{
public static Trade Buy(Currency currency, decimal amount, decimal price)
{
return new Trade()
{
Type = Types.BUY,
Currency = currency,
Amount = amount,
Price = price
};
}
public static Trade Sell(Currency currency, decimal amount, decimal price)
{
return new Trade()
{
Type = Types.SELL,
Currency = currency,
Amount = amount,
Price = price
};
}
public enum Types
{
SELL,
BUY
}
public Types Type { get; set; }
private decimal amount = 0M;
public decimal Amount
{
get
{
return amount;
}
set
{
if (Type == Types.SELL && value < 0.01M)
{
throw new ArgumentException("Sell amount must be greater then 0.01");
}
else if (Type == Types.BUY && value < 0.02M)
{
throw new ArgumentException("Buy amount must be greater then 0.02");
}
else
{
amount = value;
}
}
}
private decimal price = 0M;
public decimal Price
{
get
{
return price;
}
set
{
if (value < 0.00000001M)
{
throw new ArgumentException("Price cannot be bellow 0.00000001");
}
else
{
price = value;
}
}
}
private Currency currency = null;
public Currency Currency {
get
{
return currency;
}
set
{
if (value == Currency.BTC)
{
throw new ArgumentException("You cannot trade in BTC");
}
else if (value != currency)
{
currency = value;
}
}
}
public bool Execute { get; set; }
private Trade()
{
Execute = false;
}
}}