Forex



Go Back   Forex Trading > Downloads > Tools and utilities
Forex Forum Register More recent Blogs Calendar Advertising Others Help






Register
Welcome to Forex-TSD!, one of the largest Forex forums worldwide, where you will be able to find the most complete and reliable Forex information imaginable.

From the list below, select the forum that you want to visit and register to post, as many times you want. It’s absolutely free. Click here for registering on Forex-TSD.

Exclusive Forum
The Exclusive Forum is the only paid section. Once you subscribe, you will get free access to real cutting-edge Trading Systems (automated and not), Indicators, Signals, Articles, etc., that will help and guide you, in ways that you could only imagine, with your Forex trading.
  • Elite Section
    Get access to private discussions, specialized support, indicators and trading systems reported every week.
  • Advanced Elite Section
    For professional traders, trading system developers and any other member who may need to use and/or convert, the most cutting-edge exclusive indicators and trading systems for MT4 and MT5.
See more

Reply
 
Thread Tools Display Modes
  #101 (permalink)  
Old 09-17-2009, 04:23 PM
Senior Member
 
Join Date: Oct 2008
Location: Vancouver, BC
Posts: 158
Roger09 is on a distinguished road
Quote:
Originally Posted by for341 View Post
Hi,
Is there an utility that can scrape the email content and trade automatically in metatrader ?

Thanks
No, there is not. You have to adjust your mail agent to filter your posts and make a file. Then create EA to read this file and execute.
__________________
www.rogersignals.com - Share your strategy with all
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #102 (permalink)  
Old 10-15-2009, 08:40 AM
Junior Member
 
Join Date: Jun 2006
Posts: 21
faizuuu is on a distinguished road
Please Added Alter and Email sending option to this Indicator

Can someone please Alert and Email option to this indicator and if possible can be enabled and disabled option for them .


#property indicator_chart_window
#property indicator_buffers 2
#property indicator_color1 DodgerBlue
#property indicator_color2 Red

double gda_76[];
double gda_80[];
extern int FasterMode = 1;
extern int FasterMA = 13;
extern int SlowerMode = 1;
extern int SlowerMA = 25;

int init() {
SetIndexStyle(0, DRAW_ARROW, EMPTY);
SetIndexArrow(0, 233);
SetIndexBuffer(0, gda_76);
SetIndexStyle(1, DRAW_ARROW, EMPTY);
SetIndexArrow(1, 234);
SetIndexBuffer(1, gda_80);
return (0);
}

int deinit() {
return (0);
}

int start() {
int li_8;
double ld_12;
double ld_20;
double ld_28;
double ld_36;
double ld_44;
double ld_52;
double ld_60;
double ld_68;
int li_76 = IndicatorCounted();
if (li_76 < 0) return (-1);
if (li_76 > 0) li_76--;
int li_0 = Bars - li_76;
for (int li_4 = 0; li_4 <= li_0; li_4++) {
li_8 = li_4;
ld_60 = 0;
ld_68 = 0;
for (li_8 = li_4; li_8 <= li_4 + 9; li_8++) ld_68 += MathAbs(High[li_8] - Low[li_8]);
ld_60 = ld_68 / 10.0;
ld_12 = iMA(NULL, 0, FasterMA, 0, FasterMode, PRICE_CLOSE, li_4);
ld_28 = iMA(NULL, 0, FasterMA, 0, FasterMode, PRICE_CLOSE, li_4 + 1);
ld_44 = iMA(NULL, 0, FasterMA, 0, FasterMode, PRICE_CLOSE, li_4 - 1);
ld_20 = iMA(NULL, 0, SlowerMA, 0, SlowerMode, PRICE_CLOSE, li_4);
ld_36 = iMA(NULL, 0, SlowerMA, 0, SlowerMode, PRICE_CLOSE, li_4 + 1);
ld_52 = iMA(NULL, 0, SlowerMA, 0, SlowerMode, PRICE_CLOSE, li_4 - 1);
if (ld_12 > ld_20 && ld_28 < ld_36 && ld_44 > ld_52) gda_76[li_4] = Low[li_4] - ld_60 / 2.0;
else
if (ld_12 < ld_20 && ld_28 > ld_36 && ld_44 < ld_52) gda_80[li_4] = High[li_4] + ld_60 / 2.0;
}
return (0);
}



=======================

Thanks in Advance

Last edited by faizuuu; 10-15-2009 at 08:42 AM. Reason: Thanks in Advance
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #103 (permalink)  
Old 10-15-2009, 04:18 PM
cockeyedcowboy's Avatar
Senior Member
 
Join Date: Nov 2005
Posts: 480
cockeyedcowboy is on a distinguished road
Quote:
Originally Posted by faizuuu View Post

Can someone please Alert and Email option to this indicator and if possible can be enabled and disabled option for them .

......

Thanks in Advance

