| / | 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 |
|
Mathematics in Trading: How to Estimate Trade Results A certain level of mathematical background is required of any trader, and this statement needs no proof. The matter is only: How can we define this minimum required level? |
2822 |
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) |