feat(Core): update DTOs and shared models
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace FinlyticCore.Dtos.TechnicalAnalysis;
|
||||
|
||||
public record MarketRegimeDto(
|
||||
[property: JsonPropertyName("vixValue")] decimal VixValue,
|
||||
[property: JsonPropertyName("vixRegime")] string VixRegime, // "LowVolatility", "Moderate", "HighVolatility" (>25)
|
||||
[property: JsonPropertyName("marketTrend")] string MarketTrend, // "Bullish", "Bearish"
|
||||
[property: JsonPropertyName("dxyValue")] decimal DxyValue,
|
||||
[property: JsonPropertyName("dxyState")] string DxyState, // "DollarStrengthening", "DollarWeakening"
|
||||
[property: JsonPropertyName("summaryText")] string SummaryText
|
||||
);
|
||||
Reference in New Issue
Block a user