Display custom post using ID

EDIT: deleted incorrect information

I see what you are missing now. Without knowing the specifics, I tried to point you in the right direction with this:

$my_query = new WP_Query('post_type=sliders&p=411');

if( $my_query->have_posts() ) {
    while ( $my_query->have_posts() ) : $my_query->the_post();

        // Get the specific meta data for the current post
        $saved_slider_meta = get_post_meta( get_the_ID(), 'slider_meta_key' );

        // Echo the data
        echo $saved_slider_meta;

    endwhile;

    // Restore original post data if there are other loops
    wp_reset_post_data();
}

Here is more information about WP_Query.