backtest-kit 1.5.17 → 1.5.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "backtest-kit",
3
- "version": "1.5.17",
3
+ "version": "1.5.18",
4
4
  "description": "A TypeScript library for trading system backtest",
5
5
  "author": {
6
6
  "name": "Petr Tripolsky",
package/types.d.ts CHANGED
@@ -104,6 +104,14 @@ declare const GLOBAL_CONFIG: {
104
104
  * Example: 3 candles = 12 points (use average), 5 candles = 20 points (use median)
105
105
  */
106
106
  CC_GET_CANDLES_MIN_CANDLES_FOR_MEDIAN: number;
107
+ /**
108
+ * Controls visibility of signal notes in markdown report tables.
109
+ * When enabled, the "Note" column will be displayed in all markdown reports
110
+ * (backtest, live, schedule, risk, etc.)
111
+ *
112
+ * Default: false (notes are hidden to reduce table width and improve readability)
113
+ */
114
+ CC_REPORT_SHOW_SIGNAL_NOTE: boolean;
107
115
  };
108
116
  /**
109
117
  * Type for global configuration object.
@@ -197,6 +205,7 @@ declare function getConfig(): {
197
205
  CC_GET_CANDLES_RETRY_DELAY_MS: number;
198
206
  CC_GET_CANDLES_PRICE_ANOMALY_THRESHOLD_FACTOR: number;
199
207
  CC_GET_CANDLES_MIN_CANDLES_FOR_MEDIAN: number;
208
+ CC_REPORT_SHOW_SIGNAL_NOTE: boolean;
200
209
  };
201
210
  /**
202
211
  * Retrieves the default configuration object for the framework.
@@ -226,6 +235,7 @@ declare function getDefaultConfig(): Readonly<{
226
235
  CC_GET_CANDLES_RETRY_DELAY_MS: number;
227
236
  CC_GET_CANDLES_PRICE_ANOMALY_THRESHOLD_FACTOR: number;
228
237
  CC_GET_CANDLES_MIN_CANDLES_FOR_MEDIAN: number;
238
+ CC_REPORT_SHOW_SIGNAL_NOTE: boolean;
229
239
  }>;
230
240
 
231
241
  /**