var nowDate = new Date();
var day = nowDate.getUTCDate();
var month = nowDate.getUTCMonth();
var correctedMonth = month + 1;
var year = nowDate.getYear();
 if (year < 1900) {year = year + 1900};
var hour = nowDate.getUTCHours();
var correctedHour = hour - 6; // <---------------------------------- Spring Forward = 5  //  Fall Back = 6
if (correctedHour < 0) {correctedHour = correctedHour + 24};
if (correctedHour >= 18) {day = day - 1}; // <--------------------- Spring Forward = 19 //  Fall Back = 18
if (day < 1) {day = "0"};
if (day < 1) {correctedMonth = month};
if (day < 10) {day = "0" + day};
if (correctedHour < 10) {correctedHour = "0" + correctedHour};
if (correctedMonth < 10) {correctedMonth = "0" + correctedMonth};
var currentDate = year + "" + correctedMonth + "" + day + "" + correctedHour;