12 lines
332 B
C#
12 lines
332 B
C#
using FinlyticCore.Models.Analyzer;
|
|
|
|
namespace FinlyticAnalyzer.Services;
|
|
|
|
public interface IWinRateCalculator
|
|
{
|
|
/// <summary>
|
|
/// Calculates the win rate for a given sector and symbol under the specified market regime.
|
|
/// </summary>
|
|
double CalculateWinRate(string sector, string symbol, VixMarketRegime regime);
|
|
}
|