✨ RSI, CCI signal 지표 추가#24
Merged
Merged
Conversation
e2e1a2a to
de95772
Compare
sjquant
approved these changes
May 14, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
변경 사항
rsi,cci는(line, signal)을 반환하도록 정리하고, 단일 라인 API로rsi_line,cci_line을 추가했습니다.EMA(signal_period)를 적용해 기존 null/seed recovery semantics를 그대로 따르도록 했습니다.rsi_line,rsi_signal,cci_line,cci_signalAPI를 노출했습니다.rsi,cci는 line 반환 API로 유지했습니다.__all__과 README 지원 지표 목록을 갱신했습니다.0.1.4에서0.1.5로 갱신했습니다.검증
cargo test -p techr-corecd polars && uv run maturin develop --uvcd polars && uv run pytest(314 passed)cd polars && uv run ruff checkcd polars && uv run ty checkcargo fmt --all --check && git diff --check참고
cargo test --workspace는 Polars cdylib 테스트 링크 단계에서 Python C API 심볼을 찾지 못해 실패했습니다. Polars는 기존 개발 경로인maturin develop후pytest로 검증했습니다.