USDJPY 2004 History Quotes

 

Hi,

I was trying to get quotes of USDJPY, with the following expert, buy running it on the strategy tester, on every tick, from 2004.01.01 to 2005.01.01:

int start()
{
string sTemp = TimeToStr(TimeCurrent(), TIME_DATE|TIME_SECONDS) + " [" + DoubleToStr(Bid,2) + "," + DoubleToStr(Ask,2) + "]";
Print(sTemp);
}

From some reasone it stopped printing on "2004.02.11 12:12:00".

Does anyone have a clue?

Thanks,

Eyal.

 

1. did you check that you actually have such data in your history?

2. try add a deinit() method


in the deinit, just print something like print("job done.");


just to eliminate possibility your program crashed in the middle of its run

 
jcadong5:

1. did you check that you actually have such data in your history?

2. try add a deinit() method


in the deinit, just print something like print("job done.");


just to eliminate possibility your program crashed in the middle of its run


Hi,

There is no problem with my program, since on other years (like 2000, 2001, 2002...) it is gettint all quotes.

For example: if im running on year 2000 it will print all tick quotes of 2000.01.01 - 2000.12.31.

You can try it yourself.

 
eyalsh:


Hi,

There is no problem with my program, since on other years (like 2000, 2001, 2002...) it is gettint all quotes.

For example: if im running on year 2000 it will print all tick quotes of 2000.01.01 - 2000.12.31.

You can try it yourself.

1. did you check that you actually have such data in your history?
 
jcadong5:
1. did you check that you actually have such data in your history?


Yes I did.

It is not shown on the History Center.

For example, when I press on Monthly (MN) on the USDJPY I see only two month on 2004 (2004.01.01 and 2004.02.01).

Could you please check if it is the same on your History Center?