Last active
September 6, 2024 22:21
-
-
Save ajlozier/d4b37d91d13324b5236b1e13739bec85 to your computer and use it in GitHub Desktop.
PlatformGold price calculation formulas
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
/** | |
* | |
* Plain English: | |
* If disablePerOzCalc is TRUE, price = (metalWeight x metalSpot) + premium | |
* Otherwise, price = metalWeight x (metalSpot + premium) | |
* | |
* @param metalSpot | |
* @param premium | |
* @param metalWeight | |
* @param disablePerOzCalc | |
* @returns {number} | |
*/ | |
function calculateDollarPremiumPrice(metalSpot, premium, metalWeight, disablePerOzCalc) { | |
return (disablePerOzCalc) ? (metalWeight * metalSpot) + premium : metalWeight * (metalSpot + premium); | |
} | |
/** | |
* Plain English: | |
* metalWeight x metalSpot x (1 + (premium / 100)) | |
* | |
* @param metalSpot | |
* @param premium | |
* @param metalWeight | |
* @returns {number} | |
*/ | |
function calculatePercentPremiumPrice(metalSpot, premium, metalWeight) { | |
return metalWeight * metalSpot * (1 + (premium / 100)); | |
} | |
module.exports = { | |
calculateDollarPremiumPrice, | |
calculatePercentPremiumPrice | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment