13 lines
631 B
C#
13 lines
631 B
C#
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
|
|
);
|