Indicators
Indicators
Chandelier Exit (chandelier_exit)

Chandelier Exit (chandelier_exit)

def chandelier_exit(high: NDArray[Shape["*", Float]], low: NDArray[Shape["*", Float]], close: NDArray[Shape["*", Float]], period: float | int, atr_multiplier: float | int) -> NDArray[Shape["*"], Float]:
    """
    Chandelier Exit
    Inputs: high, low, close
    Options: period[22], atr_multiplier[3]
    Outputs: buy_sell_signal
    """
    pass

The Chandelier Exit indicator requires 3 input and 2 option parameters.

This indicator returns 1 outputs

Inputs

  • high - a numpy.array of numpy.float64
  • low - a numpy.array of numpy.float64
  • close - a numpy.array of numpy.float64

Options

  • period - float | int
  • atr_multiplier - float | int

Outputs

  • buy_sell_signal