Syntax help

Can anyone tell me what is wrong with this condition? It gives me a syntax error.

TY

(armed ==1) and (holdDwn==“0”) and (down < 72) and (((_Cold_Day==“1”) AND (NOT night)) or (override_hvac==1)))

there’s more closing parens than opening. Did you mean?

(armed ==1) and (holdDwn=="0") and (down < 72) and (((_Cold_Day=="1") AND (NOT night)) or (override_hvac==1))

That was it! Thank you.

m