-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathswing_2_2021-01-03.json
9942 lines (9942 loc) · 328 KB
/
swing_2_2021-01-03.json
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
{
"name": "MT Swing & Options Trader",
"type": "private_channel",
"id": 10078341442,
"messages": [
{
"id": 1,
"type": "service",
"date": "2020-09-19T07:56:58",
"actor": "MT Swing & Options Trader",
"actor_id": 10078341442,
"action": "create_channel",
"title": "MT Swing & Options Trader",
"text": ""
},
{
"id": 2,
"type": "message",
"date": "2020-09-21T05:37:33",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"text": "Good morning. With gap down in market today, move stop 30-Min. low for any positions gapping under stop, and don't chase any new bearish trade ideas in the weekend letter if they have an excessive gap. Thanks."
},
{
"id": 3,
"type": "message",
"date": "2020-09-21T05:58:09",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"photo": "(File not included. Change data exporting settings to download.)",
"width": 580,
"height": 432,
"text": "9/21: OLN - Bullish +123 Breakout of inverse Head and Shoulders, will watch on pull back."
},
{
"id": 4,
"type": "message",
"date": "2020-09-21T06:15:18",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"text": "9/21: ZM – Consider shorting Sep (9/25) $375 puts for around $1.20/share credit. Breakout after -Gap negated daily. Stop $386.88. HOLD OFF WITH -GAP"
},
{
"id": 5,
"type": "message",
"date": "2020-09-21T06:19:51",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"text": "HOLD OFF all new short ideas in weekend letter because of large gaps, i'll send adjustments if they set up"
},
{
"id": 6,
"type": "message",
"date": "2020-09-21T06:56:34",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"text": "LAZ, CMI, MS, ETH, SQM, - CANCEL"
},
{
"id": 7,
"type": "message",
"date": "2020-09-21T07:00:17",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"photo": "(File not included. Change data exporting settings to download.)",
"width": 580,
"height": 432,
"text": "COUP - bullish reversal, will watch"
},
{
"id": 8,
"type": "message",
"date": "2020-09-21T07:07:49",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"text": "ADJUSTMENT: 9/14: CPA – Bought stock at $57.00. 9/18: Sold Sep (9/25) $65 calls for $1.95/share to further lower basis to $53.90. 9/21: Move Stop $56.07 (30-Min. low)"
},
{
"id": 9,
"type": "message",
"date": "2020-09-21T07:13:26",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"text": "ADJUSTMENT: 9/16: WFC - Bought stock at $25.96. 9/21: Move Stop $24.15 (30-Min. low)"
},
{
"id": 10,
"type": "message",
"date": "2020-09-21T09:34:25",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"text": "APT - CANCEL"
},
{
"id": 11,
"type": "message",
"date": "2020-09-21T10:09:32",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"text": "ABT - CANCEL"
},
{
"id": 12,
"type": "service",
"date": "2020-09-21T14:32:19",
"actor": "MT Swing & Options Trader",
"actor_id": 10078341442,
"action": "edit_group_photo",
"photo": "(File not included. Change data exporting settings to download.)",
"width": 640,
"height": 640,
"text": ""
},
{
"id": 13,
"type": "message",
"date": "2020-09-22T06:20:10",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"photo": "(File not included. Change data exporting settings to download.)",
"width": 835,
"height": 418,
"text": "TGT - on our long watch list"
},
{
"id": 14,
"type": "message",
"date": "2020-09-22T07:03:28",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"photo": "(File not included. Change data exporting settings to download.)",
"width": 580,
"height": 432,
"text": "9/22: VRM – consider shorting Oct (10/16) $40/35 bull put credit spread for $.75/share credit, add on pullback around $1.00. +Gap from Buy Setup on Support daily. Stop $43.88"
},
{
"id": 15,
"type": "message",
"date": "2020-09-22T07:08:12",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"photo": "(File not included. Change data exporting settings to download.)",
"width": 580,
"height": 432,
"text": "9/22: ESTC – consider shorting Oct (10/16) $95/85 bull put credit spread for $1.25/share credit. +WRB Breakout (and +123 if closed here) daily. Stop $99.78"
},
{
"id": 16,
"type": "message",
"date": "2020-09-22T07:14:21",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"photo": "(File not included. Change data exporting settings to download.)",
"width": 580,
"height": 432,
"text": "PINS - bullish, will watch into close"
},
{
"id": 17,
"type": "message",
"date": "2020-09-22T07:41:14",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"photo": "(File not included. Change data exporting settings to download.)",
"width": 580,
"height": 432,
"text": "9/22: NVTA - Over $41.43 buying stock. Breakout from bullish consolidation. Stop $37.49"
},
{
"id": 18,
"type": "message",
"date": "2020-09-22T07:42:34",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"text": "option traders can also consider shorting Oct. 35/30 put spread"
},
{
"id": 19,
"type": "message",
"date": "2020-09-22T11:52:14",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"text": "ADJUSTMENT: 9/14: INFY - Bought stock at $13.27. 9/22: Move Stop $13.57"
},
{
"id": 20,
"type": "message",
"date": "2020-09-22T12:20:35",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"photo": "(File not included. Change data exporting settings to download.)",
"width": 590,
"height": 779,
"text": "9/22: PINS - Buy stock at $39.88. Breakout to all-time highs. Stop $37.35"
},
{
"id": 21,
"type": "message",
"date": "2020-09-22T12:26:28",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"text": "option traders canbuy the Oct (10/2) $36 calls instead if want"
},
{
"id": 22,
"type": "message",
"date": "2020-09-22T12:39:48",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"photo": "(File not included. Change data exporting settings to download.)",
"width": 580,
"height": 432,
"text": "ZEN - if want an overnight swing, this looks good for 1-2 days"
},
{
"id": 23,
"type": "message",
"date": "2020-09-22T12:50:42",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"photo": "(File not included. Change data exporting settings to download.)",
"width": 580,
"height": 432,
"text": "9/22: PLAN – Shorting Oct (10/16) $55/50 bull put credit spread for $.80/share credit. Breakout daily, bullish weekly. Stop $55.08"
},
{
"id": 24,
"type": "message",
"date": "2020-09-23T06:47:43",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"photo": "(File not included. Change data exporting settings to download.)",
"width": 580,
"height": 432,
"text": ": 9/23: SNOW – Shorting Oct (10/16) $180/150 bull put credit spread for $1.55/share credit. Breakout hourly, many Bottoming Tails on daily, new IPO stock. Stop 214.88"
},
{
"id": 25,
"type": "message",
"date": "2020-09-23T06:52:16",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"photo": "(File not included. Change data exporting settings to download.)",
"width": 580,
"height": 415,
"text": "9/23: LMND – Shorting Oct (10/16) $45/40 bull put credit spread for $.55/share credit. Bullish consolidation after new low, and higher low pivot daily. Stop $47.18"
},
{
"id": 26,
"type": "message",
"date": "2020-09-23T06:57:55",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"text": "9/23: LMND – Shorting Oct (10/16) $45/40 bull put credit spread for $.55/share credit. Breakout after downside shakeout daily. Stop $62.83"
},
{
"id": 27,
"type": "message",
"date": "2020-09-23T07:00:32",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"text": "stop 46.74"
},
{
"id": 28,
"type": "message",
"date": "2020-09-23T07:07:47",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"photo": "(File not included. Change data exporting settings to download.)",
"width": 580,
"height": 432,
"text": "HZNP - breakout, long watch (along with CHGG, DT, UPWK, BBBY), but market iffy here"
},
{
"id": 29,
"type": "message",
"date": "2020-09-23T07:12:12",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"text": "ADJUSTMENT: 9/22: SPT – Bought stock at $35.27. 9/23: Move Stop $36.48"
},
{
"id": 30,
"type": "message",
"date": "2020-09-23T07:15:02",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"text": "ADJUSTMENT: 9/22: NVTA - Bought stock at $41.44. 9/23: Move Stop $41.54"
},
{
"id": 31,
"type": "message",
"date": "2020-09-23T07:16:53",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"text": "ADJUSTMENT: 9/14: INFY - Bought stock at $13.27. 9/23: Move Stop $13.65"
},
{
"id": 32,
"type": "message",
"date": "2020-09-23T07:37:35",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"photo": "(File not included. Change data exporting settings to download.)",
"width": 580,
"height": 432,
"text": "ADJUSTMENT: 9/22: PINS – Bought stock at $39.88. 9/23: sell 1/2 at $42.14. Move Stop $39.88"
},
{
"id": 33,
"type": "message",
"date": "2020-09-23T07:53:57",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"text": "LEN, MDB also on long list if close strong (ANTM on short list tomorrow as bear -123 continuation)"
},
{
"id": 34,
"type": "message",
"date": "2020-09-23T12:57:43",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"text": "SNOW - hold off on any stop, tomorrow we leg into a condor, will advise"
},
{
"id": 35,
"type": "message",
"date": "2020-09-24T06:16:53",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"text": "ADJUSTMENT: 9/23: SNOW – Shorted Oct (10/16) $180/150 bull put credit spread for $1.55/share credit. 9/24: Move stop 30-min. low"
},
{
"id": 36,
"type": "message",
"date": "2020-09-24T07:06:21",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"text": "ADJUSTMENT: 9/23: SNOW – Shorted Oct (10/16) $180/150 bull put credit spread for $1.55/share credit. 9/24: Move Stop $208.54"
},
{
"id": 37,
"type": "message",
"date": "2020-09-24T15:47:05",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"photo": "(File not included. Change data exporting settings to download.)",
"width": 811,
"height": 397,
"text": "KMB - Over the week's high, daily and weekly in bullish alignment for a move higher. We will advise."
},
{
"id": 38,
"type": "message",
"date": "2020-09-25T06:55:06",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"photo": "(File not included. Change data exporting settings to download.)",
"width": 580,
"height": 432,
"text": "9/25: NVTA - Buy stock over $43.54. +WRB +gap reversal after prior breakout (+123 if closed here). Stop $40.38"
},
{
"id": 39,
"type": "message",
"date": "2020-09-25T07:00:49",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"text": "can also sell Oct 35/30 put spread for $.50/share if like"
},
{
"id": 40,
"type": "message",
"date": "2020-09-25T07:39:33",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"photo": "(File not included. Change data exporting settings to download.)",
"width": 580,
"height": 432,
"text": "9/25: CPB – Shorting Oct (10/16) $45/42.5 bull put credit spread for $.40/share credit. +WRB Igniting from consolidation daily. Stop $44.94"
},
{
"id": 41,
"type": "message",
"date": "2020-09-25T07:41:46",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"photo": "(File not included. Change data exporting settings to download.)",
"width": 580,
"height": 432,
"text": "NVDA - also watching into close for possible short put spread"
},
{
"id": 42,
"type": "message",
"date": "2020-09-25T11:09:14",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"photo": "(File not included. Change data exporting settings to download.)",
"width": 580,
"height": 432,
"text": "9/25: NVDA – Shorting Oct (10/2) $475/465 bull put credit spread for $1.20/share credit. Anticipated Breakout from bullish consolidation above 50-MA daily. Stop $475.88"
},
{
"id": 43,
"type": "message",
"date": "2020-09-25T11:11:01",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"text": "bull call debit spread also acceptable as directional"
},
{
"id": 44,
"type": "message",
"date": "2020-09-25T11:21:48",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"photo": "(File not included. Change data exporting settings to download.)",
"width": 580,
"height": 415,
"text": "WDAY - a long if closes strong, will advise"
},
{
"id": 45,
"type": "message",
"date": "2020-09-25T11:45:38",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"photo": "(File not included. Change data exporting settings to download.)",
"width": 580,
"height": 432,
"text": "9/25: SQ – Buying Oct (10/2) $146/165 bull call debit spread for around $10.50/share debit (currently $10.80 but extended). Breakout of trading range daily, bullish weekly. Stop $147.78"
},
{
"id": 46,
"type": "message",
"date": "2020-09-28T05:09:08",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"text": "ADJUSTMENT: 9/25: NVDA – Shorted Oct (10/2) $475/465 bull put credit spread for $1.18/share credit. 9/28: Move Stop $503.38, then 30-Min. low, bid $.30/share to close half."
},
{
"id": 47,
"type": "message",
"date": "2020-09-28T05:19:46",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"text": "ADJUSTMENT: 9/25: NVTA - Bought stock at $43.55. 9/28: First 1/3 target around $46.25 (even if filled pre-market). Move Stop $43.78, then 30-Min. low."
},
{
"id": 48,
"type": "message",
"date": "2020-09-28T05:21:10",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"text": "ADJUSTMENT: 9/22: PLAN – Shorted Oct (10/16) $55/50 bull put credit spread for $.80/share credit. 9/28: Bid $.20/share to close half. Move Stop $61.58"
},
{
"id": 49,
"type": "message",
"date": "2020-09-28T05:24:11",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"photo": "(File not included. Change data exporting settings to download.)",
"width": 581,
"height": 339,
"text": "ADJUSTMENT: 9/25: SQ – Bought Oct (10/2) $146/165 bull call debit spread for $10.50/share debit. 9/28: With +Gap, sell half under 5-Min. low or into further strength in first 30-minutes. Move Stop 30-Min. low."
},
{
"id": 50,
"type": "message",
"date": "2020-09-28T05:26:10",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"text": "NOTE: with big market gap up, hold off longs in weekend letter, we will monitor and adjust individually and advise"
},
{
"id": 51,
"type": "message",
"date": "2020-09-28T06:37:46",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"text": "ADJUSTMENT: 9/25: SQ – Bought Oct (10/2) $146/165 bull call debit spread for $10.50/share debit. 9/28: Sell half for $13.10 for nice gain. Move Stop 30-Min. low."
},
{
"id": 52,
"type": "message",
"date": "2020-09-28T06:38:45",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"text": "13.60 now"
},
{
"id": 53,
"type": "message",
"date": "2020-09-28T06:53:35",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"photo": "(File not included. Change data exporting settings to download.)",
"width": 591,
"height": 769,
"text": "MRNA ok long now, same stop"
},
{
"id": 54,
"type": "message",
"date": "2020-09-28T07:00:45",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"photo": "(File not included. Change data exporting settings to download.)",
"width": 580,
"height": 432,
"text": "9/28: SMAR - Buying over $50.25. +WRB Breakout (and +123 if closed here). Stop $48.06"
},
{
"id": 55,
"type": "message",
"date": "2020-09-28T07:01:49",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"photo": "(File not included. Change data exporting settings to download.)",
"width": 576,
"height": 782,
"text": "KMB ok long here, same stop"
},
{
"id": 56,
"type": "message",
"date": "2020-09-28T07:08:47",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"photo": "(File not included. Change data exporting settings to download.)",
"width": 1280,
"height": 839,
"text": "ADJUSTMENT: 9/28: CHGG – consider Shorting Oct (10/16) $65/60 bull put credit spread for $.74/share credit. Bullish consolidation after new low and Breakout daily. Stop $64.88"
},
{
"id": 57,
"type": "message",
"date": "2020-09-28T07:45:10",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"text": "ADJUSTMENT: 9/25: NVDA – Shorted Oct (10/2) $475/465 bull put credit spread for $1.18/share credit. 9/28: Move Stop $510.98, bid $.30/share to close half."
},
{
"id": 58,
"type": "message",
"date": "2020-09-28T07:47:59",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"text": "509.98 on nvda. ADJUSTMENT: 9/25: SQ – Bought Oct (10/2) $146/165 bull call debit spread for $10.50/share debit. 9/28: Sold half for $13.50 for nice gain. Move stop $148.98"
},
{
"id": 59,
"type": "message",
"date": "2020-09-28T08:07:04",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"text": "ADJUSTMENT: 9/25: CPB – Shorted Oct (10/16) $45/42.5 bull put credit spread for $.40/share credit. 9/28: Close half at $.20/share. Move Stop $46.48"
},
{
"id": 60,
"type": "message",
"date": "2020-09-28T08:09:23",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"text": "ADJUSTMENT: 9/25: NVTA - Bought stock at $43.55. 9/28: Sold 1/3 at $46.10. Move Stop $43.86"
},
{
"id": 61,
"type": "message",
"date": "2020-09-28T12:49:21",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"photo": "(File not included. Change data exporting settings to download.)",
"width": 580,
"height": 432,
"text": "9/28: SPCE – consider shorting Oct (10/16) $17/13 bull put credit spread for $.35/share credit. +Gap/+WRB Breakout daily. Stop $18.09"
},
{
"id": 62,
"type": "message",
"date": "2020-09-29T06:11:15",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"text": "ADJUSTMENT: 9/25: SQ – Bought Oct (10/2) $146/165 bull call debit spread for $10.50/share debit. 9/28: Sold half for $13.50 for nice gain. 9/29: Move stop $159.98"
},
{
"id": 63,
"type": "message",
"date": "2020-09-29T06:33:52",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"photo": "(File not included. Change data exporting settings to download.)",
"width": 580,
"height": 432,
"text": "LOW - long watch, will advise"
},
{
"id": 64,
"type": "message",
"date": "2020-09-29T07:04:49",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"text": "9/29: LOW - Buying stock over $163.54. Breakout from bullish retest of support and r50-MA. Stop $160.48"
},
{
"id": 65,
"type": "message",
"date": "2020-09-29T07:14:47",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"photo": "(File not included. Change data exporting settings to download.)",
"width": 580,
"height": 415,
"text": "PODD - breakout all-time highs, will watch into close (also COST, QDEL, FSLY, OR, FAST)"
},
{
"id": 66,
"type": "message",
"date": "2020-09-29T07:20:08",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"photo": "(File not included. Change data exporting settings to download.)",
"width": 580,
"height": 415,
"text": "9/29: BLFS - Buy stock over $28.87 or pull back to $28.10 area. Breakout to all-time highs from bullish consolidation. Stop $26.48"
},
{
"id": 67,
"type": "message",
"date": "2020-09-29T07:56:30",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"text": "ADJUSTMENT: 9/25: NVDA – Shorted Oct (10/2) $475/465 bull put credit spread for $1.18/share credit. 9/29: Covered half at $.30/share. Move Stop $509.98"
},
{
"id": 68,
"type": "message",
"date": "2020-09-29T12:21:44",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"text": "ADJUSTMENT: 9/25: SQ – Bought Oct (10/2) $146/165 bull call debit spread for $10.50/share debit. 9/28: Sold half for $13.50 for nice gain. 9/29: Move stop $162.98"
},
{
"id": 69,
"type": "message",
"date": "2020-09-29T13:44:05",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"photo": "(File not included. Change data exporting settings to download.)",
"width": 580,
"height": 415,
"text": "9/30: BIGC – Over $89.80, consider shorting Oct (10/16) $70/60 bull put credit spread for $.90/share credit. +WRB Breakout on Major Support daily. Stop $73.13"
},
{
"id": 70,
"type": "message",
"date": "2020-09-29T13:46:59",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"photo": "(File not included. Change data exporting settings to download.)",
"width": 580,
"height": 415,
"text": "9/30: CBGI - Buying stock over $6.11. Bullish +123 continuation Breakout. Stop $5.58"
},
{
"id": 71,
"type": "message",
"date": "2020-09-29T13:50:02",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"text": "CVGI, sorry"
},
{
"id": 72,
"type": "message",
"date": "2020-09-29T17:50:42",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"text": [
"TODAY'S TRADE REVIEW ",
{
"type": "link",
"text": "https://www.dropbox.com/s/p763kskk7lcputu/combined%20200929.mp4?dl=0"
}
]
},
{
"id": 73,
"type": "message",
"date": "2020-09-30T04:18:10",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"text": "ADJUSTMENT: 9/28: MRNA – Bought stock at $70.42. 9/30: With +Gap, move Stop $69.09"
},
{
"id": 74,
"type": "message",
"date": "2020-09-30T05:56:15",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"text": "ADJUSTMENT: 9/23: SNOW – Shorted Oct (10/16) $180/150 bull put credit spread for $1.55/share credit. 9/30: Mid-point to close is $.70/share. Bid $.30/share to close. Move Stop $227.78"
},
{
"id": 75,
"type": "message",
"date": "2020-09-30T06:36:24",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"photo": "(File not included. Change data exporting settings to download.)",
"width": 580,
"height": 415,
"text": "9/30: RBA - Buying over $59.48. Breakout after Downside Shakeout. Stop $57.88"
},
{
"id": 76,
"type": "message",
"date": "2020-09-30T06:37:26",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"photo": "(File not included. Change data exporting settings to download.)",
"width": 602,
"height": 814,
"text": "MRNA - sell 1/3, move stop low"
},
{
"id": 77,
"type": "message",
"date": "2020-09-30T06:44:12",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"text": "ADJUSTMENT: 9/23: SNOW – Shorted Oct (10/16) $180/150 bull put credit spread for $1.55/share credit. 9/30: Close half at $.55/share. Bid $.15/share to close back half. Move Stop $246"
},
{
"id": 78,
"type": "message",
"date": "2020-09-30T07:09:06",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"text": "ADJUSTMENT: 9/25: NVDA – Shorted Oct (10/2) $475/465 bull put credit spread for $1.18/share credit. 9/29: Covered half at $.30/share. 9/30: Close at 1-2 cents to avoid gap risk (mid-point is 1 cent)"
},
{
"id": 79,
"type": "message",
"date": "2020-09-30T07:15:17",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"text": "ADJUSTMENT: 9/29: LOW - Bought stock at $163.55 9/30: Sell 1/3 around $166. Move Stop $162.47"
},
{
"id": 80,
"type": "message",
"date": "2020-09-30T07:31:08",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"text": "SPGI, LEN, TXN, CMI, MDB, ELAN, LB, BYD, WHR, GRWG - all on our long watch list if close strong"
},
{
"id": 81,
"type": "message",
"date": "2020-09-30T08:07:12",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"photo": "(File not included. Change data exporting settings to download.)",
"width": 581,
"height": 339,
"text": "ADJUSTMENT: 9/29: LOW - Bought stock at $163.55. 9/30: Sell 1/3 under a prior 15-Min. bar’s low. Move Stop $162.47"
},
{
"id": 82,
"type": "message",
"date": "2020-09-30T08:08:50",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"photo": "(File not included. Change data exporting settings to download.)",
"width": 580,
"height": 432,
"text": "ADJUSTMENT: 9/30: BIGC – consider shorting Oct (10/16) $70/60 bull put credit spread for $1.00/share credit. +WRB Breakout on Major Support (and +123 if closed here) daily. Stop $73.13"
},
{
"id": 83,
"type": "message",
"date": "2020-09-30T08:32:09",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"photo": "(File not included. Change data exporting settings to download.)",
"width": 581,
"height": 339,
"text": "LOW - let's now trail 5-min bar's low for 1/3 (vs. the 15-min.)"
},
{
"id": 84,
"type": "message",
"date": "2020-09-30T08:51:00",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"text": "BIGC - $.95/share ok if not filled"
},
{
"id": 85,
"type": "message",
"date": "2020-09-30T11:40:30",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"text": "ADJUSTMENT: 9/29: BLFS - Bought stock at $28.88. 9/30: Move Stop $27.41"
},
{
"id": 86,
"type": "message",
"date": "2020-09-30T11:42:21",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"text": "ADJUSTMENT: 9/28: CHGG – Shorted Oct (10/16) $65/60 bull put credit spread for $.74/share credit. 9/30: Mid-point to cover is $.50/share. Move Stop tighter of breakeven or $69.88"
},
{
"id": 87,
"type": "message",
"date": "2020-09-30T11:44:42",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"text": "ADJUSTMENT: 9/25: CPB – Shorted Oct (10/16) $45/42.5 bull put credit spread for $.40/share credit. 9/28: Closed half at $.20/share. 9/30: Close back half $.10/share to be done with it"
},
{
"id": 88,
"type": "message",
"date": "2020-09-30T11:47:49",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"text": "ADJUSTMENT: 9/22: ESTC – Shorted Oct (10/16) $95/85 bull put credit spread for $1.25/share credit. 9/30: Mid-point to cover is $.80/share. Bid $.40/share for half. Move Stop tighter of breakeven or $104.28"
},
{
"id": 89,
"type": "message",
"date": "2020-09-30T11:48:58",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"text": "ADJUSTMENT: 9/28: KMB – Bought stock at $146.95. 9/30: With the iffy market, move Stop $146.95"
},
{
"id": 90,
"type": "message",
"date": "2020-09-30T11:57:33",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"text": "ADJUSTMENT: 9/22: VRM – Shorted Oct (10/16) $40/35 bull put credit spread for $.85/share. Stop $43.88. 9.30: Closing at $.25/share to book $$"
},
{
"id": 91,
"type": "message",
"date": "2020-09-30T12:18:19",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"photo": "(File not included. Change data exporting settings to download.)",
"width": 580,
"height": 449,
"text": "CVGI - sell half, move stop breakeven"
},
{
"id": 92,
"type": "message",
"date": "2020-09-30T12:23:42",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"text": "LOW - sell back half, take $$"
},
{
"id": 93,
"type": "message",
"date": "2020-09-30T12:32:03",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"photo": "(File not included. Change data exporting settings to download.)",
"width": 580,
"height": 449,
"text": "NOVA - watching to sell Oct $25 puts, will advise"
},
{
"id": 94,
"type": "message",
"date": "2020-09-30T12:50:29",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"text": "sell oct. puts for $1.0/share , stop under 25"
},
{
"id": 95,
"type": "message",
"date": "2020-10-01T06:32:24",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"photo": "(File not included. Change data exporting settings to download.)",
"width": 580,
"height": 449,
"text": "DOCU - +Gap Breakout, will advise, but watching 5-Min. high"
},
{
"id": 96,
"type": "message",
"date": "2020-10-01T06:37:51",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"photo": "(File not included. Change data exporting settings to download.)",
"width": 580,
"height": 449,
"text": ""
},
{
"id": 97,
"type": "message",
"date": "2020-10-01T06:38:26",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"text": "10/1: SHAK - Shorting under $63.49. Bear -123 Continuation Breakdown. Stop $67.12"
},
{
"id": 98,
"type": "message",
"date": "2020-10-01T06:49:41",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"text": "ADJUSTMENT: 9/22: ESTC – Shorted Oct (10/16) $95/85 bull put credit spread for $1.25/share credit. 10/1: cover half at $.55/share. Move Stop $105.98"
},
{
"id": 99,
"type": "message",
"date": "2020-10-01T06:54:42",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"photo": "(File not included. Change data exporting settings to download.)",
"width": 580,
"height": 449,
"text": "CIBR - watching long"
},
{
"id": 100,
"type": "message",
"date": "2020-10-01T06:58:09",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"photo": "(File not included. Change data exporting settings to download.)",
"width": 589,
"height": 813,
"text": "DOCU long here (long calls ok too if liquid), stop 209.98"
},
{
"id": 101,
"type": "message",
"date": "2020-10-01T07:00:31",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"photo": "(File not included. Change data exporting settings to download.)",
"width": 580,
"height": 449,
"text": "WMT - +123 if closed here, can buy over highs tomorrow"
},
{
"id": 102,
"type": "message",
"date": "2020-10-01T07:08:11",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"photo": "(File not included. Change data exporting settings to download.)",
"width": 580,
"height": 449,
"text": "CBAY - nice +123 breakout, but is bio FYI"
},
{
"id": 103,
"type": "message",
"date": "2020-10-01T07:19:38",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"photo": "(File not included. Change data exporting settings to download.)",
"width": 580,
"height": 449,
"text": "10/1: PINS - Buying stock $42.96. +Gap Breakout to all-time highs. Stop $40.48"
},
{
"id": 104,
"type": "message",
"date": "2020-10-01T07:29:51",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"photo": "(File not included. Change data exporting settings to download.)",
"width": 589,
"height": 819,
"text": "RKT - watching"
},
{
"id": 105,
"type": "message",
"date": "2020-10-01T07:35:32",
"from": "MT Swing & Options Trader",
"from_id": 10078341442,
"photo": "(File not included. Change data exporting settings to download.)",
"width": 580,
"height": 449,
"text": "10/1: WMT - Buying stock at $142.14. Breakout. Stop $137.19"