forked from salbert11/pinescript
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuilt-in_constants.json
1318 lines (1318 loc) · 50.7 KB
/
built-in_constants.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
{
"adjustment.dividends ⇨ 𝑥": {
"prefix": "adjustment.dividends",
"body": [
"adjustment.dividends$0"
],
"description": "Constant for dividends adjustment type (dividends adjustment is applied). | TYPE const string"
},
"adjustment.none ⇨ 𝑥": {
"prefix": "adjustment.none",
"body": [
"adjustment.none$0"
],
"description": "Constant for none adjustment type (no adjustment is applied). | TYPE const string"
},
"adjustment.splits ⇨ 𝑥": {
"prefix": "adjustment.splits",
"body": [
"adjustment.splits$0"
],
"description": "Constant for splits adjustment type (splits adjustment is applied). | TYPE const string"
},
"alert.freq_all ⇨ 𝑥": {
"prefix": "alert.freq_all",
"body": [
"alert.freq_all$0"
],
"description": "A named constant for use with the `freq` parameter of the alert() function. All function calls trigger the alert. | TYPE const string"
},
"alert.freq_once_per_bar ⇨ 𝑥": {
"prefix": "alert.freq_once_per_bar",
"body": [
"alert.freq_once_per_bar$0"
],
"description": "A named constant for use with the `freq` parameter of the alert() function. The first function call during the bar triggers the alert. | TYPE const string"
},
"alert.freq_once_per_bar_close ⇨ 𝑥": {
"prefix": "alert.freq_once_per_bar_close",
"body": [
"alert.freq_once_per_bar_close$0"
],
"description": "A named constant for use with the `freq` parameter of the alert() function. The function call triggers the alert only when it occurs during the last script iteration of the real-time bar, when it closes. | TYPE const string"
},
"barmerge.gaps_off ⇨ 𝑥": {
"prefix": "barmerge.gaps_off",
"body": [
"barmerge.gaps_off$0"
],
"description": "Merge strategy for requested data. Data is merged continuously without gaps, all the gaps are filled with the previous nearest existing value. | TYPE barmerge_gaps"
},
"barmerge.gaps_on ⇨ 𝑥": {
"prefix": "barmerge.gaps_on",
"body": [
"barmerge.gaps_on$0"
],
"description": "Merge strategy for requested data. Data is merged with possible gaps (na values). | TYPE barmerge_gaps"
},
"barmerge.lookahead_off ⇨ 𝑥": {
"prefix": "barmerge.lookahead_off",
"body": [
"barmerge.lookahead_off$0"
],
"description": "Merge strategy for the requested data position. Requested barset is merged with current barset in the order of sorting bars by their close time. This merge strategy disables effect of getting data from 'future' on calculation on history. | TYPE barmerge_lookahead"
},
"barmerge.lookahead_on ⇨ 𝑥": {
"prefix": "barmerge.lookahead_on",
"body": [
"barmerge.lookahead_on$0"
],
"description": "Merge strategy for the requested data position. Requested barset is merged with current barset in the order of sorting bars by their opening time. This merge strategy can lead to undesirable effect of getting data from 'future' on calculation on history. This is unacceptable in backtesting strategies, but can be useful in indicators. | TYPE barmerge_lookahead"
},
"color.aqua ⇨ 𝑥": {
"prefix": "color.aqua",
"body": [
"color.aqua$0"
],
"description": "Is a named constant for #00BCD4 color. | TYPE const color"
},
"color.black ⇨ 𝑥": {
"prefix": "color.black",
"body": [
"color.black$0"
],
"description": "Is a named constant for #363A45 color. | TYPE const color"
},
"color.blue ⇨ 𝑥": {
"prefix": "color.blue",
"body": [
"color.blue$0"
],
"description": "Is a named constant for #2962ff color. | TYPE const color"
},
"color.fuchsia ⇨ 𝑥": {
"prefix": "color.fuchsia",
"body": [
"color.fuchsia$0"
],
"description": "Is a named constant for #E040FB color. | TYPE const color"
},
"color.gray ⇨ 𝑥": {
"prefix": "color.gray",
"body": [
"color.gray$0"
],
"description": "Is a named constant for #787B86 color. | TYPE const color"
},
"color.green ⇨ 𝑥": {
"prefix": "color.green",
"body": [
"color.green$0"
],
"description": "Is a named constant for #4CAF50 color. | TYPE const color"
},
"color.lime ⇨ 𝑥": {
"prefix": "color.lime",
"body": [
"color.lime$0"
],
"description": "Is a named constant for #00E676 color. | TYPE const color"
},
"color.maroon ⇨ 𝑥": {
"prefix": "color.maroon",
"body": [
"color.maroon$0"
],
"description": "Is a named constant for #880E4F color. | TYPE const color"
},
"color.navy ⇨ 𝑥": {
"prefix": "color.navy",
"body": [
"color.navy$0"
],
"description": "Is a named constant for #311B92 color. | TYPE const color"
},
"color.olive ⇨ 𝑥": {
"prefix": "color.olive",
"body": [
"color.olive$0"
],
"description": "Is a named constant for #808000 color. | TYPE const color"
},
"color.orange ⇨ 𝑥": {
"prefix": "color.orange",
"body": [
"color.orange$0"
],
"description": "Is a named constant for #FF9800 color. | TYPE const color"
},
"color.purple ⇨ 𝑥": {
"prefix": "color.purple",
"body": [
"color.purple$0"
],
"description": "Is a named constant for #9C27B0 color. | TYPE const color"
},
"color.red ⇨ 𝑥": {
"prefix": "color.red",
"body": [
"color.red$0"
],
"description": "Is a named constant for #FF5252 color. | TYPE const color"
},
"color.silver ⇨ 𝑥": {
"prefix": "color.silver",
"body": [
"color.silver$0"
],
"description": "Is a named constant for #B2B5BE color. | TYPE const color"
},
"color.teal ⇨ 𝑥": {
"prefix": "color.teal",
"body": [
"color.teal$0"
],
"description": "Is a named constant for #00897B color. | TYPE const color"
},
"color.white ⇨ 𝑥": {
"prefix": "color.white",
"body": [
"color.white$0"
],
"description": "Is a named constant for #FFFFFF color. | TYPE const color"
},
"color.yellow ⇨ 𝑥": {
"prefix": "color.yellow",
"body": [
"color.yellow$0"
],
"description": "Is a named constant for #FFEB3B color. | TYPE const color"
},
"currency.AUD ⇨ 𝑥": {
"prefix": "currency.AUD",
"body": [
"currency.AUD$0"
],
"description": "Australian dollar. | TYPE const string"
},
"currency.BTC ⇨ 𝑥": {
"prefix": "currency.BTC",
"body": [
"currency.BTC$0"
],
"description": "Bitcoin. | TYPE const string"
},
"currency.CAD ⇨ 𝑥": {
"prefix": "currency.CAD",
"body": [
"currency.CAD$0"
],
"description": "Canadian dollar. | TYPE const string"
},
"currency.CHF ⇨ 𝑥": {
"prefix": "currency.CHF",
"body": [
"currency.CHF$0"
],
"description": "Swiss franc. | TYPE const string"
},
"currency.ETH ⇨ 𝑥": {
"prefix": "currency.ETH",
"body": [
"currency.ETH$0"
],
"description": "Ethereum. | TYPE const string"
},
"currency.EUR ⇨ 𝑥": {
"prefix": "currency.EUR",
"body": [
"currency.EUR$0"
],
"description": "Euro. | TYPE const string"
},
"currency.GBP ⇨ 𝑥": {
"prefix": "currency.GBP",
"body": [
"currency.GBP$0"
],
"description": "Pound sterling. | TYPE const string"
},
"currency.HKD ⇨ 𝑥": {
"prefix": "currency.HKD",
"body": [
"currency.HKD$0"
],
"description": "Hong Kong dollar. | TYPE const string"
},
"currency.INR ⇨ 𝑥": {
"prefix": "currency.INR",
"body": [
"currency.INR$0"
],
"description": "Indian rupee. | TYPE const string"
},
"currency.JPY ⇨ 𝑥": {
"prefix": "currency.JPY",
"body": [
"currency.JPY$0"
],
"description": "Japanese yen. | TYPE const string"
},
"currency.KRW ⇨ 𝑥": {
"prefix": "currency.KRW",
"body": [
"currency.KRW$0"
],
"description": "South Korean won. | TYPE const string"
},
"currency.MYR ⇨ 𝑥": {
"prefix": "currency.MYR",
"body": [
"currency.MYR$0"
],
"description": "Malaysian ringgit. | TYPE const string"
},
"currency.NOK ⇨ 𝑥": {
"prefix": "currency.NOK",
"body": [
"currency.NOK$0"
],
"description": "Norwegian krone. | TYPE const string"
},
"currency.NONE ⇨ 𝑥": {
"prefix": "currency.NONE",
"body": [
"currency.NONE$0"
],
"description": "Unspecified currency. | TYPE const string"
},
"currency.NZD ⇨ 𝑥": {
"prefix": "currency.NZD",
"body": [
"currency.NZD$0"
],
"description": "New Zealand dollar. | TYPE const string"
},
"currency.RUB ⇨ 𝑥": {
"prefix": "currency.RUB",
"body": [
"currency.RUB$0"
],
"description": "Russian ruble. | TYPE const string"
},
"currency.SEK ⇨ 𝑥": {
"prefix": "currency.SEK",
"body": [
"currency.SEK$0"
],
"description": "Swedish krona. | TYPE const string"
},
"currency.SGD ⇨ 𝑥": {
"prefix": "currency.SGD",
"body": [
"currency.SGD$0"
],
"description": "Singapore dollar. | TYPE const string"
},
"currency.TRY ⇨ 𝑥": {
"prefix": "currency.TRY",
"body": [
"currency.TRY$0"
],
"description": "Turkish lira. | TYPE const string"
},
"currency.USD ⇨ 𝑥": {
"prefix": "currency.USD",
"body": [
"currency.USD$0"
],
"description": "United States dollar. | TYPE const string"
},
"currency.USDT ⇨ 𝑥": {
"prefix": "currency.USDT",
"body": [
"currency.USDT$0"
],
"description": "Tether. | TYPE const string"
},
"currency.ZAR ⇨ 𝑥": {
"prefix": "currency.ZAR",
"body": [
"currency.ZAR$0"
],
"description": "South African rand. | TYPE const string"
},
"dayofweek.friday ⇨ 𝑥": {
"prefix": "dayofweek.friday",
"body": [
"dayofweek.friday$0"
],
"description": "Is a named constant for return value of dayofweek function and value of dayofweek variable. | TYPE const int"
},
"dayofweek.monday ⇨ 𝑥": {
"prefix": "dayofweek.monday",
"body": [
"dayofweek.monday$0"
],
"description": "Is a named constant for return value of dayofweek function and value of dayofweek variable. | TYPE const int"
},
"dayofweek.saturday ⇨ 𝑥": {
"prefix": "dayofweek.saturday",
"body": [
"dayofweek.saturday$0"
],
"description": "Is a named constant for return value of dayofweek function and value of dayofweek variable. | TYPE const int"
},
"dayofweek.sunday ⇨ 𝑥": {
"prefix": "dayofweek.sunday",
"body": [
"dayofweek.sunday$0"
],
"description": "Is a named constant for return value of dayofweek function and value of dayofweek variable. | TYPE const int"
},
"dayofweek.thursday ⇨ 𝑥": {
"prefix": "dayofweek.thursday",
"body": [
"dayofweek.thursday$0"
],
"description": "Is a named constant for return value of dayofweek function and value of dayofweek variable. | TYPE const int"
},
"dayofweek.tuesday ⇨ 𝑥": {
"prefix": "dayofweek.tuesday",
"body": [
"dayofweek.tuesday$0"
],
"description": "Is a named constant for return value of dayofweek function and value of dayofweek variable. | TYPE const int"
},
"dayofweek.wednesday ⇨ 𝑥": {
"prefix": "dayofweek.wednesday",
"body": [
"dayofweek.wednesday$0"
],
"description": "Is a named constant for return value of dayofweek function and value of dayofweek variable. | TYPE const int"
},
"display.all ⇨ 𝑥": {
"prefix": "display.all",
"body": [
"display.all$0"
],
"description": "A named constant for use with the `display` parameter of `plot*()` and `input*()` functions. Displays plotted or input values in all possible locations. | TYPE plot_simple_display"
},
"display.data_window ⇨ 𝑥": {
"prefix": "display.data_window",
"body": [
"display.data_window$0"
],
"description": "A named constant for use with the `display` parameter of `plot*()` and `input*()` functions. Displays plotted or input values in the Data Window, a menu accessible from the chart's right sidebar. | TYPE plot_display"
},
"display.none ⇨ 𝑥": {
"prefix": "display.none",
"body": [
"display.none$0"
],
"description": "A named constant for use with the `display` parameter of `plot*()` and `input*()` functions. `plot*()` functions using this will not display their plotted values anywhere. However, alert template messages and fill functions can still use the values, and they will appear in exported chart data. `input*()` functions using this constant will only display their values within the script's settings. | TYPE plot_simple_display"
},
"display.pane ⇨ 𝑥": {
"prefix": "display.pane",
"body": [
"display.pane$0"
],
"description": "A named constant for use with the `display` parameter of `plot*()` functions. Displays plotted values in the chart pane used by the script. | TYPE plot_display"
},
"display.price_scale ⇨ 𝑥": {
"prefix": "display.price_scale",
"body": [
"display.price_scale$0"
],
"description": "A named constant for use with the `display` parameter of `plot*()` functions. Displays the plot’s label and value on the price scale if the chart's settings allow it. | TYPE plot_display"
},
"display.status_line ⇨ 𝑥": {
"prefix": "display.status_line",
"body": [
"display.status_line$0"
],
"description": "A named constant for use with the `display` parameter of `plot*()` and `input*()` functions. Displays plotted or input values in the status line next to the script's name on the chart if the chart's settings allow it. | TYPE plot_display"
},
"dividends.gross ⇨ 𝑥": {
"prefix": "dividends.gross",
"body": [
"dividends.gross$0"
],
"description": "A named constant for the request.dividends function. Is used to request the dividends return on a stock before deductions. | TYPE const string"
},
"dividends.net ⇨ 𝑥": {
"prefix": "dividends.net",
"body": [
"dividends.net$0"
],
"description": "A named constant for the request.dividends function. Is used to request the dividends return on a stock after deductions. | TYPE const string"
},
"earnings.actual ⇨ 𝑥": {
"prefix": "earnings.actual",
"body": [
"earnings.actual$0"
],
"description": "A named constant for the request.earnings function. Is used to request the earnings value as it was reported. | TYPE const string"
},
"earnings.estimate ⇨ 𝑥": {
"prefix": "earnings.estimate",
"body": [
"earnings.estimate$0"
],
"description": "A named constant for the request.earnings function. Is used to request the estimated earnings value. | TYPE const string"
},
"earnings.standardized ⇨ 𝑥": {
"prefix": "earnings.standardized",
"body": [
"earnings.standardized$0"
],
"description": "A named constant for the request.earnings function. Is used to request the standardized earnings value. | TYPE const string"
},
"extend.both ⇨ 𝑥": {
"prefix": "extend.both",
"body": [
"extend.both$0"
],
"description": "A named constant for line.new and line.set_extend functions. | TYPE const string"
},
"extend.left ⇨ 𝑥": {
"prefix": "extend.left",
"body": [
"extend.left$0"
],
"description": "A named constant for line.new and line.set_extend functions. | TYPE const string"
},
"extend.none ⇨ 𝑥": {
"prefix": "extend.none",
"body": [
"extend.none$0"
],
"description": "A named constant for line.new and line.set_extend functions. | TYPE const string"
},
"extend.right ⇨ 𝑥": {
"prefix": "extend.right",
"body": [
"extend.right$0"
],
"description": "A named constant for line.new and line.set_extend functions. | TYPE const string"
},
"font.family_default ⇨ 𝑥": {
"prefix": "font.family_default",
"body": [
"font.family_default$0"
],
"description": "Default text font for box.new, box.set_text_font_family, label.new, label.set_text_font_family, table.cell and table.cell_set_text_font_family functions. | TYPE const string"
},
"font.family_monospace ⇨ 𝑥": {
"prefix": "font.family_monospace",
"body": [
"font.family_monospace$0"
],
"description": "Monospace text font for box.new, box.set_text_font_family, label.new, label.set_text_font_family, table.cell and table.cell_set_text_font_family functions. | TYPE const string"
},
"format.inherit ⇨ 𝑥": {
"prefix": "format.inherit",
"body": [
"format.inherit$0"
],
"description": "Is a named constant for selecting the formatting of the script output values from the parent series in the indicator function. | TYPE const string"
},
"format.mintick ⇨ 𝑥": {
"prefix": "format.mintick",
"body": [
"format.mintick$0"
],
"description": "Is a named constant to use with the str.tostring function. Passing a number to str.tostring with this argument rounds the number to the nearest value that can be divided by syminfo.mintick, without the remainder, with ties rounding up, and returns the string version of said value with trailing zeroes. | TYPE const string"
},
"format.percent ⇨ 𝑥": {
"prefix": "format.percent",
"body": [
"format.percent$0"
],
"description": "Is a named constant for selecting the formatting of the script output values as a percentage in the indicator function. It adds a percent sign after values. | TYPE const string"
},
"format.price ⇨ 𝑥": {
"prefix": "format.price",
"body": [
"format.price$0"
],
"description": "Is a named constant for selecting the formatting of the script output values as prices in the indicator function. | TYPE const string"
},
"format.volume ⇨ 𝑥": {
"prefix": "format.volume",
"body": [
"format.volume$0"
],
"description": "Is a named constant for selecting the formatting of the script output values as volume in the indicator function, e.g. '5183' will be formatted as '5.183K'. | TYPE const string"
},
"hline.style_dashed ⇨ 𝑥": {
"prefix": "hline.style_dashed",
"body": [
"hline.style_dashed$0"
],
"description": "Is a named constant for dashed linestyle of hline function. | TYPE hline_style"
},
"hline.style_dotted ⇨ 𝑥": {
"prefix": "hline.style_dotted",
"body": [
"hline.style_dotted$0"
],
"description": "Is a named constant for dotted linestyle of hline function. | TYPE hline_style"
},
"hline.style_solid ⇨ 𝑥": {
"prefix": "hline.style_solid",
"body": [
"hline.style_solid$0"
],
"description": "Is a named constant for solid linestyle of hline function. | TYPE hline_style"
},
"label.style_arrowdown ⇨ 𝑥": {
"prefix": "label.style_arrowdown",
"body": [
"label.style_arrowdown$0"
],
"description": "Label style for label.new and label.set_style functions. | TYPE const string"
},
"label.style_arrowup ⇨ 𝑥": {
"prefix": "label.style_arrowup",
"body": [
"label.style_arrowup$0"
],
"description": "Label style for label.new and label.set_style functions. | TYPE const string"
},
"label.style_circle ⇨ 𝑥": {
"prefix": "label.style_circle",
"body": [
"label.style_circle$0"
],
"description": "Label style for label.new and label.set_style functions. | TYPE const string"
},
"label.style_cross ⇨ 𝑥": {
"prefix": "label.style_cross",
"body": [
"label.style_cross$0"
],
"description": "Label style for label.new and label.set_style functions. | TYPE const string"
},
"label.style_diamond ⇨ 𝑥": {
"prefix": "label.style_diamond",
"body": [
"label.style_diamond$0"
],
"description": "Label style for label.new and label.set_style functions. | TYPE const string"
},
"label.style_flag ⇨ 𝑥": {
"prefix": "label.style_flag",
"body": [
"label.style_flag$0"
],
"description": "Label style for label.new and label.set_style functions. | TYPE const string"
},
"label.style_label_center ⇨ 𝑥": {
"prefix": "label.style_label_center",
"body": [
"label.style_label_center$0"
],
"description": "Label style for label.new and label.set_style functions. | TYPE const string"
},
"label.style_label_down ⇨ 𝑥": {
"prefix": "label.style_label_down",
"body": [
"label.style_label_down$0"
],
"description": "Label style for label.new and label.set_style functions. | TYPE const string"
},
"label.style_label_left ⇨ 𝑥": {
"prefix": "label.style_label_left",
"body": [
"label.style_label_left$0"
],
"description": "Label style for label.new and label.set_style functions. | TYPE const string"
},
"label.style_label_lower_left ⇨ 𝑥": {
"prefix": "label.style_label_lower_left",
"body": [
"label.style_label_lower_left$0"
],
"description": "Label style for label.new and label.set_style functions. | TYPE const string"
},
"label.style_label_lower_right ⇨ 𝑥": {
"prefix": "label.style_label_lower_right",
"body": [
"label.style_label_lower_right$0"
],
"description": "Label style for label.new and label.set_style functions. | TYPE const string"
},
"label.style_label_right ⇨ 𝑥": {
"prefix": "label.style_label_right",
"body": [
"label.style_label_right$0"
],
"description": "Label style for label.new and label.set_style functions. | TYPE const string"
},
"label.style_label_up ⇨ 𝑥": {
"prefix": "label.style_label_up",
"body": [
"label.style_label_up$0"
],
"description": "Label style for label.new and label.set_style functions. | TYPE const string"
},
"label.style_label_upper_left ⇨ 𝑥": {
"prefix": "label.style_label_upper_left",
"body": [
"label.style_label_upper_left$0"
],
"description": "Label style for label.new and label.set_style functions. | TYPE const string"
},
"label.style_label_upper_right ⇨ 𝑥": {
"prefix": "label.style_label_upper_right",
"body": [
"label.style_label_upper_right$0"
],
"description": "Label style for label.new and label.set_style functions. | TYPE const string"
},
"label.style_none ⇨ 𝑥": {
"prefix": "label.style_none",
"body": [
"label.style_none$0"
],
"description": "Label style for label.new and label.set_style functions. | TYPE const string"
},
"label.style_square ⇨ 𝑥": {
"prefix": "label.style_square",
"body": [
"label.style_square$0"
],
"description": "Label style for label.new and label.set_style functions. | TYPE const string"
},
"label.style_text_outline ⇨ 𝑥": {
"prefix": "label.style_text_outline",
"body": [
"label.style_text_outline$0"
],
"description": "Label style for label.new and label.set_style functions. | TYPE const string"
},
"label.style_triangledown ⇨ 𝑥": {
"prefix": "label.style_triangledown",
"body": [
"label.style_triangledown$0"
],
"description": "Label style for label.new and label.set_style functions. | TYPE const string"
},
"label.style_triangleup ⇨ 𝑥": {
"prefix": "label.style_triangleup",
"body": [
"label.style_triangleup$0"
],
"description": "Label style for label.new and label.set_style functions. | TYPE const string"
},
"label.style_xcross ⇨ 𝑥": {
"prefix": "label.style_xcross",
"body": [
"label.style_xcross$0"
],
"description": "Label style for label.new and label.set_style functions. | TYPE const string"
},
"line.style_arrow_both ⇨ 𝑥": {
"prefix": "line.style_arrow_both",
"body": [
"line.style_arrow_both$0"
],
"description": "Line style for line.new and line.set_style functions. Solid line with arrows on both points. | TYPE const string"
},
"line.style_arrow_left ⇨ 𝑥": {
"prefix": "line.style_arrow_left",
"body": [
"line.style_arrow_left$0"
],
"description": "Line style for line.new and line.set_style functions. Solid line with arrow on the first point. | TYPE const string"
},
"line.style_arrow_right ⇨ 𝑥": {
"prefix": "line.style_arrow_right",
"body": [
"line.style_arrow_right$0"
],
"description": "Line style for line.new and line.set_style functions. Solid line with arrow on the second point. | TYPE const string"
},
"line.style_dashed ⇨ 𝑥": {
"prefix": "line.style_dashed",
"body": [
"line.style_dashed$0"
],
"description": "Line style for line.new and line.set_style functions. | TYPE const string"
},
"line.style_dotted ⇨ 𝑥": {
"prefix": "line.style_dotted",
"body": [
"line.style_dotted$0"
],
"description": "Line style for line.new and line.set_style functions. | TYPE const string"
},
"line.style_solid ⇨ 𝑥": {
"prefix": "line.style_solid",
"body": [
"line.style_solid$0"
],
"description": "Line style for line.new and line.set_style functions. | TYPE const string"
},
"location.abovebar ⇨ 𝑥": {
"prefix": "location.abovebar",
"body": [
"location.abovebar$0"
],
"description": "Location value for plotshape, plotchar functions. Shape is plotted above main series bars. | TYPE const string"
},
"location.absolute ⇨ 𝑥": {
"prefix": "location.absolute",
"body": [
"location.absolute$0"
],
"description": "Location value for plotshape, plotchar functions. Shape is plotted on chart using indicator value as a price coordinate. | TYPE const string"
},
"location.belowbar ⇨ 𝑥": {
"prefix": "location.belowbar",
"body": [
"location.belowbar$0"
],
"description": "Location value for plotshape, plotchar functions. Shape is plotted below main series bars. | TYPE const string"
},
"location.bottom ⇨ 𝑥": {
"prefix": "location.bottom",
"body": [
"location.bottom$0"
],
"description": "Location value for plotshape, plotchar functions. Shape is plotted near the bottom chart border. | TYPE const string"
},
"location.top ⇨ 𝑥": {
"prefix": "location.top",
"body": [
"location.top$0"
],
"description": "Location value for plotshape, plotchar functions. Shape is plotted near the top chart border. | TYPE const string"
},
"math.e ⇨ 𝑥": {
"prefix": "math.e",
"body": [
"math.e$0"
],
"description": "Is a named constant for Euler's number. It is equal to 2.7182818284590452. | TYPE const float"
},
"math.phi ⇨ 𝑥": {
"prefix": "math.phi",
"body": [
"math.phi$0"
],
"description": "Is a named constant for the golden ratio. It is equal to 1.6180339887498948. | TYPE const float"
},
"math.pi ⇨ 𝑥": {
"prefix": "math.pi",
"body": [
"math.pi$0"
],
"description": "Is a named constant for Archimedes' constant. It is equal to 3.1415926535897932. | TYPE const float"
},
"math.rphi ⇨ 𝑥": {
"prefix": "math.rphi",
"body": [
"math.rphi$0"
],
"description": "Is a named constant for the golden ratio conjugate. It is equal to 0.6180339887498948. | TYPE const float"
},
"order.ascending ⇨ 𝑥": {
"prefix": "order.ascending",
"body": [
"order.ascending$0"
],
"description": "Determines the sort order of the array from the smallest to the largest value. | TYPE sort_order"
},
"order.descending ⇨ 𝑥": {
"prefix": "order.descending",
"body": [
"order.descending$0"
],
"description": "Determines the sort order of the array from the largest to the smallest value. | TYPE sort_order"
},
"plot.style_area ⇨ 𝑥": {
"prefix": "plot.style_area",
"body": [
"plot.style_area$0"
],
"description": "A named constant for the 'Area' style, to be used as an argument for the `style` parameter in the plot function. | TYPE plot_style"
},
"plot.style_areabr ⇨ 𝑥": {
"prefix": "plot.style_areabr",
"body": [
"plot.style_areabr$0"
],
"description": "A named constant for the 'Area With Breaks' style, to be used as an argument for the `style` parameter in the plot function. Similar to plot.style_area, except the gaps in the data are not filled. | TYPE plot_style"
},
"plot.style_circles ⇨ 𝑥": {
"prefix": "plot.style_circles",
"body": [
"plot.style_circles$0"
],
"description": "A named constant for the 'Circles' style, to be used as an argument for the `style` parameter in the plot function. | TYPE plot_style"
},
"plot.style_columns ⇨ 𝑥": {
"prefix": "plot.style_columns",
"body": [
"plot.style_columns$0"
],
"description": "A named constant for the 'Columns' style, to be used as an argument for the `style` parameter in the plot function. | TYPE plot_style"
},
"plot.style_cross ⇨ 𝑥": {
"prefix": "plot.style_cross",
"body": [
"plot.style_cross$0"
],
"description": "A named constant for the 'Cross' style, to be used as an argument for the `style` parameter in the plot function. | TYPE plot_style"
},
"plot.style_histogram ⇨ 𝑥": {
"prefix": "plot.style_histogram",
"body": [
"plot.style_histogram$0"
],
"description": "A named constant for the 'Histogram' style, to be used as an argument for the `style` parameter in the plot function. | TYPE plot_style"
},
"plot.style_line ⇨ 𝑥": {
"prefix": "plot.style_line",
"body": [
"plot.style_line$0"
],
"description": "A named constant for the 'Line' style, to be used as an argument for the `style` parameter in the plot function. | TYPE plot_style"
},
"plot.style_linebr ⇨ 𝑥": {
"prefix": "plot.style_linebr",
"body": [
"plot.style_linebr$0"
],
"description": "A named constant for the 'Line With Breaks' style, to be used as an argument for the `style` parameter in the plot function. Similar to plot.style_line, except the gaps in the data are not filled. | TYPE plot_style"
},
"plot.style_stepline ⇨ 𝑥": {
"prefix": "plot.style_stepline",
"body": [
"plot.style_stepline$0"
],
"description": "A named constant for the 'Step Line' style, to be used as an argument for the `style` parameter in the plot function. | TYPE plot_style"
},
"plot.style_stepline_diamond ⇨ 𝑥": {
"prefix": "plot.style_stepline_diamond",
"body": [
"plot.style_stepline_diamond$0"
],
"description": "A named constant for the 'Step Line With Diamonds' style, to be used as an argument for the `style` parameter in the plot function. Similar to plot.style_stepline, except the data changes are also marked with the Diamond shapes. | TYPE plot_style"
},
"plot.style_steplinebr ⇨ 𝑥": {
"prefix": "plot.style_steplinebr",
"body": [
"plot.style_steplinebr$0"
],
"description": "A named constant for the 'Step line with Breaks' style, to be used as an argument for the `style` parameter in the plot function. | TYPE plot_style"
},
"position.bottom_center ⇨ 𝑥": {
"prefix": "position.bottom_center",
"body": [
"position.bottom_center$0"
],
"description": "Table position is used in table.new, table.cell functions. Binds the table to the bottom edge in the center. | TYPE const string"
},
"position.bottom_left ⇨ 𝑥": {
"prefix": "position.bottom_left",
"body": [
"position.bottom_left$0"
],
"description": "Table position is used in table.new, table.cell functions. Binds the table to the bottom left of the screen. | TYPE const string"
},
"position.bottom_right ⇨ 𝑥": {
"prefix": "position.bottom_right",
"body": [
"position.bottom_right$0"
],
"description": "Table position is used in table.new, table.cell functions. Binds the table to the bottom right of the screen. | TYPE const string"
},
"position.middle_center ⇨ 𝑥": {
"prefix": "position.middle_center",
"body": [
"position.middle_center$0"
],
"description": "Table position is used in table.new, table.cell functions. Binds the table to the center of the screen. | TYPE const string"
},
"position.middle_left ⇨ 𝑥": {
"prefix": "position.middle_left",
"body": [
"position.middle_left$0"
],
"description": "Table position is used in table.new, table.cell functions. Binds the table to the left side of the screen. | TYPE const string"
},
"position.middle_right ⇨ 𝑥": {
"prefix": "position.middle_right",
"body": [
"position.middle_right$0"
],
"description": "Table position is used in table.new, table.cell functions. Binds the table to the right side of the screen. | TYPE const string"
},
"position.top_center ⇨ 𝑥": {
"prefix": "position.top_center",
"body": [
"position.top_center$0"
],
"description": "Table position is used in table.new, table.cell functions. Binds the table to the top edge in the center. | TYPE const string"
},
"position.top_left ⇨ 𝑥": {
"prefix": "position.top_left",
"body": [
"position.top_left$0"
],
"description": "Table position is used in table.new, table.cell functions. Binds the table to the upper-left edge. | TYPE const string"
},
"position.top_right ⇨ 𝑥": {
"prefix": "position.top_right",
"body": [
"position.top_right$0"
],
"description": "Table position is used in table.new, table.cell functions. Binds the table to the upper-right edge. | TYPE const string"
},
"scale.left ⇨ 𝑥": {
"prefix": "scale.left",
"body": [
"scale.left$0"
],
"description": "Scale value for indicator function. Indicator is added to the left price scale. | TYPE scale_type"
},
"scale.none ⇨ 𝑥": {
"prefix": "scale.none",
"body": [
"scale.none$0"
],
"description": "Scale value for indicator function. Indicator is added in 'No Scale' mode. Can be used only with 'overlay=true'. | TYPE scale_type"
},
"scale.right ⇨ 𝑥": {
"prefix": "scale.right",
"body": [
"scale.right$0"
],
"description": "Scale value for indicator function. Indicator is added to the right price scale. | TYPE scale_type"
},
"session.extended ⇨ 𝑥": {
"prefix": "session.extended",
"body": [
"session.extended$0"
],