Fix realtime volume

This commit is contained in:
2025-09-24 13:14:38 +07:00
parent d19df1938b
commit 253c448acb
2 changed files with 34 additions and 3 deletions

View File

@@ -40,6 +40,9 @@ public class PlatformSummaryGrainState
[Id(12)] public Dictionary<Ticker, int> PositionCountByAsset { get; set; } = new();
[Id(13)] public Dictionary<TradeDirection, int> PositionCountByDirection { get; set; } = new();
// Flag to track if volume has been updated by events (not from bot strategies)
[Id(14)] public bool VolumeUpdatedByEvents { get; set; }
}
/// <summary>