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
"""
pass
The Braid Filter indicator requires 4 input and 4 option parameters.
This indicator returns 3 outputs
Inputs
open
- anumpy.array
ofnumpy.float64
high
- anumpy.array
ofnumpy.float64
low
- anumpy.array
ofnumpy.float64
close
- anumpy.array
ofnumpy.float64
Options
_length
-float | int
_length
-float | int
_length
-float | int
pips_min_sep_percent
-float | int
Outputs
?dif
?atr_filter
bar_color