Golang : Calculate US Dollar Index (DXY)
Below is a code example on how to calculate the US dollar index based on a basket of other related currencies pairs. The formula to calculate US dollar index is :
USDX = 50.14348112 × EUR/USD^(-0.576) × USD/JPY^(0.136) × GBP/USD^(-0.119) × USD/CAD^(0.091) × USD/SEK^(0.042) × USD/CHF^(0.036)
How you want to deploy the US dollar index in your trading strategy? You can read more about it here.
Here you go!
package main
import (
"fmt"
"math"
"github.com/awoldes/goanda"
)
func main() {
oandaAccountID := ""
oandaAPIKey := ""
// set the NewConnection 3rd parameter to [false] to use DEMO account.
// [true] for LIVE account
UsingLIVEAccount := false // set false to use https://api-fxpractice.oanda.com
oanda := goanda.NewConnection(oandaAccountID, oandaAPIKey, UsingLIVEAccount)
fmt.Println("Calculating USD index using this formula...")
fmt.Println("USDX = 50.14348112 × EUR/USD^(-0.576) × USD/JPY^(0.136) × GBP/USD^(-0.119) x USD/CAD^(0.091) × USD/SEK^(0.042) × USD/CHF^(0.036)")
EURUSD := GetPrice(oanda, "EUR_USD")
USDJPY := GetPrice(oanda, "USD_JPY")
GBPUSD := GetPrice(oanda, "GBP_USD")
USDCAD := GetPrice(oanda, "USD_CAD")
USDSEK := GetPrice(oanda, "USD_SEK")
USDCHF := GetPrice(oanda, "USD_CHF")
EURUSDPowerOf := math.Pow(EURUSD, -0.576)
USDJPYPowerOf := math.Pow(USDJPY, 0.136)
GBPUSDPowerOf := math.Pow(GBPUSD, -0.119)
USDCADPowerOf := math.Pow(USDCAD, 0.091)
USDSEKPowerOf := math.Pow(USDSEK, 0.042)
USDCHFPowerOf := math.Pow(USDCHF, 0.036)
USDX := 50.14348112 * EURUSDPowerOf * USDJPYPowerOf * GBPUSDPowerOf * USDCADPowerOf * USDSEKPowerOf * USDCHFPowerOf
fmt.Println("Current USD Index : ", USDX)
}
//--------------------------------------------------------------------------------------------------------
func GetPrice(oanda *goanda.OandaConnection, cross string) float64 {
instrument := cross
priceResponse := oanda.GetInstrumentPrice(instrument)
return priceResponse.Prices[0].Bids[0].Price
}
Sample output for 8-March-2019:
Calculating USD index using this formula...
USDX = 50.14348112 × EUR/USD^(-0.576) × USD/JPY^(0.136) × GBP/USD^(-0.119) x USD/CAD^(0.091) × USD/SEK^(0.042) × USD/CHF^(0.036)
Current USD Index : 97.54459899738309
Points to remember
If USD is the base currency (USD/XXX), then the USDX and the currency pair should move the same direction.
If USD is the quote currency (XXX/USD), then the USDX and the currency pair should move in opposite directions.
References:
https://www.babypips.com/learn/forex/using-the-usdx-for-forex
See also : Golang : Calculate pivot points for a cross
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
+31.1k Golang : Get local IP and MAC address
+7.1k Golang : Scanf function weird error in Windows
+14.3k Golang : How to get URL port?
+6.8k Javascript : How to get JSON data from another website with JQuery or Ajax ?
+9.5k PHP : Get coordinates latitude/longitude from string
+25k Golang : Convert uint value to string type
+10.9k Golang : Proper way to test CIDR membership of an IP 4 or 6 address example
+8.6k Golang : Take screen shot of browser with JQuery example
+51.6k Golang : How to get time in milliseconds?
+21.8k Golang : Securing password with salt
+4.4k MariaDB/MySQL : How to get version information
+8k Prevent Write failed: Broken pipe problem during ssh session with screen command