Pek
Forumer storico
ottimo
il MDD storico di 6130 si otterrebbe usando la formula
The following pseudocode computes the Drawdown ("DD") and Max Drawdown ("MDD") of the varialbe "NAV", the Net Asset Value of an investment. Drawdown and Max Drawdown are calculated as percentages:
MDD = 0
peak = -99999
for i = 1 to N step 1
if(NAV > peak) then peak = NAV
DD = 100.0 * (peak - NAV) / peak
if(DD > MDD) then MDD = DD
endfor
giusto?
Sì,ma calcolato in punti
In percentuale sul peak non ha molto senso,può servire rispetto al valore del contratto
ps inizializzare a -99999 non denota ottimismo