The question is what is worse, a deadlock or a wrong value?
For finanical databases, deadlocks are far worse than wrong values. I know that sounds backwards, but hear me out. The traditional example of DB transactions is you update two rows, subtracting from one and adding to another. That is bullshit.
In a financial database you use business transactions. That means adding one row to each account. It is of upmost importance that these transactions complete and the rows are successfully written.
Getting the account balance temporarily wrong isn't a big deal, that is what the end of day reconciliation is for. And an overdraft from an account is far more likely to occur because two ATMs are being used at once than because of a uncommitted read from a database.
That said, SQL Server 2005 fixed most of the bugs that made nolock necessary. So unless you are using SQL Server 2000 or eariler, you shouldn't need it.
EDIT: Info on Row Level Versioning
http://www.sqlservercentral.com/articles/SQL+Server+2005/62464/