candles based alerts

This commit is contained in:
yash 2026-02-26 16:02:11 +03:00
parent bec3b7de5b
commit 999f675da9
11 changed files with 316 additions and 15 deletions

View file

@ -0,0 +1,13 @@
package entities
import (
"time"
"github.com/shopspring/decimal"
)
type Candle struct {
OpenTime time.Time
High decimal.Decimal
Low decimal.Decimal
}