I want to compare an array like this:
string_array = array.from("A", "B", "C", ...)
float_1_array = array.from(1.5, 2.5, 3.5, ...)
float_2_array = array.from(4.5, 5.5, 6.5, ...)
For a result meaning like this (following is not an actual code):
if array.get(float_1_array, 0) > 1 and
array.get(float_2_array, 0) > 4 ?
array.get(string_array, 0) : ""
string_result = "A"
How to achieve such a result using loop to display the string in a Table? Or is it possible in Pinescript?