Add score
This commit is contained in:
@@ -52,7 +52,7 @@ public class LaggingSTC : Strategy
|
||||
* - Ends at previous candle to avoid inclusion of current break
|
||||
* - Dynamic sizing for early dataset cases */
|
||||
// Calculate the lookback window ending at previousCandle (excludes currentCandle)
|
||||
int windowSize = 32;
|
||||
int windowSize = 40;
|
||||
int windowStart = Math.Max(0, i - windowSize); // Ensure no negative indices
|
||||
var lookbackWindow = stcCandles
|
||||
.Skip(windowStart)
|
||||
|
||||
Reference in New Issue
Block a user