feat(Core): update DTOs and shared models
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
namespace FinlyticCore.Models.Analyzer;
|
||||
|
||||
/// <summary>
|
||||
/// Market volatility regime derived from VIX / VDAX index level.
|
||||
/// </summary>
|
||||
public enum VixMarketRegime
|
||||
{
|
||||
LowVol = 0, // VIX < 15
|
||||
Normal = 1, // VIX 15 - 20
|
||||
HighVol = 2, // VIX 20 - 30
|
||||
Panic = 3 // VIX > 30
|
||||
}
|
||||
Reference in New Issue
Block a user