0.7.33
This commit is contained in:
@@ -166,7 +166,8 @@
|
||||
<div class="mb-3">
|
||||
<label for="demoPipeline2ValidationProfileSelect" class="form-label">Validation profile</label>
|
||||
<select id="demoPipeline2ValidationProfileSelect" class="form-select">
|
||||
<option value="0.7.32_validation_report_semantics" selected>0.7.32 — validation report semantics</option>
|
||||
<option value="0.7.33_pair_trading_readiness" selected>0.7.33 — pair trading readiness</option>
|
||||
<option value="0.7.32_validation_report_semantics">0.7.32 — validation report semantics</option>
|
||||
<option value="0.7.31_trade_event_actionability_policy">0.7.31 — trade event actionability policy</option>
|
||||
<option value="0.7.30_non_trade_event_classification">0.7.30 — non-trade event classification</option>
|
||||
<option value="0.7.29_multi_dex_matrix_baseline">0.7.29 — DEX matrix baseline</option>
|
||||
|
||||
@@ -63,4 +63,16 @@ pairCandleCount: number,
|
||||
/**
|
||||
* Last known price.
|
||||
*/
|
||||
lastPriceQuotePerBase: number | null, };
|
||||
lastPriceQuotePerBase: number | null,
|
||||
/**
|
||||
* Pair trading-readiness class derived from base/quote orientation.
|
||||
*/
|
||||
pairTradingReadiness: string,
|
||||
/**
|
||||
* Quote asset class used by the readiness classifier.
|
||||
*/
|
||||
quoteAssetClass: string,
|
||||
/**
|
||||
* Whether the pair likely requires a router or aggregator before direct execution.
|
||||
*/
|
||||
tradingRouteRequired: boolean, };
|
||||
|
||||
@@ -0,0 +1,38 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
/**
|
||||
* Local pair trading-readiness diagnostics summary for the UI.
|
||||
*/
|
||||
export type DemoPipeline2LocalPairTradingReadinessDiagnosticSummary = {
|
||||
/**
|
||||
* Pair trading-readiness class.
|
||||
*/
|
||||
pairTradingReadiness: string,
|
||||
/**
|
||||
* Quote asset class.
|
||||
*/
|
||||
quoteAssetClass: string,
|
||||
/**
|
||||
* Whether a router or aggregator is required before direct execution.
|
||||
*/
|
||||
tradingRouteRequired: boolean,
|
||||
/**
|
||||
* Pair count.
|
||||
*/
|
||||
pairCount: number,
|
||||
/**
|
||||
* Decoded event count.
|
||||
*/
|
||||
decodedEventCount: number,
|
||||
/**
|
||||
* Decoded trade candidate count.
|
||||
*/
|
||||
decodedTradeCandidateCount: number,
|
||||
/**
|
||||
* Trade event count.
|
||||
*/
|
||||
tradeEventCount: number,
|
||||
/**
|
||||
* Pair candle count.
|
||||
*/
|
||||
pairCandleCount: number, };
|
||||
@@ -10,6 +10,7 @@ import type { DemoPipeline2LocalNonActionablePairDiagnosticSummary } from "./Dem
|
||||
import type { DemoPipeline2LocalPairActionabilityDiagnosticSummary } from "./DemoPipeline2LocalPairActionabilityDiagnosticSummary";
|
||||
import type { DemoPipeline2LocalPairDiagnosticSummary } from "./DemoPipeline2LocalPairDiagnosticSummary";
|
||||
import type { DemoPipeline2LocalPairGapDiagnosticSample } from "./DemoPipeline2LocalPairGapDiagnosticSample";
|
||||
import type { DemoPipeline2LocalPairTradingReadinessDiagnosticSummary } from "./DemoPipeline2LocalPairTradingReadinessDiagnosticSummary";
|
||||
|
||||
/**
|
||||
* Local pipeline diagnostics summary for the UI.
|
||||
@@ -184,6 +185,10 @@ pairSummaries: Array<DemoPipeline2LocalPairDiagnosticSummary>,
|
||||
* Diagnostics grouped by pair materialization/actionability class.
|
||||
*/
|
||||
pairActionabilitySummaries: Array<DemoPipeline2LocalPairActionabilityDiagnosticSummary>,
|
||||
/**
|
||||
* Diagnostics grouped by pair trading-readiness class.
|
||||
*/
|
||||
pairTradingReadinessSummaries: Array<DemoPipeline2LocalPairTradingReadinessDiagnosticSummary>,
|
||||
/**
|
||||
* Diagnostics grouped by decoded event kind.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user