Skip to content

Commit ce7847f

Browse files
beta-036
1 parent 34825a9 commit ce7847f

File tree

1 file changed

+108
-0
lines changed

1 file changed

+108
-0
lines changed
+108
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,108 @@
1+
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/
2+
// © RicardoSantos
3+
4+
//@version=4
5+
study(title='test-alphabet')
6+
7+
8+
// f_encode(_integers)=>
9+
// //https://upscaledb.com/0009-32bit-integer-compression-algorithms.html
10+
// int _size = array.size(id=_integers)
11+
// int _value = na
12+
// if _size > 0
13+
// _value := array.get(id=_integers, index=0)
14+
// for _i = 1 to _size - 1
15+
// _value := array.get(id=_integers, index=_i) - _value
16+
17+
18+
19+
f_ndigit(_value)=>
20+
_abs = abs(_value)
21+
_count = 0
22+
for _i = 0 to 9999999
23+
if _abs == 0
24+
break
25+
_abs := floor(_abs / 10)
26+
_count := _count + 1
27+
_count
28+
29+
f_int_shift_digit(_integer, _shift)=>
30+
int(floor(_integer / pow(10, _shift)))
31+
32+
f_upper_alphabet(_i)=>
33+
(_i==00?'':(_i==01?'A':(_i==02?'B':(_i==03?'C':(_i==04?'D':(_i==05?'E':(_i==06?'F':(_i==07?'G':(_i==08?'H':(_i==09?'I':
34+
(_i==10?'J':(_i==11?'K':(_i==12?'L':(_i==13?'M':(_i==14?'N':(_i==15?'O':(_i==16?'P':(_i==17?'Q':(_i==18?'R':(_i==19?'S':
35+
(_i==20?'T':(_i==21?'U':(_i==22?'V':(_i==23?'W':(_i==24?'X':(_i==25?'Y':(_i==26?'Z':(_i==27?'':(_i==28?'':(_i==29?'':''
36+
)))))))))) )))))))))) ))))))))))
37+
38+
f_ascii_alphabet(_i)=>
39+
(_i==00?'':(_i==01?'!':(_i==02?'"':(_i==03?'#':(_i==04?'$':(_i==05?'%':(_i==06?'&':(_i==07?"'":(_i==08?'(':(_i==09?')':
40+
(_i==10?'*':(_i==11?'+':(_i==12?',':(_i==13?'-':(_i==14?'.':(_i==15?'/':(_i==16?'0':(_i==17?'1':(_i==18?'2':(_i==19?'3':
41+
(_i==20?'4':(_i==21?'5':(_i==22?'6':(_i==23?'7':(_i==24?'8':(_i==25?'9':(_i==26?':':(_i==27?';':(_i==28?'<':(_i==29?'=':
42+
(_i==30?'>':(_i==31?'?':(_i==32?'@':(_i==33?'A':(_i==34?'B':(_i==35?'C':(_i==36?'D':(_i==37?'E':(_i==38?'F':(_i==39?'G':
43+
(_i==40?'H':(_i==41?'I':(_i==42?'J':(_i==43?'K':(_i==44?'L':(_i==45?'M':(_i==46?'N':(_i==47?'O':(_i==48?'P':(_i==49?'Q':
44+
(_i==50?'R':(_i==51?'S':(_i==52?'T':(_i==53?'U':(_i==54?'V':(_i==55?'W':(_i==56?'X':(_i==57?'Y':(_i==58?'Z':(_i==59?'[':
45+
(_i==60?'\\':(_i==61?']':(_i==62?'^':(_i==63?'_':(_i==64?'`':(_i==65?'a':(_i==66?'b':(_i==67?'c':(_i==68?'d':(_i==69?'e':
46+
(_i==70?'f':(_i==71?'g':(_i==72?'h':(_i==73?'i':(_i==74?'j':(_i==75?'k':(_i==76?'l':(_i==77?'m':(_i==78?'n':(_i==79?'o':
47+
(_i==80?'p':(_i==81?'q':(_i==82?'r':(_i==83?'s':(_i==84?'t':(_i==85?'u':(_i==86?'v':(_i==87?'w':(_i==88?'x':(_i==89?'y':
48+
(_i==90?'z':(_i==91?'{':(_i==92?'|':(_i==93?'}':(_i==94?'~':(_i==95?'':(_i==96?'':(_i==97?'':(_i==98?'':(_i==99?'':''
49+
)))))))))) )))))))))) )))))))))) )))))))))) )))))))))) )))))))))) )))))))))) )))))))))) )))))))))) ))))))))))
50+
51+
f_select_alphabet(_i, _v)=>
52+
(_i==00?f_ascii_alphabet(_v):(_i==01?f_upper_alphabet(_v):na))
53+
54+
f_indices_to_string(_indices, _alphabet)=>
55+
int _size = array.size(id=_indices)
56+
string _output = ''
57+
if _size > 0
58+
for _c = 0 to _size-1
59+
int _indice = array.get(id=_indices, index=_c)
60+
_output := _output + f_select_alphabet(_alphabet, _indice)
61+
_output
62+
63+
f_int_to_alphabet_indices(_integer)=>
64+
int[] _integers = array.new_int(0)
65+
int _digits = f_ndigit(_integer)
66+
int _old = _integer
67+
for _i = 0 to _digits
68+
if _old <= 0
69+
break
70+
float _shifted = _old / 100
71+
int _new = floor(_shifted)
72+
int _indice = int((_shifted - floor(_new)) * 100)
73+
array.unshift(id=_integers, value=_indice)
74+
_old := floor(_new)
75+
_integers
76+
77+
string _text = f_ascii_alphabet(input(-1))
78+
int _N = input(0102030405060708)//09//10//11121314151617181920212223242526
79+
if barstate.ishistory[1] and barstate.isrealtime
80+
int[] indices = f_int_to_alphabet_indices(_N)
81+
_text := _text + '\n' + tostring(_N) + ' -> looks ok\n'
82+
_text := _text + '\n' + tostring(indices) + ' -> repeats 6 and doesnt print first step\n'
83+
_text := _text + f_indices_to_string(indices, 1) + ' -> conversion correct'// 0:ascii, 1:upper
84+
// for _i = 0 to 999999
85+
// _text := _text + '\n' + tostring(_i) + ' : '
86+
// if _N <= 0
87+
// break
88+
// float _shifted = _N / 100
89+
// int _new = floor(_shifted)
90+
// int _rest = int((_shifted - _new) * 100)
91+
// string _str = f_upper_alphabet(_rest)
92+
// _text := _text + tostring(_N) + ' : ' + _str
93+
// _N := _new
94+
95+
label.new(bar_index, close, _text)
96+
97+
98+
//|----------------------------------------------------------------------------|
99+
// BINARY >>>> 01
100+
// OCTAL >>>> 01234567
101+
// DECIMAL >>>> 0123456789
102+
// HEXADECIMAL >>>> 0123456789ABCDEF
103+
// DNA >>>> ACGT
104+
// LOWERCASE >>>> abcdefghijklmnopqrstuvwxyz
105+
// UPPERCASE >>>> ABCDEFGHIJKLMNOPQRSTUVWXYZ
106+
// PROTEIN >>>> ACDEFGHIKLMNPQRSTVWY
107+
// BASE64 >>>> ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/
108+
// ASCII base-95 >>>> !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~

0 commit comments

Comments
 (0)