Sending signal from amibroker to another charting tool

#1
I have a system in amibroker and I want to send the signal to Motivewave everytime it is generated. Is this possible? Can i create a socket and send TCP packets from amibroker. I just want a strategy I will code myself.
 
#2
There are multiple ways you can do that. You can create a amibroker plug-in (DLL) that can send these signals to other tool.

If you want to avoid this you can simply right the signals to a text file and make the other tool listen to the text file and read signals from there.

There could be other ways as well but one of the above should solve your problem.
 

mastermind007

Well-Known Member
#3
Yes, it can be done!

You will need to read up on Inter process communications. Depending on amount of data to be sent and the connectivity permutations, you can use many communication channels.

There are at least 12 different ways to best of my knowledge (there could be more than 12) and you will need to not only write code at amibroker plugin end but also write code at the motivewave end.
 

Similar threads