Golang : Calculate Relative Strength Index(RSI) example
Alright, below is a simple example on how to calculate the Relative Strength Index(RSI) using data from Binance.com and Golang. This example should be able to work with little modification if you're pulling your data from exchange other than Binance. All you need is a slice with Close
price values.
UPDATE : Please use the RSI function from "github.com/markcheno/go-talib" It matches the TradingView.com result.
Here you go!
package main
import (
"context"
"fmt"
"math"
"strconv"
"time"
"github.com/adshao/go-binance"
)
var (
//Binance
binanceAPIKey = "<your binance api key>"
binanceSecretKey = "<your binance secret key>"
)
func humanTimeToUnixNanoTime(input time.Time) int64 {
return int64(time.Nanosecond) * input.UnixNano() / int64(time.Millisecond)
}
func main() {
client := binance.NewClient(binanceAPIKey, binanceSecretKey)
targetSymbol := "BNBUSDT"
// reference https://golang.org/pkg/time/#Date
// func Date(year int, month Month, day, hour, min, sec, nsec int, loc *Location) Time
// NOTE : Binance only accepts unix nano timestamp, not unix time stamp
// For example
// 1527616800 <----- will return empty result or wrong date range
// 1527616899999 <--- ok
//startTimeHumanReadable := time.Date(2018, time.October, 10, 0, 0, 0, 0, time.UTC)
//start := humanTimeToUnixNanoTime(startTimeHumanReadable)
//endTimeHumanReadable := time.Date(2018, time.October, 24, 0, 0, 0, 0, time.UTC)
//end := humanTimeToUnixNanoTime(endTimeHumanReadable)
targetInterval := "1d" /// case sensitive, 1D != 1d or 30M != 30m
data, err := client.NewKlinesService().Symbol(targetSymbol).Interval(targetInterval).Do(context.Background())
if err != nil {
fmt.Println(err)
return
}
totalGain := 0.0
totalLoss := 0.0
for i := 1; i < len(data); i++ {
previous := data[i].Close
current := data[i-1].Close
// convert string to float64
previousClose, _ := strconv.ParseFloat(previous, 64)
currentClose, _ := strconv.ParseFloat(current, 64)
difference := currentClose - previousClose
if difference >= 0 {
totalGain += difference
} else {
totalLoss -= difference
}
}
rs := totalGain / math.Abs(totalLoss)
rsi := 100 - 100/(1+rs)
fmt.Println("RSI for "+targetSymbol+" : ", rsi)
}
Example output:
Thu Oct 25 11:35:33 +08 2018
RSI for BNBUSDT : 47.84161851469368
NOTE:
UPDATE : Please use the RSI function from "github.com/markcheno/go-talib" It matches the TradingView.com result.
I've tried to compare the result to see if it matches the RSI values calculated by TradingView.com (TV) and what I found out is that BTCUSDT and BNBUSDT RSI values are pretty close to the values calculated by this code example. I noticed that in TV's RSI row, it has complete data dating back to more than 1 year.
Most of the mismatched values found in TV have data less than 5 months. Some said that the data needs to be smoothed out first, etc. So far,I'm pretty ok with the values given by this script.
References:
https://stockcharts.com/school/doku.php?id=chartschool:technicalindicators:relativestrengthindex_rsi
See also : Golang : A simple forex opportunities scanner
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+4.7k Mac OSX : Get disk partitions' size, type and name
+8.5k Golang : How to check if input string is a word?
+11.7k Golang : Display a text file line by line with line number example
+7.4k Golang : How to convert strange string to JSON with json.MarshalIndent
+24.6k Golang : GORM read from database example
+11.4k Golang : Post data with url.Values{}
+7.8k Golang : Generate human readable password
+4.7k Javascript : Detect when console is activated and do something about it
+4.8k JavaScript: Add marker function on Google Map
+16.1k Golang : How to reverse elements order in map ?
+12.4k Golang : Print UTF-8 fonts on image example
+13.5k Golang : Generate Code128 barcode