#The URL of the source. %1 will be replaced by the internet code of the unit
url=https://api.bitcoinaverage.com/history/USD/per_day_all_time_history.csv

#The mode (HTML or CSV or CSVR). In HTML mode, only one value will be extracted from downloaded page. In CSV mode, a value per line will be extracted. CSVR means CSV in reverse mode.
mode=CSVR

#The regular expression for the price (see http://qt-project.org/doc/qt-4.8/qregexp.html)
price=[^,]*,[^,]*,[^,]*,([^,]*)

#The regular expression for the date (see http://qt-project.org/doc/qt-4.8/qregexp.html)
date=([^,]*) 00:00:00,.*

#The format of the date (see http://qt-project.org/doc/qt-4.8/qdate.html#fromString-2) or UNIX for unix time
dateformat=yyyy-MM-dd