Do you know the theory behind this ea? Why dont you go back to the one who wrote it and has them to make your alterations? Yes its been decompiled and the author doesnt know it. The theory behind this indicator is so simple I am supprize you cant make the changes yourself.
__________________
(If one expects unbutchered use of the english laugage or even corect spelling, then I advise you not to reed any of my rightings.)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #104 (permalink)  
Old 10-15-2009, 07:19 PM
Junior Member
 
Join Date: Jun 2006
Posts: 21
faizuuu is on a distinguished road
:)

Quote:
Originally Posted by cockeyedcowboy View Post
Do you know the theory behind this ea? Why dont you go back to the one who wrote it and has them to make your alterations? Yes its been decompiled and the author doesnt know it. The theory behind this indicator is so simple I am supprize you cant make the changes yourself.

I am not coder and I donot know anything about codeing .

I am new bie .

This a indicator not EA .
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #105 (permalink)  
Old 10-22-2009, 07:33 PM
Member
 
Join Date: Feb 2009
Posts: 33
veritech6 is on a distinguished road
MetaTrader email problems

I was trying to setup my alerts to be emailed to my gmail account. But I keep getting this error. I am using outlook 2007 already and using the correct settings in metatrader. However I keep getting an error message saying; Mail 530 5.7.0 Must issue a STARTTLS command first. Not sure what this means can anyone help me or point me in the right direction?

Thanks
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #106 (permalink)  
Old 10-23-2009, 07:11 AM
Member
 
Join Date: Feb 2009
Posts: 33
veritech6 is on a distinguished road
This is really giving me a had time with gmail. I tried everything I can think of. I'm not going to pay for yahoo plus. Did anyone else get there gmail account to work

Mail: 530 5.7.0 must issue a STARTTLS command first.


What the hell does that mean. Its driving me nuts!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #107 (permalink)  
Old 10-23-2009, 08:18 AM
Junior Member
 
Join Date: Jun 2008
Posts: 12
Capstan is on a distinguished road
Quote:
Originally Posted by veritech6 View Post
This is really giving me a had time with gmail. I tried everything I can think of. I'm not going to pay for yahoo plus. Did anyone else get there gmail account to work

Mail: 530 5.7.0 must issue a STARTTLS command first.


What the hell does that mean. Its driving me nuts!
Sorry to say I had exactly the same problem with Gmail a couple of years ago and spent hours and hours on the net trying to find a solution. I never cracked it I'm afraid, but had to bite the bullet and sign up for yahoo plus which does however work like a dream for this purpose. The cost is quite low - I think only about $15 a year from memory.

Last edited by Capstan; 10-23-2009 at 08:47 AM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #108 (permalink)  
Old 10-23-2009, 01:42 PM
Senior Member
 
Join Date: Dec 2005
Posts: 508
mrtools is on a distinguished road
Quote:
Originally Posted by veritech6 View Post
This is really giving me a had time with gmail. I tried everything I can think of. I'm not going to pay for yahoo plus. Did anyone else get there gmail account to work

Mail: 530 5.7.0 must issue a STARTTLS command first.


What the hell does that mean. Its driving me nuts!
Might try here MT4 - Cell Phone/ Email Alerts, How to. | Synapse's Forex Blog : clipclip worked for me

Edit: Sorry just reread it gmail doesn't work!

Last edited by mrtools; 10-23-2009 at 01:46 PM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #109 (permalink)  
Old 11-03-2009, 09:02 PM
Junior Member
 
Join Date: Jun 2009
Posts: 3
purospips is on a distinguished road
Partial Fill Alarm??

I am working with an ECN broker and as you all know it does partial fills. This is usually not a problem but sometimes these partials will cause some issues on my trading. Does anyone know of an alarm that can be programmed to make a sound or send an e-mail when this occurs??
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #110 (permalink)  
Old 11-04-2009, 03:31 AM
Member
 
Join Date: Aug 2006
Posts: 75
dcraig is on a distinguished road
email alert from folder

I'm sure this tool exists, I just need your held to find it. I would like to have an sms email sent when my indicator has a text alert (on screen). I see that the alert is logged in the experts tab in the terminal window. I already have my email alerts set up, but it appears that this only works when an EA is programmed to send an email alert.

I need an EA that can be placed on the chart and generate an email alert when the indicator initiates its on-screen alert (which is logged in the experts tab on the terminal window).

Any suggestions?

Douglas
__________________
Ottawa, ON
Canada
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
Reply

Bookmarks

Tags
email, email alert, Send mail


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
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

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

Similar Threads
Thread Thread Starter Forum Replies Last Post
Email sending jyrik Tools and utilities 4 01-21-2007 12:15 PM
Email alert inside MT4 blewsky Setup Questions 1 12-28-2006 08:07 AM
email set up gmail dazminder Setup Questions 2 11-29-2006 12:14 PM
Metatrader email? hhsmoney General Discussion 4 11-19-2006 05:31 PM
Problem with Email.... babarmughal Metatrader 4 6 10-05-2006 12:57 PM


All times are GMT. The time now is 11:50 AM.



Search Engine Friendly URLs by vBSEO 3.2.0 ©2008, Crawlability, Inc.