if (Closes[0][0] >= Closes[1][0])
I switched to this:
Closes[0][0] >= CurrentDayOHL().CurrentOpen[0]
But now I am trying to check for previous day closes, and I am all befuddled. I want to check for two down days prior to current and I am using this:
Closes[1][2] <= Closes[1][3] && Closes[1][1] <= Closes[1][2]
Thanks for any help.


Comment