Serving the Quantitative Finance Community

Search found 17 matches

  • 1
  • 2
by gregorios
January 17th, 2005, 6:58 pm
Forum: Technical Forum
Topic: credit spreads as indicators of firm performance?
Replies: 3
Views: 163654

credit spreads as indicators of firm performance?

<t>Also note that the relative performance between equity and debt depends on whether the managment of a company favours shareholders or bondholders.e.g. a reduction in dividends to buy-back debt should disadvantage equity performance and benefit credit spreadsif of course a company goes to default,...
by gregorios
January 15th, 2005, 9:44 pm
Forum: Programming and Software Forum
Topic: Array of Arrays in VBA
Replies: 4
Views: 165502

Array of Arrays in VBA

Better avoid using "Redim Preserve" inside a loop as it tends to slow things downCould oversize the array to begin with and then re-size it exactly after the loop is run, e.g.Redim x(1000)For i = 1 To n if bCondition then x(i) = i k=k+1 EndifNext iReDim Preserve x(k)
by gregorios
January 15th, 2005, 9:27 pm
Forum: Programming and Software Forum
Topic: VBA function with object arguments
Replies: 3
Views: 165269

VBA function with object arguments

If "Wgt" is an object, as inidcated by the funsciton declaration,you need to useSet Wgt = ActiveSheet.Range("B1:B20")rater thanWgt = ActiveSheet.Range("B1:B20")In the absence of the "Set" keyword Wgt is assigned the values of the range rather than the range itself
by gregorios
January 14th, 2005, 11:10 pm
Forum: Programming and Software Forum
Topic: MATHCAD in finance
Replies: 7
Views: 190789

MATHCAD in finance

<t>Further, you can use a MathCAD file programatically in VBA via the MCAD COMe.g.1) Start MCAD programatically2) Open MCAD file3) Pass input data from Excel to MCAD file4) Calculate5) Pass output data from MCAD file back into ExcelThis way you can combine data handling in excel and modelling in MCA...
by gregorios
April 2nd, 2004, 8:58 am
Forum: Technical Forum
Topic: CDO-squareds v/s single-tranche CDOs
Replies: 12
Views: 191760

CDO-squareds v/s single-tranche CDOs

Dear allCan you provide any material about methodologies to calculate the sensitivities of CDO squared, e.g. deltas, rhos, thetas etc ?Thanks and best regards
by gregorios
August 21st, 2003, 2:14 pm
Forum: Technical Forum
Topic: 2nd To Default
Replies: 6
Views: 190356

2nd To Default

Stefanone,May I have a soft copy of this paper please.greg.gema@virgin.netMany thanks,Gregory.
by gregorios
August 21st, 2003, 1:53 pm
Forum: Technical Forum
Topic: Random Portfolio Weights' Algorithm
Replies: 11
Views: 191717

Random Portfolio Weights' Algorithm

<t>To pburns:You're correct, in the case you are comparing your portfoilio against a benchmark.I need to see the whole cloud of points not just the efficent frontier line.To jazzjulien:Did you somehow dispatch only part of your reply or are you not willing to share the algorithm.Generally:I find Ala...
by gregorios
August 20th, 2003, 9:43 pm
Forum: Technical Forum
Topic: Random Portfolio Weights' Algorithm
Replies: 11
Views: 191717

Random Portfolio Weights' Algorithm

Thanks to both.I will try out the methods.I'll keep you posted.
by gregorios
August 20th, 2003, 3:27 pm
Forum: Technical Forum
Topic: Random Portfolio Weights' Algorithm
Replies: 11
Views: 191717

Random Portfolio Weights' Algorithm

Do you have an efficient algorithm for generating random portfolio weights, Wi, that add up to a constant, e.g. sum(Wi)=1.I need it to calculate efficient frontiers.Preferably coded in VBA but I should be able to read any other language.Thanks and best regards,Gregory.
by gregorios
November 10th, 2002, 9:56 pm
Forum: Technical Forum
Topic: Volatility estimation of hederoskedastic timeseries with jumps
Replies: 18
Views: 191328

Volatility estimation of hederoskedastic timeseries with jumps

<t>Thank you all three for your replies.Apologies for the late responce; I've been 'snowed under' all week.dgn2, Can you recommend/provide a ready-to-use code library, preferably in VBA?Purpose: I would like to have a tool that can estimate the volatility of 'corporate spreads' timeseries which ofte...
by gregorios
November 5th, 2002, 10:18 pm
Forum: Technical Forum
Topic: Volatility estimation of hederoskedastic timeseries with jumps
Replies: 18
Views: 191328

Volatility estimation of hederoskedastic timeseries with jumps

What's the appropriate method for calculating the volatility of hederoskedastic timeseries with jumps (e.g. spread timeseries).Many thanks,Gregory.
by gregorios
October 22nd, 2002, 5:22 pm
Forum: Programming and Software Forum
Topic: Resizing 2-dimensional dynamic VBA arrays
Replies: 8
Views: 191253

Resizing 2-dimensional dynamic VBA arrays

What you've done is exactly what I meant.You need to transpose the [2,N] Array only if you need to output its values in a [N,2] Range.The syntax could be, for example:ActiveSheet.Cells(1,1).Resize(N,2).Value = Excel.WorksheetFunction.Transpose(Data)Best regards,Gregory.
by gregorios
October 18th, 2002, 10:51 pm
Forum: Programming and Software Forum
Topic: Resizing 2-dimensional dynamic VBA arrays
Replies: 8
Views: 191253

Resizing 2-dimensional dynamic VBA arrays

VBA does not allow the 1st dimension of a 2dim array to be changed dynamically.A way around it is to work on a transposed array structure.Hope this helps.Best regards,Gregory.
by gregorios
September 23rd, 2002, 4:26 pm
Forum: Programming and Software Forum
Topic: VBA Questions
Replies: 4
Views: 190103

VBA Questions

I assume you are attempting to resize the command bar programmatically rather than interactively ( by the way, you can resize it interactively once it's created, TRUE ? ).I'm afraid I have no suggestions on this one.Good luck.
by gregorios
September 21st, 2002, 10:48 pm
Forum: General Forum
Topic: Stock indices and the economy
Replies: 11
Views: 190720

Stock indices and the economy

<r>Regarding the ineffectiveness of monetary policy in Japan since the burst of the bubble the following paper makes interesting reading:<URL url="http://www.federalreserve.gov/pubs/ifdp/2002/729/ifdp729.pdfBest"><LINK_TEXT text="http://www.federalreserve.gov/pubs/ifdp ... 29.pdfBest">http://www.fed...
  • 1
  • 2