-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcostBasisGrid.ts
171 lines (154 loc) · 5.23 KB
/
costBasisGrid.ts
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
import { subDays } from 'date-fns'
import { round } from 'utilities'
import { Exchange, Trade, TradeType } from 'exchange'
import { PriceHistory } from 'coin'
import { SymbolPosition } from '../'
import { GridStrategy, GridStrategyParameters } from './grid'
/**
* A strategy that trades when the price of a coin changes by a certain percentage relative to the current cost basis.
* Prevents undesireable repeated buying and selling after crossing a buy or sell threshold by increasing the threshold by a factor of 2 until an opposing sell or buy is made, respectively.
*/
export class CostBasisGridStrategy extends GridStrategy {
costBasis?: number
buyThresholdMultiplier = 1
sellThresholdMultiplier = 1
constructor({
costBasis,
...rest
}: GridStrategyParameters & {
costBasis?: number
}) {
super(rest)
if (costBasis) {
this.validateParameter(costBasis, PARAMETERS.costBasis)
}
this.costBasis = costBasis
}
protected getBuyPrice(referencePrice: number): number {
return round(
(referencePrice * this.buyThresholdMultiple) /
this.buyThresholdMultiplier,
2
)
}
protected getSellPrice(referencePrice: number): number {
return round(
referencePrice *
this.sellThresholdMultiple *
this.sellThresholdMultiplier,
2
)
}
getTrades({
priceHistory,
coinAmount,
cashAmount,
exchange
}: {
priceHistory: PriceHistory
coinAmount: number
cashAmount: number
exchange: Exchange
}): {
trades: Trade[]
endingCoinAmount: number
endingCashAmount: number
} {
let trades = []
let costBasis = this.costBasis
? this.costBasis
: priceHistory.startingPrice
let originalBuy = {
type: TradeType.Buy,
amount: coinAmount,
price: costBasis,
date: subDays(priceHistory.startDate, 1)
}
let buyPrice = this.getBuyPrice(costBasis)
let sellPrice = this.getSellPrice(costBasis)
let previousTradeType: TradeType | null = null
for (let historicalPrice of priceHistory.prices) {
let { trade, newCoinAmount, newCashAmount } = this.getTrade({
historicalPrice,
buyPrice,
sellPrice,
coinAmount,
cashAmount,
exchange
})
if (trade) {
trades.push(trade)
coinAmount = newCoinAmount
cashAmount = newCashAmount
costBasis = this.getCostBasis(coinAmount, [
originalBuy,
...trades
])
if (
trade.type == TradeType.Buy &&
(previousTradeType === null ||
previousTradeType === TradeType.Buy)
) {
this.buyThresholdMultiplier *= 2
} else if (
this.buyThresholdMultiplier > 1 &&
trade.type === TradeType.Sell
) {
// Reset buy threshold when a sell is made
this.buyThresholdMultiplier = 1
}
if (
trade.type == TradeType.Sell &&
(previousTradeType === null ||
previousTradeType === TradeType.Sell)
) {
this.sellThresholdMultiplier *= 2
} else if (
this.sellThresholdMultiplier > 1 &&
trade.type === TradeType.Buy
) {
// Reset sell threshold when a buy is made
this.sellThresholdMultiplier = 1
}
buyPrice = this.getBuyPrice(costBasis)
sellPrice = this.getSellPrice(costBasis)
previousTradeType = trade.type
}
}
return {
trades,
endingCoinAmount: coinAmount,
endingCashAmount: cashAmount
}
}
private getCostBasis(coinAmount: number, trades: Trade[]): number {
let costBasis = 0
let buys = trades.filter((trade) => trade.type === TradeType.Buy)
let sells = trades.filter((trade) => trade.type === TradeType.Sell)
let soldAmount = sells.reduce((sum, trade) => sum + trade.amount, 0)
for (let buy of buys) {
// Subtract sold coins from calculation of cost basis
let buyAmount = buy.amount
if (soldAmount > 0) {
if (soldAmount > buyAmount) {
buyAmount = 0
soldAmount -= buyAmount
} else {
buyAmount -= soldAmount
soldAmount = 0
}
}
if (buyAmount > 0) {
costBasis += (buyAmount / coinAmount) * buy.price
}
}
return costBasis
}
}
const PARAMETERS = {
costBasis: {
name: 'costBasis',
minimum: 0,
symbol: { symbol: '$', position: SymbolPosition.Suffix }
}
}