mirror of
https://github.com/NoFxAiOS/nofx.git
synced 2026-07-04 03:21:04 +08:00
- Multi-AI competition mode (Qwen vs DeepSeek) - Binance Futures integration - AI self-learning mechanism - Professional web dashboard - Complete risk management system
12 lines
333 B
JavaScript
12 lines
333 B
JavaScript
"use strict";
|
|
exports.buildFormatLongFn = buildFormatLongFn;
|
|
|
|
function buildFormatLongFn(args) {
|
|
return (options = {}) => {
|
|
// TODO: Remove String()
|
|
const width = options.width ? String(options.width) : args.defaultWidth;
|
|
const format = args.formats[width] || args.formats[args.defaultWidth];
|
|
return format;
|
|
};
|
|
}
|