Are there any news indicators they work in backtest?

 

Hi there,

I am looking for a news indicator that lets user know visually when news events occur, a simple line at the date inchart with info on what news is happening would suffice, but I need that to work in back-test also so I know when testing my systems when news announcements were.

Is there such an indicator?  

 
dillfromskype:

Hi there,

I am looking for a news indicator that lets user know visually when news events occur, a simple line at the date inchart with info on what news is happening would suffice, but I need that to work in back-test also so I know when testing my systems when news announcements were.

Is there such an indicator?  

The WebRequest() function is synchronous, which means its breaks the program execution and waits for the response from the requested server. Since the delays in receiving a response can be large, the function is not available for calls from the indicators, because indicators run in a common thread shared by all indicators and charts on one symbol. Indicator performance delay on one of the charts of a symbol may stop updating of all charts of the same symbol.
The function can be called only from Expert Advisors and scripts, as they run in their own execution threads. If you try to call the function from an indicator, GetLastError() will return error 4060 – "Function is not allowed for call".
 
Steven Van Ingelgem:
huh?
 
Steven Van Ingelgem:
nice explaining :)
 
nice shared conversation
 
no help at all