Serving the Quantitative Finance Community

 
User avatar
stt106
Topic Author
Posts: 0
Joined: November 18th, 2007, 2:07 pm

C# books

November 21st, 2008, 11:32 am

Is there any good C# book specifially talking more maths?It would be perfect if there is one talking about financial maths but it doesn't seem to be ( there is one which is terrible according to the comment on amazon)Thx
 
User avatar
snovik
Posts: 0
Joined: December 18th, 2007, 7:47 am

C# books

November 21st, 2008, 12:05 pm

and what is the point?
 
User avatar
Cuchulainn
Posts: 23029
Joined: July 16th, 2004, 7:38 am

C# books

November 21st, 2008, 1:22 pm

QuoteOriginally posted by: snovikand what is the point?I think stt is looking for a good book on C# and maths. Most C# (syntax-only) books are fairly vanilla-flavoured. At least, that's the way I understand it.
Last edited by Cuchulainn on November 20th, 2008, 11:00 pm, edited 1 time in total.
 
User avatar
stt106
Topic Author
Posts: 0
Joined: November 18th, 2007, 2:07 pm

C# books

November 21st, 2008, 2:54 pm

QuoteOriginally posted by: CuchulainnQuoteOriginally posted by: snovikand what is the point?I think stt is looking for a good book on C# and maths. Most C# (syntax-only) books are fairly vanilla-flavoured. At least, that's the way I understand it.you are always right aren't youhow is holland by the way?Guess there is no C# book like your C++ book...maybe you can consider writing one then!
 
User avatar
Cuchulainn
Posts: 23029
Joined: July 16th, 2004, 7:38 am

C# books

November 21st, 2008, 3:27 pm

Flattery will get you nowhere I try to listen to people Now that you ask, I am working on a C# book with a trader for IR applications, lots of Excel communication. We have a TOC in my website below. Some of the models in my C++ books will be in there as well, to balance the book with other kinds of derivatives.Compared to C++, one is much more productive using C#. For desktop apps, it's very good in my experience.Hope this helps.
Last edited by Cuchulainn on November 20th, 2008, 11:00 pm, edited 1 time in total.
 
User avatar
Rufus
Posts: 4
Joined: January 18th, 2002, 5:24 pm

C# books

December 1st, 2008, 10:58 am

The way I do it is to get dedicated programming language books and dedicated financial maths books. So, I would recommend:Programming C#Programming .Net componentsThe second one covers the practicalities of building .Net applications on Windows - all the examples are in C#. For the numerical methods stuff, I use a combination of Wilmott (I have the old version with the black cover that is now out of print), Haug and Tavella.However, I'd recommend doing some study for a deep understanding of financial math - next year might be a good year for that Enjoy!
 
User avatar
WilmottBookshop
Posts: 0
Joined: August 1st, 2002, 2:40 pm

C# books

December 1st, 2008, 12:13 pm

Programming C#, 4th Edition Building .NET Applications with C# by Jesse LibertyProgramming .NET Components by Juval LowyPaul Wilmott on Quantitative Finance, 3 Volume Set + CD-ROM by Paul WilmottThe Complete Guide to Option Pricing Formulas by Espen Gaardner HaugQuantitative Methods in Derivatives Pricing: An Introduction to Computational Finance by Domingo Tavella
 
User avatar
Digamma
Posts: 0
Joined: March 17th, 2008, 3:04 pm

C# books

February 11th, 2009, 4:58 pm

Hi Cuchulainn, Is there a date set for "C# for Trading Systems" yet?The TOC looks good. Although a small discussion on the merits of WPF over winforms would have been good. One of our apps is suffering from Winforms generating too many handles at present.
 
User avatar
Cuchulainn
Posts: 23029
Joined: July 16th, 2004, 7:38 am

C# books

February 11th, 2009, 7:14 pm

QuoteOriginally posted by: DigammaHi Cuchulainn, Is there a date set for "C# for Trading Systems" yet?The TOC looks good. Although a small discussion on the merits of WPF over winforms would have been good. One of our apps is suffering from Winforms generating too many handles at present.Yes, it's moving along. It should be ready this year. But it takes time. The main focus is IR and structured products(with Andrea Germani) and I have ported my C++ library classes to C# as well as PDE/FDM option stuff. That was really very easy. And using patterns in C# is very natural. Most core stuff is finished, it's the writing that takes time.To be honest, doing this project in C++ would take 3 times as long (or, C# three times as fast).Can you describe what WinForms you are doing that causes these problems?
Last edited by Cuchulainn on February 10th, 2009, 11:00 pm, edited 1 time in total.
 
User avatar
Digamma
Posts: 0
Joined: March 17th, 2008, 3:04 pm

C# books

February 17th, 2009, 12:51 pm

Not much time at the minute. One of the key things was that winforms, and the lack of flexibility for custom controls, sent us down the route of a 3rd party to provide grids and suchlike. We're finding that they are slowing us down by 30-40% at least. Partially this problem is alleviated by using WPF as we have more flexibility in designing the controls (with the added bonus of being able to use the hardware acceleration - winforms were locking up the trade entry screens for unacceptable periods of time). There are other factors other than our poor design/3rd party decision but I'll have to get back and write them up again at some point soon when time allows.