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

(Commit Message) all ask price data plot file

parent 65cee5e1
No related branches found
No related tags found
No related merge requests found
#!/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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment