42 lines
944 B
JSON
42 lines
944 B
JSON
{
|
|
"max_velocity_cap": 0.5,
|
|
"history_length": 60,
|
|
"timeframes": [
|
|
{
|
|
"name": "1s",
|
|
"periods": 1,
|
|
"weight": 0.4,
|
|
"threshold": 0.002,
|
|
"description": "Instantaneous velocity for emergency detection"
|
|
},
|
|
{
|
|
"name": "5s",
|
|
"periods": 5,
|
|
"weight": 0.3,
|
|
"threshold": 0.0005,
|
|
"description": "Short-term smoothed velocity"
|
|
},
|
|
{
|
|
"name": "10s",
|
|
"periods": 10,
|
|
"weight": 0.2,
|
|
"threshold": 0.0004,
|
|
"description": "Medium-term trend detection"
|
|
},
|
|
{
|
|
"name": "30s",
|
|
"periods": 30,
|
|
"weight": 0.1,
|
|
"threshold": 0.0003,
|
|
"description": "Long-term sustained moves"
|
|
}
|
|
],
|
|
"normal_threshold": 0.0003,
|
|
"volatile_threshold": 0.0006,
|
|
"extreme_threshold": 0.001,
|
|
"extreme_move_threshold": 0.001,
|
|
"sustained_move_periods": 5,
|
|
"use_ema_smoothing": true,
|
|
"ema_alpha": 0.2,
|
|
"edge_proximity_factor": 0.05
|
|
} |