intraday DAX strategy 5min mini1€ spread 1

Forums ProRealTime English forum ProOrder support intraday DAX strategy 5min mini1€ spread 1

Viewing 15 posts - 16 through 30 (of 503 total)
  • #21726

    These codes are “plug and play”, I think Raul will certainly know how to incorporate it in his strategy 🙂

    #21729

    Hello guys, to see, first, jonjon, you can pass the backtest images of the code as it appears here with the mini 1 euro? I have changed the way of entering the market, from buying or selling direct to placing orders. And second, for my broker the minimum trailing stop is 5 and for the stop it is 4. now as soon as I can look to implement the trailing that Nicolas says in this code. What do you think? Does this strategy have a future?

    #21730

    Good evening Nicolas,

    You are right but we can not use your code.

    We are on candles of 5 mn.

    The stop does not update quickly enough.

    #21732

    The stop does not update quickly enough.

    Pray for the multitimeframe to come! Soon I hope 🙂

    If the strategy don’t use indicator at all, it could be modified to work on any inferior timeframe.

    #21750
    • Sorry Jonjon, I did not read you. Can you try this code?

     

    // Definición de los parámetros del código
    DEFPARAM CumulateOrders = false // Acumulación de posiciones desactivada

    DEFPARAM FlatAfter =172900

    once ordersize=1

    HoraEntradaLimite = 090600

    HoraInicio = 090500

    if Ordersize>50 then
    Ordersize=10
    endif
    if Time >= HoraInicio and time <= HoraEntradaLimite then
    // Condiciones de entrada de posiciones cortas
    c1 = open < close-2
    if not onmarket then
    IF c1 THEN
    IF PositionPerf(1) < 0 THEN
    OrderSize = OrderSize-1
    if ordersize<1 then
    ordersize=1
    ENDIF
    ELSIF PositionPerf(1) > 0 THEN
    OrderSize =OrderSize+2
    if ordersize<1 then
    ordersize=1
    ENDIF
    endif
    buy ordersize shares AT close+1 stop
    endif

    c2= open > close-1

    IF c2 THEN
    iF PositionPerf(1) < 0 THEN
    OrderSize = OrderSize-1
    if ordersize<1 then
    ordersize=1
    ENDIF
    ELSIF PositionPerf(1) > 0 THEN
    OrderSize =OrderSize+2
    if ordersize<1 then
    ordersize=1
    endif
    ENDIF
    sellshort ordersize shares AT close-2 stop
    endif
    endif
    endif
    SET STOP ptrailing 5

    #21762

    At ig on the dax the minimum trailing stop is 10 points.
    The result is less good in this case.

    #21763

    >> For clarity of messages on ProRealCode’s forums, please use the “insert code PRT” button to separate the text of the code part! Thank you! <<

    #21764
    CN

    Incorrect, it’s 5.

    #21765

    I’m sorry, I’m writing from the phone. I have in ig and the minimum trailing is 5

    #21766

    Sorry I have tried on the actual account.

    on behalf of demonstration, the minimum is 10  prt cfd “” in France.

    #21767
    CN

    Intressting, its 5 in sweden

     

    #21779

     

    #21781

    Hi,

    I modify the strategy in order to increase the lot in relation to the margin. Good result !!

     

    #21784

    Hi Guys,

    I’ve tried this system on the dow. It shows a good result aswell. Maybe someone could check it with 200000 bars.

     

    #21789

    Morning. Tried exactly your code (with London times) with starting equity of EUR20k. Unfortunately blows out account by April 2013.

Viewing 15 posts - 16 through 30 (of 503 total)

Create your free account now and post your request to benefit from the help of the community
Register or Login