Activity of sdcoffey/techan repository

Active 🚀

Active contributions

Activity badge for sdcoffey/techan repository

Why sdcoffey/techan is active?

The result is based on ratio of number of commits and code additions from initial and final time ranges.

Initial time range – from 5 Jul, 2023 to 5 Oct, 2023

Final time range – from 5 Apr, 2024 to 5 Jul, 2024

Additions and deletions stats are not available for this repository due to GitHub API limitations.

Data calculated on 5 Jul, 2024

Summary of sdcoffey/techan

The GitHub repository sdcoffey/techan is a technical analysis library for the Go language. The name "techan" is a play on the term "tech and finance", which reflects the purpose of the library. It provides comprehensive tools for technical analysis of financial markets.

It includes indicators such as:

  • Simple Moving Average (SMA)
  • Exponential Moving Average (EMA)
  • Moving Average Convergence Divergence (MACD)
  • Relative Strength Index (RSI)
  • Bollinger Bands

Moreover, it provides utilities for managing and analyzing time series data. Its features include:

  • Market indicators
  • Signal detection
  • Candlestick pattern detection
  • Utility methods for managing and manipulating time series

Here is how you can use it:

package main import ( \t\"fmt\" \t\"github.com/markcheno/go-quote\" \t\"github.com/sdcoffey/techan\" ) func main() { \tquotes, _ := quote.NewQuoteFromYahoo( \t\t\"aapl\", \t\t\"2016-01-01\", \t\t\"2016-04-01\", \t\tquote.Daily, \t\ttrue) \tclosePrices := techan.NewTimeSeries() \tfor _, q := range quotes { \t\tclosePrices.AddCandle(techan.NewCandle(q.Date, q.Open, q.High, q.Low, q.Close, q.Volume)) \t} \tlogReturns := techan.LogReturnTransform(closePrices) \tfmt.Println(logReturns) }

This library is created and maintained by Steve Coffey. As of writing, the repository has over 150 stars and 22 forks. Note, however, that the library doesn't seem to provide any guarantee of maintenance or reliability.

The documentation for the library is quite comprehensive and the code examples are easy to understand, making it a viable option for anyone interested in financial market analysis using Go.

Recently analyzed projects

Activity badge for linexjlin/GPTs repository

Updated on 5 Jul 2024

Activity badge for ethereum/go-ethereum repository

Updated on 5 Jul 2024

Activity badge for asdf-vm/asdf-nodejs repository

Updated on 5 Jul 2024

Activity badge for 1Panel-dev/1Panel repository

Updated on 5 Jul 2024

Top 5 contributors

ContributorCommits
50
1
1
1
1