function preMain() {
setStudyTitle("datetest");
setComputeOnClose(true);
}
function main() {
if (!isDaily()) { return null };
var dt = null;
var raw = 0;
// SECONDS since 1/1/1970
raw = getValue("rawtime",0);
// ctor needs MILLISECSONDS since 1/1/1970
dt = new Date((raw * 1000));
debugPrint(" Bar Rawtime == " + raw );
debugPrintln("Bar Date == " + (getMonth(0)) + "/" + getDay(0) + "/" + getYear(0) +",");
debugPrint(" Obj MSecs == " + dt.getTime());
debugPrintln("Obj Date == " + (dt.getMonth()+1) + "/" + dt.getDate() + "/" + dt.getFullYear() + ",");
debugPrintln("");
return null;
}
Here is the output (file) I got while testing...
Bar Date == 10/13/2005, Bar Rawtime == 1129158060
Obj Date == 10/12/2005, Obj MSecs == 1129158060000
Bar Date == 10/14/2005, Bar Rawtime == 1129244460
Obj Date == 10/13/2005, Obj MSecs == 1129244460000
Bar Date == 10/17/2005, Bar Rawtime == 1129503660
Obj Date == 10/16/2005, Obj MSecs == 1129503660000
Bar Date == 10/18/2005, Bar Rawtime == 1129590060
Obj Date == 10/17/2005, Obj MSecs == 1129590060000
Bar Date == 10/19/2005, Bar Rawtime == 1129676460
Obj Date == 10/18/2005, Obj MSecs == 1129676460000
Bar Date == 10/20/2005, Bar Rawtime == 1129762860
Obj Date == 10/19/2005, Obj MSecs == 1129762860000
Bar Date == 10/21/2005, Bar Rawtime == 1129849260
Obj Date == 10/20/2005, Obj MSecs == 1129849260000
setStudyTitle("datetest");
setComputeOnClose(true);
}
function main() {
if (!isDaily()) { return null };
var dt = null;
var raw = 0;
// SECONDS since 1/1/1970
raw = getValue("rawtime",0);
// ctor needs MILLISECSONDS since 1/1/1970
dt = new Date((raw * 1000));
debugPrint(" Bar Rawtime == " + raw );
debugPrintln("Bar Date == " + (getMonth(0)) + "/" + getDay(0) + "/" + getYear(0) +",");
debugPrint(" Obj MSecs == " + dt.getTime());
debugPrintln("Obj Date == " + (dt.getMonth()+1) + "/" + dt.getDate() + "/" + dt.getFullYear() + ",");
debugPrintln("");
return null;
}
Here is the output (file) I got while testing...
Bar Date == 10/13/2005, Bar Rawtime == 1129158060
Obj Date == 10/12/2005, Obj MSecs == 1129158060000
Bar Date == 10/14/2005, Bar Rawtime == 1129244460
Obj Date == 10/13/2005, Obj MSecs == 1129244460000
Bar Date == 10/17/2005, Bar Rawtime == 1129503660
Obj Date == 10/16/2005, Obj MSecs == 1129503660000
Bar Date == 10/18/2005, Bar Rawtime == 1129590060
Obj Date == 10/17/2005, Obj MSecs == 1129590060000
Bar Date == 10/19/2005, Bar Rawtime == 1129676460
Obj Date == 10/18/2005, Obj MSecs == 1129676460000
Bar Date == 10/20/2005, Bar Rawtime == 1129762860
Obj Date == 10/19/2005, Obj MSecs == 1129762860000
Bar Date == 10/21/2005, Bar Rawtime == 1129849260
Obj Date == 10/20/2005, Obj MSecs == 1129849260000
Comment