-
Notifications
You must be signed in to change notification settings - Fork 400
/
backtest_database.csv
We can't make this file beautiful and searchable because it's too large.
2119 lines (2119 loc) · 668 KB
/
backtest_database.csv
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
currency,asset,exchange,strategy,profit[%],profit/day[%],yearly profit[%],Sharpe ratio,market change[%],profit-market,trade amount,trades/day,wining trades,losses trades,percentage wins[%],best win[%],median wins[%],worst loss[%],median loss[%],Avg. exposed duration[min],candle size,warmup period,days of dataset,backtest start,dataset from,dataset to,price volality,strategy settings,note
BNB,ADX,binance,ATR_ADX_v2,-100,-1.64,-589,-1.53,-46.18,-53.82,734,12.03,6,360,1.64,0.41,0.09,-0.37,0,58.22,10,70,61,2018-03-27 17:33:08,2017-12-20 00:03:00,2018-02-19 23:58:00,47.35,"'Sell_ADX_Modifier':1.9, 'Sell_Offset':3, 'ADX':22, 'Buy_ADX_Modifier':0.7, 'ATR':22, 'Buy_Offset':7",shorter period
BNB,CND,binance,ATR_ADX_v2,-99.77,-1.66,-597,-0.83,127.38,-227.15,595,9.92,14,283,4.71,1.15,0.03,-0.34,0,59.09,10,70,60,2018-03-27 17:33:08,2017-12-12 00:00:00,2018-02-10 23:55:00,49.72,"'ADX':22, 'Sell_ADX_Modifier':1.9, 'Sell_Offset':3, 'Buy_ADX_Modifier':0.7, 'ATR':22, 'Buy_Offset':7",shorter period
BNB,GTO,binance,ATR_ADX_v2,-100,-1.64,-589,-1.45,-17.85,-82.15,607,9.95,2,301,0.66,0.34,0.23,-0.28,0,61.45,10,70,61,2018-03-27 17:33:08,2017-12-20 00:01:00,2018-02-19 23:58:00,24.6,"'Sell_Offset':3, 'Sell_ADX_Modifier':1.9, 'ADX':22, 'Buy_Offset':7, 'ATR':22, 'Buy_ADX_Modifier':0.7",shorter period
BNB,NEBL,binance,ATR_ADX_v2,-99.94,-1.75,-629,-2.61,-37.68,-62.26,623,10.93,11,300,3.54,0.07,0.03,-0.26,0,56.91,10,70,57,2018-03-27 17:33:08,2018-01-27 00:03:00,2018-03-25 23:58:00,16.74,"'Buy_Offset':7, 'ATR':22, 'Buy_ADX_Modifier':0.7, 'ADX':22, 'Sell_Offset':3, 'Sell_ADX_Modifier':1.9",shorter period
BNB,NULS,binance,ATR_ADX_v2,-99.98,-1.75,-629,-2.2,-35.94,-64.04,813,14.26,7,399,1.72,0.05,0.02,-0.16,0,54.43,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:58:00,16.63,"'ATR':22, 'Buy_Offset':7, 'Buy_ADX_Modifier':0.7, 'Sell_Offset':3, 'Sell_ADX_Modifier':1.9, 'ADX':22",shorter period
BNB,OST,binance,ATR_ADX_v2,-100,-1.64,-589,-1.22,-57.63,-42.37,733,12.02,0,366,0,0,n/a,-0.3,0,56.34,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:53:00,25.15,"'Sell_Offset':3, 'Sell_ADX_Modifier':1.9, 'ADX':22, 'ATR':22, 'Buy_Offset':7, 'Buy_ADX_Modifier':0.7",shorter period
BNB,WTC,binance,ATR_ADX_v2,-99.75,-1.75,-628,-3.72,-61.73,-38.03,559,9.81,8,271,2.87,0.23,0.03,-0.14,0,63.15,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:54:00,24.05,"'ADX':22, 'Sell_Offset':3, 'Sell_ADX_Modifier':1.9, 'Buy_Offset':7, 'ATR':22, 'Buy_ADX_Modifier':0.7",shorter period
BNB,XLM,binance,ATR_ADX_v2,-99.98,-1.64,-589,-1.39,-8.98,-91.01,677,11.1,7,331,2.07,0.05,0.02,-0.51,0,65.74,10,70,61,2018-03-27 17:33:08,2017-12-20 00:02:00,2018-02-19 23:58:00,29.22,"'Sell_Offset':3, 'Sell_ADX_Modifier':1.9, 'ADX':22, 'ATR':22, 'Buy_Offset':7, 'Buy_ADX_Modifier':0.7",shorter period
BTC,ADA,binance,ATR_ADX_v2,-95.83,-1.57,-564,-1.64,11.87,-107.7,573,9.39,26,260,9.09,1.33,0.07,-0.27,-0.01,72.97,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,24.43,"'Buy_ADX_Modifier':0.7, 'ATR':22, 'Buy_Offset':7, 'Sell_ADX_Modifier':1.9, 'Sell_Offset':3, 'ADX':22",shorter period
BTC,BNB,binance,ATR_ADX_v2,-97.49,-1.6,-574,-2.24,200.79,-298.28,553,9.07,26,250,9.42,0.42,0.08,-0.19,-0.01,79.35,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:59:00,32.99,"'ATR':22, 'Buy_Offset':7, 'Buy_ADX_Modifier':0.7, 'Sell_Offset':3, 'Sell_ADX_Modifier':1.9, 'ADX':22",shorter period
BTC,BTM,poloniex,ATR_ADX_v2,-99.97,-1.75,-630,-2.47,-49.04,-50.93,735,12.89,10,357,2.72,0.18,0.02,-0.14,0,65.61,10,70,57,2018-03-28 23:13:08,2018-01-27 00:56:00,2018-03-25 23:46:00,26.13,"'Buy_ADX_Modifier':0.7, 'Buy_Offset':7, 'ADX':22, 'Sell_Offset':3, 'ATR':22, 'Sell_ADX_Modifier':1.9",shorter period
BTC,DGB,poloniex,ATR_ADX_v2,-97.21,-1.59,-572,-1.43,72.81,-170.01,471,7.72,27,208,11.49,1.45,0.06,-0.24,-0.01,100.72,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,23.7,"'Buy_Offset':7, 'Buy_ADX_Modifier':0.7, 'Sell_Offset':3, 'ATR':22, 'Sell_ADX_Modifier':1.9, 'ADX':22",shorter period
BTC,ETC,binance,ATR_ADX_v2,-96.87,-1.59,-570,-2.44,59.31,-156.17,587,9.62,30,263,10.24,0.29,0.03,-0.16,0,69.73,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,17.44,"'ATR':22, 'Buy_Offset':7, 'Buy_ADX_Modifier':0.7, 'Sell_Offset':3, 'Sell_ADX_Modifier':1.9, 'ADX':22",shorter period
BTC,GAME,poloniex,ATR_ADX_v2,-97.31,-1.6,-573,-1.87,53.27,-150.58,463,7.59,29,202,12.55,0.29,0.05,-0.3,-0.01,91.3,10,70,61,2018-04-04 08:56:20,2017-12-20 00:00:00,2018-02-19 23:57:00,0,shorter period,
BTC,GAS,binance,ATR_ADX_v2,-98.52,-1.64,-589,-1.65,337.14,-435.66,645,10.75,41,281,12.73,0.67,0.04,-0.25,-0.01,74.88,10,70,60,2018-03-27 17:33:08,2017-12-12 00:01:00,2018-02-10 23:58:00,42.95,"'Buy_ADX_Modifier':0.7, 'ATR':22, 'Buy_Offset':7, 'Sell_ADX_Modifier':1.9, 'Sell_Offset':3, 'ADX':22",shorter period
BTC,ICX,binance,ATR_ADX_v2,-90.15,-1.48,-531,-1.13,243.07,-333.22,393,6.44,37,159,18.88,1.27,0.1,-0.46,-0.03,113.42,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,31.7,"'Sell_Offset':3, 'Sell_ADX_Modifier':1.9, 'ADX':22, 'ATR':22, 'Buy_Offset':7, 'Buy_ADX_Modifier':0.7",shorter period
BTC,OMG,binance,ATR_ADX_v2,-94.29,-1.55,-555,-2.55,50.87,-145.15,549,9,31,243,11.31,0.33,0.07,-0.14,-0.01,92.55,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,15.52,"'ATR':22, 'Buy_Offset':7, 'Buy_ADX_Modifier':0.7, 'Sell_Offset':3, 'Sell_ADX_Modifier':1.9, 'ADX':22",shorter period
BTC,STR,poloniex,ATR_ADX_v2,-92.46,-1.62,-582,-3.8,-50.01,-42.45,380,6.67,15,174,7.94,0.2,0.02,-0.09,-0.01,95.4,10,70,57,2018-03-28 23:13:08,2018-01-27 00:00:00,2018-03-25 23:58:00,22.09,"'ADX':22, 'ATR':22, 'Sell_Offset':3, 'Sell_ADX_Modifier':1.9, 'Buy_ADX_Modifier':0.7, 'Buy_Offset':7",shorter period
BTC,VEN,binance,ATR_ADX_v2,-95.79,-1.57,-564,-1.46,619.61,-715.4,666,10.92,45,287,13.55,0.43,0.04,-0.19,-0.01,100.03,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,47.55,"'ADX':22, 'Sell_Offset':3, 'Sell_ADX_Modifier':1.9, 'Buy_Offset':7, 'ATR':22, 'Buy_ADX_Modifier':0.7",shorter period
BTC,XRP,binance,ATR_ADX_v2,-61.76,-1.01,-363,-1.06,133.4,-195.17,339,5.56,43,126,25.44,1.17,0.12,-0.25,-0.05,96.33,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:59:00,25.81,"'ATR':22, 'Buy_Offset':7, 'Buy_ADX_Modifier':0.7, 'Sell_Offset':3, 'Sell_ADX_Modifier':1.9, 'ADX':22",shorter period
BTC,ZEC,binance,ATR_ADX_v2,-88.98,-1.46,-524,-2.41,24.38,-113.36,373,6.11,30,156,16.13,0.65,0.03,-0.2,-0.02,100.59,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,13.05,"'ADX':22, 'Sell_ADX_Modifier':1.9, 'Sell_Offset':3, 'Buy_ADX_Modifier':0.7, 'Buy_Offset':7, 'ATR':22",shorter period
ETH,AST,binance,ATR_ADX_v2,-97.94,-1.72,-616,-2.03,-34.89,-63.05,551,9.67,20,255,7.27,0.45,0.01,-0.2,-0.01,47.38,10,70,57,2018-03-27 17:33:08,2018-01-27 00:03:00,2018-03-25 23:58:00,30.62,"'ATR':22, 'Buy_Offset':7, 'Buy_ADX_Modifier':0.7, 'Sell_Offset':3, 'Sell_ADX_Modifier':1.9, 'ADX':22",shorter period
ETH,EOS,binance,ATR_ADX_v2,-92.78,-1.52,-546,-2.11,-29.24,-63.54,522,8.56,28,232,10.77,0.52,0.04,-0.14,-0.01,80.65,10,70,61,2018-04-04 08:56:20,2017-12-20 00:00:00,2018-02-19 23:58:00,0,shorter period,
ETH,FUEL,binance,ATR_ADX_v2,-99.44,-1.74,-626,-3.93,-28.59,-70.85,573,10.05,11,275,3.85,0.11,0.03,-0.2,0,61.22,10,70,57,2018-03-27 17:33:08,2018-01-27 00:01:00,2018-03-25 23:58:00,15.31,"'ADX':22, 'Sell_Offset':3, 'Sell_ADX_Modifier':1.9, 'Buy_Offset':7, 'ATR':22, 'Buy_ADX_Modifier':0.7",shorter period
ETH,ICN,kraken,ATR_ADX_v2,-99.73,-1.63,-587,-2.37,-26.29,-73.44,535,8.77,17,250,6.37,0.24,0.05,-0.21,0,88.5,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,24.75,"'ADX':22, 'ATR':22, 'Sell_Offset':3, 'Sell_ADX_Modifier':1.9, 'Buy_ADX_Modifier':0.7, 'Buy_Offset':7",shorter period
ETH,QTUM,binance,ATR_ADX_v2,-93.37,-1.56,-559,-1.67,32.4,-125.77,374,6.23,29,157,15.59,0.67,0.02,-0.24,-0.02,83.55,10,70,60,2018-04-04 08:56:20,2017-12-12 00:01:00,2018-02-10 23:58:00,0,1,shorter period
ETH,VIB,binance,ATR_ADX_v2,-98.9,-1.74,-622,-1.65,12.57,-111.47,519,9.11,23,236,8.88,1.62,0.03,-0.31,-0.01,58.76,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:58:00,15.12,"'Sell_ADX_Modifier':1.9, 'Sell_Offset':3, 'ADX':22, 'Buy_ADX_Modifier':0.7, 'ATR':22, 'Buy_Offset':7",shorter period
ETH,XVG,binance,ATR_ADX_v2,-84.89,-1.41,-508,-0.55,294.2,-379.09,571,9.52,36,249,12.63,4.58,0.39,-0.66,-0.03,58.81,10,70,60,2018-04-04 08:56:20,2017-12-12 00:02:00,2018-02-10 23:58:00,0,shorter period,
EUR,XMR,kraken,ATR_ADX_v2,-99.1,-1.62,-583,-2.61,-18.23,-80.87,720,11.8,22,337,6.13,0.23,0.02,-0.27,0,79.97,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,20.52,"'ADX':22, 'Sell_ADX_Modifier':1.9, 'Sell_Offset':3, 'ATR':22, 'Buy_ADX_Modifier':0.7, 'Buy_Offset':7",shorter period
USD,AVT,bitfinex,ATR_ADX_v2,-99.83,-1.72,-625,-2.01,-63.47,-36.36,613,10.57,22,284,7.19,0.06,0.02,-0.14,0,95.49,10,70,58,2018-03-28 23:13:08,2018-01-26 13:30:00,2018-03-25 19:58:00,36.29,"'Sell_Offset':3, 'ATR':22, 'Sell_ADX_Modifier':1.9, 'ADX':22, 'Buy_Offset':7, 'Buy_ADX_Modifier':0.7",shorter period
USD,DAT,bitfinex,ATR_ADX_v2,-99.97,-1.61,-588,-2.3,-50.35,-49.62,675,10.89,14,323,4.15,0.2,0.03,-0.47,0,73.95,10,70,62,2018-03-28 23:13:08,2017-12-19 23:17:00,2018-02-19 23:56:00,36.88,"'Buy_ADX_Modifier':0.7, 'Buy_Offset':7, 'ADX':22, 'Sell_ADX_Modifier':1.9, 'Sell_Offset':3, 'ATR':22",shorter period
USD,ETP,bitfinex,ATR_ADX_v2,-99.9,-1.61,-588,-1.88,-50.35,-49.55,636,10.26,9,308,2.84,0.44,0.08,-0.47,0,83.28,10,70,62,2018-03-28 23:13:08,2017-12-19 22:55:00,2018-02-19 23:43:00,35.1,"'Buy_ADX_Modifier':0.7, 'Buy_Offset':7, 'ADX':22, 'Sell_Offset':3, 'ATR':22, 'Sell_ADX_Modifier':1.9",shorter period
USD,RCN,bitfinex,ATR_ADX_v2,-99.98,-1.72,-620,-1.28,-63.33,-36.65,614,10.59,19,287,6.21,0.2,0.03,-0.24,0,93.04,10,70,58,2018-03-28 23:13:08,2018-01-26 02:00:00,2018-03-25 23:27:00,38.04,"'Buy_Offset':7, 'Buy_ADX_Modifier':0.7, 'ATR':22, 'Sell_Offset':3, 'Sell_ADX_Modifier':1.9, 'ADX':22",shorter period
USD,RRT,bitfinex,ATR_ADX_v2,-99.99,-1.61,-587,-1.88,-69.56,-30.44,741,11.95,5,365,1.35,0.11,0.01,-0.28,0,92.46,10,70,62,2018-03-28 23:13:08,2017-12-19 19:20:00,2018-02-19 23:24:00,43.53,"'Buy_ADX_Modifier':0.7, 'Buy_Offset':7, 'ADX':22, 'Sell_ADX_Modifier':1.9, 'Sell_Offset':3, 'ATR':22",shorter period
USD,SAN,bitfinex,ATR_ADX_v2,-98.87,-1.62,-591,-1.35,-53.99,-44.88,515,8.44,34,223,13.23,0.79,0.03,-0.25,-0.01,86.61,10,70,61,2018-03-28 23:13:08,2017-12-11 23:07:00,2018-02-10 23:58:00,44.19,"'Sell_ADX_Modifier':1.9, 'Sell_Offset':3, 'ATR':22, 'ADX':22, 'Buy_Offset':7, 'Buy_ADX_Modifier':0.7",shorter period
USDT,BTC,binance,ATR_ADX_v2,-96.37,-1.58,-567,-3.68,-35.4,-60.98,536,8.79,23,244,8.61,0.2,0.02,-0.11,0,90.64,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,21.96,"'Buy_ADX_Modifier':0.7, 'ATR':22, 'Buy_Offset':7, 'Sell_ADX_Modifier':1.9, 'Sell_Offset':3, 'ADX':22",shorter period
USDT,ETH,binance,ATR_ADX_v2,-93.57,-1.56,-560,-2.16,66.89,-160.46,462,7.7,52,178,22.61,0.35,0.03,-0.29,-0.02,136.35,10,70,60,2018-03-27 17:33:08,2017-12-12 00:00:00,2018-02-10 23:59:00,22.93,"'ATR':22, 'Buy_Offset':7, 'Buy_ADX_Modifier':0.7, 'Sell_Offset':3, 'Sell_ADX_Modifier':1.9, 'ADX':22",shorter period
USDT,LTC,binance,ATR_ADX_v2,-98.29,-1.61,-579,-3.09,-34.44,-63.85,615,10.08,28,279,9.12,0.15,0.02,-0.2,0,91.66,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,22.22,"'Buy_ADX_Modifier':0.7, 'Buy_Offset':7, 'ATR':22, 'ADX':22, 'Sell_ADX_Modifier':1.9, 'Sell_Offset':3",shorter period
USDT,NEO,binance,ATR_ADX_v2,-94.6,-1.55,-557,-1.51,96.24,-190.85,444,7.28,36,185,16.29,0.22,0.04,-0.21,-0.02,129.86,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,26.97,"'ATR':22, 'Buy_Offset':7, 'Buy_ADX_Modifier':0.7, 'ADX':22, 'Sell_Offset':3, 'Sell_ADX_Modifier':1.9",shorter period
USDT,NXT,poloniex,ATR_ADX_v2,-98.28,-1.72,-618,-2.71,-54.67,-43.62,547,9.6,27,246,9.89,0.24,0.03,-0.14,-0.01,99.82,10,70,57,2018-03-28 23:13:08,2018-01-27 00:00:00,2018-03-25 23:53:00,26.64,"'Buy_ADX_Modifier':0.7, 'Buy_Offset':7, 'ADX':22, 'Sell_ADX_Modifier':1.9, 'ATR':22, 'Sell_Offset':3",shorter period
BNB,ADX,binance,ATR_MA,-99.85,-1.64,-588,-1.25,-46.18,-53.68,392,6.43,10,185,5.13,0.41,0.05,-1.04,0,209.69,10,70,61,2018-03-27 17:33:08,2017-12-20 00:03:00,2018-02-19 23:58:00,47.35,"'MA':10, 'BUY_ATR_Multiplier':0.5, 'Sell_ATR_Multiplier':0.5, 'ATR':10",shorter period
BNB,CND,binance,ATR_MA,-99.14,-1.65,-593,-0.56,127.38,-226.52,388,6.47,29,164,15.03,0.71,0.03,-0.49,0,219.02,10,70,60,2018-03-27 17:33:08,2017-12-12 00:00:00,2018-02-10 23:55:00,49.72,"'MA':10, 'BUY_ATR_Multiplier':0.5, 'Sell_ATR_Multiplier':0.5, 'ATR':10",shorter period
BNB,GTO,binance,ATR_MA,-99.95,-1.64,-588,-1,-17.85,-82.1,439,7.2,14,205,6.39,0.32,0.04,-0.29,0,183.61,10,70,61,2018-03-27 17:33:08,2017-12-20 00:01:00,2018-02-19 23:58:00,24.6,"'ATR':10, 'Sell_ATR_Multiplier':0.5, 'BUY_ATR_Multiplier':0.5, 'MA':10",shorter period
BNB,NEBL,binance,ATR_MA,-99.54,-1.75,-626,-2.09,-37.68,-61.86,445,7.81,17,205,7.66,0.31,0.03,-0.17,-0.01,168.29,10,70,57,2018-03-27 17:33:08,2018-01-27 00:03:00,2018-03-25 23:58:00,16.74,"'MA':10, 'Sell_ATR_Multiplier':0.5, 'BUY_ATR_Multiplier':0.5, 'ATR':10",shorter period
BNB,NULS,binance,ATR_MA,-99.63,-1.75,-627,-1.74,-35.94,-63.68,441,7.74,15,205,6.82,0.08,0.02,-0.2,0,189.82,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:58:00,16.63,"'ATR':10, 'BUY_ATR_Multiplier':0.5, 'Sell_ATR_Multiplier':0.5, 'MA':10",shorter period
BNB,OST,binance,ATR_MA,-100,-1.64,-589,-1.27,-57.63,-42.37,459,7.52,0,229,0,0,n/a,-0.36,0,190.26,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:53:00,25.15,"'Sell_ATR_Multiplier':0.5, 'BUY_ATR_Multiplier':0.5, 'ATR':10, 'MA':10",shorter period
BNB,WTC,binance,ATR_MA,-98.9,-1.74,-622,-2.13,-61.73,-37.18,425,7.46,20,192,9.43,0.35,0.03,-0.29,-0.01,176.37,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:54:00,24.05,"'MA':10, 'ATR':10, 'BUY_ATR_Multiplier':0.5, 'Sell_ATR_Multiplier':0.5",shorter period
BNB,XLM,binance,ATR_MA,-98.92,-1.62,-582,-0.88,-8.98,-89.94,372,6.1,23,162,12.43,0.71,0.03,-0.86,0,236.43,10,70,61,2018-03-27 17:33:08,2017-12-20 00:02:00,2018-02-19 23:58:00,29.22,"'ATR':10, 'BUY_ATR_Multiplier':0.5, 'Sell_ATR_Multiplier':0.5, 'MA':10",shorter period
BTC,ADA,binance,ATR_MA,-94.95,-1.56,-559,-1.48,11.87,-106.81,399,6.54,36,163,18.09,0.81,0.03,-0.29,-0.01,187.79,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,24.43,"'ATR':10, 'Sell_ATR_Multiplier':0.5, 'BUY_ATR_Multiplier':0.5, 'MA':10",shorter period
BTC,BNB,binance,ATR_MA,-94.91,-1.56,-559,-1.4,200.79,-295.7,383,6.28,36,155,18.85,0.5,0.05,-0.52,-0.01,213.56,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:59:00,32.99,"'Sell_ATR_Multiplier':0.5, 'BUY_ATR_Multiplier':0.5, 'ATR':10, 'MA':10",shorter period
BTC,BTM,poloniex,ATR_MA,-99.73,-1.75,-628,-2.44,-49.04,-50.69,514,9.02,7,249,2.73,0.07,0.02,-0.18,0,143.95,10,70,57,2018-03-28 23:13:08,2018-01-27 00:56:00,2018-03-25 23:46:00,26.13,"'ATR':10, 'BUY_ATR_Multiplier':0.5, 'MA':10, 'Sell_ATR_Multiplier':0.5",shorter period
BTC,DGB,poloniex,ATR_MA,-84.74,-1.39,-499,-0.94,72.81,-157.54,373,6.11,49,137,26.34,2.8,0.08,-0.46,-0.05,227.96,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,23.7,"'BUY_ATR_Multiplier':0.5, 'ATR':10, 'Sell_ATR_Multiplier':0.5, 'MA':10",shorter period
BTC,ETC,binance,ATR_MA,-89.43,-1.47,-526,-1.8,59.31,-148.74,374,6.13,36,150,19.35,0.37,0.02,-0.27,-0.01,228.39,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,17.44,"'ATR':10, 'Sell_ATR_Multiplier':0.5, 'BUY_ATR_Multiplier':0.5, 'MA':10",shorter period
BTC,GAME,poloniex,ATR_MA,-94.12,-1.54,-554,-1.7,53.27,-147.38,405,6.64,38,164,18.81,0.31,0.07,-0.37,-0.02,207.18,10,70,61,2018-04-04 08:56:20,2017-12-20 00:00:00,2018-02-19 23:57:00,0,shorter period,
BTC,GAS,binance,ATR_MA,-86.95,-1.45,-520,-1,337.14,-424.09,359,5.98,50,129,27.93,0.56,0.06,-0.36,-0.04,246.76,10,70,60,2018-03-27 17:33:08,2017-12-12 00:01:00,2018-02-10 23:58:00,42.95,"'MA':10, 'Sell_ATR_Multiplier':0.5, 'BUY_ATR_Multiplier':0.5, 'ATR':10",shorter period
BTC,ICX,binance,ATR_MA,-87.65,-1.44,-516,-0.96,243.07,-330.72,373,6.11,53,133,28.49,1.62,0.11,-0.78,-0.05,233.76,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,31.7,"'MA':10, 'ATR':10, 'BUY_ATR_Multiplier':0.5, 'Sell_ATR_Multiplier':0.5",shorter period
BTC,OMG,binance,ATR_MA,-88.37,-1.45,-520,-1.59,50.87,-139.23,348,5.7,39,134,22.54,0.31,0.04,-0.27,-0.02,261.91,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,15.52,"'Sell_ATR_Multiplier':0.5, 'BUY_ATR_Multiplier':0.5, 'ATR':10, 'MA':10",shorter period
BTC,STR,poloniex,ATR_MA,-89.06,-1.56,-560,-2.83,-50.01,-39.05,322,5.65,25,135,15.62,0.23,0.03,-0.14,-0.02,204.81,10,70,57,2018-03-28 23:13:08,2018-01-27 00:00:00,2018-03-25 23:58:00,22.09,"'ATR':10, 'BUY_ATR_Multiplier':0.5, 'MA':10, 'Sell_ATR_Multiplier':0.5",shorter period
BTC,VEN,binance,ATR_MA,-84.61,-1.39,-498,-0.91,619.61,-704.22,370,6.07,51,133,27.72,1.17,0.06,-0.54,-0.04,249.62,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,47.55,"'MA':10, 'Sell_ATR_Multiplier':0.5, 'BUY_ATR_Multiplier':0.5, 'ATR':10",shorter period
BTC,XRP,binance,ATR_MA,-82.94,-1.36,-488,-1.22,133.4,-216.35,369,6.05,42,142,22.83,0.88,0.11,-0.67,-0.03,208.97,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:59:00,25.81,"'ATR':10, 'Sell_ATR_Multiplier':0.5, 'BUY_ATR_Multiplier':0.5, 'MA':10",shorter period
BTC,ZEC,binance,ATR_MA,-94.38,-1.55,-556,-2.03,24.38,-118.77,371,6.08,31,154,16.76,0.54,0.03,-0.22,-0.01,224.27,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,13.05,"'MA':10, 'Sell_ATR_Multiplier':0.5, 'BUY_ATR_Multiplier':0.5, 'ATR':10",shorter period
ETH,AST,binance,ATR_MA,-91.47,-1.6,-576,-1.48,-34.89,-56.58,339,5.95,32,137,18.93,0.36,0.03,-0.24,-0.02,205.92,10,70,57,2018-03-27 17:33:08,2018-01-27 00:03:00,2018-03-25 23:58:00,30.62,"'MA':10, 'BUY_ATR_Multiplier':0.5, 'Sell_ATR_Multiplier':0.5, 'ATR':10",shorter period
ETH,EOS,binance,ATR_MA,-85,-1.39,-500,-1.37,-29.24,-55.75,342,5.61,35,135,20.59,0.33,0.03,-0.38,-0.02,242.41,10,70,61,2018-04-04 08:56:20,2017-12-20 00:00:00,2018-02-19 23:58:00,0,shorter period,
ETH,FUEL,binance,ATR_MA,-96.15,-1.69,-605,-2.48,-28.59,-67.56,354,6.21,19,157,10.8,0.2,0.01,-0.21,-0.01,216.99,10,70,57,2018-03-27 17:33:08,2018-01-27 00:01:00,2018-03-25 23:58:00,15.31,"'MA':10, 'ATR':10, 'BUY_ATR_Multiplier':0.5, 'Sell_ATR_Multiplier':0.5",shorter period
ETH,ICN,kraken,ATR_MA,-95.29,-1.56,-561,-1.61,-26.29,-69,373,6.11,35,151,18.82,0.61,0.03,-0.4,-0.01,220.86,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,24.75,"'BUY_ATR_Multiplier':0.5, 'ATR':10, 'Sell_ATR_Multiplier':0.5, 'MA':10",shorter period
ETH,QTUM,binance,ATR_MA,-91.97,-1.53,-550,-0.88,32.4,-124.37,328,5.47,26,137,15.95,1.88,0.03,-0.5,-0.02,232.02,10,70,60,2018-04-04 08:56:20,2017-12-12 00:01:00,2018-02-10 23:58:00,0,1,shorter period
ETH,VIB,binance,ATR_MA,-95.62,-1.68,-602,-1.72,12.57,-108.19,373,6.54,20,166,10.75,0.86,0.02,-0.43,-0.01,201.13,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:58:00,15.12,"'ATR':10, 'BUY_ATR_Multiplier':0.5, 'Sell_ATR_Multiplier':0.5, 'MA':10",shorter period
ETH,XVG,binance,ATR_MA,-90.72,-1.51,-543,-0.58,294.2,-384.93,370,6.17,42,142,22.83,3.54,0.15,-1.28,-0.04,211.2,10,70,60,2018-04-04 08:56:20,2017-12-12 00:02:00,2018-02-10 23:58:00,0,shorter period,
EUR,XMR,kraken,ATR_MA,-93.01,-1.52,-547,-1.62,-18.23,-74.78,400,6.56,43,156,21.61,0.41,0.05,-0.29,-0.02,222.41,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,20.52,"'ATR':10, 'BUY_ATR_Multiplier':0.5, 'MA':10, 'Sell_ATR_Multiplier':0.5",shorter period
USD,AVT,bitfinex,ATR_MA,-99.54,-1.72,-623,-1.86,-63.47,-36.07,488,8.41,30,213,12.35,0.16,0.02,-0.2,-0.01,164.36,10,70,58,2018-03-28 23:13:08,2018-01-26 13:30:00,2018-03-25 19:58:00,36.29,"'MA':10, 'Sell_ATR_Multiplier':0.5, 'ATR':10, 'BUY_ATR_Multiplier':0.5",shorter period
USD,DAT,bitfinex,ATR_MA,-98.4,-1.59,-579,-1.26,-50.35,-48.05,457,7.37,42,186,18.42,0.36,0.04,-0.25,-0.01,191.62,10,70,62,2018-03-28 23:13:08,2017-12-19 23:17:00,2018-02-19 23:56:00,36.88,"'MA':10, 'Sell_ATR_Multiplier':0.5, 'ATR':10, 'BUY_ATR_Multiplier':0.5",shorter period
USD,ETP,bitfinex,ATR_MA,-99.26,-1.6,-584,-1.26,-50.35,-48.92,486,7.84,27,215,11.16,0.75,0.02,-0.36,-0.01,183.39,10,70,62,2018-03-28 23:13:08,2017-12-19 22:55:00,2018-02-19 23:43:00,35.1,"'ATR':10, 'BUY_ATR_Multiplier':0.5, 'MA':10, 'Sell_ATR_Multiplier':0.5",shorter period
USD,RCN,bitfinex,ATR_MA,-99.95,-1.72,-619,-1.32,-63.33,-36.62,508,8.76,22,231,8.7,0.18,0.04,-0.22,0,164.7,10,70,58,2018-03-28 23:13:08,2018-01-26 02:00:00,2018-03-25 23:27:00,38.04,"'ATR':10, 'BUY_ATR_Multiplier':0.5, 'MA':10, 'Sell_ATR_Multiplier':0.5",shorter period
USD,RRT,bitfinex,ATR_MA,-99.93,-1.61,-587,-1.63,-69.56,-30.38,538,8.68,23,245,8.58,0.35,0.01,-0.37,0,160.75,10,70,62,2018-03-28 23:13:08,2017-12-19 19:20:00,2018-02-19 23:24:00,43.53,"'Sell_ATR_Multiplier':0.5, 'MA':10, 'BUY_ATR_Multiplier':0.5, 'ATR':10",shorter period
USD,SAN,bitfinex,ATR_MA,-98.01,-1.61,-586,-1.07,-53.99,-44.02,444,7.28,46,175,20.81,0.61,0.03,-0.26,-0.02,189.95,10,70,61,2018-03-28 23:13:08,2017-12-11 23:07:00,2018-02-10 23:58:00,44.19,"'BUY_ATR_Multiplier':0.5, 'ATR':10, 'Sell_ATR_Multiplier':0.5, 'MA':10",shorter period
USDT,BTC,binance,ATR_MA,-95.87,-1.57,-564,-2.12,-35.4,-60.47,407,6.67,37,166,18.23,0.2,0.02,-0.2,-0.01,231.43,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,21.96,"'MA':10, 'ATR':10, 'Sell_ATR_Multiplier':0.5, 'BUY_ATR_Multiplier':0.5",shorter period
USDT,ETH,binance,ATR_MA,-91.29,-1.52,-546,-1.51,66.89,-158.18,378,6.3,56,132,29.79,0.5,0.03,-0.57,-0.02,264.79,10,70,60,2018-03-27 17:33:08,2017-12-12 00:00:00,2018-02-10 23:59:00,22.93,"'MA':10, 'ATR':10, 'Sell_ATR_Multiplier':0.5, 'BUY_ATR_Multiplier':0.5",shorter period
USDT,LTC,binance,ATR_MA,-96.84,-1.59,-570,-1.71,-34.44,-62.4,401,6.57,40,160,20,0.25,0.02,-0.24,-0.01,231.7,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,22.22,"'MA':10, 'Sell_ATR_Multiplier':0.5, 'BUY_ATR_Multiplier':0.5, 'ATR':10",shorter period
USDT,NEO,binance,ATR_MA,-94.56,-1.55,-557,-1.22,96.24,-190.8,393,6.44,50,146,25.51,0.35,0.05,-0.26,-0.02,244.54,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,26.97,"'ATR':10, 'BUY_ATR_Multiplier':0.5, 'Sell_ATR_Multiplier':0.5, 'MA':10",shorter period
USDT,NXT,poloniex,ATR_MA,-95.31,-1.67,-600,-1.72,-54.67,-40.64,391,6.86,36,159,18.46,0.3,0.02,-0.18,-0.01,207.23,10,70,57,2018-03-28 23:13:08,2018-01-27 00:00:00,2018-03-25 23:53:00,26.64,"'Sell_ATR_Multiplier':0.5, 'MA':10, 'BUY_ATR_Multiplier':0.5, 'ATR':10",shorter period
BNB,ADX,binance,BBRSI,30.3,0.5,178,-0.72,-46.18,76.47,109,1.79,33,21,61.11,0.93,0.09,-2.07,-0.05,116.48,10,70,61,2018-03-27 17:33:08,2017-12-20 00:03:00,2018-02-19 23:58:00,47.35,"'thresholds': { 'high':40, 'persistence':9, 'low':40 }, 'interval':14, 'bbands': { 'NbDevUp':2, 'TimePeriod':20, 'NbDevDn':2 }",shorter period
BNB,CND,binance,BBRSI,78.48,1.31,469,-0.74,127.38,-48.9,125,2.08,45,17,72.58,0.82,0.17,-0.7,-0.19,114.03,10,70,60,2018-03-27 17:33:08,2017-12-12 00:00:00,2018-02-10 23:55:00,49.72,"'interval':14, 'thresholds': { 'high':40, 'persistence':9, 'low':40 }, 'bbands': { 'TimePeriod':20, 'NbDevUp':2, 'NbDevDn':2 }",shorter period
BNB,GTO,binance,BBRSI,40.73,0.67,239,-1.06,-17.85,58.58,129,2.11,44,20,68.75,0.47,0.11,-0.48,-0.13,120.16,10,70,61,2018-03-27 17:33:08,2017-12-20 00:01:00,2018-02-19 23:58:00,24.6,"'bbands': { 'TimePeriod':20, 'NbDevUp':2, 'NbDevDn':2 }, 'thresholds': { 'persistence':9, 'low':40, 'high':40 }, 'interval':14",shorter period
BNB,NEBL,binance,BBRSI,34.06,0.6,214,-1.61,-37.68,71.73,101,1.77,37,13,74,0.29,0.09,-0.38,-0.07,89,10,70,57,2018-03-27 17:33:08,2018-01-27 00:03:00,2018-03-25 23:58:00,16.74,"'bbands': { 'NbDevUp':2, 'TimePeriod':20, 'NbDevDn':2 }, 'thresholds': { 'persistence':9, 'low':40, 'high':40 }, 'interval':14",shorter period
BNB,NULS,binance,BBRSI,182.78,3.21,1151,-0.31,-35.94,218.72,149,2.61,58,16,78.38,3.48,0.13,-1.25,-0.07,100.27,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:58:00,16.63,"'thresholds': { 'high':40, 'low':40, 'persistence':9 }, 'interval':14, 'bbands': { 'NbDevDn':2, 'NbDevUp':2, 'TimePeriod':20 }",shorter period
BNB,OST,binance,BBRSI,219.92,3.61,1295,-0.39,-57.63,277.55,100,1.64,39,10,79.59,1.88,0.31,-0.89,-0.07,102.24,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:53:00,25.15,"'bbands': { 'TimePeriod':20, 'NbDevUp':2, 'NbDevDn':2 }, 'thresholds': { 'low':40, 'persistence':9, 'high':40 }, 'interval':14",shorter period
BNB,WTC,binance,BBRSI,4.36,0.08,27,-1.53,-61.73,66.09,123,2.16,37,24,60.66,0.41,0.07,-0.38,-0.03,113.11,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:54:00,24.05,"'interval':14, 'thresholds': { 'persistence':9, 'low':40, 'high':40 }, 'bbands': { 'NbDevDn':2, 'NbDevUp':2, 'TimePeriod':20 }",shorter period
BNB,XLM,binance,BBRSI,121.29,1.99,714,-0.59,-8.98,130.26,113,1.85,37,19,66.07,1.09,0.21,-0.91,-0.06,101.43,10,70,61,2018-03-27 17:33:08,2017-12-20 00:02:00,2018-02-19 23:58:00,29.22,"'bbands': { 'NbDevDn':2, 'NbDevUp':2, 'TimePeriod':20 }, 'interval':14, 'thresholds': { 'persistence':9, 'low':40, 'high':40 }",shorter period
BTC,ADA,binance,BBRSI,-40.85,-0.67,-240,-2.04,11.87,-52.72,187,3.07,43,50,46.24,0.41,0.05,-0.28,-0.03,146.02,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,24.43,"'interval':14, 'thresholds': { 'low':40, 'persistence':9, 'high':40 }, 'bbands': { 'TimePeriod':20, 'NbDevUp':2, 'NbDevDn':2 }",shorter period
BTC,BNB,binance,BBRSI,-24.5,-0.4,-144,-3.26,200.79,-225.29,169,2.77,39,45,46.43,0.27,0.03,-0.2,-0.01,97.86,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:59:00,32.99,"'thresholds': { 'persistence':9, 'low':40, 'high':40 }, 'interval':14, 'bbands': { 'NbDevUp':2, 'TimePeriod':20, 'NbDevDn':2 }",shorter period
BTC,BTM,poloniex,BBRSI,-25.13,-0.44,-158,-2.22,-49.04,23.91,171,3,55,30,64.71,0.21,0.03,-0.27,-0.04,155.29,10,70,57,2018-03-28 23:13:08,2018-01-27 00:56:00,2018-03-25 23:46:00,26.13,"'thresholds': { 'high':40, 'low':40, 'persistence':9 }, 'interval':14, 'bbands': { 'NbDevDn':2, 'TimePeriod':20, 'NbDevUp':2 }",shorter period
BTC,DGB,poloniex,BBRSI,2.15,0.04,12,-1.68,72.81,-70.66,153,2.51,48,28,63.16,0.27,0.07,-0.25,-0.07,120,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,23.7,"'interval':14, 'bbands': { 'NbDevDn':2, 'TimePeriod':20, 'NbDevUp':2 }, 'thresholds': { 'persistence':9, 'low':40, 'high':40 }",shorter period
BTC,ETC,binance,BBRSI,-34.93,-0.57,-205,-2.92,59.31,-94.23,171,2.8,40,45,47.06,0.23,0.03,-0.21,-0.02,115.06,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,17.44,"'bbands': { 'NbDevDn':2, 'TimePeriod':20, 'NbDevUp':2 }, 'interval':14, 'thresholds': { 'persistence':9, 'low':40, 'high':40 }",shorter period
BTC,GAME,poloniex,BBRSI,-28.8,-0.47,-169,-1.58,53.27,-82.07,165,2.7,39,43,47.56,0.68,0.05,-0.39,-0.03,121.71,10,70,61,2018-04-04 08:56:20,2017-12-20 00:00:00,2018-02-19 23:57:00,0,shorter period,
BTC,GAS,binance,BBRSI,-29.52,-0.49,-176,-1.79,337.14,-366.66,127,2.12,33,30,52.38,0.29,0.05,-0.36,-0.05,129.84,10,70,60,2018-03-27 17:33:08,2017-12-12 00:01:00,2018-02-10 23:58:00,42.95,"'bbands': { 'NbDevUp':2, 'TimePeriod':20, 'NbDevDn':2 }, 'interval':14, 'thresholds': { 'high':40, 'low':40, 'persistence':9 }",shorter period
BTC,ICX,binance,BBRSI,-22.17,-0.36,-130,-1.56,243.07,-265.25,165,2.7,50,32,60.98,0.23,0.07,-0.55,-0.06,121.95,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,31.7,"'thresholds': { 'persistence':9, 'low':40, 'high':40 }, 'interval':14, 'bbands': { 'TimePeriod':20, 'NbDevUp':2, 'NbDevDn':2 }",shorter period
BTC,OMG,binance,BBRSI,-38.82,-0.64,-228,-2.79,50.87,-89.69,175,2.87,43,44,49.43,0.22,0.02,-0.19,-0.03,123.1,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,15.52,"'bbands': { 'NbDevDn':2, 'TimePeriod':20, 'NbDevUp':2 }, 'interval':14, 'thresholds': { 'high':40, 'persistence':9, 'low':40 }",shorter period
BTC,STR,poloniex,BBRSI,-61.23,-1.07,-385,-4.03,-50.01,-11.22,181,3.18,29,61,32.22,0.11,0.02,-0.1,-0.02,149.78,10,70,57,2018-03-28 23:13:08,2018-01-27 00:00:00,2018-03-25 23:58:00,22.09,"'interval':14, 'bbands': { 'NbDevDn':2, 'TimePeriod':20, 'NbDevUp':2 }, 'thresholds': { 'persistence':9, 'high':40, 'low':40 }",shorter period
BTC,VEN,binance,BBRSI,26.22,0.43,154,-1.34,619.61,-593.39,175,2.87,56,31,64.37,0.76,0.09,-0.49,-0.1,118.05,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,47.55,"'interval':14, 'thresholds': { 'persistence':9, 'low':40, 'high':40 }, 'bbands': { 'NbDevUp':2, 'TimePeriod':20, 'NbDevDn':2 }",shorter period
BTC,XRP,binance,BBRSI,-46.84,-0.77,-275,-2.07,133.4,-180.25,200,3.28,38,62,38,0.45,0.05,-0.23,-0.03,139.1,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:59:00,25.81,"'thresholds': { 'low':40, 'persistence':9, 'high':40 }, 'interval':14, 'bbands': { 'NbDevDn':2, 'TimePeriod':20, 'NbDevUp':2 }",shorter period
BTC,ZEC,binance,BBRSI,-30.53,-0.5,-179,-3.2,24.38,-54.91,159,2.61,38,41,48.1,0.18,0.03,-0.22,-0.02,122.78,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,13.05,"'thresholds': { 'persistence':9, 'low':40, 'high':40 }, 'interval':14, 'bbands': { 'NbDevUp':2, 'TimePeriod':20, 'NbDevDn':2 }",shorter period
ETH,AST,binance,BBRSI,-57.48,-1.01,-361,-2.22,-34.89,-22.59,175,3.07,36,51,41.38,0.08,0.03,-0.51,-0.02,133.33,10,70,57,2018-03-27 17:33:08,2018-01-27 00:03:00,2018-03-25 23:58:00,30.62,"'bbands': { 'NbDevDn':2, 'TimePeriod':20, 'NbDevUp':2 }, 'interval':14, 'thresholds': { 'high':40, 'persistence':9, 'low':40 }",shorter period
ETH,EOS,binance,BBRSI,-69.73,-1.14,-410,-2.41,-29.24,-40.49,173,2.84,30,56,34.88,0.13,0.02,-0.28,-0.02,169.3,10,70,61,2018-04-04 08:56:20,2017-12-20 00:00:00,2018-02-19 23:58:00,0,shorter period,
ETH,FUEL,binance,BBRSI,-23.28,-0.41,-146,-2.51,-28.59,5.31,133,2.33,44,22,66.67,0.08,0.03,-0.4,-0.02,104.24,10,70,57,2018-03-27 17:33:08,2018-01-27 00:01:00,2018-03-25 23:58:00,15.31,"'bbands': { 'NbDevDn':2, 'TimePeriod':20, 'NbDevUp':2 }, 'interval':14, 'thresholds': { 'high':40, 'persistence':9, 'low':40 }",shorter period
ETH,ICN,kraken,BBRSI,7.1,0.12,41,-1.51,-26.29,33.39,145,2.38,44,28,61.11,0.37,0.07,-0.4,-0.05,118.75,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,24.75,"'thresholds': { 'high':40, 'low':40, 'persistence':9 }, 'interval':14, 'bbands': { 'NbDevUp':2, 'TimePeriod':20, 'NbDevDn':2 }",shorter period
ETH,QTUM,binance,BBRSI,-37.59,-0.63,-225,-2.1,32.4,-69.99,135,2.25,31,36,46.27,0.32,0.04,-0.25,-0.03,137.91,10,70,60,2018-04-04 08:56:20,2017-12-12 00:01:00,2018-02-10 23:58:00,0,1,shorter period
ETH,VIB,binance,BBRSI,-36.9,-0.65,-232,-2.12,12.57,-49.46,141,2.47,38,32,54.29,0.14,0.03,-0.34,-0.02,132.71,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:58:00,15.12,"'bbands': { 'NbDevDn':2, 'TimePeriod':20, 'NbDevUp':2 }, 'interval':14, 'thresholds': { 'high':40, 'persistence':9, 'low':40 }",shorter period
ETH,XVG,binance,BBRSI,-48.95,-0.82,-293,-1.38,294.2,-343.15,179,2.98,42,47,47.19,0.53,0.04,-0.41,-0.05,138.54,10,70,60,2018-04-04 08:56:20,2017-12-12 00:02:00,2018-02-10 23:58:00,0,shorter period,
EUR,XMR,kraken,BBRSI,-27.15,-0.45,-159,-1.38,-18.23,-8.92,159,2.61,41,38,51.9,0.51,0.04,-0.31,-0.06,126.08,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,20.52,"'bbands': { 'TimePeriod':20, 'NbDevDn':2, 'NbDevUp':2 }, 'interval':14, 'thresholds': { 'persistence':9, 'high':40, 'low':40 }",shorter period
USD,AVT,bitfinex,BBRSI,-15.34,-0.26,-96,-1.04,-63.47,48.13,199,3.43,55,44,55.56,0.3,0.05,-0.59,-0.04,172.93,10,70,58,2018-03-28 23:13:08,2018-01-26 13:30:00,2018-03-25 19:58:00,36.29,"'thresholds': { 'persistence':9, 'high':40, 'low':40 }, 'bbands': { 'NbDevUp':2, 'NbDevDn':2, 'TimePeriod':20 }, 'interval':14",shorter period
USD,DAT,bitfinex,BBRSI,347.68,5.61,2047,-0.61,-50.35,398.03,180,2.9,69,20,77.53,2.13,0.19,-0.75,-0.07,95.06,10,70,62,2018-03-28 23:13:08,2017-12-19 23:17:00,2018-02-19 23:56:00,36.88,"'bbands': { 'TimePeriod':20, 'NbDevDn':2, 'NbDevUp':2 }, 'interval':14, 'thresholds': { 'persistence':9, 'high':40, 'low':40 }",shorter period
USD,ETP,bitfinex,BBRSI,-27.79,-0.45,-163,-1.01,-50.35,22.56,163,2.63,55,26,67.9,0.39,0.06,-0.72,-0.1,118.4,10,70,62,2018-03-28 23:13:08,2017-12-19 22:55:00,2018-02-19 23:43:00,35.1,"'thresholds': { 'high':40, 'low':40, 'persistence':9 }, 'bbands': { 'NbDevUp':2, 'NbDevDn':2, 'TimePeriod':20 }, 'interval':14",shorter period
USD,RCN,bitfinex,BBRSI,17.62,0.3,109,-1.04,-63.33,80.96,183,3.16,57,34,62.64,0.56,0.06,-0.43,-0.06,171.98,10,70,58,2018-03-28 23:13:08,2018-01-26 02:00:00,2018-03-25 23:27:00,38.04,"'bbands': { 'TimePeriod':20, 'NbDevDn':2, 'NbDevUp':2 }, 'interval':14, 'thresholds': { 'persistence':9, 'high':40, 'low':40 }",shorter period
USD,RRT,bitfinex,BBRSI,19.41,0.31,114,-0.89,-69.56,88.96,169,2.73,57,27,67.86,0.47,0.11,-0.94,-0.13,143.69,10,70,62,2018-03-28 23:13:08,2017-12-19 19:20:00,2018-02-19 23:24:00,43.53,"'bbands': { 'NbDevUp':2, 'NbDevDn':2, 'TimePeriod':20 }, 'interval':14, 'thresholds': { 'high':40, 'low':40, 'persistence':9 }",shorter period
USD,SAN,bitfinex,BBRSI,-18.64,-0.31,-111,-1.04,-53.99,35.35,145,2.38,43,29,59.72,0.42,0.07,-0.71,-0.04,130.42,10,70,61,2018-03-28 23:13:08,2017-12-11 23:07:00,2018-02-10 23:58:00,44.19,"'bbands': { 'NbDevUp':2, 'NbDevDn':2, 'TimePeriod':20 }, 'interval':14, 'thresholds': { 'high':40, 'low':40, 'persistence':9 }",shorter period
USDT,BTC,binance,BBRSI,3.36,0.06,19,-1.58,-35.4,38.76,181,2.97,49,41,54.44,0.5,0.05,-0.32,-0.04,111.11,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,21.96,"'interval':14, 'thresholds': { 'low':40, 'persistence':9, 'high':40 }, 'bbands': { 'NbDevDn':2, 'NbDevUp':2, 'TimePeriod':20 }",shorter period
USDT,ETH,binance,BBRSI,24,0.4,143,-1.04,66.89,-42.89,143,2.38,41,30,57.75,0.79,0.1,-0.67,-0.05,117.46,10,70,60,2018-03-27 17:33:08,2017-12-12 00:00:00,2018-02-10 23:59:00,22.93,"'interval':14, 'thresholds': { 'high':40, 'persistence':9, 'low':40 }, 'bbands': { 'NbDevUp':2, 'TimePeriod':20, 'NbDevDn':2 }",shorter period
USDT,LTC,binance,BBRSI,37.44,0.61,220,-1.31,-34.44,71.88,182,2.98,59,31,65.56,0.91,0.07,-0.44,-0.04,106.67,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,22.22,"'bbands': { 'TimePeriod':20, 'NbDevUp':2, 'NbDevDn':2 }, 'thresholds': { 'low':40, 'persistence':9, 'high':40 }, 'interval':14",shorter period
USDT,NEO,binance,BBRSI,109.55,1.8,645,-0.76,96.24,13.3,157,2.57,54,24,69.23,1.65,0.14,-0.7,-0.15,103.59,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,26.97,"'bbands': { 'NbDevDn':2, 'TimePeriod':20, 'NbDevUp':2 }, 'thresholds': { 'persistence':9, 'low':40, 'high':40 }, 'interval':14",shorter period
USDT,NXT,poloniex,BBRSI,-25.44,-0.45,-160,-2.08,-54.67,29.22,165,2.89,44,38,53.66,0.35,0.05,-0.23,-0.04,122.68,10,70,57,2018-03-28 23:13:08,2018-01-27 00:00:00,2018-03-25 23:53:00,26.64,"'thresholds': { 'persistence':9, 'low':40, 'high':40 }, 'bbands': { 'NbDevUp':2, 'NbDevDn':2, 'TimePeriod':20 }, 'interval':14",shorter period
BNB,ADX,binance,bestone,-88.09,-1.44,-518,-1.37,-46.18,-41.91,35,0.57,0,17,0,0,n/a,-0.95,-0.04,2820.59,10,70,61,2018-03-27 17:33:08,2017-12-20 00:03:00,2018-02-19 23:58:00,47.35,"'thresholds': { 'MACDlow':0, 'persistance':1, 'RSIhigh':70, 'RSIlow':30, 'MACDhigh':0 }, 'STOCH': { 'optInSlowDMAType':1, 'optInSlowDPeriod':3, 'optInSlowKMAType':1, 'optInSlowKPeriod':3, 'optInFastKPeriod':9 }, 'EMAshort': { 'optInTimePeriod':9 }, 'MACD': { 'optInSignalPeriod':9, 'optInSlowPeriod':26, 'optInFastPeriod':12 }, 'RSI': { 'optInTimePeriod':14 }, 'EMAlong': { 'optInTimePeriod':21 }",shorter period
BNB,CND,binance,bestone,4.32,0.07,25,0.01,127.38,-123.06,33,0.55,6,10,37.5,2.47,1.66,-2.88,-0.59,3505,10,70,60,2018-03-27 17:33:08,2017-12-12 00:00:00,2018-02-10 23:55:00,49.72,"'thresholds': { 'MACDhigh':0, 'RSIlow':30, 'RSIhigh':70, 'MACDlow':0, 'persistance':1 }, 'STOCH': { 'optInSlowKPeriod':3, 'optInFastKPeriod':9, 'optInSlowDPeriod':3, 'optInSlowDMAType':1, 'optInSlowKMAType':1 }, 'EMAshort': { 'optInTimePeriod':9 }, 'MACD': { 'optInSlowPeriod':26, 'optInSignalPeriod':9, 'optInFastPeriod':12 }, 'EMAlong': { 'optInTimePeriod':21 }, 'RSI': { 'optInTimePeriod':14 }",shorter period
BNB,GTO,binance,bestone,-86.89,-1.42,-511,-1.98,-17.85,-69.04,33,0.54,1,15,6.25,0.07,0.07,-0.68,-0.17,3181.88,10,70,61,2018-03-27 17:33:08,2017-12-20 00:01:00,2018-02-19 23:58:00,24.6,"'RSI': { 'optInTimePeriod':14 }, 'EMAlong': { 'optInTimePeriod':21 }, 'EMAshort': { 'optInTimePeriod':9 }, 'MACD': { 'optInFastPeriod':12, 'optInSlowPeriod':26, 'optInSignalPeriod':9 }, 'STOCH': { 'optInSlowDPeriod':3, 'optInSlowDMAType':1, 'optInSlowKMAType':1, 'optInSlowKPeriod':3, 'optInFastKPeriod':9 }, 'thresholds': { 'RSIlow':30, 'persistance':1, 'MACDlow':0, 'RSIhigh':70, 'MACDhigh':0 }",shorter period
BNB,NEBL,binance,bestone,-69.67,-1.22,-438,-1.56,-37.68,-32,29,0.51,1,13,7.14,0.28,0.28,-0.51,-0.21,3385.71,10,70,57,2018-03-27 17:33:08,2018-01-27 00:03:00,2018-03-25 23:58:00,16.74,"'STOCH': { 'optInSlowDMAType':1, 'optInSlowDPeriod':3, 'optInSlowKMAType':1, 'optInSlowKPeriod':3, 'optInFastKPeriod':9 }, 'thresholds': { 'RSIhigh':70, 'MACDlow':0, 'persistance':1, 'RSIlow':30, 'MACDhigh':0 }, 'RSI': { 'optInTimePeriod':14 }, 'EMAlong': { 'optInTimePeriod':21 }, 'MACD': { 'optInSignalPeriod':9, 'optInSlowPeriod':26, 'optInFastPeriod':12 }, 'EMAshort': { 'optInTimePeriod':9 }",shorter period
BNB,NULS,binance,bestone,-63.91,-1.12,-402,-0.9,-35.94,-27.97,37,0.65,4,14,22.22,0.59,0.17,-0.66,-0.19,2687.22,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:58:00,16.63,"'EMAshort': { 'optInTimePeriod':9 }, 'MACD': { 'optInSignalPeriod':9, 'optInSlowPeriod':26, 'optInFastPeriod':12 }, 'RSI': { 'optInTimePeriod':14 }, 'EMAlong': { 'optInTimePeriod':21 }, 'thresholds': { 'persistance':1, 'MACDlow':0, 'RSIhigh':70, 'RSIlow':30, 'MACDhigh':0 }, 'STOCH': { 'optInFastKPeriod':9, 'optInSlowKPeriod':3, 'optInSlowKMAType':1, 'optInSlowDPeriod':3, 'optInSlowDMAType':1 }",shorter period
BNB,OST,binance,bestone,-94.5,-1.55,-556,-0.97,-57.63,-36.87,28,0.46,3,10,23.08,0.09,0.02,-1.75,-0.07,3861.54,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:53:00,25.15,"'STOCH': { 'optInSlowDMAType':1, 'optInSlowDPeriod':3, 'optInSlowKMAType':1, 'optInSlowKPeriod':3, 'optInFastKPeriod':9 }, 'thresholds': { 'MACDhigh':0, 'RSIlow':30, 'MACDlow':0, 'persistance':1, 'RSIhigh':70 }, 'EMAlong': { 'optInTimePeriod':21 }, 'RSI': { 'optInTimePeriod':14 }, 'EMAshort': { 'optInTimePeriod':9 }, 'MACD': { 'optInSignalPeriod':9, 'optInSlowPeriod':26, 'optInFastPeriod':12 }",shorter period
BNB,WTC,binance,bestone,-57.04,-1,-359,-1.01,-61.73,4.68,37,0.65,3,15,16.67,0.36,0.14,-0.39,-0.16,2292.78,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:54:00,24.05,"'MACD': { 'optInSlowPeriod':26, 'optInSignalPeriod':9, 'optInFastPeriod':12 }, 'EMAshort': { 'optInTimePeriod':9 }, 'EMAlong': { 'optInTimePeriod':21 }, 'RSI': { 'optInTimePeriod':14 }, 'thresholds': { 'MACDhigh':0, 'RSIhigh':70, 'MACDlow':0, 'persistance':1, 'RSIlow':30 }, 'STOCH': { 'optInSlowKPeriod':3, 'optInFastKPeriod':9, 'optInSlowDMAType':1, 'optInSlowDPeriod':3, 'optInSlowKMAType':1 }",shorter period
BNB,XLM,binance,bestone,-22.92,-0.38,-135,0.02,-8.98,-13.94,25,0.41,4,8,33.33,2.74,0.51,-1.49,-0.39,3406.67,10,70,61,2018-03-27 17:33:08,2017-12-20 00:02:00,2018-02-19 23:58:00,29.22,"'MACD': { 'optInSlowPeriod':26, 'optInSignalPeriod':9, 'optInFastPeriod':12 }, 'EMAshort': { 'optInTimePeriod':9 }, 'RSI': { 'optInTimePeriod':14 }, 'EMAlong': { 'optInTimePeriod':21 }, 'thresholds': { 'MACDlow':0, 'persistance':1, 'RSIhigh':70, 'RSIlow':30, 'MACDhigh':0 }, 'STOCH': { 'optInSlowDPeriod':3, 'optInSlowDMAType':1, 'optInSlowKMAType':1, 'optInSlowKPeriod':3, 'optInFastKPeriod':9 }",shorter period
BTC,ADA,binance,bestone,19.33,0.32,113,-0.15,11.87,7.47,53,0.87,7,19,26.92,2.44,0.73,-0.61,-0.19,1341.54,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,24.43,"'STOCH': { 'optInSlowKPeriod':3, 'optInFastKPeriod':9, 'optInSlowDPeriod':3, 'optInSlowDMAType':1, 'optInSlowKMAType':1 }, 'thresholds': { 'RSIhigh':70, 'MACDlow':0, 'persistance':1, 'RSIlow':30, 'MACDhigh':0 }, 'RSI': { 'optInTimePeriod':14 }, 'EMAlong': { 'optInTimePeriod':21 }, 'EMAshort': { 'optInTimePeriod':9 }, 'MACD': { 'optInSignalPeriod':9, 'optInSlowPeriod':26, 'optInFastPeriod':12 }",shorter period
BTC,BNB,binance,bestone,70,1.15,412,-0.02,200.79,-130.79,53,0.87,6,20,23.08,4.48,1.41,-1.52,-0.23,1781.92,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:59:00,32.99,"'thresholds': { 'MACDhigh':0, 'MACDlow':0, 'persistance':1, 'RSIhigh':70, 'RSIlow':30 }, 'STOCH': { 'optInSlowKMAType':1, 'optInSlowDPeriod':3, 'optInSlowDMAType':1, 'optInFastKPeriod':9, 'optInSlowKPeriod':3 }, 'MACD': { 'optInFastPeriod':12, 'optInSignalPeriod':9, 'optInSlowPeriod':26 }, 'EMAshort': { 'optInTimePeriod':9 }, 'EMAlong': { 'optInTimePeriod':21 }, 'RSI': { 'optInTimePeriod':14 }",shorter period
BTC,BTM,poloniex,bestone,-75.46,-1.32,-475,-1.73,-49.04,-26.42,85,1.49,8,34,19.05,0.13,0.04,-0.26,-0.06,882.14,10,70,57,2018-03-28 23:13:08,2018-01-27 00:56:00,2018-03-25 23:46:00,26.13,"'thresholds': { 'MACDhigh':0, 'RSIlow':30, 'RSIhigh':70, 'persistance':1, 'MACDlow':0 }, 'MACD': { 'optInFastPeriod':12, 'optInSlowPeriod':26, 'optInSignalPeriod':9 }, 'RSI': { 'optInTimePeriod':14 }, 'EMAlong': { 'optInTimePeriod':21 }, 'STOCH': { 'optInSlowKPeriod':3, 'optInFastKPeriod':9, 'optInSlowDMAType':1, 'optInSlowKMAType':1, 'optInSlowDPeriod':3 }, 'EMAshort': { 'optInTimePeriod':9 }",shorter period
BTC,DGB,poloniex,bestone,17.03,0.28,100,-0.14,72.81,-55.77,44,0.72,10,12,45.45,3.02,0.41,-1.41,-0.51,2119.09,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,23.7,"'thresholds': { 'MACDhigh':0, 'RSIlow':30, 'persistance':1, 'RSIhigh':70, 'MACDlow':0 }, 'EMAlong': { 'optInTimePeriod':21 }, 'STOCH': { 'optInFastKPeriod':9, 'optInSlowDMAType':1, 'optInSlowDPeriod':3, 'optInSlowKMAType':1, 'optInSlowKPeriod':3 }, 'EMAshort': { 'optInTimePeriod':9 }, 'RSI': { 'optInTimePeriod':14 }, 'MACD': { 'optInSlowPeriod':26, 'optInSignalPeriod':9, 'optInFastPeriod':12 }",shorter period
BTC,ETC,binance,bestone,3.06,0.05,18,-0.61,59.31,-56.25,49,0.8,8,16,33.33,0.84,0.12,-0.38,-0.13,1763.33,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,17.44,"'STOCH': { 'optInSlowKPeriod':3, 'optInFastKPeriod':9, 'optInSlowDMAType':1, 'optInSlowDPeriod':3, 'optInSlowKMAType':1 }, 'thresholds': { 'RSIhigh':70, 'persistance':1, 'MACDlow':0, 'RSIlow':30, 'MACDhigh':0 }, 'EMAlong': { 'optInTimePeriod':21 }, 'RSI': { 'optInTimePeriod':14 }, 'EMAshort': { 'optInTimePeriod':9 }, 'MACD': { 'optInSlowPeriod':26, 'optInSignalPeriod':9, 'optInFastPeriod':12 }",shorter period
BTC,GAME,poloniex,bestone,-61.65,-1.01,-363,-0.85,53.27,-114.92,55,0.9,7,20,25.93,0.8,0.29,-0.55,-0.2,1622.96,10,70,61,2018-04-04 08:56:20,2017-12-20 00:00:00,2018-02-19 23:57:00,0,shorter period,
BTC,GAS,binance,bestone,-2.58,-0.04,-15,-0.27,337.14,-339.72,43,0.72,10,11,47.62,1.57,0.43,-0.98,-0.36,2568.57,10,70,60,2018-03-27 17:33:08,2017-12-12 00:01:00,2018-02-10 23:58:00,42.95,"'STOCH': { 'optInSlowKMAType':1, 'optInSlowDMAType':1, 'optInSlowDPeriod':3, 'optInFastKPeriod':9, 'optInSlowKPeriod':3 }, 'thresholds': { 'MACDhigh':0, 'RSIlow':30, 'MACDlow':0, 'persistance':1, 'RSIhigh':70 }, 'EMAlong': { 'optInTimePeriod':21 }, 'RSI': { 'optInTimePeriod':14 }, 'EMAshort': { 'optInTimePeriod':9 }, 'MACD': { 'optInSignalPeriod':9, 'optInSlowPeriod':26, 'optInFastPeriod':12 }",shorter period
BTC,ICX,binance,bestone,24.25,0.4,142,-0.17,243.07,-218.82,56,0.92,13,15,46.43,2.08,0.66,-1.35,-0.58,1647.86,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,31.7,"'thresholds': { 'RSIlow':30, 'RSIhigh':70, 'persistance':1, 'MACDlow':0, 'MACDhigh':0 }, 'STOCH': { 'optInSlowKMAType':1, 'optInSlowDMAType':1, 'optInSlowDPeriod':3, 'optInFastKPeriod':9, 'optInSlowKPeriod':3 }, 'EMAshort': { 'optInTimePeriod':9 }, 'MACD': { 'optInSlowPeriod':26, 'optInSignalPeriod':9, 'optInFastPeriod':12 }, 'RSI': { 'optInTimePeriod':14 }, 'EMAlong': { 'optInTimePeriod':21 }",shorter period
BTC,OMG,binance,bestone,-7.92,-0.13,-46,-0.4,50.87,-58.79,58,0.95,9,20,31.03,1.51,0.25,-0.74,-0.13,1646.55,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,15.52,"'thresholds': { 'RSIlow':30, 'RSIhigh':70, 'persistance':1, 'MACDlow':0, 'MACDhigh':0 }, 'STOCH': { 'optInFastKPeriod':9, 'optInSlowKPeriod':3, 'optInSlowKMAType':1, 'optInSlowDPeriod':3, 'optInSlowDMAType':1 }, 'EMAshort': { 'optInTimePeriod':9 }, 'MACD': { 'optInFastPeriod':12, 'optInSlowPeriod':26, 'optInSignalPeriod':9 }, 'EMAlong': { 'optInTimePeriod':21 }, 'RSI': { 'optInTimePeriod':14 }",shorter period
BTC,STR,poloniex,bestone,-39.86,-0.7,-251,-1.21,-50.01,10.15,42,0.74,5,15,25,0.34,0.14,-0.31,-0.13,2026,10,70,57,2018-03-28 23:13:08,2018-01-27 00:00:00,2018-03-25 23:58:00,22.09,"'RSI': { 'optInTimePeriod':14 }, 'MACD': { 'optInFastPeriod':12, 'optInSignalPeriod':9, 'optInSlowPeriod':26 }, 'EMAlong': { 'optInTimePeriod':21 }, 'EMAshort': { 'optInTimePeriod':9 }, 'STOCH': { 'optInSlowKMAType':1, 'optInSlowDPeriod':3, 'optInSlowDMAType':1, 'optInFastKPeriod':9, 'optInSlowKPeriod':3 }, 'thresholds': { 'persistance':1, 'RSIhigh':70, 'MACDlow':0, 'MACDhigh':0, 'RSIlow':30 }",shorter period
BTC,VEN,binance,bestone,77.07,1.26,454,-0.11,619.61,-542.54,58,0.95,13,15,46.43,2.51,0.85,-1.44,-0.46,1605.71,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,47.55,"'EMAlong': { 'optInTimePeriod':21 }, 'RSI': { 'optInTimePeriod':14 }, 'MACD': { 'optInFastPeriod':12, 'optInSignalPeriod':9, 'optInSlowPeriod':26 }, 'EMAshort': { 'optInTimePeriod':9 }, 'STOCH': { 'optInSlowDMAType':1, 'optInSlowDPeriod':3, 'optInSlowKMAType':1, 'optInSlowKPeriod':3, 'optInFastKPeriod':9 }, 'thresholds': { 'MACDlow':0, 'persistance':1, 'RSIhigh':70, 'RSIlow':30, 'MACDhigh':0 }",shorter period
BTC,XRP,binance,bestone,85.85,1.41,505,0.02,133.4,-47.55,53,0.87,8,18,30.77,7.01,1.66,-2.77,-0.46,1669.62,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:59:00,25.81,"'EMAshort': { 'optInTimePeriod':9 }, 'MACD': { 'optInFastPeriod':12, 'optInSlowPeriod':26, 'optInSignalPeriod':9 }, 'RSI': { 'optInTimePeriod':14 }, 'EMAlong': { 'optInTimePeriod':21 }, 'thresholds': { 'MACDhigh':0, 'RSIlow':30, 'RSIhigh':70, 'MACDlow':0, 'persistance':1 }, 'STOCH': { 'optInSlowKPeriod':3, 'optInFastKPeriod':9, 'optInSlowDPeriod':3, 'optInSlowDMAType':1, 'optInSlowKMAType':1 }",shorter period
BTC,ZEC,binance,bestone,-28.82,-0.47,-169,-0.69,24.38,-53.2,46,0.75,7,16,30.43,1.01,0.18,-0.35,-0.14,1905.22,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,13.05,"'STOCH': { 'optInSlowDPeriod':3, 'optInSlowDMAType':1, 'optInSlowKMAType':1, 'optInSlowKPeriod':3, 'optInFastKPeriod':9 }, 'thresholds': { 'MACDhigh':0, 'RSIlow':30, 'RSIhigh':70, 'persistance':1, 'MACDlow':0 }, 'EMAlong': { 'optInTimePeriod':21 }, 'RSI': { 'optInTimePeriod':14 }, 'EMAshort': { 'optInTimePeriod':9 }, 'MACD': { 'optInFastPeriod':12, 'optInSlowPeriod':26, 'optInSignalPeriod':9 }",shorter period
ETH,AST,binance,bestone,-48.91,-0.86,-308,-0.51,-34.89,-14.02,39,0.68,2,17,10.53,0.69,0.38,-0.57,-0.15,2572.11,10,70,57,2018-03-27 17:33:08,2018-01-27 00:03:00,2018-03-25 23:58:00,30.62,"'EMAlong': { 'optInTimePeriod':21 }, 'RSI': { 'optInTimePeriod':14 }, 'EMAshort': { 'optInTimePeriod':9 }, 'MACD': { 'optInFastPeriod':12, 'optInSlowPeriod':26, 'optInSignalPeriod':9 }, 'STOCH': { 'optInSlowKPeriod':3, 'optInFastKPeriod':9, 'optInSlowDPeriod':3, 'optInSlowDMAType':1, 'optInSlowKMAType':1 }, 'thresholds': { 'MACDhigh':0, 'RSIhigh':70, 'MACDlow':0, 'persistance':1, 'RSIlow':30 }",shorter period
ETH,EOS,binance,bestone,-52.08,-0.85,-306,-0.9,-29.24,-22.84,72,1.18,8,27,22.86,0.55,0.12,-0.29,-0.09,1176,10,70,61,2018-04-04 08:56:20,2017-12-20 00:00:00,2018-02-19 23:58:00,0,shorter period,
ETH,FUEL,binance,bestone,-48.72,-0.85,-306,-1.2,-28.59,-20.13,35,0.61,4,13,23.53,0.37,0.1,-0.62,-0.17,2545.29,10,70,57,2018-03-27 17:33:08,2018-01-27 00:01:00,2018-03-25 23:58:00,15.31,"'thresholds': { 'RSIlow':30, 'MACDlow':0, 'persistance':1, 'RSIhigh':70, 'MACDhigh':0 }, 'STOCH': { 'optInSlowDMAType':1, 'optInSlowDPeriod':3, 'optInSlowKMAType':1, 'optInSlowKPeriod':3, 'optInFastKPeriod':9 }, 'MACD': { 'optInFastPeriod':12, 'optInSignalPeriod':9, 'optInSlowPeriod':26 }, 'EMAshort': { 'optInTimePeriod':9 }, 'RSI': { 'optInTimePeriod':14 }, 'EMAlong': { 'optInTimePeriod':21 }",shorter period
ETH,ICN,kraken,bestone,-78.19,-1.28,-460,-1.91,-26.29,-51.91,53,0.87,4,22,15.38,0.21,0.06,-0.38,-0.12,1575.77,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,24.75,"'thresholds': { 'MACDhigh':0, 'RSIlow':30, 'persistance':1, 'RSIhigh':70, 'MACDlow':0 }, 'RSI': { 'optInTimePeriod':14 }, 'MACD': { 'optInSlowPeriod':26, 'optInSignalPeriod':9, 'optInFastPeriod':12 }, 'EMAshort': { 'optInTimePeriod':9 }, 'STOCH': { 'optInSlowKPeriod':3, 'optInSlowKMAType':1, 'optInSlowDPeriod':3, 'optInSlowDMAType':1, 'optInFastKPeriod':9 }, 'EMAlong': { 'optInTimePeriod':21 }",shorter period
ETH,QTUM,binance,bestone,49.26,0.82,294,0.07,32.4,16.87,28,0.47,3,10,23.08,5.31,0.13,-0.81,-0.28,3170,10,70,60,2018-04-04 08:56:20,2017-12-12 00:01:00,2018-02-10 23:58:00,0,1,shorter period
ETH,VIB,binance,bestone,-46.07,-0.81,-290,-0.71,12.57,-58.64,37,0.65,5,13,27.78,1.39,0.13,-0.7,-0.28,2732.22,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:58:00,15.12,"'RSI': { 'optInTimePeriod':14 }, 'EMAlong': { 'optInTimePeriod':21 }, 'EMAshort': { 'optInTimePeriod':9 }, 'MACD': { 'optInFastPeriod':12, 'optInSignalPeriod':9, 'optInSlowPeriod':26 }, 'STOCH': { 'optInSlowKPeriod':3, 'optInFastKPeriod':9, 'optInSlowDMAType':1, 'optInSlowDPeriod':3, 'optInSlowKMAType':1 }, 'thresholds': { 'MACDhigh':0, 'RSIhigh':70, 'MACDlow':0, 'persistance':1, 'RSIlow':30 }",shorter period
ETH,XVG,binance,bestone,152.07,2.53,910,0.12,294.2,-142.13,60,1,8,21,27.59,40.14,6.16,-14.18,-2.3,1382.41,10,70,60,2018-04-04 08:56:20,2017-12-12 00:02:00,2018-02-10 23:58:00,0,shorter period,
EUR,XMR,kraken,bestone,-30.54,-0.5,-179,-0.87,-18.23,-12.31,63,1.03,13,18,41.94,0.35,0.14,-0.35,-0.15,1387.74,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,20.52,"'thresholds': { 'MACDlow':0, 'persistance':1, 'RSIhigh':70, 'RSIlow':30, 'MACDhigh':0 }, 'EMAshort': { 'optInTimePeriod':9 }, 'STOCH': { 'optInFastKPeriod':9, 'optInSlowDMAType':1, 'optInSlowDPeriod':3, 'optInSlowKMAType':1, 'optInSlowKPeriod':3 }, 'EMAlong': { 'optInTimePeriod':21 }, 'MACD': { 'optInFastPeriod':12, 'optInSlowPeriod':26, 'optInSignalPeriod':9 }, 'RSI': { 'optInTimePeriod':14 }",shorter period
USD,AVT,bitfinex,bestone,-90.79,-1.57,-569,-1.25,-63.47,-27.32,109,1.88,11,43,20.37,0.48,0.06,-0.54,-0.07,617.96,10,70,58,2018-03-28 23:13:08,2018-01-26 13:30:00,2018-03-25 19:58:00,36.29,"'thresholds': { 'MACDlow':0, 'RSIhigh':70, 'persistance':1, 'MACDhigh':0, 'RSIlow':30 }, 'MACD': { 'optInSignalPeriod':9, 'optInSlowPeriod':26, 'optInFastPeriod':12 }, 'RSI': { 'optInTimePeriod':14 }, 'EMAlong': { 'optInTimePeriod':21 }, 'EMAshort': { 'optInTimePeriod':9 }, 'STOCH': { 'optInSlowDMAType':1, 'optInFastKPeriod':9, 'optInSlowKMAType':1, 'optInSlowDPeriod':3, 'optInSlowKPeriod':3 }",shorter period
USD,DAT,bitfinex,bestone,-71.08,-1.15,-418,-0.88,-50.35,-20.74,56,0.9,7,21,25,0.32,0.1,-0.56,-0.11,1444.29,10,70,62,2018-03-28 23:13:08,2017-12-19 23:17:00,2018-02-19 23:56:00,36.88,"'RSI': { 'optInTimePeriod':14 }, 'MACD': { 'optInSignalPeriod':9, 'optInSlowPeriod':26, 'optInFastPeriod':12 }, 'EMAshort': { 'optInTimePeriod':9 }, 'STOCH': { 'optInSlowKPeriod':3, 'optInSlowDMAType':1, 'optInFastKPeriod':9, 'optInSlowKMAType':1, 'optInSlowDPeriod':3 }, 'EMAlong': { 'optInTimePeriod':21 }, 'thresholds': { 'persistance':1, 'RSIhigh':70, 'MACDlow':0, 'MACDhigh':0, 'RSIlow':30 }",shorter period
USD,ETP,bitfinex,bestone,-33.34,-0.54,-196,-0.51,-50.35,17.01,47,0.76,7,16,30.43,1.05,0.28,-0.41,-0.23,1626.96,10,70,62,2018-03-28 23:13:08,2017-12-19 22:55:00,2018-02-19 23:43:00,35.1,"'thresholds': { 'persistance':1, 'RSIhigh':70, 'MACDlow':0, 'RSIlow':30, 'MACDhigh':0 }, 'EMAlong': { 'optInTimePeriod':21 }, 'STOCH': { 'optInSlowDPeriod':3, 'optInSlowKMAType':1, 'optInSlowDMAType':1, 'optInFastKPeriod':9, 'optInSlowKPeriod':3 }, 'EMAshort': { 'optInTimePeriod':9 }, 'MACD': { 'optInSignalPeriod':9, 'optInSlowPeriod':26, 'optInFastPeriod':12 }, 'RSI': { 'optInTimePeriod':14 }",shorter period
USD,RCN,bitfinex,bestone,-94.32,-1.63,-584,-0.99,-63.33,-30.99,105,1.81,11,41,21.15,0.32,0.04,-0.43,-0.05,809.23,10,70,58,2018-03-28 23:13:08,2018-01-26 02:00:00,2018-03-25 23:27:00,38.04,"'EMAlong': { 'optInTimePeriod':21 }, 'EMAshort': { 'optInTimePeriod':9 }, 'STOCH': { 'optInSlowDMAType':1, 'optInFastKPeriod':9, 'optInSlowKMAType':1, 'optInSlowDPeriod':3, 'optInSlowKPeriod':3 }, 'RSI': { 'optInTimePeriod':14 }, 'MACD': { 'optInFastPeriod':12, 'optInSlowPeriod':26, 'optInSignalPeriod':9 }, 'thresholds': { 'RSIlow':30, 'MACDhigh':0, 'RSIhigh':70, 'persistance':1, 'MACDlow':0 }",shorter period
USD,RRT,bitfinex,bestone,-84.23,-1.36,-494,-1.51,-69.56,-14.67,83,1.34,7,34,17.07,0.22,0.09,-0.35,-0.08,828.54,10,70,62,2018-03-28 23:13:08,2017-12-19 19:20:00,2018-02-19 23:24:00,43.53,"'RSI': { 'optInTimePeriod':14 }, 'MACD': { 'optInSlowPeriod':26, 'optInSignalPeriod':9, 'optInFastPeriod':12 }, 'EMAshort': { 'optInTimePeriod':9 }, 'STOCH': { 'optInSlowKPeriod':3, 'optInFastKPeriod':9, 'optInSlowDMAType':1, 'optInSlowKMAType':1, 'optInSlowDPeriod':3 }, 'EMAlong': { 'optInTimePeriod':21 }, 'thresholds': { 'persistance':1, 'RSIhigh':70, 'MACDlow':0, 'MACDhigh':0, 'RSIlow':30 }",shorter period
USD,SAN,bitfinex,bestone,-82.28,-1.35,-492,-1.01,-53.99,-28.29,61,1,4,26,13.33,0.77,0.28,-0.62,-0.14,1180.33,10,70,61,2018-03-28 23:13:08,2017-12-11 23:07:00,2018-02-10 23:58:00,44.19,"'EMAlong': { 'optInTimePeriod':21 }, 'EMAshort': { 'optInTimePeriod':9 }, 'STOCH': { 'optInSlowKPeriod':3, 'optInSlowKMAType':1, 'optInSlowDPeriod':3, 'optInFastKPeriod':9, 'optInSlowDMAType':1 }, 'RSI': { 'optInTimePeriod':14 }, 'MACD': { 'optInFastPeriod':12, 'optInSignalPeriod':9, 'optInSlowPeriod':26 }, 'thresholds': { 'MACDlow':0, 'RSIhigh':70, 'persistance':1, 'RSIlow':30, 'MACDhigh':0 }",shorter period
USDT,BTC,binance,bestone,-47.96,-0.79,-282,-1.4,-35.4,-12.57,60,0.98,9,20,31.03,0.28,0.1,-0.27,-0.11,1176.9,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,21.96,"'thresholds': { 'MACDhigh':0, 'RSIhigh':70, 'persistance':1, 'MACDlow':0, 'RSIlow':30 }, 'STOCH': { 'optInSlowDPeriod':3, 'optInSlowDMAType':1, 'optInSlowKMAType':1, 'optInSlowKPeriod':3, 'optInFastKPeriod':9 }, 'MACD': { 'optInFastPeriod':12, 'optInSignalPeriod':9, 'optInSlowPeriod':26 }, 'EMAshort': { 'optInTimePeriod':9 }, 'RSI': { 'optInTimePeriod':14 }, 'EMAlong': { 'optInTimePeriod':21 }",shorter period
USDT,ETH,binance,bestone,-9.47,-0.16,-56,-0.69,66.89,-76.36,62,1.03,11,20,35.48,0.49,0.33,-0.38,-0.13,1355.81,10,70,60,2018-03-27 17:33:08,2017-12-12 00:00:00,2018-02-10 23:59:00,22.93,"'thresholds': { 'RSIhigh':70, 'persistance':1, 'MACDlow':0, 'RSIlow':30, 'MACDhigh':0 }, 'STOCH': { 'optInSlowKPeriod':3, 'optInFastKPeriod':9, 'optInSlowDMAType':1, 'optInSlowDPeriod':3, 'optInSlowKMAType':1 }, 'EMAshort': { 'optInTimePeriod':9 }, 'MACD': { 'optInSignalPeriod':9, 'optInSlowPeriod':26, 'optInFastPeriod':12 }, 'RSI': { 'optInTimePeriod':14 }, 'EMAlong': { 'optInTimePeriod':21 }",shorter period
USDT,LTC,binance,bestone,-13.48,-0.22,-79,-0.43,-34.44,20.96,49,0.8,10,14,41.67,0.97,0.14,-0.59,-0.12,1477.92,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,22.22,"'RSI': { 'optInTimePeriod':14 }, 'EMAlong': { 'optInTimePeriod':21 }, 'MACD': { 'optInSlowPeriod':26, 'optInSignalPeriod':9, 'optInFastPeriod':12 }, 'EMAshort': { 'optInTimePeriod':9 }, 'STOCH': { 'optInSlowKPeriod':3, 'optInFastKPeriod':9, 'optInSlowDMAType':1, 'optInSlowDPeriod':3, 'optInSlowKMAType':1 }, 'thresholds': { 'MACDhigh':0, 'RSIhigh':70, 'MACDlow':0, 'persistance':1, 'RSIlow':30 }",shorter period
USDT,NEO,binance,bestone,16.04,0.26,94,-0.25,96.24,-80.21,52,0.85,10,15,40,1.28,0.42,-0.63,-0.23,1924.4,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,26.97,"'STOCH': { 'optInFastKPeriod':9, 'optInSlowKPeriod':3, 'optInSlowKMAType':1, 'optInSlowDPeriod':3, 'optInSlowDMAType':1 }, 'thresholds': { 'RSIhigh':70, 'MACDlow':0, 'persistance':1, 'RSIlow':30, 'MACDhigh':0 }, 'RSI': { 'optInTimePeriod':14 }, 'EMAlong': { 'optInTimePeriod':21 }, 'MACD': { 'optInSignalPeriod':9, 'optInSlowPeriod':26, 'optInFastPeriod':12 }, 'EMAshort': { 'optInTimePeriod':9 }",shorter period
USDT,NXT,poloniex,bestone,-60.27,-1.06,-379,-1.39,-54.67,-5.61,53,0.93,7,19,26.92,0.25,0.06,-0.33,-0.1,1345.38,10,70,57,2018-03-28 23:13:08,2018-01-27 00:00:00,2018-03-25 23:53:00,26.64,"'thresholds': { 'MACDhigh':0, 'RSIlow':30, 'RSIhigh':70, 'persistance':1, 'MACDlow':0 }, 'EMAshort': { 'optInTimePeriod':9 }, 'STOCH': { 'optInSlowDPeriod':3, 'optInSlowKMAType':1, 'optInSlowDMAType':1, 'optInFastKPeriod':9, 'optInSlowKPeriod':3 }, 'EMAlong': { 'optInTimePeriod':21 }, 'MACD': { 'optInSignalPeriod':9, 'optInSlowPeriod':26, 'optInFastPeriod':12 }, 'RSI': { 'optInTimePeriod':14 }",shorter period
BNB,ADX,binance,BodhiDI_public,-99.96,-1.64,-588,-1.31,-46.18,-53.78,557,9.13,24,254,8.63,0.54,0.05,-0.43,0,181.51,10,70,61,2018-03-27 17:33:08,2017-12-20 00:03:00,2018-02-19 23:58:00,47.35,"'diminus':23, 'optInTimePeriod':14, 'diplus':23.5",shorter period
BNB,CND,binance,BodhiDI_public,-98.98,-1.65,-592,-0.5,127.38,-226.36,406,6.77,26,176,12.87,0.28,0.02,-0.64,0,221.83,10,70,60,2018-03-27 17:33:08,2017-12-12 00:00:00,2018-02-10 23:55:00,49.72,"'diplus':23.5, 'optInTimePeriod':14, 'diminus':23",shorter period
BNB,GTO,binance,BodhiDI_public,-99.92,-1.64,-588,-1.11,-17.85,-82.07,638,10.46,21,297,6.6,0.42,0.02,-0.3,0,162.2,10,70,61,2018-03-27 17:33:08,2017-12-20 00:01:00,2018-02-19 23:58:00,24.6,"'diminus':23, 'optInTimePeriod':14, 'diplus':23.5",shorter period
BNB,NEBL,binance,BodhiDI_public,-99.98,-1.75,-629,-2.81,-37.68,-62.31,811,14.23,18,387,4.44,0.25,0.01,-0.39,0,115.09,10,70,57,2018-03-27 17:33:08,2018-01-27 00:03:00,2018-03-25 23:58:00,16.74,"'diplus':23.5, 'optInTimePeriod':14, 'diminus':23",shorter period
BNB,NULS,binance,BodhiDI_public,-99.85,-1.75,-628,-1.7,-35.94,-63.91,653,11.46,24,302,7.36,0.25,0.03,-0.23,0,148.65,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:58:00,16.63,"'diminus':23, 'optInTimePeriod':14, 'diplus':23.5",shorter period
BNB,OST,binance,BodhiDI_public,-100,-1.64,-589,-1.08,-57.63,-42.37,768,12.59,1,382,0.26,0.02,0.02,-0.64,0,141.1,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:53:00,25.15,"'diminus':23, 'optInTimePeriod':14, 'diplus':23.5",shorter period
BNB,WTC,binance,BodhiDI_public,-99.87,-1.75,-628,-2.52,-61.73,-38.14,681,11.95,22,318,6.47,0.22,0.02,-0.19,0,125.97,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:54:00,24.05,"'optInTimePeriod':14, 'diplus':23.5, 'diminus':23",shorter period
BNB,XLM,binance,BodhiDI_public,-97.3,-1.6,-573,-0.71,-8.98,-88.33,291,4.77,21,124,14.48,0.27,0.01,-1.1,0,346.83,10,70,61,2018-03-27 17:33:08,2017-12-20 00:02:00,2018-02-19 23:58:00,29.22,"'diplus':23.5, 'optInTimePeriod':14, 'diminus':23",shorter period
BTC,ADA,binance,BodhiDI_public,-94.69,-1.55,-557,-1.85,11.87,-106.56,485,7.95,37,205,15.29,0.47,0.03,-0.23,-0.01,148.06,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,24.43,"'diminus':23, 'diplus':23.5, 'optInTimePeriod':14",shorter period
BTC,BNB,binance,BodhiDI_public,-71.53,-1.17,-421,-0.96,200.79,-272.31,284,4.66,32,109,22.7,0.94,0.12,-0.46,-0.04,258.72,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:59:00,32.99,"'diminus':23, 'diplus':23.5, 'optInTimePeriod':14",shorter period
BTC,BTM,poloniex,BodhiDI_public,-99.34,-1.74,-626,-2.13,-49.04,-50.3,507,8.89,17,236,6.72,0.26,0.01,-0.2,-0.01,132.69,10,70,57,2018-03-28 23:13:08,2018-01-27 00:56:00,2018-03-25 23:46:00,26.13,"'diplus':23.5, 'optInTimePeriod':14, 'diminus':23",shorter period
BTC,DGB,poloniex,BodhiDI_public,-65.34,-1.07,-384,-0.71,72.81,-138.14,256,4.2,33,95,25.78,2.67,0.09,-0.7,-0.09,275.63,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,23.7,"'diminus':23, 'optInTimePeriod':14, 'diplus':23.5",shorter period
BTC,ETC,binance,BodhiDI_public,-69.8,-1.14,-411,-1.18,59.31,-129.11,256,4.2,26,102,20.31,0.48,0.09,-0.18,-0.03,376.33,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,17.44,"'optInTimePeriod':14, 'diplus':23.5, 'diminus':23",shorter period
BTC,GAME,poloniex,BodhiDI_public,-85.64,-1.4,-504,-1.45,53.27,-138.91,401,6.57,50,150,25,0.62,0.06,-0.4,-0.02,197.4,10,70,61,2018-04-04 08:56:20,2017-12-20 00:00:00,2018-02-19 23:57:00,0,shorter period,
BTC,GAS,binance,BodhiDI_public,-72.8,-1.21,-435,-0.87,337.14,-409.94,329,5.48,47,117,28.66,0.83,0.09,-0.33,-0.05,267.44,10,70,60,2018-03-27 17:33:08,2017-12-12 00:01:00,2018-02-10 23:58:00,42.95,"'diminus':23, 'diplus':23.5, 'optInTimePeriod':14",shorter period
BTC,ICX,binance,BodhiDI_public,-65.98,-1.08,-388,-0.64,243.07,-309.05,325,5.33,42,120,25.93,2.32,0.19,-1.06,-0.09,258.15,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,31.7,"'diminus':23, 'optInTimePeriod':14, 'diplus':23.5",shorter period
BTC,OMG,binance,BodhiDI_public,-78.76,-1.29,-463,-1.49,50.87,-129.62,280,4.59,31,109,22.14,0.37,0.07,-0.19,-0.03,346.43,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,15.52,"'diplus':23.5, 'optInTimePeriod':14, 'diminus':23",shorter period
BTC,STR,poloniex,BodhiDI_public,-79.46,-1.39,-500,-2.21,-50.01,-29.45,248,4.35,19,104,15.45,0.34,0.04,-0.16,-0.03,308.54,10,70,57,2018-03-28 23:13:08,2018-01-27 00:00:00,2018-03-25 23:58:00,22.09,"'diminus':23, 'optInTimePeriod':14, 'diplus':23.5",shorter period
BTC,VEN,binance,BodhiDI_public,-83.03,-1.36,-489,-0.9,619.61,-702.64,377,6.18,47,141,25,0.81,0.06,-0.33,-0.03,240.05,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,47.55,"'diminus':23, 'optInTimePeriod':14, 'diplus':23.5",shorter period
BTC,XRP,binance,BodhiDI_public,-77.98,-1.28,-459,-1.04,133.4,-211.38,388,6.36,35,159,18.04,1.14,0.23,-0.4,-0.04,214.85,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:59:00,25.81,"'diplus':23.5, 'optInTimePeriod':14, 'diminus':23",shorter period
BTC,ZEC,binance,BodhiDI_public,-72.26,-1.18,-425,-1.07,24.38,-96.64,232,3.8,24,92,20.69,1.04,0.07,-0.24,-0.04,355.86,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,13.05,"'optInTimePeriod':14, 'diplus':23.5, 'diminus':23",shorter period
ETH,AST,binance,BodhiDI_public,-92.71,-1.63,-583,-1.46,-34.89,-57.82,412,7.23,43,163,20.87,0.23,0.02,-0.39,-0.01,251.75,10,70,57,2018-03-27 17:33:08,2018-01-27 00:03:00,2018-03-25 23:58:00,30.62,"'diminus':23, 'diplus':23.5, 'optInTimePeriod':14",shorter period
ETH,EOS,binance,BodhiDI_public,-69.47,-1.14,-409,-1.39,-29.24,-40.23,306,5.02,35,117,23.03,0.65,0.04,-0.49,-0.03,159.93,10,70,61,2018-04-04 08:56:20,2017-12-20 00:00:00,2018-02-19 23:58:00,0,shorter period,
ETH,FUEL,binance,BodhiDI_public,-98.85,-1.73,-622,-2.47,-28.59,-70.26,531,9.32,21,244,7.92,0.32,0.02,-0.23,0,177.81,10,70,57,2018-03-27 17:33:08,2018-01-27 00:01:00,2018-03-25 23:58:00,15.31,"'diminus':23, 'optInTimePeriod':14, 'diplus':23.5",shorter period
ETH,ICN,kraken,BodhiDI_public,-99.29,-1.63,-584,-1.94,-26.29,-73,596,9.77,35,263,11.74,0.27,0.03,-0.19,0,140.6,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,24.75,"'diplus':23.5, 'optInTimePeriod':14, 'diminus':23",shorter period
ETH,QTUM,binance,BodhiDI_public,-92.85,-1.55,-555,-0.87,32.4,-125.24,300,5,29,120,19.46,1.65,0.04,-0.49,-0.03,296.31,10,70,60,2018-04-04 08:56:20,2017-12-12 00:01:00,2018-02-10 23:58:00,0,1,shorter period
ETH,VIB,binance,BodhiDI_public,-98.08,-1.72,-617,-1.72,12.57,-110.64,581,10.19,23,267,7.93,1.46,0.02,-0.48,-0.01,158.45,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:58:00,15.12,"'diplus':23.5, 'optInTimePeriod':14, 'diminus':23",shorter period
ETH,XVG,binance,BodhiDI_public,-78.18,-1.3,-468,-0.28,294.2,-372.38,359,5.98,39,140,21.79,9.66,0.17,-3.78,-0.08,260.61,10,70,60,2018-04-04 08:56:20,2017-12-12 00:02:00,2018-02-10 23:58:00,0,shorter period,
EUR,XMR,kraken,BodhiDI_public,-90.7,-1.49,-534,-1.69,-18.23,-72.46,511,8.38,54,201,21.18,0.35,0.04,-0.24,-0.02,171.06,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,20.52,"'diplus':23.5, 'optInTimePeriod':14, 'diminus':23",shorter period
USD,AVT,bitfinex,BodhiDI_public,-99.52,-1.72,-623,-2.08,-63.47,-36.05,465,8.02,21,211,9.05,0.13,0.02,-0.33,-0.01,148.06,10,70,58,2018-03-28 23:13:08,2018-01-26 13:30:00,2018-03-25 19:58:00,36.29,"'optInTimePeriod':14, 'diplus':23.5, 'diminus':23",shorter period
USD,DAT,bitfinex,BodhiDI_public,-99.86,-1.61,-588,-1.7,-50.35,-49.51,740,11.94,28,342,7.57,0.26,0.02,-0.52,0,89.35,10,70,62,2018-03-28 23:13:08,2017-12-19 23:17:00,2018-02-19 23:56:00,36.88,"'diminus':23, 'optInTimePeriod':14, 'diplus':23.5",shorter period
USD,ETP,bitfinex,BodhiDI_public,-99.83,-1.61,-587,-1.71,-50.35,-49.48,790,12.74,26,369,6.58,0.32,0.02,-0.24,0,92.35,10,70,62,2018-03-28 23:13:08,2017-12-19 22:55:00,2018-02-19 23:43:00,35.1,"'optInTimePeriod':14, 'diplus':23.5, 'diminus':23",shorter period
USD,RCN,bitfinex,BodhiDI_public,-99.93,-1.72,-619,-1.4,-63.33,-36.59,450,7.76,20,204,8.93,0.13,0.03,-0.46,0,185,10,70,58,2018-03-28 23:13:08,2018-01-26 02:00:00,2018-03-25 23:27:00,38.04,"'optInTimePeriod':14, 'diplus':23.5, 'diminus':23",shorter period
USD,RRT,bitfinex,BodhiDI_public,-99.58,-1.61,-585,-1.61,-69.56,-30.02,509,8.21,19,235,7.48,0.14,0.02,-0.41,0,94.49,10,70,62,2018-03-28 23:13:08,2017-12-19 19:20:00,2018-02-19 23:24:00,43.53,"'optInTimePeriod':14, 'diplus':23.5, 'diminus':23",shorter period
USD,SAN,bitfinex,BodhiDI_public,-99.8,-1.64,-597,-1.07,-53.99,-45.81,740,12.13,35,334,9.49,1.02,0.03,-0.24,0,95.77,10,70,61,2018-03-28 23:13:08,2017-12-11 23:07:00,2018-02-10 23:58:00,44.19,"'diminus':23, 'diplus':23.5, 'optInTimePeriod':14",shorter period
USDT,BTC,binance,BodhiDI_public,-87.47,-1.43,-515,-1.97,-35.4,-52.08,333,5.46,34,132,20.48,0.18,0.03,-0.22,-0.02,219.16,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,21.96,"'diminus':23, 'diplus':23.5, 'optInTimePeriod':14",shorter period
USDT,ETH,binance,BodhiDI_public,-90.24,-1.5,-540,-1.81,66.89,-157.13,378,6.3,47,141,25,0.2,0.03,-0.22,-0.02,192.71,10,70,60,2018-03-27 17:33:08,2017-12-12 00:00:00,2018-02-10 23:59:00,22.93,"'diminus':23, 'optInTimePeriod':14, 'diplus':23.5",shorter period
USDT,LTC,binance,BodhiDI_public,-88.19,-1.45,-519,-1.31,-34.44,-53.75,370,6.07,38,147,20.54,0.24,0.03,-0.24,-0.01,214.05,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,22.22,"'diminus':23, 'diplus':23.5, 'optInTimePeriod':14",shorter period
USDT,NEO,binance,BodhiDI_public,-90.67,-1.49,-534,-1.03,96.24,-186.91,423,6.93,53,158,25.12,0.32,0.03,-0.54,-0.02,192.13,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,26.97,"'optInTimePeriod':14, 'diplus':23.5, 'diminus':23",shorter period
USDT,NXT,poloniex,BodhiDI_public,-98.81,-1.73,-622,-2.16,-54.67,-44.14,601,10.54,32,268,10.67,0.16,0.02,-0.18,0,119.87,10,70,57,2018-03-28 23:13:08,2018-01-27 00:00:00,2018-03-25 23:53:00,26.64,"'diplus':23.5, 'optInTimePeriod':14, 'diminus':23",shorter period
BNB,ADX,binance,bryanbeck,-44.32,-0.73,-261,-1,-46.18,1.85,616,10.1,153,155,49.68,1.42,0.06,-2.79,-0.03,86.07,10,70,61,2018-03-27 17:33:08,2017-12-20 00:03:00,2018-02-19 23:58:00,47.35,"'sellIfVol':'increase', 'tradeFactors':'price', 'changeType':'#', 'priceType':'open/close', 'nextActionSell':'no', 'buyPricePersistenceThreshold':3, 'buyImmediately':'no', 'buyVolPersistenceThreshold':3, 'sellPricePersistenceThreshold':2, 'nextActionBuy':'yes', 'priceProtection':'disabled', 'sellVolPersistenceThreshold':2, 'thresholds': { 'tradeVolIncreaseAmt':2e-05, 'sellPriceThreshold':5660, 'priceIncreaseAmt':2e-05, 'tradeVolDecreasePer':1e-06, 'priceDecreasePer':1e-06, 'buyPriceThreshold':5650, 'tradeVolDecreaseAmt':1e-05, 'tradeVolIncreasePer':1e-06, 'priceIncreasePer':1e-06, 'priceDecreaseAmt':1e-05 }, 'sellIfPrice':'increase', 'buyIfPrice':'decrease', 'buyIfVol':'decrease'",shorter period
BNB,CND,binance,bryanbeck,-33.85,-0.56,-202,-1.08,127.38,-161.23,636,10.6,181,137,56.92,0.49,0.08,-0.8,-0.07,84.53,10,70,60,2018-03-27 17:33:08,2017-12-12 00:00:00,2018-02-10 23:55:00,49.72,"'buyIfVol':'decrease', 'sellPricePersistenceThreshold':2, 'nextActionBuy':'yes', 'priceProtection':'disabled', 'sellVolPersistenceThreshold':2, 'thresholds': { 'tradeVolDecreasePer':1e-06, 'priceIncreaseAmt':2e-05, 'sellPriceThreshold':5660, 'tradeVolIncreaseAmt':2e-05, 'priceDecreaseAmt':1e-05, 'priceIncreasePer':1e-06, 'tradeVolIncreasePer':1e-06, 'tradeVolDecreaseAmt':1e-05, 'buyPriceThreshold':5650, 'priceDecreasePer':1e-06 }, 'sellIfPrice':'increase', 'buyIfPrice':'decrease', 'changeType':'#', 'nextActionSell':'no', 'priceType':'open/close', 'buyPricePersistenceThreshold':3, 'buyVolPersistenceThreshold':3, 'buyImmediately':'no', 'sellIfVol':'increase', 'tradeFactors':'price'",shorter period
BNB,GTO,binance,bryanbeck,-41.06,-0.67,-241,-1,-17.85,-23.21,484,7.93,129,113,53.31,1.85,0.09,-0.71,-0.08,119.59,10,70,61,2018-03-27 17:33:08,2017-12-20 00:01:00,2018-02-19 23:58:00,24.6,"'buyPricePersistenceThreshold':3, 'changeType':'#', 'nextActionSell':'no', 'priceType':'open/close', 'buyVolPersistenceThreshold':3, 'buyImmediately':'no', 'tradeFactors':'price', 'sellIfVol':'increase', 'buyIfVol':'decrease', 'sellVolPersistenceThreshold':2, 'priceProtection':'disabled', 'nextActionBuy':'yes', 'sellPricePersistenceThreshold':2, 'buyIfPrice':'decrease', 'sellIfPrice':'increase', 'thresholds': { 'tradeVolIncreaseAmt':2e-05, 'sellPriceThreshold':5660, 'priceIncreaseAmt':2e-05, 'tradeVolDecreasePer':1e-06, 'priceDecreasePer':1e-06, 'buyPriceThreshold':5650, 'tradeVolDecreaseAmt':1e-05, 'tradeVolIncreasePer':1e-06, 'priceIncreasePer':1e-06, 'priceDecreaseAmt':1e-05 }",shorter period
BNB,NEBL,binance,bryanbeck,-25.53,-0.45,-160,-1.58,-37.68,12.15,382,6.7,104,87,54.45,0.51,0.07,-0.48,-0.04,112.2,10,70,57,2018-03-27 17:33:08,2018-01-27 00:03:00,2018-03-25 23:58:00,16.74,"'buyPricePersistenceThreshold':3, 'priceType':'open/close', 'changeType':'#', 'nextActionSell':'no', 'buyImmediately':'no', 'buyVolPersistenceThreshold':3, 'tradeFactors':'price', 'sellIfVol':'increase', 'buyIfVol':'decrease', 'sellVolPersistenceThreshold':2, 'sellPricePersistenceThreshold':2, 'nextActionBuy':'yes', 'priceProtection':'disabled', 'sellIfPrice':'increase', 'buyIfPrice':'decrease', 'thresholds': { 'sellPriceThreshold':5660, 'tradeVolIncreaseAmt':2e-05, 'tradeVolDecreasePer':1e-06, 'priceIncreaseAmt':2e-05, 'tradeVolIncreasePer':1e-06, 'tradeVolDecreaseAmt':1e-05, 'buyPriceThreshold':5650, 'priceDecreasePer':1e-06, 'priceDecreaseAmt':1e-05, 'priceIncreasePer':1e-06 }",shorter period
BNB,NULS,binance,bryanbeck,-67.39,-1.18,-424,-1.88,-35.94,-31.44,372,6.53,92,94,49.46,0.19,0.04,-0.4,-0.03,116.56,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:58:00,16.63,"'sellPricePersistenceThreshold':2, 'nextActionBuy':'yes', 'priceProtection':'disabled', 'sellVolPersistenceThreshold':2, 'thresholds': { 'tradeVolIncreasePer':1e-06, 'tradeVolDecreaseAmt':1e-05, 'priceDecreasePer':1e-06, 'buyPriceThreshold':5650, 'priceDecreaseAmt':1e-05, 'priceIncreasePer':1e-06, 'tradeVolIncreaseAmt':2e-05, 'sellPriceThreshold':5660, 'tradeVolDecreasePer':1e-06, 'priceIncreaseAmt':2e-05 }, 'sellIfPrice':'increase', 'buyIfPrice':'decrease', 'buyIfVol':'decrease', 'sellIfVol':'increase', 'tradeFactors':'price', 'changeType':'#', 'nextActionSell':'no', 'priceType':'open/close', 'buyPricePersistenceThreshold':3, 'buyImmediately':'no', 'buyVolPersistenceThreshold':3",shorter period
BNB,OST,binance,bryanbeck,241.05,3.95,1420,-0.66,-57.63,298.68,381,6.25,125,65,65.79,1.98,0.31,-1.89,-0.28,117.58,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:53:00,25.15,"'nextActionSell':'no', 'priceType':'open/close', 'changeType':'#', 'buyPricePersistenceThreshold':3, 'buyVolPersistenceThreshold':3, 'buyImmediately':'no', 'sellIfVol':'increase', 'tradeFactors':'price', 'buyIfVol':'decrease', 'nextActionBuy':'yes', 'priceProtection':'disabled', 'sellPricePersistenceThreshold':2, 'sellVolPersistenceThreshold':2, 'thresholds': { 'priceIncreaseAmt':2e-05, 'tradeVolDecreasePer':1e-06, 'tradeVolIncreaseAmt':2e-05, 'sellPriceThreshold':5660, 'priceDecreaseAmt':1e-05, 'priceIncreasePer':1e-06, 'buyPriceThreshold':5650, 'priceDecreasePer':1e-06, 'tradeVolIncreasePer':1e-06, 'tradeVolDecreaseAmt':1e-05 }, 'buyIfPrice':'decrease', 'sellIfPrice':'increase'",shorter period
BNB,WTC,binance,bryanbeck,-74.89,-1.31,-471,-1.64,-61.73,-13.16,429,7.53,91,123,42.52,0.31,0.03,-0.36,-0.01,94.07,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:54:00,24.05,"'buyVolPersistenceThreshold':3, 'buyImmediately':'no', 'changeType':'#', 'priceType':'open/close', 'nextActionSell':'no', 'buyPricePersistenceThreshold':3, 'sellIfVol':'increase', 'tradeFactors':'price', 'buyIfVol':'decrease', 'thresholds': { 'sellPriceThreshold':5660, 'tradeVolIncreaseAmt':2e-05, 'tradeVolDecreasePer':1e-06, 'priceIncreaseAmt':2e-05, 'tradeVolIncreasePer':1e-06, 'tradeVolDecreaseAmt':1e-05, 'buyPriceThreshold':5650, 'priceDecreasePer':1e-06, 'priceDecreaseAmt':1e-05, 'priceIncreasePer':1e-06 }, 'sellIfPrice':'increase', 'buyIfPrice':'decrease', 'sellPricePersistenceThreshold':2, 'nextActionBuy':'yes', 'priceProtection':'disabled', 'sellVolPersistenceThreshold':2",shorter period
BNB,XLM,binance,bryanbeck,-16.72,-0.27,-98,-1.13,-8.98,-7.74,684,11.21,187,155,54.68,3.11,0.11,-1.63,-0.08,78.83,10,70,61,2018-03-27 17:33:08,2017-12-20 00:02:00,2018-02-19 23:58:00,29.22,"'sellIfVol':'increase', 'tradeFactors':'price', 'buyVolPersistenceThreshold':3, 'buyImmediately':'no', 'changeType':'#', 'nextActionSell':'no', 'priceType':'open/close', 'buyPricePersistenceThreshold':3, 'thresholds': { 'priceIncreaseAmt':2e-05, 'tradeVolDecreasePer':1e-06, 'tradeVolIncreaseAmt':2e-05, 'sellPriceThreshold':5660, 'priceDecreaseAmt':1e-05, 'priceIncreasePer':1e-06, 'priceDecreasePer':1e-06, 'buyPriceThreshold':5650, 'tradeVolIncreasePer':1e-06, 'tradeVolDecreaseAmt':1e-05 }, 'buyIfPrice':'decrease', 'sellIfPrice':'increase', 'sellPricePersistenceThreshold':2, 'nextActionBuy':'yes', 'priceProtection':'disabled', 'sellVolPersistenceThreshold':2, 'buyIfVol':'decrease'",shorter period
BTC,ADA,binance,bryanbeck,0,0,0,0,11.87,-11.87,0,0,0,0,-1,,n/a,,n/a,n/a,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,24.43,"'buyVolPersistenceThreshold':3, 'buyImmediately':'no', 'buyPricePersistenceThreshold':3, 'priceType':'open/close', 'nextActionSell':'no', 'changeType':'#', 'tradeFactors':'price', 'sellIfVol':'increase', 'buyIfVol':'decrease', 'sellIfPrice':'increase', 'buyIfPrice':'decrease', 'thresholds': { 'priceDecreasePer':1e-06, 'buyPriceThreshold':5650, 'tradeVolDecreaseAmt':1e-05, 'tradeVolIncreasePer':1e-06, 'priceIncreasePer':1e-06, 'priceDecreaseAmt':1e-05, 'tradeVolIncreaseAmt':2e-05, 'sellPriceThreshold':5660, 'priceIncreaseAmt':2e-05, 'tradeVolDecreasePer':1e-06 }, 'sellVolPersistenceThreshold':2, 'nextActionBuy':'yes', 'priceProtection':'disabled', 'sellPricePersistenceThreshold':2",shorter period
BTC,BNB,binance,bryanbeck,34.73,0.57,204,-0.11,200.79,-166.05,30,0.49,8,7,53.33,2.07,0.38,-1.68,-0.31,1176.67,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:59:00,32.99,"'sellIfVol':'increase', 'tradeFactors':'price', 'buyImmediately':'no', 'buyVolPersistenceThreshold':3, 'changeType':'#', 'priceType':'open/close', 'nextActionSell':'no', 'buyPricePersistenceThreshold':3, 'thresholds': { 'priceIncreaseAmt':2e-05, 'tradeVolDecreasePer':1e-06, 'tradeVolIncreaseAmt':2e-05, 'sellPriceThreshold':5660, 'priceIncreasePer':1e-06, 'priceDecreaseAmt':1e-05, 'priceDecreasePer':1e-06, 'buyPriceThreshold':5650, 'tradeVolDecreaseAmt':1e-05, 'tradeVolIncreasePer':1e-06 }, 'sellIfPrice':'increase', 'buyIfPrice':'decrease', 'nextActionBuy':'yes', 'priceProtection':'disabled', 'sellPricePersistenceThreshold':2, 'sellVolPersistenceThreshold':2, 'buyIfVol':'decrease'",shorter period
BTC,BTM,poloniex,bryanbeck,0,0,0,0,-49.04,49.04,0,0,0,0,-1,,n/a,,n/a,n/a,10,70,57,2018-03-28 23:13:08,2018-01-27 00:56:00,2018-03-25 23:46:00,26.13,"'sellPricePersistenceThreshold':2, 'buyPricePersistenceThreshold':3, 'nextActionSell':'no', 'sellIfVol':'increase', 'sellVolPersistenceThreshold':2, 'buyVolPersistenceThreshold':3, 'priceType':'open/close', 'buyIfVol':'decrease', 'sellIfPrice':'increase', 'buyImmediately':'no', 'tradeFactors':'price', 'thresholds': { 'sellPriceThreshold':5660, 'tradeVolIncreasePer':1e-06, 'tradeVolDecreaseAmt':1e-05, 'priceIncreaseAmt':2e-05, 'buyPriceThreshold':5650, 'priceDecreasePer':1e-06, 'priceIncreasePer':1e-06, 'priceDecreaseAmt':1e-05, 'tradeVolIncreaseAmt':2e-05, 'tradeVolDecreasePer':1e-06 }, 'nextActionBuy':'yes', 'buyIfPrice':'decrease', 'changeType':'#', 'priceProtection':'disabled'",shorter period
BTC,DGB,poloniex,bryanbeck,0,0,0,0,72.81,-72.81,0,0,0,0,-1,,n/a,,n/a,n/a,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,23.7,"'changeType':'#', 'buyIfPrice':'decrease', 'priceProtection':'disabled', 'sellIfPrice':'increase', 'buyIfVol':'decrease', 'buyImmediately':'no', 'thresholds': { 'tradeVolDecreasePer':1e-06, 'priceDecreaseAmt':1e-05, 'tradeVolIncreaseAmt':2e-05, 'priceIncreaseAmt':2e-05, 'priceDecreasePer':1e-06, 'buyPriceThreshold':5650, 'priceIncreasePer':1e-06, 'sellPriceThreshold':5660, 'tradeVolIncreasePer':1e-06, 'tradeVolDecreaseAmt':1e-05 }, 'tradeFactors':'price', 'nextActionBuy':'yes', 'nextActionSell':'no', 'sellIfVol':'increase', 'sellVolPersistenceThreshold':2, 'priceType':'open/close', 'buyVolPersistenceThreshold':3, 'sellPricePersistenceThreshold':2, 'buyPricePersistenceThreshold':3",shorter period
BTC,ETC,binance,bryanbeck,-46.23,-0.76,-272,-1.01,59.31,-105.54,95,1.56,26,21,55.32,0.3,0.07,-0.79,-0.14,930.64,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,17.44,"'changeType':'#', 'nextActionSell':'no', 'priceType':'open/close', 'buyPricePersistenceThreshold':3, 'buyImmediately':'no', 'buyVolPersistenceThreshold':3, 'sellIfVol':'increase', 'tradeFactors':'price', 'buyIfVol':'decrease', 'sellPricePersistenceThreshold':2, 'nextActionBuy':'yes', 'priceProtection':'disabled', 'sellVolPersistenceThreshold':2, 'thresholds': { 'priceDecreaseAmt':1e-05, 'priceIncreasePer':1e-06, 'buyPriceThreshold':5650, 'priceDecreasePer':1e-06, 'tradeVolIncreasePer':1e-06, 'tradeVolDecreaseAmt':1e-05, 'priceIncreaseAmt':2e-05, 'tradeVolDecreasePer':1e-06, 'tradeVolIncreaseAmt':2e-05, 'sellPriceThreshold':5660 }, 'buyIfPrice':'decrease', 'sellIfPrice':'increase'",shorter period
BTC,GAME,poloniex,bryanbeck,13.19,0.22,77,Inf,53.27,-40.07,2,0.03,1,0,100,0.55,0.55,0.55,n/a,69170,10,70,61,2018-04-04 08:56:20,2017-12-20 00:00:00,2018-02-19 23:57:00,0,shorter period,
BTC,GAS,binance,bryanbeck,36.45,0.61,218,-0.7,337.14,-300.69,268,4.47,80,54,59.7,3.17,0.23,-0.99,-0.21,234.33,10,70,60,2018-03-27 17:33:08,2017-12-12 00:01:00,2018-02-10 23:58:00,42.95,"'buyVolPersistenceThreshold':3, 'buyImmediately':'no', 'priceType':'open/close', 'changeType':'#', 'nextActionSell':'no', 'buyPricePersistenceThreshold':3, 'sellIfVol':'increase', 'tradeFactors':'price', 'buyIfVol':'decrease', 'thresholds': { 'priceIncreasePer':1e-06, 'priceDecreaseAmt':1e-05, 'tradeVolDecreaseAmt':1e-05, 'tradeVolIncreasePer':1e-06, 'priceDecreasePer':1e-06, 'buyPriceThreshold':5650, 'tradeVolDecreasePer':1e-06, 'priceIncreaseAmt':2e-05, 'sellPriceThreshold':5660, 'tradeVolIncreaseAmt':2e-05 }, 'buyIfPrice':'decrease', 'sellIfPrice':'increase', 'sellPricePersistenceThreshold':2, 'nextActionBuy':'yes', 'priceProtection':'disabled', 'sellVolPersistenceThreshold':2",shorter period
BTC,ICX,binance,bryanbeck,5.4,0.09,31,0.44,243.07,-237.67,5,0.08,1,1,50,3.62,3.62,-2.14,-2.14,23095,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,31.7,"'buyIfVol':'decrease', 'thresholds': { 'priceIncreaseAmt':2e-05, 'tradeVolDecreasePer':1e-06, 'tradeVolIncreaseAmt':2e-05, 'sellPriceThreshold':5660, 'priceDecreaseAmt':1e-05, 'priceIncreasePer':1e-06, 'buyPriceThreshold':5650, 'priceDecreasePer':1e-06, 'tradeVolIncreasePer':1e-06, 'tradeVolDecreaseAmt':1e-05 }, 'buyIfPrice':'decrease', 'sellIfPrice':'increase', 'sellPricePersistenceThreshold':2, 'nextActionBuy':'yes', 'priceProtection':'disabled', 'sellVolPersistenceThreshold':2, 'buyImmediately':'no', 'buyVolPersistenceThreshold':3, 'changeType':'#', 'priceType':'open/close', 'nextActionSell':'no', 'buyPricePersistenceThreshold':3, 'sellIfVol':'increase', 'tradeFactors':'price'",shorter period
BTC,OMG,binance,bryanbeck,-23.8,-0.39,-140,-0.43,50.87,-74.67,27,0.44,5,8,38.46,1.35,0.18,-0.77,-0.27,3840.77,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,15.52,"'sellVolPersistenceThreshold':2, 'nextActionBuy':'yes', 'priceProtection':'disabled', 'sellPricePersistenceThreshold':2, 'sellIfPrice':'increase', 'buyIfPrice':'decrease', 'thresholds': { 'tradeVolDecreasePer':1e-06, 'priceIncreaseAmt':2e-05, 'sellPriceThreshold':5660, 'tradeVolIncreaseAmt':2e-05, 'priceIncreasePer':1e-06, 'priceDecreaseAmt':1e-05, 'tradeVolDecreaseAmt':1e-05, 'tradeVolIncreasePer':1e-06, 'priceDecreasePer':1e-06, 'buyPriceThreshold':5650 }, 'buyIfVol':'decrease', 'tradeFactors':'price', 'sellIfVol':'increase', 'buyPricePersistenceThreshold':3, 'nextActionSell':'no', 'priceType':'open/close', 'changeType':'#', 'buyImmediately':'no', 'buyVolPersistenceThreshold':3",shorter period
BTC,STR,poloniex,bryanbeck,0,0,0,0,-50.01,50.01,0,0,0,0,-1,,n/a,,n/a,n/a,10,70,57,2018-03-28 23:13:08,2018-01-27 00:00:00,2018-03-25 23:58:00,22.09,"'sellIfVol':'increase', 'nextActionSell':'no', 'priceType':'open/close', 'buyVolPersistenceThreshold':3, 'sellVolPersistenceThreshold':2, 'sellPricePersistenceThreshold':2, 'buyPricePersistenceThreshold':3, 'changeType':'#', 'buyIfPrice':'decrease', 'priceProtection':'disabled', 'buyImmediately':'no', 'sellIfPrice':'increase', 'buyIfVol':'decrease', 'nextActionBuy':'yes', 'thresholds': { 'tradeVolIncreaseAmt':2e-05, 'priceDecreaseAmt':1e-05, 'tradeVolDecreasePer':1e-06, 'tradeVolIncreasePer':1e-06, 'tradeVolDecreaseAmt':1e-05, 'sellPriceThreshold':5660, 'priceIncreasePer':1e-06, 'buyPriceThreshold':5650, 'priceDecreasePer':1e-06, 'priceIncreaseAmt':2e-05 }, 'tradeFactors':'price'",shorter period
BTC,VEN,binance,bryanbeck,25.14,0.41,148,Inf,619.61,-594.47,2,0.03,1,0,100,1.03,1.03,1.03,n/a,32240,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,47.55,"'buyIfVol':'decrease', 'thresholds': { 'priceIncreaseAmt':2e-05, 'tradeVolDecreasePer':1e-06, 'sellPriceThreshold':5660, 'tradeVolIncreaseAmt':2e-05, 'priceDecreaseAmt':1e-05, 'priceIncreasePer':1e-06, 'buyPriceThreshold':5650, 'priceDecreasePer':1e-06, 'tradeVolIncreasePer':1e-06, 'tradeVolDecreaseAmt':1e-05 }, 'sellIfPrice':'increase', 'buyIfPrice':'decrease', 'priceProtection':'disabled', 'nextActionBuy':'yes', 'sellPricePersistenceThreshold':2, 'sellVolPersistenceThreshold':2, 'buyVolPersistenceThreshold':3, 'buyImmediately':'no', 'changeType':'#', 'priceType':'open/close', 'nextActionSell':'no', 'buyPricePersistenceThreshold':3, 'sellIfVol':'increase', 'tradeFactors':'price'",shorter period
BTC,XRP,binance,bryanbeck,0,0,0,0,133.4,-133.4,0,0,0,0,-1,,n/a,,n/a,n/a,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:59:00,25.81,"'sellVolPersistenceThreshold':2, 'nextActionBuy':'yes', 'priceProtection':'disabled', 'sellPricePersistenceThreshold':2, 'buyIfPrice':'decrease', 'sellIfPrice':'increase', 'thresholds': { 'tradeVolDecreaseAmt':1e-05, 'tradeVolIncreasePer':1e-06, 'priceDecreasePer':1e-06, 'buyPriceThreshold':5650, 'priceIncreasePer':1e-06, 'priceDecreaseAmt':1e-05, 'tradeVolIncreaseAmt':2e-05, 'sellPriceThreshold':5660, 'tradeVolDecreasePer':1e-06, 'priceIncreaseAmt':2e-05 }, 'buyIfVol':'decrease', 'tradeFactors':'price', 'sellIfVol':'increase', 'buyPricePersistenceThreshold':3, 'priceType':'open/close', 'nextActionSell':'no', 'changeType':'#', 'buyImmediately':'no', 'buyVolPersistenceThreshold':3",shorter period
BTC,ZEC,binance,bryanbeck,-97.17,-1.59,-572,-3.36,24.38,-121.55,690,11.31,63,282,18.26,0.2,0.01,-0.25,0,88.38,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,13.05,"'nextActionSell':'no', 'priceType':'open/close', 'changeType':'#', 'buyPricePersistenceThreshold':3, 'buyVolPersistenceThreshold':3, 'buyImmediately':'no', 'sellIfVol':'increase', 'tradeFactors':'price', 'buyIfVol':'decrease', 'priceProtection':'disabled', 'nextActionBuy':'yes', 'sellPricePersistenceThreshold':2, 'sellVolPersistenceThreshold':2, 'thresholds': { 'tradeVolIncreasePer':1e-06, 'tradeVolDecreaseAmt':1e-05, 'buyPriceThreshold':5650, 'priceDecreasePer':1e-06, 'priceDecreaseAmt':1e-05, 'priceIncreasePer':1e-06, 'sellPriceThreshold':5660, 'tradeVolIncreaseAmt':2e-05, 'tradeVolDecreasePer':1e-06, 'priceIncreaseAmt':2e-05 }, 'sellIfPrice':'increase', 'buyIfPrice':'decrease'",shorter period
ETH,AST,binance,bryanbeck,-0.91,-0.02,-5,-2.01,-34.89,33.98,5,0.09,1,1,50,0.03,0.03,-0.32,-0.32,3855,10,70,57,2018-03-27 17:33:08,2018-01-27 00:03:00,2018-03-25 23:58:00,30.62,"'buyIfVol':'decrease', 'sellVolPersistenceThreshold':2, 'sellPricePersistenceThreshold':2, 'nextActionBuy':'yes', 'priceProtection':'disabled', 'buyIfPrice':'decrease', 'sellIfPrice':'increase', 'thresholds': { 'sellPriceThreshold':5660, 'tradeVolIncreaseAmt':2e-05, 'priceIncreaseAmt':2e-05, 'tradeVolDecreasePer':1e-06, 'buyPriceThreshold':5650, 'priceDecreasePer':1e-06, 'tradeVolIncreasePer':1e-06, 'tradeVolDecreaseAmt':1e-05, 'priceDecreaseAmt':1e-05, 'priceIncreasePer':1e-06 }, 'buyPricePersistenceThreshold':3, 'changeType':'#', 'nextActionSell':'no', 'priceType':'open/close', 'buyImmediately':'no', 'buyVolPersistenceThreshold':3, 'tradeFactors':'price', 'sellIfVol':'increase'",shorter period
ETH,EOS,binance,bryanbeck,-94.53,-1.55,-556,-2.43,-29.24,-65.29,453,7.43,48,178,21.24,0.24,0.02,-0.15,-0.01,143.67,10,70,61,2018-04-04 08:56:20,2017-12-20 00:00:00,2018-02-19 23:58:00,0,shorter period,
ETH,FUEL,binance,bryanbeck,0,0,0,0,-28.59,28.59,0,0,0,0,-1,,n/a,,n/a,n/a,10,70,57,2018-03-27 17:33:08,2018-01-27 00:01:00,2018-03-25 23:58:00,15.31,"'buyIfVol':'decrease', 'sellVolPersistenceThreshold':2, 'sellPricePersistenceThreshold':2, 'nextActionBuy':'yes', 'priceProtection':'disabled', 'buyIfPrice':'decrease', 'sellIfPrice':'increase', 'thresholds': { 'priceDecreasePer':1e-06, 'buyPriceThreshold':5650, 'tradeVolDecreaseAmt':1e-05, 'tradeVolIncreasePer':1e-06, 'priceIncreasePer':1e-06, 'priceDecreaseAmt':1e-05, 'tradeVolIncreaseAmt':2e-05, 'sellPriceThreshold':5660, 'priceIncreaseAmt':2e-05, 'tradeVolDecreasePer':1e-06 }, 'buyPricePersistenceThreshold':3, 'changeType':'#', 'priceType':'open/close', 'nextActionSell':'no', 'buyImmediately':'no', 'buyVolPersistenceThreshold':3, 'tradeFactors':'price', 'sellIfVol':'increase'",shorter period
ETH,ICN,kraken,bryanbeck,-23.26,-0.38,-137,-0.94,-26.29,3.03,126,2.07,38,25,60.32,0.41,0.07,-0.43,-0.11,674.13,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,24.75,"'sellVolPersistenceThreshold':2, 'buyVolPersistenceThreshold':3, 'priceType':'open/close', 'nextActionSell':'no', 'sellIfVol':'increase', 'buyPricePersistenceThreshold':3, 'sellPricePersistenceThreshold':2, 'priceProtection':'disabled', 'buyIfPrice':'decrease', 'changeType':'#', 'tradeFactors':'price', 'thresholds': { 'tradeVolIncreaseAmt':2e-05, 'priceDecreaseAmt':1e-05, 'tradeVolDecreasePer':1e-06, 'tradeVolDecreaseAmt':1e-05, 'tradeVolIncreasePer':1e-06, 'sellPriceThreshold':5660, 'priceIncreasePer':1e-06, 'buyPriceThreshold':5650, 'priceDecreasePer':1e-06, 'priceIncreaseAmt':2e-05 }, 'nextActionBuy':'yes', 'buyIfVol':'decrease', 'sellIfPrice':'increase', 'buyImmediately':'no'",shorter period
ETH,QTUM,binance,bryanbeck,-96.36,-1.61,-576,-2.2,32.4,-128.76,705,11.75,106,246,30.11,0.19,0.02,-0.27,0,79.46,10,70,60,2018-04-04 08:56:20,2017-12-12 00:01:00,2018-02-10 23:58:00,0,1,shorter period
ETH,VIB,binance,bryanbeck,-28.76,-0.5,-181,-Inf,12.57,-41.33,2,0.04,0,1,0,-1.13,n/a,-1.13,-1.13,8010,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:58:00,15.12,"'tradeFactors':'price', 'sellIfVol':'increase', 'buyPricePersistenceThreshold':3, 'priceType':'open/close', 'changeType':'#', 'nextActionSell':'no', 'buyImmediately':'no', 'buyVolPersistenceThreshold':3, 'sellVolPersistenceThreshold':2, 'sellPricePersistenceThreshold':2, 'priceProtection':'disabled', 'nextActionBuy':'yes', 'buyIfPrice':'decrease', 'sellIfPrice':'increase', 'thresholds': { 'priceDecreaseAmt':1e-05, 'priceIncreasePer':1e-06, 'priceDecreasePer':1e-06, 'buyPriceThreshold':5650, 'tradeVolIncreasePer':1e-06, 'tradeVolDecreaseAmt':1e-05, 'priceIncreaseAmt':2e-05, 'tradeVolDecreasePer':1e-06, 'tradeVolIncreaseAmt':2e-05, 'sellPriceThreshold':5660 }, 'buyIfVol':'decrease'",shorter period
ETH,XVG,binance,bryanbeck,-54.62,-0.91,-327,0,294.2,-348.82,1,0.02,0,0,-1,,n/a,,n/a,n/a,10,70,60,2018-04-04 08:56:20,2017-12-12 00:02:00,2018-02-10 23:58:00,0,shorter period,
EUR,XMR,kraken,bryanbeck,-99.16,-1.63,-584,-2.32,-18.23,-80.93,814,13.34,58,349,14.25,0.14,0.01,-0.55,0,62.85,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,20.52,"'changeType':'#', 'buyIfPrice':'decrease', 'priceProtection':'disabled', 'buyImmediately':'no', 'buyIfVol':'decrease', 'sellIfPrice':'increase', 'nextActionBuy':'yes', 'thresholds': { 'priceIncreaseAmt':2e-05, 'buyPriceThreshold':5650, 'priceDecreasePer':1e-06, 'priceIncreasePer':1e-06, 'sellPriceThreshold':5660, 'tradeVolIncreasePer':1e-06, 'tradeVolDecreaseAmt':1e-05, 'tradeVolDecreasePer':1e-06, 'priceDecreaseAmt':1e-05, 'tradeVolIncreaseAmt':2e-05 }, 'tradeFactors':'price', 'sellIfVol':'increase', 'nextActionSell':'no', 'priceType':'open/close', 'buyVolPersistenceThreshold':3, 'sellVolPersistenceThreshold':2, 'sellPricePersistenceThreshold':2, 'buyPricePersistenceThreshold':3",shorter period
USD,AVT,bitfinex,bryanbeck,-27.82,-0.48,-174,-1.23,-63.47,35.65,84,1.45,23,19,54.76,0.32,0.09,-0.54,-0.08,193.57,10,70,58,2018-03-28 23:13:08,2018-01-26 13:30:00,2018-03-25 19:58:00,36.29,"'buyVolPersistenceThreshold':3, 'priceType':'open/close', 'sellVolPersistenceThreshold':2, 'sellIfVol':'increase', 'nextActionSell':'no', 'buyPricePersistenceThreshold':3, 'sellPricePersistenceThreshold':2, 'priceProtection':'disabled', 'buyIfPrice':'decrease', 'changeType':'#', 'nextActionBuy':'yes', 'tradeFactors':'price', 'thresholds': { 'tradeVolDecreasePer':1e-06, 'tradeVolIncreaseAmt':2e-05, 'priceDecreaseAmt':1e-05, 'priceDecreasePer':1e-06, 'buyPriceThreshold':5650, 'priceIncreasePer':1e-06, 'priceIncreaseAmt':2e-05, 'tradeVolDecreaseAmt':1e-05, 'tradeVolIncreasePer':1e-06, 'sellPriceThreshold':5660 }, 'buyImmediately':'no', 'sellIfPrice':'increase', 'buyIfVol':'decrease'",shorter period
USD,DAT,bitfinex,bryanbeck,-89.86,-1.45,-529,-1.5,-50.35,-39.51,582,9.39,122,169,41.92,0.11,0.02,-0.48,-0.01,68.52,10,70,62,2018-03-28 23:13:08,2017-12-19 23:17:00,2018-02-19 23:56:00,36.88,"'buyPricePersistenceThreshold':3, 'sellPricePersistenceThreshold':2, 'sellVolPersistenceThreshold':2, 'buyVolPersistenceThreshold':3, 'priceType':'open/close', 'nextActionSell':'no', 'sellIfVol':'increase', 'tradeFactors':'price', 'thresholds': { 'priceIncreaseAmt':2e-05, 'buyPriceThreshold':5650, 'priceDecreasePer':1e-06, 'priceIncreasePer':1e-06, 'sellPriceThreshold':5660, 'tradeVolIncreasePer':1e-06, 'tradeVolDecreaseAmt':1e-05, 'tradeVolDecreasePer':1e-06, 'priceDecreaseAmt':1e-05, 'tradeVolIncreaseAmt':2e-05 }, 'nextActionBuy':'yes', 'buyIfVol':'decrease', 'sellIfPrice':'increase', 'buyImmediately':'no', 'priceProtection':'disabled', 'buyIfPrice':'decrease', 'changeType':'#'",shorter period
USD,ETP,bitfinex,bryanbeck,-84.6,-1.36,-498,-1.18,-50.35,-34.26,671,10.82,156,179,46.57,1.17,0.03,-0.69,-0.02,59.37,10,70,62,2018-03-28 23:13:08,2017-12-19 22:55:00,2018-02-19 23:43:00,35.1,"'sellPricePersistenceThreshold':2, 'buyPricePersistenceThreshold':3, 'nextActionSell':'no', 'sellIfVol':'increase', 'priceType':'open/close', 'buyVolPersistenceThreshold':3, 'sellVolPersistenceThreshold':2, 'buyImmediately':'no', 'buyIfVol':'decrease', 'sellIfPrice':'increase', 'nextActionBuy':'yes', 'thresholds': { 'priceIncreaseAmt':2e-05, 'priceDecreasePer':1e-06, 'buyPriceThreshold':5650, 'priceIncreasePer':1e-06, 'sellPriceThreshold':5660, 'tradeVolDecreaseAmt':1e-05, 'tradeVolIncreasePer':1e-06, 'tradeVolDecreasePer':1e-06, 'priceDecreaseAmt':1e-05, 'tradeVolIncreaseAmt':2e-05 }, 'tradeFactors':'price', 'changeType':'#', 'buyIfPrice':'decrease', 'priceProtection':'disabled'",shorter period
USD,RCN,bitfinex,bryanbeck,-0.55,-0.01,-3,-0.88,-63.33,62.79,32,0.55,8,8,50,0.3,0.2,-0.48,-0.15,551.88,10,70,58,2018-03-28 23:13:08,2018-01-26 02:00:00,2018-03-25 23:27:00,38.04,"'sellIfVol':'increase', 'nextActionSell':'no', 'priceType':'open/close', 'buyVolPersistenceThreshold':3, 'sellVolPersistenceThreshold':2, 'sellPricePersistenceThreshold':2, 'buyPricePersistenceThreshold':3, 'changeType':'#', 'buyIfPrice':'decrease', 'priceProtection':'disabled', 'buyImmediately':'no', 'sellIfPrice':'increase', 'buyIfVol':'decrease', 'nextActionBuy':'yes', 'thresholds': { 'priceDecreasePer':1e-06, 'buyPriceThreshold':5650, 'priceIncreasePer':1e-06, 'priceIncreaseAmt':2e-05, 'tradeVolDecreaseAmt':1e-05, 'tradeVolIncreasePer':1e-06, 'sellPriceThreshold':5660, 'tradeVolDecreasePer':1e-06, 'tradeVolIncreaseAmt':2e-05, 'priceDecreaseAmt':1e-05 }, 'tradeFactors':'price'",shorter period
USD,RRT,bitfinex,bryanbeck,23.38,0.38,137,-0.78,-69.56,92.93,204,3.29,60,42,58.82,1.32,0.13,-0.99,-0.06,171.27,10,70,62,2018-03-28 23:13:08,2017-12-19 19:20:00,2018-02-19 23:24:00,43.53,"'nextActionBuy':'yes', 'thresholds': { 'tradeVolDecreasePer':1e-06, 'tradeVolIncreaseAmt':2e-05, 'priceDecreaseAmt':1e-05, 'priceDecreasePer':1e-06, 'buyPriceThreshold':5650, 'priceIncreasePer':1e-06, 'priceIncreaseAmt':2e-05, 'tradeVolDecreaseAmt':1e-05, 'tradeVolIncreasePer':1e-06, 'sellPriceThreshold':5660 }, 'tradeFactors':'price', 'buyImmediately':'no', 'sellIfPrice':'increase', 'buyIfVol':'decrease', 'priceProtection':'disabled', 'changeType':'#', 'buyIfPrice':'decrease', 'buyPricePersistenceThreshold':3, 'sellPricePersistenceThreshold':2, 'priceType':'open/close', 'buyVolPersistenceThreshold':3, 'sellVolPersistenceThreshold':2, 'sellIfVol':'increase', 'nextActionSell':'no'",shorter period
USD,SAN,bitfinex,bryanbeck,-90.9,-1.49,-543,-1.45,-53.99,-36.91,630,10.33,108,207,34.29,0.21,0.02,-0.33,-0.01,60.13,10,70,61,2018-03-28 23:13:08,2017-12-11 23:07:00,2018-02-10 23:58:00,44.19,"'tradeFactors':'price', 'thresholds': { 'priceDecreaseAmt':1e-05, 'tradeVolIncreaseAmt':2e-05, 'tradeVolDecreasePer':1e-06, 'sellPriceThreshold':5660, 'tradeVolDecreaseAmt':1e-05, 'tradeVolIncreasePer':1e-06, 'priceIncreaseAmt':2e-05, 'priceIncreasePer':1e-06, 'buyPriceThreshold':5650, 'priceDecreasePer':1e-06 }, 'nextActionBuy':'yes', 'buyIfVol':'decrease', 'sellIfPrice':'increase', 'buyImmediately':'no', 'priceProtection':'disabled', 'buyIfPrice':'decrease', 'changeType':'#', 'buyPricePersistenceThreshold':3, 'sellPricePersistenceThreshold':2, 'sellVolPersistenceThreshold':2, 'buyVolPersistenceThreshold':3, 'priceType':'open/close', 'sellIfVol':'increase', 'nextActionSell':'no'",shorter period
USDT,BTC,binance,bryanbeck,-98.04,-1.61,-577,-3.17,-35.4,-62.65,866,14.2,77,356,17.78,0.18,0.01,-0.15,0,55.27,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,21.96,"'tradeFactors':'price', 'sellIfVol':'increase', 'buyPricePersistenceThreshold':3, 'nextActionSell':'no', 'priceType':'open/close', 'changeType':'#', 'buyVolPersistenceThreshold':3, 'buyImmediately':'no', 'sellVolPersistenceThreshold':2, 'sellPricePersistenceThreshold':2, 'priceProtection':'disabled', 'nextActionBuy':'yes', 'buyIfPrice':'decrease', 'sellIfPrice':'increase', 'thresholds': { 'tradeVolIncreasePer':1e-06, 'tradeVolDecreaseAmt':1e-05, 'buyPriceThreshold':5650, 'priceDecreasePer':1e-06, 'priceDecreaseAmt':1e-05, 'priceIncreasePer':1e-06, 'tradeVolIncreaseAmt':2e-05, 'sellPriceThreshold':5660, 'tradeVolDecreasePer':1e-06, 'priceIncreaseAmt':2e-05 }, 'buyIfVol':'decrease'",shorter period
USDT,ETH,binance,bryanbeck,-98.59,-1.64,-590,-2.54,66.89,-165.48,824,13.73,81,331,19.66,0.14,0.01,-0.28,0,60.36,10,70,60,2018-03-27 17:33:08,2017-12-12 00:00:00,2018-02-10 23:59:00,22.93,"'nextActionSell':'no', 'changeType':'#', 'priceType':'open/close', 'buyPricePersistenceThreshold':3, 'buyVolPersistenceThreshold':3, 'buyImmediately':'no', 'sellIfVol':'increase', 'tradeFactors':'price', 'buyIfVol':'decrease', 'sellPricePersistenceThreshold':2, 'nextActionBuy':'yes', 'priceProtection':'disabled', 'sellVolPersistenceThreshold':2, 'thresholds': { 'priceIncreaseAmt':2e-05, 'tradeVolDecreasePer':1e-06, 'tradeVolIncreaseAmt':2e-05, 'sellPriceThreshold':5660, 'priceIncreasePer':1e-06, 'priceDecreaseAmt':1e-05, 'priceDecreasePer':1e-06, 'buyPriceThreshold':5650, 'tradeVolDecreaseAmt':1e-05, 'tradeVolIncreasePer':1e-06 }, 'sellIfPrice':'increase', 'buyIfPrice':'decrease'",shorter period
USDT,LTC,binance,bryanbeck,-98.77,-1.62,-581,-2.42,-34.44,-64.33,910,14.92,77,378,16.92,0.28,0.01,-0.34,0,60.77,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,22.22,"'thresholds': { 'tradeVolDecreaseAmt':1e-05, 'tradeVolIncreasePer':1e-06, 'buyPriceThreshold':5650, 'priceDecreasePer':1e-06, 'priceIncreasePer':1e-06, 'priceDecreaseAmt':1e-05, 'sellPriceThreshold':5660, 'tradeVolIncreaseAmt':2e-05, 'tradeVolDecreasePer':1e-06, 'priceIncreaseAmt':2e-05 }, 'sellIfPrice':'increase', 'buyIfPrice':'decrease', 'sellPricePersistenceThreshold':2, 'nextActionBuy':'yes', 'priceProtection':'disabled', 'sellVolPersistenceThreshold':2, 'buyIfVol':'decrease', 'sellIfVol':'increase', 'tradeFactors':'price', 'buyVolPersistenceThreshold':3, 'buyImmediately':'no', 'changeType':'#', 'nextActionSell':'no', 'priceType':'open/close', 'buyPricePersistenceThreshold':3",shorter period
USDT,NEO,binance,bryanbeck,-98.75,-1.62,-581,-2.02,96.24,-194.99,864,14.16,103,329,23.84,0.19,0.02,-0.4,0,56.6,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,26.97,"'buyIfPrice':'decrease', 'sellIfPrice':'increase', 'thresholds': { 'priceIncreaseAmt':2e-05, 'tradeVolDecreasePer':1e-06, 'sellPriceThreshold':5660, 'tradeVolIncreaseAmt':2e-05, 'priceIncreasePer':1e-06, 'priceDecreaseAmt':1e-05, 'priceDecreasePer':1e-06, 'buyPriceThreshold':5650, 'tradeVolDecreaseAmt':1e-05, 'tradeVolIncreasePer':1e-06 }, 'sellVolPersistenceThreshold':2, 'nextActionBuy':'yes', 'priceProtection':'disabled', 'sellPricePersistenceThreshold':2, 'buyIfVol':'decrease', 'tradeFactors':'price', 'sellIfVol':'increase', 'buyImmediately':'no', 'buyVolPersistenceThreshold':3, 'buyPricePersistenceThreshold':3, 'nextActionSell':'no', 'priceType':'open/close', 'changeType':'#'",shorter period
USDT,NXT,poloniex,bryanbeck,-91.53,-1.61,-576,-2.63,-54.67,-36.86,521,9.14,86,174,33.08,0.14,0.02,-0.33,-0.01,82.58,10,70,57,2018-03-28 23:13:08,2018-01-27 00:00:00,2018-03-25 23:53:00,26.64,"'sellPricePersistenceThreshold':2, 'buyPricePersistenceThreshold':3, 'sellIfVol':'increase', 'nextActionSell':'no', 'buyVolPersistenceThreshold':3, 'priceType':'open/close', 'sellVolPersistenceThreshold':2, 'buyImmediately':'no', 'buyIfVol':'decrease', 'sellIfPrice':'increase', 'nextActionBuy':'yes', 'tradeFactors':'price', 'thresholds': { 'tradeVolIncreasePer':1e-06, 'tradeVolDecreaseAmt':1e-05, 'sellPriceThreshold':5660, 'buyPriceThreshold':5650, 'priceDecreasePer':1e-06, 'priceIncreasePer':1e-06, 'priceIncreaseAmt':2e-05, 'tradeVolIncreaseAmt':2e-05, 'priceDecreaseAmt':1e-05, 'tradeVolDecreasePer':1e-06 }, 'buyIfPrice':'decrease', 'changeType':'#', 'priceProtection':'disabled'",shorter period
BNB,ADX,binance,buyatsellat_ui,-95.2,-1.56,-560,-0.25,-46.18,-49.02,114,1.87,23,34,40.35,0.89,0.08,-1.01,-0.12,1547.02,10,70,61,2018-03-27 17:33:08,2017-12-20 00:03:00,2018-02-19 23:58:00,47.35,"'stop_loss_pct':0.85, 'buyat':1.2, 'sellat_up':1.01, 'sellat':0.98",shorter period
BNB,CND,binance,buyatsellat_ui,-20.82,-0.35,-124,-0.11,127.38,-148.2,151,2.52,36,39,48,1.09,0.42,-0.93,-0.39,1079.87,10,70,60,2018-03-27 17:33:08,2017-12-12 00:00:00,2018-02-10 23:55:00,49.72,"'stop_loss_pct':0.85, 'sellat_up':1.01, 'buyat':1.2, 'sellat':0.98",shorter period
BNB,GTO,binance,buyatsellat_ui,-83.99,-1.38,-494,-0.23,-17.85,-66.13,127,2.08,26,37,41.27,1,0.19,-0.81,-0.21,1377.94,10,70,61,2018-03-27 17:33:08,2017-12-20 00:01:00,2018-02-19 23:58:00,24.6,"'stop_loss_pct':0.85, 'buyat':1.2, 'sellat_up':1.01, 'sellat':0.98",shorter period
BNB,NEBL,binance,buyatsellat_ui,-55.51,-0.97,-349,-0.43,-37.68,-17.83,29,0.51,5,9,35.71,0.95,0.8,-0.96,-0.62,5910.71,10,70,57,2018-03-27 17:33:08,2018-01-27 00:03:00,2018-03-25 23:58:00,16.74,"'sellat_up':1.01, 'buyat':1.2, 'sellat':0.98, 'stop_loss_pct':0.85",shorter period
BNB,NULS,binance,buyatsellat_ui,-0.16,0,-1,-0.03,-35.94,35.78,25,0.44,5,7,41.67,2.24,1.01,-1.31,-0.75,6707.5,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:58:00,16.63,"'sellat':0.98, 'sellat_up':1.01, 'buyat':1.2, 'stop_loss_pct':0.85",shorter period
BNB,OST,binance,buyatsellat_ui,-85.25,-1.4,-502,-0.16,-57.63,-27.62,161,2.64,37,43,46.25,1.09,0.25,-1.27,-0.25,999.75,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:53:00,25.15,"'stop_loss_pct':0.85, 'sellat':0.98, 'buyat':1.2, 'sellat_up':1.01",shorter period
BNB,WTC,binance,buyatsellat_ui,-73.8,-1.29,-464,-0.81,-61.73,-12.07,27,0.47,3,10,23.08,0.46,0.4,-0.72,-0.4,6368.46,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:54:00,24.05,"'sellat':0.98, 'sellat_up':1.01, 'buyat':1.2, 'stop_loss_pct':0.85",shorter period
BNB,XLM,binance,buyatsellat_ui,220.5,3.61,1299,0.02,-8.98,229.48,101,1.66,27,23,54,5.41,1.9,-4.6,-1.66,1463.6,10,70,61,2018-03-27 17:33:08,2017-12-20 00:02:00,2018-02-19 23:58:00,29.22,"'buyat':1.2, 'sellat_up':1.01, 'sellat':0.98, 'stop_loss_pct':0.85",shorter period
BTC,ADA,binance,buyatsellat_ui,-32.05,-0.53,-188,-0.23,11.87,-43.91,41,0.67,9,11,45,1.69,0.96,-1.47,-0.78,4299,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,24.43,"'sellat_up':1.01, 'buyat':1.2, 'sellat':0.98, 'stop_loss_pct':0.85",shorter period
BTC,BNB,binance,buyatsellat_ui,94.93,1.56,559,0.16,200.79,-105.85,27,0.44,9,4,69.23,3.21,1.88,-6.53,-2.31,4887.69,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:59:00,32.99,"'stop_loss_pct':0.85, 'sellat_up':1.01, 'buyat':1.2, 'sellat':0.98",shorter period
BTC,BTM,poloniex,buyatsellat_ui,-58.1,-1.02,-366,-0.49,-49.04,-9.06,25,0.44,4,8,33.33,0.39,0.35,-0.72,-0.35,6295,10,70,57,2018-03-28 23:13:08,2018-01-27 00:56:00,2018-03-25 23:46:00,26.13,"'stop_loss_pct':0.85, 'sellat':0.98, 'sellat_up':1.01, 'buyat':1.2",shorter period
BTC,DGB,poloniex,buyatsellat_ui,4.05,0.07,23,-0.1,72.81,-68.76,43,0.7,11,10,52.38,1.64,1.19,-1.42,-1.25,3572.38,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,23.7,"'sellat':0.98, 'stop_loss_pct':0.85, 'buyat':1.2, 'sellat_up':1.01",shorter period
BTC,ETC,binance,buyatsellat_ui,39.49,0.65,232,-0.06,59.31,-19.81,27,0.44,7,6,53.85,1.02,0.89,-0.94,-0.79,6664.62,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,17.44,"'stop_loss_pct':0.85, 'sellat':0.98, 'buyat':1.2, 'sellat_up':1.01",shorter period
BTC,GAME,poloniex,buyatsellat_ui,22.42,0.37,132,-0.09,53.27,-30.84,53,0.87,14,12,53.85,1.48,1.07,-1.54,-1.01,3388.46,10,70,61,2018-04-04 08:56:20,2017-12-20 00:00:00,2018-02-19 23:57:00,0,shorter period,
BTC,GAS,binance,buyatsellat_ui,201.11,3.35,1204,0.07,337.14,-136.03,57,0.95,17,11,60.71,3.4,1.71,-3.4,-2.21,2837.86,10,70,60,2018-03-27 17:33:08,2017-12-12 00:01:00,2018-02-10 23:58:00,42.95,"'buyat':1.2, 'sellat_up':1.01, 'sellat':0.98, 'stop_loss_pct':0.85",shorter period
BTC,ICX,binance,buyatsellat_ui,152.37,2.5,897,0.03,243.07,-90.7,69,1.13,20,14,58.82,4.01,2.33,-4.29,-2.59,2092.06,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,31.7,"'sellat':0.98, 'buyat':1.2, 'sellat_up':1.01, 'stop_loss_pct':0.85",shorter period
BTC,OMG,binance,buyatsellat_ui,41.53,0.68,244,0,50.87,-9.34,25,0.41,7,5,58.33,1.16,0.93,-1.25,-1.02,5900,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,15.52,"'sellat':0.98, 'sellat_up':1.01, 'buyat':1.2, 'stop_loss_pct':0.85",shorter period
BTC,STR,poloniex,buyatsellat_ui,-52.72,-0.92,-332,-0.76,-50.01,-2.72,17,0.3,2,6,25,0.58,0.45,-0.62,-0.5,9320,10,70,57,2018-03-28 23:13:08,2018-01-27 00:00:00,2018-03-25 23:58:00,22.09,"'stop_loss_pct':0.85, 'sellat':0.98, 'buyat':1.2, 'sellat_up':1.01",shorter period
BTC,VEN,binance,buyatsellat_ui,401.86,6.59,2367,0.13,619.61,-217.75,63,1.03,20,11,64.52,3.87,2.26,-3.72,-2.81,2248.71,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,47.55,"'sellat_up':1.01, 'buyat':1.2, 'sellat':0.98, 'stop_loss_pct':0.85",shorter period
BTC,XRP,binance,buyatsellat_ui,40.76,0.67,240,-0.07,133.4,-92.65,69,1.13,18,16,52.94,3.67,1.4,-3.14,-1.47,2382.94,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:59:00,25.81,"'sellat':0.98, 'buyat':1.2, 'sellat_up':1.01, 'stop_loss_pct':0.85",shorter period
BTC,ZEC,binance,buyatsellat_ui,9.19,0.15,54,-0.02,24.38,-15.19,15,0.25,4,3,57.14,0.95,0.79,-0.88,-0.75,12161.43,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,13.05,"'sellat_up':1.01, 'buyat':1.2, 'sellat':0.98, 'stop_loss_pct':0.85",shorter period
ETH,AST,binance,buyatsellat_ui,-33,-0.58,-207,-0.29,-34.89,1.89,35,0.61,7,10,41.18,0.89,0.42,-0.75,-0.42,4434.12,10,70,57,2018-03-27 17:33:08,2018-01-27 00:03:00,2018-03-25 23:58:00,30.62,"'stop_loss_pct':0.85, 'sellat':0.98, 'buyat':1.2, 'sellat_up':1.01",shorter period
ETH,EOS,binance,buyatsellat_ui,-41.48,-0.68,-244,-0.42,-29.24,-12.23,23,0.38,4,7,36.36,0.6,0.49,-0.62,-0.47,5459.09,10,70,61,2018-04-04 08:56:20,2017-12-20 00:00:00,2018-02-19 23:58:00,0,shorter period,
ETH,FUEL,binance,buyatsellat_ui,-36.62,-0.64,-230,-0.49,-28.59,-8.02,19,0.33,3,6,33.33,0.68,0.59,-0.63,-0.54,8563.33,10,70,57,2018-03-27 17:33:08,2018-01-27 00:01:00,2018-03-25 23:58:00,15.31,"'sellat':0.98, 'buyat':1.2, 'sellat_up':1.01, 'stop_loss_pct':0.85",shorter period
ETH,ICN,kraken,buyatsellat_ui,-26.62,-0.44,-156,-0.24,-26.29,-0.33,37,0.61,8,10,44.44,0.93,0.81,-0.94,-0.74,3772.22,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,24.75,"'buyat':1.2, 'sellat_up':1.01, 'stop_loss_pct':0.85, 'sellat':0.98",shorter period
ETH,QTUM,binance,buyatsellat_ui,23.55,0.39,141,-0.1,32.4,-8.84,55,0.92,14,13,51.85,2.24,1.27,-2.06,-1.37,3173.7,10,70,60,2018-04-04 08:56:20,2017-12-12 00:01:00,2018-02-10 23:58:00,0,1,shorter period
ETH,VIB,binance,buyatsellat_ui,-1.51,-0.03,-9,-0.12,12.57,-14.08,37,0.65,9,9,50,1.13,0.76,-1.11,-0.66,4566.11,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:58:00,15.12,"'sellat':0.98, 'buyat':1.2, 'sellat_up':1.01, 'stop_loss_pct':0.85",shorter period
ETH,XVG,binance,buyatsellat_ui,58.69,0.98,351,-0.08,294.2,-235.51,145,2.42,36,36,50,6.2,2.86,-5.15,-2.76,1044.44,10,70,60,2018-04-04 08:56:20,2017-12-12 00:02:00,2018-02-10 23:58:00,0,shorter period,
EUR,XMR,kraken,buyatsellat_ui,-26.46,-0.43,-155,-0.21,-18.23,-8.23,55,0.9,13,14,48.15,0.79,0.51,-0.78,-0.56,3115.93,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,20.52,"'buyat':1.2, 'sellat_up':1.01, 'stop_loss_pct':0.85, 'sellat':0.98",shorter period
USD,AVT,bitfinex,buyatsellat_ui,-66.33,-1.14,-415,-0.56,-63.47,-2.86,33,0.57,5,11,31.25,1.02,0.46,-0.98,-0.43,4519.38,10,70,58,2018-03-28 23:13:08,2018-01-26 13:30:00,2018-03-25 19:58:00,36.29,"'buyat':1.2, 'sellat_up':1.01, 'stop_loss_pct':0.85, 'sellat':0.98",shorter period
USD,DAT,bitfinex,buyatsellat_ui,-80.9,-1.3,-476,-0.37,-50.35,-30.56,75,1.21,14,23,37.84,0.69,0.36,-0.72,-0.28,2332.43,10,70,62,2018-03-28 23:13:08,2017-12-19 23:17:00,2018-02-19 23:56:00,36.88,"'sellat':0.98, 'stop_loss_pct':0.85, 'buyat':1.2, 'sellat_up':1.01",shorter period
USD,ETP,bitfinex,buyatsellat_ui,-73.17,-1.18,-430,-0.28,-50.35,-22.82,85,1.37,18,24,42.86,1.03,0.48,-1.07,-0.42,2051.19,10,70,62,2018-03-28 23:13:08,2017-12-19 22:55:00,2018-02-19 23:43:00,35.1,"'sellat_up':1.01, 'buyat':1.2, 'sellat':0.98, 'stop_loss_pct':0.85",shorter period
USD,RCN,bitfinex,buyatsellat_ui,28.2,0.49,174,-0.06,-63.33,91.53,67,1.16,15,18,45.45,1.35,0.41,-0.91,-0.32,2489.39,10,70,58,2018-03-28 23:13:08,2018-01-26 02:00:00,2018-03-25 23:27:00,38.04,"'buyat':1.2, 'sellat_up':1.01, 'stop_loss_pct':0.85, 'sellat':0.98",shorter period
USD,RRT,bitfinex,buyatsellat_ui,-86.95,-1.4,-510,-0.38,-69.56,-17.39,83,1.34,15,26,36.59,0.7,0.35,-0.7,-0.32,1947.56,10,70,62,2018-03-28 23:13:08,2017-12-19 19:20:00,2018-02-19 23:24:00,43.53,"'sellat':0.98, 'stop_loss_pct':0.85, 'buyat':1.2, 'sellat_up':1.01",shorter period
USD,SAN,bitfinex,buyatsellat_ui,-78.05,-1.28,-467,-0.34,-53.99,-24.06,79,1.3,15,24,38.46,1.6,0.46,-1.32,-0.42,2160.26,10,70,61,2018-03-28 23:13:08,2017-12-11 23:07:00,2018-02-10 23:58:00,44.19,"'buyat':1.2, 'sellat_up':1.01, 'stop_loss_pct':0.85, 'sellat':0.98",shorter period
USDT,BTC,binance,buyatsellat_ui,-49.58,-0.81,-292,-0.41,-35.4,-14.19,37,0.61,7,11,38.89,0.66,0.44,-0.74,-0.47,4533.89,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,21.96,"'sellat':0.98, 'buyat':1.2, 'sellat_up':1.01, 'stop_loss_pct':0.85",shorter period
USDT,ETH,binance,buyatsellat_ui,8.4,0.14,50,-0.14,66.89,-58.49,51,0.85,13,12,52,1.65,1.09,-1.69,-1.06,3285.6,10,70,60,2018-03-27 17:33:08,2017-12-12 00:00:00,2018-02-10 23:59:00,22.93,"'sellat':0.98, 'buyat':1.2, 'sellat_up':1.01, 'stop_loss_pct':0.85",shorter period
USDT,LTC,binance,buyatsellat_ui,-55.43,-0.91,-326,-0.32,-34.44,-20.99,57,0.93,12,16,42.86,0.44,0.29,-0.75,-0.31,2890.36,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,22.22,"'sellat_up':1.01, 'buyat':1.2, 'sellat':0.98, 'stop_loss_pct':0.85",shorter period
USDT,NEO,binance,buyatsellat_ui,17.16,0.28,101,-0.13,96.24,-79.09,79,1.3,20,19,51.28,1.25,0.87,-1.53,-0.73,2147.18,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,26.97,"'sellat':0.98, 'buyat':1.2, 'sellat_up':1.01, 'stop_loss_pct':0.85",shorter period
USDT,NXT,poloniex,buyatsellat_ui,-64.19,-1.13,-404,-0.41,-54.67,-9.52,43,0.75,8,13,38.1,0.44,0.4,-0.67,-0.36,3680,10,70,57,2018-03-28 23:13:08,2018-01-27 00:00:00,2018-03-25 23:53:00,26.64,"'stop_loss_pct':0.85, 'sellat':0.98, 'sellat_up':1.01, 'buyat':1.2",shorter period
BNB,ADX,binance,CCI_custom,72.54,1.19,427,-0.13,-46.18,118.72,129,2.11,36,28,56.25,2.01,0.54,-1.66,-0.69,1087.34,10,70,61,2018-03-27 17:33:08,2017-12-20 00:03:00,2018-02-19 23:58:00,47.35,"'constant':0.015, 'history':90, 'thresholds': { 'down':-30, 'negativeProfit':1, 'takeProfit':20, 'persistence':0, 'minProfit':5, 'up':150, 'takeLoss':-10 }",shorter period
BNB,CND,binance,CCI_custom,908.42,15.14,5439,-0.02,127.38,781.04,162,2.7,47,34,58.02,8.52,1.29,-4.92,-0.89,740.25,10,70,60,2018-03-27 17:33:08,2017-12-12 00:00:00,2018-02-10 23:55:00,49.72,"'history':90, 'constant':0.015, 'thresholds': { 'up':150, 'takeLoss':-10, 'minProfit':5, 'persistence':0, 'takeProfit':20, 'down':-30, 'negativeProfit':1 }",shorter period
BNB,GTO,binance,CCI_custom,231.99,3.8,1366,-0.11,-17.85,249.84,163,2.67,45,36,55.56,6.25,0.8,-2.45,-0.86,811.23,10,70,61,2018-03-27 17:33:08,2017-12-20 00:01:00,2018-02-19 23:58:00,24.6,"'history':90, 'constant':0.015, 'thresholds': { 'takeProfit':20, 'negativeProfit':1, 'down':-30, 'up':150, 'takeLoss':-10, 'minProfit':5, 'persistence':0 }",shorter period
BNB,NEBL,binance,CCI_custom,-20.9,-0.37,-131,-0.44,-37.68,16.78,99,1.74,26,23,53.06,0.84,0.29,-1.05,-0.39,1407.35,10,70,57,2018-03-27 17:33:08,2018-01-27 00:03:00,2018-03-25 23:58:00,16.74,"'history':90, 'constant':0.015, 'thresholds': { 'minProfit':5, 'persistence':0, 'up':150, 'takeLoss':-10, 'negativeProfit':1, 'down':-30, 'takeProfit':20 }",shorter period
BNB,NULS,binance,CCI_custom,102.12,1.79,643,-0.09,-35.94,138.07,87,1.53,23,20,53.49,3.04,0.55,-2.43,-0.5,1606.51,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:58:00,16.63,"'thresholds': { 'takeProfit':20, 'down':-30, 'negativeProfit':1, 'up':150, 'takeLoss':-10, 'minProfit':5, 'persistence':0 }, 'history':90, 'constant':0.015",shorter period
BNB,OST,binance,CCI_custom,1552.86,25.46,9148,0.04,-57.63,1610.49,171,2.8,47,38,55.29,14.52,3.93,-9.75,-3.21,808.82,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:53:00,25.15,"'thresholds': { 'down':-30, 'negativeProfit':1, 'takeProfit':20, 'minProfit':5, 'persistence':0, 'takeLoss':-10, 'up':150 }, 'constant':0.015, 'history':90",shorter period
BNB,WTC,binance,CCI_custom,-68.61,-1.2,-432,-0.68,-61.73,-6.88,81,1.42,16,24,40,0.48,0.14,-0.45,-0.2,1656.75,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:54:00,24.05,"'history':90, 'constant':0.015, 'thresholds': { 'up':150, 'takeLoss':-10, 'minProfit':5, 'persistence':0, 'takeProfit':20, 'down':-30, 'negativeProfit':1 }",shorter period
BNB,XLM,binance,CCI_custom,-40.84,-0.67,-240,-0.35,-8.98,-31.87,119,1.95,30,29,50.85,1.25,0.37,-0.8,-0.42,1017.46,10,70,61,2018-03-27 17:33:08,2017-12-20 00:02:00,2018-02-19 23:58:00,29.22,"'history':90, 'constant':0.015, 'thresholds': { 'down':-30, 'negativeProfit':1, 'takeProfit':20, 'persistence':0, 'minProfit':5, 'up':150, 'takeLoss':-10 }",shorter period
BTC,ADA,binance,CCI_custom,-54.79,-0.9,-322,-0.48,11.87,-66.66,81,1.33,16,24,40,1.24,0.46,-0.93,-0.35,1758.25,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,24.43,"'thresholds': { 'up':150, 'takeLoss':-10, 'minProfit':5, 'persistence':0, 'takeProfit':20, 'down':-30, 'negativeProfit':1 }, 'history':90, 'constant':0.015",shorter period
BTC,BNB,binance,CCI_custom,-10.58,-0.17,-62,-0.35,200.79,-211.36,64,1.05,16,16,50,1.65,0.39,-3.11,-0.24,2358.44,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:59:00,32.99,"'thresholds': { 'down':-30, 'negativeProfit':1, 'takeProfit':20, 'minProfit':5, 'persistence':0, 'takeLoss':-10, 'up':150 }, 'history':90, 'constant':0.015",shorter period
BTC,BTM,poloniex,CCI_custom,-40.15,-0.7,-253,-0.52,-49.04,8.89,73,1.28,15,21,41.67,0.49,0.17,-0.5,-0.21,1841.11,10,70,57,2018-03-28 23:13:08,2018-01-27 00:56:00,2018-03-25 23:46:00,26.13,"'constant':0.015, 'history':90, 'thresholds': { 'minProfit':5, 'takeProfit':20, 'up':150, 'down':-30, 'persistence':0, 'takeLoss':-10, 'negativeProfit':1 }",shorter period
BTC,DGB,poloniex,CCI_custom,-11.33,-0.19,-66,-0.37,72.81,-84.13,100,1.64,26,24,52,1.37,0.43,-0.94,-0.54,1367.4,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,23.7,"'constant':0.015, 'history':90, 'thresholds': { 'persistence':0, 'takeLoss':-10, 'negativeProfit':1, 'up':150, 'down':-30, 'takeProfit':20, 'minProfit':5 }",shorter period
BTC,ETC,binance,CCI_custom,66.41,1.09,391,-0.31,59.31,7.1,81,1.33,21,19,52.5,1.38,0.35,-0.91,-0.32,1790.5,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,17.44,"'thresholds': { 'takeProfit':20, 'negativeProfit':1, 'down':-30, 'up':150, 'takeLoss':-10, 'minProfit':5, 'persistence':0 }, 'constant':0.015, 'history':90",shorter period
BTC,GAME,poloniex,CCI_custom,-49.23,-0.81,-290,-0.53,53.27,-102.5,103,1.69,23,28,45.1,1.02,0.34,-0.88,-0.29,1293.92,10,70,61,2018-04-04 08:56:20,2017-12-20 00:00:00,2018-02-19 23:57:00,0,shorter period,
BTC,GAS,binance,CCI_custom,39.05,0.65,233,-0.24,337.14,-298.09,109,1.82,29,25,53.7,1.94,0.89,-1.39,-0.9,1080.56,10,70,60,2018-03-27 17:33:08,2017-12-12 00:01:00,2018-02-10 23:58:00,42.95,"'thresholds': { 'persistence':0, 'minProfit':5, 'up':150, 'takeLoss':-10, 'down':-30, 'negativeProfit':1, 'takeProfit':20 }, 'history':90, 'constant':0.015",shorter period
BTC,ICX,binance,CCI_custom,73.16,1.2,431,-0.22,243.07,-169.91,102,1.67,29,22,56.86,2.65,0.83,-2.12,-1.05,1357.25,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,31.7,"'thresholds': { 'persistence':0, 'minProfit':5, 'up':150, 'takeLoss':-10, 'down':-30, 'negativeProfit':1, 'takeProfit':20 }, 'history':90, 'constant':0.015",shorter period
BTC,OMG,binance,CCI_custom,-24.02,-0.39,-141,-0.46,50.87,-74.89,91,1.49,24,21,53.33,0.95,0.29,-0.89,-0.45,1530.67,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,15.52,"'thresholds': { 'takeProfit':20, 'down':-30, 'negativeProfit':1, 'takeLoss':-10, 'up':150, 'minProfit':5, 'persistence':0 }, 'history':90, 'constant':0.015",shorter period
BTC,STR,poloniex,CCI_custom,-63.8,-1.12,-401,-1.07,-50.01,-13.79,59,1.04,7,22,24.14,0.46,0.11,-0.43,-0.11,2372.07,10,70,57,2018-03-28 23:13:08,2018-01-27 00:00:00,2018-03-25 23:58:00,22.09,"'history':90, 'constant':0.015, 'thresholds': { 'takeProfit':20, 'minProfit':5, 'persistence':0, 'negativeProfit':1, 'takeLoss':-10, 'up':150, 'down':-30 }",shorter period
BTC,VEN,binance,CCI_custom,47.53,0.78,280,-0.26,619.61,-572.08,101,1.66,27,23,54,1.87,0.58,-1.02,-0.73,1252,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,47.55,"'constant':0.015, 'history':90, 'thresholds': { 'up':150, 'takeLoss':-10, 'minProfit':5, 'persistence':0, 'takeProfit':20, 'negativeProfit':1, 'down':-30 }",shorter period
BTC,XRP,binance,CCI_custom,-46.67,-0.77,-274,-0.43,133.4,-180.08,93,1.52,17,29,36.96,1.48,0.54,-0.96,-0.38,1456.74,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:59:00,25.81,"'history':90, 'constant':0.015, 'thresholds': { 'negativeProfit':1, 'down':-30, 'takeProfit':20, 'minProfit':5, 'persistence':0, 'up':150, 'takeLoss':-10 }",shorter period
BTC,ZEC,binance,CCI_custom,16.3,0.27,96,-0.39,24.38,-8.08,57,0.93,13,15,46.43,0.83,0.3,-0.6,-0.2,2800,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,13.05,"'thresholds': { 'takeProfit':20, 'down':-30, 'negativeProfit':1, 'up':150, 'takeLoss':-10, 'persistence':0, 'minProfit':5 }, 'history':90, 'constant':0.015",shorter period
ETH,AST,binance,CCI_custom,-50.97,-0.89,-320,-0.59,-34.89,-16.08,89,1.56,20,24,45.45,0.53,0.17,-0.47,-0.26,1548.86,10,70,57,2018-03-27 17:33:08,2018-01-27 00:03:00,2018-03-25 23:58:00,30.62,"'thresholds': { 'takeProfit':20, 'negativeProfit':1, 'down':-30, 'takeLoss':-10, 'up':150, 'persistence':0, 'minProfit':5 }, 'history':90, 'constant':0.015",shorter period
ETH,EOS,binance,CCI_custom,-62.01,-1.02,-365,-0.74,-29.24,-32.77,59,0.97,11,18,37.93,0.41,0.19,-0.49,-0.24,2401.03,10,70,61,2018-04-04 08:56:20,2017-12-20 00:00:00,2018-02-19 23:58:00,0,shorter period,
ETH,FUEL,binance,CCI_custom,13.87,0.24,87,-0.42,-28.59,42.46,83,1.46,22,19,53.66,0.94,0.25,-0.57,-0.38,1712.2,10,70,57,2018-03-27 17:33:08,2018-01-27 00:01:00,2018-03-25 23:58:00,15.31,"'constant':0.015, 'history':90, 'thresholds': { 'persistence':0, 'minProfit':5, 'takeLoss':-10, 'up':150, 'negativeProfit':1, 'down':-30, 'takeProfit':20 }",shorter period
ETH,ICN,kraken,CCI_custom,-44.97,-0.74,-264,-0.49,-26.29,-18.68,87,1.43,20,23,46.51,0.88,0.3,-0.74,-0.36,1634.42,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,24.75,"'thresholds': { 'persistence':0, 'negativeProfit':1, 'takeLoss':-10, 'up':150, 'down':-30, 'takeProfit':20, 'minProfit':5 }, 'history':90, 'constant':0.015",shorter period
ETH,QTUM,binance,CCI_custom,28.59,0.48,171,-0.29,32.4,-3.81,85,1.42,23,19,54.76,2.12,0.42,-1.26,-0.57,1730.48,10,70,60,2018-04-04 08:56:20,2017-12-12 00:01:00,2018-02-10 23:58:00,0,1,shorter period
ETH,VIB,binance,CCI_custom,55.15,0.97,347,-0.31,12.57,42.59,85,1.49,22,20,52.38,0.96,0.3,-0.71,-0.13,1673.33,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:58:00,15.12,"'thresholds': { 'down':-30, 'negativeProfit':1, 'takeProfit':20, 'minProfit':5, 'persistence':0, 'up':150, 'takeLoss':-10 }, 'constant':0.015, 'history':90",shorter period
ETH,XVG,binance,CCI_custom,-41.78,-0.7,-250,-0.31,294.2,-335.98,141,2.35,34,36,48.57,2.4,0.58,-1.61,-0.69,825.71,10,70,60,2018-04-04 08:56:20,2017-12-12 00:02:00,2018-02-10 23:58:00,0,shorter period,
EUR,XMR,kraken,CCI_custom,-46.92,-0.77,-276,-0.54,-18.23,-28.69,69,1.13,17,17,50,0.66,0.2,-0.48,-0.31,2099.41,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,20.52,"'thresholds': { 'minProfit':5, 'takeProfit':20, 'up':150, 'down':-30, 'persistence':0, 'takeLoss':-10, 'negativeProfit':1 }, 'constant':0.015, 'history':90",shorter period
USD,AVT,bitfinex,CCI_custom,-64.07,-1.1,-401,-0.54,-63.47,-0.6,91,1.57,20,25,44.44,0.4,0.12,-0.48,-0.21,1398,10,70,58,2018-03-28 23:13:08,2018-01-26 13:30:00,2018-03-25 19:58:00,36.29,"'constant':0.015, 'history':90, 'thresholds': { 'minProfit':5, 'takeProfit':20, 'up':150, 'down':-30, 'persistence':0, 'takeLoss':-10, 'negativeProfit':1 }",shorter period
USD,DAT,bitfinex,CCI_custom,-81.73,-1.32,-481,-0.51,-50.35,-31.38,111,1.79,22,33,40,0.57,0.11,-0.47,-0.16,1150,10,70,62,2018-03-28 23:13:08,2017-12-19 23:17:00,2018-02-19 23:56:00,36.88,"'constant':0.015, 'history':90, 'thresholds': { 'minProfit':5, 'takeProfit':20, 'up':150, 'down':-30, 'persistence':0, 'negativeProfit':1, 'takeLoss':-10 }",shorter period
USD,ETP,bitfinex,CCI_custom,-51.03,-0.82,-300,-0.34,-50.35,-0.68,119,1.92,28,31,47.46,1.18,0.32,-0.99,-0.34,1045.42,10,70,62,2018-03-28 23:13:08,2017-12-19 22:55:00,2018-02-19 23:43:00,35.1,"'thresholds': { 'down':-30, 'up':150, 'takeLoss':-10, 'negativeProfit':1, 'persistence':0, 'minProfit':5, 'takeProfit':20 }, 'history':90, 'constant':0.015",shorter period
USD,RCN,bitfinex,CCI_custom,202.52,3.49,1255,-0.07,-63.33,265.85,108,1.86,31,23,57.41,2.54,0.31,-1.93,-0.33,1198.52,10,70,58,2018-03-28 23:13:08,2018-01-26 02:00:00,2018-03-25 23:27:00,38.04,"'thresholds': { 'minProfit':5, 'takeProfit':20, 'down':-30, 'up':150, 'negativeProfit':1, 'takeLoss':-10, 'persistence':0 }, 'constant':0.015, 'history':90",shorter period
USD,RRT,bitfinex,CCI_custom,-8.84,-0.14,-51,-0.27,-69.56,60.71,121,1.95,31,29,51.67,1.01,0.37,-0.85,-0.43,1174.5,10,70,62,2018-03-28 23:13:08,2017-12-19 19:20:00,2018-02-19 23:24:00,43.53,"'constant':0.015, 'history':90, 'thresholds': { 'takeLoss':-10, 'negativeProfit':1, 'persistence':0, 'down':-30, 'up':150, 'takeProfit':20, 'minProfit':5 }",shorter period
USD,SAN,bitfinex,CCI_custom,-62.45,-1.02,-373,-0.46,-53.99,-8.46,117,1.92,28,30,48.28,0.78,0.26,-0.69,-0.3,1023.1,10,70,61,2018-03-28 23:13:08,2017-12-11 23:07:00,2018-02-10 23:58:00,44.19,"'history':90, 'constant':0.015, 'thresholds': { 'takeProfit':20, 'minProfit':5, 'persistence':0, 'negativeProfit':1, 'takeLoss':-10, 'up':150, 'down':-30 }",shorter period
USDT,BTC,binance,CCI_custom,-53.64,-0.88,-315,-0.58,-35.4,-18.24,73,1.2,17,19,47.22,0.53,0.17,-0.46,-0.25,2000.28,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,21.96,"'thresholds': { 'takeLoss':-10, 'up':150, 'minProfit':5, 'persistence':0, 'takeProfit':20, 'negativeProfit':1, 'down':-30 }, 'constant':0.015, 'history':90",shorter period
USDT,ETH,binance,CCI_custom,-22.93,-0.38,-137,-0.36,66.89,-89.82,89,1.48,24,20,54.55,1.25,0.4,-0.98,-0.57,1515,10,70,60,2018-03-27 17:33:08,2017-12-12 00:00:00,2018-02-10 23:59:00,22.93,"'thresholds': { 'takeLoss':-10, 'up':150, 'persistence':0, 'minProfit':5, 'takeProfit':20, 'down':-30, 'negativeProfit':1 }, 'history':90, 'constant':0.015",shorter period
USDT,LTC,binance,CCI_custom,-71.16,-1.17,-419,-0.64,-34.44,-36.72,81,1.33,16,24,40,0.59,0.19,-0.49,-0.23,1763.25,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,22.22,"'thresholds': { 'up':150, 'takeLoss':-10, 'persistence':0, 'minProfit':5, 'takeProfit':20, 'negativeProfit':1, 'down':-30 }, 'constant':0.015, 'history':90",shorter period
USDT,NEO,binance,CCI_custom,-61.52,-1.01,-362,-0.47,96.24,-157.77,121,1.98,27,33,45,0.91,0.35,-0.69,-0.4,1069.67,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,26.97,"'thresholds': { 'takeProfit':20, 'down':-30, 'negativeProfit':1, 'up':150, 'takeLoss':-10, 'persistence':0, 'minProfit':5 }, 'constant':0.015, 'history':90",shorter period
USDT,NXT,poloniex,CCI_custom,-78.43,-1.38,-493,-0.88,-54.67,-23.77,85,1.49,17,25,40.48,0.3,0.09,-0.46,-0.18,1546.67,10,70,57,2018-03-28 23:13:08,2018-01-27 00:00:00,2018-03-25 23:53:00,26.64,"'thresholds': { 'takeProfit':20, 'minProfit':5, 'persistence':0, 'negativeProfit':1, 'takeLoss':-10, 'up':150, 'down':-30 }, 'history':90, 'constant':0.015",shorter period
BNB,ADX,binance,CUSTOM_RSI,-43.3,-0.71,-255,-Inf,-46.18,2.88,3,0.05,0,1,0,-1.71,n/a,-1.71,-1.71,60020,10,70,61,2018-03-27 17:33:08,2017-12-20 00:03:00,2018-02-19 23:58:00,47.35,"'RSI': { 'bufferPercent':75, 'optInTimePeriod':14, 'long':25, 'buffer':3, 'short':75 }",shorter period
BNB,CND,binance,CUSTOM_RSI,15.96,0.27,95,0.11,127.38,-111.42,7,0.12,2,1,66.67,0.99,0.53,-0.35,-0.35,3596.67,10,70,60,2018-03-27 17:33:08,2017-12-12 00:00:00,2018-02-10 23:55:00,49.72,"'RSI': { 'buffer':3, 'long':25, 'optInTimePeriod':14, 'short':75, 'bufferPercent':75 }",shorter period
BNB,GTO,binance,CUSTOM_RSI,22.04,0.36,129,0.33,-17.85,39.9,8,0.13,1,2,33.33,1.88,1.88,-0.42,-0.21,4453.33,10,70,61,2018-03-27 17:33:08,2017-12-20 00:01:00,2018-02-19 23:58:00,24.6,"'RSI': { 'short':75, 'buffer':3, 'long':25, 'optInTimePeriod':14, 'bufferPercent':75 }",shorter period
BNB,NEBL,binance,CUSTOM_RSI,-30.54,-0.54,-192,-Inf,-37.68,7.14,3,0.05,0,1,0,-1.2,n/a,-1.2,-1.2,8890,10,70,57,2018-03-27 17:33:08,2018-01-27 00:03:00,2018-03-25 23:58:00,16.74,"'RSI': { 'bufferPercent':75, 'long':25, 'optInTimePeriod':14, 'buffer':3, 'short':75 }",shorter period
BNB,NULS,binance,CUSTOM_RSI,8.5,0.15,53,-0.14,-35.94,44.44,9,0.16,3,1,75,0.57,0.39,-0.81,-0.81,5087.5,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:58:00,16.63,"'RSI': { 'bufferPercent':75, 'short':75, 'buffer':3, 'long':25, 'optInTimePeriod':14 }",shorter period
BNB,OST,binance,CUSTOM_RSI,-13.6,-0.22,-80,0,-57.63,44.04,2,0.03,0,0,-1,,n/a,,n/a,n/a,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:53:00,25.15,"'RSI': { 'bufferPercent':75, 'short':75, 'optInTimePeriod':14, 'long':25, 'buffer':3 }",shorter period
BNB,WTC,binance,CUSTOM_RSI,-48.92,-0.86,-308,-1.32,-61.73,12.8,5,0.09,0,2,0,-0.08,n/a,-1.83,-0.96,17500,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:54:00,24.05,"'RSI': { 'long':25, 'optInTimePeriod':14, 'buffer':3, 'short':75, 'bufferPercent':75 }",shorter period
BNB,XLM,binance,CUSTOM_RSI,0,0,0,0,-8.98,8.98,1,0.02,0,0,-1,,n/a,,n/a,n/a,10,70,61,2018-03-27 17:33:08,2017-12-20 00:02:00,2018-02-19 23:58:00,29.22,"'RSI': { 'bufferPercent':75, 'short':75, 'optInTimePeriod':14, 'long':25, 'buffer':3 }",shorter period
BTC,ADA,binance,CUSTOM_RSI,18.13,0.3,106,0,11.87,6.26,16,0.26,5,2,71.43,0.62,0.58,-0.43,-0.33,6067.14,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,24.43,"'RSI': { 'bufferPercent':75, 'short':75, 'optInTimePeriod':14, 'long':25, 'buffer':3 }",shorter period
BTC,BNB,binance,CUSTOM_RSI,2.05,0.03,12,-0.3,200.79,-198.73,8,0.13,2,1,66.67,0.33,0.3,-0.25,-0.25,8223.33,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:59:00,32.99,"'RSI': { 'bufferPercent':75, 'short':75, 'optInTimePeriod':14, 'long':25, 'buffer':3 }",shorter period
BTC,BTM,poloniex,CUSTOM_RSI,-13,-0.23,-81,-0.52,-49.04,36.04,47,0.82,12,11,52.17,0.71,0.1,-0.83,-0.17,1815.65,10,70,57,2018-03-28 23:13:08,2018-01-27 00:56:00,2018-03-25 23:46:00,26.13,"'RSI': { 'bufferPercent':75, 'short':75, 'buffer':3, 'optInTimePeriod':14, 'long':25 }",shorter period
BTC,DGB,poloniex,CUSTOM_RSI,33.47,0.55,197,3.74,72.81,-39.34,8,0.13,3,0,100,1.55,0.92,0.79,n/a,2136.67,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,23.7,"'RSI': { 'bufferPercent':75, 'short':75, 'long':25, 'optInTimePeriod':14, 'buffer':3 }",shorter period
BTC,ETC,binance,CUSTOM_RSI,95.99,1.57,565,0.52,59.31,36.68,16,0.26,7,1,87.5,1.23,0.77,-0.11,-0.11,5317.5,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,17.44,"'RSI': { 'long':25, 'optInTimePeriod':14, 'buffer':3, 'short':75, 'bufferPercent':75 }",shorter period
BTC,GAME,poloniex,CUSTOM_RSI,65.61,1.08,386,0.35,53.27,12.34,13,0.21,4,2,66.67,1.74,0.82,-0.49,-0.39,6105,10,70,61,2018-04-04 08:56:20,2017-12-20 00:00:00,2018-02-19 23:57:00,0,shorter period,
BTC,GAS,binance,CUSTOM_RSI,356.14,5.94,2132,1.09,337.14,19,16,0.27,6,1,85.71,6.31,2.17,-0.65,-0.65,3907.14,10,70,60,2018-03-27 17:33:08,2017-12-12 00:01:00,2018-02-10 23:58:00,42.95,"'RSI': { 'bufferPercent':75, 'short':75, 'buffer':3, 'optInTimePeriod':14, 'long':25 }",shorter period
BTC,ICX,binance,CUSTOM_RSI,14.66,0.24,86,-0.03,243.07,-228.41,11,0.18,4,1,80,0.77,0.47,-1.27,-1.27,5080,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,31.7,"'RSI': { 'bufferPercent':75, 'short':75, 'optInTimePeriod':14, 'long':25, 'buffer':3 }",shorter period
BTC,OMG,binance,CUSTOM_RSI,12.7,0.21,74,-0.48,50.87,-38.17,15,0.25,5,2,71.43,0.36,0.23,-0.3,-0.24,4032.86,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,15.52,"'RSI': { 'buffer':3, 'long':25, 'optInTimePeriod':14, 'short':75, 'bufferPercent':75 }",shorter period
BTC,STR,poloniex,CUSTOM_RSI,-38.39,-0.67,-241,-1.74,-50.01,11.62,10,0.18,2,3,40,0.02,0.02,-0.74,-0.39,5986,10,70,57,2018-03-28 23:13:08,2018-01-27 00:00:00,2018-03-25 23:58:00,22.09,"'RSI': { 'long':25, 'optInTimePeriod':14, 'buffer':3, 'bufferPercent':75, 'short':75 }",shorter period
BTC,VEN,binance,CUSTOM_RSI,141.21,2.31,831,1.14,619.61,-478.41,13,0.21,6,0,100,1.49,0.78,0.51,n/a,3835,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,47.55,"'RSI': { 'buffer':3, 'optInTimePeriod':14, 'long':25, 'short':75, 'bufferPercent':75 }",shorter period
BTC,XRP,binance,CUSTOM_RSI,-26.51,-0.43,-156,-0.62,133.4,-159.91,14,0.23,2,4,33.33,0.76,0.52,-0.86,-0.42,5878.33,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:59:00,25.81,"'RSI': { 'bufferPercent':75, 'optInTimePeriod':14, 'long':25, 'buffer':3, 'short':75 }",shorter period
BTC,ZEC,binance,CUSTOM_RSI,18.28,0.3,107,0.01,24.38,-6.1,11,0.18,4,1,80,1.32,0.25,-1.04,-1.04,6054,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,13.05,"'RSI': { 'optInTimePeriod':14, 'long':25, 'buffer':3, 'short':75, 'bufferPercent':75 }",shorter period
ETH,AST,binance,CUSTOM_RSI,-35.53,-0.62,-223,-0.65,-34.89,-0.64,10,0.18,2,3,40,0.57,0.32,-1.28,-0.66,9026,10,70,57,2018-03-27 17:33:08,2018-01-27 00:03:00,2018-03-25 23:58:00,30.62,"'RSI': { 'optInTimePeriod':14, 'long':25, 'buffer':3, 'short':75, 'bufferPercent':75 }",shorter period
ETH,EOS,binance,CUSTOM_RSI,-23.76,-0.39,-139,-0.84,-29.24,5.48,18,0.3,3,5,37.5,0.26,0.23,-0.58,-0.29,5411.25,10,70,61,2018-04-04 08:56:20,2017-12-20 00:00:00,2018-02-19 23:58:00,0,shorter period,
ETH,FUEL,binance,CUSTOM_RSI,-29.89,-0.52,-188,-3.81,-28.59,-1.29,4,0.07,0,2,0,-0.32,n/a,-0.84,-0.58,26280,10,70,57,2018-03-27 17:33:08,2018-01-27 00:01:00,2018-03-25 23:58:00,15.31,"'RSI': { 'long':25, 'optInTimePeriod':14, 'buffer':3, 'short':75, 'bufferPercent':75 }",shorter period
ETH,ICN,kraken,CUSTOM_RSI,-4.98,-0.08,-29,-0.33,-26.29,21.3,15,0.25,4,3,57.14,0.6,0.49,-1.11,-0.78,7154.29,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,24.75,"'RSI': { 'bufferPercent':75, 'short':75, 'long':25, 'optInTimePeriod':14, 'buffer':3 }",shorter period
ETH,QTUM,binance,CUSTOM_RSI,23.69,0.39,141,0.07,32.4,-8.7,10,0.17,2,3,40,1.61,0.9,-0.44,-0.18,7494,10,70,60,2018-04-04 08:56:20,2017-12-12 00:01:00,2018-02-10 23:58:00,0,1,shorter period
ETH,VIB,binance,CUSTOM_RSI,10.17,0.18,64,-0.13,12.57,-2.4,7,0.12,2,1,66.67,0.51,0.32,-0.16,-0.16,4843.33,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:58:00,15.12,"'RSI': { 'bufferPercent':75, 'buffer':3, 'optInTimePeriod':14, 'long':25, 'short':75 }",shorter period
ETH,XVG,binance,CUSTOM_RSI,393.25,6.55,2354,0.37,294.2,99.05,15,0.25,4,3,57.14,22.71,7.74,-12.41,-6.16,6910,10,70,60,2018-04-04 08:56:20,2017-12-12 00:02:00,2018-02-10 23:58:00,0,shorter period,
EUR,XMR,kraken,CUSTOM_RSI,-35.89,-0.59,-211,-0.55,-18.23,-17.66,15,0.25,3,4,42.86,0.51,0.32,-1.27,-0.44,7010,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,20.52,"'RSI': { 'buffer':3, 'long':25, 'optInTimePeriod':14, 'short':75, 'bufferPercent':75 }",shorter period
USD,AVT,bitfinex,CUSTOM_RSI,-38.64,-0.67,-242,-0.62,-63.47,24.83,75,1.29,21,16,56.76,0.25,0.08,-1.1,-0.15,1222.7,10,70,58,2018-03-28 23:13:08,2018-01-26 13:30:00,2018-03-25 19:58:00,36.29,"'RSI': { 'short':75, 'bufferPercent':75, 'buffer':3, 'optInTimePeriod':14, 'long':25 }",shorter period
USD,DAT,bitfinex,CUSTOM_RSI,13.88,0.22,81,-0.04,-50.35,64.23,14,0.23,5,2,71.43,1.07,0.63,-1.92,-1.3,5755.71,10,70,62,2018-03-28 23:13:08,2017-12-19 23:17:00,2018-02-19 23:56:00,36.88,"'RSI': { 'short':75, 'bufferPercent':75, 'buffer':3, 'optInTimePeriod':14, 'long':25 }",shorter period
USD,ETP,bitfinex,CUSTOM_RSI,-47.55,-0.77,-279,-0.71,-50.35,2.8,12,0.19,2,4,33.33,0.51,0.31,-1.12,-0.65,7496.67,10,70,62,2018-03-28 23:13:08,2017-12-19 22:55:00,2018-02-19 23:43:00,35.1,"'RSI': { 'short':75, 'bufferPercent':75, 'buffer':3, 'long':25, 'optInTimePeriod':14 }",shorter period
USD,RCN,bitfinex,CUSTOM_RSI,46.55,0.8,288,-0.25,-63.33,109.88,79,1.36,27,12,69.23,1.47,0.18,-0.88,-0.29,1195.64,10,70,58,2018-03-28 23:13:08,2018-01-26 02:00:00,2018-03-25 23:27:00,38.04,"'RSI': { 'long':25, 'optInTimePeriod':14, 'buffer':3, 'short':75, 'bufferPercent':75 }",shorter period
USD,RRT,bitfinex,CUSTOM_RSI,-59.94,-0.97,-352,-0.55,-69.56,9.61,38,0.61,10,9,52.63,0.78,0.14,-1.22,-0.41,2971.58,10,70,62,2018-03-28 23:13:08,2017-12-19 19:20:00,2018-02-19 23:24:00,43.53,"'RSI': { 'short':75, 'bufferPercent':75, 'long':25, 'optInTimePeriod':14, 'buffer':3 }",shorter period
USD,SAN,bitfinex,CUSTOM_RSI,-39.09,-0.64,-233,-0.16,-53.99,14.9,9,0.15,2,2,50,2.45,1.64,-4.05,-2.37,10715,10,70,61,2018-03-28 23:13:08,2017-12-11 23:07:00,2018-02-10 23:58:00,44.19,"'RSI': { 'bufferPercent':75, 'short':75, 'buffer':3, 'long':25, 'optInTimePeriod':14 }",shorter period
USDT,BTC,binance,CUSTOM_RSI,-3.81,-0.06,-22,-0.64,-35.4,31.59,11,0.18,2,3,40,0.54,0.36,-0.56,-0.53,10278,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,21.96,"'RSI': { 'short':75, 'buffer':3, 'optInTimePeriod':14, 'long':25, 'bufferPercent':75 }",shorter period
USDT,ETH,binance,CUSTOM_RSI,35.01,0.58,209,0.05,66.89,-31.87,19,0.32,6,3,66.67,1.84,0.78,-2.6,-1.7,5893.33,10,70,60,2018-03-27 17:33:08,2017-12-12 00:00:00,2018-02-10 23:59:00,22.93,"'RSI': { 'bufferPercent':75, 'buffer':3, 'optInTimePeriod':14, 'long':25, 'short':75 }",shorter period
USDT,LTC,binance,CUSTOM_RSI,-27.55,-0.45,-162,-0.91,-34.44,6.89,12,0.2,2,4,33.33,0.31,0.21,-0.68,-0.31,8673.33,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,22.22,"'RSI': { 'bufferPercent':75, 'short':75, 'buffer':3, 'optInTimePeriod':14, 'long':25 }",shorter period
USDT,NEO,binance,CUSTOM_RSI,94.95,1.56,559,0.47,96.24,-1.3,12,0.2,4,2,66.67,2.54,1.26,-1.09,-0.78,8825,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,26.97,"'RSI': { 'bufferPercent':75, 'long':25, 'optInTimePeriod':14, 'buffer':3, 'short':75 }",shorter period
USDT,NXT,poloniex,CUSTOM_RSI,-28.81,-0.51,-181,-0.8,-54.67,25.86,8,0.14,1,3,25,0.36,0.36,-0.85,-0.57,13452.5,10,70,57,2018-03-28 23:13:08,2018-01-27 00:00:00,2018-03-25 23:53:00,26.64,"'RSI': { 'bufferPercent':75, 'short':75, 'buffer':3, 'long':25, 'optInTimePeriod':14 }",shorter period
BNB,ADX,binance,Dave,2986.81,48.96,17596,-0.5,-46.18,3032.99,1220,20,461,149,75.57,47.05,1.53,-38.37,-4.35,42.1,10,70,61,2018-03-27 17:33:08,2017-12-20 00:03:00,2018-02-19 23:58:00,47.35,"'thresholds': { 'up':0.01, 'maxExposureLength':30, 'persistence':1, 'down':0.01, 'getOut':0.03 }, 'short':2, 'long':10",shorter period
BNB,CND,binance,Dave,-97.29,-1.62,-582,-1.24,127.38,-224.67,1750,29.17,460,415,52.57,0.54,0.03,-0.39,-0.01,31.29,10,70,60,2018-03-27 17:33:08,2017-12-12 00:00:00,2018-02-10 23:55:00,49.72,"'thresholds': { 'getOut':0.03, 'down':0.01, 'up':0.01, 'persistence':1, 'maxExposureLength':30 }, 'short':2, 'long':10",shorter period
BNB,GTO,binance,Dave,2183.82,35.8,12865,-0.8,-17.85,2201.68,1564,25.64,578,204,73.91,77.14,2.87,-68.41,-9.48,39.27,10,70,61,2018-03-27 17:33:08,2017-12-20 00:01:00,2018-02-19 23:58:00,24.6,"'thresholds': { 'down':0.01, 'getOut':0.03, 'maxExposureLength':30, 'persistence':1, 'up':0.01 }, 'short':2, 'long':10",shorter period
BNB,NEBL,binance,Dave,-49.84,-0.87,-313,-1.65,-37.68,-12.16,908,15.93,365,89,80.4,0.58,0.03,-0.24,-0.12,55.55,10,70,57,2018-03-27 17:33:08,2018-01-27 00:03:00,2018-03-25 23:58:00,16.74,"'long':10, 'short':2, 'thresholds': { 'down':0.01, 'getOut':0.03, 'up':0.01, 'maxExposureLength':30, 'persistence':1 }",shorter period
BNB,NULS,binance,Dave,-73.62,-1.29,-463,-1.08,-35.94,-37.68,806,14.14,308,95,76.43,1.15,0.02,-0.31,-0.08,60.65,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:58:00,16.63,"'thresholds': { 'up':0.01, 'persistence':1, 'maxExposureLength':30, 'getOut':0.03, 'down':0.01 }, 'long':10, 'short':2",shorter period
BNB,OST,binance,Dave,1484568.13,24337.18,8746288,-0.4,-57.63,1484625.76,1663,27.26,639,192,76.9,16863.93,807.67,-9614.99,-2526.76,34.51,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:53:00,25.15,"'thresholds': { 'getOut':0.03, 'down':0.01, 'persistence':1, 'maxExposureLength':30, 'up':0.01 }, 'short':2, 'long':10",shorter period
BNB,WTC,binance,Dave,-71.82,-1.26,-452,-2.05,-61.73,-10.09,835,14.65,338,79,81.06,0.27,0.02,-0.31,-0.09,55.42,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:54:00,24.05,"'thresholds': { 'persistence':1, 'maxExposureLength':30, 'up':0.01, 'getOut':0.03, 'down':0.01 }, 'long':10, 'short':2",shorter period
BNB,XLM,binance,Dave,0.24,0,1,-0.96,-8.98,9.22,1144,18.75,425,147,74.3,9.99,0.26,-5.63,-0.7,39.13,10,70,61,2018-03-27 17:33:08,2017-12-20 00:02:00,2018-02-19 23:58:00,29.22,"'long':10, 'short':2, 'thresholds': { 'up':0.01, 'persistence':1, 'maxExposureLength':30, 'getOut':0.03, 'down':0.01 }",shorter period
BTC,ADA,binance,Dave,-95.21,-1.56,-560,-1.88,11.87,-107.08,614,10.07,129,178,42.02,0.11,0.02,-0.21,-0.01,79.12,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,24.43,"'thresholds': { 'maxExposureLength':30, 'persistence':1, 'up':0.01, 'down':0.01, 'getOut':0.03 }, 'short':2, 'long':10",shorter period
BTC,BNB,binance,Dave,-91.48,-1.5,-538,-1.59,200.79,-292.26,526,8.62,144,119,54.75,0.14,0.02,-0.34,-0.02,73.95,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:59:00,32.99,"'thresholds': { 'up':0.01, 'persistence':1, 'maxExposureLength':30, 'getOut':0.03, 'down':0.01 }, 'long':10, 'short':2",shorter period
BTC,BTM,poloniex,Dave,-7.99,-0.14,-50,-1.68,-49.04,41.05,525,9.21,196,66,74.81,0.53,0.04,-0.32,-0.12,94.85,10,70,57,2018-03-28 23:13:08,2018-01-27 00:56:00,2018-03-25 23:46:00,26.13,"'thresholds': { 'maxExposureLength':30, 'getOut':0.03, 'up':0.01, 'down':0.01, 'persistence':1 }, 'long':10, 'short':2",shorter period
BTC,DGB,poloniex,Dave,-98.39,-1.61,-579,-1.82,72.81,-171.2,750,12.3,137,238,36.53,0.16,0.02,-0.25,0,63.04,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,23.7,"'short':2, 'long':10, 'thresholds': { 'persistence':1, 'up':0.01, 'down':0.01, 'getOut':0.03, 'maxExposureLength':30 }",shorter period
BTC,ETC,binance,Dave,-87.47,-1.43,-515,-2.3,59.31,-146.77,422,6.92,121,90,57.35,0.09,0.01,-0.25,-0.02,93.84,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,17.44,"'thresholds': { 'down':0.01, 'getOut':0.03, 'maxExposureLength':30, 'persistence':1, 'up':0.01 }, 'short':2, 'long':10",shorter period
BTC,GAME,poloniex,Dave,-95.43,-1.56,-562,-1.98,53.27,-148.69,703,11.52,162,189,46.15,0.13,0.02,-0.43,0,72.45,10,70,61,2018-04-04 08:56:20,2017-12-20 00:00:00,2018-02-19 23:57:00,0,shorter period,
BTC,GAS,binance,Dave,-98.42,-1.64,-589,-1.53,337.14,-435.56,874,14.57,193,244,44.16,0.16,0.02,-0.32,0,54.78,10,70,60,2018-03-27 17:33:08,2017-12-12 00:01:00,2018-02-10 23:58:00,42.95,"'thresholds': { 'up':0.01, 'persistence':1, 'maxExposureLength':30, 'getOut':0.03, 'down':0.01 }, 'short':2, 'long':10",shorter period
BTC,ICX,binance,Dave,-99.16,-1.63,-584,-1.82,243.07,-342.24,976,16,178,310,36.48,0.28,0.02,-0.25,0,51.43,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,31.7,"'thresholds': { 'up':0.01, 'persistence':1, 'maxExposureLength':30, 'getOut':0.03, 'down':0.01 }, 'short':2, 'long':10",shorter period
BTC,OMG,binance,Dave,-93.3,-1.53,-549,-2.18,50.87,-144.17,494,8.1,108,139,43.72,0.17,0.02,-0.24,-0.01,98.62,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,15.52,"'thresholds': { 'getOut':0.03, 'down':0.01, 'persistence':1, 'maxExposureLength':30, 'up':0.01 }, 'long':10, 'short':2",shorter period
BTC,STR,poloniex,Dave,-81.92,-1.44,-515,-2.57,-50.01,-31.91,262,4.6,73,58,55.73,0.15,0.01,-0.21,-0.04,135.34,10,70,57,2018-03-28 23:13:08,2018-01-27 00:00:00,2018-03-25 23:58:00,22.09,"'thresholds': { 'maxExposureLength':30, 'getOut':0.03, 'up':0.01, 'down':0.01, 'persistence':1 }, 'long':10, 'short':2",shorter period
BTC,VEN,binance,Dave,-97.88,-1.6,-576,-1.76,619.61,-717.5,866,14.2,182,251,42.03,0.24,0.02,-0.26,0,55.61,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,47.55,"'long':10, 'short':2, 'thresholds': { 'persistence':1, 'maxExposureLength':30, 'up':0.01, 'getOut':0.03, 'down':0.01 }",shorter period
BTC,XRP,binance,Dave,-98.44,-1.61,-579,-1.78,133.4,-231.84,630,10.33,113,202,35.87,0.21,0.03,-0.27,-0.01,64.95,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:59:00,25.81,"'short':2, 'long':10, 'thresholds': { 'down':0.01, 'getOut':0.03, 'maxExposureLength':30, 'persistence':1, 'up':0.01 }",shorter period
BTC,ZEC,binance,Dave,-80.06,-1.31,-471,-2.5,24.38,-104.44,377,6.18,129,59,68.62,0.1,0.02,-0.23,-0.05,95.16,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,13.05,"'short':2, 'long':10, 'thresholds': { 'getOut':0.03, 'down':0.01, 'up':0.01, 'persistence':1, 'maxExposureLength':30 }",shorter period
ETH,AST,binance,Dave,-94.87,-1.66,-597,-1.99,-34.89,-59.98,633,11.11,118,198,37.34,0.13,0.01,-0.15,0,100.73,10,70,57,2018-03-27 17:33:08,2018-01-27 00:03:00,2018-03-25 23:58:00,30.62,"'short':2, 'long':10, 'thresholds': { 'getOut':0.03, 'down':0.01, 'persistence':1, 'maxExposureLength':30, 'up':0.01 }",shorter period
ETH,EOS,binance,Dave,-92.12,-1.51,-542,-2.43,-29.24,-62.87,462,7.57,111,120,48.05,0.15,0.02,-0.19,-0.02,94.07,10,70,61,2018-04-04 08:56:20,2017-12-20 00:00:00,2018-02-19 23:58:00,0,shorter period,
ETH,FUEL,binance,Dave,-58.55,-1.03,-368,-2.1,-28.59,-29.96,538,9.44,207,62,76.95,0.38,0.03,-0.25,-0.09,76.17,10,70,57,2018-03-27 17:33:08,2018-01-27 00:01:00,2018-03-25 23:58:00,15.31,"'short':2, 'long':10, 'thresholds': { 'getOut':0.03, 'down':0.01, 'persistence':1, 'maxExposureLength':30, 'up':0.01 }",shorter period
ETH,ICN,kraken,Dave,-80.67,-1.32,-475,-1.53,-26.29,-54.39,692,11.34,225,121,65.03,0.35,0.02,-0.44,-0.06,69.71,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,24.75,"'short':2, 'long':10, 'thresholds': { 'maxExposureLength':30, 'getOut':0.03, 'up':0.01, 'down':0.01, 'persistence':1 }",shorter period
ETH,QTUM,binance,Dave,-89.43,-1.49,-535,-1.96,32.4,-121.82,698,11.63,217,132,62.18,0.2,0.02,-0.27,-0.03,66.7,10,70,60,2018-04-04 08:56:20,2017-12-12 00:01:00,2018-02-10 23:58:00,0,1,shorter period
ETH,VIB,binance,Dave,-87.68,-1.54,-552,-2.26,12.57,-100.25,608,10.67,184,120,60.53,0.22,0.01,-0.26,-0.02,90.3,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:58:00,15.12,"'long':10, 'short':2, 'thresholds': { 'down':0.01, 'getOut':0.03, 'maxExposureLength':30, 'persistence':1, 'up':0.01 }",shorter period
ETH,XVG,binance,Dave,-99.93,-1.67,-598,-1.33,294.2,-394.13,1270,21.17,152,483,23.94,0.13,0.02,-0.27,0,44.77,10,70,60,2018-04-04 08:56:20,2017-12-12 00:02:00,2018-02-10 23:58:00,0,shorter period,
EUR,XMR,kraken,Dave,-98.97,-1.62,-583,-1.82,-18.23,-80.74,790,12.95,117,278,29.62,0.38,0.01,-0.24,0,64.18,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,20.52,"'thresholds': { 'persistence':1, 'down':0.01, 'up':0.01, 'getOut':0.03, 'maxExposureLength':30 }, 'long':10, 'short':2",shorter period
USD,AVT,bitfinex,Dave,-71.51,-1.23,-448,-1.3,-63.47,-8.04,610,10.52,206,99,67.54,0.24,0.02,-0.25,-0.05,92.56,10,70,58,2018-03-28 23:13:08,2018-01-26 13:30:00,2018-03-25 19:58:00,36.29,"'long':10, 'thresholds': { 'persistence':1, 'up':0.01, 'down':0.01, 'maxExposureLength':30, 'getOut':0.03 }, 'short':2",shorter period
USD,DAT,bitfinex,Dave,-99.19,-1.6,-584,-1.64,-50.35,-48.84,1203,19.4,134,467,22.3,0.13,0.02,-0.23,0,47.04,10,70,62,2018-03-28 23:13:08,2017-12-19 23:17:00,2018-02-19 23:56:00,36.88,"'long':10, 'thresholds': { 'getOut':0.03, 'maxExposureLength':30, 'persistence':1, 'up':0.01, 'down':0.01 }, 'short':2",shorter period
USD,ETP,bitfinex,Dave,-99.07,-1.6,-583,-1.39,-50.35,-48.72,1288,20.77,284,360,44.1,0.63,0.02,-0.56,0,43.37,10,70,62,2018-03-28 23:13:08,2017-12-19 22:55:00,2018-02-19 23:43:00,35.1,"'short':2, 'thresholds': { 'persistence':1, 'up':0.01, 'down':0.01, 'maxExposureLength':30, 'getOut':0.03 }, 'long':10",shorter period
USD,RCN,bitfinex,Dave,69.02,1.19,428,-0.64,-63.33,132.35,650,11.21,218,107,67.08,1.83,0.06,-0.82,-0.14,106.83,10,70,58,2018-03-28 23:13:08,2018-01-26 02:00:00,2018-03-25 23:27:00,38.04,"'short':2, 'thresholds': { 'maxExposureLength':30, 'getOut':0.03, 'down':0.01, 'up':0.01, 'persistence':1 }, 'long':10",shorter period
USD,RRT,bitfinex,Dave,-89.24,-1.44,-524,-1.12,-69.56,-19.68,939,15.15,306,163,65.25,0.39,0.02,-0.46,-0.05,61.19,10,70,62,2018-03-28 23:13:08,2017-12-19 19:20:00,2018-02-19 23:24:00,43.53,"'thresholds': { 'maxExposureLength':30, 'getOut':0.03, 'up':0.01, 'down':0.01, 'persistence':1 }, 'long':10, 'short':2",shorter period
USD,SAN,bitfinex,Dave,-98.82,-1.62,-591,-1.49,-53.99,-44.83,1182,19.38,251,340,42.47,0.19,0.02,-0.29,0,46.57,10,70,61,2018-03-28 23:13:08,2017-12-11 23:07:00,2018-02-10 23:58:00,44.19,"'thresholds': { 'maxExposureLength':30, 'getOut':0.03, 'up':0.01, 'down':0.01, 'persistence':1 }, 'long':10, 'short':2",shorter period
USDT,BTC,binance,Dave,-98.16,-1.61,-578,-2.03,-35.4,-62.76,690,11.31,108,237,31.3,0.12,0.01,-0.22,0,74.35,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,21.96,"'thresholds': { 'getOut':0.03, 'down':0.01, 'up':0.01, 'persistence':1, 'maxExposureLength':30 }, 'short':2, 'long':10",shorter period
USDT,ETH,binance,Dave,-99.27,-1.65,-594,-1.87,66.89,-166.15,796,13.27,110,288,27.64,0.19,0.01,-0.22,0,54.8,10,70,60,2018-03-27 17:33:08,2017-12-12 00:00:00,2018-02-10 23:59:00,22.93,"'thresholds': { 'down':0.01, 'getOut':0.03, 'maxExposureLength':30, 'persistence':1, 'up':0.01 }, 'long':10, 'short':2",shorter period
USDT,LTC,binance,Dave,-99.24,-1.63,-584,-1.81,-34.44,-64.8,834,13.67,91,326,21.82,0.24,0.01,-0.28,0,59.33,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,22.22,"'long':10, 'short':2, 'thresholds': { 'maxExposureLength':30, 'persistence':1, 'up':0.01, 'down':0.01, 'getOut':0.03 }",shorter period
USDT,NEO,binance,Dave,-99.79,-1.64,-587,-1.68,96.24,-196.03,1020,16.72,117,393,22.94,0.14,0.01,-0.3,0,48.71,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,26.97,"'thresholds': { 'getOut':0.03, 'down':0.01, 'up':0.01, 'persistence':1, 'maxExposureLength':30 }, 'long':10, 'short':2",shorter period
USDT,NXT,poloniex,Dave,-94.17,-1.65,-593,-2.2,-54.67,-39.51,639,11.21,173,146,54.23,0.19,0.01,-0.24,-0.01,79.47,10,70,57,2018-03-28 23:13:08,2018-01-27 00:00:00,2018-03-25 23:53:00,26.64,"'short':2, 'long':10, 'thresholds': { 'getOut':0.03, 'maxExposureLength':30, 'down':0.01, 'up':0.01, 'persistence':1 }",shorter period
BNB,ADX,binance,DEMA_MtGox,-100,-1.64,-589,-1.58,-46.18,-53.82,482,7.9,3,237,1.25,0.23,0.02,-0.81,0,175,10,70,61,2018-03-27 17:33:08,2017-12-20 00:03:00,2018-02-19 23:58:00,47.35,"'short':10, 'long':21, 'thresholds': { 'down':-0.025, 'up':0.025 }",shorter period
BNB,CND,binance,DEMA_MtGox,-99.35,-1.66,-594,-0.59,127.38,-226.73,412,6.87,19,186,9.27,0.52,0.02,-0.47,0,198.49,10,70,60,2018-03-27 17:33:08,2017-12-12 00:00:00,2018-02-10 23:55:00,49.72,"'long':21, 'short':10, 'thresholds': { 'down':-0.025, 'up':0.025 }",shorter period
BNB,GTO,binance,DEMA_MtGox,-99.98,-1.64,-588,-1.03,-17.85,-82.12,452,7.41,4,222,1.77,0.08,0.02,-0.24,0,173.76,10,70,61,2018-03-27 17:33:08,2017-12-20 00:01:00,2018-02-19 23:58:00,24.6,"'short':10, 'long':21, 'thresholds': { 'down':-0.025, 'up':0.025 }",shorter period
BNB,NEBL,binance,DEMA_MtGox,-99.36,-1.74,-625,-2.22,-37.68,-61.69,422,7.4,14,197,6.64,0.28,0.02,-0.17,-0.01,161.37,10,70,57,2018-03-27 17:33:08,2018-01-27 00:03:00,2018-03-25 23:58:00,16.74,"'thresholds': { 'up':0.025, 'down':-0.025 }, 'short':10, 'long':21",shorter period
BNB,NULS,binance,DEMA_MtGox,-99.4,-1.74,-625,-1.6,-35.94,-63.45,379,6.65,12,177,6.35,0.11,0.02,-0.26,0,205.77,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:58:00,16.63,"'long':21, 'short':10, 'thresholds': { 'up':0.025, 'down':-0.025 }",shorter period
BNB,OST,binance,DEMA_MtGox,-100,-1.64,-589,-1.62,-57.63,-42.37,557,9.13,0,278,0,0,n/a,-0.45,0,151.69,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:53:00,25.15,"'thresholds': { 'down':-0.025, 'up':0.025 }, 'short':10, 'long':21",shorter period
BNB,WTC,binance,DEMA_MtGox,-99,-1.74,-623,-2.48,-61.73,-37.28,387,6.79,12,181,6.22,0.26,0.02,-0.29,-0.01,186.53,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:54:00,24.05,"'long':21, 'short':10, 'thresholds': { 'down':-0.025, 'up':0.025 }",shorter period
BNB,XLM,binance,DEMA_MtGox,-99.88,-1.64,-588,-1.1,-8.98,-90.91,447,7.33,9,214,4.04,0.06,0.01,-0.66,0,195.74,10,70,61,2018-03-27 17:33:08,2017-12-20 00:02:00,2018-02-19 23:58:00,29.22,"'short':10, 'long':21, 'thresholds': { 'up':0.025, 'down':-0.025 }",shorter period
BTC,ADA,binance,DEMA_MtGox,-93.12,-1.53,-548,-1.38,11.87,-104.99,356,5.84,29,149,16.29,0.7,0.03,-0.36,-0.02,210.51,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,24.43,"'thresholds': { 'up':0.025, 'down':-0.025 }, 'short':10, 'long':21",shorter period
BTC,BNB,binance,DEMA_MtGox,-77.81,-1.28,-458,-1.06,200.79,-278.6,338,5.54,32,137,18.93,1.11,0.1,-0.5,-0.03,230.36,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:59:00,32.99,"'thresholds': { 'up':0.025, 'down':-0.025 }, 'short':10, 'long':21",shorter period
BTC,BTM,poloniex,DEMA_MtGox,-99.18,-1.74,-625,-2.27,-49.04,-50.14,359,6.3,9,170,5.03,0.08,0.01,-0.22,-0.01,204.64,10,70,57,2018-03-28 23:13:08,2018-01-27 00:56:00,2018-03-25 23:46:00,26.13,"'long':21, 'thresholds': { 'up':0.025, 'down':-0.025 }, 'short':10",shorter period
BTC,DGB,poloniex,DEMA_MtGox,-83.93,-1.38,-494,-0.99,72.81,-156.73,362,5.93,38,143,20.99,2.29,0.08,-0.49,-0.04,223.98,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,23.7,"'thresholds': { 'down':-0.025, 'up':0.025 }, 'long':21, 'short':10",shorter period
BTC,ETC,binance,DEMA_MtGox,-86.4,-1.42,-508,-1.69,59.31,-145.7,354,5.8,29,148,16.38,0.26,0.03,-0.16,-0.01,248.31,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,17.44,"'thresholds': { 'down':-0.025, 'up':0.025 }, 'short':10, 'long':21",shorter period
BTC,GAME,poloniex,DEMA_MtGox,-96.08,-1.58,-566,-1.67,53.27,-149.35,406,6.66,33,170,16.26,0.35,0.06,-0.47,-0.01,205.67,10,70,61,2018-04-04 08:56:20,2017-12-20 00:00:00,2018-02-19 23:57:00,0,shorter period,
BTC,GAS,binance,DEMA_MtGox,-91.79,-1.53,-549,-1.09,337.14,-428.93,368,6.13,38,146,20.65,0.55,0.05,-0.29,-0.02,242.39,10,70,60,2018-03-27 17:33:08,2017-12-12 00:01:00,2018-02-10 23:58:00,42.95,"'short':10, 'long':21, 'thresholds': { 'up':0.025, 'down':-0.025 }",shorter period
BTC,ICX,binance,DEMA_MtGox,-63.57,-1.04,-374,-0.65,243.07,-306.64,330,5.41,40,125,24.24,2.86,0.22,-0.92,-0.1,263.52,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,31.7,"'thresholds': { 'down':-0.025, 'up':0.025 }, 'long':21, 'short':10",shorter period
BTC,OMG,binance,DEMA_MtGox,-80.84,-1.33,-476,-1.3,50.87,-131.7,328,5.38,38,126,23.17,0.73,0.05,-0.34,-0.03,276.04,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,15.52,"'thresholds': { 'down':-0.025, 'up':0.025 }, 'long':21, 'short':10",shorter period
BTC,STR,poloniex,DEMA_MtGox,-86.85,-1.52,-546,-2.67,-50.01,-36.84,298,5.23,21,127,14.19,0.21,0.04,-0.1,-0.02,225.14,10,70,57,2018-03-28 23:13:08,2018-01-27 00:00:00,2018-03-25 23:58:00,22.09,"'short':10, 'thresholds': { 'down':-0.025, 'up':0.025 }, 'long':21",shorter period
BTC,VEN,binance,DEMA_MtGox,-69.29,-1.14,-408,-0.83,619.61,-688.9,325,5.33,41,121,25.31,0.75,0.06,-0.18,-0.05,286.23,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,47.55,"'long':21, 'short':10, 'thresholds': { 'down':-0.025, 'up':0.025 }",shorter period
BTC,XRP,binance,DEMA_MtGox,-56.76,-0.93,-334,-0.78,133.4,-190.16,305,5,30,122,19.74,3.28,0.3,-0.72,-0.06,246.25,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:59:00,25.81,"'thresholds': { 'up':0.025, 'down':-0.025 }, 'short':10, 'long':21",shorter period
BTC,ZEC,binance,DEMA_MtGox,-94.15,-1.54,-554,-2.4,24.38,-118.53,367,6.02,26,157,14.21,0.33,0.03,-0.19,-0.01,218.52,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,13.05,"'long':21, 'short':10, 'thresholds': { 'down':-0.025, 'up':0.025 }",shorter period
ETH,AST,binance,DEMA_MtGox,-88.22,-1.55,-555,-1.4,-34.89,-53.33,302,5.3,29,122,19.21,0.16,0.03,-0.24,-0.02,231.72,10,70,57,2018-03-27 17:33:08,2018-01-27 00:03:00,2018-03-25 23:58:00,30.62,"'long':21, 'short':10, 'thresholds': { 'up':0.025, 'down':-0.025 }",shorter period
ETH,EOS,binance,DEMA_MtGox,-86.6,-1.42,-510,-1.57,-29.24,-57.36,325,5.33,24,138,14.81,0.23,0.04,-0.34,-0.02,251.85,10,70,61,2018-04-04 08:56:20,2017-12-20 00:00:00,2018-02-19 23:58:00,0,shorter period,
ETH,FUEL,binance,DEMA_MtGox,-98.1,-1.72,-617,-2.37,-28.59,-69.51,361,6.33,11,169,6.11,0.14,0.04,-0.26,-0.01,199.17,10,70,57,2018-03-27 17:33:08,2018-01-27 00:01:00,2018-03-25 23:58:00,15.31,"'short':10, 'long':21, 'thresholds': { 'down':-0.025, 'up':0.025 }",shorter period
ETH,ICN,kraken,DEMA_MtGox,-96.37,-1.58,-567,-1.85,-26.29,-70.08,363,5.95,27,154,14.92,0.53,0.05,-0.34,-0.01,218.51,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,24.75,"'thresholds': { 'down':-0.025, 'up':0.025 }, 'long':21, 'short':10",shorter period
ETH,QTUM,binance,DEMA_MtGox,-96.34,-1.61,-576,-1.04,32.4,-128.73,384,6.4,21,170,10.99,1.42,0.02,-0.29,-0.02,194.19,10,70,60,2018-04-04 08:56:20,2017-12-12 00:01:00,2018-02-10 23:58:00,0,1,shorter period
ETH,VIB,binance,DEMA_MtGox,-97.09,-1.7,-611,-1.68,12.57,-109.66,373,6.54,15,171,8.06,1.13,0.03,-0.33,-0.01,196.4,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:58:00,15.12,"'thresholds': { 'down':-0.025, 'up':0.025 }, 'short':10, 'long':21",shorter period
ETH,XVG,binance,DEMA_MtGox,-66.71,-1.11,-399,-0.29,294.2,-360.91,338,5.63,32,136,19.05,9.87,0.33,-2.07,-0.12,229.7,10,70,60,2018-04-04 08:56:20,2017-12-12 00:02:00,2018-02-10 23:58:00,0,shorter period,
EUR,XMR,kraken,DEMA_MtGox,-84.86,-1.39,-499,-1.6,-18.23,-66.63,321,5.26,39,121,24.38,0.42,0.05,-0.17,-0.02,284.06,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,20.52,"'short':10, 'thresholds': { 'up':0.025, 'down':-0.025 }, 'long':21",shorter period
USD,AVT,bitfinex,DEMA_MtGox,-98.47,-1.7,-617,-1.81,-63.47,-35,301,5.19,21,129,14,0.4,0.03,-0.2,-0.02,252.93,10,70,58,2018-03-28 23:13:08,2018-01-26 13:30:00,2018-03-25 19:58:00,36.29,"'short':10, 'thresholds': { 'up':0.025, 'down':-0.025 }, 'long':21",shorter period
USD,DAT,bitfinex,DEMA_MtGox,-99.15,-1.6,-583,-1.38,-50.35,-48.8,396,6.39,26,172,13.13,0.27,0.04,-0.41,-0.01,217.58,10,70,62,2018-03-28 23:13:08,2017-12-19 23:17:00,2018-02-19 23:56:00,36.88,"'short':10, 'thresholds': { 'up':0.025, 'down':-0.025 }, 'long':21",shorter period
USD,ETP,bitfinex,DEMA_MtGox,-98.51,-1.59,-579,-1.27,-50.35,-48.16,402,6.48,24,177,11.94,0.47,0.03,-0.26,-0.01,217.81,10,70,62,2018-03-28 23:13:08,2017-12-19 22:55:00,2018-02-19 23:43:00,35.1,"'short':10, 'long':21, 'thresholds': { 'up':0.025, 'down':-0.025 }",shorter period
USD,RCN,bitfinex,DEMA_MtGox,-99.79,-1.72,-618,-1.28,-63.33,-36.46,318,5.48,17,141,10.76,0.14,0.03,-0.31,-0.01,257.28,10,70,58,2018-03-28 23:13:08,2018-01-26 02:00:00,2018-03-25 23:27:00,38.04,"'short':10, 'thresholds': { 'down':-0.025, 'up':0.025 }, 'long':21",shorter period
USD,RRT,bitfinex,DEMA_MtGox,-99.77,-1.61,-586,-1.63,-69.56,-30.22,359,5.79,10,169,5.59,0.21,0.03,-0.41,0,228.88,10,70,62,2018-03-28 23:13:08,2017-12-19 19:20:00,2018-02-19 23:24:00,43.53,"'short':10, 'long':21, 'thresholds': { 'down':-0.025, 'up':0.025 }",shorter period
USD,SAN,bitfinex,DEMA_MtGox,-99.01,-1.62,-592,-1.19,-53.99,-45.02,426,6.98,27,185,12.74,0.97,0.02,-0.21,-0.01,197.08,10,70,61,2018-03-28 23:13:08,2017-12-11 23:07:00,2018-02-10 23:58:00,44.19,"'short':10, 'thresholds': { 'down':-0.025, 'up':0.025 }, 'long':21",shorter period
USDT,BTC,binance,DEMA_MtGox,-89.05,-1.46,-524,-2.02,-35.4,-53.66,337,5.52,39,129,23.21,0.22,0.02,-0.23,-0.02,267.98,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,21.96,"'thresholds': { 'down':-0.025, 'up':0.025 }, 'long':21, 'short':10",shorter period
USDT,ETH,binance,DEMA_MtGox,-81.19,-1.35,-486,-1.46,66.89,-148.08,331,5.52,44,121,26.67,0.33,0.06,-0.22,-0.03,289.15,10,70,60,2018-03-27 17:33:08,2017-12-12 00:00:00,2018-02-10 23:59:00,22.93,"'long':21, 'short':10, 'thresholds': { 'down':-0.025, 'up':0.025 }",shorter period
USDT,LTC,binance,DEMA_MtGox,-90.66,-1.49,-534,-1.54,-34.44,-56.22,352,5.77,39,137,22.16,0.3,0.03,-0.24,-0.02,250.57,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,22.22,"'long':21, 'short':10, 'thresholds': { 'up':0.025, 'down':-0.025 }",shorter period
USDT,NEO,binance,DEMA_MtGox,-85.05,-1.39,-501,-1.1,96.24,-181.3,339,5.56,51,118,30.18,0.38,0.07,-0.27,-0.04,291.78,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,26.97,"'long':21, 'short':10, 'thresholds': { 'down':-0.025, 'up':0.025 }",shorter period
USDT,NXT,poloniex,DEMA_MtGox,-93.64,-1.64,-589,-1.93,-54.67,-38.97,343,6.02,32,139,18.71,0.22,0.02,-0.21,-0.01,231.29,10,70,57,2018-03-28 23:13:08,2018-01-27 00:00:00,2018-03-25 23:53:00,26.64,"'short':10, 'thresholds': { 'down':-0.025, 'up':0.025 }, 'long':21",shorter period
BNB,ADX,binance,DEMACrossover,-100,-1.64,-589,-1.44,-46.18,-53.82,631,10.34,9,306,2.86,0.15,0.07,-0.66,0,143.71,10,70,61,2018-03-27 17:33:08,2017-12-20 00:03:00,2018-02-19 23:58:00,47.35,"'shortSize':13, 'longSize':34, 'demaCrossover': { }, 'firstTrade':'buy'",shorter period
BNB,CND,binance,DEMACrossover,-99.94,-1.67,-598,-0.64,127.38,-227.32,547,9.12,19,254,6.96,0.64,0.02,-0.69,0,160.29,10,70,60,2018-03-27 17:33:08,2017-12-12 00:00:00,2018-02-10 23:55:00,49.72,"'longSize':34, 'shortSize':13, 'firstTrade':'buy', 'demaCrossover': { }",shorter period
BNB,GTO,binance,DEMACrossover,-100,-1.64,-589,-1.24,-17.85,-82.15,632,10.36,8,308,2.53,0.09,0.03,-0.24,0,141.3,10,70,61,2018-03-27 17:33:08,2017-12-20 00:01:00,2018-02-19 23:58:00,24.6,"'longSize':34, 'shortSize':13, 'firstTrade':'buy', 'demaCrossover': { }",shorter period
BNB,NEBL,binance,DEMACrossover,-99.94,-1.75,-629,-2.32,-37.68,-62.26,616,10.81,13,295,4.22,0.35,0.03,-0.29,0,133.05,10,70,57,2018-03-27 17:33:08,2018-01-27 00:03:00,2018-03-25 23:58:00,16.74,"'demaCrossover': { }, 'firstTrade':'buy', 'shortSize':13, 'longSize':34",shorter period
BNB,NULS,binance,DEMACrossover,-99.86,-1.75,-628,-1.86,-35.94,-63.92,530,9.3,20,245,7.55,0.1,0.02,-0.23,0,159.85,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:58:00,16.63,"'demaCrossover': { }, 'firstTrade':'buy', 'shortSize':13, 'longSize':34",shorter period
BNB,OST,binance,DEMACrossover,-100,-1.64,-589,-1.5,-57.63,-42.37,620,10.16,1,309,0.32,0.02,0.02,-0.37,0,142.68,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:53:00,25.15,"'firstTrade':'buy', 'demaCrossover': { }, 'longSize':34, 'shortSize':13",shorter period
BNB,WTC,binance,DEMACrossover,-99.71,-1.75,-627,-2.29,-61.73,-37.98,526,9.23,16,247,6.08,0.33,0.02,-0.35,0,155.32,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:54:00,24.05,"'longSize':34, 'shortSize':13, 'firstTrade':'buy', 'demaCrossover': { }",shorter period
BNB,XLM,binance,DEMACrossover,-99.98,-1.64,-589,-1.47,-8.98,-91.01,591,9.69,8,287,2.71,0.04,0.01,-0.54,0,147.19,10,70,61,2018-03-27 17:33:08,2017-12-20 00:02:00,2018-02-19 23:58:00,29.22,"'longSize':34, 'shortSize':13, 'firstTrade':'buy', 'demaCrossover': { }",shorter period
BTC,ADA,binance,DEMACrossover,-96.09,-1.58,-566,-1.82,11.87,-107.96,478,7.84,37,202,15.48,0.46,0.04,-0.19,-0.01,182.8,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,24.43,"'shortSize':13, 'longSize':34, 'demaCrossover': { }, 'firstTrade':'buy'",shorter period
BTC,BNB,binance,DEMACrossover,-96.26,-1.58,-567,-1.47,200.79,-297.04,489,8.02,43,201,17.62,0.59,0.05,-0.71,-0.01,184.88,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:59:00,32.99,"'longSize':34, 'shortSize':13, 'firstTrade':'buy', 'demaCrossover': { }",shorter period
BTC,BTM,poloniex,DEMACrossover,-99.76,-1.75,-628,-2.17,-49.04,-50.72,499,8.75,12,237,4.82,0.27,0.02,-0.21,0,165.42,10,70,57,2018-03-28 23:13:08,2018-01-27 00:56:00,2018-03-25 23:46:00,26.13,"'firstTrade':'buy', 'demaCrossover': { }, 'shortSize':13, 'longSize':34",shorter period
BTC,DGB,poloniex,DEMACrossover,-95.84,-1.57,-564,-1.13,72.81,-168.65,501,8.21,45,205,18,1.72,0.07,-0.7,-0.02,172.08,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,23.7,"'firstTrade':'buy', 'demaCrossover': { }, 'longSize':34, 'shortSize':13",shorter period
BTC,ETC,binance,DEMACrossover,-94.39,-1.55,-556,-2.03,59.31,-153.7,478,7.84,38,201,15.9,0.34,0.02,-0.22,-0.01,179.5,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,17.44,"'longSize':34, 'shortSize':13, 'firstTrade':'buy', 'demaCrossover': { }",shorter period
BTC,GAME,poloniex,DEMACrossover,-97.67,-1.6,-575,-1.73,53.27,-150.94,514,8.43,43,214,16.73,0.4,0.07,-0.37,-0.01,170,10,70,61,2018-04-04 08:56:20,2017-12-20 00:00:00,2018-02-19 23:57:00,0,shorter period,
BTC,GAS,binance,DEMACrossover,-91.95,-1.53,-550,-1.13,337.14,-429.09,465,7.75,58,174,25,0.68,0.05,-0.58,-0.02,181.9,10,70,60,2018-03-27 17:33:08,2017-12-12 00:01:00,2018-02-10 23:58:00,42.95,"'demaCrossover': { }, 'firstTrade':'buy', 'shortSize':13, 'longSize':34",shorter period
BTC,ICX,binance,DEMACrossover,-81.65,-1.34,-481,-1.03,243.07,-324.73,442,7.25,67,154,30.32,1.44,0.13,-0.49,-0.06,201.76,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,31.7,"'shortSize':13, 'longSize':34, 'demaCrossover': { }, 'firstTrade':'buy'",shorter period
BTC,OMG,binance,DEMACrossover,-90.38,-1.48,-532,-1.66,50.87,-141.24,469,7.69,49,185,20.94,0.36,0.03,-0.25,-0.02,192.48,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,15.52,"'shortSize':13, 'longSize':34, 'demaCrossover': { }, 'firstTrade':'buy'",shorter period
BTC,STR,poloniex,DEMACrossover,-96.69,-1.7,-608,-2.9,-50.01,-46.68,487,8.54,24,219,9.88,0.17,0.02,-0.11,-0.01,163.79,10,70,57,2018-03-28 23:13:08,2018-01-27 00:00:00,2018-03-25 23:58:00,22.09,"'longSize':34, 'shortSize':13, 'firstTrade':'buy', 'demaCrossover': { }",shorter period
BTC,VEN,binance,DEMACrossover,-89.97,-1.47,-529,-1.18,619.61,-709.58,476,7.8,67,171,28.15,0.8,0.04,-0.34,-0.02,191.47,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,47.55,"'firstTrade':'buy', 'demaCrossover': { }, 'longSize':34, 'shortSize':13",shorter period
BTC,XRP,binance,DEMACrossover,-85.55,-1.4,-503,-1.48,133.4,-218.96,461,7.56,49,181,21.3,0.85,0.09,-0.52,-0.02,186.57,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:59:00,25.81,"'shortSize':13, 'longSize':34, 'demaCrossover': { }, 'firstTrade':'buy'",shorter period
BTC,ZEC,binance,DEMACrossover,-97.73,-1.6,-575,-2.47,24.38,-122.11,522,8.56,28,233,10.73,0.41,0.03,-0.17,-0.01,163.83,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,13.05,"'firstTrade':'buy', 'demaCrossover': { }, 'longSize':34, 'shortSize':13",shorter period
ETH,AST,binance,DEMACrossover,-94.27,-1.65,-593,-1.53,-34.89,-59.38,406,7.12,41,162,20.2,0.31,0.03,-0.26,-0.01,201.87,10,70,57,2018-03-27 17:33:08,2018-01-27 00:03:00,2018-03-25 23:58:00,30.62,"'firstTrade':'buy', 'demaCrossover': { }, 'longSize':34, 'shortSize':13",shorter period
ETH,EOS,binance,DEMACrossover,-84.61,-1.39,-498,-1.39,-29.24,-55.37,420,6.89,48,162,22.86,0.45,0.03,-0.37,-0.02,202,10,70,61,2018-04-04 08:56:20,2017-12-20 00:00:00,2018-02-19 23:58:00,0,shorter period,
ETH,FUEL,binance,DEMACrossover,-99.17,-1.74,-624,-2.76,-28.59,-70.58,504,8.84,16,236,6.35,0.2,0.03,-0.18,0,165.28,10,70,57,2018-03-27 17:33:08,2018-01-27 00:01:00,2018-03-25 23:58:00,15.31,"'demaCrossover': { }, 'firstTrade':'buy', 'shortSize':13, 'longSize':34",shorter period
ETH,ICN,kraken,DEMACrossover,-98.35,-1.61,-579,-1.56,-26.29,-72.06,460,7.54,32,198,13.91,0.57,0.06,-0.5,-0.01,198.87,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,24.75,"'longSize':34, 'shortSize':13, 'demaCrossover': { }, 'firstTrade':'buy'",shorter period
ETH,QTUM,binance,DEMACrossover,-98.98,-1.65,-592,-1.15,32.4,-131.38,541,9.02,24,246,8.89,1.38,0.03,-0.29,-0.01,161.3,10,70,60,2018-04-04 08:56:20,2017-12-12 00:01:00,2018-02-10 23:58:00,0,1,shorter period
ETH,VIB,binance,DEMACrossover,-98.53,-1.73,-620,-1.99,12.57,-111.1,498,8.74,20,229,8.03,0.73,0.02,-0.58,-0.01,168.76,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:58:00,15.12,"'demaCrossover': { }, 'firstTrade':'buy', 'shortSize':13, 'longSize':34",shorter period
ETH,XVG,binance,DEMACrossover,-82.8,-1.38,-495,-0.57,294.2,-377,455,7.58,51,176,22.47,3.38,0.25,-1.13,-0.06,189.12,10,70,60,2018-04-04 08:56:20,2017-12-12 00:02:00,2018-02-10 23:58:00,0,shorter period,
EUR,XMR,kraken,DEMACrossover,-96.68,-1.58,-569,-1.67,-18.23,-78.45,496,8.13,49,199,19.76,0.38,0.03,-0.27,-0.01,183.51,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,20.52,"'demaCrossover': { }, 'firstTrade':'buy', 'shortSize':13, 'longSize':34",shorter period
USD,AVT,bitfinex,DEMACrossover,-97.66,-1.68,-612,-1.47,-63.47,-34.19,393,6.78,41,155,20.92,0.25,0.02,-0.17,-0.01,214.69,10,70,58,2018-03-28 23:13:08,2018-01-26 13:30:00,2018-03-25 19:58:00,36.29,"'demaCrossover': { }, 'firstTrade':'buy', 'shortSize':13, 'longSize':34",shorter period
USD,DAT,bitfinex,DEMACrossover,-99.46,-1.6,-585,-1.31,-50.35,-49.11,505,8.15,38,214,15.08,0.38,0.06,-0.37,-0.01,176.83,10,70,62,2018-03-28 23:13:08,2017-12-19 23:17:00,2018-02-19 23:56:00,36.88,"'shortSize':13, 'longSize':34, 'demaCrossover': { }, 'firstTrade':'buy'",shorter period
USD,ETP,bitfinex,DEMACrossover,-99.57,-1.61,-586,-1.27,-50.35,-49.22,502,8.1,25,226,9.96,0.32,0.03,-0.58,0,175.7,10,70,62,2018-03-28 23:13:08,2017-12-19 22:55:00,2018-02-19 23:43:00,35.1,"'demaCrossover': { }, 'firstTrade':'buy', 'longSize':34, 'shortSize':13",shorter period
USD,RCN,bitfinex,DEMACrossover,-99.83,-1.72,-619,-1.24,-63.33,-36.5,419,7.22,17,192,8.13,0.14,0.04,-0.2,0,207.99,10,70,58,2018-03-28 23:13:08,2018-01-26 02:00:00,2018-03-25 23:27:00,38.04,"'shortSize':13, 'longSize':34, 'firstTrade':'buy', 'demaCrossover': { }",shorter period
USD,RRT,bitfinex,DEMACrossover,-99.94,-1.61,-587,-1.58,-69.56,-30.39,500,8.06,20,230,8,0.3,0.02,-0.46,0,179.28,10,70,62,2018-03-28 23:13:08,2017-12-19 19:20:00,2018-02-19 23:24:00,43.53,"'firstTrade':'buy', 'demaCrossover': { }, 'longSize':34, 'shortSize':13",shorter period
USD,SAN,bitfinex,DEMACrossover,-99.18,-1.63,-593,-1.11,-53.99,-45.19,503,8.25,35,216,13.94,0.58,0.03,-0.22,-0.01,171.35,10,70,61,2018-03-28 23:13:08,2017-12-11 23:07:00,2018-02-10 23:58:00,44.19,"'shortSize':13, 'longSize':34, 'demaCrossover': { }, 'firstTrade':'buy'",shorter period
USDT,BTC,binance,DEMACrossover,-94.2,-1.54,-554,-2.03,-35.4,-58.8,436,7.15,50,168,22.94,0.26,0.03,-0.24,-0.01,207.75,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,21.96,"'firstTrade':'buy', 'demaCrossover': { }, 'longSize':34, 'shortSize':13",shorter period
USDT,ETH,binance,DEMACrossover,-88.82,-1.48,-531,-1.55,66.89,-155.7,445,7.42,63,159,28.38,0.42,0.06,-0.26,-0.02,205.18,10,70,60,2018-03-27 17:33:08,2017-12-12 00:00:00,2018-02-10 23:59:00,22.93,"'demaCrossover': { }, 'firstTrade':'buy', 'shortSize':13, 'longSize':34",shorter period
USDT,LTC,binance,DEMACrossover,-95.71,-1.57,-563,-1.71,-34.44,-61.27,474,7.77,54,183,22.78,0.38,0.02,-0.21,-0.01,189.92,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,22.22,"'shortSize':13, 'longSize':34, 'demaCrossover': { }, 'firstTrade':'buy'",shorter period
USDT,NEO,binance,DEMACrossover,-94.21,-1.54,-554,-1.23,96.24,-190.45,464,7.61,59,173,25.43,0.24,0.05,-0.37,-0.02,189.96,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,26.97,"'firstTrade':'buy', 'demaCrossover': { }, 'longSize':34, 'shortSize':13",shorter period
USDT,NXT,poloniex,DEMACrossover,-96.55,-1.69,-608,-1.66,-54.67,-41.89,446,7.82,41,182,18.39,0.17,0.03,-0.19,-0.01,188.16,10,70,57,2018-03-28 23:13:08,2018-01-27 00:00:00,2018-03-25 23:53:00,26.64,"'shortSize':13, 'longSize':34, 'firstTrade':'buy', 'demaCrossover': { }",shorter period
BNB,ADX,binance,DEMARSICrossover,-100,-1.64,-589,-1.6,-46.18,-53.82,798,13.08,11,388,2.76,0.21,0.07,-0.47,0,109.97,10,70,61,2018-03-27 17:33:08,2017-12-20 00:03:00,2018-02-19 23:58:00,47.35,"'demaRSICrossover': { }, 'rsiReBuyPointLow':60, 'shortSize':9, 'rsiSize':14, 'firstTrade':'buy', 'rsiSellPoint':75, 'rsiReBuyPointHigh':65, 'longSize':34",shorter period
BNB,CND,binance,DEMARSICrossover,-99.96,-1.67,-598,-0.85,127.38,-227.34,683,11.38,24,317,7.04,0.35,0.01,-0.67,0,122.29,10,70,60,2018-03-27 17:33:08,2017-12-12 00:00:00,2018-02-10 23:55:00,49.72,"'demaRSICrossover': { }, 'rsiReBuyPointLow':60, 'shortSize':9, 'rsiSize':14, 'firstTrade':'buy', 'rsiSellPoint':75, 'rsiReBuyPointHigh':65, 'longSize':34",shorter period
BNB,GTO,binance,DEMARSICrossover,-100,-1.64,-589,-1.06,-17.85,-82.15,810,13.28,8,397,1.98,0.36,0.05,-0.3,0,106.15,10,70,61,2018-03-27 17:33:08,2017-12-20 00:01:00,2018-02-19 23:58:00,24.6,"'longSize':34, 'rsiReBuyPointHigh':65, 'rsiSellPoint':75, 'rsiReBuyPointLow':60, 'shortSize':9, 'demaRSICrossover': { }, 'firstTrade':'buy', 'rsiSize':14",shorter period
BNB,NEBL,binance,DEMARSICrossover,-99.99,-1.75,-629,-2.05,-37.68,-62.31,778,13.65,21,368,5.4,0.12,0.02,-0.26,0,101.54,10,70,57,2018-03-27 17:33:08,2018-01-27 00:03:00,2018-03-25 23:58:00,16.74,"'rsiSize':14, 'firstTrade':'buy', 'shortSize':9, 'rsiReBuyPointLow':60, 'demaRSICrossover': { }, 'rsiSellPoint':75, 'rsiReBuyPointHigh':65, 'longSize':34",shorter period
BNB,NULS,binance,DEMARSICrossover,-99.92,-1.75,-629,-1.65,-35.94,-63.97,684,12,26,316,7.6,0.21,0.02,-0.22,0,121.29,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:58:00,16.63,"'rsiSize':14, 'firstTrade':'buy', 'demaRSICrossover': { }, 'rsiReBuyPointLow':60, 'shortSize':9, 'longSize':34, 'rsiSellPoint':75, 'rsiReBuyPointHigh':65",shorter period
BNB,OST,binance,DEMARSICrossover,-100,-1.64,-589,-1.21,-57.63,-42.37,844,13.84,3,419,0.71,0.02,0.01,-0.44,0,104.08,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:53:00,25.15,"'longSize':34, 'rsiReBuyPointHigh':65, 'rsiSellPoint':75, 'rsiReBuyPointLow':60, 'demaRSICrossover': { }, 'shortSize':9, 'firstTrade':'buy', 'rsiSize':14",shorter period
BNB,WTC,binance,DEMARSICrossover,-99.95,-1.75,-629,-2.86,-61.73,-38.22,712,12.49,17,339,4.78,0.43,0.02,-0.23,0,112.89,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:54:00,24.05,"'longSize':34, 'rsiSellPoint':75, 'rsiReBuyPointHigh':65, 'shortSize':9, 'rsiReBuyPointLow':60, 'demaRSICrossover': { }, 'rsiSize':14, 'firstTrade':'buy'",shorter period
BNB,XLM,binance,DEMARSICrossover,-100,-1.64,-589,-1.22,-8.98,-91.02,757,12.41,12,366,3.17,0.04,0.01,-0.41,0,112.43,10,70,61,2018-03-27 17:33:08,2017-12-20 00:02:00,2018-02-19 23:58:00,29.22,"'longSize':34, 'rsiReBuyPointHigh':65, 'rsiSellPoint':75, 'firstTrade':'buy', 'rsiSize':14, 'shortSize':9, 'rsiReBuyPointLow':60, 'demaRSICrossover': { }",shorter period
BTC,ADA,binance,DEMARSICrossover,-97.6,-1.6,-574,-1.86,11.87,-109.47,640,10.49,58,262,18.12,0.34,0.03,-0.18,-0.01,127.91,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,24.43,"'shortSize':9, 'rsiReBuyPointLow':60, 'demaRSICrossover': { }, 'rsiSize':14, 'firstTrade':'buy', 'longSize':34, 'rsiSellPoint':75, 'rsiReBuyPointHigh':65",shorter period
BTC,BNB,binance,DEMARSICrossover,-97.73,-1.6,-575,-1.44,200.79,-298.52,667,10.93,59,274,17.72,0.49,0.08,-0.59,-0.01,126.19,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:59:00,32.99,"'firstTrade':'buy', 'rsiSize':14, 'demaRSICrossover': { }, 'rsiReBuyPointLow':60, 'shortSize':9, 'longSize':34, 'rsiReBuyPointHigh':65, 'rsiSellPoint':75",shorter period
BTC,BTM,poloniex,DEMARSICrossover,-99.86,-1.75,-629,-2.06,-49.04,-50.83,617,10.82,14,294,4.55,0.21,0.03,-0.12,0,118.73,10,70,57,2018-03-28 23:13:08,2018-01-27 00:56:00,2018-03-25 23:46:00,26.13,"'demaRSICrossover': { }, 'shortSize':9, 'longSize':34, 'rsiReBuyPointLow':60, 'rsiSize':14, 'rsiReBuyPointHigh':65, 'firstTrade':'buy', 'rsiSellPoint':75",shorter period
BTC,DGB,poloniex,DEMARSICrossover,-98.82,-1.62,-582,-1.73,72.81,-171.63,685,11.23,60,282,17.54,0.6,0.06,-0.36,-0.01,120.38,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,23.7,"'rsiSellPoint':75, 'firstTrade':'buy', 'rsiReBuyPointHigh':65, 'rsiSize':14, 'rsiReBuyPointLow':60, 'shortSize':9, 'longSize':34, 'demaRSICrossover': { }",shorter period
BTC,ETC,binance,DEMARSICrossover,-97.84,-1.6,-576,-2.66,59.31,-157.14,656,10.75,46,282,14.02,0.11,0.03,-0.23,0,118.14,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,17.44,"'rsiSize':14, 'firstTrade':'buy', 'shortSize':9, 'rsiReBuyPointLow':60, 'demaRSICrossover': { }, 'longSize':34, 'rsiSellPoint':75, 'rsiReBuyPointHigh':65",shorter period
BTC,GAME,poloniex,DEMARSICrossover,-99.34,-1.63,-585,-2,53.27,-152.61,720,11.8,64,296,17.78,0.36,0.05,-0.27,-0.01,112.97,10,70,61,2018-04-04 08:56:20,2017-12-20 00:00:00,2018-02-19 23:57:00,0,shorter period,
BTC,GAS,binance,DEMARSICrossover,-92.27,-1.54,-552,-1.18,337.14,-429.41,629,10.48,80,234,25.48,0.57,0.06,-0.27,-0.02,125.22,10,70,60,2018-03-27 17:33:08,2017-12-12 00:01:00,2018-02-10 23:58:00,42.95,"'longSize':34, 'rsiReBuyPointHigh':65, 'rsiSellPoint':75, 'firstTrade':'buy', 'rsiSize':14, 'demaRSICrossover': { }, 'shortSize':9, 'rsiReBuyPointLow':60",shorter period
BTC,ICX,binance,DEMARSICrossover,-92.88,-1.52,-547,-1.46,243.07,-335.96,602,9.87,85,216,28.24,0.68,0.08,-0.28,-0.03,135.91,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,31.7,"'rsiSellPoint':75, 'rsiReBuyPointHigh':65, 'longSize':34, 'rsiReBuyPointLow':60, 'demaRSICrossover': { }, 'shortSize':9, 'rsiSize':14, 'firstTrade':'buy'",shorter period
BTC,OMG,binance,DEMARSICrossover,-96.89,-1.59,-570,-2.13,50.87,-147.75,671,11,62,273,18.51,0.4,0.03,-0.22,-0.01,122.54,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,15.52,"'longSize':34, 'rsiSellPoint':75, 'rsiReBuyPointHigh':65, 'rsiSize':14, 'firstTrade':'buy', 'demaRSICrossover': { }, 'shortSize':9, 'rsiReBuyPointLow':60",shorter period
BTC,STR,poloniex,DEMARSICrossover,-98.3,-1.72,-619,-3.18,-50.01,-48.29,641,11.25,27,293,8.44,0.23,0.01,-0.12,0,118.5,10,70,57,2018-03-28 23:13:08,2018-01-27 00:00:00,2018-03-25 23:58:00,22.09,"'demaRSICrossover': { }, 'rsiReBuyPointHigh':65, 'rsiReBuyPointLow':60, 'rsiSize':14, 'longSize':34, 'shortSize':9, 'rsiSellPoint':75, 'firstTrade':'buy'",shorter period
BTC,VEN,binance,DEMARSICrossover,-95.54,-1.57,-562,-1.67,619.61,-715.15,643,10.54,82,239,25.55,0.27,0.04,-0.3,-0.01,128.97,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,47.55,"'rsiSellPoint':75, 'rsiReBuyPointHigh':65, 'longSize':34, 'rsiSize':14, 'firstTrade':'buy', 'shortSize':9, 'demaRSICrossover': { }, 'rsiReBuyPointLow':60",shorter period
BTC,XRP,binance,DEMARSICrossover,-95.14,-1.56,-560,-1.72,133.4,-228.54,615,10.08,64,243,20.85,0.63,0.08,-0.4,-0.01,128.7,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:59:00,25.81,"'longSize':34, 'rsiReBuyPointHigh':65, 'rsiSellPoint':75, 'demaRSICrossover': { }, 'shortSize':9, 'rsiReBuyPointLow':60, 'firstTrade':'buy', 'rsiSize':14",shorter period
BTC,ZEC,binance,DEMARSICrossover,-98.62,-1.62,-581,-2.95,24.38,-123.01,678,11.11,40,299,11.8,0.27,0.03,-0.16,0,118.61,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,13.05,"'rsiSellPoint':75, 'rsiReBuyPointHigh':65, 'longSize':34, 'shortSize':9, 'rsiReBuyPointLow':60, 'demaRSICrossover': { }, 'rsiSize':14, 'firstTrade':'buy'",shorter period
ETH,AST,binance,DEMARSICrossover,-95.9,-1.68,-603,-1.66,-34.89,-61.01,556,9.75,55,223,19.78,0.32,0.02,-0.26,-0.01,142.66,10,70,57,2018-03-27 17:33:08,2018-01-27 00:03:00,2018-03-25 23:58:00,30.62,"'longSize':34, 'rsiReBuyPointHigh':65, 'rsiSellPoint':75, 'firstTrade':'buy', 'rsiSize':14, 'rsiReBuyPointLow':60, 'demaRSICrossover': { }, 'shortSize':9",shorter period
ETH,EOS,binance,DEMARSICrossover,-94.9,-1.56,-559,-2.33,-29.24,-65.66,574,9.41,53,234,18.47,0.26,0.03,-0.36,-0.01,138.71,10,70,61,2018-04-04 08:56:20,2017-12-20 00:00:00,2018-02-19 23:58:00,0,shorter period,
ETH,FUEL,binance,DEMARSICrossover,-99.64,-1.75,-627,-2.6,-28.59,-71.05,690,12.11,18,327,5.22,0.29,0.03,-0.17,0,117.39,10,70,57,2018-03-27 17:33:08,2018-01-27 00:01:00,2018-03-25 23:58:00,15.31,"'rsiSellPoint':75, 'rsiReBuyPointHigh':65, 'longSize':34, 'rsiSize':14, 'firstTrade':'buy', 'rsiReBuyPointLow':60, 'shortSize':9, 'demaRSICrossover': { }",shorter period
ETH,ICN,kraken,DEMARSICrossover,-99.2,-1.63,-584,-1.58,-26.29,-72.91,624,10.23,46,266,14.74,0.48,0.05,-0.39,0,137.24,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,24.75,"'demaRSICrossover': { }, 'firstTrade':'buy', 'rsiSellPoint':75, 'longSize':34, 'shortSize':9, 'rsiReBuyPointLow':60, 'rsiSize':14, 'rsiReBuyPointHigh':65",shorter period
ETH,QTUM,binance,DEMARSICrossover,-99.4,-1.66,-595,-1.53,32.4,-131.8,733,12.22,41,325,11.2,0.68,0.05,-0.26,-0.01,112.81,10,70,60,2018-04-04 08:56:20,2017-12-12 00:01:00,2018-02-10 23:58:00,0,1,shorter period
ETH,VIB,binance,DEMARSICrossover,-99.07,-1.74,-623,-2.03,12.57,-111.64,656,11.51,33,295,10.06,0.21,0.02,-0.3,0,122.01,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:58:00,15.12,"'longSize':34, 'rsiSellPoint':75, 'rsiReBuyPointHigh':65, 'rsiReBuyPointLow':60, 'shortSize':9, 'demaRSICrossover': { }, 'rsiSize':14, 'firstTrade':'buy'",shorter period
ETH,XVG,binance,DEMARSICrossover,-92.42,-1.54,-553,-0.61,294.2,-386.62,647,10.78,72,251,22.29,2,0.2,-1.43,-0.03,125.23,10,70,60,2018-04-04 08:56:20,2017-12-12 00:02:00,2018-02-10 23:58:00,0,shorter period,
EUR,XMR,kraken,DEMARSICrossover,-98.84,-1.62,-582,-1.79,-18.23,-80.61,669,10.97,51,283,15.27,0.26,0.03,-0.26,-0.01,128.14,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,20.52,"'shortSize':9, 'longSize':34, 'rsiReBuyPointLow':60, 'rsiSize':14, 'rsiReBuyPointHigh':65, 'firstTrade':'buy', 'rsiSellPoint':75, 'demaRSICrossover': { }",shorter period
USD,AVT,bitfinex,DEMARSICrossover,-97.28,-1.68,-609,-1.39,-63.47,-33.81,520,8.97,61,199,23.46,0.27,0.02,-0.23,-0.01,117.31,10,70,58,2018-03-28 23:13:08,2018-01-26 13:30:00,2018-03-25 19:58:00,36.29,"'demaRSICrossover': { }, 'rsiSellPoint':75, 'firstTrade':'buy', 'rsiReBuyPointHigh':65, 'rsiReBuyPointLow':60, 'rsiSize':14, 'shortSize':9, 'longSize':34",shorter period
USD,DAT,bitfinex,DEMARSICrossover,-99.85,-1.61,-587,-1.48,-50.35,-49.5,719,11.6,45,314,12.53,0.44,0.03,-0.26,0,119.83,10,70,62,2018-03-28 23:13:08,2017-12-19 23:17:00,2018-02-19 23:56:00,36.88,"'demaRSICrossover': { }, 'longSize':34, 'shortSize':9, 'rsiSize':14, 'rsiReBuyPointLow':60, 'rsiReBuyPointHigh':65, 'firstTrade':'buy', 'rsiSellPoint':75",shorter period
USD,ETP,bitfinex,DEMARSICrossover,-99.83,-1.61,-587,-1.49,-50.35,-49.48,664,10.71,35,297,10.54,0.21,0.03,-0.43,0,126.02,10,70,62,2018-03-28 23:13:08,2017-12-19 22:55:00,2018-02-19 23:43:00,35.1,"'rsiSellPoint':75, 'firstTrade':'buy', 'rsiSize':14, 'rsiReBuyPointLow':60, 'shortSize':9, 'longSize':34, 'rsiReBuyPointHigh':65, 'demaRSICrossover': { }",shorter period
USD,RCN,bitfinex,DEMARSICrossover,-98.62,-1.7,-611,-0.95,-63.33,-35.28,546,9.41,45,228,16.48,0.57,0.01,-0.22,0,117.33,10,70,58,2018-03-28 23:13:08,2018-01-26 02:00:00,2018-03-25 23:27:00,38.04,"'rsiReBuyPointHigh':65, 'rsiSize':14, 'rsiReBuyPointLow':60, 'longSize':34, 'shortSize':9, 'rsiSellPoint':75, 'firstTrade':'buy', 'demaRSICrossover': { }",shorter period
USD,RRT,bitfinex,DEMARSICrossover,-99.91,-1.61,-586,-1.41,-69.56,-30.36,634,10.23,29,288,9.15,0.27,0.01,-0.44,0,124.01,10,70,62,2018-03-28 23:13:08,2017-12-19 19:20:00,2018-02-19 23:24:00,43.53,"'rsiReBuyPointLow':60, 'rsiSize':14, 'longSize':34, 'shortSize':9, 'rsiReBuyPointHigh':65, 'rsiSellPoint':75, 'firstTrade':'buy', 'demaRSICrossover': { }",shorter period
USD,SAN,bitfinex,DEMARSICrossover,-99.56,-1.63,-595,-1.26,-53.99,-45.57,655,10.74,49,278,14.98,0.65,0.03,-0.26,-0.01,126.39,10,70,61,2018-03-28 23:13:08,2017-12-11 23:07:00,2018-02-10 23:58:00,44.19,"'demaRSICrossover': { }, 'rsiSellPoint':75, 'firstTrade':'buy', 'rsiReBuyPointHigh':65, 'rsiReBuyPointLow':60, 'rsiSize':14, 'longSize':34, 'shortSize':9",shorter period
USDT,BTC,binance,DEMARSICrossover,-96.94,-1.59,-571,-2.19,-35.4,-61.54,592,9.7,56,240,18.92,0.16,0.02,-0.22,-0.01,148.34,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,21.96,"'rsiSellPoint':75, 'rsiReBuyPointHigh':65, 'longSize':34, 'rsiSize':14, 'firstTrade':'buy', 'rsiReBuyPointLow':60, 'shortSize':9, 'demaRSICrossover': { }",shorter period
USDT,ETH,binance,DEMARSICrossover,-95.81,-1.6,-573,-1.78,66.89,-162.69,637,10.62,83,235,26.1,0.29,0.04,-0.22,-0.01,134.03,10,70,60,2018-03-27 17:33:08,2017-12-12 00:00:00,2018-02-10 23:59:00,22.93,"'rsiSize':14, 'firstTrade':'buy', 'demaRSICrossover': { }, 'shortSize':9, 'rsiReBuyPointLow':60, 'rsiSellPoint':75, 'rsiReBuyPointHigh':65, 'longSize':34",shorter period
USDT,LTC,binance,DEMARSICrossover,-98.09,-1.61,-577,-1.85,-34.44,-63.65,622,10.2,52,259,16.72,0.43,0.02,-0.3,-0.01,137.68,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,22.22,"'longSize':34, 'rsiSellPoint':75, 'rsiReBuyPointHigh':65, 'rsiSize':14, 'firstTrade':'buy', 'shortSize':9, 'rsiReBuyPointLow':60, 'demaRSICrossover': { }",shorter period
USDT,NEO,binance,DEMARSICrossover,-92.95,-1.52,-547,-1.28,96.24,-189.19,644,10.56,89,233,27.64,0.35,0.04,-0.22,-0.02,129.6,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,26.97,"'rsiReBuyPointLow':60, 'demaRSICrossover': { }, 'shortSize':9, 'rsiSize':14, 'firstTrade':'buy', 'rsiSellPoint':75, 'rsiReBuyPointHigh':65, 'longSize':34",shorter period
USDT,NXT,poloniex,DEMARSICrossover,-98.91,-1.74,-622,-2.03,-54.67,-44.25,606,10.63,40,263,13.2,0.13,0.02,-0.19,0,134.69,10,70,57,2018-03-28 23:13:08,2018-01-27 00:00:00,2018-03-25 23:53:00,26.64,"'demaRSICrossover': { }, 'rsiReBuyPointHigh':65, 'rsiReBuyPointLow':60, 'rsiSize':14, 'shortSize':9, 'longSize':34, 'rsiSellPoint':75, 'firstTrade':'buy'",shorter period
BNB,ADX,binance,DI,-99.96,-1.64,-588,-1.31,-46.18,-53.78,557,9.13,24,254,8.63,0.54,0.05,-0.43,0,181.51,10,70,61,2018-03-27 17:33:08,2017-12-20 00:03:00,2018-02-19 23:58:00,47.35,"'optInTimePeriod':14, 'diplus':23.5, 'diminus':23",shorter period
BNB,CND,binance,DI,-98.98,-1.65,-592,-0.5,127.38,-226.36,406,6.77,26,176,12.87,0.28,0.02,-0.64,0,221.83,10,70,60,2018-03-27 17:33:08,2017-12-12 00:00:00,2018-02-10 23:55:00,49.72,"'diplus':23.5, 'optInTimePeriod':14, 'diminus':23",shorter period
BNB,GTO,binance,DI,-99.92,-1.64,-588,-1.11,-17.85,-82.07,638,10.46,21,297,6.6,0.42,0.02,-0.3,0,162.2,10,70,61,2018-03-27 17:33:08,2017-12-20 00:01:00,2018-02-19 23:58:00,24.6,"'optInTimePeriod':14, 'diplus':23.5, 'diminus':23",shorter period
BNB,NEBL,binance,DI,-99.98,-1.75,-629,-2.81,-37.68,-62.31,811,14.23,18,387,4.44,0.25,0.01,-0.39,0,115.09,10,70,57,2018-03-27 17:33:08,2018-01-27 00:03:00,2018-03-25 23:58:00,16.74,"'diplus':23.5, 'optInTimePeriod':14, 'diminus':23",shorter period
BNB,NULS,binance,DI,-99.85,-1.75,-628,-1.7,-35.94,-63.91,653,11.46,24,302,7.36,0.25,0.03,-0.23,0,148.65,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:58:00,16.63,"'diminus':23, 'optInTimePeriod':14, 'diplus':23.5",shorter period
BNB,OST,binance,DI,-100,-1.64,-589,-1.08,-57.63,-42.37,768,12.59,1,382,0.26,0.02,0.02,-0.64,0,141.1,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:53:00,25.15,"'diminus':23, 'diplus':23.5, 'optInTimePeriod':14",shorter period
BNB,WTC,binance,DI,-99.87,-1.75,-628,-2.52,-61.73,-38.14,681,11.95,22,318,6.47,0.22,0.02,-0.19,0,125.97,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:54:00,24.05,"'diplus':23.5, 'optInTimePeriod':14, 'diminus':23",shorter period
BNB,XLM,binance,DI,-97.3,-1.6,-573,-0.71,-8.98,-88.33,291,4.77,21,124,14.48,0.27,0.01,-1.1,0,346.83,10,70,61,2018-03-27 17:33:08,2017-12-20 00:02:00,2018-02-19 23:58:00,29.22,"'diplus':23.5, 'optInTimePeriod':14, 'diminus':23",shorter period
BTC,ADA,binance,DI,-94.69,-1.55,-557,-1.85,11.87,-106.56,485,7.95,37,205,15.29,0.47,0.03,-0.23,-0.01,148.06,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,24.43,"'optInTimePeriod':14, 'diplus':23.5, 'diminus':23",shorter period
BTC,BNB,binance,DI,-71.53,-1.17,-421,-0.96,200.79,-272.31,284,4.66,32,109,22.7,0.94,0.12,-0.46,-0.04,258.72,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:59:00,32.99,"'diminus':23, 'optInTimePeriod':14, 'diplus':23.5",shorter period
BTC,BTM,poloniex,DI,-99.34,-1.74,-626,-2.13,-49.04,-50.3,507,8.89,17,236,6.72,0.26,0.01,-0.2,-0.01,132.69,10,70,57,2018-03-28 23:13:08,2018-01-27 00:56:00,2018-03-25 23:46:00,26.13,"'diminus':23, 'diplus':23.5, 'optInTimePeriod':14",shorter period
BTC,DGB,poloniex,DI,-65.34,-1.07,-384,-0.71,72.81,-138.14,256,4.2,33,95,25.78,2.67,0.09,-0.7,-0.09,275.63,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,23.7,"'diplus':23.5, 'optInTimePeriod':14, 'diminus':23",shorter period
BTC,ETC,binance,DI,-69.8,-1.14,-411,-1.18,59.31,-129.11,256,4.2,26,102,20.31,0.48,0.09,-0.18,-0.03,376.33,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,17.44,"'diminus':23, 'optInTimePeriod':14, 'diplus':23.5",shorter period
BTC,GAME,poloniex,DI,-85.64,-1.4,-504,-1.45,53.27,-138.91,401,6.57,50,150,25,0.62,0.06,-0.4,-0.02,197.4,10,70,61,2018-04-04 08:56:20,2017-12-20 00:00:00,2018-02-19 23:57:00,0,shorter period,
BTC,GAS,binance,DI,-72.8,-1.21,-435,-0.87,337.14,-409.94,329,5.48,47,117,28.66,0.83,0.09,-0.33,-0.05,267.44,10,70,60,2018-03-27 17:33:08,2017-12-12 00:01:00,2018-02-10 23:58:00,42.95,"'diminus':23, 'optInTimePeriod':14, 'diplus':23.5",shorter period
BTC,ICX,binance,DI,-65.98,-1.08,-388,-0.64,243.07,-309.05,325,5.33,42,120,25.93,2.32,0.19,-1.06,-0.09,258.15,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,31.7,"'diminus':23, 'diplus':23.5, 'optInTimePeriod':14",shorter period
BTC,OMG,binance,DI,-78.76,-1.29,-463,-1.49,50.87,-129.62,280,4.59,31,109,22.14,0.37,0.07,-0.19,-0.03,346.43,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,15.52,"'diminus':23, 'diplus':23.5, 'optInTimePeriod':14",shorter period
BTC,STR,poloniex,DI,-79.46,-1.39,-500,-2.21,-50.01,-29.45,248,4.35,19,104,15.45,0.34,0.04,-0.16,-0.03,308.54,10,70,57,2018-03-28 23:13:08,2018-01-27 00:00:00,2018-03-25 23:58:00,22.09,"'diminus':23, 'diplus':23.5, 'optInTimePeriod':14",shorter period
BTC,VEN,binance,DI,-83.03,-1.36,-489,-0.9,619.61,-702.64,377,6.18,47,141,25,0.81,0.06,-0.33,-0.03,240.05,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,47.55,"'diminus':23, 'diplus':23.5, 'optInTimePeriod':14",shorter period
BTC,XRP,binance,DI,-77.98,-1.28,-459,-1.04,133.4,-211.38,388,6.36,35,159,18.04,1.14,0.23,-0.4,-0.04,214.85,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:59:00,25.81,"'diminus':23, 'diplus':23.5, 'optInTimePeriod':14",shorter period
BTC,ZEC,binance,DI,-72.26,-1.18,-425,-1.07,24.38,-96.64,232,3.8,24,92,20.69,1.04,0.07,-0.24,-0.04,355.86,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,13.05,"'diminus':23, 'diplus':23.5, 'optInTimePeriod':14",shorter period
ETH,AST,binance,DI,-92.71,-1.63,-583,-1.46,-34.89,-57.82,412,7.23,43,163,20.87,0.23,0.02,-0.39,-0.01,251.75,10,70,57,2018-03-27 17:33:08,2018-01-27 00:03:00,2018-03-25 23:58:00,30.62,"'diplus':23.5, 'optInTimePeriod':14, 'diminus':23",shorter period
ETH,EOS,binance,DI,-69.47,-1.14,-409,-1.39,-29.24,-40.23,306,5.02,35,117,23.03,0.65,0.04,-0.49,-0.03,159.93,10,70,61,2018-04-04 08:56:20,2017-12-20 00:00:00,2018-02-19 23:58:00,0,shorter period,
ETH,FUEL,binance,DI,-98.85,-1.73,-622,-2.47,-28.59,-70.26,531,9.32,21,244,7.92,0.32,0.02,-0.23,0,177.81,10,70,57,2018-03-27 17:33:08,2018-01-27 00:01:00,2018-03-25 23:58:00,15.31,"'diminus':23, 'optInTimePeriod':14, 'diplus':23.5",shorter period
ETH,ICN,kraken,DI,-99.29,-1.63,-584,-1.94,-26.29,-73,596,9.77,35,263,11.74,0.27,0.03,-0.19,0,140.6,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,24.75,"'diplus':23.5, 'optInTimePeriod':14, 'diminus':23",shorter period
ETH,QTUM,binance,DI,-92.85,-1.55,-555,-0.87,32.4,-125.24,300,5,29,120,19.46,1.65,0.04,-0.49,-0.03,296.31,10,70,60,2018-04-04 08:56:20,2017-12-12 00:01:00,2018-02-10 23:58:00,0,1,shorter period
ETH,VIB,binance,DI,-98.08,-1.72,-617,-1.72,12.57,-110.64,581,10.19,23,267,7.93,1.46,0.02,-0.48,-0.01,158.45,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:58:00,15.12,"'diminus':23, 'diplus':23.5, 'optInTimePeriod':14",shorter period
ETH,XVG,binance,DI,-78.18,-1.3,-468,-0.28,294.2,-372.38,359,5.98,39,140,21.79,9.66,0.17,-3.78,-0.08,260.61,10,70,60,2018-04-04 08:56:20,2017-12-12 00:02:00,2018-02-10 23:58:00,0,shorter period,
EUR,XMR,kraken,DI,-90.7,-1.49,-534,-1.69,-18.23,-72.46,511,8.38,54,201,21.18,0.35,0.04,-0.24,-0.02,171.06,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,20.52,"'diplus':23.5, 'optInTimePeriod':14, 'diminus':23",shorter period
USD,AVT,bitfinex,DI,-99.52,-1.72,-623,-2.08,-63.47,-36.05,465,8.02,21,211,9.05,0.13,0.02,-0.33,-0.01,148.06,10,70,58,2018-03-28 23:13:08,2018-01-26 13:30:00,2018-03-25 19:58:00,36.29,"'diminus':23, 'optInTimePeriod':14, 'diplus':23.5",shorter period
USD,DAT,bitfinex,DI,-99.86,-1.61,-588,-1.7,-50.35,-49.51,740,11.94,28,342,7.57,0.26,0.02,-0.52,0,89.35,10,70,62,2018-03-28 23:13:08,2017-12-19 23:17:00,2018-02-19 23:56:00,36.88,"'optInTimePeriod':14, 'diplus':23.5, 'diminus':23",shorter period
USD,ETP,bitfinex,DI,-99.83,-1.61,-587,-1.71,-50.35,-49.48,790,12.74,26,369,6.58,0.32,0.02,-0.24,0,92.35,10,70,62,2018-03-28 23:13:08,2017-12-19 22:55:00,2018-02-19 23:43:00,35.1,"'diminus':23, 'diplus':23.5, 'optInTimePeriod':14",shorter period
USD,RCN,bitfinex,DI,-99.93,-1.72,-619,-1.4,-63.33,-36.59,450,7.76,20,204,8.93,0.13,0.03,-0.46,0,185,10,70,58,2018-03-28 23:13:08,2018-01-26 02:00:00,2018-03-25 23:27:00,38.04,"'diminus':23, 'diplus':23.5, 'optInTimePeriod':14",shorter period
USD,RRT,bitfinex,DI,-99.58,-1.61,-585,-1.61,-69.56,-30.02,509,8.21,19,235,7.48,0.14,0.02,-0.41,0,94.49,10,70,62,2018-03-28 23:13:08,2017-12-19 19:20:00,2018-02-19 23:24:00,43.53,"'diminus':23, 'optInTimePeriod':14, 'diplus':23.5",shorter period
USD,SAN,bitfinex,DI,-99.8,-1.64,-597,-1.07,-53.99,-45.81,740,12.13,35,334,9.49,1.02,0.03,-0.24,0,95.77,10,70,61,2018-03-28 23:13:08,2017-12-11 23:07:00,2018-02-10 23:58:00,44.19,"'optInTimePeriod':14, 'diplus':23.5, 'diminus':23",shorter period
USDT,BTC,binance,DI,-87.47,-1.43,-515,-1.97,-35.4,-52.08,333,5.46,34,132,20.48,0.18,0.03,-0.22,-0.02,219.16,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,21.96,"'optInTimePeriod':14, 'diplus':23.5, 'diminus':23",shorter period
USDT,ETH,binance,DI,-90.24,-1.5,-540,-1.81,66.89,-157.13,378,6.3,47,141,25,0.2,0.03,-0.22,-0.02,192.71,10,70,60,2018-03-27 17:33:08,2017-12-12 00:00:00,2018-02-10 23:59:00,22.93,"'diminus':23, 'diplus':23.5, 'optInTimePeriod':14",shorter period
USDT,LTC,binance,DI,-88.19,-1.45,-519,-1.31,-34.44,-53.75,370,6.07,38,147,20.54,0.24,0.03,-0.24,-0.01,214.05,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,22.22,"'diminus':23, 'optInTimePeriod':14, 'diplus':23.5",shorter period
USDT,NEO,binance,DI,-90.67,-1.49,-534,-1.03,96.24,-186.91,423,6.93,53,158,25.12,0.32,0.03,-0.54,-0.02,192.13,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,26.97,"'diplus':23.5, 'optInTimePeriod':14, 'diminus':23",shorter period
USDT,NXT,poloniex,DI,-98.81,-1.73,-622,-2.16,-54.67,-44.14,601,10.54,32,268,10.67,0.16,0.02,-0.18,0,119.87,10,70,57,2018-03-28 23:13:08,2018-01-27 00:00:00,2018-03-25 23:53:00,26.64,"'diminus':23, 'optInTimePeriod':14, 'diplus':23.5",shorter period
BNB,ADX,binance,DynBuySell,-97.48,-1.6,-574,-0.52,-46.18,-51.3,243,3.98,54,67,44.63,0.8,0.13,-1.2,-0.05,670.33,10,70,61,2018-03-27 17:33:08,2017-12-20 00:03:00,2018-02-19 23:58:00,47.35,"'thresholds': { 'stop_loss_pct':0.85, 'buy_at_up':1.003, 'sell_at':1.05, 'interval':8, 'buy_at':0.97 }",shorter period
BNB,CND,binance,DynBuySell,-98.97,-1.65,-592,-0.52,127.38,-226.35,406,6.77,79,123,39.11,0.6,0.02,-0.67,-0.01,387.38,10,70,60,2018-03-27 17:33:08,2017-12-12 00:00:00,2018-02-10 23:55:00,49.72,"'thresholds': { 'buy_at':0.97, 'interval':8, 'sell_at':1.05, 'stop_loss_pct':0.85, 'buy_at_up':1.003 }",shorter period
BNB,GTO,binance,DynBuySell,-99.73,-1.63,-587,-0.63,-17.85,-81.88,292,4.79,40,105,27.59,0.56,0.06,-0.75,0,557.79,10,70,61,2018-03-27 17:33:08,2017-12-20 00:01:00,2018-02-19 23:58:00,24.6,"'thresholds': { 'interval':8, 'buy_at':0.97, 'sell_at':1.05, 'buy_at_up':1.003, 'stop_loss_pct':0.85 }",shorter period
BNB,NEBL,binance,DynBuySell,-84.84,-1.49,-534,-0.71,-37.68,-47.16,113,1.98,27,29,48.21,0.46,0.13,-0.7,-0.24,1401.07,10,70,57,2018-03-27 17:33:08,2018-01-27 00:03:00,2018-03-25 23:58:00,16.74,"'thresholds': { 'buy_at':0.97, 'interval':8, 'sell_at':1.05, 'buy_at_up':1.003, 'stop_loss_pct':0.85 }",shorter period
BNB,NULS,binance,DynBuySell,-75.01,-1.32,-472,-0.7,-35.94,-39.07,101,1.77,29,21,58,0.31,0.13,-0.6,-0.29,1598.2,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:58:00,16.63,"'thresholds': { 'interval':8, 'buy_at':0.97, 'buy_at_up':1.003, 'stop_loss_pct':0.85, 'sell_at':1.05 }",shorter period
BNB,OST,binance,DynBuySell,-99.91,-1.64,-588,-0.75,-57.63,-42.28,304,4.98,15,136,9.93,0.18,0.01,-0.7,0,450.07,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:53:00,25.15,"'thresholds': { 'interval':8, 'buy_at':0.97, 'sell_at':1.05, 'buy_at_up':1.003, 'stop_loss_pct':0.85 }",shorter period
BNB,WTC,binance,DynBuySell,-81.5,-1.43,-513,-0.66,-61.73,-19.78,83,1.46,23,18,56.1,0.7,0.13,-0.74,-0.36,1949.51,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:54:00,24.05,"'thresholds': { 'stop_loss_pct':0.85, 'buy_at_up':1.003, 'sell_at':1.05, 'interval':8, 'buy_at':0.97 }",shorter period
BNB,XLM,binance,DynBuySell,-98.46,-1.61,-580,-0.6,-8.98,-89.48,257,4.21,45,83,35.16,0.83,0.02,-1.36,-0.02,587.89,10,70,61,2018-03-27 17:33:08,2017-12-20 00:02:00,2018-02-19 23:58:00,29.22,"'thresholds': { 'sell_at':1.05, 'buy_at_up':1.003, 'stop_loss_pct':0.85, 'buy_at':0.97, 'interval':8 }",shorter period
BTC,ADA,binance,DynBuySell,-58.58,-0.96,-345,-0.52,11.87,-70.44,127,2.08,42,21,66.67,0.65,0.25,-1.42,-0.6,1324.13,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,24.43,"'thresholds': { 'buy_at':0.97, 'interval':8, 'sell_at':1.05, 'buy_at_up':1.003, 'stop_loss_pct':0.85 }",shorter period
BTC,BNB,binance,DynBuySell,-57.3,-0.94,-337,-0.49,200.79,-258.08,123,2.02,41,20,67.21,0.61,0.26,-1.47,-0.57,1140.16,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:59:00,32.99,"'thresholds': { 'buy_at':0.97, 'interval':8, 'sell_at':1.05, 'stop_loss_pct':0.85, 'buy_at_up':1.003 }",shorter period
BTC,BTM,poloniex,DynBuySell,-71.01,-1.25,-447,-0.65,-49.04,-21.97,63,1.11,16,15,51.61,0.56,0.13,-0.68,-0.26,2527.74,10,70,57,2018-03-28 23:13:08,2018-01-27 00:56:00,2018-03-25 23:46:00,26.13,"'thresholds': { 'sell_at':1.05, 'interval':8, 'stop_loss_pct':0.85, 'buy_at':0.97, 'buy_at_up':1.003 }",shorter period
BTC,DGB,poloniex,DynBuySell,-69.43,-1.14,-409,-0.52,72.81,-142.24,157,2.57,50,28,64.1,0.61,0.24,-0.99,-0.53,1084.1,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,23.7,"'thresholds': { 'sell_at':1.05, 'interval':8, 'stop_loss_pct':0.85, 'buy_at_up':1.003, 'buy_at':0.97 }",shorter period
BTC,ETC,binance,DynBuySell,24.41,0.4,143,-0.36,59.31,-34.9,79,1.3,29,10,74.36,0.56,0.24,-0.9,-0.61,2171.54,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,17.44,"'thresholds': { 'stop_loss_pct':0.85, 'buy_at_up':1.003, 'sell_at':1.05, 'interval':8, 'buy_at':0.97 }",shorter period
BTC,GAME,poloniex,DynBuySell,-53.87,-0.88,-317,-0.52,53.27,-107.14,135,2.21,45,22,67.16,0.55,0.21,-0.87,-0.45,1247.61,10,70,61,2018-04-04 08:56:20,2017-12-20 00:00:00,2018-02-19 23:57:00,0,shorter period,
BTC,GAS,binance,DynBuySell,34.28,0.57,205,-0.37,337.14,-302.86,201,3.35,70,30,70,0.98,0.35,-1.67,-0.8,821.7,10,70,60,2018-03-27 17:33:08,2017-12-12 00:01:00,2018-02-10 23:58:00,42.95,"'thresholds': { 'sell_at':1.05, 'stop_loss_pct':0.85, 'buy_at_up':1.003, 'interval':8, 'buy_at':0.97 }",shorter period
BTC,ICX,binance,DynBuySell,-20.75,-0.34,-122,-0.42,243.07,-263.82,207,3.39,70,33,67.96,1.53,0.52,-1.91,-1.08,794.47,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,31.7,"'thresholds': { 'sell_at':1.05, 'buy_at_up':1.003, 'stop_loss_pct':0.85, 'interval':8, 'buy_at':0.97 }",shorter period
BTC,OMG,binance,DynBuySell,-16.6,-0.27,-97,-0.51,50.87,-67.47,107,1.75,38,15,71.7,0.62,0.24,-0.99,-0.51,1530.94,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,15.52,"'thresholds': { 'stop_loss_pct':0.85, 'buy_at_up':1.003, 'sell_at':1.05, 'interval':8, 'buy_at':0.97 }",shorter period
BTC,STR,poloniex,DynBuySell,-62.53,-1.1,-393,-0.88,-50.01,-12.52,39,0.68,9,10,47.37,0.24,0.12,-0.61,-0.31,4236.32,10,70,57,2018-03-28 23:13:08,2018-01-27 00:00:00,2018-03-25 23:58:00,22.09,"'thresholds': { 'buy_at_up':1.003, 'buy_at':0.97, 'stop_loss_pct':0.85, 'sell_at':1.05, 'interval':8 }",shorter period
BTC,VEN,binance,DynBuySell,0.86,0.01,5,-0.42,619.61,-618.75,199,3.26,72,27,72.73,1.44,0.4,-2.07,-0.96,836.26,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,47.55,"'thresholds': { 'sell_at':1.05, 'stop_loss_pct':0.85, 'buy_at_up':1.003, 'interval':8, 'buy_at':0.97 }",shorter period
BTC,XRP,binance,DynBuySell,-43.51,-0.71,-256,-0.42,133.4,-176.92,155,2.54,51,26,66.23,1.22,0.36,-1.85,-0.77,1027.66,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:59:00,25.81,"'thresholds': { 'interval':8, 'buy_at':0.97, 'buy_at_up':1.003, 'stop_loss_pct':0.85, 'sell_at':1.05 }",shorter period
BTC,ZEC,binance,DynBuySell,-23.71,-0.39,-139,-0.54,24.38,-48.09,69,1.13,23,11,67.65,0.44,0.2,-0.65,-0.41,2338.24,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,13.05,"'thresholds': { 'interval':8, 'buy_at':0.97, 'buy_at_up':1.003, 'stop_loss_pct':0.85, 'sell_at':1.05 }",shorter period
ETH,AST,binance,DynBuySell,-78.26,-1.37,-492,-0.68,-34.89,-43.36,111,1.95,31,24,56.36,0.25,0.07,-0.5,-0.19,1400.73,10,70,57,2018-03-27 17:33:08,2018-01-27 00:03:00,2018-03-25 23:58:00,30.62,"'thresholds': { 'stop_loss_pct':0.85, 'buy_at_up':1.003, 'sell_at':1.05, 'buy_at':0.97, 'interval':8 }",shorter period
ETH,EOS,binance,DynBuySell,-55.81,-0.91,-328,-0.53,-29.24,-26.56,65,1.07,18,14,56.25,0.35,0.21,-0.62,-0.39,2228.75,10,70,61,2018-04-04 08:56:20,2017-12-20 00:00:00,2018-02-19 23:58:00,0,shorter period,
ETH,FUEL,binance,DynBuySell,-55.13,-0.97,-347,-0.68,-28.59,-26.54,73,1.28,21,15,58.33,0.31,0.15,-0.53,-0.31,2190,10,70,57,2018-03-27 17:33:08,2018-01-27 00:01:00,2018-03-25 23:58:00,15.31,"'thresholds': { 'buy_at':0.97, 'interval':8, 'sell_at':1.05, 'buy_at_up':1.003, 'stop_loss_pct':0.85 }",shorter period
ETH,ICN,kraken,DynBuySell,-76.65,-1.26,-451,-0.62,-26.29,-50.37,125,2.05,37,25,59.68,0.63,0.19,-0.71,-0.38,1070.32,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,24.75,"'thresholds': { 'interval':8, 'sell_at':1.05, 'stop_loss_pct':0.85, 'buy_at_up':1.003, 'buy_at':0.97 }",shorter period
ETH,QTUM,binance,DynBuySell,-41.13,-0.69,-246,-0.43,32.4,-73.53,127,2.12,39,24,61.9,1.37,0.34,-1.41,-0.64,1271.43,10,70,60,2018-04-04 08:56:20,2017-12-12 00:01:00,2018-02-10 23:58:00,0,1,shorter period
ETH,VIB,binance,DynBuySell,-21.49,-0.38,-135,-0.32,12.57,-34.06,85,1.49,24,18,57.14,1.8,0.25,-1.07,-0.46,1892.62,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:58:00,15.12,"'thresholds': { 'interval':8, 'buy_at':0.97, 'stop_loss_pct':0.85, 'buy_at_up':1.003, 'sell_at':1.05 }",shorter period
ETH,XVG,binance,DynBuySell,-87.53,-1.46,-524,-0.43,294.2,-381.73,337,5.62,101,67,60.12,1.74,0.34,-2.06,-0.5,466.67,10,70,60,2018-04-04 08:56:20,2017-12-12 00:02:00,2018-02-10 23:58:00,0,shorter period,
EUR,XMR,kraken,DynBuySell,-79.41,-1.3,-467,-0.64,-18.23,-61.17,153,2.51,48,28,63.16,0.26,0.11,-0.55,-0.23,1062.63,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,20.52,"'thresholds': { 'stop_loss_pct':0.85, 'sell_at':1.05, 'interval':8, 'buy_at':0.97, 'buy_at_up':1.003 }",shorter period
USD,AVT,bitfinex,DynBuySell,-82.22,-1.42,-515,-0.7,-63.47,-18.75,89,1.53,23,21,52.27,0.26,0.12,-0.6,-0.24,1566.36,10,70,58,2018-03-28 23:13:08,2018-01-26 13:30:00,2018-03-25 19:58:00,36.29,"'thresholds': { 'interval':8, 'sell_at':1.05, 'stop_loss_pct':0.85, 'buy_at_up':1.003, 'buy_at':0.97 }",shorter period
USD,DAT,bitfinex,DynBuySell,-91.48,-1.48,-538,-0.55,-50.35,-41.13,209,3.37,64,40,61.54,0.56,0.07,-0.75,-0.2,780.1,10,70,62,2018-03-28 23:13:08,2017-12-19 23:17:00,2018-02-19 23:56:00,36.88,"'thresholds': { 'stop_loss_pct':0.85, 'interval':8, 'sell_at':1.05, 'buy_at':0.97, 'buy_at_up':1.003 }",shorter period
USD,ETP,bitfinex,DynBuySell,-93.17,-1.5,-548,-0.55,-50.35,-42.82,235,3.79,74,43,63.25,0.37,0.05,-0.92,-0.14,708.8,10,70,62,2018-03-28 23:13:08,2017-12-19 22:55:00,2018-02-19 23:43:00,35.1,"'thresholds': { 'buy_at_up':1.003, 'buy_at':0.97, 'stop_loss_pct':0.85, 'sell_at':1.05, 'interval':8 }",shorter period
USD,RCN,bitfinex,DynBuySell,-89.83,-1.55,-557,-0.65,-63.33,-26.49,122,2.1,31,29,51.67,0.35,0.08,-0.62,-0.2,1235,10,70,58,2018-03-28 23:13:08,2018-01-26 02:00:00,2018-03-25 23:27:00,38.04,"'thresholds': { 'buy_at':0.97, 'buy_at_up':1.003, 'stop_loss_pct':0.85, 'interval':8, 'sell_at':1.05 }",shorter period
USD,RRT,bitfinex,DynBuySell,-86.27,-1.39,-506,-0.55,-69.56,-16.71,167,2.69,49,34,59.04,0.39,0.12,-0.64,-0.25,939.52,10,70,62,2018-03-28 23:13:08,2017-12-19 19:20:00,2018-02-19 23:24:00,43.53,"'thresholds': { 'interval':8, 'sell_at':1.05, 'stop_loss_pct':0.85, 'buy_at':0.97, 'buy_at_up':1.003 }",shorter period
USD,SAN,bitfinex,DynBuySell,-95.43,-1.56,-571,-0.57,-53.99,-41.44,229,3.75,67,47,58.77,0.92,0.14,-0.81,-0.13,703.33,10,70,61,2018-03-28 23:13:08,2017-12-11 23:07:00,2018-02-10 23:58:00,44.19,"'thresholds': { 'sell_at':1.05, 'interval':8, 'stop_loss_pct':0.85, 'buy_at_up':1.003, 'buy_at':0.97 }",shorter period
USDT,BTC,binance,DynBuySell,-79.58,-1.3,-468,-0.72,-35.4,-44.19,107,1.75,33,20,62.26,0.19,0.09,-0.69,-0.28,1551.13,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,21.96,"'thresholds': { 'interval':8, 'buy_at':0.97, 'sell_at':1.05, 'buy_at_up':1.003, 'stop_loss_pct':0.85 }",shorter period
USDT,ETH,binance,DynBuySell,-67.78,-1.13,-405,-0.54,66.89,-134.67,161,2.68,55,25,68.75,0.59,0.21,-0.95,-0.47,1020.63,10,70,60,2018-03-27 17:33:08,2017-12-12 00:00:00,2018-02-10 23:59:00,22.93,"'thresholds': { 'interval':8, 'buy_at':0.97, 'sell_at':1.05, 'buy_at_up':1.003, 'stop_loss_pct':0.85 }",shorter period
USDT,LTC,binance,DynBuySell,-86.66,-1.42,-510,-0.71,-34.44,-52.22,147,2.41,43,30,58.9,0.26,0.04,-0.46,-0.16,1062.19,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,22.22,"'thresholds': { 'buy_at_up':1.003, 'stop_loss_pct':0.85, 'sell_at':1.05, 'interval':8, 'buy_at':0.97 }",shorter period
USDT,NEO,binance,DynBuySell,-61.89,-1.01,-364,-0.48,96.24,-158.13,223,3.66,75,36,67.57,0.53,0.19,-0.91,-0.41,714.23,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,26.97,"'thresholds': { 'interval':8, 'buy_at':0.97, 'buy_at_up':1.003, 'stop_loss_pct':0.85, 'sell_at':1.05 }",shorter period
USDT,NXT,poloniex,DynBuySell,-82.57,-1.45,-519,-0.74,-54.67,-27.9,103,1.81,29,22,56.86,0.25,0.07,-0.56,-0.21,1394.12,10,70,57,2018-03-28 23:13:08,2018-01-27 00:00:00,2018-03-25 23:53:00,26.64,"'thresholds': { 'stop_loss_pct':0.85, 'sell_at':1.05, 'interval':8, 'buy_at':0.97, 'buy_at_up':1.003 }",shorter period
BNB,ADX,binance,EMA_OR_PRICE_DIV,46700.84,765.59,275130,0.23,-46.18,46747.02,208,3.41,95,9,91.35,134.81,8.96,-88.62,-15.61,140.67,10,70,61,2018-03-27 17:33:08,2017-12-20 00:03:00,2018-02-19 23:58:00,47.35,"'short':2.5, 'long':-2.5, 'ema':50",shorter period
BNB,CND,binance,EMA_OR_PRICE_DIV,358.1,5.97,2144,-0.12,127.38,230.72,94,1.57,39,8,82.98,3.22,0.4,-1.3,-0.53,186.81,10,70,60,2018-03-27 17:33:08,2017-12-12 00:00:00,2018-02-10 23:55:00,49.72,"'short':2.5, 'ema':50, 'long':-2.5",shorter period
BNB,GTO,binance,EMA_OR_PRICE_DIV,312.46,5.12,1840,0.04,-17.85,330.31,66,1.08,29,4,87.88,2.05,0.5,-4.04,-0.77,178.79,10,70,61,2018-03-27 17:33:08,2017-12-20 00:01:00,2018-02-19 23:58:00,24.6,"'long':-2.5, 'ema':50, 'short':2.5",shorter period
BNB,NEBL,binance,EMA_OR_PRICE_DIV,39.9,0.7,251,-0.36,-37.68,77.58,49,0.86,18,6,75,1.12,0.19,-0.8,-0.25,865.83,10,70,57,2018-03-27 17:33:08,2018-01-27 00:03:00,2018-03-25 23:58:00,16.74,"'long':-2.5, 'ema':50, 'short':2.5",shorter period
BNB,NULS,binance,EMA_OR_PRICE_DIV,13.52,0.24,85,-0.69,-35.94,49.46,43,0.75,16,5,76.19,0.28,0.19,-0.49,-0.4,680.95,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:58:00,16.63,"'long':-2.5, 'ema':50, 'short':2.5",shorter period
BNB,OST,binance,EMA_OR_PRICE_DIV,3164721.36,51880.68,18644860,0.63,-57.63,3164778.99,228,3.74,111,3,97.37,8732.03,45.9,-24.81,-0.95,100.35,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:53:00,25.15,"'long':-2.5, 'ema':50, 'short':2.5",shorter period
BNB,WTC,binance,EMA_OR_PRICE_DIV,24.9,0.44,156,-0.58,-61.73,86.63,75,1.32,27,10,72.97,0.38,0.23,-1.83,-0.22,775.95,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:54:00,24.05,"'short':2.5, 'ema':50, 'long':-2.5",shorter period
BNB,XLM,binance,EMA_OR_PRICE_DIV,2073.81,34,12217,0.29,-8.98,2082.79,94,1.54,44,3,93.62,10.1,1.68,-5.99,-3.23,157.02,10,70,61,2018-03-27 17:33:08,2017-12-20 00:02:00,2018-02-19 23:58:00,29.22,"'ema':50, 'long':-2.5, 'short':2.5",shorter period
BTC,ADA,binance,EMA_OR_PRICE_DIV,13.19,0.22,77,-0.94,11.87,1.32,14,0.23,5,2,71.43,0.21,0.19,-0.07,-0.06,995.71,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,24.43,"'ema':50, 'long':-2.5, 'short':2.5",shorter period
BTC,BNB,binance,EMA_OR_PRICE_DIV,20.04,0.33,118,-1.03,200.79,-180.75,10,0.16,5,0,100,0.21,0.19,0.14,n/a,340,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:59:00,32.99,"'short':2.5, 'long':-2.5, 'ema':50",shorter period
BTC,BTM,poloniex,EMA_OR_PRICE_DIV,-31.49,-0.55,-198,-0.94,-49.04,17.55,22,0.39,6,5,54.55,0.24,0.14,-0.67,-0.49,2370,10,70,57,2018-03-28 23:13:08,2018-01-27 00:56:00,2018-03-25 23:46:00,26.13,"'long':-2.5, 'ema':50, 'short':2.5",shorter period
BTC,DGB,poloniex,EMA_OR_PRICE_DIV,0,0,0,0,72.81,-72.81,1,0.02,0,0,-1,,n/a,,n/a,n/a,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,23.7,"'ema':50, 'long':-2.5, 'short':2.5",shorter period
BTC,ETC,binance,EMA_OR_PRICE_DIV,-9.55,-0.16,-56,-1.06,59.31,-68.86,9,0.15,2,2,50,0.16,0.15,-0.41,-0.3,2462.5,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,17.44,"'ema':50, 'long':-2.5, 'short':2.5",shorter period
BTC,GAME,poloniex,EMA_OR_PRICE_DIV,0,0,0,0,53.27,-53.27,1,0.02,0,0,-1,,n/a,,n/a,n/a,10,70,61,2018-04-04 08:56:20,2017-12-20 00:00:00,2018-02-19 23:57:00,0,shorter period,
BTC,GAS,binance,EMA_OR_PRICE_DIV,5.65,0.09,33,Inf,337.14,-331.49,3,0.05,1,0,100,0.25,0.25,0.25,n/a,40,10,70,60,2018-03-27 17:33:08,2017-12-12 00:01:00,2018-02-10 23:58:00,42.95,"'ema':50, 'long':-2.5, 'short':2.5",shorter period
BTC,ICX,binance,EMA_OR_PRICE_DIV,4.11,0.07,24,-Inf,243.07,-238.96,3,0.05,1,0,100,0.19,0.19,0.19,n/a,190,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,31.7,"'short':2.5, 'ema':50, 'long':-2.5",shorter period
BTC,OMG,binance,EMA_OR_PRICE_DIV,5.28,0.09,31,-0.6,50.87,-45.58,9,0.15,3,1,75,0.2,0.19,-0.27,-0.27,630,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,15.52,"'short':2.5, 'long':-2.5, 'ema':50",shorter period
BTC,STR,poloniex,EMA_OR_PRICE_DIV,-39.36,-0.69,-247,-1,-50.01,10.65,24,0.42,6,6,50,0.2,0.15,-0.58,-0.37,2472.5,10,70,57,2018-03-28 23:13:08,2018-01-27 00:00:00,2018-03-25 23:58:00,22.09,"'ema':50, 'long':-2.5, 'short':2.5",shorter period
BTC,VEN,binance,EMA_OR_PRICE_DIV,42.91,0.7,252,0.09,619.61,-576.7,17,0.28,8,0,100,0.38,0.23,0.11,n/a,138.75,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,47.55,"'short':2.5, 'long':-2.5, 'ema':50",shorter period
BTC,XRP,binance,EMA_OR_PRICE_DIV,3.85,0.06,22,-Inf,133.4,-129.55,2,0.03,1,0,100,0.18,0.18,0.18,n/a,80,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:59:00,25.81,"'short':2.5, 'ema':50, 'long':-2.5",shorter period
BTC,ZEC,binance,EMA_OR_PRICE_DIV,-0.83,-0.01,-4,-1.43,24.38,-25.22,7,0.11,1,2,33.33,0.19,0.19,-0.12,-0.08,2116.67,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,13.05,"'ema':50, 'long':-2.5, 'short':2.5",shorter period
ETH,AST,binance,EMA_OR_PRICE_DIV,-12.82,-0.22,-80,-0.66,-34.89,22.07,71,1.25,23,12,65.71,0.29,0.16,-1.34,-0.19,757.71,10,70,57,2018-03-27 17:33:08,2018-01-27 00:03:00,2018-03-25 23:58:00,30.62,"'short':2.5, 'long':-2.5, 'ema':50",shorter period
ETH,EOS,binance,EMA_OR_PRICE_DIV,-23.34,-0.38,-137,-1.15,-29.24,5.9,24,0.39,6,6,50,0.19,0.14,-0.53,-0.19,1585,10,70,61,2018-04-04 08:56:20,2017-12-20 00:00:00,2018-02-19 23:58:00,0,shorter period,
ETH,FUEL,binance,EMA_OR_PRICE_DIV,12.76,0.22,80,-0.71,-28.59,41.35,41,0.72,14,6,70,0.29,0.17,-0.33,-0.22,1034,10,70,57,2018-03-27 17:33:08,2018-01-27 00:01:00,2018-03-25 23:58:00,15.31,"'short':2.5, 'ema':50, 'long':-2.5",shorter period
ETH,ICN,kraken,EMA_OR_PRICE_DIV,250.3,4.1,1474,-0.19,-26.29,276.59,82,1.34,34,7,82.93,2.02,0.42,-1.55,-0.53,607.32,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,24.75,"'ema':50, 'long':-2.5, 'short':2.5",shorter period
ETH,QTUM,binance,EMA_OR_PRICE_DIV,21.67,0.36,129,-0.52,32.4,-10.72,12,0.2,6,0,100,0.27,0.21,0.01,n/a,210,10,70,60,2018-04-04 08:56:20,2017-12-12 00:01:00,2018-02-10 23:58:00,0,1,shorter period
ETH,VIB,binance,EMA_OR_PRICE_DIV,45.21,0.79,284,-0.85,12.57,32.64,39,0.68,15,4,78.95,0.39,0.19,-0.17,-0.08,763.16,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:58:00,15.12,"'short':2.5, 'long':-2.5, 'ema':50",shorter period
ETH,XVG,binance,EMA_OR_PRICE_DIV,15.58,0.26,93,-0.4,294.2,-278.62,10,0.17,4,1,80,0.34,0.19,-0.12,-0.12,174,10,70,60,2018-04-04 08:56:20,2017-12-12 00:02:00,2018-02-10 23:58:00,0,shorter period,
EUR,XMR,kraken,EMA_OR_PRICE_DIV,-34.08,-0.56,-200,-0.93,-18.23,-15.85,33,0.54,10,6,62.5,0.24,0.1,-0.63,-0.44,678.13,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,20.52,"'short':2.5, 'ema':50, 'long':-2.5",shorter period
USD,AVT,bitfinex,EMA_OR_PRICE_DIV,87.89,1.52,550,-0.43,-63.47,151.36,69,1.19,25,9,73.53,0.92,0.18,-0.6,-0.16,540.88,10,70,58,2018-03-28 23:13:08,2018-01-26 13:30:00,2018-03-25 19:58:00,36.29,"'long':-2.5, 'ema':50, 'short':2.5",shorter period
USD,DAT,bitfinex,EMA_OR_PRICE_DIV,-4.2,-0.07,-24,-0.5,-50.35,46.15,61,0.98,22,8,73.33,0.24,0.18,-1.14,-0.26,414,10,70,62,2018-03-28 23:13:08,2017-12-19 23:17:00,2018-02-19 23:56:00,36.88,"'long':-2.5, 'ema':50, 'short':2.5",shorter period
USD,ETP,bitfinex,EMA_OR_PRICE_DIV,-47.77,-0.77,-281,-0.47,-50.35,2.58,38,0.61,13,6,68.42,0.23,0.16,-1.64,-0.43,494.21,10,70,62,2018-03-28 23:13:08,2017-12-19 22:55:00,2018-02-19 23:43:00,35.1,"'long':-2.5, 'ema':50, 'short':2.5",shorter period
USD,RCN,bitfinex,EMA_OR_PRICE_DIV,275.41,4.75,1708,0.08,-63.33,338.74,58,1,23,6,79.31,4.27,0.24,-0.63,-0.41,511.03,10,70,58,2018-03-28 23:13:08,2018-01-26 02:00:00,2018-03-25 23:27:00,38.04,"'short':2.5, 'ema':50, 'long':-2.5",shorter period
USD,RRT,bitfinex,EMA_OR_PRICE_DIV,176.28,2.84,1035,-0.19,-69.56,245.83,98,1.58,39,10,79.59,1.63,0.44,-3.96,-0.37,448.78,10,70,62,2018-03-28 23:13:08,2017-12-19 19:20:00,2018-02-19 23:24:00,43.53,"'short':2.5, 'ema':50, 'long':-2.5",shorter period
USD,SAN,bitfinex,EMA_OR_PRICE_DIV,-20.16,-0.33,-120,-0.51,-53.99,33.83,52,0.85,19,7,73.08,0.41,0.25,-1.22,-0.66,430,10,70,61,2018-03-28 23:13:08,2017-12-11 23:07:00,2018-02-10 23:58:00,44.19,"'short':2.5, 'long':-2.5, 'ema':50",shorter period
USDT,BTC,binance,EMA_OR_PRICE_DIV,-25.04,-0.41,-147,-0.73,-35.4,10.35,41,0.67,13,7,65,0.25,0.17,-0.8,-0.12,613.5,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,21.96,"'short':2.5, 'ema':50, 'long':-2.5",shorter period
USDT,ETH,binance,EMA_OR_PRICE_DIV,57.46,0.96,344,0.66,66.89,-9.43,17,0.28,8,0,100,0.44,0.3,0.23,n/a,105,10,70,60,2018-03-27 17:33:08,2017-12-12 00:00:00,2018-02-10 23:59:00,22.93,"'short':2.5, 'ema':50, 'long':-2.5",shorter period
USDT,LTC,binance,EMA_OR_PRICE_DIV,-12.45,-0.2,-73,-0.78,-34.44,21.99,47,0.77,14,9,60.87,0.31,0.18,-0.61,-0.26,389.57,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,22.22,"'short':2.5, 'ema':50, 'long':-2.5",shorter period
USDT,NEO,binance,EMA_OR_PRICE_DIV,-2.42,-0.04,-14,-0.53,96.24,-98.67,15,0.25,5,2,71.43,0.23,0.19,-0.79,-0.42,372.86,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,26.97,"'short':2.5, 'ema':50, 'long':-2.5",shorter period
USDT,NXT,poloniex,EMA_OR_PRICE_DIV,-37.79,-0.66,-238,-0.73,-54.67,16.87,33,0.58,10,6,62.5,0.21,0.13,-0.83,-0.34,840.63,10,70,57,2018-03-28 23:13:08,2018-01-27 00:00:00,2018-03-25 23:53:00,26.64,"'short':2.5, 'long':-2.5, 'ema':50",shorter period
BNB,ADX,binance,EMACrossover,-99.96,-1.64,-588,-1.44,-46.18,-53.78,357,5.85,6,172,3.37,0.36,0.03,-0.84,0,241.29,10,70,61,2018-03-27 17:33:08,2017-12-20 00:03:00,2018-02-19 23:58:00,47.35,"'firstTrade':'buy', 'delta':0, 'emaCrossover': { }, 'longSize':34, 'shortSize':13",shorter period
BNB,CND,binance,EMACrossover,-98.92,-1.65,-592,-0.62,127.38,-226.3,329,5.48,14,150,8.54,0.81,0.03,-0.37,-0.01,241.95,10,70,60,2018-03-27 17:33:08,2017-12-12 00:00:00,2018-02-10 23:55:00,49.72,"'delta':0, 'firstTrade':'buy', 'shortSize':13, 'longSize':34, 'emaCrossover': { }",shorter period
BNB,GTO,binance,EMACrossover,-99.95,-1.64,-588,-1.13,-17.85,-82.1,348,5.7,4,170,2.3,0.09,0.04,-0.3,0,224.37,10,70,61,2018-03-27 17:33:08,2017-12-20 00:01:00,2018-02-19 23:58:00,24.6,"'emaCrossover': { }, 'longSize':34, 'shortSize':13, 'firstTrade':'buy', 'delta':0",shorter period
BNB,NEBL,binance,EMACrossover,-98.95,-1.74,-623,-2.33,-37.68,-61.28,341,5.98,9,161,5.29,0.21,0.03,-0.22,-0.01,190.76,10,70,57,2018-03-27 17:33:08,2018-01-27 00:03:00,2018-03-25 23:58:00,16.74,"'delta':0, 'firstTrade':'buy', 'shortSize':13, 'emaCrossover': { }, 'longSize':34",shorter period
BNB,NULS,binance,EMACrossover,-98.01,-1.72,-617,-1.41,-35.94,-62.07,299,5.25,15,134,10.07,0.23,0.02,-0.4,-0.01,256.38,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:58:00,16.63,"'shortSize':13, 'emaCrossover': { }, 'longSize':34, 'delta':0, 'firstTrade':'buy'",shorter period
BNB,OST,binance,EMACrossover,-100,-1.64,-589,-1.41,-57.63,-42.37,410,6.72,0,205,0,0,n/a,-0.43,0,199.85,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:53:00,25.15,"'delta':0, 'firstTrade':'buy', 'shortSize':13, 'emaCrossover': { }, 'longSize':34",shorter period
BNB,WTC,binance,EMACrossover,-96.73,-1.7,-609,-2.06,-61.73,-35,295,5.18,13,134,8.84,0.23,0.03,-0.3,-0.01,240,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:54:00,24.05,"'emaCrossover': { }, 'longSize':34, 'shortSize':13, 'firstTrade':'buy', 'delta':0",shorter period
BNB,XLM,binance,EMACrossover,-99.54,-1.63,-586,-0.91,-8.98,-90.57,372,6.1,9,177,4.84,0.14,0.02,-0.51,0,233.33,10,70,61,2018-03-27 17:33:08,2017-12-20 00:02:00,2018-02-19 23:58:00,29.22,"'emaCrossover': { }, 'longSize':34, 'shortSize':13, 'firstTrade':'buy', 'delta':0",shorter period
BTC,ADA,binance,EMACrossover,-86.5,-1.42,-509,-1.08,11.87,-98.37,296,4.85,22,126,14.86,1.25,0.1,-0.38,-0.03,246.96,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,24.43,"'shortSize':13, 'longSize':34, 'emaCrossover': { }, 'delta':0, 'firstTrade':'buy'",shorter period
BTC,BNB,binance,EMACrossover,-67.16,-1.1,-395,-0.79,200.79,-267.94,264,4.33,20,112,15.15,1.35,0.18,-0.46,-0.04,291.52,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:59:00,32.99,"'longSize':34, 'emaCrossover': { }, 'shortSize':13, 'firstTrade':'buy', 'delta':0",shorter period
BTC,BTM,poloniex,EMACrossover,-97.49,-1.71,-614,-2.14,-49.04,-48.46,280,4.91,11,129,7.86,0.08,0.02,-0.21,-0.01,251.71,10,70,57,2018-03-28 23:13:08,2018-01-27 00:56:00,2018-03-25 23:46:00,26.13,"'longSize':34, 'shortSize':13, 'delta':0, 'emaCrossover': { }, 'firstTrade':'buy'",shorter period
BTC,DGB,poloniex,EMACrossover,-70.09,-1.15,-412,-0.59,72.81,-142.89,284,4.66,25,117,17.61,3.62,0.14,-0.81,-0.06,282.32,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,23.7,"'delta':0, 'firstTrade':'buy', 'emaCrossover': { }, 'longSize':34, 'shortSize':13",shorter period
BTC,ETC,binance,EMACrossover,-78.88,-1.29,-464,-1.45,59.31,-138.18,286,4.69,22,121,15.38,0.34,0.04,-0.15,-0.02,309.3,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,17.44,"'firstTrade':'buy', 'delta':0, 'emaCrossover': { }, 'longSize':34, 'shortSize':13",shorter period
BTC,GAME,poloniex,EMACrossover,-96.56,-1.58,-568,-1.51,53.27,-149.83,350,5.74,22,153,12.57,0.63,0.08,-0.61,-0.01,235.37,10,70,61,2018-04-04 08:56:20,2017-12-20 00:00:00,2018-02-19 23:57:00,0,shorter period,
BTC,GAS,binance,EMACrossover,-85.08,-1.42,-509,-0.93,337.14,-422.22,276,4.6,33,105,23.91,0.85,0.06,-0.31,-0.03,327.17,10,70,60,2018-03-27 17:33:08,2017-12-12 00:01:00,2018-02-10 23:58:00,42.95,"'longSize':34, 'emaCrossover': { }, 'shortSize':13, 'firstTrade':'buy', 'delta':0",shorter period
BTC,ICX,binance,EMACrossover,-55.99,-0.92,-329,-0.47,243.07,-299.06,268,4.39,33,101,24.63,4.85,0.21,-1.36,-0.11,324.55,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,31.7,"'firstTrade':'buy', 'delta':0, 'emaCrossover': { }, 'longSize':34, 'shortSize':13",shorter period
BTC,OMG,binance,EMACrossover,-68.55,-1.12,-403,-1.26,50.87,-119.41,256,4.2,35,93,27.34,0.8,0.07,-0.4,-0.04,347.19,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,15.52,"'longSize':34, 'emaCrossover': { }, 'shortSize':13, 'firstTrade':'buy', 'delta':0",shorter period
BTC,STR,poloniex,EMACrossover,-81.6,-1.43,-513,-2.44,-50.01,-31.59,249,4.37,16,108,12.9,0.18,0.05,-0.14,-0.02,263.15,10,70,57,2018-03-28 23:13:08,2018-01-27 00:00:00,2018-03-25 23:58:00,22.09,"'longSize':34, 'shortSize':13, 'firstTrade':'buy', 'emaCrossover': { }, 'delta':0",shorter period
BTC,VEN,binance,EMACrossover,-52.98,-0.87,-312,-0.77,619.61,-672.59,249,4.08,33,91,26.61,0.67,0.12,-0.27,-0.06,367.82,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,47.55,"'longSize':34, 'emaCrossover': { }, 'shortSize':13, 'firstTrade':'buy', 'delta':0",shorter period
BTC,XRP,binance,EMACrossover,-9.23,-0.15,-54,-0.36,133.4,-142.63,216,3.54,19,89,17.59,5.36,0.25,-1.06,-0.1,348.15,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:59:00,25.81,"'firstTrade':'buy', 'delta':0, 'emaCrossover': { }, 'longSize':34, 'shortSize':13",shorter period
BTC,ZEC,binance,EMACrossover,-86.62,-1.42,-510,-1.74,24.38,-111.01,296,4.85,24,124,16.22,0.45,0.03,-0.15,-0.02,269.66,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,13.05,"'firstTrade':'buy', 'delta':0, 'longSize':34, 'emaCrossover': { }, 'shortSize':13",shorter period
ETH,AST,binance,EMACrossover,-86.67,-1.52,-545,-1.44,-34.89,-51.78,263,4.61,25,106,19.08,0.27,0.05,-0.27,-0.02,260.69,10,70,57,2018-03-27 17:33:08,2018-01-27 00:03:00,2018-03-25 23:58:00,30.62,"'shortSize':13, 'longSize':34, 'emaCrossover': { }, 'delta':0, 'firstTrade':'buy'",shorter period
ETH,EOS,binance,EMACrossover,-77.19,-1.27,-454,-1.41,-29.24,-47.95,245,4.02,18,104,14.75,0.3,0.07,-0.4,-0.03,333.61,10,70,61,2018-04-04 08:56:20,2017-12-20 00:00:00,2018-02-19 23:58:00,0,shorter period,
ETH,FUEL,binance,EMACrossover,-96.9,-1.7,-610,-2.15,-28.59,-68.31,315,5.53,9,148,5.73,0.21,0.03,-0.28,-0.01,221.46,10,70,57,2018-03-27 17:33:08,2018-01-27 00:01:00,2018-03-25 23:58:00,15.31,"'firstTrade':'buy', 'delta':0, 'emaCrossover': { }, 'longSize':34, 'shortSize':13",shorter period
ETH,ICN,kraken,EMACrossover,-91.88,-1.51,-541,-1.8,-26.29,-65.59,286,4.69,24,119,16.78,0.55,0.06,-0.26,-0.02,269.72,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,24.75,"'longSize':34, 'shortSize':13, 'delta':0, 'emaCrossover': { }, 'firstTrade':'buy'",shorter period
ETH,QTUM,binance,EMACrossover,-88.99,-1.48,-532,-0.91,32.4,-121.39,293,4.88,15,131,10.27,1.54,0.14,-0.5,-0.03,257.26,10,70,60,2018-04-04 08:56:20,2017-12-12 00:01:00,2018-02-10 23:58:00,0,1,shorter period
ETH,VIB,binance,EMACrossover,-96.44,-1.69,-607,-1.82,12.57,-109.01,313,5.49,14,142,8.97,0.89,0.02,-0.28,-0.01,233.01,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:58:00,15.12,"'longSize':34, 'emaCrossover': { }, 'shortSize':13, 'firstTrade':'buy', 'delta':0",shorter period
ETH,XVG,binance,EMACrossover,-60.99,-1.02,-365,-0.23,294.2,-355.19,269,4.48,23,111,17.16,9.74,0.35,-1.53,-0.15,274.4,10,70,60,2018-04-04 08:56:20,2017-12-12 00:02:00,2018-02-10 23:58:00,0,shorter period,
EUR,XMR,kraken,EMACrossover,-76.06,-1.25,-448,-1.22,-18.23,-57.82,259,4.25,31,98,24.03,0.66,0.09,-0.28,-0.03,355.97,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,20.52,"'longSize':34, 'shortSize':13, 'delta':0, 'emaCrossover': { }, 'firstTrade':'buy'",shorter period
USD,AVT,bitfinex,EMACrossover,-97.56,-1.68,-611,-1.42,-63.47,-34.09,253,4.36,16,110,12.7,0.81,0.04,-0.3,-0.03,305.95,10,70,58,2018-03-28 23:13:08,2018-01-26 13:30:00,2018-03-25 19:58:00,36.29,"'firstTrade':'buy', 'emaCrossover': { }, 'delta':0, 'longSize':34, 'shortSize':13",shorter period
USD,DAT,bitfinex,EMACrossover,-97.26,-1.57,-572,-1.44,-50.35,-46.91,294,4.74,23,124,15.65,0.43,0.06,-0.28,-0.01,293.4,10,70,62,2018-03-28 23:13:08,2017-12-19 23:17:00,2018-02-19 23:56:00,36.88,"'delta':0, 'firstTrade':'buy', 'emaCrossover': { }, 'shortSize':13, 'longSize':34",shorter period
USD,ETP,bitfinex,EMACrossover,-95.96,-1.55,-564,-1.11,-50.35,-45.61,316,5.1,24,134,15.19,0.55,0.03,-0.46,-0.01,274.56,10,70,62,2018-03-28 23:13:08,2017-12-19 22:55:00,2018-02-19 23:43:00,35.1,"'longSize':34, 'shortSize':13, 'firstTrade':'buy', 'emaCrossover': { }, 'delta':0",shorter period
USD,RCN,bitfinex,EMACrossover,-99.27,-1.71,-615,-1.27,-63.33,-35.94,257,4.43,14,114,10.94,0.24,0.03,-0.31,-0.01,315.94,10,70,58,2018-03-28 23:13:08,2018-01-26 02:00:00,2018-03-25 23:27:00,38.04,"'longSize':34, 'shortSize':13, 'emaCrossover': { }, 'firstTrade':'buy', 'delta':0",shorter period
USD,RRT,bitfinex,EMACrossover,-99.19,-1.6,-582,-1.48,-69.56,-29.64,306,4.94,10,143,6.54,0.33,0.06,-0.43,-0.01,259.48,10,70,62,2018-03-28 23:13:08,2017-12-19 19:20:00,2018-02-19 23:24:00,43.53,"'delta':0, 'emaCrossover': { }, 'firstTrade':'buy', 'longSize':34, 'shortSize':13",shorter period
USD,SAN,bitfinex,EMACrossover,-96.93,-1.59,-580,-1.13,-53.99,-42.94,315,5.16,23,134,14.65,1.29,0.02,-0.29,-0.03,259.24,10,70,61,2018-03-28 23:13:08,2017-12-11 23:07:00,2018-02-10 23:58:00,44.19,"'shortSize':13, 'longSize':34, 'firstTrade':'buy', 'emaCrossover': { }, 'delta':0",shorter period
USDT,BTC,binance,EMACrossover,-73.07,-1.2,-430,-1.63,-35.4,-37.68,231,3.79,34,81,29.57,0.32,0.03,-0.23,-0.03,388.35,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,21.96,"'shortSize':13, 'emaCrossover': { }, 'longSize':34, 'delta':0, 'firstTrade':'buy'",shorter period
USDT,ETH,binance,EMACrossover,-74.95,-1.25,-448,-1.36,66.89,-141.84,253,4.22,40,86,31.75,0.26,0.05,-0.3,-0.04,391.83,10,70,60,2018-03-27 17:33:08,2017-12-12 00:00:00,2018-02-10 23:59:00,22.93,"'delta':0, 'firstTrade':'buy', 'shortSize':13, 'longSize':34, 'emaCrossover': { }",shorter period
USDT,LTC,binance,EMACrossover,-77.09,-1.26,-454,-0.95,-34.44,-42.65,240,3.93,24,96,20,0.38,0.07,-0.24,-0.04,369.25,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,22.22,"'shortSize':13, 'emaCrossover': { }, 'longSize':34, 'delta':0, 'firstTrade':'buy'",shorter period
USDT,NEO,binance,EMACrossover,-82.39,-1.35,-485,-1.11,96.24,-178.64,277,4.54,44,94,31.88,0.35,0.08,-0.35,-0.04,363.7,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,26.97,"'firstTrade':'buy', 'delta':0, 'emaCrossover': { }, 'longSize':34, 'shortSize':13",shorter period
USDT,NXT,poloniex,EMACrossover,-81.97,-1.44,-516,-1.76,-54.67,-27.3,254,4.46,23,104,18.11,0.27,0.06,-0.18,-0.03,308.58,10,70,57,2018-03-28 23:13:08,2018-01-27 00:00:00,2018-03-25 23:53:00,26.64,"'firstTrade':'buy', 'emaCrossover': { }, 'delta':0, 'longSize':34, 'shortSize':13",shorter period
BNB,ADX,binance,EMADIV,107931.74,1769.37,635862,0.19,-46.18,107977.92,252,4.13,111,15,88.1,356.15,20.37,-374.49,-13.35,330.48,10,70,61,2018-03-27 17:33:08,2017-12-20 00:03:00,2018-02-19 23:58:00,47.35,"'ema':50, 'long':-2.5, 'short':2.5",shorter period
BNB,CND,binance,EMADIV,1802.17,30.04,10791,-0.14,127.38,1674.79,233,3.88,93,23,80.17,16.73,1.86,-27.59,-0.85,348.88,10,70,60,2018-03-27 17:33:08,2017-12-12 00:00:00,2018-02-10 23:55:00,49.72,"'short':2.5, 'ema':50, 'long':-2.5",shorter period
BNB,GTO,binance,EMADIV,96813.07,1587.1,570345,0.09,-17.85,96830.93,292,4.79,126,20,86.3,525.05,18.01,-584.39,-56.06,333.49,10,70,61,2018-03-27 17:33:08,2017-12-20 00:01:00,2018-02-19 23:58:00,24.6,"'ema':50, 'long':-2.5, 'short':2.5",shorter period
BNB,NEBL,binance,EMADIV,140.25,2.46,883,-0.38,-37.68,177.93,105,1.84,43,9,82.69,1.77,0.27,-3.5,-0.33,847.88,10,70,57,2018-03-27 17:33:08,2018-01-27 00:03:00,2018-03-25 23:58:00,16.74,"'short':2.5, 'ema':50, 'long':-2.5",shorter period
BNB,NULS,binance,EMADIV,70.92,1.24,446,-0.21,-35.94,106.86,95,1.67,33,14,70.21,3.06,0.33,-2.98,-0.42,901.06,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:58:00,16.63,"'short':2.5, 'long':-2.5, 'ema':50",shorter period
BNB,OST,binance,EMADIV,40241522.26,659697.09,237081720,0.35,-57.63,40241579.89,352,5.77,162,14,92.05,111030.36,4459.37,-138932.61,-11597.28,260.97,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:53:00,25.15,"'ema':50, 'long':-2.5, 'short':2.5",shorter period
BNB,WTC,binance,EMADIV,-26.64,-0.47,-167,-0.62,-61.73,35.09,87,1.53,29,14,67.44,0.39,0.2,-1.57,-0.21,944.88,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:54:00,24.05,"'long':-2.5, 'ema':50, 'short':2.5",shorter period
BNB,XLM,binance,EMADIV,6788.44,111.29,39992,0.1,-8.98,6797.42,181,2.97,79,11,87.78,49.21,6.13,-132.92,-4.26,385.11,10,70,61,2018-03-27 17:33:08,2017-12-20 00:02:00,2018-02-19 23:58:00,29.22,"'long':-2.5, 'ema':50, 'short':2.5",shorter period
BTC,ADA,binance,EMADIV,11.63,0.19,68,-0.55,11.87,-0.23,81,1.33,24,16,60,0.69,0.3,-1.14,-0.16,1263.75,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,24.43,"'ema':50, 'long':-2.5, 'short':2.5",shorter period
BTC,BNB,binance,EMADIV,40.63,0.67,239,-0.69,200.79,-160.16,66,1.08,22,11,66.67,0.49,0.25,-0.98,-0.14,1167.58,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:59:00,32.99,"'long':-2.5, 'ema':50, 'short':2.5",shorter period
BTC,BTM,poloniex,EMADIV,5.06,0.09,31,-0.44,-49.04,54.1,64,1.12,21,11,65.62,0.81,0.14,-1.01,-0.14,1510,10,70,57,2018-03-28 23:13:08,2018-01-27 00:56:00,2018-03-25 23:46:00,26.13,"'short':2.5, 'long':-2.5, 'ema':50",shorter period
BTC,DGB,poloniex,EMADIV,-14.63,-0.24,-86,-0.68,72.81,-87.43,94,1.54,31,15,67.39,0.41,0.15,-1.11,-0.17,963.26,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,23.7,"'long':-2.5, 'ema':50, 'short':2.5",shorter period
BTC,ETC,binance,EMADIV,-38.15,-0.63,-224,-0.98,59.31,-97.45,45,0.74,11,11,50,0.18,0.13,-0.57,-0.13,1976.82,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,17.44,"'short':2.5, 'ema':50, 'long':-2.5",shorter period
BTC,GAME,poloniex,EMADIV,43.35,0.71,255,-0.61,53.27,-9.91,89,1.46,29,15,65.91,0.76,0.24,-0.99,-0.18,929.09,10,70,61,2018-04-04 08:56:20,2017-12-20 00:00:00,2018-02-19 23:57:00,0,shorter period,
BTC,GAS,binance,EMADIV,148.34,2.47,888,-0.34,337.14,-188.8,116,1.93,43,14,75.44,1.69,0.42,-2.33,-0.5,687.19,10,70,60,2018-03-27 17:33:08,2017-12-12 00:01:00,2018-02-10 23:58:00,42.95,"'long':-2.5, 'ema':50, 'short':2.5",shorter period
BTC,ICX,binance,EMADIV,9.36,0.15,55,-0.67,243.07,-233.71,116,1.9,38,19,66.67,0.44,0.26,-1.76,-0.3,737.37,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,31.7,"'short':2.5, 'ema':50, 'long':-2.5",shorter period
BTC,OMG,binance,EMADIV,-4.87,-0.08,-28,-0.84,50.87,-55.73,72,1.18,22,13,62.86,0.21,0.16,-0.7,-0.13,1170.57,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,15.52,"'ema':50, 'long':-2.5, 'short':2.5",shorter period
BTC,STR,poloniex,EMADIV,-45.67,-0.8,-287,-1.07,-50.01,4.33,33,0.58,6,10,37.5,0.14,0.12,-0.69,-0.18,2380,10,70,57,2018-03-28 23:13:08,2018-01-27 00:00:00,2018-03-25 23:58:00,22.09,"'short':2.5, 'ema':50, 'long':-2.5",shorter period
BTC,VEN,binance,EMADIV,100.96,1.66,594,-0.63,619.61,-518.66,109,1.79,36,18,66.67,0.72,0.32,-0.91,-0.31,687.59,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,47.55,"'short':2.5, 'long':-2.5, 'ema':50",shorter period
BTC,XRP,binance,EMADIV,-32.12,-0.53,-189,-0.87,133.4,-165.52,65,1.07,21,11,65.62,0.31,0.13,-0.5,-0.3,1130.63,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:59:00,25.81,"'short':2.5, 'ema':50, 'long':-2.5",shorter period
BTC,ZEC,binance,EMADIV,-9.49,-0.16,-55,-0.93,24.38,-33.87,47,0.77,15,8,65.22,0.4,0.11,-0.65,-0.17,2263.04,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,13.05,"'short':2.5, 'ema':50, 'long':-2.5",shorter period
ETH,AST,binance,EMADIV,-37.7,-0.66,-237,-0.79,-34.89,-2.8,83,1.46,25,16,60.98,0.28,0.11,-1,-0.14,952.2,10,70,57,2018-03-27 17:33:08,2018-01-27 00:03:00,2018-03-25 23:58:00,30.62,"'ema':50, 'long':-2.5, 'short':2.5",shorter period
ETH,EOS,binance,EMADIV,-23.24,-0.38,-136,-0.91,-29.24,6,60,0.98,17,13,56.67,0.19,0.12,-0.45,-0.14,1223.33,10,70,61,2018-04-04 08:56:20,2017-12-20 00:00:00,2018-02-19 23:58:00,0,shorter period,
ETH,FUEL,binance,EMADIV,35.54,0.62,223,-0.6,-28.59,64.13,73,1.28,27,9,75,0.35,0.2,-0.84,-0.22,1152.5,10,70,57,2018-03-27 17:33:08,2018-01-27 00:01:00,2018-03-25 23:58:00,15.31,"'short':2.5, 'ema':50, 'long':-2.5",shorter period
ETH,ICN,kraken,EMADIV,205.79,3.37,1212,-0.36,-26.29,232.08,110,1.8,37,18,67.27,2.15,0.46,-1.01,-0.24,851.27,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,24.75,"'long':-2.5, 'ema':50, 'short':2.5",shorter period
ETH,QTUM,binance,EMADIV,36.07,0.6,215,-0.63,32.4,3.67,93,1.55,33,13,71.74,0.81,0.24,-1.52,-0.29,895.22,10,70,60,2018-04-04 08:56:20,2017-12-12 00:01:00,2018-02-10 23:58:00,0,1,shorter period
ETH,VIB,binance,EMADIV,125.13,2.2,788,-0.49,12.57,112.56,91,1.6,37,8,82.22,0.52,0.23,-0.5,-0.4,807.56,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:58:00,15.12,"'ema':50, 'long':-2.5, 'short':2.5",shorter period
ETH,XVG,binance,EMADIV,90.47,1.51,541,-0.38,294.2,-203.73,167,2.78,60,23,72.29,3.39,0.48,-3.65,-0.6,585.18,10,70,60,2018-04-04 08:56:20,2017-12-12 00:02:00,2018-02-10 23:58:00,0,shorter period,
EUR,XMR,kraken,EMADIV,-46.83,-0.77,-275,-0.78,-18.23,-28.6,93,1.52,27,19,58.7,0.25,0.11,-0.53,-0.17,903.91,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,20.52,"'short':2.5, 'long':-2.5, 'ema':50",shorter period
USD,AVT,bitfinex,EMADIV,32.48,0.56,203,-0.53,-63.47,95.95,97,1.67,28,20,58.33,0.56,0.18,-0.55,-0.15,899.58,10,70,58,2018-03-28 23:13:08,2018-01-26 13:30:00,2018-03-25 19:58:00,36.29,"'ema':50, 'long':-2.5, 'short':2.5",shorter period
USD,DAT,bitfinex,EMADIV,-1.04,-0.02,-6,-0.51,-50.35,49.31,150,2.42,50,24,67.57,0.48,0.21,-1.39,-0.3,687.43,10,70,62,2018-03-28 23:13:08,2017-12-19 23:17:00,2018-02-19 23:56:00,36.88,"'ema':50, 'long':-2.5, 'short':2.5",shorter period
USD,ETP,bitfinex,EMADIV,-54.58,-0.88,-321,-0.46,-50.35,-4.23,133,2.15,43,23,65.15,0.53,0.15,-1.64,-0.15,696.97,10,70,62,2018-03-28 23:13:08,2017-12-19 22:55:00,2018-02-19 23:43:00,35.1,"'ema':50, 'long':-2.5, 'short':2.5",shorter period
USD,RCN,bitfinex,EMADIV,1132.13,19.52,7021,0.03,-63.33,1195.47,122,2.1,49,12,80.33,15.03,0.27,-3.2,-0.33,734.26,10,70,58,2018-03-28 23:13:08,2018-01-26 02:00:00,2018-03-25 23:27:00,38.04,"'short':2.5, 'ema':50, 'long':-2.5",shorter period
USD,RRT,bitfinex,EMADIV,549.87,8.87,3230,-0.18,-69.56,619.43,156,2.52,62,16,79.49,2.64,0.62,-7.11,-0.47,642.05,10,70,62,2018-03-28 23:13:08,2017-12-19 19:20:00,2018-02-19 23:24:00,43.53,"'short':2.5, 'long':-2.5, 'ema':50",shorter period
USD,SAN,bitfinex,EMADIV,-14.38,-0.24,-86,-0.52,-53.99,39.61,147,2.41,54,19,73.97,0.48,0.17,-1.65,-0.36,635.07,10,70,61,2018-03-28 23:13:08,2017-12-11 23:07:00,2018-02-10 23:58:00,44.19,"'short':2.5, 'long':-2.5, 'ema':50",shorter period
USDT,BTC,binance,EMADIV,-14.18,-0.23,-83,-0.66,-35.4,21.22,95,1.56,32,15,68.09,0.31,0.16,-0.92,-0.16,1006.6,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,21.96,"'long':-2.5, 'ema':50, 'short':2.5",shorter period
USDT,ETH,binance,EMADIV,50.83,0.85,304,-0.52,66.89,-16.06,110,1.83,39,15,72.22,0.57,0.31,-1.63,-0.28,740,10,70,60,2018-03-27 17:33:08,2017-12-12 00:00:00,2018-02-10 23:59:00,22.93,"'short':2.5, 'long':-2.5, 'ema':50",shorter period
USDT,LTC,binance,EMADIV,-7.81,-0.13,-45,-0.7,-34.44,26.63,117,1.92,39,19,67.24,0.34,0.14,-0.87,-0.2,776.55,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,22.22,"'long':-2.5, 'ema':50, 'short':2.5",shorter period
USDT,NEO,binance,EMADIV,23.79,0.39,140,-0.69,96.24,-72.46,139,2.28,47,22,68.12,0.54,0.21,-0.94,-0.23,613.48,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,26.97,"'long':-2.5, 'ema':50, 'short':2.5",shorter period
USDT,NXT,poloniex,EMADIV,-55.15,-0.97,-347,-0.79,-54.67,-0.48,81,1.42,23,17,57.5,0.21,0.11,-0.88,-0.2,1083,10,70,57,2018-03-28 23:13:08,2018-01-27 00:00:00,2018-03-25 23:53:00,26.64,"'short':2.5, 'long':-2.5, 'ema':50",shorter period
BNB,ADX,binance,EMADIV2,749.21,12.28,4413,0.08,-46.18,795.38,97,1.59,38,10,79.17,4.77,1.59,-11.34,-0.67,921.04,10,70,61,2018-03-27 17:33:08,2017-12-20 00:03:00,2018-02-19 23:58:00,47.35,"'ema':50, 'long':-3, 'short':3",shorter period
BNB,CND,binance,EMADIV2,76.82,1.28,459,-0.21,127.38,-50.56,101,1.68,35,15,70,1.55,0.47,-3.55,-0.72,796.6,10,70,60,2018-03-27 17:33:08,2017-12-12 00:00:00,2018-02-10 23:55:00,49.72,"'short':3, 'ema':50, 'long':-3",shorter period
BNB,GTO,binance,EMADIV2,150.39,2.47,885,-0.1,-17.85,168.24,89,1.46,31,13,70.45,3.75,0.37,-1.99,-0.34,997.27,10,70,61,2018-03-27 17:33:08,2017-12-20 00:01:00,2018-02-19 23:58:00,24.6,"'ema':50, 'long':-3, 'short':3",shorter period
BNB,NEBL,binance,EMADIV2,6,0.11,37,-0.36,-37.68,43.68,37,0.65,12,6,66.67,1.03,0.18,-1.51,-0.26,2057.22,10,70,57,2018-03-27 17:33:08,2018-01-27 00:03:00,2018-03-25 23:58:00,16.74,"'short':3, 'long':-3, 'ema':50",shorter period
BNB,NULS,binance,EMADIV2,-41.65,-0.73,-262,-0.67,-35.94,-5.71,37,0.65,9,9,50,0.38,0.29,-0.8,-0.37,2442.78,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:58:00,16.63,"'short':3, 'long':-3, 'ema':50",shorter period
BNB,OST,binance,EMADIV2,454.3,7.45,2676,-0.03,-57.63,511.93,102,1.67,41,10,80.39,2.88,1.23,-7.73,-1.36,1059.02,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:53:00,25.15,"'short':3, 'long':-3, 'ema':50",shorter period
BNB,WTC,binance,EMADIV2,-36.11,-0.63,-227,-0.68,-61.73,25.61,33,0.58,8,8,50,0.45,0.19,-1.21,-0.23,2124.38,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:54:00,24.05,"'ema':50, 'long':-3, 'short':3",shorter period
BNB,XLM,binance,EMADIV2,-22.66,-0.37,-133,-0.2,-8.98,-13.69,54,0.89,20,6,76.92,0.5,0.22,-2.23,-0.27,1448.46,10,70,61,2018-03-27 17:33:08,2017-12-20 00:02:00,2018-02-19 23:58:00,29.22,"'ema':50, 'long':-3, 'short':3",shorter period
BTC,ADA,binance,EMADIV2,0.53,0.01,3,-0.39,11.87,-11.34,34,0.56,10,6,62.5,0.49,0.34,-1.12,-0.31,1253.75,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,24.43,"'long':-3, 'ema':50, 'short':3",shorter period
BTC,BNB,binance,EMADIV2,110.48,1.81,650,0,200.79,-90.31,37,0.61,15,3,83.33,0.9,0.53,-1.49,-0.29,1170,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:59:00,32.99,"'short':3, 'long':-3, 'ema':50",shorter period
BTC,BTM,poloniex,EMADIV2,-37.55,-0.66,-236,-0.49,-49.04,11.49,26,0.46,7,5,58.33,0.48,0.23,-1.08,-0.61,3477.5,10,70,57,2018-03-28 23:13:08,2018-01-27 00:56:00,2018-03-25 23:46:00,26.13,"'short':3, 'ema':50, 'long':-3",shorter period
BTC,DGB,poloniex,EMADIV2,-20.85,-0.34,-122,-0.45,72.81,-93.65,48,0.79,16,7,69.57,0.48,0.19,-1.4,-0.4,1917.39,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,23.7,"'short':3, 'ema':50, 'long':-3",shorter period
BTC,ETC,binance,EMADIV2,-4.45,-0.07,-26,-0.73,59.31,-63.76,25,0.41,7,5,58.33,0.31,0.25,-0.48,-0.27,3286.67,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,17.44,"'long':-3, 'ema':50, 'short':3",shorter period
BTC,GAME,poloniex,EMADIV2,130.87,2.15,770,-0.13,53.27,77.6,55,0.9,19,8,70.37,1.87,0.44,-1.09,-0.29,1298.15,10,70,61,2018-04-04 08:56:20,2017-12-20 00:00:00,2018-02-19 23:57:00,0,shorter period,
BTC,GAS,binance,EMADIV2,70.3,1.17,420,-0.2,337.14,-266.84,50,0.83,18,6,75,1.4,0.36,-1.18,-0.36,1440.42,10,70,60,2018-03-27 17:33:08,2017-12-12 00:01:00,2018-02-10 23:58:00,42.95,"'short':3, 'ema':50, 'long':-3",shorter period
BTC,ICX,binance,EMADIV2,27.02,0.44,159,-0.37,243.07,-216.05,62,1.02,21,9,70,0.64,0.34,-1.57,-0.2,1211,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,31.7,"'long':-3, 'ema':50, 'short':3",shorter period
BTC,OMG,binance,EMADIV2,-0.17,0,-1,-0.58,50.87,-51.04,33,0.54,9,7,56.25,0.38,0.24,-0.65,-0.21,2177.5,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,15.52,"'long':-3, 'ema':50, 'short':3",shorter period
BTC,STR,poloniex,EMADIV2,3.55,0.06,22,-0.65,-50.01,53.55,20,0.35,6,4,60,0.37,0.24,-0.62,-0.14,1994,10,70,57,2018-03-28 23:13:08,2018-01-27 00:00:00,2018-03-25 23:58:00,22.09,"'ema':50, 'long':-3, 'short':3",shorter period
BTC,VEN,binance,EMADIV2,154.64,2.54,911,-0.19,619.61,-464.97,65,1.07,24,8,75,1.28,0.48,-1.73,-0.3,1304.06,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,47.55,"'long':-3, 'ema':50, 'short':3",shorter period
BTC,XRP,binance,EMADIV2,-36.12,-0.59,-212,-0.8,133.4,-169.52,35,0.57,8,9,47.06,0.32,0.21,-0.96,-0.24,1922.94,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:59:00,25.81,"'long':-3, 'ema':50, 'short':3",shorter period
BTC,ZEC,binance,EMADIV2,66.7,1.09,392,-0.08,24.38,42.31,29,0.48,12,2,85.71,0.63,0.27,-0.42,-0.39,2024.29,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,13.05,"'ema':50, 'long':-3, 'short':3",shorter period
ETH,AST,binance,EMADIV2,-27.7,-0.49,-174,-0.55,-34.89,7.19,39,0.68,11,8,57.89,0.28,0.16,-1.09,-0.33,1743.68,10,70,57,2018-03-27 17:33:08,2018-01-27 00:03:00,2018-03-25 23:58:00,30.62,"'ema':50, 'long':-3, 'short':3",shorter period
ETH,EOS,binance,EMADIV2,-19.86,-0.33,-116,-0.52,-29.24,9.39,26,0.43,7,6,53.85,0.6,0.28,-0.72,-0.46,3298.46,10,70,61,2018-04-04 08:56:20,2017-12-20 00:00:00,2018-02-19 23:58:00,0,shorter period,
ETH,FUEL,binance,EMADIV2,6.14,0.11,38,-0.38,-28.59,34.73,31,0.54,11,4,73.33,0.42,0.27,-1.25,-0.41,2754.67,10,70,57,2018-03-27 17:33:08,2018-01-27 00:01:00,2018-03-25 23:58:00,15.31,"'ema':50, 'long':-3, 'short':3",shorter period
ETH,ICN,kraken,EMADIV2,78.99,1.29,465,-0.33,-26.29,105.27,58,0.95,18,10,64.29,1.14,0.45,-1.01,-0.32,1393.57,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,24.75,"'ema':50, 'long':-3, 'short':3",shorter period
ETH,QTUM,binance,EMADIV2,4.1,0.07,24,-0.28,32.4,-28.3,39,0.65,15,4,78.95,1.01,0.28,-2.45,-1.08,2213.16,10,70,60,2018-04-04 08:56:20,2017-12-12 00:01:00,2018-02-10 23:58:00,0,1,shorter period
ETH,VIB,binance,EMADIV2,-8.76,-0.15,-55,-0.67,12.57,-21.33,31,0.54,8,7,53.33,0.35,0.18,-0.39,-0.27,2378,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:58:00,15.12,"'long':-3, 'ema':50, 'short':3",shorter period
ETH,XVG,binance,EMADIV2,89.4,1.49,535,-0.18,294.2,-204.8,94,1.57,33,14,70.21,2.26,0.48,-2.77,-0.67,1014.68,10,70,60,2018-04-04 08:56:20,2017-12-12 00:02:00,2018-02-10 23:58:00,0,shorter period,
EUR,XMR,kraken,EMADIV2,-42.62,-0.7,-251,-0.51,-18.23,-24.39,46,0.75,13,9,59.09,0.3,0.18,-0.78,-0.53,1739.09,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,20.52,"'short':3, 'ema':50, 'long':-3",shorter period
USD,AVT,bitfinex,EMADIV2,-50.47,-0.87,-316,-0.48,-63.47,13,33,0.57,10,6,62.5,0.35,0.16,-1.67,-0.42,2973.13,10,70,58,2018-03-28 23:13:08,2018-01-26 13:30:00,2018-03-25 19:58:00,36.29,"'long':-3, 'ema':50, 'short':3",shorter period
USD,DAT,bitfinex,EMADIV2,-17.81,-0.29,-104,-0.43,-50.35,32.54,74,1.19,22,14,61.11,0.81,0.25,-1.16,-0.25,1091.11,10,70,62,2018-03-28 23:13:08,2017-12-19 23:17:00,2018-02-19 23:56:00,36.88,"'long':-3, 'ema':50, 'short':3",shorter period
USD,ETP,bitfinex,EMADIV2,-40.18,-0.65,-236,-0.33,-50.35,10.17,76,1.23,25,13,65.79,0.66,0.23,-2.01,-0.31,1106.32,10,70,62,2018-03-28 23:13:08,2017-12-19 22:55:00,2018-02-19 23:43:00,35.1,"'long':-3, 'ema':50, 'short':3",shorter period
USD,RCN,bitfinex,EMADIV2,-50.68,-0.87,-314,-0.5,-63.33,12.65,39,0.67,10,9,52.63,0.42,0.24,-1.72,-0.36,2218.42,10,70,58,2018-03-28 23:13:08,2018-01-26 02:00:00,2018-03-25 23:27:00,38.04,"'long':-3, 'ema':50, 'short':3",shorter period
USD,RRT,bitfinex,EMADIV2,21.52,0.35,126,-0.3,-69.56,91.08,67,1.08,23,10,69.7,1.17,0.35,-1.95,-0.6,1140.91,10,70,62,2018-03-28 23:13:08,2017-12-19 19:20:00,2018-02-19 23:24:00,43.53,"'short':3, 'ema':50, 'long':-3",shorter period
USD,SAN,bitfinex,EMADIV2,3.39,0.06,20,-0.37,-53.99,57.38,81,1.33,26,14,65,0.73,0.33,-1.88,-0.36,1172.75,10,70,61,2018-03-28 23:13:08,2017-12-11 23:07:00,2018-02-10 23:58:00,44.19,"'short':3, 'ema':50, 'long':-3",shorter period
USDT,BTC,binance,EMADIV2,-22.65,-0.37,-133,-0.48,-35.4,12.74,44,0.72,14,7,66.67,0.53,0.27,-0.92,-0.66,2046.19,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,21.96,"'short':3, 'ema':50, 'long':-3",shorter period
USDT,ETH,binance,EMADIV2,22.61,0.38,135,-0.26,66.89,-44.27,52,0.87,19,6,76,1.22,0.36,-1.83,-1.02,1630.8,10,70,60,2018-03-27 17:33:08,2017-12-12 00:00:00,2018-02-10 23:59:00,22.93,"'short':3, 'long':-3, 'ema':50",shorter period
USDT,LTC,binance,EMADIV2,-39.45,-0.65,-232,-0.53,-34.44,-5.01,54,0.89,15,11,57.69,0.64,0.17,-1.47,-0.29,1651.54,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,22.22,"'ema':50, 'long':-3, 'short':3",shorter period
USDT,NEO,binance,EMADIV2,24.95,0.41,146,-0.3,96.24,-71.29,70,1.15,24,11,68.57,0.74,0.37,-1.84,-0.2,1078.86,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,26.97,"'ema':50, 'long':-3, 'short':3",shorter period
USDT,NXT,poloniex,EMADIV2,-65.69,-1.15,-413,-0.73,-54.67,-11.02,39,0.68,9,10,47.37,0.2,0.09,-1.35,-0.14,2128.95,10,70,57,2018-03-28 23:13:08,2018-01-27 00:00:00,2018-03-25 23:53:00,26.64,"'long':-3, 'ema':50, 'short':3",shorter period
BNB,ADX,binance,FIXPRICE,-47.12,-0.77,-277,0,-46.18,-0.94,1,0.02,0,0,-1,,n/a,,n/a,n/a,10,70,61,2018-03-27 17:33:08,2017-12-20 00:03:00,2018-02-19 23:58:00,47.35,"'exit':-1, 'long':37, 'short':41",shorter period
BNB,CND,binance,FIXPRICE,124.55,2.08,745,0,127.38,-2.83,1,0.02,0,0,-1,,n/a,,n/a,n/a,10,70,60,2018-03-27 17:33:08,2017-12-12 00:00:00,2018-02-10 23:55:00,49.72,"'exit':-1, 'short':41, 'long':37",shorter period
BNB,GTO,binance,FIXPRICE,-12.7,-0.21,-74,0,-17.85,5.15,1,0.02,0,0,-1,,n/a,,n/a,n/a,10,70,61,2018-03-27 17:33:08,2017-12-20 00:01:00,2018-02-19 23:58:00,24.6,"'short':41, 'long':37, 'exit':-1",shorter period
BNB,NEBL,binance,FIXPRICE,-39.12,-0.69,-246,0,-37.68,-1.44,1,0.02,0,0,-1,,n/a,,n/a,n/a,10,70,57,2018-03-27 17:33:08,2018-01-27 00:03:00,2018-03-25 23:58:00,16.74,"'exit':-1, 'short':41, 'long':37",shorter period
BNB,NULS,binance,FIXPRICE,-36.47,-0.64,-229,0,-35.94,-0.53,1,0.02,0,0,-1,,n/a,,n/a,n/a,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:58:00,16.63,"'short':41, 'long':37, 'exit':-1",shorter period
BNB,OST,binance,FIXPRICE,-54.11,-0.89,-318,0,-57.63,3.52,1,0.02,0,0,-1,,n/a,,n/a,n/a,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:53:00,25.15,"'exit':-1, 'short':41, 'long':37",shorter period
BNB,WTC,binance,FIXPRICE,-62.58,-1.1,-394,0,-61.73,-0.85,1,0.02,0,0,-1,,n/a,,n/a,n/a,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:54:00,24.05,"'short':41, 'long':37, 'exit':-1",shorter period
BNB,XLM,binance,FIXPRICE,-9.5,-0.16,-55,0,-8.98,-0.52,1,0.02,0,0,-1,,n/a,,n/a,n/a,10,70,61,2018-03-27 17:33:08,2017-12-20 00:02:00,2018-02-19 23:58:00,29.22,"'long':37, 'short':41, 'exit':-1",shorter period
BTC,ADA,binance,FIXPRICE,10.84,0.18,63,0,11.87,-1.02,1,0.02,0,0,-1,,n/a,,n/a,n/a,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,24.43,"'short':41, 'long':37, 'exit':-1",shorter period
BTC,BNB,binance,FIXPRICE,201.3,3.3,1185,0,200.79,0.51,1,0.02,0,0,-1,,n/a,,n/a,n/a,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:59:00,32.99,"'short':41, 'long':37, 'exit':-1",shorter period
BTC,BTM,poloniex,FIXPRICE,-49.32,-0.87,-310,0,-49.04,-0.28,1,0.02,0,0,-1,,n/a,,n/a,n/a,10,70,57,2018-03-28 23:13:08,2018-01-27 00:56:00,2018-03-25 23:46:00,26.13,"'short':41, 'exit':-1, 'long':37",shorter period
BTC,DGB,poloniex,FIXPRICE,70.36,1.15,414,0,72.81,-2.44,1,0.02,0,0,-1,,n/a,,n/a,n/a,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,23.7,"'long':37, 'exit':-1, 'short':41",shorter period
BTC,ETC,binance,FIXPRICE,58.65,0.96,345,0,59.31,-0.66,1,0.02,0,0,-1,,n/a,,n/a,n/a,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,17.44,"'long':37, 'short':41, 'exit':-1",shorter period
BTC,GAME,poloniex,FIXPRICE,51.62,0.85,304,0,53.27,-1.65,1,0.02,0,0,-1,,n/a,,n/a,n/a,10,70,61,2018-04-04 08:56:20,2017-12-20 00:00:00,2018-02-19 23:57:00,0,shorter period,
BTC,GAS,binance,FIXPRICE,338.81,5.65,2028,0,337.14,1.67,1,0.02,0,0,-1,,n/a,,n/a,n/a,10,70,60,2018-03-27 17:33:08,2017-12-12 00:01:00,2018-02-10 23:58:00,42.95,"'short':41, 'long':37, 'exit':-1",shorter period
BTC,ICX,binance,FIXPRICE,246.43,4.04,1451,0,243.07,3.35,1,0.02,0,0,-1,,n/a,,n/a,n/a,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,31.7,"'exit':-1, 'short':41, 'long':37",shorter period
BTC,OMG,binance,FIXPRICE,52.68,0.86,310,0,50.87,1.81,1,0.02,0,0,-1,,n/a,,n/a,n/a,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,15.52,"'short':41, 'long':37, 'exit':-1",shorter period
BTC,STR,poloniex,FIXPRICE,-50.32,-0.88,-316,0,-50.01,-0.31,1,0.02,0,0,-1,,n/a,,n/a,n/a,10,70,57,2018-03-28 23:13:08,2018-01-27 00:00:00,2018-03-25 23:58:00,22.09,"'short':41, 'exit':-1, 'long':37",shorter period
BTC,VEN,binance,FIXPRICE,628.32,10.3,3701,0,619.61,8.71,1,0.02,0,0,-1,,n/a,,n/a,n/a,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,47.55,"'exit':-1, 'long':37, 'short':41",shorter period
BTC,XRP,binance,FIXPRICE,133.22,2.18,784,0,133.4,-0.19,1,0.02,0,0,-1,,n/a,,n/a,n/a,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:59:00,25.81,"'short':41, 'long':37, 'exit':-1",shorter period
BTC,ZEC,binance,FIXPRICE,23.46,0.38,138,0,24.38,-0.92,1,0.02,0,0,-1,,n/a,,n/a,n/a,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,13.05,"'short':41, 'long':37, 'exit':-1",shorter period
ETH,AST,binance,FIXPRICE,-35.24,-0.62,-221,0,-34.89,-0.35,1,0.02,0,0,-1,,n/a,,n/a,n/a,10,70,57,2018-03-27 17:33:08,2018-01-27 00:03:00,2018-03-25 23:58:00,30.62,"'exit':-1, 'short':41, 'long':37",shorter period
ETH,EOS,binance,FIXPRICE,-29.42,-0.48,-173,0,-29.24,-0.17,1,0.02,0,0,-1,,n/a,,n/a,n/a,10,70,61,2018-04-04 08:56:20,2017-12-20 00:00:00,2018-02-19 23:58:00,0,shorter period,
ETH,FUEL,binance,FIXPRICE,-28.79,-0.51,-181,0,-28.59,-0.2,1,0.02,0,0,-1,,n/a,,n/a,n/a,10,70,57,2018-03-27 17:33:08,2018-01-27 00:01:00,2018-03-25 23:58:00,15.31,"'exit':-1, 'long':37, 'short':41",shorter period
ETH,ICN,kraken,FIXPRICE,-26.69,-0.44,-157,0,-26.29,-0.41,1,0.02,0,0,-1,,n/a,,n/a,n/a,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,24.75,"'long':37, 'exit':-1, 'short':41",shorter period
ETH,QTUM,binance,FIXPRICE,30.29,0.5,181,0,32.4,-2.1,1,0.02,0,0,-1,,n/a,,n/a,n/a,10,70,60,2018-04-04 08:56:20,2017-12-12 00:01:00,2018-02-10 23:58:00,0,1,shorter period
ETH,VIB,binance,FIXPRICE,11.51,0.2,72,0,12.57,-1.06,1,0.02,0,0,-1,,n/a,,n/a,n/a,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:58:00,15.12,"'short':41, 'long':37, 'exit':-1",shorter period
ETH,XVG,binance,FIXPRICE,289.04,4.82,1730,0,294.2,-5.16,1,0.02,0,0,-1,,n/a,,n/a,n/a,10,70,60,2018-04-04 08:56:20,2017-12-12 00:02:00,2018-02-10 23:58:00,0,shorter period,
EUR,XMR,kraken,FIXPRICE,0,0,0,0,-18.23,18.23,1,0.02,0,0,-1,,n/a,,n/a,n/a,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,20.52,"'long':37, 'exit':-1, 'short':41",shorter period
USD,AVT,bitfinex,FIXPRICE,-63.67,-1.1,-399,0,-63.47,-0.2,1,0.02,0,0,-1,,n/a,,n/a,n/a,10,70,58,2018-03-28 23:13:08,2018-01-26 13:30:00,2018-03-25 19:58:00,36.29,"'short':41, 'exit':-1, 'long':37",shorter period
USD,DAT,bitfinex,FIXPRICE,-52.27,-0.84,-307,0,-50.35,-1.92,1,0.02,0,0,-1,,n/a,,n/a,n/a,10,70,62,2018-03-28 23:13:08,2017-12-19 23:17:00,2018-02-19 23:56:00,36.88,"'short':41, 'exit':-1, 'long':37",shorter period
USD,ETP,bitfinex,FIXPRICE,-49.94,-0.81,-294,0,-50.35,0.41,1,0.02,0,0,-1,,n/a,,n/a,n/a,10,70,62,2018-03-28 23:13:08,2017-12-19 22:55:00,2018-02-19 23:43:00,35.1,"'long':37, 'short':41, 'exit':-1",shorter period
USD,RCN,bitfinex,FIXPRICE,-63.58,-1.1,-394,0,-63.33,-0.24,1,0.02,0,0,-1,,n/a,,n/a,n/a,10,70,58,2018-03-28 23:13:08,2018-01-26 02:00:00,2018-03-25 23:27:00,38.04,"'long':37, 'short':41, 'exit':-1",shorter period
USD,RRT,bitfinex,FIXPRICE,-70.35,-1.13,-413,0,-69.56,-0.8,1,0.02,0,0,-1,,n/a,,n/a,n/a,10,70,62,2018-03-28 23:13:08,2017-12-19 19:20:00,2018-02-19 23:24:00,43.53,"'short':41, 'exit':-1, 'long':37",shorter period
USD,SAN,bitfinex,FIXPRICE,-54.39,-0.89,-325,0,-53.99,-0.4,1,0.02,0,0,-1,,n/a,,n/a,n/a,10,70,61,2018-03-28 23:13:08,2017-12-11 23:07:00,2018-02-10 23:58:00,44.19,"'exit':-1, 'short':41, 'long':37",shorter period
USDT,BTC,binance,FIXPRICE,0,0,0,0,-35.4,35.4,1,0.02,0,0,-1,,n/a,,n/a,n/a,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,21.96,"'short':41, 'long':37, 'exit':-1",shorter period
USDT,ETH,binance,FIXPRICE,0,0,0,0,66.89,-66.89,1,0.02,0,0,-1,,n/a,,n/a,n/a,10,70,60,2018-03-27 17:33:08,2017-12-12 00:00:00,2018-02-10 23:59:00,22.93,"'short':41, 'long':37, 'exit':-1",shorter period
USDT,LTC,binance,FIXPRICE,0,0,0,0,-34.44,34.44,1,0.02,0,0,-1,,n/a,,n/a,n/a,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,22.22,"'long':37, 'short':41, 'exit':-1",shorter period
USDT,NEO,binance,FIXPRICE,0,0,0,0,96.24,-96.24,1,0.02,0,0,-1,,n/a,,n/a,n/a,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,26.97,"'long':37, 'short':41, 'exit':-1",shorter period
USDT,NXT,poloniex,FIXPRICE,-55.3,-0.97,-348,0,-54.67,-0.64,1,0.02,0,0,-1,,n/a,,n/a,n/a,10,70,57,2018-03-28 23:13:08,2018-01-27 00:00:00,2018-03-25 23:53:00,26.64,"'long':37, 'exit':-1, 'short':41",shorter period
BNB,ADX,binance,HL,15.16,0.25,89,-1.69,-46.18,61.33,14,0.23,7,0,100,0.22,0.09,0.04,n/a,1902.86,10,70,61,2018-03-27 17:33:08,2017-12-20 00:03:00,2018-02-19 23:58:00,47.35,,shorter period
BNB,CND,binance,HL,62.56,1.04,374,0.31,127.38,-64.82,16,0.27,7,1,87.5,0.82,0.3,-0.06,-0.06,3092.5,10,70,60,2018-03-27 17:33:08,2017-12-12 00:00:00,2018-02-10 23:55:00,49.72,,shorter period
BNB,GTO,binance,HL,12.81,0.21,75,-0.57,-17.85,30.66,8,0.13,4,0,100,0.31,0.11,0.07,n/a,1857.5,10,70,61,2018-03-27 17:33:08,2017-12-20 00:01:00,2018-02-19 23:58:00,24.6,,shorter period
BNB,NEBL,binance,HL,26.48,0.46,166,-0.42,-37.68,64.16,14,0.25,7,0,100,0.39,0.14,0.07,n/a,784.29,10,70,57,2018-03-27 17:33:08,2018-01-27 00:03:00,2018-03-25 23:58:00,16.74,,shorter period
BNB,NULS,binance,HL,13.42,0.24,84,-0.88,-35.94,49.36,14,0.25,5,2,71.43,0.32,0.07,-0.02,-0.02,662.86,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:58:00,16.63,,shorter period
BNB,OST,binance,HL,8.29,0.14,48,0.46,-57.63,65.92,9,0.15,4,0,100,0.95,0.29,0.07,n/a,6670,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:53:00,25.15,,shorter period
BNB,WTC,binance,HL,-36.01,-0.63,-226,-0.64,-61.73,25.72,11,0.19,4,1,80,0.32,0.15,0,0,644,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:54:00,24.05,,shorter period
BNB,XLM,binance,HL,63.15,1.04,372,0.3,-8.98,72.12,14,0.23,7,0,100,1.31,0.14,0.01,n/a,2818.57,10,70,61,2018-03-27 17:33:08,2017-12-20 00:02:00,2018-02-19 23:58:00,29.22,,shorter period
BTC,ADA,binance,HL,1.89,0.03,11,-2.07,11.87,-9.98,21,0.34,6,4,60,0.19,0.1,-0.04,-0.02,1763,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,24.43,,shorter period
BTC,BNB,binance,HL,6.82,0.11,40,-1.84,200.79,-193.96,12,0.2,5,1,83.33,0.18,0.05,-0.02,-0.02,768.33,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:59:00,32.99,,shorter period
BTC,BTM,poloniex,HL,-44.47,-0.78,-280,-Inf,-49.04,4.57,3,0.05,1,0,100,0.17,0.17,0.17,n/a,250,10,70,57,2018-03-28 23:13:08,2018-01-27 00:56:00,2018-03-25 23:46:00,26.13,,shorter period
BTC,DGB,poloniex,HL,27.39,0.45,161,-0.31,72.81,-45.42,16,0.26,7,1,87.5,0.5,0.12,-0.03,-0.03,508.75,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,23.7,,shorter period
BTC,ETC,binance,HL,13.16,0.22,77,-0.55,59.31,-46.15,12,0.2,6,0,100,0.48,0.04,0.02,n/a,685,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,17.44,,shorter period
BTC,GAME,poloniex,HL,12.98,0.21,76,-0.29,53.27,-40.29,8,0.13,3,1,75,0.43,0.19,-0.02,-0.02,590,10,70,61,2018-04-04 08:56:20,2017-12-20 00:00:00,2018-02-19 23:57:00,0,shorter period,
BTC,GAS,binance,HL,9.64,0.16,57,-1.29,337.14,-327.5,10,0.17,4,1,80,0.21,0.12,-0.04,-0.04,3584,10,70,60,2018-03-27 17:33:08,2017-12-12 00:01:00,2018-02-10 23:58:00,42.95,,shorter period
BTC,ICX,binance,HL,-42.93,-0.7,-252,-0.73,243.07,-286,11,0.18,3,2,60,0.34,0.16,-0.06,-0.04,3160,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,31.7,,shorter period
BTC,OMG,binance,HL,19.83,0.33,116,-0.43,50.87,-31.03,14,0.23,6,1,85.71,0.42,0.11,-0.08,-0.08,952.86,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,15.52,,shorter period
BTC,STR,poloniex,HL,-47.51,-0.83,-299,0,-50.01,2.5,1,0.02,0,0,-1,,n/a,,n/a,n/a,10,70,57,2018-03-28 23:13:08,2018-01-27 00:00:00,2018-03-25 23:58:00,22.09,,shorter period
BTC,VEN,binance,HL,3.51,0.06,20,0.63,619.61,-616.11,5,0.08,2,0,100,0.51,0.33,0.14,n/a,335,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,47.55,,shorter period
BTC,XRP,binance,HL,7.02,0.12,41,-1.99,133.4,-126.39,16,0.26,7,1,87.5,0.24,0.04,0,0,1821.25,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:59:00,25.81,,shorter period
BTC,ZEC,binance,HL,11.7,0.19,68,-1.39,24.38,-12.68,20,0.33,7,3,70,0.27,0.1,-0.1,0,552,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,13.05,,shorter period
ETH,AST,binance,HL,25.61,0.45,161,0.19,-34.89,60.51,8,0.14,2,2,50,0.99,0.56,-0.01,-0.01,1825,10,70,57,2018-03-27 17:33:08,2018-01-27 00:03:00,2018-03-25 23:58:00,30.62,,shorter period
ETH,EOS,binance,HL,5.17,0.08,30,-2.82,-29.24,34.42,6,0.1,3,0,100,0.14,0.07,0.06,n/a,8720,10,70,61,2018-04-04 08:56:20,2017-12-20 00:00:00,2018-02-19 23:58:00,0,shorter period,
ETH,FUEL,binance,HL,-19.03,-0.33,-119,-1.13,-28.59,9.56,11,0.19,3,2,60,0.28,0.08,0,0,436,10,70,57,2018-03-27 17:33:08,2018-01-27 00:01:00,2018-03-25 23:58:00,15.31,,shorter period
ETH,ICN,kraken,HL,9.68,0.16,57,-1.29,-26.29,35.96,12,0.2,5,1,83.33,0.22,0.09,-0.03,-0.03,885,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,24.75,,shorter period
ETH,QTUM,binance,HL,21.15,0.35,126,-0.71,32.4,-11.24,16,0.27,8,0,100,0.33,0.07,0.01,n/a,578.75,10,70,60,2018-04-04 08:56:20,2017-12-12 00:01:00,2018-02-10 23:58:00,0,1,shorter period
ETH,VIB,binance,HL,88.86,1.56,559,0.57,12.57,76.3,10,0.18,5,0,100,2.06,0.45,0.19,n/a,1724,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:58:00,15.12,,shorter period
ETH,XVG,binance,HL,5.92,0.1,35,0.18,294.2,-288.28,11,0.18,5,0,100,0.59,0.13,0.07,n/a,1740,10,70,60,2018-04-04 08:56:20,2017-12-12 00:02:00,2018-02-10 23:58:00,0,shorter period,
EUR,XMR,kraken,HL,8.43,0.14,49,-1.44,-18.23,26.66,16,0.26,5,3,62.5,0.24,0.11,-0.06,-0.04,1068.75,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,20.52,,shorter period
USD,AVT,bitfinex,HL,-56.5,-0.97,-354,-1.09,-63.47,6.97,7,0.12,2,1,66.67,0.21,0.17,-0.01,-0.01,390,10,70,58,2018-03-28 23:13:08,2018-01-26 13:30:00,2018-03-25 19:58:00,36.29,,shorter period
USD,DAT,bitfinex,HL,-61.05,-0.98,-359,Inf,-50.35,-10.7,3,0.05,1,0,100,0.27,0.27,0.27,n/a,260,10,70,62,2018-03-28 23:13:08,2017-12-19 23:17:00,2018-02-19 23:56:00,36.88,,shorter period
USD,ETP,bitfinex,HL,10.99,0.18,64,-0.48,-50.35,61.34,8,0.13,3,1,75,0.37,0.13,0,0,362.5,10,70,62,2018-03-28 23:13:08,2017-12-19 22:55:00,2018-02-19 23:43:00,35.1,,shorter period
USD,RCN,bitfinex,HL,48.05,0.83,298,-0.05,-63.33,111.39,22,0.38,9,2,81.82,1.46,0.11,-0.04,-0.02,760.91,10,70,58,2018-03-28 23:13:08,2018-01-26 02:00:00,2018-03-25 23:27:00,38.04,,shorter period
USD,RRT,bitfinex,HL,48.44,0.78,284,-0.06,-69.56,117.99,20,0.32,9,1,90,0.57,0.17,-0.04,-0.04,660,10,70,62,2018-03-28 23:13:08,2017-12-19 19:20:00,2018-02-19 23:24:00,43.53,,shorter period
USD,SAN,bitfinex,HL,33.38,0.55,199,0.28,-53.99,87.37,10,0.16,4,1,80,0.78,0.32,0,0,604,10,70,61,2018-03-28 23:13:08,2017-12-11 23:07:00,2018-02-10 23:58:00,44.19,,shorter period
USDT,BTC,binance,HL,9.36,0.15,55,-0.97,-35.4,44.76,13,0.21,5,1,83.33,0.26,0.15,-0.03,-0.03,701.67,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,21.96,,shorter period
USDT,ETH,binance,HL,6.27,0.1,37,-1.3,66.89,-60.61,7,0.12,3,0,100,0.17,0.16,0.03,n/a,686.67,10,70,60,2018-03-27 17:33:08,2017-12-12 00:00:00,2018-02-10 23:59:00,22.93,,shorter period
USDT,LTC,binance,HL,1.4,0.02,8,-3.02,-34.44,35.84,8,0.13,2,2,50,0.11,0.09,-0.02,-0.01,9140,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,22.22,,shorter period
USDT,NEO,binance,HL,12.49,0.2,73,-1.2,96.24,-83.76,14,0.23,6,1,85.71,0.23,0.12,-0.08,-0.08,1004.29,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,26.97,,shorter period
USDT,NXT,poloniex,HL,6.72,0.12,42,-3.9,-54.67,61.38,10,0.18,5,0,100,0.12,0.08,0.03,n/a,1150,10,70,57,2018-03-28 23:13:08,2018-01-27 00:00:00,2018-03-25 23:53:00,26.64,,shorter period
BNB,ADX,binance,jazzbre,-100,-1.64,-589,-1.79,-46.18,-53.82,747,12.25,10,363,2.68,0.18,0.09,-0.61,0,112.41,10,70,61,2018-03-27 17:33:08,2017-12-20 00:03:00,2018-02-19 23:58:00,47.35,"'short':10, 'signal':9, 'chart': { 'indicatorColors': { 'ppo':'purple', 'ema5':'black', 'ema4':'yellow', 'ema2':'pink', 'ema3':'orange', 'ema1':'cyan' } }, 'long':21, 'interval':14, 'thresholds': { 'up':0.025, 'down':-0.025 }",shorter period
BNB,CND,binance,jazzbre,-99.97,-1.67,-598,-0.73,127.38,-227.35,649,10.82,17,307,5.25,0.54,0.01,-0.26,0,129.6,10,70,60,2018-03-27 17:33:08,2017-12-12 00:00:00,2018-02-10 23:55:00,49.72,"'interval':14, 'thresholds': { 'down':-0.025, 'up':0.025 }, 'short':10, 'signal':9, 'chart': { 'indicatorColors': { 'ppo':'purple', 'ema3':'orange', 'ema1':'cyan', 'ema5':'black', 'ema4':'yellow', 'ema2':'pink' } }, 'long':21",shorter period
BNB,GTO,binance,jazzbre,-100,-1.64,-589,-1.43,-17.85,-82.15,790,12.95,6,389,1.52,0.16,0.02,-0.2,0,105.37,10,70,61,2018-03-27 17:33:08,2017-12-20 00:01:00,2018-02-19 23:58:00,24.6,"'thresholds': { 'down':-0.025, 'up':0.025 }, 'interval':14, 'chart': { 'indicatorColors': { 'ema4':'yellow', 'ema5':'black', 'ema2':'pink', 'ema1':'cyan', 'ema3':'orange', 'ppo':'purple' } }, 'long':21, 'signal':9, 'short':10",shorter period
BNB,NEBL,binance,jazzbre,-99.99,-1.75,-629,-2.57,-37.68,-62.31,732,12.84,11,355,3.01,0.38,0.03,-0.12,0,99.64,10,70,57,2018-03-27 17:33:08,2018-01-27 00:03:00,2018-03-25 23:58:00,16.74,"'signal':9, 'short':10, 'chart': { 'indicatorColors': { 'ema4':'yellow', 'ema5':'black', 'ema2':'pink', 'ema1':'cyan', 'ema3':'orange', 'ppo':'purple' } }, 'long':21, 'interval':14, 'thresholds': { 'down':-0.025, 'up':0.025 }",shorter period
BNB,NULS,binance,jazzbre,-99.95,-1.75,-629,-2.09,-35.94,-64.01,632,11.09,11,305,3.48,0.06,0.01,-0.14,0,127.78,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:58:00,16.63,"'thresholds': { 'down':-0.025, 'up':0.025 }, 'interval':14, 'chart': { 'indicatorColors': { 'ema4':'yellow', 'ema5':'black', 'ema2':'pink', 'ema3':'orange', 'ema1':'cyan', 'ppo':'purple' } }, 'long':21, 'signal':9, 'short':10",shorter period
BNB,OST,binance,jazzbre,-100,-1.64,-589,-1.37,-57.63,-42.37,818,13.41,0,409,0,0,n/a,-0.66,0,104.21,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:53:00,25.15,"'thresholds': { 'up':0.025, 'down':-0.025 }, 'interval':14, 'long':21, 'chart': { 'indicatorColors': { 'ema3':'orange', 'ema1':'cyan', 'ema4':'yellow', 'ema5':'black', 'ema2':'pink', 'ppo':'purple' } }, 'signal':9, 'short':10",shorter period
BNB,WTC,binance,jazzbre,-99.95,-1.75,-629,-2.89,-61.73,-38.22,666,11.68,11,322,3.3,0.25,0.02,-0.17,0,110.87,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:54:00,24.05,"'chart': { 'indicatorColors': { 'ppo':'purple', 'ema5':'black', 'ema2':'pink', 'ema4':'yellow', 'ema1':'cyan', 'ema3':'orange' } }, 'long':21, 'short':10, 'signal':9, 'thresholds': { 'down':-0.025, 'up':0.025 }, 'interval':14",shorter period
BNB,XLM,binance,jazzbre,-100,-1.64,-589,-1.54,-8.98,-91.02,719,11.79,1,358,0.28,0.01,0.01,-0.39,0,122.06,10,70,61,2018-03-27 17:33:08,2017-12-20 00:02:00,2018-02-19 23:58:00,29.22,"'short':10, 'signal':9, 'chart': { 'indicatorColors': { 'ema4':'yellow', 'ema5':'black', 'ema2':'pink', 'ema1':'cyan', 'ema3':'orange', 'ppo':'purple' } }, 'long':21, 'interval':14, 'thresholds': { 'down':-0.025, 'up':0.025 }",shorter period
BTC,ADA,binance,jazzbre,-95.65,-1.57,-563,-1.71,11.87,-107.52,540,8.85,40,230,14.81,0.66,0.04,-0.26,-0.01,144.04,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,24.43,"'thresholds': { 'up':0.025, 'down':-0.025 }, 'interval':14, 'chart': { 'indicatorColors': { 'ppo':'purple', 'ema3':'orange', 'ema1':'cyan', 'ema5':'black', 'ema2':'pink', 'ema4':'yellow' } }, 'long':21, 'signal':9, 'short':10",shorter period
BTC,BNB,binance,jazzbre,-95.73,-1.57,-563,-1.86,200.79,-296.52,552,9.05,46,230,16.67,0.55,0.05,-0.34,-0.01,143.62,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:59:00,32.99,"'interval':14, 'thresholds': { 'up':0.025, 'down':-0.025 }, 'short':10, 'signal':9, 'long':21, 'chart': { 'indicatorColors': { 'ema1':'cyan', 'ema3':'orange', 'ema2':'pink', 'ema5':'black', 'ema4':'yellow', 'ppo':'purple' } }",shorter period
BTC,BTM,poloniex,jazzbre,-99.93,-1.75,-629,-2.56,-49.04,-50.89,596,10.46,5,293,1.68,0.24,0.04,-0.16,0,122.21,10,70,57,2018-03-28 23:13:08,2018-01-27 00:56:00,2018-03-25 23:46:00,26.13,"'interval':14, 'chart': { 'indicatorColors': { 'ema1':'cyan', 'ema3':'orange', 'ppo':'purple', 'ema2':'pink', 'ema4':'yellow', 'ema5':'black' } }, 'short':10, 'thresholds': { 'down':-0.025, 'up':0.025 }, 'signal':9, 'long':21",shorter period
BTC,DGB,poloniex,jazzbre,-98.65,-1.62,-581,-1.25,72.81,-171.46,658,10.79,43,286,13.07,2.55,0.05,-0.43,-0.01,128.84,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,23.7,"'short':10, 'chart': { 'indicatorColors': { 'ema3':'orange', 'ema1':'cyan', 'ema5':'black', 'ppo':'purple', 'ema4':'yellow', 'ema2':'pink' } }, 'interval':14, 'long':21, 'signal':9, 'thresholds': { 'up':0.025, 'down':-0.025 }",shorter period
BTC,ETC,binance,jazzbre,-95.65,-1.57,-563,-2.12,59.31,-154.96,572,9.38,34,252,11.89,0.22,0.02,-0.17,-0.01,154.13,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,17.44,"'interval':14, 'thresholds': { 'up':0.025, 'down':-0.025 }, 'short':10, 'signal':9, 'chart': { 'indicatorColors': { 'ema5':'black', 'ema2':'pink', 'ema4':'yellow', 'ema1':'cyan', 'ema3':'orange', 'ppo':'purple' } }, 'long':21",shorter period
BTC,GAME,poloniex,jazzbre,-99.45,-1.63,-585,-2.28,53.27,-152.71,688,11.28,42,302,12.21,0.34,0.05,-0.28,0,123.46,10,70,61,2018-04-04 08:56:20,2017-12-20 00:00:00,2018-02-19 23:57:00,0,shorter period,
BTC,GAS,binance,jazzbre,-95.42,-1.59,-571,-1.27,337.14,-432.56,558,9.3,55,224,19.71,0.51,0.04,-0.25,-0.01,160.57,10,70,60,2018-03-27 17:33:08,2017-12-12 00:01:00,2018-02-10 23:58:00,42.95,"'thresholds': { 'down':-0.025, 'up':0.025 }, 'interval':14, 'long':21, 'chart': { 'indicatorColors': { 'ema5':'black', 'ema4':'yellow', 'ema2':'pink', 'ema1':'cyan', 'ema3':'orange', 'ppo':'purple' } }, 'short':10, 'signal':9",shorter period
BTC,ICX,binance,jazzbre,-80.93,-1.33,-476,-0.96,243.07,-324.01,492,8.07,60,186,24.39,1.82,0.14,-0.48,-0.05,181.71,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,31.7,"'long':21, 'chart': { 'indicatorColors': { 'ppo':'purple', 'ema5':'black', 'ema2':'pink', 'ema4':'yellow', 'ema1':'cyan', 'ema3':'orange' } }, 'short':10, 'signal':9, 'thresholds': { 'up':0.025, 'down':-0.025 }, 'interval':14",shorter period
BTC,OMG,binance,jazzbre,-93.66,-1.54,-551,-1.87,50.87,-144.53,538,8.82,48,221,17.84,0.36,0.02,-0.2,-0.01,168.1,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,15.52,"'long':21, 'chart': { 'indicatorColors': { 'ppo':'purple', 'ema3':'orange', 'ema1':'cyan', 'ema5':'black', 'ema4':'yellow', 'ema2':'pink' } }, 'short':10, 'signal':9, 'thresholds': { 'down':-0.025, 'up':0.025 }, 'interval':14",shorter period
BTC,STR,poloniex,jazzbre,-96.98,-1.7,-610,-3.31,-50.01,-46.97,529,9.28,20,244,7.58,0.21,0.03,-0.11,-0.01,127.77,10,70,57,2018-03-28 23:13:08,2018-01-27 00:00:00,2018-03-25 23:58:00,22.09,"'short':10, 'interval':14, 'chart': { 'indicatorColors': { 'ema5':'black', 'ppo':'purple', 'ema4':'yellow', 'ema2':'pink', 'ema3':'orange', 'ema1':'cyan' } }, 'long':21, 'thresholds': { 'up':0.025, 'down':-0.025 }, 'signal':9",shorter period
BTC,VEN,binance,jazzbre,-85.4,-1.4,-503,-1.07,619.61,-705.01,521,8.54,65,195,25,0.69,0.05,-0.19,-0.02,182.19,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,47.55,"'thresholds': { 'down':-0.025, 'up':0.025 }, 'interval':14, 'long':21, 'chart': { 'indicatorColors': { 'ema5':'black', 'ema4':'yellow', 'ema2':'pink', 'ema1':'cyan', 'ema3':'orange', 'ppo':'purple' } }, 'short':10, 'signal':9",shorter period
BTC,XRP,binance,jazzbre,-81.68,-1.34,-481,-1.24,133.4,-215.09,504,8.26,43,209,17.06,1.34,0.12,-0.44,-0.02,154.13,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:59:00,25.81,"'long':21, 'chart': { 'indicatorColors': { 'ppo':'purple', 'ema3':'orange', 'ema1':'cyan', 'ema2':'pink', 'ema5':'black', 'ema4':'yellow' } }, 'short':10, 'signal':9, 'thresholds': { 'up':0.025, 'down':-0.025 }, 'interval':14",shorter period
BTC,ZEC,binance,jazzbre,-98.72,-1.62,-581,-2.64,24.38,-123.11,634,10.39,29,288,9.15,0.5,0.03,-0.2,0,130.79,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,13.05,"'chart': { 'indicatorColors': { 'ppo':'purple', 'ema1':'cyan', 'ema3':'orange', 'ema5':'black', 'ema4':'yellow', 'ema2':'pink' } }, 'long':21, 'short':10, 'signal':9, 'thresholds': { 'up':0.025, 'down':-0.025 }, 'interval':14",shorter period
ETH,AST,binance,jazzbre,-97.64,-1.71,-614,-1.68,-34.89,-62.74,520,9.12,33,227,12.69,0.5,0.03,-0.24,-0.01,136.54,10,70,57,2018-03-27 17:33:08,2018-01-27 00:03:00,2018-03-25 23:58:00,30.62,"'short':10, 'signal':9, 'chart': { 'indicatorColors': { 'ema5':'black', 'ema4':'yellow', 'ema2':'pink', 'ema1':'cyan', 'ema3':'orange', 'ppo':'purple' } }, 'long':21, 'interval':14, 'thresholds': { 'up':0.025, 'down':-0.025 }",shorter period
ETH,EOS,binance,jazzbre,-95.38,-1.56,-561,-1.72,-29.24,-66.13,533,8.74,30,236,11.28,0.23,0.03,-0.33,-0.01,157.33,10,70,61,2018-04-04 08:56:20,2017-12-20 00:00:00,2018-02-19 23:58:00,0,shorter period,
ETH,FUEL,binance,jazzbre,-99.79,-1.75,-628,-3.25,-28.59,-71.2,646,11.33,15,308,4.64,0.1,0.03,-0.16,0,113.28,10,70,57,2018-03-27 17:33:08,2018-01-27 00:01:00,2018-03-25 23:58:00,15.31,"'interval':14, 'thresholds': { 'down':-0.025, 'up':0.025 }, 'signal':9, 'short':10, 'long':21, 'chart': { 'indicatorColors': { 'ema2':'pink', 'ema5':'black', 'ema4':'yellow', 'ema1':'cyan', 'ema3':'orange', 'ppo':'purple' } }",shorter period
ETH,ICN,kraken,jazzbre,-99.8,-1.64,-587,-1.97,-26.29,-73.52,640,10.49,25,295,7.81,0.38,0.05,-0.19,0,136.75,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,24.75,"'short':10, 'interval':14, 'chart': { 'indicatorColors': { 'ema1':'cyan', 'ema3':'orange', 'ema2':'pink', 'ppo':'purple', 'ema4':'yellow', 'ema5':'black' } }, 'long':21, 'thresholds': { 'down':-0.025, 'up':0.025 }, 'signal':9",shorter period
ETH,QTUM,binance,jazzbre,-99.47,-1.66,-595,-1.18,32.4,-131.87,637,10.62,25,293,7.86,1.37,0.02,-0.33,0,119.94,10,70,60,2018-04-04 08:56:20,2017-12-12 00:01:00,2018-02-10 23:58:00,0,1,shorter period
ETH,VIB,binance,jazzbre,-99.75,-1.75,-628,-2.25,12.57,-112.32,705,12.37,14,338,3.98,0.94,0.06,-0.2,0,106.08,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:58:00,15.12,"'short':10, 'signal':9, 'chart': { 'indicatorColors': { 'ppo':'purple', 'ema4':'yellow', 'ema5':'black', 'ema2':'pink', 'ema3':'orange', 'ema1':'cyan' } }, 'long':21, 'interval':14, 'thresholds': { 'down':-0.025, 'up':0.025 }",shorter period
ETH,XVG,binance,jazzbre,-94.36,-1.57,-565,-0.6,294.2,-388.56,527,8.78,45,218,17.11,2.02,0.17,-1.4,-0.02,149.89,10,70,60,2018-04-04 08:56:20,2017-12-12 00:02:00,2018-02-10 23:58:00,0,shorter period,
EUR,XMR,kraken,jazzbre,-95.02,-1.56,-559,-1.87,-18.23,-76.79,557,9.13,47,231,16.91,0.31,0.03,-0.18,-0.01,162.45,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,20.52,"'chart': { 'indicatorColors': { 'ema1':'cyan', 'ema3':'orange', 'ema2':'pink', 'ppo':'purple', 'ema4':'yellow', 'ema5':'black' } }, 'interval':14, 'short':10, 'signal':9, 'thresholds': { 'up':0.025, 'down':-0.025 }, 'long':21",shorter period
USD,AVT,bitfinex,jazzbre,-99.22,-1.71,-621,-1.56,-63.47,-35.75,431,7.43,29,186,13.49,1.26,0.02,-0.27,-0.01,185.49,10,70,58,2018-03-28 23:13:08,2018-01-26 13:30:00,2018-03-25 19:58:00,36.29,"'long':21, 'thresholds': { 'down':-0.025, 'up':0.025 }, 'signal':9, 'short':10, 'interval':14, 'chart': { 'indicatorColors': { 'ema1':'cyan', 'ema3':'orange', 'ppo':'purple', 'ema4':'yellow', 'ema2':'pink', 'ema5':'black' } }",shorter period
USD,DAT,bitfinex,jazzbre,-99.9,-1.61,-588,-1.66,-50.35,-49.55,644,10.39,31,291,9.63,0.32,0.03,-0.49,0,136.06,10,70,62,2018-03-28 23:13:08,2017-12-19 23:17:00,2018-02-19 23:56:00,36.88,"'long':21, 'signal':9, 'thresholds': { 'down':-0.025, 'up':0.025 }, 'short':10, 'chart': { 'indicatorColors': { 'ema3':'orange', 'ema1':'cyan', 'ema5':'black', 'ema4':'yellow', 'ppo':'purple', 'ema2':'pink' } }, 'interval':14",shorter period
USD,ETP,bitfinex,jazzbre,-99.79,-1.61,-587,-1.52,-50.35,-49.44,634,10.23,24,293,7.57,0.32,0.04,-0.23,0,138.71,10,70,62,2018-03-28 23:13:08,2017-12-19 22:55:00,2018-02-19 23:43:00,35.1,"'chart': { 'indicatorColors': { 'ema1':'cyan', 'ema3':'orange', 'ema2':'pink', 'ppo':'purple', 'ema4':'yellow', 'ema5':'black' } }, 'interval':14, 'short':10, 'signal':9, 'thresholds': { 'up':0.025, 'down':-0.025 }, 'long':21",shorter period
USD,RCN,bitfinex,jazzbre,-99.95,-1.72,-619,-1.36,-63.33,-36.62,447,7.71,15,208,6.73,0.16,0.05,-0.24,0,184.13,10,70,58,2018-03-28 23:13:08,2018-01-26 02:00:00,2018-03-25 23:27:00,38.04,"'interval':14, 'chart': { 'indicatorColors': { 'ema4':'yellow', 'ppo':'purple', 'ema2':'pink', 'ema5':'black', 'ema1':'cyan', 'ema3':'orange' } }, 'short':10, 'thresholds': { 'up':0.025, 'down':-0.025 }, 'signal':9, 'long':21",shorter period
USD,RRT,bitfinex,jazzbre,-99.97,-1.61,-587,-1.76,-69.56,-30.41,556,8.97,14,264,5.04,0.36,0.03,-0.32,0,151.19,10,70,62,2018-03-28 23:13:08,2017-12-19 19:20:00,2018-02-19 23:24:00,43.53,"'long':21, 'signal':9, 'thresholds': { 'down':-0.025, 'up':0.025 }, 'short':10, 'chart': { 'indicatorColors': { 'ema1':'cyan', 'ema3':'orange', 'ema4':'yellow', 'ppo':'purple', 'ema2':'pink', 'ema5':'black' } }, 'interval':14",shorter period
USD,SAN,bitfinex,jazzbre,-99.85,-1.64,-597,-1.31,-53.99,-45.86,649,10.64,26,298,8.02,0.53,0.04,-0.21,0,132.1,10,70,61,2018-03-28 23:13:08,2017-12-11 23:07:00,2018-02-10 23:58:00,44.19,"'long':21, 'thresholds': { 'up':0.025, 'down':-0.025 }, 'signal':9, 'short':10, 'interval':14, 'chart': { 'indicatorColors': { 'ppo':'purple', 'ema4':'yellow', 'ema2':'pink', 'ema5':'black', 'ema1':'cyan', 'ema3':'orange' } }",shorter period
USDT,BTC,binance,jazzbre,-97.72,-1.6,-575,-2.61,-35.4,-62.33,575,9.43,39,248,13.59,0.16,0.02,-0.2,-0.01,165.51,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,21.96,"'chart': { 'indicatorColors': { 'ppo':'purple', 'ema1':'cyan', 'ema3':'orange', 'ema4':'yellow', 'ema5':'black', 'ema2':'pink' } }, 'long':21, 'signal':9, 'short':10, 'thresholds': { 'down':-0.025, 'up':0.025 }, 'interval':14",shorter period
USDT,ETH,binance,jazzbre,-92.05,-1.53,-551,-1.75,66.89,-158.94,521,8.68,62,198,23.85,0.42,0.03,-0.21,-0.02,193.81,10,70,60,2018-03-27 17:33:08,2017-12-12 00:00:00,2018-02-10 23:59:00,22.93,"'interval':14, 'thresholds': { 'down':-0.025, 'up':0.025 }, 'signal':9, 'short':10, 'long':21, 'chart': { 'indicatorColors': { 'ppo':'purple', 'ema1':'cyan', 'ema3':'orange', 'ema2':'pink', 'ema5':'black', 'ema4':'yellow' } }",shorter period
USDT,LTC,binance,jazzbre,-96.11,-1.58,-566,-1.9,-34.44,-61.67,552,9.05,52,224,18.84,0.29,0.02,-0.16,-0.01,169.38,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,22.22,"'thresholds': { 'up':0.025, 'down':-0.025 }, 'interval':14, 'long':21, 'chart': { 'indicatorColors': { 'ema5':'black', 'ema2':'pink', 'ema4':'yellow', 'ema3':'orange', 'ema1':'cyan', 'ppo':'purple' } }, 'short':10, 'signal':9",shorter period
USDT,NEO,binance,jazzbre,-93.95,-1.54,-553,-1.45,96.24,-190.2,537,8.8,70,198,26.12,0.22,0.03,-0.36,-0.02,183.84,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,26.97,"'thresholds': { 'down':-0.025, 'up':0.025 }, 'interval':14, 'long':21, 'chart': { 'indicatorColors': { 'ppo':'purple', 'ema1':'cyan', 'ema3':'orange', 'ema2':'pink', 'ema5':'black', 'ema4':'yellow' } }, 'short':10, 'signal':9",shorter period
USDT,NXT,poloniex,jazzbre,-98.97,-1.74,-623,-2.2,-54.67,-44.3,600,10.53,34,266,11.33,0.18,0.02,-0.13,0,132.97,10,70,57,2018-03-28 23:13:08,2018-01-27 00:00:00,2018-03-25 23:53:00,26.64,"'short':10, 'chart': { 'indicatorColors': { 'ema1':'cyan', 'ema3':'orange', 'ema4':'yellow', 'ppo':'purple', 'ema2':'pink', 'ema5':'black' } }, 'interval':14, 'long':21, 'signal':9, 'thresholds': { 'down':-0.025, 'up':0.025 }",shorter period
BNB,ADX,binance,Luke_NN_Sample,34550.62,566.4,203549,0.14,-46.18,34596.8,225,3.69,103,9,91.96,91.09,13.82,-153.41,-45.01,401.7,10,70,61,2018-03-27 17:33:08,2017-12-20 00:03:00,2018-02-19 23:58:00,47.35,"'neuralnet': { 'momentum':0.1, 'decay':0.1, 'price_buffer_len':100, 'learning_rate':0.01, 'scale':1, 'min_predictions':1000 }",shorter period
BNB,CND,binance,Luke_NN_Sample,849.41,14.16,5086,-0.18,127.38,722.03,206,3.43,87,15,85.29,7.75,0.92,-9.61,-2.22,406.96,10,70,60,2018-03-27 17:33:08,2017-12-12 00:00:00,2018-02-10 23:55:00,49.72,"'neuralnet': { 'momentum':0.1, 'decay':0.1, 'learning_rate':0.01, 'price_buffer_len':100, 'scale':1, 'min_predictions':1000 }",shorter period
BNB,GTO,binance,Luke_NN_Sample,83308.18,1365.71,490785,0.12,-17.85,83326.03,269,4.41,113,21,84.33,1581.19,12.46,-276.04,-13.1,372.91,10,70,61,2018-03-27 17:33:08,2017-12-20 00:01:00,2018-02-19 23:58:00,24.6,"'neuralnet': { 'min_predictions':1000, 'scale':1, 'learning_rate':0.01, 'price_buffer_len':100, 'decay':0.1, 'momentum':0.1 }",shorter period
BNB,NEBL,binance,Luke_NN_Sample,73.21,1.28,461,-0.5,-37.68,110.89,105,1.84,38,14,73.08,1.4,0.19,-1.54,-0.19,936.15,10,70,57,2018-03-27 17:33:08,2018-01-27 00:03:00,2018-03-25 23:58:00,16.74,"'neuralnet': { 'momentum':0.1, 'decay':0.1, 'min_predictions':1000, 'learning_rate':0.01, 'price_buffer_len':100, 'scale':1 }",shorter period
BNB,NULS,binance,Luke_NN_Sample,16.07,0.28,101,-0.57,-35.94,52.01,107,1.88,39,14,73.58,0.43,0.21,-2.11,-0.3,849.62,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:58:00,16.63,"'neuralnet': { 'decay':0.1, 'momentum':0.1, 'min_predictions':1000, 'scale':1, 'price_buffer_len':100, 'learning_rate':0.01 }",shorter period
BNB,OST,binance,Luke_NN_Sample,3850400.76,63121.32,22684520,0.32,-57.63,3850458.39,305,5,141,11,92.76,10623.89,655.47,-11568.53,-1357.34,321.38,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:53:00,25.15,"'neuralnet': { 'decay':0.1, 'momentum':0.1, 'learning_rate':0.01, 'price_buffer_len':100, 'scale':1, 'min_predictions':1000 }",shorter period
BNB,WTC,binance,Luke_NN_Sample,-15.43,-0.27,-97,-0.58,-61.73,46.3,97,1.7,33,15,68.75,0.41,0.21,-1.78,-0.15,941.04,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:54:00,24.05,"'neuralnet': { 'learning_rate':0.01, 'price_buffer_len':100, 'scale':1, 'min_predictions':1000, 'decay':0.1, 'momentum':0.1 }",shorter period
BNB,XLM,binance,Luke_NN_Sample,1775.82,29.11,10461,-0.04,-8.98,1784.79,170,2.79,71,13,84.52,14.88,2.04,-28.12,-3.2,517.02,10,70,61,2018-03-27 17:33:08,2017-12-20 00:02:00,2018-02-19 23:58:00,29.22,"'neuralnet': { 'momentum':0.1, 'decay':0.1, 'min_predictions':1000, 'price_buffer_len':100, 'learning_rate':0.01, 'scale':1 }",shorter period
BTC,ADA,binance,Luke_NN_Sample,-35.5,-0.58,-209,-0.87,11.87,-47.36,70,1.15,20,14,58.82,0.38,0.17,-0.91,-0.23,1423.82,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,24.43,"'neuralnet': { 'momentum':0.1, 'decay':0.1, 'scale':1, 'price_buffer_len':100, 'learning_rate':0.01, 'min_predictions':1000 }",shorter period
BTC,BNB,binance,Luke_NN_Sample,-10.77,-0.18,-63,-0.72,200.79,-211.55,64,1.05,22,9,70.97,0.38,0.18,-1.38,-0.23,1549.68,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:59:00,32.99,"'neuralnet': { 'min_predictions':1000, 'scale':1, 'learning_rate':0.01, 'price_buffer_len':100, 'decay':0.1, 'momentum':0.1 }",shorter period
BTC,BTM,poloniex,Luke_NN_Sample,15.23,0.27,96,-0.41,-49.04,64.27,67,1.18,24,9,72.73,0.98,0.16,-1.04,-0.22,1486.97,10,70,57,2018-03-28 23:13:08,2018-01-27 00:56:00,2018-03-25 23:46:00,26.13,"'neuralnet': { 'momentum':0.1, 'learning_rate':0.01, 'min_predictions':1000, 'decay':0.1, 'scale':1, 'price_buffer_len':100 }",shorter period
BTC,DGB,poloniex,Luke_NN_Sample,-50.09,-0.82,-295,-0.74,72.81,-122.89,80,1.31,21,18,53.85,0.31,0.12,-1.24,-0.09,1175.13,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,23.7,"'neuralnet': { 'decay':0.1, 'price_buffer_len':100, 'scale':1, 'learning_rate':0.01, 'min_predictions':1000, 'momentum':0.1 }",shorter period
BTC,ETC,binance,Luke_NN_Sample,-22.92,-0.38,-135,-0.8,59.31,-82.23,57,0.93,15,13,53.57,0.59,0.12,-0.53,-0.19,1612.86,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,17.44,"'neuralnet': { 'price_buffer_len':100, 'learning_rate':0.01, 'scale':1, 'min_predictions':1000, 'momentum':0.1, 'decay':0.1 }",shorter period
BTC,GAME,poloniex,Luke_NN_Sample,55.51,0.91,327,-0.69,53.27,2.25,97,1.59,35,13,72.92,0.82,0.19,-0.67,-0.26,1006.67,10,70,61,2018-04-04 08:56:20,2017-12-20 00:00:00,2018-02-19 23:57:00,0,shorter period,
BTC,GAS,binance,Luke_NN_Sample,78.2,1.3,468,-0.47,337.14,-258.94,102,1.7,37,13,74,1.08,0.26,-1.77,-0.33,763.2,10,70,60,2018-03-27 17:33:08,2017-12-12 00:01:00,2018-02-10 23:58:00,42.95,"'neuralnet': { 'decay':0.1, 'momentum':0.1, 'learning_rate':0.01, 'price_buffer_len':100, 'scale':1, 'min_predictions':1000 }",shorter period
BTC,ICX,binance,Luke_NN_Sample,14.55,0.24,85,-0.59,243.07,-228.52,118,1.93,43,15,74.14,0.47,0.26,-2.12,-0.24,714.14,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,31.7,"'neuralnet': { 'decay':0.1, 'momentum':0.1, 'min_predictions':1000, 'scale':1, 'price_buffer_len':100, 'learning_rate':0.01 }",shorter period
BTC,OMG,binance,Luke_NN_Sample,-13.35,-0.22,-78,-0.9,50.87,-64.21,76,1.25,22,15,59.46,0.24,0.16,-0.64,-0.15,1144.86,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,15.52,"'neuralnet': { 'decay':0.1, 'momentum':0.1, 'scale':1, 'learning_rate':0.01, 'price_buffer_len':100, 'min_predictions':1000 }",shorter period
BTC,STR,poloniex,Luke_NN_Sample,-58.6,-1.03,-369,-1.01,-50.01,-8.59,39,0.68,8,11,42.11,0.2,0.07,-0.7,-0.17,2688.95,10,70,57,2018-03-28 23:13:08,2018-01-27 00:00:00,2018-03-25 23:58:00,22.09,"'neuralnet': { 'price_buffer_len':100, 'scale':1, 'decay':0.1, 'min_predictions':1000, 'learning_rate':0.01, 'momentum':0.1 }",shorter period
BTC,VEN,binance,Luke_NN_Sample,59.26,0.97,349,-0.63,619.61,-560.36,105,1.72,38,14,73.08,0.53,0.28,-1.17,-0.41,752.12,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,47.55,"'neuralnet': { 'momentum':0.1, 'decay':0.1, 'scale':1, 'learning_rate':0.01, 'price_buffer_len':100, 'min_predictions':1000 }",shorter period
BTC,XRP,binance,Luke_NN_Sample,-41.52,-0.68,-244,-0.71,133.4,-174.93,66,1.08,21,11,65.62,0.55,0.14,-1.19,-0.33,1558.44,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:59:00,25.81,"'neuralnet': { 'momentum':0.1, 'decay':0.1, 'min_predictions':1000, 'scale':1, 'learning_rate':0.01, 'price_buffer_len':100 }",shorter period
BTC,ZEC,binance,Luke_NN_Sample,-11.41,-0.19,-67,-0.94,24.38,-35.8,64,1.05,22,9,70.97,0.25,0.11,-0.57,-0.3,1656.13,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,13.05,"'neuralnet': { 'price_buffer_len':100, 'learning_rate':0.01, 'scale':1, 'min_predictions':1000, 'momentum':0.1, 'decay':0.1 }",shorter period
ETH,AST,binance,Luke_NN_Sample,-41.9,-0.74,-263,-0.73,-34.89,-7,89,1.56,30,14,68.18,0.39,0.08,-0.77,-0.16,1069.32,10,70,57,2018-03-27 17:33:08,2018-01-27 00:03:00,2018-03-25 23:58:00,30.62,"'neuralnet': { 'momentum':0.1, 'decay':0.1, 'scale':1, 'learning_rate':0.01, 'price_buffer_len':100, 'min_predictions':1000 }",shorter period
ETH,EOS,binance,Luke_NN_Sample,-35.83,-0.59,-211,-1.01,-29.24,-6.59,68,1.11,17,16,51.52,0.21,0.12,-0.51,-0.13,1523.64,10,70,61,2018-04-04 08:56:20,2017-12-20 00:00:00,2018-02-19 23:58:00,0,shorter period,
ETH,FUEL,binance,Luke_NN_Sample,23.55,0.41,148,-0.79,-28.59,52.14,87,1.53,29,14,67.44,0.3,0.17,-0.87,-0.14,1128.84,10,70,57,2018-03-27 17:33:08,2018-01-27 00:01:00,2018-03-25 23:58:00,15.31,"'neuralnet': { 'momentum':0.1, 'decay':0.1, 'min_predictions':1000, 'price_buffer_len':100, 'learning_rate':0.01, 'scale':1 }",shorter period
ETH,ICN,kraken,Luke_NN_Sample,220.46,3.61,1298,-0.42,-26.29,246.75,111,1.82,44,11,80,1.43,0.4,-1.25,-0.49,912.55,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,24.75,"'neuralnet': { 'scale':1, 'price_buffer_len':100, 'decay':0.1, 'momentum':0.1, 'min_predictions':1000, 'learning_rate':0.01 }",shorter period
ETH,QTUM,binance,Luke_NN_Sample,13.23,0.22,79,-0.59,32.4,-19.17,90,1.5,27,17,61.36,0.8,0.2,-1.02,-0.06,1183.18,10,70,60,2018-04-04 08:56:20,2017-12-12 00:01:00,2018-02-10 23:58:00,0,1,shorter period
ETH,VIB,binance,Luke_NN_Sample,27.73,0.49,174,-0.69,12.57,15.16,93,1.63,34,12,73.91,0.31,0.14,-0.5,-0.2,980.22,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:58:00,15.12,"'neuralnet': { 'momentum':0.1, 'decay':0.1, 'price_buffer_len':100, 'learning_rate':0.01, 'scale':1, 'min_predictions':1000 }",shorter period
ETH,XVG,binance,Luke_NN_Sample,34.37,0.57,205,-0.38,294.2,-259.83,132,2.2,48,17,73.85,1.01,0.46,-3.65,-0.64,787.69,10,70,60,2018-04-04 08:56:20,2017-12-12 00:02:00,2018-02-10 23:58:00,0,shorter period,
EUR,XMR,kraken,Luke_NN_Sample,-65.23,-1.07,-384,-0.85,-18.23,-47,83,1.36,22,19,53.66,0.25,0.07,-1.07,-0.11,1099.51,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,20.52,"'neuralnet': { 'min_predictions':1000, 'learning_rate':0.01, 'momentum':0.1, 'scale':1, 'price_buffer_len':100, 'decay':0.1 }",shorter period
USD,AVT,bitfinex,Luke_NN_Sample,15.84,0.27,99,-0.54,-63.47,79.31,90,1.55,28,16,63.64,0.46,0.14,-0.55,-0.16,1041.36,10,70,58,2018-03-28 23:13:08,2018-01-26 13:30:00,2018-03-25 19:58:00,36.29,"'neuralnet': { 'learning_rate':0.01, 'min_predictions':1000, 'momentum':0.1, 'decay':0.1, 'scale':1, 'price_buffer_len':100 }",shorter period
USD,DAT,bitfinex,Luke_NN_Sample,-27.62,-0.45,-162,-0.59,-50.35,22.73,126,2.03,42,20,67.74,0.32,0.15,-1.01,-0.21,753.39,10,70,62,2018-03-28 23:13:08,2017-12-19 23:17:00,2018-02-19 23:56:00,36.88,"'neuralnet': { 'min_predictions':1000, 'learning_rate':0.01, 'momentum':0.1, 'scale':1, 'price_buffer_len':100, 'decay':0.1 }",shorter period
USD,ETP,bitfinex,Luke_NN_Sample,-61.8,-1,-363,-0.49,-50.35,-11.46,124,2,43,18,70.49,0.33,0.13,-1.57,-0.23,748.36,10,70,62,2018-03-28 23:13:08,2017-12-19 22:55:00,2018-02-19 23:43:00,35.1,"'neuralnet': { 'momentum':0.1, 'learning_rate':0.01, 'min_predictions':1000, 'decay':0.1, 'price_buffer_len':100, 'scale':1 }",shorter period
USD,RCN,bitfinex,Luke_NN_Sample,1005.28,17.33,6234,0.02,-63.33,1068.61,119,2.05,48,11,81.36,12.47,0.29,-0.76,-0.37,775.76,10,70,58,2018-03-28 23:13:08,2018-01-26 02:00:00,2018-03-25 23:27:00,38.04,"'neuralnet': { 'min_predictions':1000, 'learning_rate':0.01, 'momentum':0.1, 'price_buffer_len':100, 'scale':1, 'decay':0.1 }",shorter period
USD,RRT,bitfinex,Luke_NN_Sample,292.94,4.72,1721,-0.2,-69.56,362.5,139,2.24,56,13,81.16,2.45,0.47,-4.4,-0.51,716.52,10,70,62,2018-03-28 23:13:08,2017-12-19 19:20:00,2018-02-19 23:24:00,43.53,"'neuralnet': { 'momentum':0.1, 'min_predictions':1000, 'learning_rate':0.01, 'scale':1, 'price_buffer_len':100, 'decay':0.1 }",shorter period
USD,SAN,bitfinex,Luke_NN_Sample,-38.07,-0.62,-227,-0.53,-53.99,15.92,112,1.84,36,19,65.45,0.3,0.14,-1.14,-0.26,847.27,10,70,61,2018-03-28 23:13:08,2017-12-11 23:07:00,2018-02-10 23:58:00,44.19,"'neuralnet': { 'decay':0.1, 'price_buffer_len':100, 'scale':1, 'learning_rate':0.01, 'min_predictions':1000, 'momentum':0.1 }",shorter period
USDT,BTC,binance,Luke_NN_Sample,-41.07,-0.67,-241,-0.67,-35.4,-5.67,85,1.39,29,13,69.05,0.2,0.13,-0.88,-0.3,1103.1,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,21.96,"'neuralnet': { 'momentum':0.1, 'decay':0.1, 'scale':1, 'price_buffer_len':100, 'learning_rate':0.01, 'min_predictions':1000 }",shorter period
USDT,ETH,binance,Luke_NN_Sample,-21.23,-0.35,-127,-0.6,66.89,-88.12,88,1.47,29,14,67.44,0.44,0.18,-1.23,-0.2,876.05,10,70,60,2018-03-27 17:33:08,2017-12-12 00:00:00,2018-02-10 23:59:00,22.93,"'neuralnet': { 'scale':1, 'learning_rate':0.01, 'price_buffer_len':100, 'min_predictions':1000, 'decay':0.1, 'momentum':0.1 }",shorter period
USDT,LTC,binance,Luke_NN_Sample,-56.68,-0.93,-333,-0.81,-34.44,-22.24,85,1.39,27,15,64.29,0.22,0.09,-0.94,-0.28,1165.71,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,22.22,"'neuralnet': { 'decay':0.1, 'momentum':0.1, 'scale':1, 'learning_rate':0.01, 'price_buffer_len':100, 'min_predictions':1000 }",shorter period
USDT,NEO,binance,Luke_NN_Sample,-9.31,-0.15,-54,-0.5,96.24,-105.56,107,1.75,39,14,73.58,0.46,0.22,-1.77,-0.43,743.58,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,26.97,"'neuralnet': { 'momentum':0.1, 'decay':0.1, 'price_buffer_len':100, 'learning_rate':0.01, 'scale':1, 'min_predictions':1000 }",shorter period
USDT,NXT,poloniex,Luke_NN_Sample,-41.1,-0.72,-258,-0.65,-54.67,13.56,93,1.63,30,16,65.22,0.27,0.11,-1.23,-0.19,981.52,10,70,57,2018-03-28 23:13:08,2018-01-27 00:00:00,2018-03-25 23:53:00,26.64,"'neuralnet': { 'decay':0.1, 'price_buffer_len':100, 'scale':1, 'learning_rate':0.01, 'min_predictions':1000, 'momentum':0.1 }",shorter period
BNB,ADX,binance,MACD_1520024643,2.74,0.04,16,-0.33,-46.18,48.92,20,0.33,5,5,50,0.89,0.26,-1.17,-0.06,1376,10,70,61,2018-03-27 17:33:08,2017-12-20 00:03:00,2018-02-19 23:58:00,47.35,"'thresholds': { 'down':-0.025, 'persistence':1, 'up':0.025 }, 'interval':14, 'long':21, 'short':10, 'signal':9",shorter period
BNB,CND,binance,MACD_1520024643,4.14,0.07,24,-0.28,127.38,-123.24,23,0.38,6,5,54.55,0.86,0.29,-0.69,-0.38,1075.45,10,70,60,2018-03-27 17:33:08,2017-12-12 00:00:00,2018-02-10 23:55:00,49.72,"'signal':9, 'short':10, 'long':21, 'interval':14, 'thresholds': { 'up':0.025, 'persistence':1, 'down':-0.025 }",shorter period
BNB,GTO,binance,MACD_1520024643,42.63,0.7,251,-0.14,-17.85,60.48,26,0.43,8,5,61.54,1.17,0.2,-0.32,-0.04,716.92,10,70,61,2018-03-27 17:33:08,2017-12-20 00:01:00,2018-02-19 23:58:00,24.6,"'short':10, 'signal':9, 'long':21, 'interval':14, 'thresholds': { 'up':0.025, 'persistence':1, 'down':-0.025 }",shorter period
BNB,NEBL,binance,MACD_1520024643,-8.56,-0.15,-53,-0.49,-37.68,29.12,16,0.28,6,2,75,0.39,0.21,-1.2,-0.7,1122.5,10,70,57,2018-03-27 17:33:08,2018-01-27 00:03:00,2018-03-25 23:58:00,16.74,"'long':21, 'short':10, 'signal':9, 'thresholds': { 'up':0.025, 'persistence':1, 'down':-0.025 }, 'interval':14",shorter period
BNB,NULS,binance,MACD_1520024643,77.36,1.36,487,0.09,-35.94,113.3,26,0.46,9,4,69.23,3.62,0.31,-1.26,-0.56,953.08,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:58:00,16.63,"'long':21, 'short':10, 'signal':9, 'thresholds': { 'up':0.025, 'persistence':1, 'down':-0.025 }, 'interval':14",shorter period
BNB,OST,binance,MACD_1520024643,221.52,3.63,1305,0.42,-57.63,279.15,14,0.23,7,0,100,6.41,0.42,0.23,n/a,870,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:53:00,25.15,"'short':10, 'signal':9, 'long':21, 'interval':14, 'thresholds': { 'down':-0.025, 'persistence':1, 'up':0.025 }",shorter period
BNB,WTC,binance,MACD_1520024643,-5.52,-0.1,-34,-0.67,-61.73,56.2,32,0.56,12,4,75,0.38,0.14,-0.78,-0.43,1046.88,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:54:00,24.05,"'thresholds': { 'up':0.025, 'persistence':1, 'down':-0.025 }, 'interval':14, 'long':21, 'signal':9, 'short':10",shorter period
BNB,XLM,binance,MACD_1520024643,92.46,1.52,544,0.34,-8.98,101.44,16,0.26,7,1,87.5,1.56,0.72,-0.86,-0.86,912.5,10,70,61,2018-03-27 17:33:08,2017-12-20 00:02:00,2018-02-19 23:58:00,29.22,"'signal':9, 'short':10, 'long':21, 'interval':14, 'thresholds': { 'down':-0.025, 'up':0.025, 'persistence':1 }",shorter period
BTC,ADA,binance,MACD_1520024643,-28.52,-0.47,-167,-0.82,11.87,-40.38,51,0.84,12,13,48,0.5,0.15,-0.61,-0.2,1042.8,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,24.43,"'long':21, 'signal':9, 'short':10, 'thresholds': { 'down':-0.025, 'persistence':1, 'up':0.025 }, 'interval':14",shorter period
BTC,BNB,binance,MACD_1520024643,-9.26,-0.15,-54,-0.69,200.79,-210.04,31,0.51,10,5,66.67,0.4,0.13,-0.84,-0.21,878.67,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:59:00,32.99,"'short':10, 'signal':9, 'long':21, 'interval':14, 'thresholds': { 'down':-0.025, 'up':0.025, 'persistence':1 }",shorter period
BTC,BTM,poloniex,MACD_1520024643,-27.55,-0.48,-173,-1,-49.04,21.48,86,1.51,27,16,62.79,0.32,0.05,-0.77,-0.09,666.51,10,70,57,2018-03-28 23:13:08,2018-01-27 00:56:00,2018-03-25 23:46:00,26.13,"'interval':14, 'short':10, 'signal':9, 'thresholds': { 'persistence':1, 'up':0.025, 'down':-0.025 }, 'long':21",shorter period
BTC,DGB,poloniex,MACD_1520024643,12.27,0.2,72,-0.38,72.81,-60.54,32,0.52,12,4,75,0.53,0.19,-0.93,-0.35,879.38,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,23.7,"'thresholds': { 'down':-0.025, 'up':0.025, 'persistence':1 }, 'signal':9, 'long':21, 'interval':14, 'short':10",shorter period
BTC,ETC,binance,MACD_1520024643,-14.57,-0.24,-85,-1.23,59.31,-73.87,32,0.52,8,8,50,0.26,0.09,-0.36,-0.11,1035,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,17.44,"'signal':9, 'short':10, 'long':21, 'interval':14, 'thresholds': { 'up':0.025, 'persistence':1, 'down':-0.025 }",shorter period
BTC,GAME,poloniex,MACD_1520024643,74.19,1.22,437,-0.23,53.27,20.92,40,0.66,16,4,80,0.64,0.28,-0.79,-0.24,845,10,70,61,2018-04-04 08:56:20,2017-12-20 00:00:00,2018-02-19 23:57:00,0,shorter period,
BTC,GAS,binance,MACD_1520024643,89.34,1.49,534,-0.1,337.14,-247.8,36,0.6,13,5,72.22,0.89,0.39,-0.45,-0.12,828.89,10,70,60,2018-03-27 17:33:08,2017-12-12 00:01:00,2018-02-10 23:58:00,42.95,"'interval':14, 'thresholds': { 'down':-0.025, 'persistence':1, 'up':0.025 }, 'short':10, 'signal':9, 'long':21",shorter period
BTC,ICX,binance,MACD_1520024643,6.14,0.1,36,-0.35,243.07,-236.93,31,0.51,9,6,60,0.64,0.29,-1.42,-0.19,999.33,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,31.7,"'long':21, 'signal':9, 'short':10, 'thresholds': { 'down':-0.025, 'persistence':1, 'up':0.025 }, 'interval':14",shorter period
BTC,OMG,binance,MACD_1520024643,6.15,0.1,36,-0.73,50.87,-44.72,48,0.79,14,10,58.33,0.49,0.11,-0.57,-0.07,793.33,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,15.52,"'interval':14, 'thresholds': { 'up':0.025, 'persistence':1, 'down':-0.025 }, 'short':10, 'signal':9, 'long':21",shorter period
BTC,STR,poloniex,MACD_1520024643,-24.92,-0.44,-156,-1.71,-50.01,25.09,44,0.77,9,13,40.91,0.37,0.06,-0.25,-0.1,919.55,10,70,57,2018-03-28 23:13:08,2018-01-27 00:00:00,2018-03-25 23:58:00,22.09,"'long':21, 'signal':9, 'thresholds': { 'persistence':1, 'up':0.025, 'down':-0.025 }, 'short':10, 'interval':14",shorter period
BTC,VEN,binance,MACD_1520024643,83.95,1.38,494,-0.3,619.61,-535.67,50,0.82,19,6,76,1.11,0.24,-0.82,-0.11,773.6,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,47.55,"'thresholds': { 'down':-0.025, 'up':0.025, 'persistence':1 }, 'interval':14, 'long':21, 'short':10, 'signal':9",shorter period
BTC,XRP,binance,MACD_1520024643,4.58,0.08,26,-0.68,133.4,-128.82,59,0.97,13,16,44.83,0.73,0.15,-0.56,-0.1,966.9,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:59:00,25.81,"'thresholds': { 'down':-0.025, 'up':0.025, 'persistence':1 }, 'interval':14, 'long':21, 'signal':9, 'short':10",shorter period
BTC,ZEC,binance,MACD_1520024643,-18,-0.3,-106,-1.6,24.38,-42.38,28,0.46,6,8,42.86,0.16,0.11,-0.28,-0.11,1087.86,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,13.05,"'long':21, 'signal':9, 'short':10, 'thresholds': { 'down':-0.025, 'persistence':1, 'up':0.025 }, 'interval':14",shorter period
ETH,AST,binance,MACD_1520024643,-11.39,-0.2,-71,-0.95,-34.89,23.5,34,0.6,10,7,58.82,0.29,0.12,-0.47,-0.18,690,10,70,57,2018-03-27 17:33:08,2018-01-27 00:03:00,2018-03-25 23:58:00,30.62,"'interval':14, 'thresholds': { 'persistence':1, 'up':0.025, 'down':-0.025 }, 'signal':9, 'short':10, 'long':21",shorter period
ETH,EOS,binance,MACD_1520024643,-14.61,-0.24,-86,-1.24,-29.24,14.64,74,1.21,24,13,64.86,0.36,0.08,-0.5,-0.15,743.51,10,70,61,2018-04-04 08:56:20,2017-12-20 00:00:00,2018-02-19 23:58:00,0,shorter period,
ETH,FUEL,binance,MACD_1520024643,12.72,0.22,80,-0.58,-28.59,41.32,20,0.35,6,4,60,0.41,0.22,-0.24,-0.13,801,10,70,57,2018-03-27 17:33:08,2018-01-27 00:01:00,2018-03-25 23:58:00,15.31,"'signal':9, 'short':10, 'long':21, 'interval':14, 'thresholds': { 'persistence':1, 'up':0.025, 'down':-0.025 }",shorter period
ETH,ICN,kraken,MACD_1520024643,95.73,1.57,563,-0.33,-26.29,122.02,50,0.82,19,6,76,0.89,0.17,-0.18,-0.1,820.8,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,24.75,"'interval':14, 'short':10, 'thresholds': { 'persistence':1, 'down':-0.025, 'up':0.025 }, 'signal':9, 'long':21",shorter period
ETH,QTUM,binance,MACD_1520024643,50.61,0.84,303,-0.42,32.4,18.21,36,0.6,14,4,77.78,0.58,0.16,-0.43,-0.09,691.67,10,70,60,2018-04-04 08:56:20,2017-12-12 00:01:00,2018-02-10 23:58:00,0,1,shorter period
ETH,VIB,binance,MACD_1520024643,-2.09,-0.04,-13,-0.65,12.57,-14.66,20,0.35,6,4,60,0.57,0.08,-0.43,-0.18,1159,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:58:00,15.12,"'thresholds': { 'down':-0.025, 'persistence':1, 'up':0.025 }, 'interval':14, 'long':21, 'signal':9, 'short':10",shorter period
ETH,XVG,binance,MACD_1520024643,15.11,0.25,90,-0.34,294.2,-279.09,48,0.8,14,10,58.33,0.83,0.38,-1.23,-0.22,973.33,10,70,60,2018-04-04 08:56:20,2017-12-12 00:02:00,2018-02-10 23:58:00,0,shorter period,
EUR,XMR,kraken,MACD_1520024643,-32.63,-0.53,-192,-0.72,-18.23,-14.4,52,0.85,16,10,61.54,0.3,0.16,-0.79,-0.2,1006.54,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,20.52,"'short':10, 'interval':14, 'long':21, 'signal':9, 'thresholds': { 'persistence':1, 'down':-0.025, 'up':0.025 }",shorter period
USD,AVT,bitfinex,MACD_1520024643,-9.46,-0.16,-59,-0.66,-63.47,54.01,124,2.14,39,23,62.9,0.73,0.1,-0.54,-0.19,575.48,10,70,58,2018-03-28 23:13:08,2018-01-26 13:30:00,2018-03-25 19:58:00,36.29,"'interval':14, 'short':10, 'thresholds': { 'persistence':1, 'up':0.025, 'down':-0.025 }, 'signal':9, 'long':21",shorter period
USD,DAT,bitfinex,MACD_1520024643,-13.84,-0.22,-81,-0.46,-50.35,36.51,49,0.79,14,10,58.33,0.97,0.17,-0.8,-0.43,977.92,10,70,62,2018-03-28 23:13:08,2017-12-19 23:17:00,2018-02-19 23:56:00,36.88,"'interval':14, 'short':10, 'thresholds': { 'down':-0.025, 'up':0.025, 'persistence':1 }, 'signal':9, 'long':21",shorter period
USD,ETP,bitfinex,MACD_1520024643,-40.84,-0.66,-240,-0.4,-50.35,9.51,48,0.77,16,8,66.67,0.66,0.14,-1.52,-0.5,993.33,10,70,62,2018-03-28 23:13:08,2017-12-19 22:55:00,2018-02-19 23:43:00,35.1,"'long':21, 'signal':9, 'thresholds': { 'persistence':1, 'down':-0.025, 'up':0.025 }, 'short':10, 'interval':14",shorter period
USD,RCN,bitfinex,MACD_1520024643,152.34,2.63,944,-0.27,-63.33,215.67,126,2.17,47,16,74.6,2.95,0.11,-0.91,-0.15,426.98,10,70,58,2018-03-28 23:13:08,2018-01-26 02:00:00,2018-03-25 23:27:00,38.04,"'interval':14, 'short':10, 'signal':9, 'thresholds': { 'up':0.025, 'down':-0.025, 'persistence':1 }, 'long':21",shorter period
USD,RRT,bitfinex,MACD_1520024643,61.29,0.99,360,-0.51,-69.56,130.85,102,1.65,34,17,66.67,1.25,0.24,-1.15,-0.19,673.92,10,70,62,2018-03-28 23:13:08,2017-12-19 19:20:00,2018-02-19 23:24:00,43.53,"'short':10, 'interval':14, 'long':21, 'thresholds': { 'up':0.025, 'down':-0.025, 'persistence':1 }, 'signal':9",shorter period
USD,SAN,bitfinex,MACD_1520024643,-44.67,-0.73,-267,-0.63,-53.99,9.32,39,0.64,11,8,57.89,0.4,0.19,-0.98,-0.4,1143.68,10,70,61,2018-03-28 23:13:08,2017-12-11 23:07:00,2018-02-10 23:58:00,44.19,"'short':10, 'interval':14, 'long':21, 'signal':9, 'thresholds': { 'up':0.025, 'down':-0.025, 'persistence':1 }",shorter period
USDT,BTC,binance,MACD_1520024643,-48.19,-0.79,-283,-0.95,-35.4,-12.79,44,0.72,11,11,50,0.27,0.06,-0.83,-0.1,1113.64,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,21.96,"'thresholds': { 'down':-0.025, 'persistence':1, 'up':0.025 }, 'interval':14, 'long':21, 'signal':9, 'short':10",shorter period
USDT,ETH,binance,MACD_1520024643,-26.04,-0.43,-155,-0.62,66.89,-92.92,46,0.77,15,8,65.22,0.32,0.17,-1.48,-0.15,1169.13,10,70,60,2018-03-27 17:33:08,2017-12-12 00:00:00,2018-02-10 23:59:00,22.93,"'long':21, 'short':10, 'signal':9, 'thresholds': { 'persistence':1, 'up':0.025, 'down':-0.025 }, 'interval':14",shorter period
USDT,LTC,binance,MACD_1520024643,-50.84,-0.83,-299,-0.9,-34.44,-16.39,44,0.72,12,10,54.55,0.28,0.11,-1.03,-0.25,1275.45,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,22.22,"'long':21, 'signal':9, 'short':10, 'thresholds': { 'persistence':1, 'up':0.025, 'down':-0.025 }, 'interval':14",shorter period
USDT,NEO,binance,MACD_1520024643,97.47,1.6,574,-0.16,96.24,1.22,48,0.79,20,4,83.33,1.29,0.26,-1.99,-0.24,788.33,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,26.97,"'short':10, 'signal':9, 'long':21, 'interval':14, 'thresholds': { 'down':-0.025, 'up':0.025, 'persistence':1 }",shorter period
USDT,NXT,poloniex,MACD_1520024643,-62.08,-1.09,-390,-0.87,-54.67,-7.41,40,0.7,9,11,45,0.14,0.04,-1.01,-0.08,1179,10,70,57,2018-03-28 23:13:08,2018-01-27 00:00:00,2018-03-25 23:53:00,26.64,"'long':21, 'signal':9, 'thresholds': { 'up':0.025, 'down':-0.025, 'persistence':1 }, 'short':10, 'interval':14",shorter period
BNB,ADX,binance,ManuNet,-99.51,-1.63,-586,-1.46,-46.18,-53.33,1271,20.84,113,522,17.8,0.32,0.04,-0.36,0,24.47,10,70,61,2018-03-27 17:33:08,2017-12-20 00:03:00,2018-02-19 23:58:00,47.35,"'buyZonePercent':0.01, 'SMA1':10, 'RsiPeriod2':9, 'SMA2':80, 'scale':-1, 'min_predictions':1000, 'RsiPeriod1':14, 'sellZonePercent':0.01, 'price_buffer_len':100",shorter period
BNB,CND,binance,ManuNet,-70.54,-1.18,-422,-0.69,127.38,-197.92,160,2.67,12,67,15.19,2.33,0.08,-0.45,-0.05,512.28,10,70,60,2018-03-27 17:33:08,2017-12-12 00:00:00,2018-02-10 23:55:00,49.72,"'scale':-1, 'min_predictions':1000, 'RsiPeriod1':14, 'SMA1':10, 'buyZonePercent':0.01, 'RsiPeriod2':9, 'SMA2':80, 'price_buffer_len':100, 'sellZonePercent':0.01",shorter period
BNB,GTO,binance,ManuNet,-99.76,-1.64,-587,-1.36,-17.85,-81.91,1459,23.92,154,575,21.12,0.7,0.08,-0.4,0,25.14,10,70,61,2018-03-27 17:33:08,2017-12-20 00:01:00,2018-02-19 23:58:00,24.6,"'SMA2':80, 'RsiPeriod2':9, 'buyZonePercent':0.01, 'SMA1':10, 'min_predictions':1000, 'RsiPeriod1':14, 'scale':-1, 'sellZonePercent':0.01, 'price_buffer_len':100",shorter period
BNB,NEBL,binance,ManuNet,0,0,0,0,-37.68,37.68,1,0.02,0,0,-1,,n/a,,n/a,n/a,10,70,57,2018-03-27 17:33:08,2018-01-27 00:03:00,2018-03-25 23:58:00,16.74,"'scale':-1, 'RsiPeriod1':14, 'min_predictions':1000, 'SMA1':10, 'buyZonePercent':0.01, 'RsiPeriod2':9, 'SMA2':80, 'price_buffer_len':100, 'sellZonePercent':0.01",shorter period
BNB,NULS,binance,ManuNet,-99.82,-1.75,-628,-3.41,-35.94,-63.88,1096,19.23,36,511,6.58,0.14,0.01,-0.17,0,21.41,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:58:00,16.63,"'sellZonePercent':0.01, 'price_buffer_len':100, 'buyZonePercent':0.01, 'SMA1':10, 'RsiPeriod2':9, 'SMA2':80, 'scale':-1, 'RsiPeriod1':14, 'min_predictions':1000",shorter period
BNB,OST,binance,ManuNet,-98.22,-1.61,-578,-0.92,-57.63,-40.59,1492,24.46,187,559,25.07,10.07,0.23,-4.01,-0.01,25.82,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:53:00,25.15,"'scale':-1, 'min_predictions':1000, 'RsiPeriod1':14, 'buyZonePercent':0.01, 'SMA1':10, 'SMA2':80, 'RsiPeriod2':9, 'price_buffer_len':100, 'sellZonePercent':0.01",shorter period
BNB,WTC,binance,ManuNet,-99.66,-1.75,-627,-3.47,-61.73,-37.93,1107,19.42,74,479,13.38,0.18,0.01,-0.22,0,22.08,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:54:00,24.05,"'price_buffer_len':100, 'sellZonePercent':0.01, 'scale':-1, 'RsiPeriod1':14, 'min_predictions':1000, 'buyZonePercent':0.01, 'SMA1':10, 'SMA2':80, 'RsiPeriod2':9",shorter period
BNB,XLM,binance,ManuNet,-28.96,-0.47,-170,-3.6,-8.98,-19.99,8,0.13,0,3,0,-0.02,n/a,-0.26,-0.15,53.33,10,70,61,2018-03-27 17:33:08,2017-12-20 00:02:00,2018-02-19 23:58:00,29.22,"'sellZonePercent':0.01, 'price_buffer_len':100, 'RsiPeriod2':9, 'SMA2':80, 'SMA1':10, 'buyZonePercent':0.01, 'RsiPeriod1':14, 'min_predictions':1000, 'scale':-1",shorter period
BTC,ADA,binance,ManuNet,-0.36,-0.01,-2,-6.51,11.87,-12.23,5,0.08,1,1,50,0.04,0.04,-0.01,-0.01,10,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,24.43,"'RsiPeriod1':14, 'min_predictions':1000, 'scale':-1, 'SMA2':80, 'RsiPeriod2':9, 'buyZonePercent':0.01, 'SMA1':10, 'price_buffer_len':100, 'sellZonePercent':0.01",shorter period
BTC,BNB,binance,ManuNet,0,0,0,0,200.79,-200.79,1,0.02,0,0,-1,,n/a,,n/a,n/a,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:59:00,32.99,"'min_predictions':1000, 'RsiPeriod1':14, 'scale':-1, 'SMA2':80, 'RsiPeriod2':9, 'SMA1':10, 'buyZonePercent':0.01, 'price_buffer_len':100, 'sellZonePercent':0.01",shorter period
BTC,BTM,poloniex,ManuNet,-93.85,-1.65,-591,-4.5,-49.04,-44.81,559,9.81,38,241,13.62,0.08,0.01,-0.12,-0.01,22.37,10,70,57,2018-03-28 23:13:08,2018-01-27 00:56:00,2018-03-25 23:46:00,26.13,"'buyZonePercent':0.01, 'RsiPeriod2':9, 'RsiPeriod1':14, 'sellZonePercent':0.01, 'SMA1':10, 'price_buffer_len':100, 'scale':-1, 'SMA2':80, 'min_predictions':1000",shorter period
BTC,DGB,poloniex,ManuNet,25.01,0.41,147,-Inf,72.81,-47.8,4,0.07,0,1,0,-0.07,n/a,-0.07,-0.07,10,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,23.7,"'RsiPeriod1':14, 'RsiPeriod2':9, 'buyZonePercent':0.01, 'SMA2':80, 'min_predictions':1000, 'scale':-1, 'price_buffer_len':100, 'SMA1':10, 'sellZonePercent':0.01",shorter period
BTC,ETC,binance,ManuNet,-98.79,-1.62,-581,-4.85,59.31,-158.09,767,12.57,27,356,7.05,0.13,0.01,-0.2,0,18.2,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,17.44,"'price_buffer_len':100, 'sellZonePercent':0.01, 'scale':-1, 'min_predictions':1000, 'RsiPeriod1':14, 'SMA1':10, 'buyZonePercent':0.01, 'RsiPeriod2':9, 'SMA2':80",shorter period
BTC,GAME,poloniex,ManuNet,-6.8,-0.11,-40,-4.86,53.27,-60.07,12,0.2,1,5,16.67,0.06,0.06,-0.09,-0.03,30,10,70,61,2018-04-04 08:56:20,2017-12-20 00:00:00,2018-02-19 23:57:00,0,shorter period,
BTC,GAS,binance,ManuNet,319.92,5.33,1915,0,337.14,-17.22,2,0.03,0,0,-1,,n/a,,n/a,n/a,10,70,60,2018-03-27 17:33:08,2017-12-12 00:01:00,2018-02-10 23:58:00,42.95,"'SMA1':10, 'buyZonePercent':0.01, 'RsiPeriod2':9, 'SMA2':80, 'scale':-1, 'min_predictions':1000, 'RsiPeriod1':14, 'sellZonePercent':0.01, 'price_buffer_len':100",shorter period
BTC,ICX,binance,ManuNet,-51.41,-0.84,-302,-0.68,243.07,-294.48,219,3.59,25,84,22.94,2.09,0.16,-1.01,-0.08,164.59,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,31.7,"'buyZonePercent':0.01, 'SMA1':10, 'RsiPeriod2':9, 'SMA2':80, 'scale':-1, 'RsiPeriod1':14, 'min_predictions':1000, 'sellZonePercent':0.01, 'price_buffer_len':100",shorter period
BTC,OMG,binance,ManuNet,49.6,0.81,292,0,50.87,-1.26,2,0.03,0,0,-1,,n/a,,n/a,n/a,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,15.52,"'scale':-1, 'min_predictions':1000, 'RsiPeriod1':14, 'buyZonePercent':0.01, 'SMA1':10, 'RsiPeriod2':9, 'SMA2':80, 'price_buffer_len':100, 'sellZonePercent':0.01",shorter period
BTC,STR,poloniex,ManuNet,-95.67,-1.68,-602,-6.42,-50.01,-45.67,547,9.6,17,256,6.23,0.08,0.02,-0.08,0,17.18,10,70,57,2018-03-28 23:13:08,2018-01-27 00:00:00,2018-03-25 23:58:00,22.09,"'SMA2':80, 'min_predictions':1000, 'price_buffer_len':100, 'scale':-1, 'sellZonePercent':0.01, 'SMA1':10, 'RsiPeriod1':14, 'RsiPeriod2':9, 'buyZonePercent':0.01",shorter period
BTC,VEN,binance,ManuNet,-3.56,-0.06,-20,-Inf,619.61,-623.17,3,0.05,0,1,0,-0.12,n/a,-0.12,-0.12,10,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,47.55,"'buyZonePercent':0.01, 'SMA1':10, 'RsiPeriod2':9, 'SMA2':80, 'scale':-1, 'min_predictions':1000, 'RsiPeriod1':14, 'sellZonePercent':0.01, 'price_buffer_len':100",shorter period
BTC,XRP,binance,ManuNet,-98.46,-1.61,-580,-2.51,133.4,-231.87,831,13.62,69,346,16.63,0.71,0.02,-0.18,0,22.34,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:59:00,25.81,"'sellZonePercent':0.01, 'price_buffer_len':100, 'buyZonePercent':0.01, 'SMA1':10, 'RsiPeriod2':9, 'SMA2':80, 'scale':-1, 'RsiPeriod1':14, 'min_predictions':1000",shorter period
BTC,ZEC,binance,ManuNet,-97.81,-1.6,-576,-5.01,24.38,-122.2,707,11.59,39,314,11.05,0.12,0.02,-0.16,0,18.9,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,13.05,"'buyZonePercent':0.01, 'SMA1':10, 'RsiPeriod2':9, 'SMA2':80, 'scale':-1, 'min_predictions':1000, 'RsiPeriod1':14, 'sellZonePercent':0.01, 'price_buffer_len':100",shorter period
ETH,AST,binance,ManuNet,-0.93,-0.02,-5,-Inf,-34.89,33.97,2,0.04,0,1,0,-0.02,n/a,-0.02,-0.02,10,10,70,57,2018-03-27 17:33:08,2018-01-27 00:03:00,2018-03-25 23:58:00,30.62,"'min_predictions':1000, 'RsiPeriod1':14, 'scale':-1, 'SMA2':80, 'RsiPeriod2':9, 'buyZonePercent':0.01, 'SMA1':10, 'price_buffer_len':100, 'sellZonePercent':0.01",shorter period
ETH,EOS,binance,ManuNet,-93.32,-1.53,-549,-4.66,-29.24,-64.08,515,8.44,29,228,11.28,0.15,0.01,-0.11,0,36.89,10,70,61,2018-04-04 08:56:20,2017-12-20 00:00:00,2018-02-19 23:58:00,0,shorter period,
ETH,FUEL,binance,ManuNet,-99.54,-1.75,-626,-4.38,-28.59,-70.95,971,17.04,32,453,6.6,0.13,0.01,-0.17,0,18.54,10,70,57,2018-03-27 17:33:08,2018-01-27 00:01:00,2018-03-25 23:58:00,15.31,"'sellZonePercent':0.01, 'price_buffer_len':100, 'SMA2':80, 'RsiPeriod2':9, 'SMA1':10, 'buyZonePercent':0.01, 'RsiPeriod1':14, 'min_predictions':1000, 'scale':-1",shorter period
ETH,ICN,kraken,ManuNet,0,0,0,0,-26.29,26.29,1,0.02,0,0,-1,,n/a,,n/a,n/a,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,24.75,"'sellZonePercent':0.01, 'SMA1':10, 'price_buffer_len':100, 'scale':-1, 'min_predictions':1000, 'SMA2':80, 'buyZonePercent':0.01, 'RsiPeriod2':9, 'RsiPeriod1':14",shorter period
ETH,QTUM,binance,ManuNet,39.76,0.66,238,0,32.4,7.37,1,0.02,0,0,-1,,n/a,,n/a,n/a,10,70,60,2018-04-04 08:56:20,2017-12-12 00:01:00,2018-02-10 23:58:00,0,1,shorter period
ETH,VIB,binance,ManuNet,-16.89,-0.3,-106,-0.89,12.57,-29.46,6,0.11,2,1,66.67,0.15,0.12,-0.85,-0.85,3890,10,70,57,2018-03-27 17:33:08,2018-01-27 00:00:00,2018-03-25 23:58:00,15.12,"'scale':-1, 'min_predictions':1000, 'RsiPeriod1':14, 'buyZonePercent':0.01, 'SMA1':10, 'SMA2':80, 'RsiPeriod2':9, 'price_buffer_len':100, 'sellZonePercent':0.01",shorter period
ETH,XVG,binance,ManuNet,0,0,0,0,294.2,-294.2,0,0,0,0,-1,,n/a,,n/a,n/a,10,70,60,2018-04-04 08:56:20,2017-12-12 00:02:00,2018-02-10 23:58:00,0,shorter period,
EUR,XMR,kraken,ManuNet,-99.71,-1.63,-587,-2.63,-18.23,-81.47,1133,18.57,45,521,7.95,0.33,0.01,-0.26,0,21.34,10,70,61,2018-03-28 23:13:08,2017-12-20 00:00:00,2018-02-19 23:58:00,20.52,"'buyZonePercent':0.01, 'RsiPeriod2':9, 'RsiPeriod1':14, 'sellZonePercent':0.01, 'SMA1':10, 'price_buffer_len':100, 'scale':-1, 'min_predictions':1000, 'SMA2':80",shorter period
USD,AVT,bitfinex,ManuNet,-74.48,-1.28,-466,-1.92,-63.47,-11.01,5,0.09,1,1,50,0.03,0.03,-0.32,-0.32,85,10,70,58,2018-03-28 23:13:08,2018-01-26 13:30:00,2018-03-25 19:58:00,36.29,"'RsiPeriod1':14, 'RsiPeriod2':9, 'buyZonePercent':0.01, 'min_predictions':1000, 'SMA2':80, 'price_buffer_len':100, 'scale':-1, 'sellZonePercent':0.01, 'SMA1':10",shorter period
USD,DAT,bitfinex,ManuNet,-54.95,-0.89,-323,0,-50.35,-4.6,1,0.02,0,0,-1,,n/a,,n/a,n/a,10,70,62,2018-03-28 23:13:08,2017-12-19 23:17:00,2018-02-19 23:56:00,36.88,"'buyZonePercent':0.01, 'RsiPeriod1':14, 'RsiPeriod2':9, 'price_buffer_len':100, 'scale':-1, 'SMA1':10, 'sellZonePercent':0.01, 'min_predictions':1000, 'SMA2':80",shorter period
USD,ETP,bitfinex,ManuNet,0,0,0,0,-50.35,50.35,0,0,0,0,-1,,n/a,,n/a,n/a,10,70,62,2018-03-28 23:13:08,2017-12-19 22:55:00,2018-02-19 23:43:00,35.1,"'SMA2':80, 'min_predictions':1000, 'price_buffer_len':100, 'scale':-1, 'sellZonePercent':0.01, 'SMA1':10, 'RsiPeriod1':14, 'RsiPeriod2':9, 'buyZonePercent':0.01",shorter period
USD,RCN,bitfinex,ManuNet,-99.44,-1.71,-616,-1.82,-63.33,-36.11,879,15.16,52,387,11.85,0.32,0.02,-0.19,0,27.52,10,70,58,2018-03-28 23:13:08,2018-01-26 02:00:00,2018-03-25 23:27:00,38.04,"'price_buffer_len':100, 'scale':-1, 'sellZonePercent':0.01, 'SMA1':10, 'SMA2':80, 'min_predictions':1000, 'buyZonePercent':0.01, 'RsiPeriod1':14, 'RsiPeriod2':9",shorter period
USD,RRT,bitfinex,ManuNet,-98.47,-1.59,-578,-1.64,-69.56,-28.91,1000,16.13,78,422,15.6,0.32,0.01,-0.35,0,27.1,10,70,62,2018-03-28 23:13:08,2017-12-19 19:20:00,2018-02-19 23:24:00,43.53,"'min_predictions':1000, 'SMA2':80, 'sellZonePercent':0.01, 'SMA1':10, 'price_buffer_len':100, 'scale':-1, 'RsiPeriod2':9, 'RsiPeriod1':14, 'buyZonePercent':0.01",shorter period
USD,SAN,bitfinex,ManuNet,-99.69,-1.63,-596,-2.01,-53.99,-45.7,1178,19.31,68,521,11.54,0.49,0.01,-0.39,0,27.93,10,70,61,2018-03-28 23:13:08,2017-12-11 23:07:00,2018-02-10 23:58:00,44.19,"'buyZonePercent':0.01, 'RsiPeriod2':9, 'RsiPeriod1':14, 'SMA1':10, 'sellZonePercent':0.01, 'price_buffer_len':100, 'scale':-1, 'SMA2':80, 'min_predictions':1000",shorter period
USDT,BTC,binance,ManuNet,-33.99,-0.56,-200,0,-35.4,1.41,2,0.03,0,0,-1,,n/a,,n/a,n/a,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,21.96,"'sellZonePercent':0.01, 'price_buffer_len':100, 'buyZonePercent':0.01, 'SMA1':10, 'SMA2':80, 'RsiPeriod2':9, 'scale':-1, 'min_predictions':1000, 'RsiPeriod1':14",shorter period
USDT,ETH,binance,ManuNet,4.18,0.07,25,-Inf,66.89,-62.71,2,0.03,1,0,100,0.19,0.19,0.19,n/a,110,10,70,60,2018-03-27 17:33:08,2017-12-12 00:00:00,2018-02-10 23:59:00,22.93,"'RsiPeriod2':9, 'SMA2':80, 'SMA1':10, 'buyZonePercent':0.01, 'RsiPeriod1':14, 'min_predictions':1000, 'scale':-1, 'sellZonePercent':0.01, 'price_buffer_len':100",shorter period
USDT,LTC,binance,ManuNet,-56.24,-0.92,-331,-1.68,-34.44,-21.8,60,0.98,0,30,0,-0.01,n/a,-0.97,-0.03,645.67,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,22.22,"'price_buffer_len':100, 'sellZonePercent':0.01, 'RsiPeriod1':14, 'min_predictions':1000, 'scale':-1, 'SMA2':80, 'RsiPeriod2':9, 'SMA1':10, 'buyZonePercent':0.01",shorter period
USDT,NEO,binance,ManuNet,-9.42,-0.15,-55,-1.23,96.24,-105.66,6,0.1,2,1,66.67,0.11,0.07,-0.45,-0.45,3436.67,10,70,61,2018-03-27 17:33:08,2017-12-20 00:00:00,2018-02-19 23:58:00,26.97,"'sellZonePercent':0.01, 'price_buffer_len':100, 'SMA2':80, 'RsiPeriod2':9, 'SMA1':10, 'buyZonePercent':0.01, 'min_predictions':1000, 'RsiPeriod1':14, 'scale':-1",shorter period