sar1=sar2

 

Hello,

I need to change in my mq5 file one part of code.

I have:

sar_one[1]>sar_two[1]

would like to test it with

sar_one[1]=sar_two[1]

Can it be done?

Thanks

 
Andrew:

Hello,

I need to change in my mq5 file one part of code.

I have:

sar_one[1]>sar_two[1]

would like to test it with

sar_one[1]=sar_two[1]

Can it be done?

Thanks

Use:

sar_one[1]==sar_two[1]
 

works. thanks :)

Reason: