diff --git a/allAsk.plt b/allAsk.plt
new file mode 100755
index 0000000000000000000000000000000000000000..b11172a510e6534405853c5485f288acee66b06c
--- /dev/null
+++ b/allAsk.plt
@@ -0,0 +1,20 @@
+#!/bin/bash
+
+set terminal png
+set output 'allAsk.png'
+set datafile separator ","
+set xlabel 'time'
+set xdata time
+set timefmt '%Y-%m-%d %H:%M:%S'
+set format x '%Y-%m-%d %H:%M:%S'
+set ylabel 'price'
+set xrange ['2023-05-05 22:00:00':'2023-05-05 24:00:00']
+set yrange ['20.00':'2020.00']
+set xtics rotate
+set autoscale y
+set title 'Ask'
+set style line 1 linecolor rgb 'blue' linetype 1 linewidth 1 pointtype 5 pointsize 1
+set style line 2 linecolor rgb 'red' linetype 1 linewidth 1 pointtype 7 pointsize 1
+set style line 3 linecolor rgb 'green' linetype 1 linewidth 1 pointtype 9 pointsize 1
+set style line 4 linecolor rgb 'yellow' linetype 1 linewidth 1 pointtype 13 pointsize 1
+plot "gold.csv" u 5:2 t "goldAsk" w linespoints ls 1, "silver.csv" u 5:2 t "silverAsk" w linespoints ls 2, "platinum.csv" u 5:2 t "platinumAsk" w linespoints ls 3, "palladium.csv" u 5:2 t "palladiumAsk" w linespoints ls 4
diff --git a/allAsk.png b/allAsk.png
new file mode 100644
index 0000000000000000000000000000000000000000..8ffad5f4d9443e709cb36ab0128336cdd644eb3f
Binary files /dev/null and b/allAsk.png differ
diff --git a/allBid.plt b/allBid.plt
new file mode 100755
index 0000000000000000000000000000000000000000..3a5863db93bd578f4a88018a1e5aff53fefdbcd3
--- /dev/null
+++ b/allBid.plt
@@ -0,0 +1,21 @@
+#!/bin/bash
+
+set terminal png
+set output 'allBid.png'
+set datafile separator ","
+set xlabel 'time'
+set xdata time
+set timefmt '%Y-%m-%d %H:%M:%S'
+set format x '%Y-%m-%d %H:%M:%S'
+set ylabel 'price'
+set xrange ['2023-05-05 22:00:00':'2023-05-05 24:00:00']
+set yrange ['20.00':'2020.00']
+set xtics rotate
+set autoscale y
+set title 'Bid'
+set style line 1 linecolor rgb 'blue' linetype 1 linewidth 1 pointtype 5 pointsize 1
+set style line 2 linecolor rgb 'red' linetype 1 linewidth 1 pointtype 7 pointsize 1
+set style line 3 linecolor rgb 'green' linetype 1 linewidth 1 pointtype 9 pointsize 1
+set style line 4 linecolor rgb 'yellow' linetype 1 linewidth 1 pointtype 13 pointsize 1
+plot "gold.csv" u 5:1 t "goldBid" w linespoints ls 1, "silver.csv" u 5:1 t "silverBid" w linespoints ls 2, "platinum.csv" u 5:1 t "platinumBid" w linespoints ls 3, "palladium.csv" u 5:1 t "palladiumBid" w linespoints ls 4
+
diff --git a/allBid.png b/allBid.png
new file mode 100644
index 0000000000000000000000000000000000000000..ef86a9cd8b81c32fc1478ab7777c967c49cc2888
Binary files /dev/null and b/allBid.png differ
diff --git a/allChange.plt b/allChange.plt
new file mode 100755
index 0000000000000000000000000000000000000000..b611bd1b75bc0f3d4f0f49f100d0d22207cf6ec6
--- /dev/null
+++ b/allChange.plt
@@ -0,0 +1,20 @@
+#!/bin/bash
+
+set terminal png
+set output 'allChange.png'
+set datafile separator ","
+set xlabel 'time'
+set xdata time
+set timefmt '%Y-%m-%d %H:%M:%S'
+set format x '%Y-%m-%d %H:%M:%S'
+set ylabel 'price'
+set xrange ['2023-05-05 22:00:00':'2023-05-05 24:00:00']
+set yrange ['0.00':'25.00']
+set xtics rotate
+set autoscale y
+set title 'Change'
+set style line 1 linecolor rgb 'blue' linetype 1 linewidth 1 pointtype 5 pointsize 1
+set style line 2 linecolor rgb 'red' linetype 1 linewidth 1 pointtype 7 pointsize 1
+set style line 3 linecolor rgb 'green' linetype 1 linewidth 1 pointtype 9 pointsize 1
+set style line 4 linecolor rgb 'yellow' linetype 1 linewidth 1 pointtype 13 pointsize 1
+plot "gold.csv" u 5:3 t "goldChange" w linespoints ls 1, "silver.csv" u 5:3 t "silverChange" w linespoints ls 2, "platinum.csv" u 5:3 t "platinumChange" w linespoints ls 3, "palladium.csv" u 5:3 t "palladiumChange" w linespoints ls 4
diff --git a/allChange.png b/allChange.png
new file mode 100644
index 0000000000000000000000000000000000000000..0e5784508190ae7150e9fdfdaa3912190b986d9a
Binary files /dev/null and b/allChange.png differ
diff --git a/allChangePercent.plt b/allChangePercent.plt
new file mode 100755
index 0000000000000000000000000000000000000000..be34395cb6a67b16b9c17e4eac421309cc48b10b
--- /dev/null
+++ b/allChangePercent.plt
@@ -0,0 +1,20 @@
+#!/bin/bash
+
+set terminal png
+set output 'allChangePercent.png'
+set datafile separator ","
+set xlabel 'time'
+set xdata time
+set timefmt '%Y-%m-%d %H:%M:%S'
+set format x '%Y-%m-%d %H:%M:%S'
+set ylabel 'percent'
+set xrange ['2023-05-05 22:00:00':'2023-05-05 24:00:00']
+set yrange ['0.00':'4.00']
+set xtics rotate
+set autoscale y
+set title 'ChangePercent'
+set style line 1 linecolor rgb 'blue' linetype 1 linewidth 1 pointtype 5 pointsize 1
+set style line 2 linecolor rgb 'red' linetype 1 linewidth 1 pointtype 7 pointsize 1
+set style line 3 linecolor rgb 'green' linetype 1 linewidth 1 pointtype 9 pointsize 1
+set style line 4 linecolor rgb 'yellow' linetype 1 linewidth 1 pointtype 13 pointsize 1
+plot "gold.csv" u 5:4 t "goldChangePercent" w linespoints ls 1, "silver.csv" u 5:4 t "silverChangePercent" w linespoints ls 2, "platinum.csv" u 5:4 t "platinumChangePercent" w linespoints ls 3, "palladium.csv" u 5:4 t "palladiumChangePercent" w linespoints ls 4
diff --git a/allChangePercent.png b/allChangePercent.png
new file mode 100644
index 0000000000000000000000000000000000000000..b8ee3b7f8394cf6472184a0e08a730706e2d2d49
Binary files /dev/null and b/allChangePercent.png differ
diff --git a/allSilver.plt b/allSilver.plt
new file mode 100755
index 0000000000000000000000000000000000000000..5116a95592028653f743f7a5f382806ac28431f2
--- /dev/null
+++ b/allSilver.plt
@@ -0,0 +1,20 @@
+#!/bin/bash
+
+set terminal png
+set output 'allSilver.png'
+set datafile separator ","
+set xlabel 'time'
+set xdata time
+set timefmt '%Y-%m-%d %H:%M:%S'
+set format x '%Y-%m-%d %H:%M:%S'
+set ylabel 'price'
+set xrange ['2023-05-05 22:00:00':'2023-05-05 24:00:00']
+set yrange ['25.00':'26.00']
+set xtics rotate
+set autoscale y
+set title 'all (Silver)'
+set style line 1 linecolor rgb 'blue' linetype 1 linewidth 1 pointtype 5 pointsize 1
+set style line 2 linecolor rgb 'red' linetype 1 linewidth 1 pointtype 7 pointsize 1
+set style line 3 linecolor rgb 'green' linetype 1 linewidth 1 pointtype 9 pointsize 1
+set style line 4 linecolor rgb 'yellow' linetype 1 linewidth 1 pointtype 13 pointsize 1
+plot "silver.csv" u 5:1 t "silverBid" w linespoints ls 1, "silver.csv" u 5:2 t "silverAsk" w linespoints ls 2, "silver.csv" u 5:3 t "silverChange" w linespoints ls 3, "silver.csv" u 5:4 t "silverChangePercent" w linespoints ls 4
diff --git a/allSilver.png b/allSilver.png
new file mode 100644
index 0000000000000000000000000000000000000000..f5e5bf726ba9cb283e59123f4b4e9cd03529bd32
Binary files /dev/null and b/allSilver.png differ
diff --git a/goldBid.plt b/goldBid.plt
new file mode 100755
index 0000000000000000000000000000000000000000..12a4ffb0466183f57821de00453f5a4d7dfdfb81
--- /dev/null
+++ b/goldBid.plt
@@ -0,0 +1,17 @@
+#!/bin/bash
+
+set terminal png
+set output 'goldBid.png'
+set datafile separator ","
+set xlabel 'time'
+set xdata time
+set timefmt '%Y-%m-%d %H:%M:%S'
+set format x '%Y-%m-%d %H:%M:%S'
+set ylabel 'price'
+set xrange ['2023-05-05 22:00:00':'2023-05-05 24:00:00']
+set yrange ['2000.00':'2020.00']
+set xtics rotate
+set autoscale y
+set title 'Bid (Gold)'
+set style line 1 linecolor rgb 'blue' linetype 1 linewidth 1 pointtype 5 pointsize 1
+plot "gold.csv" u 5:1 t "goldBid" w linespoints ls 1
diff --git a/goldBid.png b/goldBid.png
new file mode 100644
index 0000000000000000000000000000000000000000..fddf59475190f36a2d6ae16496130cb80c541b4b
Binary files /dev/null and b/goldBid.png differ
diff --git a/goldBidAsk.plt b/goldBidAsk.plt
new file mode 100755
index 0000000000000000000000000000000000000000..6d9a88bc633743d9b20c5c19e8da6d91a7fb7995
--- /dev/null
+++ b/goldBidAsk.plt
@@ -0,0 +1,18 @@
+#!/bin/bash
+
+set terminal png
+set output 'goldBidAsk.png'
+set datafile separator ","
+set xlabel 'time'
+set xdata time
+set timefmt '%Y-%m-%d %H:%M:%S'
+set format x '%Y-%m-%d %H:%M:%S'
+set ylabel 'price'
+set xrange ['2023-05-05 22:00:00':'2023-05-05 24:00:00']
+set yrange ['2000.00':'2020.00']
+set xtics rotate
+set autoscale y
+set title 'BidAsk (Gold)'
+set style line 1 linecolor rgb 'blue' linetype 1 linewidth 1 pointtype 5 pointsize 1
+set style line 2 linecolor rgb 'red' linetype 1 linewidth 1 pointtype 7 pointsize 1
+plot "gold.csv" u 5:1 t "goldBid" w linespoints ls 1, "gold.csv" u 5:2 t "goldAsk" w linespoints ls 2
diff --git a/goldBidAsk.png b/goldBidAsk.png
new file mode 100644
index 0000000000000000000000000000000000000000..d963dc15f98285e3871ff7856ce630351c6c295b
Binary files /dev/null and b/goldBidAsk.png differ
diff --git a/palladiumBidAsk.plt b/palladiumBidAsk.plt
new file mode 100755
index 0000000000000000000000000000000000000000..2df860e27f8c95b733198317e345b4f0b03e1a2a
--- /dev/null
+++ b/palladiumBidAsk.plt
@@ -0,0 +1,18 @@
+#!/bin/bash
+
+set terminal png
+set output 'palladiumBidAsk.png'
+set datafile separator ","
+set xlabel 'time'
+set xdata time
+set timefmt '%Y-%m-%d %H:%M:%S'
+set format x '%Y-%m-%d %H:%M:%S'
+set ylabel 'price'
+set xrange ['2023-05-05 22:00:00':'2023-05-05 24:00:00']
+set yrange ['25.00':'26.00']
+set xtics rotate
+set autoscale y
+set title 'BidAsk (Palladium)'
+set style line 1 linecolor rgb 'blue' linetype 1 linewidth 1 pointtype 5 pointsize 1
+set style line 2 linecolor rgb 'red' linetype 1 linewidth 1 pointtype 7 pointsize 1
+plot "palladium.csv" u 5:1 t "palladiumBid" w linespoints ls 1, "palladium.csv" u 5:2 t "palladiumAsk" w linespoints ls 2
diff --git a/palladiumBidAsk.png b/palladiumBidAsk.png
new file mode 100644
index 0000000000000000000000000000000000000000..1326f9875a8f97aae3706f31feebebbacdca3302
Binary files /dev/null and b/palladiumBidAsk.png differ
diff --git a/platinumBidAsk.plt b/platinumBidAsk.plt
new file mode 100755
index 0000000000000000000000000000000000000000..f2464c75799c97150584aeba75cb80e1ff420641
--- /dev/null
+++ b/platinumBidAsk.plt
@@ -0,0 +1,18 @@
+#!/bin/bash
+
+set terminal png
+set output 'platinumBidAsk.png'
+set datafile separator ","
+set xlabel 'time'
+set xdata time
+set timefmt '%Y-%m-%d %H:%M:%S'
+set format x '%Y-%m-%d %H:%M:%S'
+set ylabel 'price'
+set xrange ['2023-05-05 22:00:00':'2023-05-05 24:00:00']
+set yrange ['1040.00':'1070.00']
+set xtics rotate
+set autoscale y
+set title 'BidAsk (Platinum)'
+set style line 1 linecolor rgb 'blue' linetype 1 linewidth 1 pointtype 5 pointsize 1
+set style line 2 linecolor rgb 'red' linetype 1 linewidth 1 pointtype 7 pointsize 1
+plot "platinum.csv" u 5:1 t "platinumBid" w linespoints ls 1, "platinum.csv" u 5:2 t "platinumAsk" w linespoints ls 2
diff --git a/platinumBidAsk.png b/platinumBidAsk.png
new file mode 100644
index 0000000000000000000000000000000000000000..cfa30b6bef227e68938125b7d18bb10d545b6f3c
Binary files /dev/null and b/platinumBidAsk.png differ
diff --git a/silverBidAsk.plt b/silverBidAsk.plt
new file mode 100755
index 0000000000000000000000000000000000000000..fe392a4b3a77a3f73c1605e4b6d27240150d75f6
--- /dev/null
+++ b/silverBidAsk.plt
@@ -0,0 +1,18 @@
+#!/bin/bash
+
+set terminal png
+set output 'silverBidAsk.png'
+set datafile separator ","
+set xlabel 'time'
+set xdata time
+set timefmt '%Y-%m-%d %H:%M:%S'
+set format x '%Y-%m-%d %H:%M:%S'
+set ylabel 'price'
+set xrange ['2023-05-05 22:00:00':'2023-05-05 24:00:00']
+set yrange ['25.00':'26.00']
+set xtics rotate
+set autoscale y
+set title 'BidAsk (Silver)'
+set style line 1 linecolor rgb 'blue' linetype 1 linewidth 1 pointtype 5 pointsize 1
+set style line 2 linecolor rgb 'red' linetype 1 linewidth 1 pointtype 7 pointsize 1
+plot "silver.csv" u 5:1 t "silverBid" w linespoints ls 1, "silver.csv" u 5:2 t "silverAsk" w linespoints ls 2
diff --git a/silverBidAsk.png b/silverBidAsk.png
new file mode 100644
index 0000000000000000000000000000000000000000..fc5bd711532ba754b319b277f69ddc357237b55a
Binary files /dev/null and b/silverBidAsk.png differ