-
Notifications
You must be signed in to change notification settings - Fork 0
/
easy1.ts
211 lines (173 loc) · 6.16 KB
/
easy1.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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
import ccxt from 'ccxt'
import axios from 'axios'
import config from './config'
(async () => {
// const exchange = new ccxt.bitflyer({
// apiKey: config.apiKey,
// secret: config.secret
// })
/**
設定値
*/
type Env = 'development' | 'production'
const env: Env = 'development'
const symbol = 'FX_BTC_JPY'
// トレードボリューム(単位BTC)
const tradeVolume = 0.01
// 現在のトレード情報
type Side = 'BUY' | 'SELL' | 'NONE'
// 単純移動平均線の期間
const PERIOD = 20
// トレード情報
// side 買い or 売り or 未注文
// volume トレードボリューム
interface TradeStatus {
side: Side
volume: number
price: number
}
// トレード情報の初期化
let tradeStatus: TradeStatus = { side: 'NONE', volume: 0, price: 0 }
// CryptWatchから返ってくるレスポンス(ローソク足)情報の型
// [タイムスタンプ,始値,高値,安値,終値,出来高,不明]
type OHLC<T> = [T, T, T, T, T, T, T]
// カウンター
let counter = 0
/**
* ループ開始
*/
while(true) {
// 5分足のローソク足データを取得
// periodsの値は秒数
const response = await axios.get('https://api.cryptowat.ch/markets/bitflyer/btcfxjpy/ohlc?periods=300')
const ohlc: OHLC<number>[] = response.data.result[300]
// 現在の単純移動平均価格
const currentAverage = sma(-1, PERIOD, ohlc)
// 現在のBTCの価格(=1本前のローソク足の終値)
let currentPrice = prices(ohlc)[(prices(ohlc).length - 1) - 1]
// ポジションが無ければポジションを持ちに行く
// ポジションを持っていれば、決済しに行く
if(tradeStatus.side === 'NONE') {
await tryOpen(currentPrice, currentAverage) // 注文
} else {
await tryClose(currentPrice, currentAverage) // 決済
}
// 途転注文
if(tradeStatus.side === 'NONE') {
await tryOpen(currentPrice, currentAverage) // 注文
}
// 5分に1回
// 現在価格とSMAを表示
if(counter >= 6){
console.log(currentPrice, currentAverage)
counter = 0
}
// 10秒待機
await sleep(10 * 1000)
// カウントアップ
counter++
}
/**
* ループ終了
*/
/**
* 関数定義
*/
// tradeInfoの初期化
function initTradeStatus(price: number): void {
tradeStatus = {
side: 'NONE',
volume: 0,
price
}
}
// エントリーしに行く
async function tryOpen(currentPrice: number, currentAverage: number) {
// 現在価格が、単純移動平均線(SMA)より上にある場合→買う
if(currentAverage < currentPrice)
{
if(env === 'production') {
// let result = await exchange.createMarketBuyOrder(symbol, tradeVolume)
// console.log(result)
}
// 注文が確定成功したら買い注文フラグを立てる
tradeStatus.side = 'BUY'
tradeStatus.volume = tradeVolume
tradeStatus.price = currentPrice
console.log('買い注文完了', tradeStatus)
}
// 現在価格が、単純移動平均線(期間n分)より下にある場合→売る
if(currentAverage > currentPrice)
{
if(env === 'production') {
// let result = await exchange.createMarketSellOrder(symbol, tradeVolume)
// console.log(result)
}
// 注文が確定成功したら売り注文フラグを立てる
tradeStatus.side = 'SELL'
tradeStatus.volume = tradeVolume
tradeStatus.price = currentPrice
console.log('売り注文完了', tradeStatus)
}
}
// 決済しに行く
async function tryClose(currentPrice: number, currentAverage: number) {
let profitLoss: unknown
// 売り注文の状態&現在価格が、単純移動平均線(期間n分)より上→買う
if(tradeStatus.side === 'SELL' && currentAverage < currentPrice)
{
if(env === 'production') {
// const result = await exchange.createMarketBuyOrder('FX_BTC_JPY', tradeVolume)
// console.log(result)
}
// 注文が確定成功したらステータスを更新
profitLoss = getProfit('SELL', tradeStatus.price, currentPrice, tradeStatus.volume)
initTradeStatus(currentPrice)
console.log('買い注文完了', tradeStatus)
console.log('損益', profitLoss)
}
// 買い注文の状態&現在価格が、単純移動平均線(期間n分)より下→売る
if(tradeStatus.side === 'BUY' && currentPrice < currentAverage )
{
if(env === 'production') {
// const result = await exchange.createMarketSellOrder('FX_BTC_JPY', tradeVolume)
// console.log(result)
}
// 注文が確定成功したらステータスを更新
profitLoss = getProfit('BUY', tradeStatus.price, currentPrice, tradeStatus.volume)
initTradeStatus(currentPrice)
console.log('売り注文完了', tradeStatus)
console.log('損益', profitLoss)
}
}
// 価格データから終値の価格配列を作る
// https://developer.mozilla.org/ja/docs/Web/JavaScript/Reference/Global_Objects/Array/map
function prices(ohlc: OHLC<number>[]): number[] {
return ohlc.map((item) => item[4])
}
// SMA
// https://developer.mozilla.org/ja/docs/Web/JavaScript/Reference/Global_Objects/Math/abs
// https://developer.mozilla.org/ja/docs/Web/JavaScript/Reference/Global_Objects/Array/reduce
// period 期間n
//
function sma(index: number, period: number, ohlc: OHLC<number>[]): number {
index = Math.abs(index)
let array = prices(ohlc).reverse()
// indexから始めてperiod分の配列を取得
array = array.slice(index, index + period)
// 配列要素を合計する
const sum = array.reduce((accumulator, value) => accumulator + value, 0)
return sum / period
}
// 利益を計算する
function getProfit(side: 'BUY' | 'SELL', openPrice: number, closePrice: number, volume: number): number {
return (side === 'BUY') ? (closePrice - openPrice) * volume : (openPrice - closePrice) * volume
}
function sleep(time: number) {
return new Promise((resolve, reject) => {
setTimeout(() => {
resolve();
}, time);
})
}
})()