mirror of
https://github.com/NoFxAiOS/nofx.git
synced 2026-06-30 09:31:19 +08:00
- Multi-AI competition mode (Qwen vs DeepSeek) - Binance Futures integration - AI self-learning mechanism - Professional web dashboard - Complete risk management system
13 lines
290 B
JavaScript
13 lines
290 B
JavaScript
"use strict";
|
|
exports.normalizeInterval = normalizeInterval;
|
|
var _index = require("./normalizeDates.cjs");
|
|
|
|
function normalizeInterval(context, interval) {
|
|
const [start, end] = (0, _index.normalizeDates)(
|
|
context,
|
|
interval.start,
|
|
interval.end,
|
|
);
|
|
return { start, end };
|
|
}
|