Max drawdown calc
Forums › ProRealTime English forum › ProBuilder support › Max drawdown calc
- This topic has 17 replies, 3 voices, and was last updated 2 months ago by
robertogozzi.
-
-
01/24/2025 at 7:51 PM #243079
This code calculates both DrawDown and RunUp and their ratio, butyou have to add it to one of your strategies, not indicators:
1234567891011121314151617181920212223242526272829// DrawDown & RunUp (abridged)//ONCE Capital = 10000ONCE MinPoint = CapitalONCE MaxPoint = 0ONCE MaxRU = 0ONCE MaxDD = 0//------------------------------------------// EQUITYEquity = Capital + StrategyProfitTempProfit = PositionPerf * PositionPrice / PipSize * PipValue // / abs(CountOfPosition)TempEquity = Equity + TempProfit//------------------------------------------// DrawDownMaxPoint = max(MaxPoint,TempEquity)DD = MaxPoint - TempEquityMaxDD = max(MaxDD,DD)DDperc = MaxDD * 100 / Capital////------------------------------------------// RunUpMinPoint = min(MinPoint,TempEquity)RU = TempEquity - MinPointMaxRU = max(MaxRU,RU)RUperc = MaxRU * 100 / Capital//------------------------------------------// DD/RU ratioDDRUratio = (MaxDD / MaxRU) * 100//------------------------------------------You only have to set your Capital, in place of 10000.
1 user thanked author for this post.
01/25/2025 at 9:09 AM #24308301/25/2025 at 4:34 PM #243089No, as we always have to store the highest value, both for RunUP and DrawDOW, this code matches ProRealTime calculations (on Dax, DailyTF) as shown in the attached pic:
12345678910111213141516171819202122232425262728293031323334353637383940414243// DrawDown & RunUp//ONCE Capital = 100000ONCE MinPoint = CapitalONCE MaxPoint = 0ONCE MaxRU = 0ONCE MaxDD = 0//------------------------------------------// EQUITYEquity = Capital + StrategyProfitTempProfit = PositionPerf * PositionPrice / PipSize * PipValue // / abs(CountOfPosition)TempEquity = Equity + TempProfit//------------------------------------------// DrawDownMaxPoint = max(MaxPoint,TempEquity)DD = MaxPoint - TempEquityMaxDD = max(MaxDD,DD)DDperc = MaxDD * 100 / Capital////------------------------------------------// RunUpMinPoint = min(MinPoint,TempEquity)RU = TempEquity - MinPointMaxRU = max(MaxRU,RU)RUperc = MaxRU * 100 / Capital//------------------------------------------// DD/RU ratioDDRUratio = (MaxDD / MaxRU) * 100//------------------------------------------ONCE Punti = 50*PipSizeONCE N = 5ONCE SL = 100*PipSizeEntrata = highest[N](high[1]) + PuntiIF (close > Entrata) AND Not OnMarket THENBUY 1 Contract at MarketStopLoss = min(SL,abs(close - (low[1] - 1*PipSize)))x = low[1] - 1*PipSizeSET STOP LOSS StopLossSET TARGET PROFIT StopLoss * 2ENDIFgraph MaxRU AS "RunUP" coloured("Green")graph MaxDD AS "DrawDOWN" coloured("Red") -
AuthorPosts