remove config flag constrant

This commit is contained in:
c9s 2022-03-16 13:51:31 +08:00
parent 334e3a3940
commit 553fe3abf9
2 changed files with 1 additions and 3 deletions

View File

@ -77,7 +77,6 @@ var listOrdersCmd = &cobra.Command{
ValidArgs: []string{"", "open", "closed"},
SilenceUsage: true,
PreRunE: cobraInitRequired([]string{
"config",
"session",
"symbol",
}),
@ -148,7 +147,6 @@ var executeOrderCmd = &cobra.Command{
Short: "execute buy/sell on the balance/position you have on specific symbol",
SilenceUsage: true,
PreRunE: cobraInitRequired([]string{
"config",
"symbol",
"side",
"target-quantity",
@ -299,7 +297,6 @@ var submitOrderCmd = &cobra.Command{
Short: "place order to the exchange",
SilenceUsage: true,
PreRunE: cobraInitRequired([]string{
"config",
"session",
"symbol",
"side",

View File

@ -230,6 +230,7 @@ func (s *ProfitStats) Init(market Market) {
func (s *ProfitStats) AddProfit(profit Profit) {
s.AccumulatedPnL = s.AccumulatedPnL.Add(profit.Profit)
s.AccumulatedNetProfit = s.AccumulatedNetProfit.Add(profit.NetProfit)
s.TodayPnL = s.TodayPnL.Add(profit.Profit)
s.TodayNetProfit = s.TodayNetProfit.Add(profit.NetProfit)