limitar posiciones acumalacion

Forums ProRealTime foro Español Soporte ProOrder limitar posiciones acumalacion

Viewing 4 posts - 1 through 4 (of 4 total)
  • #237328

    Hola ,

    quiero limitar los contratos o posiciones en un robot que tiene acumulacion de posiciones. ( DEFPARAM cumulateOrders = true.

    que comando tengo que añadir a dicho y como lo tengo que añadir.

    Muchas gracias

    #237341

    Ejemplo:

    utilice la instrucción abs(CountOfPosition) para abrir no más de 10 posiciones.

    1 user thanked author for this post.
    #237375

    Hola Roberto.

    He incluido el comendo pero me da un error. Te adjunto el robot para que me indiques como incluirlo exactamente.

    Muchas gracias por la rapidez.

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

    // Condiciones de entrada de posiciones cortas
    indicator1 = RSI[2](close)
    c1 = (indicator1 CROSSES UNDER 66)

    IF c1 THEN
    SELLSHORT 1 CONTRACT AT MARKET
    ENDIF

    // Condiciones de salida de posiciones cortas
    indicator2 = RSI[2](close)
    c2 = (indicator2 CROSSES UNDER 2)

    IF c2 THEN
    EXITSHORT AT MARKET
    ENDIF

    // Stops y targets
    //SET STOP pTRAILING 25
    //SET TARGET pPROFIT 55

    #237413

    Varié la línea 8, agregando abs(CountOfPosition) < 10:

     

Viewing 4 posts - 1 through 4 (of 4 total)

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