Abstract
Falls Sie ein Zufallsportfolio mit einer gegebenen Summe und Ober- und Untergrenzen für jedes Asset erzeugen müssen, können Sie die Funktion PF_Allocate() verwenden:
Appendix – Programmcode PF_Allocate
Bitte beachten Sie dass dieses Programm VBUniqRandInt benötigt (aufruft).
Bitte den Haftungsausschluss im Impressum beachten.
Option Explicit
Function PF_Allocate(db As Double, _
vlb As Variant, _
vub As Variant) As Double()
'Generate a portfolio of assets x1..xN
'x1..xN being random numbers (double) with:
'x1+x2+..xN = db 'budget
'xi >= vlb(i) 'lower bound vector
'xi <= vub(i) 'upper bound vector
'Reverse(moc.liborplus.www) V0.11
'Source (EN): http://www.sulprobil.de/pf_allocate_en/
'Source (DE): http://www.berndplumhoff.de/pf_allocate_de/
'(C) (P) by Bernd Plumhoff 26-Jul-2020 PB V0.11
Dim i As Variant, n As Long
Dim dcumx As Double
Dim dcumlb As Double
Dim dcumub As Double
Dim dxlb As Double
Dim dxub As Double
'Application.Volatile
dcumlb = Application.WorksheetFunction.Sum(vlb)
dcumub = Application.WorksheetFunction.Sum(vub)
If dcumlb > db Or dcumub < db Then
PF_Allocate = CVErr(xlErrValue)
Exit Function
End If
n = vlb.Count
ReDim dR(1 To n) As Double
dcumx = 0#
'For i = 1 To n 'Old biased solution
For Each i In VBUniqRandInt(n, n)
'Source (EN): http://www.sulprobil.de/uniqrandint_en/
If vlb(i) > vub(i) Then
PF_Allocate = CVErr(xlErrValue)
Exit Function
End If
dcumlb = dcumlb - vlb(i)
dcumub = dcumub - vub(i)
dxlb = db - dcumx - dcumub
If dxlb < vlb(i) Then dxlb = vlb(i) 'dxlb = Min(..)
dxub = db - dcumx - dcumlb
If dxub > vub(i) Then dxub = vub(i) 'dxub = Max(..)
dR(i) = dxlb + Rnd() * (dxub - dxlb)
dcumx = dcumx + dR(i)
Next i
PF_Allocate = dR
End Function
Downlaod
Bitte den Haftungsausschluss im Impressum beachten.
PF_Allocate.xlsm [24 KB Excel Datei, ohne jegliche Gewährleistung]