distance_matrix(series1, series2, max_freq, norm) Generate distance matrix between two series. Parameters: series1 (float): Source series 1. series2 (float): Source series 2. max_freq (int): Maximum frequency to inpect or the size of the generated matrix. norm (string): Norm of the distance metric, default=`euclidean`, options=`euclidean`, `manhattan`, `max`. Returns: Matrix with distance values.
method normalize_distance(M) Normalizes a matrix within its Min-Max range. Namespace types: matrix<float> Parameters: M (matrix<float>): Source matrix. Returns: Normalized matrix.
method threshold(M, threshold) Updates the matrix with the condition `M(i,j) > threshold ? 1 : 0`. Namespace types: matrix<float> Parameters: M (matrix<float>): Source matrix. threshold (float) Returns: Cross matrix.
rolling_window(a, b, sample_size) An experimental alternative method to plot a recurrence_plot. Parameters: a (array<float>): Array with data. b (array<float>): Array with data. sample_size (int) Returns: Recurrence_plot matrix.
진정한 TradingView 정신에 따라, 저자는 이 파인 코드를 다른 파인 프로그래머들이 재사용할 수 있도록 오픈 소스 라이브러리로 공개했습니다. 저자에게 박수를 보냅니다! 이 라이브러리는 개인적으로 사용하거나 다른 오픈 소스 출판물에서 사용할 수 있지만, 이 코드를 출판물에서 재사용하는 것은 하우스 룰에 의해 관리됩니다.