-
Notifications
You must be signed in to change notification settings - Fork 300
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Correlation Trend Indicator #148
Labels
Comments
jealous
added a commit
that referenced
this issue
Jun 18, 2023
Correlation Trend Indicator is a study that estimates the current direction and strength of a trend. Implementation is based on the following code: https://github.com/twopirllc/pandas-ta/blob/main/pandas_ta/momentum/cti.py Examples: * `df['cti']` returns the CTI of close price with window 14 * `df['high_5_cti']` returns the CTI of high price with window 5 Add dependency numpy>=1.20.0 for the `as_strided` function. Update the version to 0.6.0.
jealous
added a commit
that referenced
this issue
Jun 18, 2023
Correlation Trend Indicator is a study that estimates the current direction and strength of a trend. Implementation is based on the following code: https://github.com/twopirllc/pandas-ta/blob/main/pandas_ta/momentum/cti.py Examples: * `df['cti']` returns the CTI of close price with window 14 * `df['high_5_cti']` returns the CTI of high price with window 5 Add dependency numpy>=1.20.0 for the `as_strided` function. Update the version to 0.6.0.
jealous
added a commit
that referenced
this issue
Jun 18, 2023
Correlation Trend Indicator is a study that estimates the current direction and strength of a trend. Implementation is based on the following code: https://github.com/twopirllc/pandas-ta/blob/main/pandas_ta/momentum/cti.py Examples: * `df['cti']` returns the CTI of close price with window 14 * `df['high_5_cti']` returns the CTI of high price with window 5 Add dependency numpy>=1.20.0 for the `as_strided` function. Update the version to 0.6.0.
jealous
added a commit
that referenced
this issue
Jun 18, 2023
Correlation Trend Indicator is a study that estimates the current direction and strength of a trend. Implementation is based on the following code: https://github.com/twopirllc/pandas-ta/blob/main/pandas_ta/momentum/cti.py Examples: * `df['cti']` returns the CTI of close price with window 14 * `df['high_5_cti']` returns the CTI of high price with window 5 Add dependency numpy>=1.20.0 for the `as_strided` function. Update the version to 0.6.0.
jealous
added a commit
that referenced
this issue
Jun 18, 2023
Correlation Trend Indicator is a study that estimates the current direction and strength of a trend. Implementation is based on the following code: https://github.com/twopirllc/pandas-ta/blob/main/pandas_ta/momentum/cti.py Examples: * `df['cti']` returns the CTI of close price with window 14 * `df['high_5_cti']` returns the CTI of high price with window 5 add dependency numpy>=1.16.6 for the `as_strided` function. Update the version to 0.6.0.
jealous
added a commit
that referenced
this issue
Jun 18, 2023
Correlation Trend Indicator is a study that estimates the current direction and strength of a trend. Implementation is based on the following code: https://github.com/twopirllc/pandas-ta/blob/main/pandas_ta/momentum/cti.py Examples: * `df['cti']` returns the CTI of close price with window 14 * `df['high_5_cti']` returns the CTI of high price with window 5 add dependency numpy>=1.16.6 for the `as_strided` function. Update the version to 0.6.0.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Correlation Trend Indicator is a study that estimates
the current direction and strength of a trend.
Implementation is based on the following code:
https://github.com/twopirllc/pandas-ta/blob/main/pandas_ta/momentum/cti.py
Examples:
df['cti']
returns the CTI of close price with window 14df['high_5_cti']
returns the CTI of high price with window 5The text was updated successfully, but these errors were encountered: