mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-05-13 23:16:45 +00:00
53 lines
1.1 KiB
Go
53 lines
1.1 KiB
Go
package main
|
|
|
|
import (
|
|
"net/http"
|
|
"fmt"
|
|
"encoding/json"
|
|
"io/ioutil"
|
|
"errors"
|
|
)
|
|
|
|
func CalculateAmountWithFee(amount, fee float64) (float64) {
|
|
return amount + CalculateFee(amount, fee)
|
|
}
|
|
|
|
func CalculateFee(amount, fee float64) (float64) {
|
|
return amount * (fee / 100)
|
|
}
|
|
|
|
func CalculatePercentageDifference(amount, secondAmount float64) (float64) {
|
|
return (secondAmount - amount) / amount * 100
|
|
}
|
|
|
|
func CalculateNetProfit(amount, priceThen, priceNow, costs float64) (float64) {
|
|
return (priceNow * amount) - (priceThen * amount) - costs
|
|
}
|
|
|
|
func SendHTTPRequest(url string, jsonDecode bool, result interface{}) (err error) {
|
|
res, err := http.Get(url)
|
|
|
|
if err != nil {
|
|
fmt.Println(err)
|
|
return err
|
|
}
|
|
|
|
if res.StatusCode != 200 {
|
|
fmt.Printf("HTTP status code: %d", res.StatusCode)
|
|
return errors.New("Status code was not 200.")
|
|
}
|
|
|
|
contents, _ := ioutil.ReadAll(res.Body)
|
|
//fmt.Printf("Recieved raw: %s\n", string(contents))
|
|
|
|
if jsonDecode {
|
|
err := json.Unmarshal(contents, &result)
|
|
|
|
if err != nil {
|
|
return errors.New("Unable to JSON decode body.")
|
|
}
|
|
} else {
|
|
result = contents
|
|
}
|
|
return
|
|
} |