- SMA
@@ -11,6 +11,8 @@ var (
)
type Market interface {
+ Talib
+
Connect(done chan struct{}) (chan MarketConnection, error)
Subscribe(symbol string) error
@@ -0,0 +1,5 @@
+package sentio
+type Talib interface {
+ SMA(symbol string, interval, period, limit uint) []float64
+}