You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
flagSet.StringVar(&f.BaseCurrency, baseCurrencyFlagName, "USD", "Base currency for value conversion (e.g., USD, CAD)")
89
101
flagSet.BoolVar(&f.Realtime, realtimeFlagName, false, "Fetch real-time quotes and FX rates from Yahoo Finance")
90
102
flagSet.StringSliceVar(&f.ExcludeSymbols, excludeSymbolFlagName, nil, "Exclude symbol from all computations and output (repeatable)")
103
+
flagSet.StringSliceVar(&f.ExcludeCategories, excludeCategoryFlagName, nil, "Exclude asset category from all computations and output (repeatable, e.g., EQUITY)")
104
+
flagSet.StringSliceVar(&f.ExcludeTypes, excludeTypeFlagName, nil, "Exclude asset type from all computations and output (repeatable, e.g., BOND)")
105
+
flagSet.StringSliceVar(&f.ExcludeGeos, excludeGeoFlagName, nil, "Exclude geographic classification from all computations and output (repeatable, e.g., US)")
flagSet.StringSliceVar(&f.ExcludeSymbols, ibctlcmd.ExcludeSymbolFlagName, nil, "Exclude symbol from all computations and output (repeatable)")
148
+
flagSet.StringSliceVar(&f.ExcludeSymbols, excludeSymbolFlagName, nil, "Exclude symbol from all computations and output (repeatable)")
149
+
flagSet.StringSliceVar(&f.ExcludeCategories, excludeCategoryFlagName, nil, "Exclude asset category from all computations and output (repeatable, e.g., EQUITY)")
150
+
flagSet.StringSliceVar(&f.ExcludeTypes, excludeTypeFlagName, nil, "Exclude asset type from all computations and output (repeatable, e.g., BOND)")
151
+
flagSet.StringSliceVar(&f.ExcludeGeos, excludeGeoFlagName, nil, "Exclude geographic classification from all computations and output (repeatable, e.g., US)")
flagSet.StringVar(&f.BaseCurrency, baseCurrencyFlagName, "USD", "Base currency for value conversion (e.g., USD, CAD)")
90
102
flagSet.BoolVar(&f.Realtime, realtimeFlagName, false, "Fetch real-time quotes and FX rates from Yahoo Finance")
91
103
flagSet.StringSliceVar(&f.ExcludeSymbols, excludeSymbolFlagName, nil, "Exclude symbol from all computations and output (repeatable)")
104
+
flagSet.StringSliceVar(&f.ExcludeCategories, excludeCategoryFlagName, nil, "Exclude asset category from all computations and output (repeatable, e.g., EQUITY)")
105
+
flagSet.StringSliceVar(&f.ExcludeTypes, excludeTypeFlagName, nil, "Exclude asset type from all computations and output (repeatable, e.g., BOND)")
106
+
flagSet.StringSliceVar(&f.ExcludeGeos, excludeGeoFlagName, nil, "Exclude geographic classification from all computations and output (repeatable, e.g., US)")
flagSet.StringVar(&f.BaseCurrency, baseCurrencyFlagName, "USD", "Base currency for value conversion (e.g., USD, CAD)")
116
128
flagSet.BoolVar(&f.Realtime, realtimeFlagName, false, "Fetch real-time quotes and FX rates from Yahoo Finance")
117
129
flagSet.StringSliceVar(&f.ExcludeSymbols, excludeSymbolFlagName, nil, "Exclude symbol from all computations and output (repeatable)")
130
+
flagSet.StringSliceVar(&f.ExcludeCategories, excludeCategoryFlagName, nil, "Exclude asset category from all computations and output (repeatable, e.g., EQUITY)")
131
+
flagSet.StringSliceVar(&f.ExcludeTypes, excludeTypeFlagName, nil, "Exclude asset type from all computations and output (repeatable, e.g., BOND)")
132
+
flagSet.StringSliceVar(&f.ExcludeGeos, excludeGeoFlagName, nil, "Exclude geographic classification from all computations and output (repeatable, e.g., US)")
flagSet.StringVar(&f.BaseCurrency, baseCurrencyFlagName, "USD", "Base currency for value conversion (e.g., USD, CAD)")
105
117
flagSet.BoolVar(&f.Realtime, realtimeFlagName, false, "Fetch real-time quotes and FX rates from Yahoo Finance")
106
118
flagSet.StringSliceVar(&f.ExcludeSymbols, excludeSymbolFlagName, nil, "Exclude symbol from all computations and output (repeatable)")
119
+
flagSet.StringSliceVar(&f.ExcludeCategories, excludeCategoryFlagName, nil, "Exclude asset category from all computations and output (repeatable, e.g., EQUITY)")
120
+
flagSet.StringSliceVar(&f.ExcludeTypes, excludeTypeFlagName, nil, "Exclude asset type from all computations and output (repeatable, e.g., BOND)")
121
+
flagSet.StringSliceVar(&f.ExcludeGeos, excludeGeoFlagName, nil, "Exclude geographic classification from all computations and output (repeatable, e.g., US)")
flagSet.StringVar(&f.BaseCurrency, baseCurrencyFlagName, "USD", "Base currency for value conversion (e.g., USD, CAD)")
81
93
flagSet.BoolVar(&f.Realtime, realtimeFlagName, false, "Fetch real-time quotes and FX rates from Yahoo Finance")
82
94
flagSet.StringSliceVar(&f.ExcludeSymbols, excludeSymbolFlagName, nil, "Exclude symbol from all computations and output (repeatable)")
95
+
flagSet.StringSliceVar(&f.ExcludeCategories, excludeCategoryFlagName, nil, "Exclude asset category from all computations and output (repeatable, e.g., EQUITY)")
96
+
flagSet.StringSliceVar(&f.ExcludeTypes, excludeTypeFlagName, nil, "Exclude asset type from all computations and output (repeatable, e.g., BOND)")
97
+
flagSet.StringSliceVar(&f.ExcludeGeos, excludeGeoFlagName, nil, "Exclude geographic classification from all computations and output (repeatable, e.g., US)")
83
98
}
84
99
85
100
// overviewJSON is the combined JSON output for the overview command.
flagSet.BoolVar(&f.SafeExcluded, safeExcludedFlagName, false, "Show only the Safe Excluded section (excluded positions)")
186
198
flagSet.BoolVar(&f.Unsafe, unsafeFlagName, false, "Show only the Unsafe section (short-term capital gains)")
187
199
flagSet.StringSliceVar(&f.ExcludeSymbols, excludeSymbolFlagName, nil, "Exclude symbol from all computations and output (repeatable)")
200
+
flagSet.StringSliceVar(&f.ExcludeCategories, excludeCategoryFlagName, nil, "Exclude asset category from all computations and output (repeatable, e.g., EQUITY)")
201
+
flagSet.StringSliceVar(&f.ExcludeTypes, excludeTypeFlagName, nil, "Exclude asset type from all computations and output (repeatable, e.g., BOND)")
202
+
flagSet.StringSliceVar(&f.ExcludeGeos, excludeGeoFlagName, nil, "Exclude geographic classification from all computations and output (repeatable, e.g., US)")
0 commit comments