add decision fusion. training but not enabled.

reports cleanup
This commit is contained in:
Dobromir Popov
2025-07-28 18:22:13 +03:00
parent 233bb9935c
commit bc4b72c6de
57 changed files with 504 additions and 9903 deletions

View File

@ -159,6 +159,18 @@ orchestrator:
entry_aggressiveness: 0.5
# Exit aggressiveness: 0.0 = very conservative (let profits run), 1.0 = very aggressive (quick exits)
exit_aggressiveness: 0.5
# Decision Fusion Configuration
decision_fusion:
enabled: true # Use neural network decision fusion instead of programmatic
mode: "programmatic" # "neural" or "programmatic"
input_size: 128 # Size of input features for decision fusion network
hidden_size: 256 # Hidden layer size
history_length: 20 # Number of recent decisions to include
training_interval: 100 # Train decision fusion every N decisions
learning_rate: 0.001 # Learning rate for decision fusion network
batch_size: 32 # Training batch size
min_samples_for_training: 50 # Minimum samples before training starts
# Training Configuration
training: