Search results

  1. Tracking realized volatility

    Hi elfopposwe, if you're aiming to measure integrated vol you've answered yourself and you'll need to use tick data; the usual way we calculate realized vol. If all you have are close to close prices your calculated realized vol will be too wild. Either use a filter with something like the HRS...
  2. Help with OPT++ constraints

    I coded up a garch class in C# not too long ago that used either a Simplex or a heuristic search method, unfortunately I'm unfamiliar with OPT++. But if it helps here is my negative log likelihood (no mean eq): //NEGATIVE LOG LIKELIHOOD FUNCTION static public double...
  3. Math Prorgramming Interview Question

    I think a very simple solution works fine, why make it more difficult? [C# pseudocode] class Program { static Int16 x, y; static void Main(string[] args) { ///ask for (x,y) Console.Write("enter integer x: "); x =...
  4. Math Prorgramming Interview Question

    ^ I'm wondering if that will compile though? Why not find the type limit and store it in say [z] Then for any values [x,y] type cast their absolute product to an able type and do a comparison with [z], if it's smaller, great, otherwise there's a problem
  5. The rise of Python!

    What are some of the advantages of python? Never used it myself.
  6. Simplex or Powell method in C#

    ok, after a little more caffeine I wrote-up the Simplex method from NR. Now I'm just unsure on how to proceed with constraints. Do I go about it the same way as with upper/lower bounds? thanks,
  7. Simplex or Powell method in C#

    Nothing prevents me from coding Powell's routine I'm just a little lazy and I imagine I wouldn't enjoy the experience anyway. I actually already have it within the VNI library, but like I said I need it deployable and licensed library's unfortunately are not. So if someone has done this and...
  8. Simplex or Powell method in C#

    Hey Alain, as far as I'm concerned R is the greatest thing to come along since sliced bread. The reason is I need it to be deploy-able.
  9. Simplex or Powell method in C#

    Hi all, Does anyone mind sharing the nelder-mead or powell method implemented in .Net? I've tried using the Nelder-Mead algorithm from numerical recipes but it's still a bit buggy and I'm not positive I'll be able to use it with constraints. Powell's method would be more ideal and I...
  10. Career/Educational Advice

    Hi viertelasiat, I'm not from the states so I won't give you career or MFE program advice. But on education if I were you I'd make sure to pick up as much math in your selected MFE program as possible. On programming, Matlab (Octave) or S-Plus (R) for data visualization Java or C# for Monte...
  11. Algorithm optimisation using permutations

    Sorry xbuster i read to much into your first sentence about being able to "optimize input parameters". Anyway, I don't recall coming across a library in CS with the performance measures you're looking for (why not write one?). There are a couple measures (Sharpe) in the "tseries" package in R...
  12. Algorithm optimisation using permutations

    Try the SolverFoundation? Microsoft Solver Foundation - Express Edition - Home
  13. Algorithm optimisation using permutations

    Well your best solution is to use the CS IMSL Library: IMSLCS The only downer is you won't be able deploy your solutions to other workstations. If that's a big deal for you, I recommend writing your own optimizer. I came across plenty of examples of the simplex, BFGS, metaheuristics out there.
  14. What kind of computer ?

    i believe Mono should run on a Mac? But use what you can to get the job done.
  15. What numerical / math library is widely used for C++ programming?

    I believe TNT has super-seeded LAPACK. May be wrong cos' i mostly use c#.
  16. Regression with multiple dependent variables

    In answer to your first question, no you wouldn't use inv(x`x)*x`y, because obviously y is no longer an Nx1 vector but becomes a matrix.
  17. Econometrics and Financial engineering and Quantitative Finance

    Econometrics is an umbrella term for anything to with both estimation and economics (incl. finance). Quantitative finance is under that unbrella, but so is survey analysis so it really doesn't say much. On your second question, they're one and the same. imo.
Back
Top