-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathweekly_1_9_22_20.json
6131 lines (6131 loc) · 227 KB
/
weekly_1_9_22_20.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 Weekly Options Trader Income",
"type": "private_channel",
"id": 10015910801,
"messages": [
{
"id": 1,
"type": "service",
"date": "2020-05-24T08:29:49",
"action": "create_channel",
"title": "MT Weekly Options Trader Income",
"text": ""
},
{
"id": 2,
"type": "service",
"date": "2020-05-24T09:07:45",
"action": "edit_group_photo",
"photo": "(File not included. Change data exporting settings to download.)",
"width": 640,
"height": 640,
"text": ""
},
{
"id": 3,
"type": "message",
"date": "2020-05-26T04:11:20",
"text": "ADJUSTMENT: 5/21: BA – Shorted May (5/29) $129/119 bull put credit spread for $1.10/share. 5/26: Stop $135.68"
},
{
"id": 4,
"type": "message",
"date": "2020-05-26T06:38:49",
"text": "ADJUSTMENT: 5/21: BA – Shorted May (5/29) $129/119 bull put credit spread for $1.10/share. 5/26: Cover half $.26/share, move Stop $140.98"
},
{
"id": 5,
"type": "message",
"date": "2020-05-26T06:52:24",
"photo": "(File not included. Change data exporting settings to download.)",
"width": 588,
"height": 467,
"text": "5/26: ZM – Consider shorting May (5/29) $180/185 bear call credit spread for a limit of $.45/share on a bounce. -Gap Breakdown hourly, extended daily after retest. Stop $176.22"
},
{
"id": 6,
"type": "message",
"date": "2020-05-26T07:33:38",
"text": "5/26: PYPL – Consider shorting half lot of Jun (6/5) $155/160 bear call credit spread for $.60/share, and add around $1.00 if get on a bounce. Gap and Crap from all-time high, climactic weekly. Stop $154.56"
},
{
"id": 7,
"type": "message",
"date": "2020-05-26T07:41:19",
"photo": "(File not included. Change data exporting settings to download.)",
"width": 588,
"height": 467,
"text": "5/26: HES – Consider shorting May (5/29) $46/44 bull put credit spread for $.21. +Gap from Buy Setup on r20-MA daily, Bullish intra-days. Stop $46.25"
},
{
"id": 8,
"type": "message",
"date": "2020-05-26T07:58:17",
"photo": "(File not included. Change data exporting settings to download.)",
"width": 588,
"height": 467,
"text": "5/26: AAPL – Over $322, consider shorting May (5/29) $315/320 bull put credit spread for a limit of $.65/share (currently $.77/share). +Gap Breakout daily, bullish retest intra-day. Stop $315.34"
},
{
"id": 9,
"type": "message",
"date": "2020-05-26T08:01:07",
"text": "315/310 strikes"
},
{
"id": 10,
"type": "message",
"date": "2020-05-26T11:49:15",
"photo": "(File not included. Change data exporting settings to download.)",
"width": 588,
"height": 467,
"text": "5/26: GS – Watching into close to short May (5/29) $185/180 bull put credit spread (currently $.50/share), will advise. +Gap/+WRB Breakout at 50-MA daily. Stop $185.21"
},
{
"id": 11,
"type": "message",
"date": "2020-05-26T11:59:16",
"text": "GS good to go, can add on pull back"
},
{
"id": 12,
"type": "message",
"date": "2020-05-26T12:09:05",
"text": "ADJUSTMENT: 5/26: ZM – Shorted May (5/29) $180/185 bear call credit spread for $.45/share. 5/26: Mid-point to close is $.25/share, move Stop $168.22"
},
{
"id": 13,
"type": "message",
"date": "2020-05-26T12:47:03",
"photo": "(File not included. Change data exporting settings to download.)",
"width": 588,
"height": 467,
"text": ": 5/26: W – Shorting May (5/29) $170/175 bear call credit spread for $.60/share. Bearish consolidation in bottom half of -WRB daily, breakdown intra-day. Stop $168.72"
},
{
"id": 14,
"type": "message",
"date": "2020-05-27T05:20:39",
"text": "ADJUSTMENT: 5/26: ZM – Shorted May (5/29) $180/185 bear call credit spread for $.45/share. 5/27: With gap down, cover half over 5-Min. high. Move Stop $167.32"
},
{
"id": 15,
"type": "message",
"date": "2020-05-27T05:58:40",
"photo": "(File not included. Change data exporting settings to download.)",
"width": 612,
"height": 864,
"text": "ADJUSTMENT: 5/21: BA – Shorted May (5/29) $129/119 bull put credit spread for $1.10/share. 5/26: Covered half $.26/share. 5/27: With +Gap, move Stop 30-Min. low"
},
{
"id": 16,
"type": "message",
"date": "2020-05-27T06:00:05",
"text": "ADJUSTMENT: 5/26: GS – Shorted May (5/29) $185/180 bull put credit spread for $.46/share. 5/27: Close half under 5-Min. low with +Gap. Move Stop $194.83"
},
{
"id": 17,
"type": "message",
"date": "2020-05-27T06:47:18",
"photo": "(File not included. Change data exporting settings to download.)",
"width": 588,
"height": 485,
"text": "5/27: AMD – Shorting Jun (6/5) $56/58 bear call credit spread for $.21/share, add on bounce. Breakdown after reversal at Major Resistance daily, breakdown intra-day. Stop $56.02"
},
{
"id": 18,
"type": "message",
"date": "2020-05-27T07:05:31",
"text": "5/27: Shorting May (5/27) SPX 2950/2925 put spread for $.75/share, will advise on stop"
},
{
"id": 19,
"type": "message",
"date": "2020-05-27T07:16:09",
"text": "ADJUSTMENT: 5/26: GS – Shorted May (5/29) $185/180 bull put credit spread for $.46/share. 5/27: Closed half under 5-Min. low with +Gap. Move Stop $194.83. Close back half 5 cents to avoid gap risk"
},
{
"id": 20,
"type": "message",
"date": "2020-05-27T07:20:01",
"text": "ADJUSTMENT: 5/26: ZM – Shorted May (5/29) $180/185 bear call credit spread for $.45/share. 5/27: With gap down, cover half over 5-Min. high. Move Stop $167.32. 180 calls are 0 x $.10/share, bid 5 cents to close short calls (or entire spread if not get filled) to avoid gap risk"
},
{
"id": 21,
"type": "message",
"date": "2020-05-27T07:21:54",
"text": "move stop breakeven on SPX put spread"
},
{
"id": 22,
"type": "message",
"date": "2020-05-27T07:52:12",
"text": "5/27: SPX - Shorting May (5/27) 2930/2910 put spread for $1.10/share. Pull back to Minor Support on 15-Min. chart. will advise on stop"
},
{
"id": 23,
"type": "message",
"date": "2020-05-27T07:53:31",
"text": "MAR - CANCEL TRADE SINCE NOT GETTING DESIRED CREDIT."
},
{
"id": 24,
"type": "message",
"date": "2020-05-27T08:08:17",
"text": "ADJUSTMENT: 5/27: SPX - Shorting May (5/27) 2930/2910 put spread for $1.10/share. Pull back to Minor Support on 15-Min. chart. 5/27: Close half at $.30/share, Move stop low, bid 10 cents back half"
},
{
"id": 25,
"type": "message",
"date": "2020-05-27T08:35:27",
"text": "cover here $.15/share, nice trade"
},
{
"id": 26,
"type": "message",
"date": "2020-05-28T04:21:55",
"photo": "(File not included. Change data exporting settings to download.)",
"width": 588,
"height": 485,
"text": "5/28: DG - Opening roughly flat on earnings. +WRB Breakout from multi-week trading range at r20-MA daily. Will watch to sell put spread over 10-Min. high, will advise."
},
{
"id": 27,
"type": "message",
"date": "2020-05-28T05:11:01",
"photo": "(File not included. Change data exporting settings to download.)",
"width": 613,
"height": 862,
"text": "5/28: DLTR - +Gap to $95 pre-market on earnings, will be watching to sell 1 DTE call spread under 30-min. low, will advise"
},
{
"id": 28,
"type": "message",
"date": "2020-05-28T05:14:42",
"photo": "(File not included. Change data exporting settings to download.)",
"width": 588,
"height": 485,
"text": "5/28: HES – Over $49.61, consider shorting Jun (6/5) $46/41 bull put credit spread for a limit of $.50/share (closed at $.58/share). Breakout from bullish inverse head and shoulders daily. Stop $46.25"
},
{
"id": 29,
"type": "message",
"date": "2020-05-28T05:57:49",
"photo": "(File not included. Change data exporting settings to download.)",
"width": 588,
"height": 485,
"text": "5/28: MAR – Over $99.00, consider shorting Jun (6/5) $94/90 bull put credit spread for a limit of $.80/share (closed at $.92/share). Bullish 2-bar consolidation after +Gap Breakout daily. Stop $94.38"
},
{
"id": 30,
"type": "message",
"date": "2020-05-28T07:07:58",
"photo": "(File not included. Change data exporting settings to download.)",
"width": 588,
"height": 485,
"text": "5/28: BA – Consider shorting Jun (6/5) $140/135 bull put credit spread for $.60/share. +Gap Breakout after Bottoming Tail above 20/50-MA daily. Stop $140.98"
},
{
"id": 31,
"type": "message",
"date": "2020-05-28T07:31:49",
"photo": "(File not included. Change data exporting settings to download.)",
"width": 602,
"height": 875,
"text": "DLTR - watching to short 1 DTE 100/105 call spread on intra-day reversal, will advise."
},
{
"id": 32,
"type": "message",
"date": "2020-05-28T07:47:14",
"text": "ADJUSTMENT: 5/26: HES – Shorted May (5/29) $46/44 bull put credit spread for $.21. 5/28: Mid-point to close is $.06/share, move Stop $47.18 and let expire worthless"
},
{
"id": 33,
"type": "message",
"date": "2020-05-29T04:41:35",
"photo": "(File not included. Change data exporting settings to download.)",
"width": 587,
"height": 485,
"text": "5/29: VMW - +Gap Breakout on earnings pre-market, will watch for short put spread"
},
{
"id": 34,
"type": "message",
"date": "2020-05-29T05:13:30",
"photo": "(File not included. Change data exporting settings to download.)",
"width": 587,
"height": 485,
"text": "5/29: DKNG - Under $34.62, consider shorting Jun (6/5) $40/45 bear call credit spread for a limit of $.70/share (closed at $.85/share). Climactic Sell Setup and Topping Tail daily. Stop $39.72"
},
{
"id": 35,
"type": "message",
"date": "2020-05-29T07:12:18",
"photo": "(File not included. Change data exporting settings to download.)",
"width": 588,
"height": 861,
"text": "5/29: COST - Consider shorting Jun (6/5) $315/320 bear call credit spread for $.77/share (will leg into condor if needed). -Gap on earnings, rally and reversal intra-day at resistance. Stop $311.12"
},
{
"id": 36,
"type": "message",
"date": "2020-05-29T07:12:31",
"text": ".75 fine"
},
{
"id": 37,
"type": "message",
"date": "2020-05-29T07:32:21",
"photo": "(File not included. Change data exporting settings to download.)",
"width": 587,
"height": 485,
"text": "ADJUSTMENT: 5/28: BA – Shorted Jun (6/5) $140/135 bull put credit spread for $.59/share. Stop $140.98. 5/29: Selling (6/5) $157.5/162.5 bear call credit spread for $.70/share to leg into condor and raise total credit to $1.29/share (stop $156.71)"
},
{
"id": 38,
"type": "message",
"date": "2020-05-29T07:50:57",
"text": "ADJUSTMENT: 5/28: HES – Shorted Jun (6/5) $46/41 bull put credit spread for $.50/share. Stop $46.25. 5/29: Selling (6/5) $50/52 bear call credit spread for $.33/share to leg into condor and raise total credit to $.83/share (stop $49.82)"
},
{
"id": 39,
"type": "message",
"date": "2020-05-29T07:55:34",
"text": "ADJUSTMENT: 5/26: HES – Shorted May (5/29) $46/44 bull put credit spread for $.21. 5/29: Move Stop $46.68 and let expire worthless"
},
{
"id": 40,
"type": "message",
"date": "2020-05-29T07:59:13",
"photo": "(File not included. Change data exporting settings to download.)",
"width": 587,
"height": 485,
"text": "5/29: SBUX - Shorting Jun (6/5) $80/82 bear call credit spread for $.35/share (will leg into condor if needed). Bearish resistance after Breakout Failure daily. Stop $80.02"
},
{
"id": 41,
"type": "message",
"date": "2020-05-29T08:01:14",
"text": "ADJUSTMENT: 5/29: DKNG - Under $36.60, consider shorting Jun (6/5) $42/50 bear call credit spread for a limit of $.70/share (currently $.80/share). Climactic Sell Setup and Topping Tail daily. Stop $40.12"
},
{
"id": 42,
"type": "message",
"date": "2020-05-29T08:20:26",
"photo": "(File not included. Change data exporting settings to download.)",
"width": 612,
"height": 869,
"text": "5/29: SPY - selling May (5/29) $299/289 put spread for $.44/share. CLimactic Buy Setup and Bottoming on support 15-Min. Stop $299.66"
},
{
"id": 43,
"type": "message",
"date": "2020-05-29T08:47:18",
"text": "Move stop breakeven when you are halfway to max profit"
},
{
"id": 44,
"type": "message",
"date": "2020-06-01T07:27:35",
"text": "ADJUSTMENT: 5/29: COST - Shorted Jun (6/5) $315/320 bear call credit spread for $.75/share. 6/1: Mid-point to close is $.54/hare, move Stop tighter of breakeven or $310.47"
},
{
"id": 45,
"type": "message",
"date": "2020-06-01T08:00:24",
"photo": "(File not included. Change data exporting settings to download.)",
"width": 583,
"height": 879,
"text": "6/1: EA – Consider shorting Jun (6/5) $118/114 bull put credit spread for a limit of $.30/share. Breakout daily. Stop $118.88"
},
{
"id": 46,
"type": "message",
"date": "2020-06-01T08:03:20",
"text": "ADJUSTMENT: 6/1: NFLX – consider shorting half lot at Jun (6/5) $400/390 bull put credit spread for $.86/share, add at $1.00+. Buy Setup and reversal on Major Support and r50-MA daily. Stop $404.88"
},
{
"id": 47,
"type": "message",
"date": "2020-06-01T12:28:46",
"photo": "(File not included. Change data exporting settings to download.)",
"width": 575,
"height": 486,
"text": "6/1: RCL – Consider shorting Jun (6/5) $49/47 bull put credit spread for a limit of $.21/share. Pullback after Breakout daily. Stop $48.98"
},
{
"id": 48,
"type": "message",
"date": "2020-06-01T12:31:46",
"photo": "(File not included. Change data exporting settings to download.)",
"width": 575,
"height": 486,
"text": "6/1: TSLA – Consider shorting Jun (6/5) $820/810 bull put credit spread for $95/share. +Gap Breakout daily, bullish 15-Min. breakout. Stop $854"
},
{
"id": 49,
"type": "message",
"date": "2020-06-02T04:58:41",
"text": "ADJUSTMENT: 6/2: DKNG - Under $40.01, consider shorting Jun (6/5) $48/537 bear call credit spread for a limit of $.50/share (closed at $.70/share). Climactic Sell Setup (and bearish reversal, if triggered) daily. Stop $45.52"
},
{
"id": 50,
"type": "message",
"date": "2020-06-02T06:32:58",
"text": "HES - stop 5 min high on call spread"
},
{
"id": 51,
"type": "message",
"date": "2020-06-02T06:37:00",
"text": "ADJUSTMENT: 5/28: HES – Shorted Jun (6/5) $46/41 bull put credit spread for $.50/share. 5/29: Selling (6/5) $50/52 bear call credit spread for $.33/share to leg into condor and raise total credit to $.83/share. 6/2: Move stop $50.66 (5-Min. high) on call spread, $46.47 on put spread"
},
{
"id": 52,
"type": "message",
"date": "2020-06-02T06:59:43",
"photo": "(File not included. Change data exporting settings to download.)",
"width": 575,
"height": 486,
"text": "6/2: BYND - shorting Jun (6/3) $150/160 bear call credit spread for $.66/share. Rally and reversal at Major Resistance daily. Stop $145.12"
},
{
"id": 53,
"type": "message",
"date": "2020-06-02T07:03:59",
"text": "ADJUSTMENT: 6/2: SMH – Over $142.14, consider shorting Jun (6/5) $137/133 bull put credit spread for $.36/share. Breakout daily. Stop $135.58"
},
{
"id": 54,
"type": "message",
"date": "2020-06-02T07:05:30",
"text": "BYND is 6/5 expiration"
},
{
"id": 55,
"type": "message",
"date": "2020-06-02T07:14:11",
"text": "ADJUSTMENT: 5/29: SBUX - Shorted Jun (6/5) $80/82 bear call credit spread for $.35/share. 6/2: Mid-point to close is $.20/share, move Stop $78.82"
},
{
"id": 56,
"type": "message",
"date": "2020-06-02T07:31:20",
"text": "ADJUSTMENT: 6/1: NFLX – Shorted Jun (6/5) $400/390 bull put credit spread for $.93/share. 6/2: Mid-point to close is $.40/share, move Stop $422.48"
},
{
"id": 57,
"type": "message",
"date": "2020-06-02T07:56:11",
"text": "SPY - CANCEL TRADE SINCE NOT GETTING DESIRED CREDIT."
},
{
"id": 58,
"type": "message",
"date": "2020-06-02T08:13:05",
"photo": "(File not included. Change data exporting settings to download.)",
"width": 575,
"height": 486,
"text": "ADJUSTMENT: 6/2: DKNG - Consider shorting Jun (6/5) $45/50 bear call credit spread for $.55/share. Climactic Sell Setup and bearish 180-reversal daily. Stop $44.82"
},
{
"id": 59,
"type": "message",
"date": "2020-06-02T08:16:02",
"text": "ADJUSTMENT: 6/1: DPZ – Shorted Jun (6/5) $365/360 bull put credit spread for $.50/share. Stop $368.98. 6/2: Mid-point to close is $.35/share, let’s close for best price to book small gains and reduce long exposure"
},
{
"id": 60,
"type": "message",
"date": "2020-06-02T08:19:24",
"text": "ADJUSTMENT: 5/29: SBUX - Shorted Jun (6/5) $80/82 bear call credit spread for $.35/share. 6/2: Close half at $.11/share, move Stop $78.65"
},
{
"id": 61,
"type": "message",
"date": "2020-06-02T08:21:56",
"text": "ADJUSTMENT: 5/29: COST - Shorted Jun (6/5) $315/320 bear call credit spread for $.75/share. 6/2: Close half at $.20/share, move Stop $310.22"
},
{
"id": 62,
"type": "message",
"date": "2020-06-02T08:37:04",
"text": "ADJUSTMENT: 5/27: AMD – Shorted Jun (6/5) $56/58 bear call credit spread for $.21/share. 6/2: Mid-point to close is $.11/share, move Stop tighter of breakeven or $54.22"
},
{
"id": 63,
"type": "message",
"date": "2020-06-02T12:42:55",
"text": "HES - 6/2: Roll the short Jun (6/5) $46 puts to $50 puts for $.50/share to increase total premium to $1.33/share, new stop $49.72"
},
{
"id": 64,
"type": "message",
"date": "2020-06-02T12:56:17",
"photo": "(File not included. Change data exporting settings to download.)",
"width": 1280,
"height": 806,
"text": "GOOGL - shorting Jun 5th 1400/1390 put spread for $.95/share"
},
{
"id": 65,
"type": "message",
"date": "2020-06-02T12:56:57",
"text": ".90"
},
{
"id": 66,
"type": "message",
"date": "2020-06-02T12:59:21",
"text": "6/2: GOOGL - Shorted Jun (6/5) $1400/1390 put spread for $.90/share. Breakout hourly. Stop $1400"
},
{
"id": 67,
"type": "message",
"date": "2020-06-02T14:09:42",
"text": "ADJUSTMENT: 6/1: TSLA – Shorted Jun (6/5) $820/810 bull put credit spread for $95/share. 6/2: Mid-point to close is $.44/share. Move Stop tighter of Breakeven or $854"
},
{
"id": 68,
"type": "message",
"date": "2020-06-03T06:00:25",
"photo": "(File not included. Change data exporting settings to download.)",
"width": 596,
"height": 789,
"text": "ZM - gave up +Gap on earnings pre-market, under 30-min. low we will advise on possible bear call spread"
},
{
"id": 69,
"type": "message",
"date": "2020-06-03T06:18:09",
"text": "ADJUSTMENT: 5/28: BA – Shorted Jun (6/5) $140/135 bull put credit spread for $.59/share. Stop $140.98. 5/29: Sold Jun. (6/5) $157.5/162.5 bear call credit spread for $.70/share to leg into condor and raise total credit to $1.29/share (stop $156.71). 6/3: Move stop 5-min. high on call spread"
},
{
"id": 70,
"type": "message",
"date": "2020-06-03T06:39:38",
"photo": "(File not included. Change data exporting settings to download.)",
"width": 575,
"height": 442,
"text": "ZM - short Jun (6/5) 225/235 call spread for $1.00/share. Stop 216"
},
{
"id": 71,
"type": "message",
"date": "2020-06-03T06:53:30",
"photo": "(File not included. Change data exporting settings to download.)",
"width": 575,
"height": 442,
"text": "6/3: DAL - shorting Jun (6/12) 25/23 put spread for $.25/share. Breakout hourly. Stop $25.07"
},
{
"id": 72,
"type": "message",
"date": "2020-06-03T06:54:50",
"text": "ADJUSTMENT: 5/28: HES – Shorted Jun (6/5) $46/41 bull put credit spread for $.50/share. 6/2: Rolled the short Jun (6/5) $46 puts to $50 puts for $.50/share to increase total premium to $1.33/share. 6/3: Move stop $50.75"
},
{
"id": 73,
"type": "message",
"date": "2020-06-03T07:09:41",
"photo": "(File not included. Change data exporting settings to download.)",
"width": 575,
"height": 442,
"text": "BA - adding another put spread: Jun (6/12) $144/134 for around $.75/share to increase total premium. New stop for both $144.48"
},
{
"id": 74,
"type": "message",
"date": "2020-06-03T07:16:58",
"text": "ADJUSTMENT: 6/1: TSLA – Shorted Jun (6/5) $820/810 bull put credit spread for $95/share. 6/3: Close at $.13/share to book 83% Max Gain and avoid gap risk"
},
{
"id": 75,
"type": "message",
"date": "2020-06-03T07:25:55",
"photo": "(File not included. Change data exporting settings to download.)",
"width": 575,
"height": 442,
"text": "6/3: WYNN – consider shorting Jun (6/12) $80/75 bull put credit spread for $.53/share. Breakout above r20-MA daily. Stop $80.78"
},
{
"id": 76,
"type": "message",
"date": "2020-06-03T07:33:38",
"photo": "(File not included. Change data exporting settings to download.)",
"width": 575,
"height": 442,
"text": "6/3: LYFT - shorting Jun (6/12) $31.5/28.5 bull put credit spread for $.29/share. Breakout daily. Stop $31.48"
},
{
"id": 77,
"type": "message",
"date": "2020-06-03T08:01:18",
"text": "ADJUSTMENT: 6/2: DKNG - Shorted Jun (6/5) $45/50 bear call credit spread for $.55/share. 6/3: Mid-point to close is $.20/share, bid $.10/share to close, move Stop $42.49"
},
{
"id": 78,
"type": "message",
"date": "2020-06-03T08:17:00",
"text": "ADJUSTMENT: 6/2: SMH – Shorted Jun (6/5) $137/133 bull put credit spread for $.36/share. 6/3: Closing at 3 cents just to be done with it, nice trade"
},
{
"id": 79,
"type": "message",
"date": "2020-06-03T08:34:44",
"text": "BA - move stop breakeven on new trade. 5/28: BA – Shorted Jun (6/5) $140/135 bull put credit spread for $.59/share (6/3: close for 3 cents)."
},
{
"id": 80,
"type": "message",
"date": "2020-06-03T09:08:40",
"text": "GOOGL - move stop breakeven on put spread, market feeling toppy here"
},
{
"id": 81,
"type": "message",
"date": "2020-06-03T12:48:01",
"photo": "(File not included. Change data exporting settings to download.)",
"width": 575,
"height": 442,
"text": "6/3: UAL – Shorting Jun (6/12) $29/26 bull put credit spread for $.30/share. Breakout above 20/50-MA daily. Stop $29.18"
},
{
"id": 82,
"type": "message",
"date": "2020-06-03T12:57:24",
"text": "ADJUSTMENT: 6/2: BYND - Shorted Jun (6/5) $150/160 bear call credit spread for $.66/share. 6/3: Mid-point to close is $.18/share, move Stop $140.12 to protect gains"
},
{
"id": 83,
"type": "message",
"date": "2020-06-04T04:57:05",
"text": "ADJUSTMENT: 5/29: COST - Shorted Jun (6/5) $315/320 bear call credit spread for $.75/share. 6/2: Closed half at $.20/share. 6/4: With +Gap, move Stop higher of 5-Min. high or $310.52. And if stopped, sell Jun. (6/5) $305/300 bull put credit spread for a limit of $.50/share (closed at $1.10/share) to leg into condor and raise total credit (stop $305.08)."
},
{
"id": 84,
"type": "message",
"date": "2020-06-04T06:33:52",
"text": "COST - stop 311.07"
},
{
"id": 85,
"type": "message",
"date": "2020-06-04T06:38:45",
"text": [
"ADJUSTMENT: 5/29: COST - Shorted Jun (6/5) $315/320 bear call credit spread for $.75/share. 6/2: Closed half at $.20/share. 6/4: With +Gap, move Stop higher of 5-Min. high or $310.52 (stopped at $.45/share). Shorting Jun. (6/12) $302.5/297.5 bull put credit spread for a limit of $.60+",
{
"type": "bot_command",
"text": "/share"
},
" to leg into condor and raise total credit (stop $302.34)"
]
},
{
"id": 86,
"type": "message",
"date": "2020-06-04T06:46:41",
"photo": "(File not included. Change data exporting settings to download.)",
"width": 827,
"height": 796,
"text": "AMZN - we are watching to sell 2440/2430 1 DTE put spread"
},
{
"id": 87,
"type": "message",
"date": "2020-06-04T06:52:52",
"text": "ADJUSTMENT: 6/3: BA – Shorted Jun (6/12) $144/134 for $.75/share. 6/4: Close half at $.20/share, Move Stop $162.64"
},
{
"id": 88,
"type": "message",
"date": "2020-06-04T06:59:52",
"text": "ADJUSTMENT: 6/2: DKNG - Shorted Jun (6/5) $45/50 bear call credit spread for $.55/share. 6/4: Closing at $.45/share"
},
{
"id": 89,
"type": "message",
"date": "2020-06-04T06:59:55",
"text": ".40"
},
{
"id": 90,
"type": "message",
"date": "2020-06-04T07:03:12",
"text": "ADJUSTMENT: 6/3: WYNN – Shorted Jun (6/12) $80/75 bull put credit spread for $.51/share. 6/4: Move Stop $91.68"
},
{
"id": 91,
"type": "message",
"date": "2020-06-04T07:16:39",
"photo": "(File not included. Change data exporting settings to download.)",
"width": 581,
"height": 442,
"text": "MU - shorting Jun (6/12) 48/44 put spread $.50/share"
},
{
"id": 92,
"type": "message",
"date": "2020-06-04T07:17:23",
"text": ".48 ok, add on pullback"
},
{
"id": 93,
"type": "message",
"date": "2020-06-04T07:21:27",
"text": "ADJUSTMENT: 5/27: AMD – Shorted Jun (6/5) $56/58 bear call credit spread for $.21/share. 6/4: Mid-point to close is $.06/share, move Stop $53.83"
},
{
"id": 94,
"type": "message",
"date": "2020-06-04T07:25:55",
"text": "ADJUSTMENT: 6/2: GOOGL - Shorted Jun (6/5) $1400/1390 put spread for $.90/share. 6/4: Mid-point to close is $.40/share, move Stop $1429"
},
{
"id": 95,
"type": "message",
"date": "2020-06-04T07:28:20",
"text": "6/3: MU - Shorted Jun (6/12) 48/44 put spread for $.48/share. +WRB Breakout daily. Stop $48.58"
},
{
"id": 96,
"type": "message",
"date": "2020-06-04T07:42:22",
"text": "ADJUSTMENT: 6/3: DAL - Shorted Jun (6/12) 25/23 put spread for $.25/share. Breakout hourly. Stop $25.07. 6/4: Closing into strength at $.06/share, nice trade"
},
{
"id": 97,
"type": "message",
"date": "2020-06-04T07:45:19",
"text": "ADJUSTMENT: 6/3: UAL – Shorted Jun (6/12) $29/26 bull put credit spread for $.30/share. 6/4: Close half at $.10/share for 2/3 max profit in 1 day, move Stop $34.08"
},
{
"id": 98,
"type": "message",
"date": "2020-06-04T07:48:23",
"photo": "(File not included. Change data exporting settings to download.)",
"width": 616,
"height": 796,
"text": "ZM - shorting 1 DTE 225/235 call spread for .85/share, stop highs"
},
{
"id": 99,
"type": "message",
"date": "2020-06-04T07:48:28",
"text": ".80"
},
{
"id": 100,
"type": "message",
"date": "2020-06-04T07:50:02",
"text": "6/3: ZM - Shorted Jun (6/5) $225/235 call spread for .85/share. Climactic daily, breakdown 15-Min. Stop $224.62"
},
{
"id": 101,
"type": "message",
"date": "2020-06-04T11:25:44",
"text": "ADJUSTMENT: 6/3: LYFT - Shorted Jun (6/12) $31.5/28.5 bull put credit spread for $.29/share. 6/4: Mid-point to close is $.12/share, bid $.05/share to close, move Stop $34.08"
},
{
"id": 102,
"type": "message",
"date": "2020-06-04T11:30:03",
"text": "ADJUSTMENT: 6/3: ZM - Shorted Jun (6/5) $225/235 call spread for .85/share. 6/4: Mid-point to close is $.35/share, bid $.05/share to close, move Stop tighter of breakeven or $223"
},
{
"id": 103,
"type": "message",
"date": "2020-06-04T11:39:01",
"photo": "(File not included. Change data exporting settings to download.)",
"width": 591,
"height": 800,
"text": "6/4: SPY – If it closes weak, consider shorting Jun (6/5) $313/316 bear call credit spread for a limit of $.60/share (currently $.66/share). Extended and Topping Tail daily, LL/LH hourly. Stop $313.23"
},
{
"id": 104,
"type": "message",
"date": "2020-06-04T11:45:13",
"photo": "(File not included. Change data exporting settings to download.)",
"width": 581,
"height": 442,
"text": "6/4: RAD - Shorting Jun (6/12) $13/11 bull put credit spread for $.34/share. +WRB Breakout daily. Stop $12.98"
},
{
"id": 105,
"type": "message",
"date": "2020-06-04T12:10:20",
"photo": "(File not included. Change data exporting settings to download.)",
"width": 608,
"height": 805,
"text": "6/4: BA – Consider shorting Jun (6/5) $195/205 bear call credit spread for $.50/share. Extended daily, breaking down 15-Min. Stop $191 for now"
},
{
"id": 106,
"type": "message",
"date": "2020-06-04T12:24:55",
"photo": "(File not included. Change data exporting settings to download.)",
"width": 581,
"height": 442,
"text": "6/4: WMT – Consider shorting Jun (6/12) $125/129 bear call credit spread for $.45/share. Breakdown daily. Stop $125.02"
},
{
"id": 107,
"type": "message",
"date": "2020-06-04T12:54:27",
"text": "6/4: SPY – Consider shorting Jun (6/5) $313/316 bear call credit spread for $.42/share. Extended and Topping Tail daily, LL/LH hourly. Stop $313.23"
},
{
"id": 108,
"type": "message",
"date": "2020-06-04T16:21:24",
"photo": "(File not included. Change data exporting settings to download.)",
"width": 581,
"height": 442,
"text": "6/5: AMD – Under $52.00, shorting Jun (6/12) $55/60 bear call credit spread for $.47/share (closed at $.52/share). Breakdown daily, relative weakness to SMH. Stop $54.32"
},
{
"id": 109,
"type": "message",
"date": "2020-06-05T05:02:32",
"text": "ADJUSTMENT: 6/4: BA – Shorted Jun (6/5) $195/205 bear call credit spread for $.50/share. 6/5: Move Stop 30-Min. high for now."
},
{
"id": 110,
"type": "message",
"date": "2020-06-05T05:04:13",
"text": "ADJUSTMENT: 6/4: BA – Sold Jun (6/12) $144/134 for $.75/share to increase total premium to $2.04/share. 6/4: Closed half at $.20/share. 6/5: Close back half 5-Min. low or bid 5 cents"
},
{
"id": 111,
"type": "message",
"date": "2020-06-05T05:05:41",
"text": "ADJUSTMENT: 6/4: SPY – Shorted Jun (6/5) $313/316 bear call credit spread for $.42/share. 6/5: Move Stop 30-Min. high for now (we will monitor to cover half quicker and/or legging into iron condor)"
},
{
"id": 112,
"type": "message",
"date": "2020-06-05T05:07:06",
"text": "ADJUSTMENT: 6/3: UAL – Shorted Jun (6/12) $29/26 bull put credit spread for $.30/share. 6/4: Closed half at $.10/share for 2/3 max profit in 1 day. 6/5: Close under 5-Min. low, bid 2 cents"
},
{
"id": 113,
"type": "message",
"date": "2020-06-05T05:09:05",
"text": "ADJUSTMENT: 6/1: RCL – Shorted Jun (6/5) $49/47 bull put credit spread for $.21/share. 6/5: Close half under 5-Min. low, bid 2 cents. Move Stop $55.57"
},
{
"id": 114,
"type": "message",
"date": "2020-06-05T06:38:07",
"text": "ADJUSTMENT: 6/3: ZM - Shorted Jun (6/5) $225/235 call spread for .85/share. 6/5: You can close $225 short call for 5 cents, or move Stop $213"
},
{
"id": 115,
"type": "message",
"date": "2020-06-05T06:38:56",
"text": "close so no post-market risk"
},
{
"id": 116,
"type": "message",
"date": "2020-06-05T06:52:44",
"photo": "(File not included. Change data exporting settings to download.)",
"width": 611,
"height": 807,
"text": "6/5: GRUB – Over $60.12, shorting Jun (6/12) $55/52.5 put spread for $.40/share. Breakout over inverse head and shoulders daily, +123 15-Min. Stop $55.78"
},
{
"id": 117,
"type": "message",
"date": "2020-06-05T07:10:12",
"text": "on BA call spread, you can stop high if like, but we are going to give a bit more time to see if pulls in"
},
{
"id": 118,
"type": "message",
"date": "2020-06-05T07:26:33",
"text": "ADJUSTMENT: 6/4: MU - Shorted Jun (6/12) 48/44 put spread for $.48/share. 6/5: Close half at $.11/share, move Stop $52.58"
},
{
"id": 119,
"type": "message",
"date": "2020-06-05T07:27:37",
"text": ".12 ok"
},
{
"id": 120,
"type": "message",
"date": "2020-06-05T12:12:19",
"text": "ADJUSTMENT: 6/4: BA – Shorted Jun (6/5) $195/205 bear call credit spread for $.50/share. 6/5: Shorting Jun (6/12) $220/230 bear call credit spread for $1.50/share to increase total credit to $2.00/share (Climactic Sell Setup and long legged doji, far from 20-MA), stop $219.12. Will advise on closing 6/5 call spread into close at hopefully better prices"
},
{
"id": 121,
"type": "message",
"date": "2020-06-05T12:14:42",
"text": "ADJUSTMENT: 6/4: RAD - Shorting Jun (6/12) $13/11 bull put credit spread for $.34/share. +WRB Breakout daily. Stop $12.98. NO FILL, HOLD OFF"
},
{
"id": 122,
"type": "message",
"date": "2020-06-05T12:35:07",
"text": "ADJUSTMENT: 6/4: MU - Shorted Jun (6/12) 48/44 put spread for $.48/share. 6/5: Closed half at $.12/share. Let’s close back half 7 cents to eliminate 7 days’ risk"
},
{
"id": 123,
"type": "message",
"date": "2020-06-05T12:46:37",
"photo": "(File not included. Change data exporting settings to download.)",
"width": 585,
"height": 343,
"text": "BA - on 6/5 call spread, move stop 204.55 and close into weakness into close"
},
{
"id": 124,
"type": "message",
"date": "2020-06-05T12:53:04",
"text": "ADJUSTMENT: 6/4: WMT – Shorted Jun (6/12) $125/129 bear call credit spread for $.45/share. 6/5: Mid-point to close is $.19/share, bid $.05/share to close, move Stop tighter of breakeven or $123.92"
},
{
"id": 125,
"type": "message",
"date": "2020-06-05T12:54:51",
"text": "ADJUSTMENT: 6/3: WYNN – Shorted Jun (6/12) $80/75 bull put credit spread for $.51/share. 6/5: Closing to book gains (current mid-point 2 cents)"
},
{
"id": 126,
"type": "message",
"date": "2020-06-05T12:58:11",
"text": "COST - 6/5: Closing put spread $.31/share to book profits"
},
{
"id": 127,
"type": "message",
"date": "2020-06-08T04:18:19",
"text": "ADJUSTMENT: 6/8: JETS – Under 30-Min. low, consider shorting Jun (6/12) $23.5 calls for a limit of $.40/share. -WRB Gap and Crap from Climactic Sell Setup daily. Stop $22.12. HOLD OFF BECAUSE OF BIG GAP"
},
{
"id": 128,
"type": "message",
"date": "2020-06-08T05:58:07",
"text": "ADJUSTMENT: 6/5: BA – Shorted Jun (6/12) $220/230 bear call credit spread for $1.50/share to increase total credit to $2.00/share (Climactic Sell Setup and long legged doji, far from 20-MA). 6/8: With +Gap, moving stop 30-Min. high for now"
},
{
"id": 129,
"type": "message",
"date": "2020-06-08T06:56:23",
"text": "closing GRUB p/s $.85, bear action today"
},
{
"id": 130,
"type": "message",
"date": "2020-06-08T07:04:52",
"text": "ADJUSTMENT: 6/5: BA – Shorted Jun (6/12) $220/230 bear call credit spread for $1.50/share to increase total credit to $2.00/share (Climactic Sell Setup and long legged doji, far from 20-MA). 6/8: Move stop $230.02 for half"
},
{
"id": 131,
"type": "message",
"date": "2020-06-08T07:08:54",
"photo": "(File not included. Change data exporting settings to download.)",
"width": 605,
"height": 805,
"text": "SPY - shorting Jun (6/8) $322/326 call spread for $.25/share. Extended daily, breaking down 15-Min. Stop 321.42"
},
{
"id": 132,
"type": "message",
"date": "2020-06-08T07:13:43",
"photo": "(File not included. Change data exporting settings to download.)",
"width": 581,
"height": 442,
"text": "BYND - cancel call spread, now watching for put spread"
},
{
"id": 133,
"type": "message",
"date": "2020-06-08T07:43:15",
"photo": "(File not included. Change data exporting settings to download.)",
"width": 581,
"height": 442,
"text": "BYND - selling 130/125 put spread for $.$53.share"
},
{
"id": 134,
"type": "message",
"date": "2020-06-08T07:45:36",
"text": "6/8: BYND – Shorted Jun (6/12) $130/125 bull put credit spread for $.53/share. Breakout of inverse head and shoulders daily. Stop $131.26"
},
{
"id": 135,
"type": "message",
"date": "2020-06-08T07:48:53",
"text": "ADJUSTMENT: 6/4: WMT – Shorted Jun (6/12) $125/129 bear call credit spread for $.45/share. 6/8: Mid-point to close is $.13/share, bid $.05/share to close, move Stop $121.52"
},
{
"id": 136,
"type": "message",
"date": "2020-06-08T07:59:02",
"photo": "(File not included. Change data exporting settings to download.)",
"width": 615,
"height": 797,
"text": "ADJUSTMENT: 6/8: JETS – Under $21.10, consider shorting Jun (6/12) $23.5 calls for $.35/share. -WRB Gap and Crap from Climactic Sell Setup daily, sell setup on 5-Min. chart. Stop $22.12."
},
{
"id": 138,
"type": "message",
"date": "2020-06-08T11:35:35",
"text": "ADJUSTMENT: 6/8: BYND – Shorted Jun (6/12) $130/125 bull put credit spread for $.53/share. 6/8: Cover half at $.13/share for nice gain in one day, move Stop under 15-min. bar’s low to book gains since any pivot stop too far away"
},
{
"id": 139,
"type": "message",
"date": "2020-06-08T11:54:40",
"photo": "(File not included. Change data exporting settings to download.)",
"width": 581,
"height": 442,
"text": "6/8: AMZN - selling Jun (6/12) 2430/2520 put spread for $.95/share. Breakout daily. Stop $2437"
},
{
"id": 140,
"type": "message",
"date": "2020-06-08T11:58:21",
"text": "Jun (6/12) 2430/2420"
},
{
"id": 141,
"type": "message",
"date": "2020-06-08T12:11:46",
"text": "BYND put spread - closing back half, nice trade"
},
{