VS 2010

Jul 29
2010

Finally, I migrated all my project to Visual Studio 2010 Express. Unfortunatelly, the Subversion Plugin is not available for the express editions,… but… here there are some instructions on how to integrate the TortoiseSVN into the VS Express. I will try it out…

more quant resources

Nov 27
2009

Free C/C++ Matlab Code for Derivative Pricing

Differential Evolution

On-Line Calculator for the Heston Model


xlw 4.0

Sep 30
2009

xlw 4.0 is out. I’ll have to work with it anyway, so, perhaps, I’ll share some of my  experience.

Dynamic Creator under Visual Studio

Sep 18
2009

In my master thesis I described the application of classical Monte Carlo methods for the Heston Model. For the implementation one usually requires a very good Random Numbers Generator. Read the rest of this entry »

How to enable memory leaks reporting in VC++

Sep 15
2009
#include <windows.h>

HANDLE hLogFile;

/**
 * enable memory leaks reporting
 *
 * @param file - file name
 */
void enableMemoryLeaksReporting(std::string file) {
   hLogFile = CreateFile(file.c_str(), GENERIC_WRITE, FILE_SHARE_WRITE,
                NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);

   _CrtSetDbgFlag(_CRTDBG_ALLOC_MEM_DF | _CRTDBG_CHECK_CRT_DF |
                      _CRTDBG_LEAK_CHECK_DF);
   _CrtSetReportMode(_CRT_WARN, _CRTDBG_MODE_FILE);
   _CrtSetReportFile(_CRT_WARN, hLogFile);
};

xlw for Visual Studo 2005 Express

Sep 11
2009

If somebody needs, here is a pre-built version of XLW for Visual Studio 2005 Express edition.

Pages List

General info about this blog...