You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Returns a boolean series indicating if series_a has crossed over series_b
14
+
Returns a boolean when the first series crosses above the second series at any point or within the last n data points.
15
+
16
+
Args:
17
+
data (Union[PdDataFrame, PlDataFrame]): The input data.
18
+
first_column (str): The name of the first series.
19
+
second_column (str): The name of the second series.
20
+
data_points (int, optional): The number of data points to consider. Defaults to None.
21
+
strict (bool, optional): If True, the first series must be strictly greater than the second series. If False, the first series must be greater than or equal to the second series. Defaults to True.
22
+
23
+
Returns:
24
+
bool: Returns True if the first series crosses above the second series at any point or within the last n data points.
description = "PyIndicators is a powerful Python library designed to simplify technical analysis in financial markets. Whether you're a seasoned quant or a novice trader, PyIndicators provides a user-friendly interface for integrating a wide range of technical indicators into your data analysis and trading strategies."
4
+
description = "PyIndicators is a powerful and user-friendly Python library for technical analysis indicators and metrics. Written entirely in Python, it requires no external dependencies, ensuring seamless integration and ease of use."
0 commit comments