Skip to content
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

Momentum: True Strength Index (TSI) #55

Closed
cinar opened this issue Jan 26, 2022 · 1 comment · Fixed by #153
Closed

Momentum: True Strength Index (TSI) #55

cinar opened this issue Jan 26, 2022 · 1 comment · Fixed by #153
Assignees
Labels
enhancement New feature or request good first issue Good for newcomers

Comments

@cinar
Copy link
Owner

cinar commented Jan 26, 2022

The true strength index (TSI) is a technical momentum oscillator used to identify trends and reversals. The indicator may be useful for determining overbought and oversold conditions, indicating potential trend direction changes via centerline or signal line crossovers, and warning of trend weakness through divergence.

https://www.investopedia.com/terms/t/tsi.asp

@cinar cinar added enhancement New feature or request good first issue Good for newcomers labels Jan 26, 2022
@cinar cinar self-assigned this Jun 10, 2024
@cinar
Copy link
Owner Author

cinar commented Jun 10, 2024

Indicator:

PCDS = Ema(13, Ema(25, (Current - Prior)))
APCDS = Ema(13, Ema(25, Abs(Current - Prior)))
TSI = (PCDS / APCDS) * 100

Strategy:

Signal Line = Ema(12, TSI)
When TSI > 0, TSI > Signal Line, Buy.
When TSI < 0, TSI < Signal Line, Sell.

cinar added a commit that referenced this issue Jun 10, 2024
# Describe Request

True Strength Index (TSI) is added.

Fixed #55 

# Change Type

Momentum indicator.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request good first issue Good for newcomers
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant