File tree Expand file tree Collapse file tree 2 files changed +18
-1
lines changed Expand file tree Collapse file tree 2 files changed +18
-1
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,8 @@ data Section
21
21
( Eq ,
22
22
Ord ,
23
23
Show ,
24
+ Read ,
25
+ Data ,
24
26
Generic
25
27
)
26
28
@@ -40,6 +42,8 @@ data Request = Request
40
42
( Eq ,
41
43
Ord ,
42
44
Show ,
45
+ Read ,
46
+ Data ,
43
47
Generic
44
48
)
45
49
@@ -52,6 +56,8 @@ data Options = Options
52
56
( Eq ,
53
57
Ord ,
54
58
Show ,
59
+ Read ,
60
+ Data ,
55
61
Generic
56
62
)
57
63
Original file line number Diff line number Diff line change @@ -387,6 +387,8 @@ data Candle = Candle
387
387
( Eq ,
388
388
Ord ,
389
389
Show ,
390
+ Read ,
391
+ Data ,
390
392
Generic
391
393
)
392
394
@@ -407,8 +409,17 @@ data CandleTimeFrame
407
409
( Eq ,
408
410
Ord ,
409
411
Show ,
410
- Generic
412
+ Read ,
413
+ Data ,
414
+ Generic ,
415
+ Enum ,
416
+ Bounded
417
+ )
418
+ deriving
419
+ ( HasCodec ,
420
+ HasItemCodec
411
421
)
422
+ via GenericEnum CandleTimeFrame
412
423
413
424
instance NFData CandleTimeFrame
414
425
You can’t perform that action at this time.
0 commit comments