feat(Core): update DTOs and shared models

This commit is contained in:
2026-08-09 21:01:38 +02:00
parent 6337e63a77
commit 5475c3ac51
58 changed files with 3418 additions and 30 deletions
@@ -0,0 +1,12 @@
using System;
using System.Text.Json.Serialization;
namespace FinlyticCore.Dtos.TechnicalAnalysis;
public record StrategySignalDto(
[property: JsonPropertyName("type")] string Type, // "GoldenCross", "DeathCross", "RsiDivergenceBullish", "RsiDivergenceBearish", "Breakout"
[property: JsonPropertyName("timestamp")] DateTime Timestamp,
[property: JsonPropertyName("direction")] string Direction, // "BUY", "SELL", "NEUTRAL"
[property: JsonPropertyName("price")] decimal Price,
[property: JsonPropertyName("description")] string Description
);