Fix deploy script: add NT8.Strategies.dll to deployment pipeline
Some checks failed
Build and Test / build (push) Has been cancelled

This commit is contained in:
2026-03-22 17:28:03 -04:00
parent 2f623dc2f8
commit a2af272d73
8 changed files with 393 additions and 40 deletions

View File

@@ -176,6 +176,16 @@ namespace NT8.Strategies.Examples
return null;
}
if (_logger != null && _openingRangeReady)
{
_logger.LogDebug(
"ORB ready: High={0:F2} Low={1:F2} Range={2:F2} TradeTaken={3}",
_openingRangeHigh,
_openingRangeLow,
_openingRangeHigh - _openingRangeLow,
_tradeTaken);
}
if (_tradeTaken)
return null;
@@ -219,7 +229,8 @@ namespace NT8.Strategies.Examples
candidate.Confidence = score.WeightedScore;
candidate.Reason = string.Format("{0}; grade={1}; mode={2}", candidate.Reason, score.Grade, mode);
candidate.Metadata["confluence_score"] = score.WeightedScore;
candidate.Metadata["confluence_score"] = score;
candidate.Metadata["confluence_weighted_score"] = score.WeightedScore;
candidate.Metadata["trade_grade"] = score.Grade.ToString();
candidate.Metadata["risk_mode"] = mode.ToString();
candidate.Metadata["grade_multiplier"] = gradeMultiplier;