Property strict

 
Hello. Is there a way to deactivate #property strict on mq5 fileswhen it compiles property strict is not activated
 
Jefferson Metha:
Hello. Is there a way to deactivate #property strict on mq5 fileswhen it compiles property strict is not activated

 #property strict doesn't exist in MQL5 does it?

 
Keith Watford:

 #property strict doesn't exist in MQL5 does it?

😭No it dont, am converting an mq4 code without properrty strict to mq5, its acting as if it's there lol. Take care. 
 
Jefferson Metha its acting as if it's there

Correct. Fix your old MT4 code. Fixing the warnings will save you hours of debugging, but you must understand the differences.

 
William Roeder:

Correct. Fix your old MT4 code. Fixing the warnings will save you hours of debugging, but you must understand the differences.

Thanks fixed problem was ArrayMax function 
In mql4 its Array, Count, start then 
In mql5 its Array , start, count. 

This was the problem.