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/build/index.cjs +225 -61
- package/build/index.mjs +225 -61
- package/package.json +1 -1
- package/types.d.ts +10 -0
package/package.json
CHANGED
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
|
/**
|