Ahí está mi código.
const Product = function (id, date, pair, timeframe, shortLong, entry, tp, sl, size, wl, link, reasons, results) { this.id = id; this.date = date; this.pair = pair; this.timeframe = timeframe; this.shortLong = shortLong; this.entry = entry; this.tp = tp this.sl = sl; this.size = size; this.profit = (() => { }); this.r = null; this.wl = wl; this.link = link; this.reasons = reasons; this.results = results; } const data = { products: [], selectedProduct: null, totalProfit: 0 }Quiero calcular r y el lado de las ganancias, pero no puedo. lo intenté como
this.profit = (() => { });de esta manera, pero creo que Js no permite este tipo de funciones.
¿Cómo puedo agregar a esta matriz de productos de valores?