Serving the Quantitative Finance Community

Search found 38 matches

by isometry
July 29th, 2013, 2:08 pm
Forum: Student Forum
Topic: CFA exams
Replies: 57
Views: 61111

CFA exams

Got through level II
by isometry
April 20th, 2013, 6:53 pm
Forum: Student Forum
Topic: Cumulative Prospect Theory
Replies: 1
Views: 7822

Cumulative Prospect Theory

Not sure what you mean by finding the CPT but I think what would probably be done in the text was historical returns -> histogram -> approximation for CDF -> combine with the utility function on gain/losses to get the expected value.
by isometry
April 2nd, 2013, 12:32 pm
Forum: Student Forum
Topic: Unique solution to Fokker Planck/Kolmogorov forward equation
Replies: 8
Views: 11984

Unique solution to Fokker Planck/Kolmogorov forward equation

QuoteI can solve the KFE by separation of variables and then apply Sturm Liouville theorem to determine the solution. Can you?
by isometry
March 13th, 2013, 9:15 am
Forum: Student Forum
Topic: Geometric Brownian Motion - Positive Price
Replies: 4
Views: 9040

Geometric Brownian Motion - Positive Price

<t>QuoteI am studying the GBM and I wonder me which is the rationale behind the fact the this model is able to generate only positive prices.Only if the initial price in positive...QuoteI know that the solution of the GBM is distributed according a lognormal distribution and so the solution must be ...
by isometry
March 8th, 2013, 12:18 pm
Forum: Student Forum
Topic: Multiplying Two HUGEEE Matrices in Matlab
Replies: 5
Views: 9466

Multiplying Two HUGEEE Matrices in Matlab

1) Doubt it. There are methods for faster sparse matrix multiplication but we could safely assume matlab has them implemented.2) I think setting the precision of matlab to a higher value would be better.
by isometry
March 6th, 2013, 4:13 pm
Forum: Programming and Software Forum
Topic: C++ design question
Replies: 42
Views: 14974

C++ design question

<t>QuoteOriginally posted by: DevonFangsQuoteOriginally posted by: isometryclass Pool { // Contains data/methods for all available securities};class VaRPool : public Pool { // Saves some index information to make calculation of VaR fast};class CVaRPool : public Pool { // Saves some index information...
by isometry
March 6th, 2013, 4:05 pm
Forum: Programming and Software Forum
Topic: C++ design question
Replies: 42
Views: 14974

C++ design question

<t>QuoteOriginally posted by: CuchulainnFirst of all, inheritance is very bad (it's very 90's). To be honest, it's an OOP knee-jerk reaction.The are several other classes using the abstract Pool class. For example, a class Portfolio which takes Pool as an argument in constructors. Having different i...
by isometry
March 6th, 2013, 2:45 pm
Forum: Programming and Software Forum
Topic: C++ design question
Replies: 42
Views: 14974

C++ design question

<t>class Pool { // Contains data/methods for all available securities};class VaRPool : public Pool { // Saves some index information to make calculation of VaR fast};class CVaRPool : public Pool { // Saves some index information to make calculation of CVaR fast};class Selector { operator()(Pool&...
by isometry
March 6th, 2013, 1:37 pm
Forum: Programming and Software Forum
Topic: C++ design question
Replies: 42
Views: 14974

C++ design question

Please please elaborate.
by isometry
March 6th, 2013, 1:37 pm
Forum: Programming and Software Forum
Topic: C++ design question
Replies: 42
Views: 14974

C++ design question

Okay then!
by isometry
March 6th, 2013, 10:31 am
Forum: Programming and Software Forum
Topic: C++ design question
Replies: 42
Views: 14974

C++ design question

<t>I am writing a class to represent a pool of securities to be used in a portfolio selector. Depending on the objective metric and constraints, the class objects will cache some relevant data for performance optimization. This could be done by defining a base class containing the common elements an...
by isometry
February 26th, 2013, 12:58 pm
Forum: Student Forum
Topic: interesting coin game
Replies: 3
Views: 8646

interesting coin game

Assuming you invest all your winnings back to the game , you should calculate the utility at the stopping times T1, T2, ...Then select the stopping time which gives maximum expected utility.
by isometry
February 20th, 2013, 12:48 pm
Forum: Student Forum
Topic: Conditional Expectation
Replies: 5
Views: 8599

Conditional Expectation

E[x+y]=E[x]+E[y]
by isometry
February 1st, 2013, 12:56 pm
Forum: Student Forum
Topic: expectation of random variable
Replies: 4
Views: 8940

expectation of random variable

If they are independent, E[xy] = E[x]E[y] then use arithmetic > geometric > harmonic mean on the squares...I think it should work