Asset valuation program using python I implemented my alogorithm into this easy to use python program. Try it out if you would like..
import math
import sys
def main():
tonnes = float(input("Enter Tonnes: "))
grade = float(input("Enter AU Grade: "))
goldprice = float(input("Enter Price Of Gold: "))
cashcosts = float(input("Enter Cash Costs: "))
sharesfloat = float(input("Enter Shares Float: "))
goconversion = float(31.1034768)
shareprice = float()
totalvalueoz = float()
saleprice = float(goldprice - cashcosts)
oz = float()
oz = grade * tonnes / goconversion
totalvalueoz = oz * saleprice
shareprice = totalvalueoz / sharesfloat
print ("Your Asset Valuation Report estimated price per share is:",shareprice)
sys.exit
if __name__ == "__main__":
main()