forked from thrasher-corp/gocryptotrader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
coverage.txt
1313 lines (1312 loc) · 98.4 KB
/
coverage.txt
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
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
mode: atomic
github.com/thrasher-/gocryptotrader/wallet_routes.go:20.116,22.37 2 1
github.com/thrasher-/gocryptotrader/wallet_routes.go:39.2,39.15 1 1
github.com/thrasher-/gocryptotrader/wallet_routes.go:22.37,23.52 1 0
github.com/thrasher-/gocryptotrader/wallet_routes.go:23.52,29.11 5 0
github.com/thrasher-/gocryptotrader/wallet_routes.go:29.11,32.5 2 0
github.com/thrasher-/gocryptotrader/wallet_routes.go:32.5,36.5 3 0
github.com/thrasher-/gocryptotrader/wallet_routes.go:43.127,44.37 1 1
github.com/thrasher-/gocryptotrader/wallet_routes.go:49.2,49.73 1 1
github.com/thrasher-/gocryptotrader/wallet_routes.go:44.37,45.47 1 0
github.com/thrasher-/gocryptotrader/wallet_routes.go:45.47,47.4 1 0
github.com/thrasher-/gocryptotrader/wallet_routes.go:53.68,55.46 2 4
github.com/thrasher-/gocryptotrader/wallet_routes.go:66.2,66.17 1 4
github.com/thrasher-/gocryptotrader/wallet_routes.go:55.46,56.56 1 0
github.com/thrasher-/gocryptotrader/wallet_routes.go:56.56,58.18 2 0
github.com/thrasher-/gocryptotrader/wallet_routes.go:63.4,63.61 1 0
github.com/thrasher-/gocryptotrader/wallet_routes.go:58.18,62.5 1 0
github.com/thrasher-/gocryptotrader/wallet_routes.go:71.72,75.60 4 0
github.com/thrasher-/gocryptotrader/wallet_routes.go:75.60,76.13 1 0
github.com/thrasher-/gocryptotrader/config_routes.go:12.61,15.62 3 0
github.com/thrasher-/gocryptotrader/config_routes.go:15.62,16.13 1 0
github.com/thrasher-/gocryptotrader/config_routes.go:22.62,27.20 4 0
github.com/thrasher-/gocryptotrader/config_routes.go:31.2,31.38 1 0
github.com/thrasher-/gocryptotrader/config_routes.go:42.2,43.16 2 0
github.com/thrasher-/gocryptotrader/config_routes.go:46.2,47.16 2 0
github.com/thrasher-/gocryptotrader/config_routes.go:50.2,54.62 4 0
github.com/thrasher-/gocryptotrader/config_routes.go:27.20,28.17 1 0
github.com/thrasher-/gocryptotrader/config_routes.go:31.38,32.57 1 0
github.com/thrasher-/gocryptotrader/config_routes.go:32.57,33.75 1 0
github.com/thrasher-/gocryptotrader/config_routes.go:33.75,38.5 4 0
github.com/thrasher-/gocryptotrader/config_routes.go:43.16,44.13 1 0
github.com/thrasher-/gocryptotrader/config_routes.go:47.16,48.13 1 0
github.com/thrasher-/gocryptotrader/config_routes.go:54.62,55.13 1 0
github.com/thrasher-/gocryptotrader/main.go:73.26,74.44 1 0
github.com/thrasher-/gocryptotrader/main.go:74.44,75.43 1 0
github.com/thrasher-/gocryptotrader/main.go:75.43,76.31 1 0
github.com/thrasher-/gocryptotrader/main.go:76.31,77.48 1 0
github.com/thrasher-/gocryptotrader/main.go:77.48,79.38 2 0
github.com/thrasher-/gocryptotrader/main.go:79.38,87.7 2 0
github.com/thrasher-/gocryptotrader/main.go:87.7,92.7 1 0
github.com/thrasher-/gocryptotrader/main.go:99.13,105.16 5 0
github.com/thrasher-/gocryptotrader/main.go:109.2,112.28 3 0
github.com/thrasher-/gocryptotrader/main.go:127.2,154.42 4 0
github.com/thrasher-/gocryptotrader/main.go:164.2,169.16 4 0
github.com/thrasher-/gocryptotrader/main.go:173.2,180.34 6 0
github.com/thrasher-/gocryptotrader/main.go:195.2,195.35 1 0
github.com/thrasher-/gocryptotrader/main.go:199.2,200.12 2 0
github.com/thrasher-/gocryptotrader/main.go:105.16,107.3 1 0
github.com/thrasher-/gocryptotrader/main.go:112.28,114.17 2 0
github.com/thrasher-/gocryptotrader/main.go:114.17,117.4 2 0
github.com/thrasher-/gocryptotrader/main.go:117.4,122.4 1 0
github.com/thrasher-/gocryptotrader/main.go:123.3,125.3 1 0
github.com/thrasher-/gocryptotrader/main.go:154.42,155.30 1 0
github.com/thrasher-/gocryptotrader/main.go:155.30,161.4 2 0
github.com/thrasher-/gocryptotrader/main.go:169.16,171.3 1 0
github.com/thrasher-/gocryptotrader/main.go:180.34,182.17 2 0
github.com/thrasher-/gocryptotrader/main.go:182.17,185.4 1 0
github.com/thrasher-/gocryptotrader/main.go:185.4,193.4 4 0
github.com/thrasher-/gocryptotrader/main.go:195.35,197.3 1 0
github.com/thrasher-/gocryptotrader/main.go:204.25,210.23 5 1
github.com/thrasher-/gocryptotrader/main.go:219.2,219.54 1 1
github.com/thrasher-/gocryptotrader/main.go:222.2,222.45 1 1
github.com/thrasher-/gocryptotrader/main.go:210.23,213.17 3 0
github.com/thrasher-/gocryptotrader/main.go:213.17,215.4 1 0
github.com/thrasher-/gocryptotrader/main.go:215.4,217.4 1 0
github.com/thrasher-/gocryptotrader/main.go:219.54,221.3 1 0
github.com/thrasher-/gocryptotrader/main.go:227.24,230.12 3 1
github.com/thrasher-/gocryptotrader/main.go:230.12,234.3 3 1
github.com/thrasher-/gocryptotrader/main.go:238.17,243.16 4 0
github.com/thrasher-/gocryptotrader/main.go:249.2,250.12 2 0
github.com/thrasher-/gocryptotrader/main.go:243.16,245.3 1 0
github.com/thrasher-/gocryptotrader/main.go:245.3,247.3 1 0
github.com/thrasher-/gocryptotrader/main.go:254.59,255.20 1 1
github.com/thrasher-/gocryptotrader/main.go:259.2,261.33 2 0
github.com/thrasher-/gocryptotrader/main.go:255.20,257.3 1 1
github.com/thrasher-/gocryptotrader/main.go:261.33,263.48 2 0
github.com/thrasher-/gocryptotrader/main.go:263.48,269.18 5 0
github.com/thrasher-/gocryptotrader/main.go:273.4,273.63 1 0
github.com/thrasher-/gocryptotrader/main.go:269.18,270.13 1 0
github.com/thrasher-/gocryptotrader/main.go:273.63,279.5 1 0
github.com/thrasher-/gocryptotrader/main.go:279.5,281.5 1 0
github.com/thrasher-/gocryptotrader/orders.go:21.59,23.22 2 2
github.com/thrasher-/gocryptotrader/orders.go:29.2,33.22 5 2
github.com/thrasher-/gocryptotrader/orders.go:23.22,25.3 1 1
github.com/thrasher-/gocryptotrader/orders.go:25.3,27.3 1 1
github.com/thrasher-/gocryptotrader/orders.go:37.36,38.24 1 2
github.com/thrasher-/gocryptotrader/orders.go:44.2,44.14 1 1
github.com/thrasher-/gocryptotrader/orders.go:38.24,39.35 1 2
github.com/thrasher-/gocryptotrader/orders.go:39.35,42.4 2 1
github.com/thrasher-/gocryptotrader/orders.go:48.52,50.24 2 1
github.com/thrasher-/gocryptotrader/orders.go:55.2,55.21 1 1
github.com/thrasher-/gocryptotrader/orders.go:58.2,58.12 1 1
github.com/thrasher-/gocryptotrader/orders.go:50.24,51.37 1 1
github.com/thrasher-/gocryptotrader/orders.go:51.37,53.4 1 0
github.com/thrasher-/gocryptotrader/orders.go:55.21,57.3 1 0
github.com/thrasher-/gocryptotrader/orders.go:62.44,63.24 1 1
github.com/thrasher-/gocryptotrader/orders.go:68.2,68.12 1 1
github.com/thrasher-/gocryptotrader/orders.go:63.24,64.35 1 1
github.com/thrasher-/gocryptotrader/orders.go:64.35,66.4 1 0
github.com/thrasher-/gocryptotrader/restful_logger.go:10.59,11.71 1 5
github.com/thrasher-/gocryptotrader/restful_logger.go:11.71,23.3 3 0
github.com/thrasher-/gocryptotrader/restful_router.go:12.63,17.34 5 1
github.com/thrasher-/gocryptotrader/restful_router.go:28.2,28.15 1 1
github.com/thrasher-/gocryptotrader/restful_router.go:17.34,27.3 4 5
github.com/thrasher-/gocryptotrader/ticker_routes.go:13.65,19.42 6 0
github.com/thrasher-/gocryptotrader/ticker_routes.go:33.2,37.48 4 0
github.com/thrasher-/gocryptotrader/ticker_routes.go:19.42,20.30 1 0
github.com/thrasher-/gocryptotrader/ticker_routes.go:20.30,21.82 1 0
github.com/thrasher-/gocryptotrader/ticker_routes.go:21.82,25.19 2 0
github.com/thrasher-/gocryptotrader/ticker_routes.go:25.19,27.14 2 0
github.com/thrasher-/gocryptotrader/ticker_routes.go:37.48,38.13 1 0
github.com/thrasher-/gocryptotrader/ticker_routes.go:54.74,57.46 2 0
github.com/thrasher-/gocryptotrader/ticker_routes.go:82.2,84.60 3 0
github.com/thrasher-/gocryptotrader/ticker_routes.go:57.46,58.56 1 0
github.com/thrasher-/gocryptotrader/ticker_routes.go:58.56,66.40 6 0
github.com/thrasher-/gocryptotrader/ticker_routes.go:79.4,79.61 1 0
github.com/thrasher-/gocryptotrader/ticker_routes.go:66.40,70.19 2 0
github.com/thrasher-/gocryptotrader/ticker_routes.go:73.5,77.6 2 0
github.com/thrasher-/gocryptotrader/ticker_routes.go:70.19,71.14 1 0
github.com/thrasher-/gocryptotrader/ticker_routes.go:84.60,85.13 1 0
mode: atomic
github.com/thrasher-/gocryptotrader/common/common.go:41.34,45.2 3 1
github.com/thrasher-/gocryptotrader/common/common.go:48.37,52.2 3 1
github.com/thrasher-/gocryptotrader/common/common.go:55.37,59.2 3 1
github.com/thrasher-/gocryptotrader/common/common.go:63.54,66.18 2 4
github.com/thrasher-/gocryptotrader/common/common.go:85.2,87.22 3 4
github.com/thrasher-/gocryptotrader/common/common.go:67.16,68.3 1 1
github.com/thrasher-/gocryptotrader/common/common.go:71.18,72.3 1 1
github.com/thrasher-/gocryptotrader/common/common.go:75.18,76.3 1 1
github.com/thrasher-/gocryptotrader/common/common.go:79.22,80.3 1 1
github.com/thrasher-/gocryptotrader/common/common.go:68.3,70.4 1 1
github.com/thrasher-/gocryptotrader/common/common.go:72.3,74.4 1 1
github.com/thrasher-/gocryptotrader/common/common.go:76.3,78.4 1 1
github.com/thrasher-/gocryptotrader/common/common.go:80.3,82.4 1 1
github.com/thrasher-/gocryptotrader/common/common.go:91.45,93.2 1 4
github.com/thrasher-/gocryptotrader/common/common.go:96.49,98.16 2 1
github.com/thrasher-/gocryptotrader/common/common.go:101.2,101.20 1 1
github.com/thrasher-/gocryptotrader/common/common.go:98.16,100.3 1 0
github.com/thrasher-/gocryptotrader/common/common.go:105.40,107.2 1 1
github.com/thrasher-/gocryptotrader/common/common.go:111.71,113.25 2 1
github.com/thrasher-/gocryptotrader/common/common.go:130.2,130.13 1 1
github.com/thrasher-/gocryptotrader/common/common.go:113.25,114.29 1 2
github.com/thrasher-/gocryptotrader/common/common.go:126.3,126.13 1 2
github.com/thrasher-/gocryptotrader/common/common.go:114.29,116.30 2 2
github.com/thrasher-/gocryptotrader/common/common.go:122.4,122.14 1 2
github.com/thrasher-/gocryptotrader/common/common.go:116.30,117.17 1 2
github.com/thrasher-/gocryptotrader/common/common.go:117.17,119.11 2 0
github.com/thrasher-/gocryptotrader/common/common.go:122.14,124.5 1 2
github.com/thrasher-/gocryptotrader/common/common.go:126.13,128.4 1 1
github.com/thrasher-/gocryptotrader/common/common.go:135.51,137.2 1 1
github.com/thrasher-/gocryptotrader/common/common.go:140.58,143.2 2 2
github.com/thrasher-/gocryptotrader/common/common.go:147.59,149.2 1 1
github.com/thrasher-/gocryptotrader/common/common.go:153.53,155.2 1 5
github.com/thrasher-/gocryptotrader/common/common.go:158.46,160.2 1 1
github.com/thrasher-/gocryptotrader/common/common.go:163.41,165.2 1 1
github.com/thrasher-/gocryptotrader/common/common.go:168.41,170.2 1 14
github.com/thrasher-/gocryptotrader/common/common.go:173.46,180.16 7 1
github.com/thrasher-/gocryptotrader/common/common.go:184.2,184.15 1 1
github.com/thrasher-/gocryptotrader/common/common.go:190.2,190.22 1 1
github.com/thrasher-/gocryptotrader/common/common.go:180.16,183.3 2 0
github.com/thrasher-/gocryptotrader/common/common.go:184.15,186.3 1 0
github.com/thrasher-/gocryptotrader/common/common.go:186.3,188.3 1 1
github.com/thrasher-/gocryptotrader/common/common.go:195.39,196.15 1 2
github.com/thrasher-/gocryptotrader/common/common.go:199.2,199.19 1 1
github.com/thrasher-/gocryptotrader/common/common.go:196.15,198.3 1 1
github.com/thrasher-/gocryptotrader/common/common.go:205.65,206.31 1 8
github.com/thrasher-/gocryptotrader/common/common.go:207.13,208.74 1 2
github.com/thrasher-/gocryptotrader/common/common.go:209.13,210.75 1 3
github.com/thrasher-/gocryptotrader/common/common.go:211.13,212.60 1 2
github.com/thrasher-/gocryptotrader/common/common.go:213.10,214.54 1 1
github.com/thrasher-/gocryptotrader/common/common.go:219.33,220.66 1 3
github.com/thrasher-/gocryptotrader/common/common.go:223.2,223.14 1 1
github.com/thrasher-/gocryptotrader/common/common.go:220.66,222.3 1 2
github.com/thrasher-/gocryptotrader/common/common.go:227.58,229.2 1 1
github.com/thrasher-/gocryptotrader/common/common.go:232.48,234.2 1 2
github.com/thrasher-/gocryptotrader/common/common.go:238.73,240.2 1 1
github.com/thrasher-/gocryptotrader/common/common.go:244.74,246.2 1 1
github.com/thrasher-/gocryptotrader/common/common.go:249.77,251.2 1 1
github.com/thrasher-/gocryptotrader/common/common.go:255.102,258.63 2 4
github.com/thrasher-/gocryptotrader/common/common.go:262.2,264.16 2 3
github.com/thrasher-/gocryptotrader/common/common.go:268.2,268.28 1 3
github.com/thrasher-/gocryptotrader/common/common.go:272.2,275.16 3 3
github.com/thrasher-/gocryptotrader/common/common.go:279.2,282.16 3 3
github.com/thrasher-/gocryptotrader/common/common.go:286.2,286.30 1 3
github.com/thrasher-/gocryptotrader/common/common.go:258.63,260.3 1 1
github.com/thrasher-/gocryptotrader/common/common.go:264.16,266.3 1 0
github.com/thrasher-/gocryptotrader/common/common.go:268.28,270.3 1 3
github.com/thrasher-/gocryptotrader/common/common.go:275.16,277.3 1 0
github.com/thrasher-/gocryptotrader/common/common.go:282.16,284.3 1 0
github.com/thrasher-/gocryptotrader/common/common.go:292.80,294.16 2 3
github.com/thrasher-/gocryptotrader/common/common.go:298.2,298.27 1 2
github.com/thrasher-/gocryptotrader/common/common.go:303.2,304.16 2 2
github.com/thrasher-/gocryptotrader/common/common.go:308.2,310.16 2 2
github.com/thrasher-/gocryptotrader/common/common.go:320.2,320.12 1 2
github.com/thrasher-/gocryptotrader/common/common.go:294.16,296.3 1 1
github.com/thrasher-/gocryptotrader/common/common.go:298.27,301.3 2 0
github.com/thrasher-/gocryptotrader/common/common.go:304.16,306.3 1 0
github.com/thrasher-/gocryptotrader/common/common.go:310.16,312.17 2 1
github.com/thrasher-/gocryptotrader/common/common.go:312.17,315.4 2 0
github.com/thrasher-/gocryptotrader/common/common.go:316.3,318.3 1 1
github.com/thrasher-/gocryptotrader/common/common.go:324.48,326.2 1 2
github.com/thrasher-/gocryptotrader/common/common.go:329.52,331.2 1 1
github.com/thrasher-/gocryptotrader/common/common.go:335.60,337.21 2 1
github.com/thrasher-/gocryptotrader/common/common.go:340.2,340.13 1 1
github.com/thrasher-/gocryptotrader/common/common.go:337.21,339.3 1 1
github.com/thrasher-/gocryptotrader/common/common.go:344.41,346.16 2 3
github.com/thrasher-/gocryptotrader/common/common.go:349.2,349.13 1 2
github.com/thrasher-/gocryptotrader/common/common.go:346.16,348.3 1 1
github.com/thrasher-/gocryptotrader/common/common.go:353.35,357.2 3 1
github.com/thrasher-/gocryptotrader/common/common.go:360.52,362.16 2 1
github.com/thrasher-/gocryptotrader/common/common.go:369.2,370.16 2 1
github.com/thrasher-/gocryptotrader/common/common.go:374.2,377.16 3 1
github.com/thrasher-/gocryptotrader/common/common.go:381.2,382.12 2 1
github.com/thrasher-/gocryptotrader/common/common.go:362.16,364.20 2 0
github.com/thrasher-/gocryptotrader/common/common.go:364.20,366.4 1 0
github.com/thrasher-/gocryptotrader/common/common.go:370.16,372.3 1 0
github.com/thrasher-/gocryptotrader/common/common.go:377.16,379.3 1 0
github.com/thrasher-/gocryptotrader/common/common.go:386.53,388.2 1 1
github.com/thrasher-/gocryptotrader/common/common.go:391.64,393.16 2 2
github.com/thrasher-/gocryptotrader/common/common.go:397.2,397.29 1 1
github.com/thrasher-/gocryptotrader/common/common.go:393.16,395.3 1 1
github.com/thrasher-/gocryptotrader/common/common.go:401.44,403.16 2 4
github.com/thrasher-/gocryptotrader/common/common.go:406.2,406.18 1 3
github.com/thrasher-/gocryptotrader/common/common.go:403.16,405.3 1 1
github.com/thrasher-/gocryptotrader/common/common.go:410.48,412.16 2 1
github.com/thrasher-/gocryptotrader/common/common.go:415.2,415.12 1 1
github.com/thrasher-/gocryptotrader/common/common.go:412.16,414.3 1 0
github.com/thrasher-/gocryptotrader/common/common.go:419.36,421.16 2 3
github.com/thrasher-/gocryptotrader/common/common.go:424.2,424.25 1 3
github.com/thrasher-/gocryptotrader/common/common.go:427.2,427.18 1 2
github.com/thrasher-/gocryptotrader/common/common.go:421.16,423.3 1 0
github.com/thrasher-/gocryptotrader/common/common.go:424.25,426.3 1 1
mode: atomic
github.com/thrasher-/gocryptotrader/config/config.go:106.50,108.29 2 1
github.com/thrasher-/gocryptotrader/config/config.go:113.2,113.16 1 1
github.com/thrasher-/gocryptotrader/config/config.go:108.29,109.29 1 17
github.com/thrasher-/gocryptotrader/config/config.go:109.29,111.4 1 17
github.com/thrasher-/gocryptotrader/config/config.go:117.73,118.29 1 3
github.com/thrasher-/gocryptotrader/config/config.go:123.2,123.64 1 1
github.com/thrasher-/gocryptotrader/config/config.go:118.29,119.34 1 19
github.com/thrasher-/gocryptotrader/config/config.go:119.34,121.4 1 2
github.com/thrasher-/gocryptotrader/config/config.go:127.63,128.29 1 2
github.com/thrasher-/gocryptotrader/config/config.go:134.2,134.48 1 1
github.com/thrasher-/gocryptotrader/config/config.go:128.29,129.36 1 18
github.com/thrasher-/gocryptotrader/config/config.go:129.36,132.4 2 1
github.com/thrasher-/gocryptotrader/config/config.go:138.53,139.114 1 4
github.com/thrasher-/gocryptotrader/config/config.go:142.2,143.32 2 3
github.com/thrasher-/gocryptotrader/config/config.go:152.2,152.19 1 3
github.com/thrasher-/gocryptotrader/config/config.go:155.2,155.12 1 1
github.com/thrasher-/gocryptotrader/config/config.go:139.114,141.3 1 1
github.com/thrasher-/gocryptotrader/config/config.go:143.32,144.32 1 2
github.com/thrasher-/gocryptotrader/config/config.go:144.32,145.146 1 2
github.com/thrasher-/gocryptotrader/config/config.go:149.4,149.14 1 1
github.com/thrasher-/gocryptotrader/config/config.go:145.146,147.13 2 1
github.com/thrasher-/gocryptotrader/config/config.go:152.19,154.3 1 2
github.com/thrasher-/gocryptotrader/config/config.go:160.52,161.30 1 18
github.com/thrasher-/gocryptotrader/config/config.go:165.2,166.35 2 17
github.com/thrasher-/gocryptotrader/config/config.go:196.2,196.20 1 13
github.com/thrasher-/gocryptotrader/config/config.go:199.2,199.12 1 12
github.com/thrasher-/gocryptotrader/config/config.go:161.30,163.3 1 1
github.com/thrasher-/gocryptotrader/config/config.go:166.35,167.19 1 208
github.com/thrasher-/gocryptotrader/config/config.go:167.19,168.23 1 208
github.com/thrasher-/gocryptotrader/config/config.go:171.4,171.33 1 207
github.com/thrasher-/gocryptotrader/config/config.go:174.4,174.31 1 206
github.com/thrasher-/gocryptotrader/config/config.go:177.4,177.33 1 205
github.com/thrasher-/gocryptotrader/config/config.go:180.4,180.36 1 204
github.com/thrasher-/gocryptotrader/config/config.go:193.4,193.15 1 202
github.com/thrasher-/gocryptotrader/config/config.go:168.23,170.5 1 1
github.com/thrasher-/gocryptotrader/config/config.go:171.33,173.5 1 1
github.com/thrasher-/gocryptotrader/config/config.go:174.31,176.5 1 1
github.com/thrasher-/gocryptotrader/config/config.go:177.33,179.5 1 1
github.com/thrasher-/gocryptotrader/config/config.go:180.36,181.104 1 2
github.com/thrasher-/gocryptotrader/config/config.go:181.104,184.14 3 1
github.com/thrasher-/gocryptotrader/config/config.go:185.6,185.111 1 1
github.com/thrasher-/gocryptotrader/config/config.go:185.111,186.60 1 1
github.com/thrasher-/gocryptotrader/config/config.go:186.60,189.15 3 1
github.com/thrasher-/gocryptotrader/config/config.go:196.20,198.3 1 1
github.com/thrasher-/gocryptotrader/config/config.go:204.53,205.72 1 5
github.com/thrasher-/gocryptotrader/config/config.go:209.2,209.60 1 4
github.com/thrasher-/gocryptotrader/config/config.go:213.2,215.16 3 3
github.com/thrasher-/gocryptotrader/config/config.go:219.2,219.30 1 2
github.com/thrasher-/gocryptotrader/config/config.go:222.2,222.12 1 1
github.com/thrasher-/gocryptotrader/config/config.go:205.72,207.3 1 1
github.com/thrasher-/gocryptotrader/config/config.go:209.60,211.3 1 1
github.com/thrasher-/gocryptotrader/config/config.go:215.16,217.3 1 1
github.com/thrasher-/gocryptotrader/config/config.go:219.30,221.3 1 1
github.com/thrasher-/gocryptotrader/config/config.go:227.54,231.37 3 1
github.com/thrasher-/gocryptotrader/config/config.go:240.2,240.39 1 1
github.com/thrasher-/gocryptotrader/config/config.go:277.2,278.59 2 1
github.com/thrasher-/gocryptotrader/config/config.go:281.2,284.12 3 1
github.com/thrasher-/gocryptotrader/config/config.go:231.37,233.65 2 10
github.com/thrasher-/gocryptotrader/config/config.go:233.65,234.12 1 10
github.com/thrasher-/gocryptotrader/config/config.go:235.4,237.4 1 0
github.com/thrasher-/gocryptotrader/config/config.go:240.39,241.23 1 17
github.com/thrasher-/gocryptotrader/config/config.go:241.23,245.51 3 17
github.com/thrasher-/gocryptotrader/config/config.go:245.51,247.11 2 92
github.com/thrasher-/gocryptotrader/config/config.go:247.11,249.29 2 8
github.com/thrasher-/gocryptotrader/config/config.go:249.29,251.14 2 16
github.com/thrasher-/gocryptotrader/config/config.go:251.14,253.8 1 16
github.com/thrasher-/gocryptotrader/config/config.go:255.6,257.12 2 84
github.com/thrasher-/gocryptotrader/config/config.go:257.12,260.62 2 71
github.com/thrasher-/gocryptotrader/config/config.go:266.7,266.61 1 71
github.com/thrasher-/gocryptotrader/config/config.go:260.62,262.8 1 4
github.com/thrasher-/gocryptotrader/config/config.go:262.8,264.8 1 67
github.com/thrasher-/gocryptotrader/config/config.go:266.61,268.8 1 71
github.com/thrasher-/gocryptotrader/config/config.go:268.8,270.8 1 0
github.com/thrasher-/gocryptotrader/config/config.go:278.59,280.3 1 0
github.com/thrasher-/gocryptotrader/config/config.go:289.26,291.16 2 13
github.com/thrasher-/gocryptotrader/config/config.go:298.2,298.12 1 13
github.com/thrasher-/gocryptotrader/config/config.go:291.16,293.17 2 0
github.com/thrasher-/gocryptotrader/config/config.go:296.3,296.65 1 0
github.com/thrasher-/gocryptotrader/config/config.go:293.17,295.4 1 0
github.com/thrasher-/gocryptotrader/config/config.go:303.54,306.22 2 13
github.com/thrasher-/gocryptotrader/config/config.go:312.2,313.16 2 13
github.com/thrasher-/gocryptotrader/config/config.go:317.2,318.16 2 13
github.com/thrasher-/gocryptotrader/config/config.go:322.2,322.23 1 11
github.com/thrasher-/gocryptotrader/config/config.go:354.2,354.12 1 11
github.com/thrasher-/gocryptotrader/config/config.go:306.22,308.3 1 1
github.com/thrasher-/gocryptotrader/config/config.go:308.3,310.3 1 12
github.com/thrasher-/gocryptotrader/config/config.go:313.16,315.3 1 0
github.com/thrasher-/gocryptotrader/config/config.go:318.16,320.3 1 2
github.com/thrasher-/gocryptotrader/config/config.go:322.23,324.17 2 11
github.com/thrasher-/gocryptotrader/config/config.go:328.3,328.54 1 11
github.com/thrasher-/gocryptotrader/config/config.go:332.3,332.52 1 11
github.com/thrasher-/gocryptotrader/config/config.go:324.17,326.4 1 0
github.com/thrasher-/gocryptotrader/config/config.go:328.54,330.4 1 0
github.com/thrasher-/gocryptotrader/config/config.go:332.52,333.37 1 11
github.com/thrasher-/gocryptotrader/config/config.go:333.37,336.5 2 0
github.com/thrasher-/gocryptotrader/config/config.go:338.3,340.17 2 0
github.com/thrasher-/gocryptotrader/config/config.go:344.3,345.17 2 0
github.com/thrasher-/gocryptotrader/config/config.go:349.3,350.17 2 0
github.com/thrasher-/gocryptotrader/config/config.go:340.17,342.4 1 0
github.com/thrasher-/gocryptotrader/config/config.go:345.17,347.4 1 0
github.com/thrasher-/gocryptotrader/config/config.go:350.17,352.4 1 0
github.com/thrasher-/gocryptotrader/config/config.go:358.54,361.22 2 1
github.com/thrasher-/gocryptotrader/config/config.go:367.2,369.52 2 1
github.com/thrasher-/gocryptotrader/config/config.go:381.2,382.16 2 1
github.com/thrasher-/gocryptotrader/config/config.go:385.2,385.12 1 1
github.com/thrasher-/gocryptotrader/config/config.go:361.22,363.3 1 0
github.com/thrasher-/gocryptotrader/config/config.go:363.3,365.3 1 1
github.com/thrasher-/gocryptotrader/config/config.go:369.52,371.18 2 0
github.com/thrasher-/gocryptotrader/config/config.go:375.3,376.17 2 0
github.com/thrasher-/gocryptotrader/config/config.go:371.18,373.4 1 0
github.com/thrasher-/gocryptotrader/config/config.go:376.17,378.4 1 0
github.com/thrasher-/gocryptotrader/config/config.go:382.16,384.3 1 0
github.com/thrasher-/gocryptotrader/config/config.go:389.54,391.16 2 10
github.com/thrasher-/gocryptotrader/config/config.go:395.2,396.16 2 9
github.com/thrasher-/gocryptotrader/config/config.go:400.2,400.12 1 9
github.com/thrasher-/gocryptotrader/config/config.go:391.16,393.3 1 1
github.com/thrasher-/gocryptotrader/config/config.go:396.16,398.3 1 0
github.com/thrasher-/gocryptotrader/config/config.go:404.26,406.2 1 9
github.com/thrasher-/gocryptotrader/config/config_encryption.go:26.51,31.16 4 12
github.com/thrasher-/gocryptotrader/config/config_encryption.go:35.2,35.28 1 0
github.com/thrasher-/gocryptotrader/config/config_encryption.go:40.2,40.13 1 0
github.com/thrasher-/gocryptotrader/config/config_encryption.go:31.16,33.3 1 12
github.com/thrasher-/gocryptotrader/config/config_encryption.go:35.28,39.3 3 0
github.com/thrasher-/gocryptotrader/config/config_encryption.go:44.43,47.27 2 1
github.com/thrasher-/gocryptotrader/config/config_encryption.go:59.2,60.59 2 0
github.com/thrasher-/gocryptotrader/config/config_encryption.go:64.2,64.23 1 0
github.com/thrasher-/gocryptotrader/config/config_encryption.go:47.27,51.17 3 1
github.com/thrasher-/gocryptotrader/config/config_encryption.go:55.3,55.49 1 0
github.com/thrasher-/gocryptotrader/config/config_encryption.go:51.17,53.4 1 1
github.com/thrasher-/gocryptotrader/config/config_encryption.go:55.49,57.4 1 0
github.com/thrasher-/gocryptotrader/config/config_encryption.go:60.59,62.3 1 0
github.com/thrasher-/gocryptotrader/config/config_encryption.go:69.64,71.16 2 1
github.com/thrasher-/gocryptotrader/config/config_encryption.go:75.2,77.56 3 1
github.com/thrasher-/gocryptotrader/config/config_encryption.go:81.2,86.26 5 1
github.com/thrasher-/gocryptotrader/config/config_encryption.go:71.16,73.3 1 0
github.com/thrasher-/gocryptotrader/config/config_encryption.go:77.56,79.3 1 0
github.com/thrasher-/gocryptotrader/config/config_encryption.go:91.64,94.16 3 1
github.com/thrasher-/gocryptotrader/config/config_encryption.go:98.2,98.37 1 1
github.com/thrasher-/gocryptotrader/config/config_encryption.go:102.2,108.20 6 1
github.com/thrasher-/gocryptotrader/config/config_encryption.go:94.16,96.3 1 0
github.com/thrasher-/gocryptotrader/config/config_encryption.go:98.37,100.3 1 0
github.com/thrasher-/gocryptotrader/config/config_encryption.go:112.63,113.66 1 13
github.com/thrasher-/gocryptotrader/config/config_encryption.go:116.2,116.41 1 12
github.com/thrasher-/gocryptotrader/config/config_encryption.go:113.66,115.3 1 1
github.com/thrasher-/gocryptotrader/config/config_encryption.go:120.35,123.2 2 12
github.com/thrasher-/gocryptotrader/config/config_encryption.go:126.36,128.2 1 2
mode: atomic
github.com/thrasher-/gocryptotrader/currency/currency.go:66.46,70.2 1 26
github.com/thrasher-/gocryptotrader/currency/currency.go:74.52,78.2 1 24
github.com/thrasher-/gocryptotrader/currency/currency.go:81.43,82.26 1 3
github.com/thrasher-/gocryptotrader/currency/currency.go:85.2,85.78 1 3
github.com/thrasher-/gocryptotrader/currency/currency.go:82.26,84.3 1 0
github.com/thrasher-/gocryptotrader/currency/currency.go:89.45,90.28 1 3
github.com/thrasher-/gocryptotrader/currency/currency.go:95.2,95.80 1 3
github.com/thrasher-/gocryptotrader/currency/currency.go:90.28,94.3 1 0
github.com/thrasher-/gocryptotrader/currency/currency.go:100.53,104.31 3 4
github.com/thrasher-/gocryptotrader/currency/currency.go:109.2,109.35 1 4
github.com/thrasher-/gocryptotrader/currency/currency.go:112.2,112.53 1 3
github.com/thrasher-/gocryptotrader/currency/currency.go:104.31,105.38 1 8
github.com/thrasher-/gocryptotrader/currency/currency.go:105.38,107.4 1 4
github.com/thrasher-/gocryptotrader/currency/currency.go:109.35,111.3 1 1
github.com/thrasher-/gocryptotrader/currency/currency.go:117.89,118.35 1 2
github.com/thrasher-/gocryptotrader/currency/currency.go:123.2,123.18 1 1
github.com/thrasher-/gocryptotrader/currency/currency.go:118.35,119.41 1 5
github.com/thrasher-/gocryptotrader/currency/currency.go:119.41,121.4 1 1
github.com/thrasher-/gocryptotrader/currency/currency.go:128.74,129.35 1 2
github.com/thrasher-/gocryptotrader/currency/currency.go:134.2,134.14 1 1
github.com/thrasher-/gocryptotrader/currency/currency.go:129.35,130.41 1 5
github.com/thrasher-/gocryptotrader/currency/currency.go:130.41,132.4 1 1
github.com/thrasher-/gocryptotrader/currency/currency.go:140.65,141.26 1 9
github.com/thrasher-/gocryptotrader/currency/currency.go:161.2,162.14 2 2
github.com/thrasher-/gocryptotrader/currency/currency.go:141.26,142.27 1 17
github.com/thrasher-/gocryptotrader/currency/currency.go:159.3,159.15 1 1
github.com/thrasher-/gocryptotrader/currency/currency.go:142.27,143.32 1 6
github.com/thrasher-/gocryptotrader/currency/currency.go:149.4,149.16 1 2
github.com/thrasher-/gocryptotrader/currency/currency.go:143.32,144.19 1 4
github.com/thrasher-/gocryptotrader/currency/currency.go:147.5,147.13 1 3
github.com/thrasher-/gocryptotrader/currency/currency.go:144.19,146.6 1 1
github.com/thrasher-/gocryptotrader/currency/currency.go:150.4,150.40 1 11
github.com/thrasher-/gocryptotrader/currency/currency.go:150.40,151.38 1 10
github.com/thrasher-/gocryptotrader/currency/currency.go:157.4,157.16 1 2
github.com/thrasher-/gocryptotrader/currency/currency.go:151.38,152.19 1 8
github.com/thrasher-/gocryptotrader/currency/currency.go:155.5,155.13 1 7
github.com/thrasher-/gocryptotrader/currency/currency.go:152.19,154.6 1 1
github.com/thrasher-/gocryptotrader/currency/currency.go:168.52,169.26 1 15
github.com/thrasher-/gocryptotrader/currency/currency.go:173.2,174.16 2 15
github.com/thrasher-/gocryptotrader/currency/currency.go:177.2,177.12 1 14
github.com/thrasher-/gocryptotrader/currency/currency.go:169.26,171.3 1 1
github.com/thrasher-/gocryptotrader/currency/currency.go:174.16,176.3 1 1
github.com/thrasher-/gocryptotrader/currency/currency.go:181.59,185.29 4 18
github.com/thrasher-/gocryptotrader/currency/currency.go:193.2,193.39 1 18
github.com/thrasher-/gocryptotrader/currency/currency.go:185.29,187.30 2 46
github.com/thrasher-/gocryptotrader/currency/currency.go:187.30,188.33 1 150
github.com/thrasher-/gocryptotrader/currency/currency.go:188.33,190.5 1 104
github.com/thrasher-/gocryptotrader/currency/currency.go:198.72,200.46 2 12
github.com/thrasher-/gocryptotrader/currency/currency.go:207.2,207.34 1 12
github.com/thrasher-/gocryptotrader/currency/currency.go:212.2,212.31 1 0
github.com/thrasher-/gocryptotrader/currency/currency.go:200.46,202.17 2 12
github.com/thrasher-/gocryptotrader/currency/currency.go:202.17,204.4 1 0
github.com/thrasher-/gocryptotrader/currency/currency.go:207.34,208.20 1 15
github.com/thrasher-/gocryptotrader/currency/currency.go:208.20,210.4 1 12
github.com/thrasher-/gocryptotrader/currency/currency.go:217.59,232.16 8 18
github.com/thrasher-/gocryptotrader/currency/currency.go:236.2,238.16 3 18
github.com/thrasher-/gocryptotrader/currency/currency.go:242.2,242.32 1 17
github.com/thrasher-/gocryptotrader/currency/currency.go:246.2,246.67 1 16
github.com/thrasher-/gocryptotrader/currency/currency.go:249.2,249.12 1 16
github.com/thrasher-/gocryptotrader/currency/currency.go:232.16,234.3 1 0
github.com/thrasher-/gocryptotrader/currency/currency.go:238.16,240.3 1 1
github.com/thrasher-/gocryptotrader/currency/currency.go:242.32,244.3 1 1
github.com/thrasher-/gocryptotrader/currency/currency.go:246.67,248.3 1 62
github.com/thrasher-/gocryptotrader/currency/currency.go:254.56,265.53 7 17
github.com/thrasher-/gocryptotrader/currency/currency.go:286.2,286.12 1 15
github.com/thrasher-/gocryptotrader/currency/currency.go:265.53,266.34 1 0
github.com/thrasher-/gocryptotrader/currency/currency.go:266.34,267.61 1 0
github.com/thrasher-/gocryptotrader/currency/currency.go:274.4,275.18 2 0
github.com/thrasher-/gocryptotrader/currency/currency.go:267.61,270.5 2 0
github.com/thrasher-/gocryptotrader/currency/currency.go:270.5,273.5 2 0
github.com/thrasher-/gocryptotrader/currency/currency.go:275.18,277.5 1 0
github.com/thrasher-/gocryptotrader/currency/currency.go:279.3,282.17 3 17
github.com/thrasher-/gocryptotrader/currency/currency.go:282.17,284.4 1 2
mode: atomic
github.com/thrasher-/gocryptotrader/currency/pair/pair.go:10.44,12.2 1 1
github.com/thrasher-/gocryptotrader/currency/pair/pair.go:15.44,17.2 1 1
github.com/thrasher-/gocryptotrader/currency/pair/pair.go:20.39,22.2 1 1
github.com/thrasher-/gocryptotrader/currency/pair/pair.go:32.55,34.2 1 1
github.com/thrasher-/gocryptotrader/currency/pair/pair.go:37.56,39.2 1 1
github.com/thrasher-/gocryptotrader/currency/pair/pair.go:42.43,44.2 1 6
github.com/thrasher-/gocryptotrader/currency/pair/pair.go:48.72,55.2 2 2
github.com/thrasher-/gocryptotrader/currency/pair/pair.go:58.73,63.2 1 6
github.com/thrasher-/gocryptotrader/currency/pair/pair.go:67.62,70.31 3 2
github.com/thrasher-/gocryptotrader/currency/pair/pair.go:76.2,76.53 1 1
github.com/thrasher-/gocryptotrader/currency/pair/pair.go:70.31,71.36 1 4
github.com/thrasher-/gocryptotrader/currency/pair/pair.go:71.36,74.4 2 1
mode: atomic
github.com/thrasher-/gocryptotrader/events/events.go:56.101,58.16 2 13
github.com/thrasher-/gocryptotrader/events/events.go:62.2,62.53 1 9
github.com/thrasher-/gocryptotrader/events/events.go:66.2,68.22 2 8
github.com/thrasher-/gocryptotrader/events/events.go:74.2,82.22 9 8
github.com/thrasher-/gocryptotrader/events/events.go:58.16,60.3 1 4
github.com/thrasher-/gocryptotrader/events/events.go:62.53,64.3 1 1
github.com/thrasher-/gocryptotrader/events/events.go:68.22,70.3 1 6
github.com/thrasher-/gocryptotrader/events/events.go:70.3,72.3 1 2
github.com/thrasher-/gocryptotrader/events/events.go:86.36,87.27 1 9
github.com/thrasher-/gocryptotrader/events/events.go:93.2,93.14 1 1
github.com/thrasher-/gocryptotrader/events/events.go:87.27,88.22 1 8
github.com/thrasher-/gocryptotrader/events/events.go:88.22,91.4 2 8
github.com/thrasher-/gocryptotrader/events/events.go:98.35,102.27 3 2
github.com/thrasher-/gocryptotrader/events/events.go:107.2,107.24 1 2
github.com/thrasher-/gocryptotrader/events/events.go:102.27,103.17 1 3
github.com/thrasher-/gocryptotrader/events/events.go:103.17,105.4 1 1
github.com/thrasher-/gocryptotrader/events/events.go:111.38,112.42 1 1
github.com/thrasher-/gocryptotrader/events/events.go:127.2,127.13 1 1
github.com/thrasher-/gocryptotrader/events/events.go:112.42,114.35 2 0
github.com/thrasher-/gocryptotrader/events/events.go:114.35,116.26 2 0
github.com/thrasher-/gocryptotrader/events/events.go:116.26,118.5 1 0
github.com/thrasher-/gocryptotrader/events/events.go:118.5,122.5 1 0
github.com/thrasher-/gocryptotrader/events/events.go:124.3,126.3 1 1
github.com/thrasher-/gocryptotrader/events/events.go:131.40,137.2 2 2
github.com/thrasher-/gocryptotrader/events/events.go:141.39,146.16 4 1
github.com/thrasher-/gocryptotrader/events/events.go:150.2,152.20 2 0
github.com/thrasher-/gocryptotrader/events/events.go:156.2,156.22 1 0
github.com/thrasher-/gocryptotrader/events/events.go:188.2,188.14 1 0
github.com/thrasher-/gocryptotrader/events/events.go:146.16,148.3 1 1
github.com/thrasher-/gocryptotrader/events/events.go:152.20,154.3 1 0
github.com/thrasher-/gocryptotrader/events/events.go:157.19,158.3 1 0
github.com/thrasher-/gocryptotrader/events/events.go:163.26,164.3 1 0
github.com/thrasher-/gocryptotrader/events/events.go:169.16,170.3 1 0
github.com/thrasher-/gocryptotrader/events/events.go:175.23,176.3 1 0
github.com/thrasher-/gocryptotrader/events/events.go:181.15,182.3 1 0
github.com/thrasher-/gocryptotrader/events/events.go:158.3,159.31 1 0
github.com/thrasher-/gocryptotrader/events/events.go:159.31,161.5 1 0
github.com/thrasher-/gocryptotrader/events/events.go:164.3,165.32 1 0
github.com/thrasher-/gocryptotrader/events/events.go:165.32,167.5 1 0
github.com/thrasher-/gocryptotrader/events/events.go:170.3,171.31 1 0
github.com/thrasher-/gocryptotrader/events/events.go:171.31,173.5 1 0
github.com/thrasher-/gocryptotrader/events/events.go:176.3,177.32 1 0
github.com/thrasher-/gocryptotrader/events/events.go:177.32,179.5 1 0
github.com/thrasher-/gocryptotrader/events/events.go:182.3,183.32 1 0
github.com/thrasher-/gocryptotrader/events/events.go:183.32,185.5 1 0
github.com/thrasher-/gocryptotrader/events/events.go:192.67,198.26 5 17
github.com/thrasher-/gocryptotrader/events/events.go:202.2,202.44 1 17
github.com/thrasher-/gocryptotrader/events/events.go:206.2,206.24 1 15
github.com/thrasher-/gocryptotrader/events/events.go:210.2,210.44 1 13
github.com/thrasher-/gocryptotrader/events/events.go:214.2,216.63 2 12
github.com/thrasher-/gocryptotrader/events/events.go:220.2,220.40 1 11
github.com/thrasher-/gocryptotrader/events/events.go:236.2,236.12 1 10
github.com/thrasher-/gocryptotrader/events/events.go:198.26,200.3 1 16
github.com/thrasher-/gocryptotrader/events/events.go:202.44,204.3 1 2
github.com/thrasher-/gocryptotrader/events/events.go:206.24,208.3 1 2
github.com/thrasher-/gocryptotrader/events/events.go:210.44,212.3 1 1
github.com/thrasher-/gocryptotrader/events/events.go:216.63,218.3 1 1
github.com/thrasher-/gocryptotrader/events/events.go:220.40,223.35 2 0
github.com/thrasher-/gocryptotrader/events/events.go:227.3,228.66 1 0
github.com/thrasher-/gocryptotrader/events/events.go:223.35,225.4 1 0
github.com/thrasher-/gocryptotrader/events/events.go:228.66,230.4 1 0
github.com/thrasher-/gocryptotrader/events/events.go:231.3,232.59 1 11
github.com/thrasher-/gocryptotrader/events/events.go:232.59,234.4 1 1
github.com/thrasher-/gocryptotrader/events/events.go:241.20,242.6 1 0
github.com/thrasher-/gocryptotrader/events/events.go:242.6,244.37 2 0
github.com/thrasher-/gocryptotrader/events/events.go:244.37,245.33 1 0
github.com/thrasher-/gocryptotrader/events/events.go:245.33,246.24 1 0
github.com/thrasher-/gocryptotrader/events/events.go:246.24,248.17 2 0
github.com/thrasher-/gocryptotrader/events/events.go:248.17,254.7 2 0
github.com/thrasher-/gocryptotrader/events/events.go:262.49,263.42 1 14
github.com/thrasher-/gocryptotrader/events/events.go:272.2,272.14 1 3
github.com/thrasher-/gocryptotrader/events/events.go:263.42,265.89 2 27
github.com/thrasher-/gocryptotrader/events/events.go:265.89,266.34 1 23
github.com/thrasher-/gocryptotrader/events/events.go:269.4,269.12 1 12
github.com/thrasher-/gocryptotrader/events/events.go:266.34,268.5 1 11
github.com/thrasher-/gocryptotrader/events/events.go:276.56,280.29 3 19
github.com/thrasher-/gocryptotrader/events/events.go:284.2,284.34 1 19
github.com/thrasher-/gocryptotrader/events/events.go:289.2,289.14 1 3
github.com/thrasher-/gocryptotrader/events/events.go:280.29,282.3 1 1
github.com/thrasher-/gocryptotrader/events/events.go:284.34,285.38 1 67
github.com/thrasher-/gocryptotrader/events/events.go:285.38,287.4 1 16
github.com/thrasher-/gocryptotrader/events/events.go:293.46,294.19 1 18
github.com/thrasher-/gocryptotrader/events/events.go:298.2,298.14 1 1
github.com/thrasher-/gocryptotrader/events/events.go:295.75,296.14 1 17
github.com/thrasher-/gocryptotrader/events/events.go:302.40,304.16 2 3
github.com/thrasher-/gocryptotrader/events/events.go:308.2,308.14 1 1
github.com/thrasher-/gocryptotrader/events/events.go:305.55,306.14 1 2
github.com/thrasher-/gocryptotrader/events/events.go:312.36,314.14 2 17
github.com/thrasher-/gocryptotrader/events/events.go:318.2,318.14 1 3
github.com/thrasher-/gocryptotrader/events/events.go:315.17,316.14 1 14
mode: atomic
github.com/thrasher-/gocryptotrader/exchanges/exchange.go:66.33,68.2 1 1
github.com/thrasher-/gocryptotrader/exchanges/exchange.go:72.48,74.2 1 1
github.com/thrasher-/gocryptotrader/exchanges/exchange.go:77.41,79.2 1 1
github.com/thrasher-/gocryptotrader/exchanges/exchange.go:82.33,84.2 1 1
github.com/thrasher-/gocryptotrader/exchanges/exchange.go:87.79,91.15 3 2
github.com/thrasher-/gocryptotrader/exchanges/exchange.go:91.15,93.17 2 1
github.com/thrasher-/gocryptotrader/exchanges/exchange.go:97.3,97.31 1 1
github.com/thrasher-/gocryptotrader/exchanges/exchange.go:93.17,96.4 2 1
github.com/thrasher-/gocryptotrader/exchanges/exchange.go:98.3,100.3 1 1
github.com/thrasher-/gocryptotrader/exchanges/exchange.go:105.75,108.19 3 1
github.com/thrasher-/gocryptotrader/exchanges/exchange.go:118.2,118.12 1 1
github.com/thrasher-/gocryptotrader/exchanges/exchange.go:108.19,111.17 3 1
github.com/thrasher-/gocryptotrader/exchanges/exchange.go:114.3,116.33 3 1
github.com/thrasher-/gocryptotrader/exchanges/exchange.go:111.17,113.4 1 0
mode: atomic
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:44.36,47.2 2 9
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:49.73,55.16 5 1
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:58.2,58.26 1 1
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:61.2,61.22 1 1
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:55.16,57.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:58.26,60.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:64.96,72.16 7 1
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:75.2,75.26 1 1
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:78.2,78.22 1 1
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:72.16,74.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:75.26,77.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:81.111,89.16 7 1
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:92.2,92.26 1 1
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:95.2,95.22 1 1
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:89.16,91.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:92.26,94.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:98.79,104.16 5 1
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:107.2,107.26 1 1
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:110.2,110.22 1 1
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:104.16,106.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:107.26,109.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:113.72,117.16 3 1
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:120.2,120.26 1 1
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:123.2,123.22 1 1
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:117.16,119.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:120.26,122.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:126.64,130.16 3 1
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:133.2,133.26 1 1
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:136.2,136.22 1 1
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:130.16,132.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:133.26,135.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:139.94,140.23 1 1
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:144.2,159.16 10 1
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:163.2,163.26 1 1
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:167.2,167.12 1 1
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:140.23,142.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:159.16,161.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:163.26,165.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:170.64,173.16 3 1
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:176.2,176.22 1 1
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:173.16,175.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:179.70,182.16 3 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:185.2,185.26 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:188.2,188.22 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:182.16,184.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:185.26,187.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:191.103,199.16 7 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:202.2,202.26 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:205.2,205.22 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:199.16,201.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:202.26,204.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:208.82,217.16 4 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:220.2,220.26 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:223.2,223.32 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:217.16,219.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:220.26,222.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:226.98,240.16 9 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:244.2,244.26 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:247.2,247.12 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:240.16,242.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:244.26,246.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:250.110,267.16 10 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:271.2,271.26 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:274.2,274.36 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:267.16,269.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:271.26,273.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:277.87,293.16 8 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:297.2,297.26 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:300.2,300.36 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:293.16,295.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:297.26,299.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:303.79,318.16 7 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:322.2,322.26 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:325.2,325.36 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:318.16,320.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:322.26,324.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:328.59,339.16 6 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:343.2,343.26 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:346.2,346.12 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:339.16,341.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:343.26,345.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:349.66,352.16 3 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:356.2,356.26 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:359.2,359.33 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:352.16,354.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:356.26,358.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:362.97,378.16 9 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:382.2,382.26 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:385.2,385.26 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:378.16,380.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:382.26,384.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:388.110,394.16 5 6
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:397.2,399.16 2 6
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:403.2,405.16 2 6
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:408.2,408.12 1 6
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:394.16,396.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:399.16,401.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:405.16,407.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:411.127,423.16 11 2
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:427.2,429.16 2 2
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:433.2,435.16 2 2
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:438.2,438.12 1 2
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:423.16,425.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:429.16,431.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint.go:435.16,437.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint_websocket.go:15.40,16.31 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint_websocket.go:16.31,21.17 4 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint_websocket.go:26.3,26.16 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint_websocket.go:30.3,32.17 2 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint_websocket.go:37.3,37.32 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint_websocket.go:68.3,69.58 2 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint_websocket.go:21.17,23.12 2 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint_websocket.go:26.16,28.4 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint_websocket.go:32.17,35.4 2 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint_websocket.go:37.32,39.18 2 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint_websocket.go:44.4,44.19 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint_websocket.go:39.18,41.10 2 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint_websocket.go:45.31,52.19 4 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint_websocket.go:57.5,57.32 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint_websocket.go:52.19,54.14 2 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint_websocket.go:58.19,61.20 3 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint_websocket.go:61.20,63.15 2 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint_wrapper.go:13.77,17.16 4 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint_wrapper.go:20.2,20.47 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint_wrapper.go:29.2,29.22 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint_wrapper.go:17.16,19.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint_wrapper.go:20.47,27.3 5 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint_wrapper.go:32.77,35.16 3 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint_wrapper.go:39.2,42.20 4 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint_wrapper.go:35.16,38.3 2 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint_wrapper.go:45.91,47.16 2 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint_wrapper.go:51.2,53.16 3 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint_wrapper.go:57.2,57.38 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint_wrapper.go:62.2,62.38 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint_wrapper.go:67.2,69.23 3 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint_wrapper.go:47.16,49.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint_wrapper.go:53.16,55.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint_wrapper.go:57.38,60.3 2 0
github.com/thrasher-/gocryptotrader/exchanges/alphapoint/alphapoint_wrapper.go:62.38,65.3 2 0
mode: atomic
github.com/thrasher-/gocryptotrader/exchanges/anx/anx_wrapper.go:14.23,16.2 1 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx_wrapper.go:18.21,19.15 1 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx_wrapper.go:24.2,24.16 1 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx_wrapper.go:19.15,22.3 2 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx_wrapper.go:24.16,25.36 1 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx_wrapper.go:37.3,37.47 1 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx_wrapper.go:25.36,27.14 2 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx_wrapper.go:27.14,29.19 2 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx_wrapper.go:33.5,34.144 2 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx_wrapper.go:29.19,32.6 2 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx_wrapper.go:41.79,43.16 2 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx_wrapper.go:47.2,49.16 3 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx_wrapper.go:53.2,61.25 9 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx_wrapper.go:43.16,45.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx_wrapper.go:49.16,51.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx_wrapper.go:64.84,66.2 1 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx_wrapper.go:69.70,73.2 3 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:34.29,42.2 7 2
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:45.49,46.19 1 1
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:46.19,48.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:48.3,58.3 9 1
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:61.42,62.11 1 2
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:65.2,65.19 1 1
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:62.11,64.3 1 1
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:68.61,71.16 3 1
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:74.2,74.20 1 1
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:71.16,73.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:77.91,83.15 5 1
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:87.2,98.16 5 1
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:102.2,102.33 1 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:106.2,106.49 1 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:83.15,85.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:98.16,100.3 1 1
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:102.33,104.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:109.46,121.16 5 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:125.2,125.33 1 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:128.2,128.28 1 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:121.16,123.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:125.33,127.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:132.64,139.9 5 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:145.2,149.13 4 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:154.2,164.16 5 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:168.2,168.33 1 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:171.2,171.12 1 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:139.9,141.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:141.3,143.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:149.13,152.3 2 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:164.16,166.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:168.33,170.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:174.67,187.16 6 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:191.2,191.33 1 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:195.2,195.28 1 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:187.16,189.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:191.33,194.3 2 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:198.75,204.15 5 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:208.2,217.16 4 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:221.2,221.33 1 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:225.2,225.36 1 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:204.15,206.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:217.16,219.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:221.33,224.3 2 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:228.74,242.16 7 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:246.2,246.33 1 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:250.2,250.33 1 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:242.16,244.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:246.33,249.3 2 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:253.82,257.16 3 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:261.2,270.9 4 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:274.2,276.16 2 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:280.2,280.33 1 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:285.2,285.30 1 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:257.16,259.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:270.9,272.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:276.16,278.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:280.33,283.3 2 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:288.114,293.19 4 1
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:299.2,301.16 2 1
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:305.2,305.15 1 1
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:309.2,317.15 7 1
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:321.2,323.16 2 1
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:327.2,327.12 1 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:293.19,294.34 1 1
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:294.34,296.4 1 4
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:301.16,303.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:305.15,307.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:317.15,319.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/anx/anx.go:323.16,325.3 1 1
mode: atomic
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:39.49,43.2 3 1
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:45.58,47.16 2 5
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:51.2,53.16 2 5
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:56.2,56.12 1 5
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:47.16,49.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:53.16,55.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:59.87,64.21 4 1
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:69.2,69.33 1 1
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:64.21,65.28 1 1
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:65.28,67.4 1 1
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:72.46,80.2 7 1
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:82.48,86.2 3 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:88.86,92.15 3 1
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:92.15,94.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:97.38,99.31 2 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:99.31,104.17 4 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:109.3,110.17 2 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:114.3,114.39 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:118.3,126.17 4 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:131.3,131.25 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:137.3,137.30 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:148.3,148.32 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:155.3,155.32 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:292.3,293.65 2 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:104.17,106.12 2 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:110.17,112.12 2 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:114.39,115.12 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:126.17,128.12 2 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:131.25,132.17 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:132.17,134.5 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:137.30,138.37 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:138.37,140.20 2 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:143.5,144.36 2 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:140.20,142.6 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:148.32,150.18 2 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:150.18,152.5 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:155.32,157.18 2 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:162.4,162.19 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:157.18,159.10 2 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:163.31,166.19 3 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:171.5,171.44 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:166.19,168.14 2 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:172.36,176.19 3 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:189.27,194.13 4 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:177.24,178.135 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:179.18,182.25 2 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:182.25,184.8 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:184.8,184.34 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:184.34,187.8 2 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:194.13,196.7 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:196.7,197.29 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:204.7,204.31 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:197.29,198.60 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:198.60,199.65 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:199.65,200.18 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:205.19,207.29 2 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:217.21,221.111 2 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:222.22,223.36 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:270.21,272.29 2 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:208.15,210.32 2 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:214.15,215.157 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:210.32,213.10 2 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:224.50,227.32 3 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:232.9,232.38 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:233.116,237.30 3 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:238.48,241.32 3 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:245.9,245.36 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:246.46,249.28 3 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:250.47,253.32 3 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:258.9,258.35 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:259.108,263.27 3 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:264.47,268.27 3 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:227.32,231.10 2 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:241.32,244.10 2 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:253.32,257.10 2 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:273.15,275.32 2 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:279.15,283.22 3 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:275.32,278.10 2 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_websocket.go:283.22,285.10 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_wrapper.go:16.28,18.2 1 1
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_wrapper.go:20.26,21.15 1 2
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_wrapper.go:27.2,27.17 1 2
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_wrapper.go:31.2,32.16 2 2
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_wrapper.go:41.2,41.16 1 2
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_wrapper.go:21.15,25.3 3 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_wrapper.go:27.17,29.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_wrapper.go:32.16,34.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_wrapper.go:34.3,36.17 2 2
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_wrapper.go:36.17,38.4 1 2
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_wrapper.go:41.16,42.36 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_wrapper.go:53.3,53.47 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_wrapper.go:42.36,44.14 2 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_wrapper.go:44.14,46.19 2 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_wrapper.go:49.5,50.144 2 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_wrapper.go:46.19,48.6 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_wrapper.go:57.84,59.16 2 1
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_wrapper.go:63.2,65.16 3 1
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_wrapper.go:68.2,76.25 9 1
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_wrapper.go:59.16,61.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_wrapper.go:65.16,67.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_wrapper.go:79.89,81.16 2 1
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_wrapper.go:85.2,87.16 3 1
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_wrapper.go:91.2,91.38 1 1
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_wrapper.go:97.2,97.38 1 1
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_wrapper.go:103.2,105.23 3 1
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_wrapper.go:81.16,83.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_wrapper.go:87.16,89.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_wrapper.go:91.38,95.3 3 836
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_wrapper.go:97.38,101.3 3 2386
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_wrapper.go:109.75,113.16 4 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_wrapper.go:116.2,116.16 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_wrapper.go:120.2,120.43 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_wrapper.go:128.2,128.22 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_wrapper.go:113.16,115.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_wrapper.go:116.16,118.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex_wrapper.go:120.43,127.3 5 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:63.34,70.2 6 2
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:72.54,73.19 1 24
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:73.19,75.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:75.3,85.3 9 24
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:88.88,92.16 4 2
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:95.2,95.22 1 2
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:92.16,94.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:98.69,101.16 3 1
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:104.2,104.22 1 1
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:101.16,103.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:107.92,108.22 1 1
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:111.2,114.16 4 1
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:117.2,117.22 1 1
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:108.22,110.3 1 1
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:114.16,116.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:120.94,124.16 4 2
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:127.2,127.22 1 2
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:124.16,126.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:130.98,134.16 4 1
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:137.2,137.22 1 1
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:134.16,136.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:140.88,144.16 4 1
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:147.2,147.22 1 1
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:144.16,146.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:150.51,153.16 3 3
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:156.2,156.22 1 3
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:153.16,155.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:159.73,162.16 3 1
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:165.2,165.22 1 1
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:162.16,164.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:168.68,172.16 3 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:175.2,175.22 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:172.16,174.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:178.102,187.16 7 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:191.2,191.22 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:187.16,189.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:194.134,201.9 6 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:207.2,214.16 4 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:218.2,218.22 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:201.9,203.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:203.3,205.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:214.16,216.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:221.99,228.16 5 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:232.2,232.22 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:228.16,230.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:235.70,242.16 5 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:246.2,246.22 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:242.16,244.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:249.75,256.16 5 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:260.2,260.29 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:256.16,258.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:263.54,267.16 3 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:271.2,271.29 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:267.16,269.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:274.153,282.9 7 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:288.2,295.16 4 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:299.2,299.22 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:282.9,284.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:284.3,286.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:295.16,297.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:302.73,309.16 5 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:313.2,313.25 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:309.16,311.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:316.63,320.16 3 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:324.2,324.22 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:320.16,322.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:327.69,331.16 3 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:335.2,335.22 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:331.16,333.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:338.76,345.16 5 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:349.2,349.22 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:345.16,347.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:352.155,356.25 3 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:360.2,360.25 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:364.2,364.15 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:368.2,368.21 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:372.2,375.16 3 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:379.2,379.22 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:356.25,358.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:360.25,362.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:364.15,366.3 1 0
github.com/thrasher-/gocryptotrader/exchanges/bitfinex/bitfinex.go:368.21,370.3 1 0