feat(trades): add live execution cockpit, closing cockpit, calculation cards and precision trade settings
This commit is contained in:
@@ -8,4 +8,18 @@ public interface IWinRateCalculator
|
||||
/// Calculates the win rate for a given sector and symbol under the specified market regime.
|
||||
/// </summary>
|
||||
double CalculateWinRate(string sector, string symbol, VixMarketRegime regime);
|
||||
|
||||
/// <summary>
|
||||
/// Calculates a multi-factor dynamic AI Win-Rate / Confidence Score using technicals, sentiment, fundamentals, AI eval score, and market regime.
|
||||
/// </summary>
|
||||
double CalculateDynamicWinRate(
|
||||
string sector,
|
||||
string symbol,
|
||||
VixMarketRegime regime,
|
||||
double? n8nEvalScore = null,
|
||||
double? technicalScore = null,
|
||||
double? sentimentScore = null,
|
||||
double? fundamentalScore = null,
|
||||
string signalType = "BUY");
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user