mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-08-08 22:17:44 +00:00
a9e72dae0d
- Updated Codacy instructions to streamline usage guidelines. - Refactored Bbands class to utilize ArrayPool for memory management, preventing stack overflow on large series. - Changed Fcb class to use long for monotonic deques to avoid truncation issues. - Enhanced Kchannel class to ensure safe defaults for non-finite values. - Improved Maenv class to prevent double-priming during calculations. - Modified Mmchannel class to ensure non-negative buffer indices and removed unnecessary state tracking. - Updated Pchannel class to correctly reference IsHot state. - Refined Regchannel class to avoid double-processing during calculations. - Enhanced Starchannel class to sanitize non-finite values during calculations. - Adjusted Stbands.Quantower.cs to allow finer control over multiplier precision. - Updated Ubands class to only update last valid values on new bars. - Modified Uchannel.Quantower.cs to allow for finer multiplier precision. - Enhanced Vwapbands classes to include standard deviation calculations and ensure consistent array lengths. - Refactored Vwapsd classes to include standard deviation outputs and ensure consistent array lengths. - Updated MonotonicDeque to use long for indices to prevent overflow. - Improved Mdape class to handle zero actual values with a substitute value for error calculation. - Enhanced Rae class to ensure correct state management during updates. - Refined Wmape class to simplify the logic for finding last valid actual and predicted values. - Updated Cmf.Quantower classes to ensure MinHistoryDepths reflects the current period.
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 |