Can’t order the query result as given posts id’s array

Remove your filter and add orderby'=>'post__in'. That sort order in not automatic when you supply IDs.

$wp_query = new WP_Query( 
  array(
     'post__in' => $arrayPostsIds,
     'ignore_sticky_posts' => true, 
     'date_query' => $date_query ,
    'orderby' => 'post__in',
  ) 
);