@rivascva/dt-idl 1.1.188 → 1.1.189
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/go/models/constants.go +7 -0
- package/package.json +1 -1
package/go/models/constants.go
CHANGED
|
@@ -39,3 +39,10 @@ const (
|
|
|
39
39
|
// MarketCloseGracePeriod is a grace period added after the official close time to allow in-flight operations to finish.
|
|
40
40
|
MarketCloseGracePeriod = 45 * time.Second
|
|
41
41
|
)
|
|
42
|
+
|
|
43
|
+
var (
|
|
44
|
+
// PortfolioDefaultCash is the default cash new portfolios.
|
|
45
|
+
PortfolioDefaultCash = float64(50000)
|
|
46
|
+
// PortfolioDefaultFavoriteSymbols is the default favorite symbols new portfolios.
|
|
47
|
+
PortfolioDefaultFavoriteSymbols = []string{"AAPL", "GOOG", "MSFT", "AMZN", "NVDA"}
|
|
48
|
+
)
|