refactor: remove retired daily quota parameters from target diagnostics

This commit is contained in:
boris
2026-09-12 06:48:07 +08:00
parent 24cb4805a7
commit 5949d4cc69
2 changed files with 1 additions and 11 deletions
-10
View File
@@ -3521,8 +3521,6 @@ where
data,
&symbol,
current_qty,
minimum_order_quantity,
order_step_size,
)
{
diagnostics.push(format!(
@@ -3539,8 +3537,6 @@ where
data,
&symbol,
current_qty,
minimum_order_quantity,
order_step_size,
)
{
diagnostics.push(format!(
@@ -3951,8 +3947,6 @@ where
data,
symbol,
current_qty,
minimum_order_quantity,
order_step_size,
) else {
continue;
};
@@ -4220,8 +4214,6 @@ where
data: &DataSet,
symbol: &str,
current_qty: u32,
minimum_order_quantity: u32,
order_step_size: u32,
) -> Option<String> {
if let Some(reason) = self.runtime_auto_sell_denials.borrow().get(symbol) {
return Some(reason.clone());
@@ -4272,8 +4264,6 @@ where
data: &DataSet,
symbol: &str,
current_qty: u32,
minimum_order_quantity: u32,
order_step_size: u32,
) -> Option<String> {
let snapshot = data.require_market(date, symbol).ok()?;
let candidate = data.require_candidate(date, symbol).ok()?;