@gabrielerandelli/minus-tracker 0.5.8 → 0.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +29 -4
- package/dist/cli/index.js +1293 -172
- package/dist/cli/index.js.map +1 -1
- package/dist/index.cjs +744 -14
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +127 -6
- package/dist/index.d.ts +127 -6
- package/dist/index.js +742 -14
- package/dist/index.js.map +1 -1
- package/package.json +10 -3
package/README.md
CHANGED
|
@@ -194,9 +194,22 @@ Esegui `minus-tracker rates --update`. Il comando `calc` esegue l'aggiornamento
|
|
|
194
194
|
**LIFO o FIFO?**
|
|
195
195
|
Il Regime Dichiarativo utilizza il LIFO come metodo predefinito ai sensi della normativa fiscale italiana. Il FIFO è disponibile per confronto. Consulta il tuo commercialista per conferma.
|
|
196
196
|
|
|
197
|
+
### Limitazioni note
|
|
198
|
+
|
|
199
|
+
minus-tracker aggrega le plusvalenze e le minusvalenze di **tutti gli strumenti finanziari in un'unica somma**, indipendentemente dalla loro categoria fiscale.
|
|
200
|
+
|
|
201
|
+
La normativa italiana prevede che i **redditi diversi** (azioni, derivati, certificati — Art. 67 TUIR) e i **redditi di capitale** (ETF/fondi UCITS — Art. 44 TUIR) non possano essere compensati tra loro: una minusvalenza su un ETF non può ridurre la plusvalenza su un'azione, e viceversa.
|
|
202
|
+
|
|
203
|
+
**Portafogli con soli titoli azionari o soli ETF:** il calcolo è corretto.
|
|
204
|
+
**Portafogli misti (azioni + ETF):** il risultato netto riportato non è direttamente utilizzabile ai fini dichiarativi. In questo caso è necessario separare manualmente i lotti per categoria fiscale prima di presentare la dichiarazione, con l'assistenza di un commercialista.
|
|
205
|
+
|
|
197
206
|
### Avvertenza
|
|
198
207
|
|
|
199
|
-
minus-tracker è un **
|
|
208
|
+
minus-tracker è un **progetto personale** sviluppato a titolo privato e **non è in alcun modo affiliato, sponsorizzato o rappresentativo del datore di lavoro dell'autore o di qualsiasi altra organizzazione**.
|
|
209
|
+
|
|
210
|
+
Il tool è fornito **esclusivamente come ausilio al calcolo** e **non costituisce consulenza fiscale, legale o finanziaria**. L'autore **declina ogni responsabilità** per eventuali errori nei calcoli, per un utilizzo improprio dello strumento o per le decisioni prese dall'utente finale sulla base dei report generati.
|
|
211
|
+
|
|
212
|
+
Si raccomanda **sempre** di verificare i risultati con un commercialista o professionista fiscale qualificato prima di presentare qualsiasi dichiarazione.
|
|
200
213
|
|
|
201
214
|
---
|
|
202
215
|
|
|
@@ -413,12 +426,24 @@ The CSV contains a SELL for a position that has no prior BUY in the same file. T
|
|
|
413
426
|
Run `minus-tracker rates --update`. The `calc` command also auto-updates if the snapshot is more than 7 days old.
|
|
414
427
|
|
|
415
428
|
**LIFO or FIFO?**
|
|
416
|
-
LIFO is the standard lot-matching method under Italian tax law for the Regime Dichiarativo. FIFO is available for comparison or other jurisdictions. Consult your
|
|
429
|
+
LIFO is the standard lot-matching method under Italian tax law for the Regime Dichiarativo. FIFO is available for comparison or other jurisdictions. Consult your tax advisor for confirmation.
|
|
430
|
+
|
|
431
|
+
### Known Limitations
|
|
432
|
+
|
|
433
|
+
minus-tracker aggregates gains and losses from **all financial instruments into a single total**, regardless of their tax category.
|
|
434
|
+
|
|
435
|
+
Italian law requires that **redditi diversi** (individual stocks, derivatives, certificates — Art. 67 TUIR) and **redditi di capitale** (ETFs / UCITS funds — Art. 44 TUIR) be kept separate: a loss on an ETF cannot offset a gain on a stock, and vice versa.
|
|
436
|
+
|
|
437
|
+
**Portfolios holding only stocks or only ETFs:** the calculation is correct.
|
|
438
|
+
**Mixed portfolios (stocks + ETFs):** the reported net result cannot be used directly for tax filing. In this case, lots must be manually separated by tax category before filing, with the help of a qualified tax advisor.
|
|
417
439
|
|
|
418
440
|
### Disclaimer
|
|
419
441
|
|
|
420
|
-
minus-tracker is a **
|
|
421
|
-
|
|
442
|
+
minus-tracker is a **personal project** developed in a private capacity and is **not affiliated with, endorsed by, or representative of the author's employer or any other organisation**.
|
|
443
|
+
|
|
444
|
+
This tool is provided **solely as a calculation aid** and **does not constitute tax, legal, or financial advice**. The author **accepts no liability** for errors in the output, misuse of the tool, or any decisions made by end users based on the generated reports.
|
|
445
|
+
|
|
446
|
+
You are **always** encouraged to review results with a qualified tax advisor before filing any return.
|
|
422
447
|
|
|
423
448
|
---
|
|
424
449
|
|