diff --git a/allaskprice_plot.plt b/allaskprice_plot.plt new file mode 100644 index 0000000000000000000000000000000000000000..a6f65f02ef0a9e84f9875bc009ed0686d033c196 --- /dev/null +++ b/allaskprice_plot.plt @@ -0,0 +1,17 @@ +#!/bin/bash + +set terminal png +set output 'allaskprice_plot.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-04 23:00:00':'2023-05-05 01:00:00'] +set yrange ['0.00':'2500.00'] +set xtics rotate +set autoscale y +set title 'Live ask price in every 10 minutes' +plot "goldask.csv" u 2:1 t "goldaskprice" w linespoints,"silverask.csv" u 2:1 t "silevraskprice" w linespoints,"palladiumask.csv" u 2:1 t "palladiumaskprice" w linespoints, "platinumask.csv" u 2:1 t "platinumaskprice" w linespoints +