-
Notifications
You must be signed in to change notification settings - Fork 154
/
strategy.go
404 lines (346 loc) · 8.72 KB
/
strategy.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
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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
package crex
import (
"fmt"
"github.com/spf13/cast"
"reflect"
"strings"
)
const (
// StrategyOptionTag 选项Tag
StrategyOptionTag = "opt"
)
// StrategyOption 策略参数
type StrategyOption struct {
Name string `json:"name"`
Description string `json:"description"`
Type string `json:"type"`
Value interface{} `json:"value"`
DefaultValue interface{} `json:"default_value"`
}
// Strategy interface
type Strategy interface {
Name() string
SetName(name string)
SetSelf(self Strategy) error
//Setup(mode TradeMode, exchanges ...Exchange) error
Setup(mode TradeMode, exchanges ...interface{}) error
IsStopped() bool
StopNow()
TradeMode() TradeMode
SetOptions(options map[string]interface{}) error
Run() error
OnInit() error
OnTick() error
OnExit() error
}
// StrategyBase Strategy base class
type StrategyBase struct {
self interface{}
name string
tradeMode TradeMode
Exchanges []Exchange
Exchange Exchange
stopped bool
}
// SetSelf 设置 self 对象
func (s *StrategyBase) SetSelf(self Strategy) error {
s.self = self.(interface{})
return nil
}
// Setup Setups the exchanges
func (s *StrategyBase) Setup(mode TradeMode, exchanges ...interface{}) error { // Exchange
if len(exchanges) == 0 {
return fmt.Errorf("no exchanges")
}
s.tradeMode = mode
for _, v := range exchanges {
ex, ok := v.(Exchange)
if !ok {
return fmt.Errorf("Exchange Only")
}
s.Exchanges = append(s.Exchanges, ex)
}
s.Exchange = s.Exchanges[0]
s.stopped = false
return nil
}
// SetOptions Sets the options for the strategy
func (s *StrategyBase) SetOptions(options map[string]interface{}) error {
return setOptions(s.self, options)
}
// GetOptions Returns the options of strategy
func (s *StrategyBase) GetOptions() (optionMap map[string]*StrategyOption) {
return getOptions(s.self)
}
func (s *StrategyBase) TradeMode() TradeMode {
return s.tradeMode
}
func (s *StrategyBase) IsStopped() bool {
return s.stopped
}
func (s *StrategyBase) StopNow() {
s.stopped = true
}
func (s *StrategyBase) SetName(name string) {
s.name = name
}
func (s *StrategyBase) Name() string {
return s.name
}
// SpotStrategyBase Strategy base class
type SpotStrategyBase struct {
self interface{}
name string
tradeMode TradeMode
Exchanges []SpotExchange
Exchange SpotExchange
}
// SetSelf 设置 self 对象
func (s *SpotStrategyBase) SetSelf(self Strategy) error {
s.self = self.(interface{})
return nil
}
// Setup Setups the exchanges
func (s *SpotStrategyBase) Setup(mode TradeMode, exchanges ...interface{}) error { // Exchange
if len(exchanges) == 0 {
return fmt.Errorf("no exchanges")
}
s.tradeMode = mode
for _, v := range exchanges {
ex, ok := v.(SpotExchange)
if !ok {
return fmt.Errorf("SpotExchange only")
}
s.Exchanges = append(s.Exchanges, ex)
}
s.Exchange = s.Exchanges[0]
return nil
}
// SetOptions Sets the options for the strategy
func (s *SpotStrategyBase) SetOptions(options map[string]interface{}) error {
return setOptions(s.self, options)
}
// GetOptions Returns the options of strategy
func (s *SpotStrategyBase) GetOptions() (optionMap map[string]*StrategyOption) {
return getOptions(s.self)
}
func (s *SpotStrategyBase) TradeMode() TradeMode {
return s.tradeMode
}
func (s *SpotStrategyBase) SetName(name string) {
s.name = name
}
func (s *SpotStrategyBase) Name() string {
return s.name
}
// 组合策略,期现等
// CStrategyBase Strategy base class
type CStrategyBase struct {
self interface{}
name string
tradeMode TradeMode
Exchanges []Exchange
SpotExchanges []SpotExchange
stopped bool
}
// SetSelf 设置 self 对象
func (s *CStrategyBase) SetSelf(self Strategy) error {
s.self = self.(interface{})
return nil
}
// Setup Setups the exchanges
func (s *CStrategyBase) Setup(mode TradeMode, exchanges ...interface{}) error { // Exchange
if len(exchanges) == 0 {
return fmt.Errorf("no exchanges")
}
s.tradeMode = mode
for _, v := range exchanges {
if ex, ok := v.(Exchange); ok {
s.Exchanges = append(s.Exchanges, ex)
continue
}
if ex, ok := v.(SpotExchange); ok {
s.SpotExchanges = append(s.SpotExchanges, ex)
}
}
s.stopped = false
return nil
}
// SetOptions Sets the options for the strategy
func (s *CStrategyBase) SetOptions(options map[string]interface{}) error {
return setOptions(s.self, options)
}
// GetOptions Returns the options of strategy
func (s *CStrategyBase) GetOptions() (optionMap map[string]*StrategyOption) {
return getOptions(s.self)
}
func (s *CStrategyBase) TradeMode() TradeMode {
return s.tradeMode
}
func (s *CStrategyBase) IsStopped() bool {
return s.stopped
}
func (s *CStrategyBase) StopNow() {
s.stopped = true
}
func (s *CStrategyBase) SetName(name string) {
s.name = name
}
func (s *CStrategyBase) Name() string {
return s.name
}
// SetOptions Sets the options for the strategy
func setOptions(s interface{}, options map[string]interface{}) error {
if len(options) == 0 {
return nil
}
rawOptionsOrigin := getOptions(s)
rawOptions := map[string]*StrategyOption{}
for k, v := range rawOptionsOrigin {
key := strings.ReplaceAll(strings.ToLower(k), "_", "")
rawOptions[key] = v
}
// 反射成员变量
val := reflect.ValueOf(s)
// If it's an interface or a pointer, unwrap it.
if val.Kind() == reflect.Ptr && val.Elem().Kind() == reflect.Struct {
val = val.Elem()
} else {
return nil
}
for name, value := range options {
var fieldName string
key := strings.ReplaceAll(name, "_", "")
if ipi, ok := rawOptions[key]; !ok {
continue
} else {
fieldName = ipi.Name
}
//fmt.Println(fieldName)
v := val.FieldByName(fieldName)
if !v.IsValid() {
continue
}
switch v.Kind() {
default:
fmt.Printf("Error Kind: %v\n", v.Kind())
case reflect.Bool:
v.SetBool(cast.ToBool(value))
case reflect.String:
v.SetString(value.(string))
case reflect.Int:
v.SetInt(cast.ToInt64(value))
case reflect.Int8:
v.SetInt(cast.ToInt64(value))
case reflect.Int16:
v.SetInt(cast.ToInt64(value))
case reflect.Int32:
v.SetInt(cast.ToInt64(value))
case reflect.Int64:
v.SetInt(cast.ToInt64(value))
case reflect.Uint:
v.SetUint(cast.ToUint64(value))
case reflect.Uint8:
v.SetUint(cast.ToUint64(value))
case reflect.Uint16:
v.SetUint(cast.ToUint64(value))
case reflect.Uint32:
v.SetUint(cast.ToUint64(value))
case reflect.Uint64:
v.SetUint(cast.ToUint64(value))
case reflect.Float32:
v.SetFloat(cast.ToFloat64(value))
case reflect.Float64:
v.SetFloat(cast.ToFloat64(value))
// case reflect.Struct:
// v.Set(reflect.ValueOf(value))
}
}
return nil
}
func getOptions(s interface{}) (optionMap map[string]*StrategyOption) {
//log.Info("GetOptions")
optionMap = map[string]*StrategyOption{}
if s == nil {
return
}
val := reflect.ValueOf(s)
// If it's an interface or a pointer, unwrap it.
if val.Kind() == reflect.Ptr && val.Elem().Kind() == reflect.Struct {
val = val.Elem()
} else {
return
}
valNumFields := val.NumField()
for i := 0; i < valNumFields; i++ {
field := val.Field(i)
fieldKind := field.Kind()
if fieldKind == reflect.Ptr && field.Elem().Kind() == reflect.Struct {
continue
}
typeField := val.Type().Field(i)
fieldName := typeField.Name
tag := typeField.Tag
if !field.CanInterface() {
continue
}
option := tag.Get(StrategyOptionTag)
if option == "" {
continue
}
var description string
var defaultValueString string
index := strings.Index(option, ",")
//fmt.Printf("tag: %v i: %v\n", option, index)
if index != -1 {
description = option[0:index]
defaultValueString = option[index+1:]
} else {
description = option
}
value := field.Interface()
defaultValue := getDefaultValue(fieldKind, defaultValueString)
optionMap[fieldName] = &StrategyOption{
Name: fieldName,
Description: description,
Type: typeField.Type.String(),
Value: value,
DefaultValue: defaultValue,
}
//log.Infof("F: %v V: %v", fieldName, value)
}
return
}
func getDefaultValue(kind reflect.Kind, value string) interface{} {
switch kind {
case reflect.Bool:
return cast.ToBool(value)
case reflect.String:
return value
case reflect.Int:
return cast.ToInt(value)
case reflect.Int8:
return cast.ToInt8(value)
case reflect.Int16:
return cast.ToInt16(value)
case reflect.Int32:
return cast.ToInt32(value)
case reflect.Int64:
return cast.ToInt64(value)
case reflect.Uint:
return cast.ToUint(value)
case reflect.Uint8:
return cast.ToUint8(value)
case reflect.Uint16:
return cast.ToUint16(value)
case reflect.Uint32:
return cast.ToUint32(value)
case reflect.Uint64:
return cast.ToInt64(value)
case reflect.Float32:
return cast.ToFloat32(value)
case reflect.Float64:
return cast.ToFloat64(value)
}
return 0
}