Serving the Quantitative Finance Community

Search found 33 matches

by king
November 12th, 2003, 7:12 pm
Forum: Careers Forum
Topic: Financial aid for international students in CMU and NYU FE
Replies: 7
Views: 190279

Financial aid for international students in CMU and NYU FE

i tried couple of yrs ago - unfortunately I didn't receive any funding. maybe u can try fulbright?
by king
October 2nd, 2003, 6:06 pm
Forum: Careers Forum
Topic: deadlines for internships
Replies: 2
Views: 189633

deadlines for internships

see i-bank websites
by king
September 29th, 2003, 6:29 am
Forum: Book And Research Paper Forum
Topic: Portfolio Books
Replies: 4
Views: 190174

Portfolio Books

Any recommendations for books on portfolio theory from a practical perspective?Thanks
by king
August 31st, 2003, 9:36 am
Forum: Careers Forum
Topic: quant, marketer, structurer or trader?
Replies: 1
Views: 189967

quant, marketer, structurer or trader?

please turn on your private messaging
by king
August 18th, 2003, 12:14 pm
Forum: Careers Forum
Topic: what are job prospects after phd quant?
Replies: 10
Views: 190984

what are job prospects after phd quant?

Where Do You Want To Go Today?
by king
August 15th, 2003, 7:22 pm
Forum: Careers Forum
Topic: Non-finance questions for equity derivatives rsrch / trading
Replies: 6
Views: 189985

Non-finance questions for equity derivatives rsrch / trading

they may not ask you any questions to begin with - you may have a silent conversation - until a conversation is triggered anyway.
by king
August 13th, 2003, 11:23 am
Forum: Programming and Software Forum
Topic: C++ problem
Replies: 7
Views: 190933

C++ problem

Thanks for the quick responses.I don't think atltime.h is packaged with vc6.0 - but I know it is with vc7.0Debug multithreaded option resolves the error.What impact does this option have on my code?
by king
August 13th, 2003, 10:24 am
Forum: Programming and Software Forum
Topic: C++ problem
Replies: 7
Views: 190933

C++ problem

<t>#include <AFX.H>void main() { CTime t; return;}upon build in VC6.0 the following error arisesCompiling...Cpp1.cppLinking...nafxcwd.lib(thrdcore.obj) : error LNK2001: unresolved external symbol __endthreadexnafxcwd.lib(thrdcore.obj) : error LNK2001: unresolved external symbol __beginthreadexDebug/...
by king
August 10th, 2003, 8:37 am
Forum: Student Forum
Topic: Hot Spots and Hedges
Replies: 1
Views: 189733

Hot Spots and Hedges

Anyone know where I can find the following paper to download off web..?Litterman, Robert; Hot Spots and Hedges 1996
by king
August 6th, 2003, 3:13 pm
Forum: Programming and Software Forum
Topic: Random Numbers in C++
Replies: 10
Views: 191573

Random Numbers in C++

"rand() to do this fairly sufficiently if I were to make just one sample."you can generate a sequence of random numbers using rand(). consecutive calls to this function generates a sequence of random numbersnb you only need so seed rand once
by king
July 17th, 2003, 5:36 am
Forum: Student Forum
Topic: Quasi Random Numbers
Replies: 3
Views: 189813

Quasi Random Numbers

but how can the sobol be used to generate sequence of UNIFORM quasi random numbers INSTEAD of "points".
by king
July 16th, 2003, 6:33 am
Forum: Student Forum
Topic: Quasi Random Numbers
Replies: 3
Views: 189813

Quasi Random Numbers

<t>Anyone know where I could find some algorithms to generate a sequence of uniform quasi random numbers?Also, I would be grateful if someone could explain the sobol sequence in Numerical recipies in C. Specifically, how can it be used to generate sequence of uniform quasi random numbers instead of ...
by king
July 4th, 2003, 6:52 pm
Forum: Programming and Software Forum
Topic: C++ problem
Replies: 7
Views: 190758

C++ problem

<t>New Problem:Suppose we have a class Base and a class Derived which inherits from Base.vector<Base> b;Derived d();b.push_back(d);Question? is b capable of having polymorphic behaviour ? i.e. can I invoke a virtual member function in Base by indexing the vector that will execute function defined in...
by king
July 3rd, 2003, 6:31 pm
Forum: Programming and Software Forum
Topic: C++ problem
Replies: 7
Views: 190758

C++ problem

spot on ! thats what I was just about to say...
by king
July 3rd, 2003, 8:11 am
Forum: Programming and Software Forum
Topic: C++ problem
Replies: 7
Views: 190758

C++ problem

//in A.hclass A {.....}; ///////////////////////////////in A.cppA::A {.....}//////////////////////////////////in B.hclass B: public A {public: B(....);}; //in B.cpp////////////////////////////B::B(..) : A(...) { ...}B.obj has linking problem