For every barclose I'm doing this:
Print("HighStop is: -" + highStop + "- High[0] is: -" + High[0] + "-");
if (High[0] == highStop)
Print("We have a match");
else
Print("We DO NOT have a match");
We DO NOT have a match
HighStop is: -29.89- High[0] is: -29.89-
We DO NOT have a match
HighStop is: -29.89- High[0] is: -29.89-
We DO NOT have a match
HighStop is: -29.89- High[0] is: -29.89-
We DO NOT have a match
Thanks

Comment