Check for Duplicates using MD5 checksum

I come here to ask the experts in this forum on creating a button to find duplicate files using MD5 checksum when simultaneously comparing multiple folders in both the Source and Destination Panes. I created this simple code hoping to accomplish this but it appears to find duplicates based on actual names not MD5 checksum. Can someone please tell me what I'm doing wrong?

Set UTILITY=Dupe,on
Find DUPES RECURSE IN "{sourcepath$}" "{destpath$}"

As always, any feedback would be greatly appreciated.

The online manual suggests (as an example) Find IN C:\Data DUPES MD5, so you might try to add the MD5 argument to your command.

http://www.gpsoft.com.au/help/opus10/default.htm#!Documents/Find.htm

Well that was a simple solution, works like a charm now. Thank you.