Skip to content

Commit 01858fa

Browse files
beta.029
1 parent 706cacc commit 01858fa

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
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("test-029-na_value")
6+
7+
int[] T = array.new_int(size=0, initial_value=0)
8+
array.push(id=T, value=0)
9+
array.push(id=T, value=1)
10+
array.push(id=T, value=int(na))
11+
array.push(id=T, value=2)
12+
13+
test = tostring(T)
14+
label la = label.new(bar_index, 0.0, test)
15+
label.delete(id=la[1])

0 commit comments

Comments
 (0)