mirror of
https://github.com/NoFxAiOS/nofx.git
synced 2026-07-04 19:41:02 +08:00
- Multi-AI competition mode (Qwen vs DeepSeek) - Binance Futures integration - AI self-learning mechanism - Professional web dashboard - Complete risk management system
6 lines
122 B
JavaScript
6 lines
122 B
JavaScript
import exponent from "./exponent.js";
|
|
|
|
export default function(step) {
|
|
return Math.max(0, -exponent(Math.abs(step)));
|
|
}
|