mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-07-27 17:27:43 +00:00
bcb52ef5ec
- Implemented CCV class for calculating annualized log return volatility using SMA, EMA, and WMA smoothing methods. - Added comprehensive unit tests for CCV to validate mathematical correctness, consistency across methods, and edge cases. - Created documentation for CCV detailing its mathematical foundation, smoothing methods, and performance metrics.
33 lines
762 B
YAML
33 lines
762 B
YAML
# yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json
|
|
# CodeRabbit Configuration - QuanTAlib
|
|
#
|
|
# Reviews ONLY implementation .cs files (~196 files)
|
|
# Auto-detects new indicators
|
|
|
|
language: en-US
|
|
|
|
reviews:
|
|
request_changes_workflow: false
|
|
high_level_summary: true
|
|
high_level_summary_placeholder: "@coderabbitai summary"
|
|
auto_title_placeholder: "@coderabbitai"
|
|
review_status: true
|
|
collapse_walkthrough: false
|
|
|
|
path_filters:
|
|
# INCLUDE: Only .cs files in lib/
|
|
- "lib/**/*.cs"
|
|
|
|
# EXCLUDE: Test files
|
|
- "!**/*.Tests.cs"
|
|
- "!**/*.Validation.Tests.cs"
|
|
|
|
# EXCLUDE: Quantower adapters
|
|
- "!**/*.Quantower.cs"
|
|
|
|
# EXCLUDE: Build artifacts
|
|
- "!**/obj/**"
|
|
- "!**/bin/**"
|
|
|
|
chat:
|
|
auto_reply: true |