Forex
Google

Go Back   Forex Trading > Downloads > Tools and utilities
Forex Forum Register FAQ Members List Calendar Search Today's Posts Mark Forums Read


Register in Forex TSD!
Trading Systems Leaders in this forum (automated trading systems) are winning more than 3000 pips in a month (30000$ investing one lot every time).
Click here to register and get more information

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 05-14-2008, 08:17 PM
fxtrader625's Avatar
fxtrader625 fxtrader625 is offline
Member
 
Join Date: Nov 2006
Posts: 40
fxtrader625 is on a distinguished road
Signal Transmitter/Receiver!

Hi all,

Hereby a tool to send/receive text messages between MT4 instances! It includes 2 sample MQL files, 1 DLL file and its source code (using Visual Studio 2005, C++)

1. Put both MQL files in expert subfolder
2. Put DLL file in expert/libraries
3. Don't forget to enable DLL function in MT4 Options
4. Enjoy

Hope this helps! Please give me feedback, thanks.

Jeff
Attached Files
File Type: zip TradeSwitch.zip (9.7 KB, 184 views)
__________________
Links about my trading signals:

Filtered FX trades
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 05-15-2008, 06:55 AM
newdigital newdigital is online now
Administrator
 
Join Date: Sep 2005
Posts: 15,160
newdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud of
Thanks a lot.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 05-15-2008, 06:57 AM
jturns23 jturns23 is offline
Senior Member
 
Join Date: Sep 2007
Posts: 136
jturns23 is on a distinguished road
This is awesome. Will be very useful. Thanks!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 05-15-2008, 07:10 AM
FerruFx FerruFx is offline
Senior Member
 
Join Date: Feb 2007
Posts: 527
FerruFx is on a distinguished road
Interesting. Thanks.

FerruFx
__________________
THE HEART of FOREX & THE PROBABILITY METER - Trade with 100% confidence and ... Stress Less!!!
Coding services: Experts Advisors, indicators, alerts, etc ... more info by PM
NEW: video presentation of the Probability Meter ... 24hrs action on the website
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 05-15-2008, 01:12 PM
fxtrader625's Avatar
fxtrader625 fxtrader625 is offline
Member
 
Join Date: Nov 2006
Posts: 40
fxtrader625 is on a distinguished road
You are welcome!
__________________
Links about my trading signals:

Filtered FX trades
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 05-15-2008, 02:09 PM
prasxz prasxz is offline
Senior Member
 
Join Date: Jun 2006
Posts: 1,026
prasxz is on a distinguished road
hi

thanks i'll try it

===================
Forex Indicators Collection
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 05-15-2008, 05:53 PM
drgoodvibe drgoodvibe is offline
Senior Member
 
Join Date: Dec 2005
Location: Null
Posts: 534
drgoodvibe is on a distinguished road
Hi there, can you explain how this works?
__________________
Metatrader 4 - EA Live and Demo Hosting Solutions http://www.omegasupreme.com
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8 (permalink)  
Old 05-15-2008, 08:14 PM
fxtrader625's Avatar
fxtrader625 fxtrader625 is offline
Member
 
Join Date: Nov 2006
Posts: 40
fxtrader625 is on a distinguished road
Quote:
Originally Posted by drgoodvibe View Post
Hi there, can you explain how this works?
Well, with SendSignal, it stores a text message of up to 255 characters long in a Registry ("HKEY_CURRENT_USER\Software\TradeSwitch\Signal s") under a subfolder named with the first string parameter of this function ("Name"), e.g. "EURUSD". This text message is then stored as a key-value pair in that subfolder. The key is defined with a shortable DateTime string, the value is filled with that message. Each time when SendSignal is called, a new key-value pair is then added in sorted order.

When ReceiveSignal is called with the Name string as parameter (like "EURUSD"), the oldest key-value pair that is still stored in that subfolder is read from and deleted afterwards. The value string is then returned back as result.

With FlushSignal, all key-value pairs that are still left stored during SendSignal in the Name selected subfolder are deleted. Used for restarting EA in Init function.

Hope this helps.

Jeff
__________________
Links about my trading signals:

Filtered FX trades
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9 (permalink)  
Old 05-15-2008, 10:32 PM
leeb's Avatar
leeb leeb is offline
Senior Member
 
Join Date: Dec 2005
Posts: 341
leeb is on a distinguished road
Hi, thanks for this great tool would it also send signals over the internet to another machine or do terminals have to be on the same computer ?
Cheers !
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #10 (permalink)  
Old 05-15-2008, 10:44 PM
Linuxser's Avatar
Linuxser Linuxser is offline
Moderator
 
Join Date: May 2006
Location: Helliconia (Autumn)
Posts: 2,162
Linuxser has disabled reputation
Quote:
Originally Posted by fxtrader625 View Post
Well, with SendSignal, it stores a text message of up to 255 characters long in a Registry ("HKEY_CURRENT_USER\Software\TradeSwitch\Signal s") under a subfolder named with the first string parameter of this function ("Name"), e.g. "EURUSD". This text message is then stored as a key-value pair in that subfolder. The key is defined with a shortable DateTime string, the value is filled with that message. Each time when SendSignal is called, a new key-value pair is then added in sorted order.

When ReceiveSignal is called with the Name string as parameter (like "EURUSD"), the oldest key-value pair that is still stored in that subfolder is read from and deleted afterwards. The value string is then returned back as result.

With FlushSignal, all key-value pairs that are still left stored during SendSignal in the Name selected subfolder are deleted. Used for restarting EA in Init function.

Hope this helps.

Jeff
Thanks for this explanation, You save me lot of hours . I was just in the middle reading the TradeSwitch folder.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump


Similar Threads
Thread Thread Starter Forum Replies Last Post
Signal Alert vidda Suggestions for Trading Systems 5 08-12-2007 06:05 AM
changes for ki signal rizdwan74kl Indicators - Metatrader 4 2 04-02-2007 10:50 PM
signal line xxDavidxSxx Expert Advisors - Metatrader 4 2 10-17-2006 05:31 AM
Trend Signal CP6 Indicators - Metatrader 4 16 08-15-2006 05:29 PM


All times are GMT. The time now is 05:49 AM.