Serving the Quantitative Finance Community

Search found 3 matches

by mikewoodhouse
December 9th, 2002, 11:45 am
Forum: Programming and Software Forum
Topic: time series database packages
Replies: 8
Views: 190909

time series database packages

<t>...and there's always FAME, which I used briefly a few years ago. it was designed from the ground up to handle time series data efficiently and seemed pretty much to do that. It has its own language, FAME4GL (or something like that), with which I didn't get on too well, but the traders who used i...
by mikewoodhouse
September 24th, 2002, 10:24 pm
Forum: Programming and Software Forum
Topic: Monte Carlo XLL
Replies: 3
Views: 190315

Monte Carlo XLL

If you have Visual Studio there may be some benefit in moving your VBA code to "straight" Visual Basic, wrapped in a COM DLL, then call that from VBA. I have had some success with this in the past: it's a lot less work than rewriting in C++ (ugh) or Delphi and it may just be fast enough.
by mikewoodhouse
September 24th, 2002, 9:54 pm
Forum: Programming and Software Forum
Topic: XP - Extreme Programming
Replies: 10
Views: 191031

XP - Extreme Programming

<t>A good set of unit tests developed using test-first (i.e. write a failing test, then write the simplest code that could possibly make the test succeed) is a marvellous discipline in itself but it's still going to lead (potentially) to spaghetti without refactoring, which is the driver for emergen...