wordpress query from multiple post id

Your first example also needs the orderby parameter set, otherwise it defaults to standard date order:

$my_query = new WP_Query(
    array(
        'post_type' => 'slider',
        'post__in' => $posts,
        'orderby' => 'post__in'
    )
);

error code: 523