mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-07-27 17:27:43 +00:00
c7e55c2f1e
- Implemented the III indicator in Iii.Quantower.cs, measuring buying/selling pressure based on close price within the day's range, weighted by volume. - Added unit tests for III functionality in Iii.Tests.cs, covering various scenarios including default parameters, updates, and cumulative mode. - Created validation tests in Iii.Validation.Tests.cs to ensure consistency between streaming, batch, and span calculations. - Developed comprehensive documentation for III in Iii.md, detailing its historical context, mathematical foundation, and common pitfalls.
45 lines
1.1 KiB
YAML
45 lines
1.1 KiB
YAML
# yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json
|
|
# CodeRabbit Configuration - Batch 2b: Validation test files only
|
|
# To use: rename to .coderabbit.yaml (backup current config first)
|
|
#
|
|
# Validation tests: 130 files (well under 300 limit)
|
|
|
|
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_instructions: []
|
|
tools:
|
|
ast-grep:
|
|
essential_rules: true
|
|
rule_dirs:
|
|
- .coderabbit/ast-grep-rules
|
|
|
|
path_filters:
|
|
# ============================================
|
|
# BATCH 2b: Validation test files only (130 files)
|
|
# ============================================
|
|
|
|
# INCLUDE: Validation test files
|
|
- "lib/**/*.Validation.Tests.cs"
|
|
|
|
# EXCLUDE: Build artifacts
|
|
- "!**/obj/**"
|
|
- "!**/bin/**"
|
|
- "!**/Debug/**"
|
|
- "!**/Release/**"
|
|
|
|
# EXCLUDE: Non-code files
|
|
- "!**/*.md"
|
|
- "!**/*.pine"
|
|
- "!**/*.json"
|
|
- "!**/*.yaml"
|
|
- "!**/*.yml"
|
|
|
|
chat:
|
|
auto_reply: true |