stevehopwoodforex.com
https://www.stevehopwoodforex.com/phpBB3/
Print view

SendFakeTicks
https://www.stevehopwoodforex.com/phpBB3/viewtopic.php?t=337
Page 1 of 1
Author:  MichaelM [ Wed Feb 08, 2012 2:15 am ]
Post subject:  SendFakeTicks

Hi All,

I use the attached Script if I want my indicators to update in real-time (i.e. every 200ms) instead of every chart tick.

To use just simply drag it onto a chart where you want indicators to update in real-time.
To stop using, Right-click the chart and select Remove Script.

Not sure about this, but I think the coders can extract it's code and use it as part of their EA or indicators.

Cheers,
MichaelM.
Author:  Aimak [ Tue Feb 14, 2012 10:47 pm ]
Post subject:  Re: SendFakeTicks

May I suggest the following EXE file that sends fake ticks to all running Empty4 terminals. Very useful during the weekends or times with low market moves.

I do not remember who is the author or where I found it.

Aimak
Author:  MichaelM [ Wed Feb 15, 2012 12:44 am ]
Post subject:  Re: SendFakeTicks

Nice one Aimak, thanks :)
Author:  AnotherBrian [ Mon Feb 20, 2012 11:09 pm ]
Post subject:  Re: SendFakeTicks

Aimak wrote:May I suggest the following EXE file that sends fake ticks to all running Empty4 terminals. Very useful during the weekends or times with low market moves.

I do not remember who is the author or where I found it.

Aimak
This is available at www dot fx1 dot net. You uploaded version 0.3, not sure if that works with Windows 7. Here is version 1.1 that works with Windows 7. I really only use this on weekends when I'm coding.

Thanks for the script too, I don't know how I can use it right now but I'll keep it for sure, might come in handy one day!!
Author:  NeoTrader [ Sun May 13, 2012 9:18 am ]
Post subject:  Re: SendFakeTicks

Hi all,

This is really a nice Tool...
Latest available version as of now is 2.1

May the Pips be with you...

see attachment
Author:  Ati Baia [ Mon Dec 31, 2012 2:05 pm ]
Post subject:  Re: SendFakeTicks

this might be also helpful: TickingAllCharts_1.mq4
Author:  zentrader [ Wed Aug 17, 2016 4:53 pm ]
Post subject:  SendFakeTicks

This code sends two ticks to a chart. It is compatible with Empty4 6xx and above.

Code: Select all

#property version   "1.00"
#property strict
#property description "Sends two ticks to a chart."

#import "user32.dll"
   int PostMessageW(int hWnd, int Msg, int wParam, int lParam);
   int RegisterWindowMessageW(string lpString);
#import
int start() {
   int hwnd = WindowHandle(Symbol(), Period());
   int msg;
   for (int i=0; i<3; i++) {
         msg= RegisterWindowMessageW("MetaTrader4_Internal_Message");
         PostMessageW(hwnd, msg, 2, 1);
         Sleep(100);
   }
   return(0);
}
Author:  Raj4x [ Sat Dec 03, 2016 8:31 am ]
Post subject:  SendFakeTicks

Works nicely ZenTrader, thanks :) :good:
Author:  afeudale [ Sat Dec 03, 2016 6:13 pm ]
Post subject:  SendFakeTicks

I use Empty4 Ticker - latest version here: https://fx1.net/mt4ticker.php#download

Free and works great :-)
Author:  timklahs [ Sun May 01, 2022 3:51 am ]
Post subject:  SendFakeTicks

Anyone have a solution to this for MT5?

Thanks
All times are UTC Page 1 of 1