No, it's not already included. There are a few options:
1. You could write a Javascript that checks whether the question is in all caps and warns the user. You could even prevent form submission with JS if the post is more than say 80% capitals.
2. Do the above in PHP. It would be best to check if it's all capitals first, and if so, lower case it. That way regular titles can be capitalized in the correct way. You could do the following the capitalize the first letter:
$str = strtolower($str);
$str[0] = strtoupper($str[0]);
Or use the ucwords function on the entire string, To Make Each Word Capitalized Like This.