BOLLINGER KELTNER Y KELTNER

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #11251 quote
    diegofe_2000
    Participant
    Senior
    // Definición de los parámetros del código
    DEFPARAM CumulateOrders = False // Acumulación de posiciones desactivada
    
    // Condiciones de salida de posiciones largas
    indicator1, ignored = CALL KELTNER[22, 1.5, 2](close)
    indicator2, ignored, ignored, ignored = CALL "bollinger keltner"[20, 2, 3.2]
    c1 = (indicator1 CROSSES OVER indicator2)
    
    IF c1 THEN
    SELL  AT MARKET
    ENDIF
    
    // Condiciones de entrada de posiciones cortas
    indicator3, ignored = CALL KELTNER[4, 1.6, 2](close)
    indicator4, ignored, ignored, ignored = CALL "bollinger keltner"[20, 2, 1.5]
    c2 = (indicator3 CROSSES UNDER indicator4)
    
    IF c2 THEN
    SELLSHORT 1 CONTRACT AT MARKET
    ENDIF
    
    // Stops y objetivos
    SET TARGET pPROFIT 20

    SISTEMA BASADO EN EL INDICADOR KELTNER Y EL INDICADOR QUE ESTÁ EN ESTA PAGINA:  BOLLINGER KELTNER.

    nuevo-1470254594pc4l81.jpg nuevo-1470254594pc4l81.jpg
    #11291 quote
    Nicolas
    Keymaster
    Master

    Hola Diego,
    Gracias por su contribución al sitio que. Tengo mover el mensaje a la biblioteca del foro, porque creo que usted quiere hablar de ello en lugar de ser publicado en la Biblioteca.

    Está utilizando la instrucción CALL para sus indicadores personales. ¿Le importaría a publicarlos aquí también para todo el mundo para poner a prueba su estrategia con el código completo? Gracias por adelantado.

    #141961 quote
    bertrandpinoy
    Participant
    Veteran

    hola, ¿dónde está el indicador correspondiente a esta estrategia?

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.

BOLLINGER KELTNER Y KELTNER


ProOrder: Trading Automático y Backtesting

New Reply
Author
Summary

This topic contains 2 replies,
has 3 voices, and was last updated by bertrandpinoy
5 years, 6 months ago.

Topic Details
Forum: ProOrder: Trading Automático y Backtesting
Language: Spanish
Started: 08/05/2016
Status: Active
Attachments: 1 files
Logo Logo
Loading...