-
Notifications
You must be signed in to change notification settings - Fork 45
/
nq-future
1482 lines (1188 loc) · 58.7 KB
/
nq-future
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
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/
// © binancash
//@version=5
indicator("Snag - NQ Auto Trade Futures", overlay=true, max_labels_count=500)
pctHigh = input.float(title='Highest %', defval=10.0)
pctLow = input.float(title='Lowest %', defval=-8.0)
input_in = input.float(title='Input In Point', defval=15.0)
input_out = input.float(title='Input Out Point', defval=12.0)
show_table = input.bool(title='Show Table', defval=true)
only_show_gain = input.bool(title='Only Show Gain', defval=true)
show_loss_gain = input.bool(title='Show Gain/Loss', defval=false)
f_RoundUp(number, decimals=0) =>
factor = math.pow(10, decimals)
math.ceil(number * factor) / factor
f_nDecimals(_in) =>
n = int(na), s = str.tostring(_in), p = str.pos(s, ".")
n := na(str.tonumber(s)) ? int(na) : na(p) ? 0 :
str.length(str.substring(s, p + 1))
_n = f_nDecimals(close)
// Trend Up Strong
// Close Cross Up EMA 13, or Close Cross Up EMA 50 or Close Cross Up EMA 200
// Mark as Begin Up Trend
// Wait for EMA 13 Cross Up EMA 48 🡪 Confirm Strong Uptrend 🡪 BUY
// EMA 48 CROSS UP EMA 200 🡪 STRONGER UPTREND
// Trend Down Strong
// Close Cross Down EMA 13, or Close Cross Down EMA 50 or Close Cross Down EMA 200
// Mark as Begin Down Trend
// Wait for EMA 13 Cross Down EMA 48 🡪 Confirm Strong Downtrend 🡪 SELL
// EMA 48 CROSS DOWN EMA 200 🡪 STRONGER DOWNTREND
wma13 = ta.wma(close, 13)
plot(wma13, title="WMA13", color=color.blue)
wma48 = ta.wma(close, 48)
plot(wma48, title="WMA48", color=color.yellow)
wma200 = ta.wma(close, 200)
plot(wma200, title="WMA200", color=color.white)
crossUpWMA13 = ta.crossover(close, wma13)
crossDownWMA13 = ta.crossunder(close, wma13)
crossUpWMA48 = ta.crossover(close, wma48)
crossDownWMA48 = ta.crossunder(close, wma48)
crossUpWMA200 = ta.crossover(close, wma200)
crossDownWMA200 = ta.crossunder(close, wma200)
crossUpWMA13_48 = ta.crossover(wma13, wma48)
crossDownWMA13_48 = ta.crossunder(wma13, wma48)
crossUpWMA48_200 = ta.crossover(wma48, wma200)
crossDownWMA48_200 = ta.crossunder(wma48, wma200)
var price_wmacrossup_arr = array.new_float()
var price_wmacrossdown_arr = array.new_float()
if crossUpWMA48_200
price_wmacrossdown_arr := array.new_float()
array.push(price_wmacrossup_arr, close)
else if crossDownWMA48_200
price_wmacrossup_arr := array.new_float()
array.push(price_wmacrossdown_arr, close)
var int crossdown_bar_13_48 = 0
var int crossdown_bar_48_200 = 0
var int crossup_bar_13_48 = 0
var int crossup_bar_48_200 = 0
if crossDownWMA13_48
crossdown_bar_13_48 := bar_index
crossup_bar_13_48 := 0
if crossUpWMA13_48
crossup_bar_13_48 := bar_index
crossdown_bar_13_48 := 0
if crossDownWMA48_200
crossdown_bar_48_200 := bar_index
crossup_bar_48_200 := 0
if crossUpWMA48_200
crossdown_bar_48_200 := 0
crossup_bar_48_200 := bar_index
var bool is_big_put = false
var bool is_big_call = false
if crossdown_bar_48_200 and crossdown_bar_13_48
if crossdown_bar_13_48 < crossdown_bar_48_200
label.new(crossdown_bar_48_200, wma48, text=str.format("{0}", 'BIG PUT'), textcolor=color.white, color=color.red, size=size.normal, style=label.style_triangledown)
label.new(crossdown_bar_48_200, wma13, text=str.format("{0}", 'BIG PUT'), textcolor=color.white, color=color.red, size=size.normal, style=label.style_triangledown)
crossdown_bar_13_48 := 0
crossdown_bar_48_200 := 0
is_big_put := true
is_big_call := false
else
label.new(crossdown_bar_13_48, wma48, text=str.format("{0}", 'BIG PUT'), textcolor=color.white, color=color.red, size=size.normal, style=label.style_triangledown)
label.new(crossdown_bar_13_48, wma13, text=str.format("{0}", 'BIG PUT'), textcolor=color.white, color=color.red, size=size.normal, style=label.style_triangledown)
crossdown_bar_13_48 := 0
crossdown_bar_48_200 := 0
is_big_put := true
is_big_call := false
if crossup_bar_48_200 and crossup_bar_13_48
if crossup_bar_13_48 < crossup_bar_48_200
label.new(crossup_bar_48_200, wma48, text=str.format("{0}", 'BIG CALL'), textcolor=color.white, color=color.green, size=size.normal, style=label.style_triangleup)
label.new(crossup_bar_48_200, wma13, text=str.format("{0}", 'BIG CALL'), textcolor=color.white, color=color.green, size=size.normal, style=label.style_triangleup)
crossup_bar_13_48 := 0
crossup_bar_48_200 := 0
is_big_put := false
is_big_call := true
else
label.new(crossup_bar_13_48, wma48, text=str.format("{0}", 'BIG CALL'), textcolor=color.white, color=color.green, size=size.normal, style=label.style_triangleup)
label.new(crossup_bar_13_48, wma13, text=str.format("{0}", 'BIG CALL'), textcolor=color.white, color=color.green, size=size.normal, style=label.style_triangleup)
crossup_bar_13_48 := 0
crossup_bar_48_200 := 0
is_big_put := false
is_big_call := true
//price_up = 0.0
//price_down = 0.0
//if array.size(price_wmacrossup_arr) > 0
// price_up := array.get(price_wmacrossup_arr, array.size(price_wmacrossup_arr)-1)
//else if array.size(price_wmacrossdown_arr) > 0
// price_down := array.get(price_wmacrossdown_arr, array.size(price_wmacrossdown_arr)-1)
var bool isUpTrend = false
var bool isDownTrend = false
if crossUpWMA13 and isUpTrend == false
isUpTrend := true
isDownTrend := false
else if crossUpWMA48 and isUpTrend == false
isUpTrend := true
isDownTrend := false
else if crossUpWMA200 and isUpTrend == false
isUpTrend := true
isDownTrend := false
if crossDownWMA13 and isDownTrend == false
isUpTrend := false
isDownTrend := true
else if crossDownWMA48 and isDownTrend == false
isUpTrend := false
isDownTrend := true
else if crossDownWMA200 and isDownTrend == false
isUpTrend := false
isDownTrend := true
var int trendUp = 0
var int trendDown = 0
txtMarkTrend = ''
txtOrder = 'N/A'
if isUpTrend
if crossUpWMA13_48
trendUp := 1
trendDown := 0
if crossUpWMA48_200
trendUp := 2
trendDown := 0
if isDownTrend
if crossDownWMA13_48
trendUp := 0
trendDown := 1
if crossDownWMA48_200
trendUp := 0
trendDown := 2
if isUpTrend
txtMarkTrend := 'Begin Up Trend'
if trendUp == 1
txtMarkTrend := 'Confirm Strong Uptrend'
txtOrder := 'BUY'
else if trendUp == 2
txtMarkTrend := 'STRONGER UPTREND'
txtOrder := 'BUY'
else if isDownTrend
txtMarkTrend := 'Begin Down Trend'
if trendDown == 1
txtMarkTrend := 'Confirm Strong Downtrend'
txtOrder := 'SELL'
else if trendDown == 2
txtMarkTrend := 'STRONGER DOWNTREND'
txtOrder := 'SELL'
// setting % period
pctTop = 5.0
pctBottom = -5.0
pointReverse = 30.0
if str.format("{0}", timeframe.period) == '5'
pctTop := 2.5
pctBottom := -2.5
if syminfo.ticker == 'NQ1!'
pointReverse := 150.0
else
pointReverse := 30.0
else if str.format("{0}", timeframe.period) == '15'
if syminfo.ticker == 'NQ1!'
pointReverse := 250.0
else
pointReverse := 75.0
else if str.format("{0}", timeframe.period) == '180'
pctTop := 10.0
pctBottom := -10.0
else if str.format("{0}", timeframe.period) == 'D'
pctTop := 15.0
pctBottom := -15.0
txtBottom = ''
txtTop = ''
is_bottom_wma200 = false
is_top_wma200 = false
pct_low_wma200 = 0.0
pct_high_wma200 = 0.0
if low < wma200
pct_low_wma200 := f_RoundUp((low - wma200)/wma200*100, 2)
if pct_low_wma200 <= pctBottom
txtBottom := 'BOTTOM'
is_bottom_wma200 := true
else if high > wma200
pct_high_wma200 := f_RoundUp((high - wma200)/wma200*100, 2)
if pct_high_wma200 >= pctTop
txtTop := 'TOP'
is_top_wma200 := true
// Price away logic
isReverse = 0
if close > wma200 and close - pointReverse > wma200
isReverse := 1
else if close < wma200 and close + pointReverse < wma200
isReverse := 2
///////////////////////////////////////////////////////////////////////////////
// draw line START
var bottom_array = array.new_float()
if isReverse == 2 and -1 * pointReverse >= close - wma200
if array.size(bottom_array) == 0
array.push(bottom_array, close)
else
bottom_array := array.new_float()
// draw line bottom
if array.size(bottom_array) > 0
bottom_close = array.get(bottom_array, array.size(bottom_array)-1)
line.new(bar_index - 30, bottom_close, bar_index, bottom_close, width = 1)
var top_array = array.new_float()
if isReverse == 1 and pointReverse <= close - wma200
if array.size(top_array) == 0
array.push(top_array, close)
else
top_array := array.new_float()
// draw line top
if array.size(top_array) > 0
top_close = array.get(top_array, array.size(top_array)-1)
line.new(bar_index - 30, top_close, bar_index, top_close, width = 1, color=color.yellow)
var int count_bottom = 0
if array.size(bottom_array) == 1
count_bottom := count_bottom + 1
//label.new(bar_index[2], close, text=str.format(">>>>>>> {0}", count_top), color=color.new(color.white, 100), size=size.normal, style=label.style_label_right)
else
count_bottom := 0
is_bottom_continue = false
if count_bottom == 3
is_bottom_continue := true
plotshape(is_bottom_continue, title="Continue Bottom", style=shape.triangledown, location=location.abovebar, color=color.red, size=size.tiny)
var int count_top = 0
if array.size(top_array) == 1
count_top := count_top + 1
//label.new(bar_index[2], close, text=str.format(">>>>>>> {0}", count_top), color=color.new(color.white, 100), size=size.normal, style=label.style_label_right)
else
count_top := 0
is_top_continue = false
if count_top == 3
is_top_continue := true
plotshape(is_top_continue, title="Continue Top", style=shape.triangleup, location=location.belowbar, color=color.orange, size=size.tiny)
//alertcondition(is_bottom_continue, title='ENTER BOTTOM continue PUT', message='Enter BOTTOM continue PUT')
//alertcondition(is_top_continue, title='ENTER TOP continue CALL', message='Enter BOTTOM continue CALL')
// End Draw
///////////////////////////////////////////////////////////////////////////////
point = f_RoundUp(close - wma200, 0)
var point_arr = array.new_float()
array.push(point_arr, point)
src_1day = request.security(symbol=syminfo.tickerid, timeframe="360", expression=low, lookahead=barmerge.lookahead_on)
txt_color = color.yellow
if array.size(point_arr) > 1
pre_point = array.get(point_arr, array.size(point_arr)-2)
if point - pre_point > input_in
txt_color := color.green
else if pre_point - point > input_out
txt_color := color.red
if bar_index%2 == 0
label.new(bar_index, src_1day-0.0047*src_1day, text=str.format("{0}", point), textcolor=txt_color, color=color.new(color.black, 40), size=size.normal, style=label.style_label_down)
else
label.new(bar_index, src_1day-0.005*src_1day, text=str.format("{0}", point), textcolor=txt_color, color=color.new(color.black, 40), size=size.normal, style=label.style_label_up)
// RSI
rsi = ta.rsi(close, 9)
rsiWMA = ta.wma(rsi, 125)
cci = ta.cci(close, 10)
////////////////////////////////BEGIN SUP RES
// Time Frame 1 = TF1
TF1 = timeframe.period
stockschart = syminfo.type == 'stock'
futureschart = syminfo.type == 'futures'
indexchart = syminfo.type == 'index'
f_resInMinutes() =>
if stockschart or futureschart or indexchart
_resInMinutes = timeframe.multiplier * (timeframe.isseconds ? 1. / 60 : timeframe.isminutes ? 1. : timeframe.isdaily ? 60. * 16 : timeframe.isweekly ? 60. * 7 * 5 : timeframe.ismonthly ? 60. * 7 * 21 : na)
_resInMinutes
else
_resInMinutes = timeframe.multiplier * (timeframe.isseconds ? 1. / 60 : timeframe.isminutes ? 1. : timeframe.isdaily ? 60. * 24 : timeframe.isweekly ? 60. * 24 * 7 : timeframe.ismonthly ? 60. * 24 * 30.4375 : na)
_resInMinutes
f_tfResInMinutes(_res) =>
request.security(syminfo.tickerid, _res, f_resInMinutes())
TF1InMinutes = f_tfResInMinutes(TF1)
currentTFInMinutes = f_resInMinutes()
chartOnLowerTF1 = currentTFInMinutes <= TF1InMinutes
TF1_inH = str.tostring(TF1InMinutes / 60)
TF1_text = if stockschart or futureschart
TF1InMinutes >= 60 and TF1InMinutes < 960 ? TF1_inH + 'h' : TF1InMinutes < 60 ? TF1 + 'm' : TF1
else
TF1InMinutes >= 60 and TF1InMinutes < 1440 ? TF1_inH + 'h' : TF1InMinutes < 60 ? TF1 + 'm' : TF1
barsinTF1 = TF1InMinutes / currentTFInMinutes
TF1_bar_index = math.ceil(1 * barsinTF1)
TF1_bar_index_range = math.ceil(3 * barsinTF1)
var TF1_High_index = math.abs(ta.highestbars(high, nz(TF1_bar_index_range, 1)))[TF1_bar_index] + TF1_bar_index
var TF1_Low_index = math.abs(ta.lowestbars(low, nz(TF1_bar_index_range, 1)))[TF1_bar_index] + TF1_bar_index
if TF1_bar_index + TF1_bar_index_range > 4999
TF1_High_index := 4999
TF1_Low_index := 4999
f_tfUp(_TF_High, _TF_Vol, _TF_VolMA) =>
_TF_High[3] > _TF_High[4] and _TF_High[4] > _TF_High[5] and _TF_High[2] < _TF_High[3] and _TF_High[1] < _TF_High[2] and _TF_Vol[3] > _TF_VolMA[3]
f_tfDown(_TF_Low, _TF_Vol, _TF_VolMA) =>
_TF_Low[3] < _TF_Low[4] and _TF_Low[4] < _TF_Low[5] and _TF_Low[2] > _TF_Low[3] and _TF_Low[1] > _TF_Low[2] and _TF_Vol[3] > _TF_VolMA[3]
f_tfSources(_res, _source) =>
request.security(syminfo.tickerid, _res, _source)
// S/R = Time Frame 1 = TF1
TF1_Vol = f_tfSources(TF1, volume)
TF1_VolMA = ta.wma(TF1_Vol, 6)
TF1_High = f_tfSources(TF1, high)
TF1_Low = f_tfSources(TF1, low)
TF1_Open = f_tfSources(TF1, open)
TF1_Close = f_tfSources(TF1, close)
TF1_Up = f_tfUp(TF1_High, TF1_Vol, TF1_VolMA)
TF1_Down = f_tfDown(TF1_Low, TF1_Vol, TF1_VolMA)
TF1_CalcFractalUp() =>
TF1_FractalUp = 0.0
TF1_FractalUp := TF1_Up ? TF1_High[3] : TF1_FractalUp[1]
TF1_FractalUp
TF1_CalcFractalDown() =>
TF1_FractalDown = 0.0
TF1_FractalDown := TF1_Down ? TF1_Low[3] : TF1_FractalDown[1]
TF1_FractalDown
TF1_FractalUp = request.security(syminfo.tickerid, TF1, TF1_CalcFractalUp())
TF1_FractalDown = request.security(syminfo.tickerid, TF1, TF1_CalcFractalDown())
// Zones - Current Time Frame = Time Frame 1 = TF1
// Fractal Up Zones
TF1_CalcFractalUpZone() =>
TF1_FractalUpZone = 0.0
TF1_FractalUpZone := TF1_Up and TF1_Close[3] >= TF1_Open[3] ? TF1_Close[3] : TF1_Up and TF1_Close[3] < TF1_Open[3] ? TF1_Open[3] : TF1_FractalUpZone[1]
TF1_FractalUpZone
TF1_FractalUpZone = request.security(syminfo.tickerid, TF1, TF1_CalcFractalUpZone())
TF1_ResistanceZone = TF1_FractalUpZone
// Fractal Down Zones
TF1_CalcFractalDownZone() =>
TF1_FractalDownZone = 0.0
TF1_FractalDownZone := TF1_Down and TF1_Close[3] >= TF1_Open[3] ? TF1_Open[3] : TF1_Down and TF1_Close[3] < TF1_Open[3] ? TF1_Close[3] : TF1_FractalDownZone[1]
TF1_FractalDownZone
TF1_FractalDownZone = request.security(syminfo.tickerid, TF1, TF1_CalcFractalDownZone())
TF1_SupportZone = TF1_FractalDownZone
//////////////////////////////////END SUP RES
/////////////////////////////////BEGIN cross
bigdrop = rsi + 8 < rsi[1] and close > wma48
plotshape(bigdrop, title="Big Drop", style=shape.square, location=location.abovebar, color=color.white, size=size.tiny)
bottomsupport = close > TF1_SupportZone[0] and close > close[1] and rsi > rsi[1] + 10
plotshape(bottomsupport, title="Big Bottom", style=shape.xcross, location=location.belowbar, color=color.yellow, size=size.tiny)
fast_length = 12
slow_length = 26
signal_length = 9
fast_ma = ta.ema(close, fast_length)
slow_ma = ta.ema(close, slow_length)
macd = fast_ma - slow_ma
signal = ta.ema(macd, signal_length)
macd_crossover = ta.crossover(macd, -40)
var bool is_macd_corssover = false
var bool is_macd_corssunder = false
if macd_crossover
is_macd_corssover := true
is_macd_corssunder := false
macd_crossunder = ta.crossunder(macd, 55)
if macd_crossunder
is_macd_corssover := false
is_macd_corssunder := true
highest = ta.highest(high, 48)
pct_low = f_RoundUp((close - highest)/highest*100, 2)
var bool is_lowest = false
var bool is_highest = false
if pct_low <= pctLow and close < wma200
pct_lowest = f_RoundUp((close - wma200)/wma200*100, 2)
if pct_lowest <= pctBottom and is_macd_corssover
is_lowest := true
is_highest := false
if close > wma200
is_lowest := false
is_bottom = false
if is_lowest and bottomsupport
is_bottom := true
plotshape(is_bottom, title="Bottom", style=shape.diamond, location=location.belowbar, color=color.yellow, size=size.tiny)
lowest = ta.lowest(low, 48)
pct_high = f_RoundUp((close - lowest)/lowest*100, 2)
if pct_high >= pctHigh and close > wma200
pct_highest = f_RoundUp((close - wma200)/wma200*100, 2)
if pct_highest >= pctTop and is_macd_corssunder
is_highest := true
is_lowest := false
//if close < wma200
// is_highest := false
is_top = false
if is_highest and bigdrop
is_top := true
plotshape(is_top, title="TOP", style=shape.diamond, location=location.abovebar, color=color.white, size=size.tiny)
point1 = 0.0
if array.size(point_arr) > 1
point1 := f_RoundUp(array.get(point_arr, array.size(point_arr)-2), 0)
point2 = 0.0
if array.size(point_arr) > 2
point2 := f_RoundUp(array.get(point_arr, array.size(point_arr)-3), 0)
is_in = false
is_out = false
var bool signal_in = false
var bool signal_out = false
var in_arr = array.new_int()
var out_arr = array.new_int()
m = minute(timenow, "GMT-7")
s = second(timenow, "GMT-7")
last_second = int(m)%5 == 4 and int(s) >= 50 ? true : false
var float price_in = 0.0
var int time_in = 0
var float price_out = 0.0
var int time_out = 0
var float stoploss_in = 0.0
var float stoploss_out = 0.0
var gain_in_arr = array.new_string()
var float max_gain_in = 0.0
var int max_time_in = 0
var float max_price_in = 0.0
var gain_out_arr = array.new_string()
var float max_gain_out = 0.0
var int max_time_out = 0
var float max_price_out = 0.0
var float call_gain = 0.0
var float put_gain = 0.0
var float call_price_exit = 0.0
var int call_time_exit = 0
var float put_price_exit = 0.0
var int put_time_exit = 0
if hour(time, "GMT-7") == 0 and minute(time, "GMT-7") == 0 or hour(time, "GMT-7") == 6 and minute(time, "GMT-7") == 30
gain_in_arr := array.new_string()
gain_out_arr := array.new_string()
if point - point1 > input_in or point - point2 > input_in
is_in := true
signal_in := true
out_arr := array.new_int()
if price_out != 0.0
call_price_exit := 0.0
call_time_exit := 0
put_price_exit := close
put_time_exit := time
if max_gain_out != 0.0
put_gain := price_out - close
h1 = hour(time_out, "GMT-7")
str_h1 = str.format("{0}",h1)
if str.length(str_h1) == 1
str_h1 := str.format("0{0}", h1)
m1 = minute(time_out, "GMT-7")
str_m1 = str.format("{0}",m1)
if str.length(str_m1) == 1
str_m1 := str.format("0{0}", m1)
h2 = hour(max_time_out, "GMT-7")
str_h2 = str.format("{0}",h2)
if str.length(str_h2) == 1
str_h2 := str.format("0{0}", h2)
m2 = minute(max_time_out, "GMT-7")
str_m2 = str.format("{0}",m2)
if str.length(str_m2) == 1
str_m2 := str.format("0{0}", m2)
h21 = hour(put_time_exit, "GMT-7")
str_h21 = str.format("{0}",h21)
if str.length(str_h21) == 1
str_h21 := str.format("0{0}", h21)
m21 = minute(put_time_exit, "GMT-7")
str_m21 = str.format("{0}",m21)
if str.length(str_m21) == 1
str_m21 := str.format("0{0}", m21)
str_out = str.format("{0}:{1} ${2}", str_h1, str_m1, price_out)
str_max_out = str.format("{0}:{1} ${2}\nExp G/L: {3}pts",str_h2, str_m2, max_price_out, max_gain_out)
str_gain_loss_out = str.format("{0}:{1} ${2}\nG/L: {3}pts", str_h21, str_m21, put_price_exit, price_out - put_price_exit)
array.push(gain_out_arr, str.format("P: {0}\nEX: {1}\nExp: {2}", str_out, str_gain_loss_out, str_max_out))
if array.size(gain_out_arr) > 12
array.remove(gain_out_arr, 0)
max_gain_out := 0.0
put_price_exit := 0.0
out_arr := array.new_int()
call_gain := 0.0
max_gain_out := 0.0
max_time_out := 0
max_price_out := 0.0
time_out := 0
price_out := 0.0
stoploss_out := 0.0
if price_in == 0.0
price_in := close
time_in := time
array.push(in_arr, time)
else if point1 - point > input_out or point2 - point > input_out
is_out := true
signal_out := true
in_arr := array.new_int()
if price_in != 0.0 and call_price_exit == 0.0
call_price_exit := close
call_time_exit := time
put_price_exit := 0.0
put_time_exit := 0
if max_gain_in != 0.0
call_gain := close - price_in
h3 = hour(time_in, "GMT-7")
str_h3 = str.format("{0}",h3)
if str.length(str_h3) == 1
str_h3 := str.format("0{0}", h3)
m3 = minute(time_in, "GMT-7")
str_m3 = str.format("{0}",m3)
if str.length(str_m3) == 1
str_m3 := str.format("0{0}", m3)
h4 = hour(max_time_in, "GMT-7")
str_h4 = str.format("{0}",h4)
if str.length(str_h4) == 1
str_h4 := str.format("0{0}", h4)
m4 = minute(max_time_in, "GMT-7")
str_m4 = str.format("{0}",m4)
if str.length(str_m4) == 1
str_m4 := str.format("0{0}", m4)
h41 = hour(call_time_exit, "GMT-7")
str_h41 = str.format("{0}",h41)
if str.length(str_h41) == 1
str_h41 := str.format("0{0}", h41)
m41 = minute(call_time_exit, "GMT-7")
str_m41 = str.format("{0}",m41)
if str.length(str_m41) == 1
str_m41 := str.format("0{0}", m41)
str_in2 = str.format("{0}:{1} ${2}", str_h3, str_m3, price_in)
str_max_in2 = str.format("{0}:{1} ${2}\nExp G/L: {3}pts",str_h4, str_m4, max_price_in, max_gain_in)
str_gain_loss_in2 = str.format("{0}:{1} ${2}\nG/L: {3}pts", str_h41, str_m41, call_price_exit, call_price_exit - price_in)
array.push(gain_in_arr, str.format("C: {0}\nEX: {1}\nExp: {2}", str_in2, str_gain_loss_in2, str_max_in2))
if array.size(gain_in_arr) > 12
array.remove(gain_in_arr, 0)
max_gain_in := 0.0
call_price_exit := 0.0
in_arr := array.new_int()
put_gain := 0.0
max_gain_in := 0.0
max_time_in := 0
max_price_in := 0.0
time_in := 0
price_in := 0.0
stoploss_in := 0.0
if price_out == 0.0
price_out := close
time_out := time
//stoploss_out := close + 10
array.push(out_arr, time)
// trailing stop
if price_in > 0.0
if max_gain_in < close - price_in
max_price_in := close
max_gain_in := close - price_in
max_time_in := time
if close >= price_in
stoploss_in := close - 10
if price_out > 0.0
if max_gain_out < price_out - close
max_price_out := close
max_gain_out := price_out - close
max_time_out := time
if close <= price_out
stoploss_out := close + 10
// stop loss CALL
if stoploss_in != 0.0 and close <= stoploss_in
if price_in != 0.0 and put_price_exit == 0.0
call_price_exit := close
call_time_exit := time
put_price_exit := 0.0
put_time_exit := 0
if max_gain_in != 0.0
call_gain := close - price_in
h5 = hour(time_in, "GMT-7")
str_h5 = str.format("{0}",h5)
if str.length(str_h5) == 1
str_h5 := str.format("0{0}", h5)
m5 = minute(time_in, "GMT-7")
str_m5 = str.format("{0}",m5)
if str.length(str_m5) == 1
str_m5 := str.format("0{0}", m5)
h6 = hour(max_time_in, "GMT-7")
str_h6 = str.format("{0}",h6)
if str.length(str_h6) == 1
str_h6 := str.format("0{0}", h6)
m6 = minute(max_time_in, "GMT-7")
str_m6 = str.format("{0}",m6)
if str.length(str_m6) == 1
str_m6 := str.format("0{0}", m6)
h9 = hour(call_time_exit, "GMT-7")
str_h9 = str.format("{0}",h9)
if str.length(str_h9) == 1
str_h9 := str.format("0{0}", h9)
m9 = minute(call_time_exit, "GMT-7")
str_m9 = str.format("{0}",m9)
if str.length(str_m9) == 1
str_m9 := str.format("0{0}", m9)
str_in3 = str.format("{0}:{1} ${2}", str_h5, str_m5, price_in)
str_max_in3 = str.format("{0}:{1} ${2}\nExp G/L: {3}pts",str_h6, str_m6, max_price_in, max_gain_in)
str_gain_loss3 = str.format("{0}:{1} ${2}\nG/L: {3}pts", str_h9, str_m9, call_price_exit, call_price_exit - price_in)
array.push(gain_in_arr, str.format("C: {0}\nST: {1}\nExp: {2}", str_in3, str_gain_loss3, str_max_in3))
if array.size(gain_in_arr) > 12
array.remove(gain_in_arr, 0)
max_gain_in := 0.0
max_time_in := 0
max_price_in := 0.0
time_in := 0
price_in := 0.0
stoploss_in := 0.0
put_price_exit := 0.0
in_arr := array.new_int()
// stoploss PUT
if stoploss_out != 0.0 and close > stoploss_out
if price_out != 0.0 and put_price_exit == 0.0
call_price_exit := 0.0
call_time_exit := 0
put_price_exit := close
put_time_exit := time
if max_gain_out != 0.0
put_gain := price_out - close
h7 = hour(time_out, "GMT-7")
str_h7 = str.format("{0}",h7)
if str.length(str_h7) == 1
str_h7 := str.format("0{0}", h7)
m7 = minute(time_out, "GMT-7")
str_m7 = str.format("{0}",m7)
if str.length(str_m7) == 1
str_m7 := str.format("0{0}", m7)
h8 = hour(max_time_out, "GMT-7")
str_h8 = str.format("{0}",h8)
if str.length(str_h8) == 1
str_h8 := str.format("0{0}", h8)
m8 = minute(max_time_out, "GMT-7")
str_m8 = str.format("{0}",m8)
if str.length(str_m8) == 1
str_m8 := str.format("0{0}", m8)
h10 = hour(put_time_exit, "GMT-7")
str_h10 = str.format("{0}",h10)
if str.length(str_h10) == 1
str_h10 := str.format("0{0}", h10)
m10 = minute(put_time_exit, "GMT-7")
str_m10 = str.format("{0}",m10)
if str.length(str_m10) == 1
str_m10 := str.format("0{0}", m10)
str_out4 = str.format("{0}:{1} ${2}", str_h7, str_m7, price_out)
str_max_out4 = str.format("{0}:{1} ${2}\nExp G/L: {3}pts",str_h8, str_m8, max_price_out, max_gain_out)
str_gain_loss4 = str.format("{0}:{1} ${2}\nG/L: {3}pts", str_h10, str_m10, put_price_exit, price_out - put_price_exit)
array.push(gain_out_arr, str.format("P: {0}\nST: {1}\nExp: {2}", str_out4, str_gain_loss4, str_max_out4))
if array.size(gain_out_arr) > 12
array.remove(gain_out_arr, 0)
max_gain_out := 0.0
max_time_out := 0
max_price_out := 0.0
time_out := 0
price_out := 0.0
stoploss_out := 0.0
out_arr := array.new_int()
put_price_exit := 0.0
if array.size(in_arr) > 0
if array.size(in_arr) > 1
//label.new(bar_index, src_1day-0.008*src_1day, text=str.format("{0} {1} {2} {3}", 'I--->', array.size(in_arr), price_in, close), textcolor=color.green, color=color.new(color.black, 40), size=size.normal, style=label.style_none)
label.new(bar_index, src_1day-0.008*src_1day, text=str.format("{0}", '--->'), textcolor=color.green, color=color.new(color.black, 40), size=size.normal, style=label.style_none)
else
txt_clr = color.green
if timenow%2==0
txt_clr := color.yellow
//label.new(bar_index, src_1day-0.008*src_1day, text=str.format("{0} {1}", 'IN' ,array.size(in_arr), price_in, close), textcolor=txt_clr, color=color.new(color.black, 40), size=size.normal, style=label.style_none)
label.new(bar_index, src_1day-0.008*src_1day, text=str.format("{0}", 'IN'), textcolor=txt_clr, color=color.new(color.black, 40), size=size.normal, style=label.style_none)
if array.size(out_arr) > 0
if array.size(out_arr) > 1
//label.new(bar_index, src_1day-0.008*src_1day, text=str.format("{0} {1} {2} {3}", 'O--->', array.size(out_arr), price_out, close), textcolor=color.red, color=color.new(color.black, 20), size=size.normal, style=label.style_none)
label.new(bar_index, src_1day-0.008*src_1day, text=str.format("{0}", '--->'), textcolor=color.red, color=color.new(color.black, 20), size=size.normal, style=label.style_none)
else
txt_clr = color.green
if timenow%2==0
txt_clr := color.orange
//label.new(bar_index, src_1day-0.008*src_1day, text=str.format("{0} {1}", 'OUT', array.size(out_arr)), textcolor=txt_clr, color=color.new(color.black, 20), size=size.normal, style=label.style_none)
label.new(bar_index, src_1day-0.008*src_1day, text=str.format("{0}", 'OUT'), textcolor=txt_clr, color=color.new(color.black, 20), size=size.normal, style=label.style_none)
EMA_CHANGE_CALL = point - point1 >= input_in
EMA_CHANGE_PUT = point - point1 <= -input_out
AWAY_EMA200 = point
BIGDROP = bigdrop
BOTTOMSUPPORT = bottomsupport
var bool call_30_70 = false
if AWAY_EMA200 <= -30 and AWAY_EMA200 >= -70
call_30_70 := true
var bool put_30_70 = false
if AWAY_EMA200 >= 30 and AWAY_EMA200 <= 70
put_30_70 := true
var logic_call = 'N/A'
var logic_put = 'N/A'
logic_exit_call = 'N/A'
logic_exit_put = 'N/A'
is_call = false
is_call_logic1 = false
is_call_logic2 = false
is_call_logic3 = false
is_call_logic4 = false
is_call_logic5 = false
var float call_price = 0.0
is_exit_call = false
is_stop_loss_call = false
is_put = false
is_put_logic1 = false
is_put_logic2 = false
is_put_logic3 = false
is_put_logic4 = false
is_put_logic5 = false
var float put_price = 0.0
is_exit_put = false
is_stop_loss_put = false
if BIGDROP == false
if EMA_CHANGE_CALL == true and BOTTOMSUPPORT == true
logic_call := 'CALL case1'
label.new(bar_index, low, text=str.format("{0}", logic_call), textcolor=color.green, color=color.new(color.black, 40), size=size.normal, style=label.style_label_up)
is_call_logic1 := true
is_call := true
if call_price == 0.0
call_price := close
if AWAY_EMA200 <= -17 and AWAY_EMA200 >= -29 and EMA_CHANGE_CALL == true
logic_call := 'CALL case2'
label.new(bar_index, low, text=str.format("{0}", logic_call), textcolor=color.green, color=color.new(color.black, 40), size=size.normal, style=label.style_label_up)
is_call_logic2 := true
is_call := true
if call_price == 0.0
call_price := close
if call_30_70 and EMA_CHANGE_CALL == true
logic_call := 'CALL case3'
label.new(bar_index, low, text=str.format("{0}", logic_call), textcolor=color.green, color=color.new(color.black, 40), size=size.normal, style=label.style_label_up)
is_call_logic3 := true
is_call := true
call_30_70 := false
if call_price == 0.0
call_price := close
if point1 < 0 and point > 0 and EMA_CHANGE_CALL == true
logic_call := 'CALL case4'
label.new(bar_index, low, text=str.format("{0}", logic_call), textcolor=color.green, color=color.new(color.black, 40), size=size.normal, style=label.style_label_up)
is_call_logic4 := true
is_call := true
if call_price == 0.0
call_price := close
if logic_call != 'N/A' and (logic_call != 'CALL case3' and BIGDROP == true or point1 != 0.0 and point - point1 <= -input_out or point2 != 0.0 and point - point2 <= -input_out)
logic_exit_call := 'Exit CALL'
logic_call := 'N/A'
label.new(bar_index, high + 0.002*high, text=str.format("{0}", logic_exit_call), textcolor=color.green, color=color.new(color.black, 40), size=size.normal, style=label.style_label_down)
is_exit_call := true
if logic_call != 'N/A' and call_price != 0.0 and close <= call_price - 10
logic_exit_call := 'Stop Loss CALL 10%'
logic_call := 'N/A'
label.new(bar_index, high + 0.002*high, text=str.format("{0}", logic_exit_call), textcolor=color.green, color=color.new(color.black, 40), size=size.normal, style=label.style_label_down)
is_stop_loss_call := true
call_price := 0.0
if BOTTOMSUPPORT == false
if is_exit_call == true
logic_put := 'PUT case5'
label.new(bar_index, high, text=str.format("{0}", logic_put), textcolor=color.red, color=color.new(color.black, 40), size=size.normal, style=label.style_label_down)
is_put := true
is_put_logic5 := true
if put_price == 0.0
put_price := close
if logic_put != 'PUT case5'
if EMA_CHANGE_PUT == true and BIGDROP == true
logic_put := 'PUT case1'
label.new(bar_index, high, text=str.format("{0}", logic_put), textcolor=color.red, color=color.new(color.black, 40), size=size.normal, style=label.style_label_down)
is_put := true
is_put_logic1 := true
if put_price == 0.0
put_price := close
if AWAY_EMA200 >= 17 and AWAY_EMA200 <= 29 and EMA_CHANGE_PUT == true
logic_put := 'PUT case2'
label.new(bar_index, high, text=str.format("{0}", logic_put), textcolor=color.red, color=color.new(color.black, 40), size=size.normal, style=label.style_label_down)
is_put := true
is_put_logic2 := true
if put_price == 0.0
put_price := close
if put_30_70 and EMA_CHANGE_PUT == true
logic_put := 'PUT case3'
label.new(bar_index, high, text=str.format("{0}", logic_put), textcolor=color.red, color=color.new(color.black, 40), size=size.normal, style=label.style_label_down)
is_put := true
is_put_logic3 := true
if put_price == 0.0
put_price := close
put_30_70 := false
if point1 > 0 and point < 0 and EMA_CHANGE_PUT == true
logic_put := 'PUT case4'
label.new(bar_index, high, text=str.format("{0}", logic_put), textcolor=color.red, color=color.new(color.black, 40), size=size.normal, style=label.style_label_down)
is_put := true
is_put_logic4 := true
if put_price == 0.0
put_price := close
if logic_put != 'N/A' and (logic_put != 'PUT case3' and BOTTOMSUPPORT == true or point1 != 0.0 and point - point1 >= input_out or point2 != 0.0 and point - point2 >= input_out)
logic_exit_put := 'Exit PUT'
logic_put := 'N/A'
label.new(bar_index, low-0.002*low, text=str.format("{0}", logic_exit_put), textcolor=color.red, color=color.new(color.black, 40), size=size.normal, style=label.style_label_up)
is_exit_put := true
if logic_put != 'N/A' and put_price != 0.0 and close >= put_price + 10
logic_exit_put := 'Stop loss PUT 10%'
logic_put := 'N/A'
label.new(bar_index, low-0.002*low, text=str.format("{0}", logic_exit_put), textcolor=color.red, color=color.new(color.black, 40), size=size.normal, style=label.style_label_up)
is_stop_loss_put := true
is_in_ok = false
is_out_ok = false
if m == 4 or m == 9 or m == 14 or m == 19 or m == 24 or m == 29 or m == 34 or m == 39 or m == 44 or m == 49 or m == 54 or m == 59
if signal_in
is_in_ok := true
signal_out := false
alert("In NQ on price " + str.tostring(close) + " - " + logic_call, alert.freq_all)
//label.new(bar_index, src_1day-0.0075*src_1day, text=str.format("{0}", 'ENTER'), textcolor=color.green, color=color.new(color.black, 40), size=size.normal, style=label.style_none)
if signal_out
signal_in := false
is_out_ok := true
alert("Out NQ on price " + str.tostring(close) + " - " + logic_put, alert.freq_all)
//label.new(bar_index, src_1day-0.0075*src_1day, text=str.format("{0}", 'GETOUT'), textcolor=color.red, color=color.new(color.black, 40), size=size.normal, style=label.style_none)
isToday = false
if dayofmonth(timenow) == dayofmonth(time)
isToday := true
low_1day = request.security(symbol=syminfo.tickerid, timeframe="D", expression=low, lookahead=barmerge.lookahead_on)
high_1day = request.security(symbol=syminfo.tickerid, timeframe="D", expression=high, lookahead=barmerge.lookahead_on)
mid_day = f_RoundUp((low_1day+high_1day)/2, 0)
var int eth_idx = 0
var int rth_idx = 0
var float pre_high = 0.0
if dayofmonth(time) < dayofmonth(timenow) - 1
pre_high := 0.0
if hour == 15 and minute == 0
eth_idx := bar_index
if hour == 6 and minute == 30
rth_idx := bar_index
if hour == 15 and minute >= 0 or hour > 15
if pre_high < high
pre_high := high
if (hour < 6 or hour == 6 and minute <= 30) and isToday
if pre_high < high