Serving the Quantitative Finance Community

Search found 16 matches

  • 1
  • 2
by pascalroca
January 15th, 2008, 11:21 am
Forum: Numerical Methods Forum
Topic: C++/C# code for inverting an N * N matrix
Replies: 11
Views: 86294

C++/C# code for inverting an N * N matrix

<r> you are 100% right , try to inverse the matrix is stupid , is like to try to calculate kramer coefficient <E>:-)</E> try at first to study the properties of the matrix ..... and after try to find the right method if the matrix is symetric ..... --> cholesky krylov for big matrix with few element...
by pascalroca
January 17th, 2007, 8:02 am
Forum: Technical Forum
Topic: Paper on electronic trading
Replies: 4
Views: 82735

Paper on electronic trading

your link dont work :-)
by pascalroca
January 15th, 2007, 3:50 pm
Forum: Technical Forum
Topic: Paper on electronic trading
Replies: 4
Views: 82735

Paper on electronic trading

<r> you can have a look to the fixprotocol specifiaction <URL url="http://www.fixprotocol.org/">http://www.fixprotocol.org/</URL> most of exchanges support this protocol there is some commercial engine that implements the fix procol (version 4.1,4.2,4.3,4.4) you can have a look at <URL url="http://w...
by pascalroca
September 22nd, 2006, 6:23 am
Forum: Programming and Software Forum
Topic: speed up monte carlo simulation
Replies: 40
Views: 96916

speed up monte carlo simulation

where can i find some papers on monte carlo simulation methods and their implementation thanks
by pascalroca
September 22nd, 2006, 6:17 am
Forum: Programming and Software Forum
Topic: newbie question : what is the best method for
Replies: 1
Views: 92370

newbie question : what is the best method for

newbie question : what is the best method for pricing an american option thanks :-0)
by pascalroca
September 7th, 2006, 8:18 am
Forum: Programming and Software Forum
Topic: profiling with visual C++ 7.1
Replies: 5
Views: 93958

profiling with visual C++ 7.1

come on guy ! use quantify, purify, coverage :-0)
by pascalroca
August 1st, 2006, 1:50 pm
Forum: Programming and Software Forum
Topic: Perl- What is the advantage?
Replies: 13
Views: 99185

Perl- What is the advantage?

perl is famous for regular expression , it s easy to deal with it
by pascalroca
August 1st, 2006, 1:39 pm
Forum: Programming and Software Forum
Topic: Perl- What is the advantage?
Replies: 13
Views: 99185

Perl- What is the advantage?

a mix of c++ and perl is also common you can have a look at Shared Source Common Language Infrastructure source you can compile and execute :-)
by pascalroca
July 26th, 2006, 11:03 am
Forum: Programming and Software Forum
Topic: VBA & C++ for beginners!!!
Replies: 67
Views: 212672

VBA & C++ for beginners!!!

with string bulider you will be able to construct your string at runtime with the method : Append
by pascalroca
July 26th, 2006, 10:59 am
Forum: Programming and Software Forum
Topic: VBA & C++ for beginners!!!
Replies: 67
Views: 212672

VBA & C++ for beginners!!!

then ?
by pascalroca
July 26th, 2006, 10:59 am
Forum: Programming and Software Forum
Topic: VBA & C++ for beginners!!!
Replies: 67
Views: 212672

VBA & C++ for beginners!!!

<t>class StringBuilder{public: template<typename T> void Append( const T & t ) { this->oss << t; } std::string GetString() const { return this->oss.str(); }private: std:stringstream oss;};template <typename T> class toto{T a;public : toto();~toto();};template <typename T> toto<T>::toto(){}templa...
by pascalroca
July 26th, 2006, 10:55 am
Forum: Programming and Software Forum
Topic: VBA & C++ for beginners!!!
Replies: 67
Views: 212672

VBA & C++ for beginners!!!

<r>template <typename T> class toto{ T a;public : toto(); ~toto();};template <typename T> toto<T>::toto(){}template <typename T> toto<T>::~toto(){}template<> class toto<std::string>{ std::string a;public : toto(){ a="ABC";} // bad hardcoded <E>:-)</E> ~toto(){};};int _tmain(int argc, _TCHAR* argv[])...
by pascalroca
July 26th, 2006, 10:15 am
Forum: Programming and Software Forum
Topic: VBA & C++ for beginners!!!
Replies: 67
Views: 212672

VBA & C++ for beginners!!!

c++ linkgood luck !you will find there some reviews on books books Review
by pascalroca
July 19th, 2006, 7:16 am
Forum: Programming and Software Forum
Topic: C++ for beginner (+ Birkbeck)
Replies: 6
Views: 99704

C++ for beginner (+ Birkbeck)

yes you right but there is some easy pattern for beginner
by pascalroca
July 19th, 2006, 6:56 am
Forum: Programming and Software Forum
Topic: Parallel Processing in C++
Replies: 58
Views: 109998

Parallel Processing in C++

  • 1
  • 2