diff --git a/src/highTime.js b/src/highTime.js
new file mode 100644
index 0000000..e0dc9fe
--- /dev/null
+++ b/src/highTime.js
@@ -0,0 +1,18 @@
+import Datum from "./datum";
+
+
+function updateHighTime() {
+ const highTime= document.getElementById("high-time");
+
+ const currentTime = document.getElementById("time").selectedOptions[0].innerText;
+ if (currentTime.toLowerCase() !== highTime.innerText) {
+ highTime.innerText = currentTime.toLowerCase();
+ }
+}
+
+function updateHighVal(datum) {
+ const highVal = document.getElementById("high-val");
+ highVal.innerHTML = datum.getPrice().toLocaleString();
+}
+
+export {updateHighTime, updateHighVal};
\ No newline at end of file
diff --git a/src/index.html b/src/index.html
index 7bee28f..5caa8f6 100644
--- a/src/index.html
+++ b/src/index.html
@@ -12,7 +12,13 @@
-
1 Classic Token = 0 Gold
+
@@ -51,7 +57,6 @@