show indicator params like MA(44) in active list and analysis panel

This commit is contained in:
DiTus
2026-03-02 10:36:03 +01:00
parent ece1e8b56a
commit c2f92cc5fb
3 changed files with 17 additions and 8 deletions

View File

@ -311,8 +311,8 @@ export function calculateAllIndicatorSignals() {
params: indicator.params && typeof indicator.params === 'object'
? Object.entries(indicator.params)
.filter(([k, v]) => !k.startsWith('_') && v !== undefined && v !== null)
.map(([k, v]) => `${k}=${v}`)
.join(', ')
.map(([k, v]) => `${v}`)
.join(',')
: null,
type: indicator.type,
signal: currentSignal.type,