I'd like to use PivotPointAll.efs for FOREX data in Japan.
Calculating Pivot, it need the High, Low, and Close data.
About Close data, Now PivotPointAll.efs uses the data at 24:00,
and High/Low in 0:00 - 24:00
I'd like to chage the Close data to at 6:00am, and High/Low in
6:00am - 6:00am.
(The NY market's Close time(17:00) is 6:00am in Japan)
I think that int("D") in the PivotPointAll.efs is necessary to change to something.
How do I change it?
if(bInit == false){
xHigh = high(inv("D"));
xLow = low(inv("D"));
xClose = close(inv("D"));
bInit = true;
}
Calculating Pivot, it need the High, Low, and Close data.
About Close data, Now PivotPointAll.efs uses the data at 24:00,
and High/Low in 0:00 - 24:00
I'd like to chage the Close data to at 6:00am, and High/Low in
6:00am - 6:00am.
(The NY market's Close time(17:00) is 6:00am in Japan)
I think that int("D") in the PivotPointAll.efs is necessary to change to something.
How do I change it?
if(bInit == false){
xHigh = high(inv("D"));
xLow = low(inv("D"));
xClose = close(inv("D"));
bInit = true;
}
Comment