mirror of
https://github.com/taigrr/wtf
synced 2025-01-18 04:03:14 -08:00
* Move finnhub to a stocks folder
As I am preparing an other stocks data provider, let's move `finnhub` to
a stocks folder that will host the others providers.
* Use go-pretty v6
Will be used by the new stock provider module, so let's just upgrade
this one to reduce the number of dependencies.
* Add Yahoo Finance module
Yahoo Finance provides an API for which `piquette/finance-go` is a
powerful client. This new module leverages this module to integrate all
indices provided by Yahoo Finance (international stocks, crypto,
options, currencies...)
Sample config:
```yaml
yfinance:
title: "Stocks 🚀"
symbols:
- "MSFT"
- "GC=F"
- "ORA.PA"
sort: true
enabled: true
refreshInterval: 60
position:
top: 1
left: 0
height: 1
width: 1
```
38 lines
992 B
Go
38 lines
992 B
Go
package finnhub
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/olebedev/config"
|
|
"github.com/wtfutil/wtf/cfg"
|
|
"github.com/wtfutil/wtf/utils"
|
|
)
|
|
|
|
const (
|
|
defaultFocusable = true
|
|
defaultTitle = "📈 Stocks Price"
|
|
)
|
|
|
|
// Settings defines the configuration properties for this module
|
|
type Settings struct {
|
|
*cfg.Common
|
|
|
|
apiKey string `help:"Your finnhub API token."`
|
|
symbols []string `help:"An array of stocks symbols (i.e. AAPL, MSFT)"`
|
|
}
|
|
|
|
// NewSettingsFromYAML creates a new settings instance from a YAML config block
|
|
func NewSettingsFromYAML(name string, ymlConfig *config.Config, globalConfig *config.Config) *Settings {
|
|
|
|
settings := Settings{
|
|
Common: cfg.NewCommonSettingsFromModule(name, defaultTitle, defaultFocusable, ymlConfig, globalConfig),
|
|
|
|
apiKey: ymlConfig.UString("apiKey", ymlConfig.UString("apikey", os.Getenv("WTF_FINNHUB_API_KEY"))),
|
|
symbols: utils.ToStrs(ymlConfig.UList("symbols")),
|
|
}
|
|
|
|
cfg.ModuleSecret(name, globalConfig, &settings.apiKey).Load()
|
|
|
|
return &settings
|
|
}
|