mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-22 14:55:16 +00:00
remove config flag constrant
This commit is contained in:
parent
334e3a3940
commit
553fe3abf9
|
@ -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",
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user