Mark Joshi's (markjoshi.com) site has a pretty good set of information for aspiring quants (in particular, see the "advice for aspiring quants" bit). The "careers" forum on nuclearphynance.com is also pretty good, and might also shatter some preconceptions about how easy it is to waltz into the industry. (note: nuclearphynance seems to be down at the time of writing)
Here is a reddit link that collects a few quants (from nuclear phynance mostly) saying that the labour market, especially the junior labour market, is tight and not likely to expand any time soon: http://www.reddit.com/r/quantfinance/comments/jl5ea/there_ar... If there's a SE, discussions on HN, thousands of MFE's being minted, and so many books on quant finance topics, you really have to wonder if the quant labour m…
Good books for hackers interested in quant finance?
41–50 of 62 posts
Re: Good books for hackers interested in quant finance?
#42Here is his page on actex, take a look at some of the previews and I think you will be sold. http://www.actexmadriver.com/contributorinfo.cfm?ContribID=8...
Re: Good books for hackers interested in quant finance?
#43People think all quant finance is the same as HFT. It's not. A big part of algorithmic trading and stat arb is portfolio management, including deriving alpha, building risk models, etc. The bible is: http://www.amazon.com/Active-Portfolio-Management-Quantitati...
Re: Good books for hackers interested in quant finance?
#44Earlier quoted context omitted.
Here is a reddit link that collects a few quants (from nuclear phynance mostly) saying that the labour market, especially the junior labour market, is tight and not likely to expand any time soon: http://www.reddit.com/r/quantfinance/comments/jl5ea/there_ar... If there's a SE, discussions on HN, thousands of MFE's being minted, and so many books on quant finance topics, you really have to wonder if the quant labour m…
If this is true (and I agree with you somewhat) what are the new MFE graduates from Asia and here in the USA doing with their expensive degrees if they can't find a job as quant?
There will, however, always be lucrative jobs for those who are truly brilliant and willing to work on stuff which is kinda boring.
Re: Good books for hackers interested in quant finance?
#45Earlier quoted context omitted.
Here is a reddit link that collects a few quants (from nuclear phynance mostly) saying that the labour market, especially the junior labour market, is tight and not likely to expand any time soon: http://www.reddit.com/r/quantfinance/comments/jl5ea/there_ar... If there's a SE, discussions on HN, thousands of MFE's being minted, and so many books on quant finance topics, you really have to wonder if the quant labour m…
If this is true (and I agree with you somewhat) what are the new MFE graduates from Asia and here in the USA doing with their expensive degrees if they can't find a job as quant?
There will, however, always be lucrative jobs for those who are truly brilliant and willing to work on stuff which is kinda boring.
Re: Good books for hackers interested in quant finance?
#46http://www.amazon.com/Triumph-Contrarian-Investing-Beating-A...
Re: Good books for hackers interested in quant finance?
#47http://www.amazon.com/Being-Right-Making-Money-Davis/dp/0970...
Re: Good books for hackers interested in quant finance?
#48http://www.amazon.com/Quantitative-Trading-Build-Algorithmic...
Chan's blog is informative as well,
Re: Good books for hackers interested in quant finance?
#49For example, here's a tiny scala pricer I coded up in 5 minutes to spit out the price of a google at-the-money call expiring 47 days from now, on Dec 17 using a 10k Monte-Carlo simulation.
--
val risk = 0.28 // google has a 28% implied vol
val T = 47.0/365 // 47 days annualized
println((1 to 10000).toList.map(_=>Random.nextGaussian).map(x=>595 * exp((-risk * risk/2) * T + risk * sqrt(T) * x)).map(x=>max(0,(x-595))).sum/10000)
--
Output: $23 & change ( its selling at about $23 right now )
To veyron's excellent list, I'd add Brandimarte's "Numerical Methods in Finance".
Re: Good books for hackers interested in quant finance?
#50You need to be a little more specific regarding your interests and background. If you are interested in theory, there are plenty of books discussing specific models. However, most practical or buzzword (e.g. HFT) books are rubbish (think about it: if you have a profitable operation, why would you write a book? Unless, like me, you have a screw loose :P ) If you want some practical discussions, "Trading and Exchanges"…
Nassim Taleb's "Dynamic Hedging" is the finest book I'm aware of on the subject of actually trading/managing vol portfolios. It's REALLY good. And dense.
"Paul Wilmott on Quantitative Finance" vol 1-3 are worth having as a reference, perhaps.