-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathposition.go
81 lines (63 loc) · 1.42 KB
/
position.go
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
package baregone
import "time"
type Position struct {
tradeType TradeType
entryTime time.Time
exitTime time.Time
entryPrice int
profit int
profitAmount int
profitPct int
isOpen bool
virtualEntryPrice int
virtualEntryTime time.Time
virtualProfit int
}
func (p *Position) TradeType() TradeType {
return p.tradeType
}
func (p *Position) SetTradeType(tradeType TradeType) {
p.tradeType = tradeType
}
func (p *Position) EntryTime() time.Time {
return p.entryTime
}
func (p *Position) SetEntryTime(entryTime time.Time) {
p.entryTime = entryTime
}
func (p *Position) ExitTime() time.Time {
return p.exitTime
}
func (p *Position) SetExitTime(exitTime time.Time) {
p.exitTime = exitTime
}
func (p *Position) EntryPrice() int {
return p.entryPrice
}
func (p *Position) SetEntryPrice(entryPrice int) {
p.entryPrice = entryPrice
}
func (p *Position) Profit() int {
return p.profit
}
func (p *Position) SetProfit(profit int) {
p.profit = profit
}
func (p *Position) ProfitAmount() int {
return p.profitAmount
}
func (p *Position) SetProfitAmount(profitAmount int) {
p.profitAmount = profitAmount
}
func (p *Position) ProfitPct() int {
return p.profitPct
}
func (p *Position) SetProfitPct(profitPct int) {
p.profitPct = profitPct
}
func (p *Position) SetIsOpen(isOpen bool) {
p.isOpen = isOpen
}
func (p *Position) IsOpen() bool {
return p.isOpen
}