Isn't there some python script out there that will read a twitter feed , write to a text file so that MT4 can execute the trade. One could trade in real-time for many people like this.
Can I execute trades via buy/sell button with an EA? 0 replies
Using one EA to execute with two mt4 brokers 7 replies
Do you execute trades in MT4 or in broker platforms? 0 replies
How to display MT4 account trades to remote users? 14 replies
EA wont execute trades! just alerts... 5 replies
DislikedI have not heard of one, and do a lot of trading using Metatrader, would be interested if you find one though. Have found most people on twitter that talk Fx are just affiliates of some system so be careful what you are followingIgnored
DislikedFrom a security standpoint, that's a rather terrifying idea.
If you insist on using a public low-security platform for broadcasting automated trading orders tied to live accounts (which is a Bad Idea (tm)), at the very least make sure you use the SSL version of the twitter APIs from end to end (and that you verify the SSL certs against the root CAs.)
You'll still be putting way too much trust in twitter's ability to protect the integrity of your messages, along with its ability to deliver those messages in a timely fashion, but at least you'll...Ignored
DislikedIs SSL encryption really required to secure the medium of communication for a tweet? At the end of it, the order will still be seen by his followers / public.
His main focus appears to be broadcasting his message in an efficient manner, and tweets seem like a cheap/viable option, with the occasional delay / fail-whale syndrome.
I would worry more about the tweets being re-tweeted, or decoded first by one of his followers and re-tweeted to the mass public.
Stephanusr,
I'd suggest taking a look at the winsock dll api in windows, it shouldn't...Ignored
DislikedSomewhere http://articles.mql4.com/search/mt5/2 read an article on ICQ and MT5. There are lets say 200 clients running MT5. A signal provider communicates with these 200 pc's via an IRC app. The IRC app takes the trade signal, converts to Oscar protocol on the client PC...Ignored
DislikedIsn't there some python script out there that will read a twitter feed , write to a text file so that MT4 can execute the trade. One could trade in real-time for many people like this.Ignored
DislikedFREE Metatrader Expert Advisor 3 EMA Conception
Buy if (FastMA above SlowMA) and (FastMA above SlowMA2) and (SlowMA above SlowMA2)
Sell if (FastMA below SlowMA) and (FastMA below SlowMA2) and (SlowMA below SlowMA2)
Close orders on SL, TP, reversed signal
FREE Metatrader Expert Advisor 3 EMA Options
extern string _tmp1_ = " --- Trade params ---";
extern int AccDigits = 5;
// set 5 for all pairs if you have 5 digits after decimal
// point on EURUSD pair (1.34217 etc.)
// set 4 for all pairs...Ignored
DislikedThank you for submitting e-BJF-3MA.mq4
Please state what is the value for SMA, if we want to change EMA to SMA?
What is MA TradeOpenBar ?
If TP & SL set to 0, so it will exit at reverse crossover ?
How to exit (when we BUY) if SlowMA BELOW SlowMA2 ???
Is there any Trailing Stop we can use?
AND
Anyone has EA on 4 EMA / SMA crossover ??
thanks in advanceIgnored
DislikedFREE Metatrader Expert Advisor 3 EMA Conception
Buy if (FastMA above SlowMA) and (FastMA above SlowMA2) and (SlowMA above SlowMA2)
Sell if (FastMA below SlowMA) and (FastMA below SlowMA2) and (SlowMA below SlowMA2)
Close orders on SL, TP, reversed signal
FREE Metatrader Expert Advisor 3 EMA Options
extern string _tmp1_ = " --- Trade params ---";
extern int AccDigits = 5;
// set 5 for all pairs if you have 5 digits after decimal
// point on EURUSD pair (1.34217 etc.)
// set 4 for all pairs...Ignored
Disliked>>Please state what is the value for SMA, if we want to change EMA to SMA?
See FastMA.ma_method, SlowMA.ma_method, SlowMA2.ma_method external parameters.
Thank you for replying.
is 0 for SMA, 1 for EMA ???Ignored