| / | Forum |
|
Andrew
2006.06.21 13:04
Hi,
Is it possible to change time of start day chart bar to eg London start (now 7 GMT) , some script similiar to time frame change ? Now start of day bar is at 0:00 server time. Thanks for answer. Andrew |
|
One of the servers, on which the client terminals and Expert Advisors of the Championship Participants are working, failed last Saturday. For this reason 20 Expert Advisors did not work on Monday. All Expert Advisors have become able to continue their competition by 12 a.m. on Tuesday. |
2808 |
Tatyana
2006.06.22 13:28
Hi Andrew, |
|
Michal
2007.10.11 14:29
Tatyana wrote: Hi Andrew, What is the fundamental reason that one cannot use EA with this chart? |
|
DxdCn
2007.10.11 15:28
Tatyana wrote: Hi Andrew, Why MT can not give user the possiblity to set time-shift for datetime dispaly? |
|
phy
2007.10.11 16:38
Michal wrote:
Tatyana wrote: Hi Andrew, What is the fundamental reason that one cannot use EA with this chart? Reason: EA is triggered by incoming tick, and no tick is directed at an offline chart. I think you can use a script with "offline" charts. Keep the chart updated. Search for: PostMessageA(hwnd,WM_COMMAND, CHART_CMD_UPDATE_DATA, 0) Convert the EA to a Script by enclosing the relevant portion of the EA in a loop: start(){ ... some initializations of EA... while (!IsStopped){ ... active part of EA.. Sleep(1000) // choose your time to sleep return(0) |