-
Notifications
You must be signed in to change notification settings - Fork 1
/
template_bollinger.tpl
1723 lines (1587 loc) · 23.7 KB
/
template_bollinger.tpl
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
<chart>
id=132822938971760870
symbol=USDJPY
description=US Dollar vs Japanese Yen
period_type=1
period_size=1
digits=3
tick_size=0.000000
position_time=0
scale_fix=0
scale_fixed_min=113.340000
scale_fixed_max=115.560000
scale_fix11=0
scale_bar=0
scale_bar_val=1.000000
scale=8
mode=1
fore=0
grid=0
volume=1
scroll=0
shift=1
shift_size=15.294118
fixed_pos=0.000000
ticker=1
ohlc=0
one_click=1
one_click_btn=1
bidline=1
askline=0
lastline=0
days=1
descriptions=0
tradelines=1
tradehistory=1
window_left=0
window_top=0
window_right=0
window_bottom=0
window_type=1
floating=0
floating_left=0
floating_top=0
floating_right=0
floating_bottom=0
floating_type=1
floating_toolbar=1
floating_tbstate=
background_color=16775408
foreground_color=0
barup_color=0
bardown_color=0
bullcandle_color=16777215
bearcandle_color=0
chartline_color=0
volumes_color=3329330
grid_color=10061943
bidline_color=8036607
askline_color=255
lastline_color=49152
stops_color=255
windows_total=1
<window>
height=100.000000
objects=112
<indicator>
name=Main
path=
apply=1
show_data=1
scale_inherit=0
scale_line=0
scale_line_percent=50
scale_line_value=0.000000
scale_fix_min=0
scale_fix_min_val=0.000000
scale_fix_max=0
scale_fix_max_val=0.000000
expertmode=0
fixed_height=-1
</indicator>
<indicator>
name=Moving Average
path=
apply=1
show_data=1
scale_inherit=0
scale_line=0
scale_line_percent=50
scale_line_value=0.000000
scale_fix_min=0
scale_fix_min_val=0.000000
scale_fix_max=0
scale_fix_max_val=0.000000
expertmode=0
fixed_height=-1
<graph>
name=
draw=129
style=0
width=2
color=0
</graph>
period=200
method=1
</indicator>
<indicator>
name=Moving Average
path=
apply=1
show_data=1
scale_inherit=0
scale_line=0
scale_line_percent=50
scale_line_value=0.000000
scale_fix_min=0
scale_fix_min_val=0.000000
scale_fix_max=0
scale_fix_max_val=0.000000
expertmode=0
fixed_height=-1
<graph>
name=
draw=129
style=0
width=2
color=32768
</graph>
period=50
method=1
</indicator>
<indicator>
name=Moving Average
path=
apply=1
show_data=1
scale_inherit=0
scale_line=0
scale_line_percent=50
scale_line_value=0.000000
scale_fix_min=0
scale_fix_min_val=0.000000
scale_fix_max=0
scale_fix_max_val=0.000000
expertmode=0
fixed_height=-1
<graph>
name=
draw=129
style=0
width=2
color=255
</graph>
period=20
method=1
</indicator>
<indicator>
name=Custom Indicator
path=Scripts\AM_Session_Opens.ex5
apply=0
show_data=1
scale_inherit=0
scale_line=0
scale_line_percent=50
scale_line_value=0.000000
scale_fix_min=0
scale_fix_min_val=0.000000
scale_fix_max=0
scale_fix_max_val=0.000000
expertmode=0
fixed_height=-1
<graph>
name=
draw=0
style=0
width=1
arrow=251
color=
</graph>
<inputs>
Info= == LondonOpen , NewYorkOpen, ZeroGMTOpen Lines ==
NumberOfDays=15
LondonOpenBegin=07:00
NewYorkBegin=13:00
LondonCloseBegin=18:00
Lo_OpenLineShow=true
NY_OpenLineShow=false
ZeroGMT_OpenLineShow=false
Lo_OpenLineColor=16711680
NY_OpenLineColor=2763429
ZeroGMT_OpenLineColor=255
</inputs>
</indicator>
<indicator>
name=Custom Indicator
path=Scripts\TzPivots.ex5
apply=0
show_data=1
scale_inherit=0
scale_line=0
scale_line_percent=50
scale_line_value=0.000000
scale_fix_min=0
scale_fix_min_val=0.000000
scale_fix_max=0
scale_fix_max_val=0.000000
expertmode=0
fixed_height=-1
<graph>
name=
draw=0
style=0
width=1
arrow=251
color=
</graph>
<inputs>
LocalTimeZone=0
DestTimeZone=0
LineStyle=2
LineThickness=1
ShowComment=false
ShowHighLowOpen=false
ShowSweetSpots=false
ShowPivots=true
ShowMidPitvot=true
ShowFibos=false
ShowCamarilla=false
ShowLevelPrices=true
BarForLabels=10
VerticalTextColor=10526303
VerticalLineColor=9109504
DebugLogger=false
</inputs>
</indicator>
<indicator>
name=Bollinger Bands
path=
apply=1
show_data=1
scale_inherit=0
scale_line=0
scale_line_percent=50
scale_line_value=0.000000
scale_fix_min=0
scale_fix_min_val=0.000000
scale_fix_max=0
scale_fix_max_val=0.000000
expertmode=0
fixed_height=-1
<graph>
name=
draw=131
style=0
width=2
arrow=251
color=8036607
</graph>
<graph>
name=
draw=131
style=0
width=2
arrow=251
color=8036607
</graph>
<graph>
name=
draw=131
style=0
width=2
arrow=251
color=8036607
</graph>
period=4000
deviation=2.000000
</indicator>
<indicator>
name=Bollinger Bands
path=
apply=1
show_data=1
scale_inherit=0
scale_line=0
scale_line_percent=50
scale_line_value=0.000000
scale_fix_min=0
scale_fix_min_val=0.000000
scale_fix_max=0
scale_fix_max_val=0.000000
expertmode=0
fixed_height=-1
<graph>
name=
draw=131
style=0
width=2
color=10526303
</graph>
<graph>
name=
draw=131
style=0
width=2
color=10526303
</graph>
<graph>
name=
draw=131
style=0
width=2
color=10526303
</graph>
period=800
deviation=2.000000
</indicator>
<indicator>
name=Bollinger Bands
path=
apply=1
show_data=1
scale_inherit=0
scale_line=0
scale_line_percent=50
scale_line_value=0.000000
scale_fix_min=0
scale_fix_min_val=0.000000
scale_fix_max=0
scale_fix_max_val=0.000000
expertmode=0
fixed_height=-1
<graph>
name=
draw=131
style=0
width=2
color=14772545
</graph>
<graph>
name=
draw=131
style=0
width=2
color=14772545
</graph>
<graph>
name=
draw=131
style=0
width=2
color=14772545
</graph>
period=200
deviation=2.000000
</indicator>
<object>
type=109
name=2013.10.21 06:00 DE : Producer Price Index (MoM)
hidden=1
descr=DE : Producer Price Index (MoM) 0.3% / 0.1%
color=15658671
selectable=0
date1=1382335200
</object>
<object>
type=109
name=2013.10.21 06:00 DE : Producer Price Index (YoY)
hidden=1
descr=DE : Producer Price Index (YoY) -0.5% / -0.7%
color=15658671
selectable=0
date1=1382335200
</object>
<object>
type=109
name=2013.10.21 08:00 IT : Industrial Orders n.s.a (YoY)
hidden=1
descr=IT : Industrial Orders n.s.a (YoY) -6.8% /
color=13353215
selectable=0
date1=1382342400
</object>
<object>
type=109
name=2013.10.21 08:00 IT : Industrial Orders s.a (MoM)
hidden=1
descr=IT : Industrial Orders s.a (MoM) 2.0% /
color=15658671
selectable=0
date1=1382342400
</object>
<object>
type=109
name=2013.10.21 08:00 IT : Industrial Sales n.s.a. (YoY)
hidden=1
descr=IT : Industrial Sales n.s.a. (YoY) -4.8% /
color=13353215
selectable=0
date1=1382342400
</object>
<object>
type=109
name=2013.10.21 08:00 IT : Industrial Sales s.a. (MoM)
hidden=1
descr=IT : Industrial Sales s.a. (MoM) 1.0% /
color=15658671
selectable=0
date1=1382342400
</object>
<object>
type=109
name=2013.10.21 10:00 SK : Unemployment Rate
hidden=1
descr=SK : Unemployment Rate 13.8% /
color=15658671
selectable=0
date1=1382349600
</object>
<object>
type=109
name=2013.10.21 12:00 PT : Current Account Balance
hidden=1
descr=PT : Current Account Balance 1.163B /
color=15658671
selectable=0
date1=1382356800
</object>
<object>
type=109
name=2013.10.21 12:00 Fed's Evans Speech
hidden=1
descr=Fed's Evans Speech
color=16119285
selectable=0
date1=1382356800
</object>
<object>
type=109
name=2013.10.21 14:00 CB Leading Indicator (MoM)
hidden=1
descr=CB Leading Indicator (MoM)
color=16119285
selectable=0
date1=1382364000
</object>
<object>
type=109
name=2013.10.21 14:00 Existing Home Sales (MoM)
hidden=1
descr=Existing Home Sales (MoM) 5.29M / 5.30M
color=13353215
selectable=0
date1=1382364000
</object>
<object>
type=109
name=2013.10.21 14:00 Existing Home Sales Change (MoM)
hidden=1
descr=Existing Home Sales Change (MoM) -1.9% / -2.9%
color=15658671
selectable=0
date1=1382364000
</object>
<object>
type=109
name=2013.10.21 14:00 Wholesale Inventories
hidden=1
descr=Wholesale Inventories
color=16119285
selectable=0
date1=1382364000
</object>
<object>
type=109
name=2013.10.21 14:30 EIA Crude Oil Stocks change
hidden=1
descr=EIA Crude Oil Stocks change 3.999M / 3.400M
color=15658671
selectable=0
date1=1382365800
</object>
<object>
type=109
name=2013.10.21 15:30 6-Month Bill Auction
hidden=1
descr=6-Month Bill Auction 0.07% /
color=15658671
selectable=0
date1=1382369413
</object>
<object>
type=109
name=2013.10.21 15:30 3-Month Bill Auction
hidden=1
descr=3-Month Bill Auction 0.035% /
color=15658671
selectable=0
date1=1382369448
</object>
<object>
type=109
name=2013.10.22 06:00 FI : Unemployment Rate
hidden=1
descr=FI : Unemployment Rate
color=16119285
selectable=0
date1=1382421600
</object>
<object>
type=109
name=2013.10.22 08:50 ES : 3-Month Letras Auction
hidden=1
descr=ES : 3-Month Letras Auction
color=16119285
selectable=0
date1=1382431800
</object>
<object>
type=109
name=2013.10.22 08:50 ES : 9-Month Letras auction
hidden=1
descr=ES : 9-Month Letras auction
color=16119285
selectable=0
date1=1382431800
</object>
<object>
type=109
name=2013.10.22 09:00 FR : 10-y Bond Auction
hidden=1
descr=FR : 10-y Bond Auction
color=16119285
selectable=0
date1=1382432400
</object>
<object>
type=109
name=2013.10.22 12:30 Average Hourly Earnings (MoM)
hidden=1
descr=Average Hourly Earnings (MoM)
color=16119285
selectable=0
date1=1382445000
</object>
<object>
type=109
name=2013.10.22 12:30 Average Hourly Earnings (YoY)
hidden=1
descr=Average Hourly Earnings (YoY)
color=16119285
selectable=0
date1=1382445000
</object>
<object>
type=109
name=2013.10.22 12:30 Average Weekly Hours
hidden=1
descr=Average Weekly Hours
color=16119285
selectable=0
date1=1382445000
</object>
<object>
type=109
name=2013.10.22 12:30 Nonfarm Payrolls
hidden=1
descr=Nonfarm Payrolls
color=16119285
selectable=0
date1=1382445000
</object>
<object>
type=109
name=2013.10.22 12:30 Unemployment Rate
hidden=1
descr=Unemployment Rate
color=16119285
selectable=0
date1=1382445000
</object>
<object>
type=109
name=2013.10.22 12:55 Redbook index (MoM)
hidden=1
descr=Redbook index (MoM)
color=16119285
selectable=0
date1=1382446500
</object>
<object>
type=109
name=2013.10.22 12:55 Redbook index (YoY)
hidden=1
descr=Redbook index (YoY)
color=16119285
selectable=0
date1=1382446500
</object>
<object>
type=109
name=2013.10.22 13:00 Net Long-Term TIC Flows
hidden=1
descr=Net Long-Term TIC Flows
color=16119285
selectable=0
date1=1382446800
</object>
<object>
type=109
name=2013.10.22 13:00 Total Net TIC Flows
hidden=1
descr=Total Net TIC Flows
color=16119285
selectable=0
date1=1382446800
</object>
<object>
type=109
name=2013.10.22 14:00 Construction Spending (MoM)
hidden=1
descr=Construction Spending (MoM)
color=16119285
selectable=0
date1=1382450400
</object>
<object>
type=109
name=2013.10.22 14:00 Richmond Fed Manufacturing Index
hidden=1
descr=Richmond Fed Manufacturing Index
color=16119285
selectable=0
date1=1382450400
</object>
<object>
type=109
name=2013.10.22 14:30 EIA Natural Gas Storage change
hidden=1
descr=EIA Natural Gas Storage change
color=16119285
selectable=0
date1=1382452200
</object>
<object>
type=109
name=2013.10.22 15:30 4-Week Bill Auction
hidden=1
descr=4-Week Bill Auction
color=16119285
selectable=0
date1=1382455800
</object>
<object>
type=109
name=2013.10.23 06:45 FR : Business Climate
hidden=1
descr=FR : Business Climate
color=16119285
selectable=0
date1=1382510700
</object>
<object>
type=109
name=2013.10.23 07:30 NL : Consumer Spending Volume
hidden=1
descr=NL : Consumer Spending Volume
color=16119285
selectable=0
date1=1382513400
</object>
<object>
type=109
name=2013.10.23 07:50 ES : Current Account Balance
hidden=1
descr=ES : Current Account Balance
color=16119285
selectable=0
date1=1382514600
</object>
<object>
type=109
name=2013.10.23 08:00 IT : Trade Balance non-EU
hidden=1
descr=IT : Trade Balance non-EU
color=16119285
selectable=0
date1=1382515200
</object>
<object>
type=109
name=2013.10.23 09:00 DE : 10-y Bond Auction
hidden=1
descr=DE : 10-y Bond Auction
color=16119285
selectable=0
date1=1382518800
</object>
<object>
type=109
name=2013.10.23 09:30 DE : 30-y Bond Auction
hidden=1
descr=DE : 30-y Bond Auction
color=16119285
selectable=0
date1=1382520600
</object>
<object>
type=109
name=2013.10.23 10:10 IT : 10-y Bond Auction
hidden=1
descr=IT : 10-y Bond Auction
color=16119285
selectable=0
date1=1382523000
</object>
<object>
type=109
name=2013.10.23 11:00 MBA Mortgage Applications
hidden=1
descr=MBA Mortgage Applications
color=16119285
selectable=0
date1=1382526000
</object>
<object>
type=109
name=2013.10.23 12:30 Export Price Index (MoM)
hidden=1
descr=Export Price Index (MoM)
color=16119285
selectable=0
date1=1382531400
</object>
<object>
type=109
name=2013.10.23 12:30 Export Price Index (YoY)
hidden=1
descr=Export Price Index (YoY)
color=16119285
selectable=0
date1=1382531400
</object>
<object>
type=109
name=2013.10.23 12:30 Import Price Index (MoM)
hidden=1
descr=Import Price Index (MoM)
color=16119285
selectable=0
date1=1382531400
</object>
<object>
type=109
name=2013.10.23 12:30 Import Price Index (YoY)
hidden=1
descr=Import Price Index (YoY)
color=16119285
selectable=0
date1=1382531400
</object>
<object>
type=109
name=2013.10.23 13:00 BE : Leading Indicator
hidden=1
descr=BE : Leading Indicator
color=16119285
selectable=0
date1=1382533200
</object>
<object>
type=109
name=2013.10.23 13:00 Housing Price Index (MoM)
hidden=1
descr=Housing Price Index (MoM)
color=16119285
selectable=0
date1=1382533200
</object>
<object>
type=109
name=2013.10.23 14:00 EMU: Consumer Confidence
hidden=1
descr=EMU: Consumer Confidence
color=16119285
selectable=0
date1=1382536800
</object>
<object>
type=109
name=2013.10.23 14:30 EIA Crude Oil Stocks change
hidden=1
descr=EIA Crude Oil Stocks change
color=16119285
selectable=0
date1=1382538600
</object>
<object>
type=109
name=2013.10.24 00:00 EMU: European Council meeting
hidden=1
descr=EMU: European Council meeting
color=16119285
selectable=0
date1=1382572800
</object>
<object>
type=109
name=2013.10.24 06:00 FI : Export Prices (YoY)
hidden=1
descr=FI : Export Prices (YoY)
color=16119285
selectable=0
date1=1382594400
</object>
<object>
type=109
name=2013.10.24 06:00 FI : Import Prices (YoY)
hidden=1
descr=FI : Import Prices (YoY)
color=16119285
selectable=0
date1=1382594400
</object>
<object>
type=109
name=2013.10.24 06:00 FI : Producer Price Index (YoY)
hidden=1
descr=FI : Producer Price Index (YoY)
color=16119285
selectable=0
date1=1382594400
</object>
<object>
type=109
name=2013.10.24 06:58 FR : Markit Manufacturing PMI
hidden=1
descr=FR : Markit Manufacturing PMI
color=16119285
selectable=0
date1=1382597880
</object>
<object>
type=109
name=2013.10.24 06:58 FR : Markit Services PMI
hidden=1
descr=FR : Markit Services PMI
color=16119285
selectable=0
date1=1382597880
</object>
<object>
type=109
name=2013.10.24 07:00 ES : Unemployment Survey
hidden=1
descr=ES : Unemployment Survey
color=16119285
selectable=0
date1=1382598000
</object>
<object>
type=109
name=2013.10.24 07:28 DE : Markit Manufacturing PMI
hidden=1
descr=DE : Markit Manufacturing PMI
color=16119285
selectable=0
date1=1382599680
</object>
<object>
type=109
name=2013.10.24 07:28 DE : Markit Services PMI
hidden=1
descr=DE : Markit Services PMI
color=16119285
selectable=0
date1=1382599680
</object>
<object>
type=109
name=2013.10.24 07:58 EMU: Markit Manufacturing PMI
hidden=1
descr=EMU: Markit Manufacturing PMI
color=16119285
selectable=0
date1=1382601480
</object>
<object>
type=109
name=2013.10.24 07:58 EMU: Markit PMI Composite
hidden=1
descr=EMU: Markit PMI Composite
color=16119285
selectable=0
date1=1382601480
</object>
<object>
type=109
name=2013.10.24 07:58 EMU: Markit Services PMI
hidden=1
descr=EMU: Markit Services PMI
color=16119285
selectable=0
date1=1382601480
</object>
<object>
type=109
name=2013.10.24 08:00 IT : Consumer Confidence
hidden=1
descr=IT : Consumer Confidence
color=16119285
selectable=0
date1=1382601600
</object>
<object>