Skip to content
Snippets Groups Projects
Commit 6e5c8b91 authored by sak2n21's avatar sak2n21
Browse files

(Commit Message) gold VS platinum data plot file

parent 44835839
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
set terminal png
set output 'goldVSplatinum_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 ['10':'2060.00']
set xtics rotate
set autoscale y
set title 'Live gold and platinum bid price in every 10 minutes'
plot "goldbid.csv" u 2:1 t "goldbidprice" w linespoints,"platinumbid.csv" u 2:1 t "platinumbidprice" w linespoints
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment