Query MONGO fecha

Please, who can help me, I need a query in mongodb to execute with a date of the last 4 days

something like that, but it extracts the last 3 days

{
$expr:{
$eq:[
‘$accountingDate’,
{
$dateToString:{
date:{
$dateAdd:{
startDate:‘$$NOW’,
unit:‘day’,
amount: -0
}
},
format:‘%Y-%m-%d’
}
}
]
}
}