UNPKG

quant-zero

Version:

Node-Quant is a powerful Node.js package for developing and testing quantitative trading strategies in cryptocurrency markets, offering tools for backtesting and performance analysis.

7 lines (5 loc) 187 B
import crypto from 'crypto'; export const generateMD5Id = (): string => { const seed = Math.random().toString(); return crypto.createHash('md5').update(seed).digest('hex'); };