Breakout gibt keine Einsitege
Forums › ProRealTime Deutsch forum › ProBuilder Support › Breakout gibt keine Einsitege
- This topic has 8 replies, 2 voices, and was last updated 2 years ago by axmichi.
Viewing 9 posts - 1 through 9 (of 9 total)
-
-
01/18/2022 at 9:10 PM #185879Code breakout123456789101112131415161718192021222324252627282930313233343536373839404142434445DEFPARAM CumulateOrders = FalseDEFPARAM flatbefore = 090000DEFPARAM flatafter= 172900Positionsize=1 // KONSTANTE KONTRAKTANZAHL!!Spread=1 // Handelsspread DAX 1 Punkt 9.00-17.30 bei IGStartzeit=090000Endzeit=120000//////MartingalMainSize = PositionSizeONCE MainSize = PositionSizeONCE LossSize = MainSizeIF StrategyProfit < StrategyProfit[1] THENLossSize = LossSize + MainSizePositionSize = LossSizeELSIF StrategyProfit > StrategyProfit[1] THENPositionSize = MainSizeLossSize = PositionSize//// Spanne 8-9 in Hi and Lo ermitteln// ------------------------once Bars=60 // 60 x 1 Minuteonce Hi=0once Lo=0If time = 090000 then // Das ist das Ende der 8.59 Kerze. Also INCLUSIVE DIESERHi=highest[Bars](high)Lo=lowest[Bars](low)endifSpannepoints=(Hi-Lo)/pointsize // Spanne in Punkten//once Tradetag=0If onmarket thenTradetag=dateendifIf not onmarket and time>= Startzeit and time < Endzeit and Tradetag<>date thenBUY Positionsize Lot AT Hi+(Spread/2) StopSellshort Positionsize Lot AT Lo-(Spread/2) StopSET stop ploss Spannepoints*1SET TARGET pPROFIT Spannepoints*1ENDIFEndif
Hallo,
dieser Code für einen breakout funktioniert gut, leider funktioniert er mit den Zeilen 13 – 20 im Code nicht mehr.
Hier habe ich Regeln für den Martingal eingefügt. Bei Verlusttrade verdoppeln
Kann mir jemand sagen warum der dann keine Entry mehr tätigt?
Danke und Gruß
01/18/2022 at 11:00 PM #185892Weil Sie den Code, den ich Ihnen für das Martingal geschrieben habe, schlecht kopiert haben.
01/25/2022 at 1:30 PM #18658801/29/2022 at 3:18 PM #186981Alle Anfangszeilen in Bezug auf Kapital, Risiko und Berechnungen fehlen.
01/29/2022 at 4:04 PM #18699701/29/2022 at 4:08 PM #186999Okay, ich werde es so bald wie möglich versuchen.
01/29/2022 at 5:59 PM #18700701/31/2022 at 4:57 PM #187131Fertig:
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556DEFPARAM CumulateOrders = FalseDEFPARAM flatbefore = 090000DEFPARAM flatafter = 172900Spread = 1 // Handelsspread DAX 1 Punkt 9.00-17.30 bei IGStartzeit = 090000Endzeit = 120000//// Martingala & PositionSize startONCE Capital = 10000 //10000€ initial CapitalONCE Investment = 5 //5% max Investment for each tradeONCE MinLots = 0.5 //0.5 min lot size (Dax)ONCE Margin = 5 //5% Margin required by the broker for each lotIF (StrategyProfit = 0) OR (Not OnMarket AND OnMarket[1]) THENInvested = Capital * Investment / 100 / PipValueCurrentMargin = close * Margin / 100TempLots1 = Capital / CurrentMarginTempLots2 = round(((Invested / CurrentMargin) * 10) - 0.5) / 10 //round to 1 decimal digitPositionSize = max(MinLots,TempLots2) //never below the minimum lotsMainSize = PositionSizeENDIFONCE MainSize = PositionSizeONCE LossSize = MainSizeIF StrategyProfit < StrategyProfit[1] THENLossSize = LossSize + MainSizePositionSize = LossSizeELSIF StrategyProfit > StrategyProfit[1] THENPositionSize = MainSizeLossSize = PositionSizeENDIF// Martingala & PositionSize end//// Spanne 8-9 in Hi and Lo ermitteln// ------------------------once Bars=60 // 60 x 1 Minuteonce Hi=0once Lo=0If time = 090000 then // Das ist das Ende der 8.59 Kerze. Also INCLUSIVE DIESERHi=highest[Bars](high)Lo=lowest[Bars](low)endifSpannepoints=(Hi-Lo)/pointsize // Spanne in Punkten//once Tradetag=0If onmarket thenTradetag=dateendifIf not onmarket and time>= Startzeit and time < Endzeit and Tradetag<>date thenBUY Positionsize Lot AT Hi+(Spread/2) StopSellshort Positionsize Lot AT Lo-(Spread/2) StopSET stop ploss Spannepoints*1SET TARGET pPROFIT Spannepoints*1ENDIF////graph StrategyProfit < Strategyprofit[1]//graph LossSize//graph MainSize02/02/2022 at 8:39 AM #187307 -
AuthorPosts
Viewing 9 posts - 1 through 9 (of 9 total)
Find exclusive trading pro-tools on
Similar topics: