I assume if you're on May 13th, you want the records from May 10th 00:00:00 to May 10th 23:59:59
So try :
declare @startdate datetime
declare @endDate datetime
set @startDate= convert(datetime,convert(char,getdate(),101),101)-3
set @endDate=@startDate+1
SELECT ...,Date_Submitted
FROM...