Serving the Quantitative Finance Community

Search found 35 matches

by brownie74
January 19th, 2009, 8:46 am
Forum: Student Forum
Topic: Swaps Pricing
Replies: 3
Views: 44391

Swaps Pricing

<t>Initially a swap has zero value to both parties right? But since after the swap is done and interest rates move, it then has value, i'm wondering if there is a secondary market for selling the swap on.Let me try and contrive an example...I may have entered into a swap and receive fixed and pay fl...
by brownie74
January 18th, 2009, 12:31 am
Forum: Student Forum
Topic: Swaps Pricing
Replies: 3
Views: 44391

Swaps Pricing

Hi,I've been reading about Swaps Pricing. Seems pretty straight forward to value an existing interest rate swap.Is there a secondary market for Swaps though? If not, why bother pricing them?Is it done for mark-to-market accounting perhaps?Thanks
by brownie74
September 13th, 2008, 7:18 am
Forum: Careers Forum
Topic: ACI Financial Markets Assoc - certificates
Replies: 2
Views: 49522

ACI Financial Markets Assoc - certificates

QuoteOriginally posted by: mitactually i am considering starting a certification..MIT Diploma in Company Valuation. you can visit the website at www.20jack.com/page1.htmYou are clearly, a cock!
by brownie74
September 12th, 2008, 2:21 pm
Forum: Careers Forum
Topic: ACI Financial Markets Assoc - certificates
Replies: 2
Views: 49522

ACI Financial Markets Assoc - certificates

<r>Operations Certificate / Dealing CertificateAre these any good? Worth doing?Is Dealer accreditation from the ACI a way into FX Dealing for someone who already works in a B/O programming role? Or am I being a little naive? <URL url="http://www.aciforex.com/gb/aciforex-page.cfm?page_id=38">http://w...
by brownie74
August 24th, 2008, 8:36 am
Forum: Careers Forum
Topic: What's a Business Analyst ?
Replies: 26
Views: 58929

What's a Business Analyst ?

<t>QuoteOriginally posted by: DominicConnorI agree with phil451, developers do not push for the the necessary information hard enough. My view is that this is because they are poorly managed and incentivised, and that BA's make this worse.Thus I think that Business Analysis is too critical to be a m...
by brownie74
June 15th, 2008, 12:08 pm
Forum: Student Forum
Topic: How to value a loan?
Replies: 5
Views: 56536

How to value a loan?

<t>QuoteOriginally posted by: AaronI think you're asking how to value a loan with compounding payments at a variable rate. For example, suppose the rate is monthly LIBOR + 60 in arrears. Let L0 be one-month LIBOR today, L1 be one-month LIBOR in one month, and so on. For each $1 of loan amount, the r...
by brownie74
June 14th, 2008, 12:49 pm
Forum: Student Forum
Topic: How to value a loan?
Replies: 5
Views: 56536

How to value a loan?

<t>QuoteOriginally posted by: daveangelmy view is that the credit valuation will overwhelm the "technical" valuation. you have to have an estimate of the spread that you demand to hold this loan. for example you might want to see where the CDS trades on the issuer of the loan. Once you know that the...
by brownie74
June 14th, 2008, 12:01 pm
Forum: Student Forum
Topic: How to value a loan?
Replies: 5
Views: 56536

How to value a loan?

<t>Hi,I have a term loan, monthly compounding interest over a year. I want to price it.I think i should simply sum the present value of the cashflows, right?If the rate is fixed for the life of the loan I can work out the future cashflow amountsusing the compound interest formula.If the rate is vari...
by brownie74
May 18th, 2008, 10:04 am
Forum: Programming and Software Forum
Topic: visitor design pattern
Replies: 66
Views: 74304

visitor design pattern

<t>Quote1. depends on _your_ perspective on what constitutes OO principles. Then I can respond in more detail. Encapsulation is the principle. The problem with seperating the OptionPricer from the Option is when changes happen to the Option, they perculate to the Pricer. Instead of changing one clas...
by brownie74
May 18th, 2008, 12:14 am
Forum: Programming and Software Forum
Topic: visitor design pattern
Replies: 66
Views: 74304

visitor design pattern

<t>Surely seperating out the implementation of the Pricer from the Instrument is counter to (Application Level) OO principlesthat data and functions should sit together?Also, when you add new data, don't you have to go to your base Visitor interface and add a signature, which is implemented to do no...
by brownie74
April 26th, 2008, 2:05 pm
Forum: Careers Forum
Topic: I hate programming.
Replies: 64
Views: 64668

I hate programming.

<t>QuoteOriginally posted by: CuchulainnQuote I bought Duffies book, Actually, I wrote 2, one of which was for beginning.Do you have the Green or the Orange book? Have a look at my site below for more relevant information, on courses.Have you thought of C#? The threshold is much, much lower than C++...
by brownie74
April 10th, 2008, 11:10 am
Forum: Careers Forum
Topic: Junior Trader
Replies: 8
Views: 58194

Junior Trader

What would a Junior Trader be doing typically?How long do traders remain Juniors typically?What sort of educational background would you expect a Junior Trader to have?How much training is given? Do Junior Traders most often come through graduate programmes?
by brownie74
February 22nd, 2008, 12:37 pm
Forum: Programming and Software Forum
Topic: C++ vs. Java
Replies: 85
Views: 134291

C++ vs. Java

On the subject of interfaces decoupling from implementation.You are merely removing an explicit coupling and replacing with an implicit one.Mapping code to/from canonical form is semantically the same as an API call.
by brownie74
February 22nd, 2008, 12:27 pm
Forum: Programming and Software Forum
Topic: C++ vs. Java
Replies: 85
Views: 134291

C++ vs. Java

<t>Coding to interfaces: the most misused "OO" concept.You write a class, extract an interface and make your class implement the interface. Then, do you expect a second class to be able to implement that interface sensibly?You cannot generalise from a sample of 1. You will have to bend your new code...
by brownie74
February 21st, 2008, 12:16 pm
Forum: Programming and Software Forum
Topic: C++ vs. Java
Replies: 85
Views: 134291

C++ vs. Java

<t>Java Generics are for all intents and purposes the same as C++ templates for most people. Inheritance is vertical generalisation. Generics/templates are horizontal generalisation. Combine the two and you have a 2D space of types. Use either one and you extend on one axis. Who uses template metapr...