Serving the Quantitative Finance Community

Search found 341 matches

  • 1
  • 2
  • 3
  • 4
  • 5
  • 23
by bojan
September 14th, 2015, 11:54 am
Forum: Programming and Software Forum
Topic: technology stack for analysing 1Tb dataset
Replies: 10
Views: 7815

technology stack for analysing 1Tb dataset

You can easily buy a machine with 1 TB of RAM today (for maybe 15k USD?). So you don't really need "bid data" technologies unless you want to use them for their parallelisation capabilities rather then for their data volume handling capabilities.
by bojan
May 29th, 2015, 10:42 am
Forum: Programming and Software Forum
Topic: sample cuda problems in finance
Replies: 143
Views: 59340

sample cuda problems in finance

I would recommend this slide deck for an explanation of the space of SIMD/SIMT/XXXX possibilities and what they mean.
by bojan
May 13th, 2015, 8:03 am
Forum: Programming and Software Forum
Topic: C++ package manager
Replies: 14
Views: 7016

C++ package manager

Since C++ packages are directory based and fairly simple general purpose package managers can do the job of managing C++ packages quite well. I quite like NiX
by bojan
February 22nd, 2013, 11:14 am
Forum: Programming and Software Forum
Topic: ISDA CDS Excel code
Replies: 2
Views: 9470

ISDA CDS Excel code

Check that the DLL you built (i.e., the xll file) has the xlAutoOpen function (use a library inspection utility of some sort).
by bojan
February 7th, 2013, 7:48 am
Forum: Programming and Software Forum
Topic: PyXLL - Create Excel Addins with Pyton
Replies: 20
Views: 35777

PyXLL - Create Excel Addins with Pyton

<r>No recompilation should be necessary as Excel add-ins register themselves the functions they want to expose rather than these functions being loaded from the "dll" in some standard way. This means that new add-in functions can be defined at run-time and in the case of Python integration addins th...
by bojan
September 18th, 2012, 10:24 am
Forum: Programming and Software Forum
Topic: IBs sharing software
Replies: 20
Views: 13813

IBs sharing software

QuoteOriginally posted by: farmer At least wait until Deutsche actually sells their software before writing a story about it.This was my indeed my original question -- do people here know of on-the-ground steps taken to follow up on this pronouncement?
by bojan
September 17th, 2012, 12:19 pm
Forum: Programming and Software Forum
Topic: IBs sharing software
Replies: 20
Views: 13813

IBs sharing software

<t>Good idea, but I've always been a bit skeptical it will get much traction. However, from FT via FT Alphaville on Friday:QuoteDeutsche Bank is seeking to convince rival investment banks to share markets and trading software in an effort collectively to lower costs for the financial industry, repor...
by bojan
September 3rd, 2012, 5:58 am
Forum: Programming and Software Forum
Topic: Mathematica and Integration
Replies: 19
Views: 23756

Mathematica and Integration

It can do Taylor expansions, but I have not myself much exercised this functionality.
by bojan
August 31st, 2012, 11:35 am
Forum: Programming and Software Forum
Topic: Mathematica and Integration
Replies: 19
Views: 23756

Mathematica and Integration

Works I think in Maxima, see the listing below. And Maxima has the advantage that we can collectively make it better as it is open-source...
by bojan
June 2nd, 2012, 8:49 am
Forum: Programming and Software Forum
Topic: large data files - c++
Replies: 7
Views: 14165

large data files - c++

The HDF5 library is designed pretty much exactly for this... It has options to memmap files when opening.
by bojan
May 28th, 2012, 3:28 pm
Forum: General Forum
Topic: Does it make sense to think about IRS returns?
Replies: 5
Views: 13140

Does it make sense to think about IRS returns?

<t>If you buy a naked fixed-for-floating swap you are essentially running a synthetic bank, lending at the long term rate and borrowing at short term rates. Does it make sense to talk about return for a bank? How do you account for costs of maintaining a high credit rating and providing suitable col...
by bojan
May 28th, 2012, 3:15 pm
Forum: Programming and Software Forum
Topic: Can a C++ program work well even though an exception is thrown from a class ?
Replies: 4
Views: 13077

Can a C++ program work well even though an exception is thrown from a class ?

See http://www.gotw.ca/gotw/066.htm . Many interview questions derive from GOTW, although sometimes they've been passed down through so many generations that the interviewers do not remember that any more...
by bojan
May 21st, 2012, 8:49 pm
Forum: Programming and Software Forum
Topic: Quantlib Question about Optimization - Help please
Replies: 7
Views: 15350

Quantlib Question about Optimization - Help please

You probably want to use something like GLPK (http://ftp.gnu.org/gnu/glpk/) rather than QuantLib for this type of linear programming problem.
by bojan
March 21st, 2012, 10:07 pm
Forum: Programming and Software Forum
Topic: Pure virtual functor
Replies: 24
Views: 17787

Pure virtual functor

<t>Excessive copies is reckognised as one problem in some std:: algorithms. In fact the boost::ref library was written precisely to address this problem in some cases. In your case you would need to use both boost::ref and boost::bind, so that is breaking your constraints, but if you are interested ...
by bojan
March 19th, 2012, 11:54 am
Forum: Programming and Software Forum
Topic: QLNet Vanilla Options with Discrete Dividends (C# port of QuantLib)
Replies: 10
Views: 17939

QLNet Vanilla Options with Discrete Dividends (C# port of QuantLib)

You can use the C# wrap of QuantLib generated using the SWIG program. See Quantlib-SWIG part of the QuantLib repository
  • 1
  • 2
  • 3
  • 4
  • 5
  • 23