From cdbe36d35406a0d339c331223514e5681c09e958 Mon Sep 17 00:00:00 2001 From: Allen Date: Fri, 14 Mar 2025 17:26:58 -0500 Subject: [PATCH] Update utils.md small spelling error --- docs/docs/utils.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/utils.md b/docs/docs/utils.md index af6d31f..737c027 100644 --- a/docs/docs/utils.md +++ b/docs/docs/utils.md @@ -306,7 +306,7 @@ size_to_qty(position_size, price, precision=3, fee_rate=0) ## streaks -Returns the streaks of the series. A positive number stands for a positive streak and a negativ number for a negative streak. By default it uses the first discrete difference. +Returns the streaks of the series. A positive number stands for a positive streak and a negative number for a negative streak. By default it uses the first discrete difference. ```py streaks(series: np.array, use_diff=True) -> np.array