smithzzk Posted May 10, 2010 Report Share Posted May 10, 2010 How can signal alert that pops up on the platform be coded to ones cell phone.. would welcome any programmer for idea Quote Link to comment Share on other sites More sharing options...
kennyhubbard Posted May 14, 2010 Report Share Posted May 14, 2010 I have an EA that send me trades from my platform to my eamail. I get these trades on my blackberry which is effectively getting it on my phone. If you find a way to convert email to sms then you will be able to do this for any phone. Quote Link to comment Share on other sites More sharing options...
Guest Todayke Posted May 14, 2010 Report Share Posted May 14, 2010 (edited) Other solution: Try www.voipdiscount.com, or similar voip service. Through this you can send sms via internet. For example: Sms message: "This is an sms." From number: +36201111111 To number: +36202222222 Registered username: regusername Registered password: regpassword Open this URL: https://www.voipdiscount.com/myaccount/sendsms.php?username=regusername&password=regpassword&from=+36201111111&to=+36202222222&text=This is an sms. More info at: https://www.voipdiscount.com/en/sms_instructions.html Before this you have to register on the related VoIP page, and charge your account. Price: about 0.05 EUR/SMS. SMS rates: https://www.voipdiscount.com/en/sms-rates.html A small MT4 code (GrabWeb function is from FFCal): #import "wininet.dll" int InternetOpenA(string a0, int a1, string a2, string a3, int a4); int InternetOpenUrlA(int a0, string a1, string a2, int a3, int a4, int a5); int InternetReadFile(int a0, string a1, int a2, int& a3[]); int InternetCloseHandle(int a0); #import int gi_340; int gi_344; int gi_348 = 0; int gi_352 = 1; int gi_360 = 80; int hSession(bool ai_0) { string ls_4; if (gi_340 == 0) { ls_4 = "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461)"; gi_340 = InternetOpenA(ls_4, gi_348, "0", "0", 0); gi_344 = InternetOpenA(ls_4, gi_352, "0", "0", 0); } if (ai_0) return (gi_344); return (gi_340); } int GrabWeb(string as_0, string &as_8) { int lia_24[] = {1}; string ls_28 = " "; int li_16 = InternetOpenUrlA(hSession(0), as_0, "0", 0, -2080374528, 0); if (li_16 == 0) return (0); Print("Reading URL: " + as_0); int li_20 = InternetReadFile(li_16, ls_28, gi_360, lia_24); if (li_20 == 0) return (0); int li_36 = lia_24[0]; for (as_8 = StringSubstr(ls_28, 0, lia_24[0]); lia_24[0] != 0; as_8 = as_8 + StringSubstr(ls_28, 0, lia_24[0])) { li_20 = InternetReadFile(li_16, ls_28, gi_360, lia_24); if (lia_24[0] == 0) break; li_36 += lia_24[0]; } Print("Closing URL web connection"); li_20 = InternetCloseHandle(li_16); if (li_20 == 0) return (0); return (1); } void SendSMS(string SMSText, string FromNumber, string ToNumber, string UserName, string Password) { string UrlText="https://www.voipdiscount.com/myaccount/sendsms.php?"+ "username="+UserName+"&password="+Password+ "&from="+FromNumber+"&to="+ToNumber+"&text="+SMSText; string ResText=""; GrabWeb(UrlText,ResText); } Edited May 14, 2010 by Todayke Quote Link to comment Share on other sites More sharing options...
smithzzk Posted May 26, 2010 Author Report Share Posted May 26, 2010 todayke, Oh this is great! thanks I'll try out the codes to see if i'm able to get it done. Quote Link to comment Share on other sites More sharing options...
bebo2008 Posted June 2, 2010 Report Share Posted June 2, 2010 just insert a send email alert in your indicator CODE, get a stable smtp service, link to gmail and use PUSH alerts on cellphone etc... works well on iphone for me Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.