Anyone have an indicator for showing the price in big text in an offline chart?
Indicator of OffLine-Chart Generator 11 replies
Price alerter (Offline chart) 1 reply
How to read values of indicators in offline Renko chart 8 replies
ind 4 offline Renko chart update 1 reply
Offline Chart data question 5 replies
Dislikeda few of my indicators wont work on offline charts for some reason, like round numbers and pivotsIgnored
DislikedIf it is not updating, then the code that generates the offline chart is not sending correct events to the offline chart Check the offline data generating code - it has to be updated to the new builds of metatrader 4Ignored
Disliked{quote} Since the introduction of SHARED WRITE and READ there is no need to send fake ticks via PostEvent. I have this issue fixed since then at several EAs working with offline charts.Ignored
if(hwnd==0)
{
hwnd=WindowHandle(Symbol(),i_period);
if(hwnd!=0) Print("Chart window detected");
}
//---- refresh window not frequently than 1 time in 2 seconds
if(hwnd!=0 && cur_time-last_time>=2)
{
PostMessageA(hwnd,WM_COMMAND,33324,0);
last_time=cur_time;
}
}
Sleep(50);