techan icon indicating copy to clipboard operation
techan copied to clipboard

Technical Analysis Library for Golang

Results 23 techan issues
Sort by recently updated
recently updated
newest added

Is this package maintained? There some open pull requests that date to 2021.

Hello, Steve Coffey! What is the difference between PayPal Orders API and Payments API from Checkout-Java-SDK? Which one to use if I want to use authentications? It is seems that...

Hey! I had a problem recalculating the last value of a series due to result caching. I want to propose to take out the need to use the cache for...

Hello, i used your code with data and ... nothing works. For example EMA always gives 0 ``` Volume: 870.19 Time: 2021-11-28T07:00:00 -> 2021-11-28T08:00:00 Open: 54377.42 Close: 54475.96 High: 54590.48...

``` package main import ( "fmt" "time" "github.com/sdcoffey/big" "github.com/sdcoffey/techan" ) func calcSma(series *techan.TimeSeries, days int) []big.Decimal { closePrices := techan.NewClosePriceIndicator(series) sma := techan.NewSimpleMovingAverage(closePrices, days) cnt := len(series.Candles) ret := make([]big.Decimal,...

Am very appreciative of you work on this. Please add more documentation via examples, with comments on every line, and more realistic scenarios. I know this seems like just a...

Hello! Would it be possible to add a way to include transaction fees into the calculations? I see two way to do it: - Update the `Strategy` interface in order...

Reference: https://www.investopedia.com/terms/v/vptindicator.asp Formula Used: 1. For second candle: ` [((CurrentClose - PreviousClose) / PreviousClose) x Volume] + 0 (because there is no PVT to first candle) ` 2. For subsequent...

Hi! Thanks for your library! I think it would be useful to add support and resistance levels indicator for a symbol. https://www.investopedia.com/trading/support-and-resistance-basics/

[Shopspring's decimal](https://github.com/shopspring/decimal) is undoubtedly a better interface than my own [big](github.com/sdcoffey/big) I propose we migrate away from big towards the better decimal impelmentation

proposal