Braid Filter (braid_filter)
def braid_filter(open: NDArray[Shape["*", Float]], high: NDArray[Shape["*", Float]], low: NDArray[Shape["*", Float]], close: NDArray[Shape["*", Float]], ma01_length: float | int, ma02_length: float | int, ma03_length: float | int, pips_min_sep_percent: float | int) -> NDArray[Shape["3 *"], Float]:
    """
    Braid Filter
    Inputs: open, high, low, close
    Options: ma01_length[3], ma02_length[7], ma03_length[14], pips_min_sep_percent[40]
    Outputs: ?dif, ?atr_filter, bar_color
    """
    passThe Braid Filter indicator requires 4 input and 4 option parameters.
This indicator returns 3 outputs
Inputs
open- anumpy.arrayofnumpy.float64high- anumpy.arrayofnumpy.float64low- anumpy.arrayofnumpy.float64close- anumpy.arrayofnumpy.float64
Options
_length-float | int_length-float | int_length-float | intpips_min_sep_percent-float | int
Outputs
?dif?atr_filterbar_color