This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
package strategy
import (
"github.com/shopspring/decimal"
"time"
)
// CandleForStrategy 表示一根K線資料
type CandleForStrategy struct {
T time.Time // T:時間
// O:開盤價
// H:最高價
// L:最低價
// C:收盤價
O, H, L, C decimal.Decimal
V decimal.Decimal // V:成交量
}