DEFINIR AL ALZA

Viewing 3 posts - 1 through 3 (of 3 total)
  • #8900

    Como estan?

    Quisiera consultar como hago para definir el condicional del alza a dos velas anteriores? estaria bien asi?

    indicator1 = close[-2]
    indicator2 = open[-1]
    indicator3 = close[-2]
    indicator4 = close[-1]

    c1 = (indicator3 < indicator1) and (indicator4 < indicator2)

    #8907

    Es necesario valor absoluto. Sus condiciones pueden ser probadas como esto:

     

    #8958

    Nicolas,

    Eso no es a la baja?

    Baja:  c1 = close[2]<open[2] and close[1]<open[1]

    Alza: c1 = close[2]>open[2] and close[1]>open[1]

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

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