Exists filter or action that change Add New Post link?

This can be achieved by using the admin_url filter:

function add_new_post_url( $url, $path, $blog_id ) {

    if ( $path == "post-new.php" ) {
        $path = "post-new.php?param=value";
    }

    return $path;
}
add_filter( 'admin_url', 'add_new_post_url', 10, 3 );