Created
November 5, 2022 18:01
-
-
Save Ipanov7/779bded82747db0fc4ea5b9543ed018e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
func computePips(currentRate float64, averageRate float64) int { | |
return int((currentRate - averageRate) * 10000) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment