Hi, Is there any way I can suppress the ES and NQ data for normal market hours i.e 09:30 to 11:30 EST on labor day - 6th September 2004.
This was not a normal trading day and there is therefore no matching advance/decline or volume data (e.g.$ADD,ADDQ,$UVOL,$UVOLQ etc)
Consequently I cannot backtest using either ES or NQ data prior to 6th Sept with any efs indicators using advance/decline or volume as all advance/decline and volume data are transposed 2 hours forward against ES and NQ charts on every day prior to labor day.
Hope that explains my problem, to see the effect, try a 5 min chart of ES #F (time template 09:30 -16:00) with my simple indicator ADDind.efs (attached) and see what happens prior to labor day.
function preMain() {
setCursorLabelName("ADD");
setStudyTitle("ADD")
}
function main() {
var vADD = getValue("Close", "$ADD");
return vADD;
}
Most grateful for any help on this
Thanks
This was not a normal trading day and there is therefore no matching advance/decline or volume data (e.g.$ADD,ADDQ,$UVOL,$UVOLQ etc)
Consequently I cannot backtest using either ES or NQ data prior to 6th Sept with any efs indicators using advance/decline or volume as all advance/decline and volume data are transposed 2 hours forward against ES and NQ charts on every day prior to labor day.
Hope that explains my problem, to see the effect, try a 5 min chart of ES #F (time template 09:30 -16:00) with my simple indicator ADDind.efs (attached) and see what happens prior to labor day.
function preMain() {
setCursorLabelName("ADD");
setStudyTitle("ADD")
}
function main() {
var vADD = getValue("Close", "$ADD");
return vADD;
}
Most grateful for any help on this
Thanks
Comment