add_action( 'pre_get_posts', 'joesz_include_future_posts' );
function joesz_include_future_posts( $query ) {
if ( $query->is_main_query() &&
( $query->query_vars['post_type'] == 'accounts' || // for single
is_post_type_archive( 'accounts' ) ) ) { // for archive
$query->set( 'post_status', array( 'future', 'publish' ) );
}
}