• Home
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • User/Email: Password:
  • 7:38pm
Menu
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • 7:38pm
Sister Sites
  • Metals Mine
  • Energy EXCH
  • Crypto Craft

Options

Bookmark Thread

First Page First Unread Last Page Last Post

Print Thread

Similar Threads

Need help programming some indicators/EAs 66 replies

Need Help Programming EA 65 replies

Looking for help with programming an EA..... 4 replies

Need help for programming this indicator 2 replies

Help in programming 1 reply

  • Platform Tech
  • /
  • Reply to Thread
  • Subscribe
  • 1
Attachments: Programming help!
Exit Attachments

Programming help!

  • Post #1
  • Quote
  • First Post: Mar 20, 2010 2:36pm Mar 20, 2010 2:36pm
  •  piphunter65
  • | Joined Nov 2009 | Status: Member | 31 Posts
Could someone please look at the below code and maybe point out why
I am getting an error when I try to compile in MT4? I am trying to add the
send mail function to this indicator. Any help would be greatly appreciated!




#property indicator_chart_window
#property indicator_buffers 6
#property indicator_color1 RoyalBlue
#property indicator_color2 Red
#property indicator_color3 RoyalBlue
#property indicator_color4 Red
#property indicator_color5 RoyalBlue
#property indicator_color6 Red
//---- input parameters
extern int Length=20; // Bollinger Bands Period
extern int Deviation=1; // Deviation was 2
extern double MoneyRisk=1.00; // Offset Factor
extern int Signal=1; // Display signals mode: 1-Signals & Stops; 0-only Stops; 2-only Signals;
extern int Line=1; // Display line mode: 0-no,1-yes
extern int Nbars=1000;
//---- indicator buffers
double UpTrendBuffer[];
double DownTrendBuffer[];
double UpTrendSignal[];
double DownTrendSignal[];
double UpTrendLine[];
double DownTrendLine[];
extern bool SendMail=true;
bool TurnedUp = false;
bool TurnedDown = false;
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{
string short_name;
//---- indicator line

SetIndexBuffer(0,UpTrendBuffer);
SetIndexBuffer(1,DownTrendBuffer);
SetIndexBuffer(2,UpTrendSignal);
SetIndexBuffer(3,DownTrendSignal);
SetIndexBuffer(4,UpTrendLine);
SetIndexBuffer(5,DownTrendLine);
SetIndexStyle(0,DRAW_ARROW,0,1);
SetIndexStyle(1,DRAW_ARROW,0,1);
SetIndexStyle(2,DRAW_ARROW,0,1);
SetIndexStyle(3,DRAW_ARROW,0,1);
SetIndexStyle(4,DRAW_LINE);
SetIndexStyle(5,DRAW_LINE);
SetIndexArrow(0,159);
SetIndexArrow(1,159);
SetIndexArrow(2,108);
SetIndexArrow(3,108);
IndicatorDigits(MarketInfo(Symbol(),MODE_DIGITS));
//---- name for DataWindow and indicator subwindow label
short_name="BBands Stop("+Length+","+Deviation+")";
IndicatorShortName(short_name);
SetIndexLabel(0,"UpTrend Stop");
SetIndexLabel(1,"DownTrend Stop");
SetIndexLabel(2,"UpTrend Signal");
SetIndexLabel(3,"DownTrend Signal");
SetIndexLabel(4,"UpTrend Line");
SetIndexLabel(5,"DownTrend Line");
//----
SetIndexDrawBegin(0,Length);
SetIndexDrawBegin(1,Length);
SetIndexDrawBegin(2,Length);
SetIndexDrawBegin(3,Length);
SetIndexDrawBegin(4,Length);
SetIndexDrawBegin(5,Length);
//----
return(0);
}
//+------------------------------------------------------------------+
//| Bollinger Bands_Stop_v1 |
//+------------------------------------------------------------------+
int start()
{
int i,shift,trend;
double smax[25000],smin[25000],bsmax[25000],bsmin[25000];

for (shift=Nbars;shift>=0;shift--)
{
UpTrendBuffer[shift]=0;
DownTrendBuffer[shift]=0;
UpTrendSignal[shift]=0;
DownTrendSignal[shift]=0;
UpTrendLine[shift]=EMPTY_VALUE;
DownTrendLine[shift]=EMPTY_VALUE;
}

for (shift=Nbars-Length-1;shift>=0;shift--)
{
smax[shift]=iBands(NULL,0,Length,Deviation,0,PRICE_CLOSE,MODE_UPPER,shift);
smin[shift]=iBands(NULL,0,Length,Deviation,0,PRICE_CLOSE,MODE_LOWER,shift);

if (Close[shift]>smax[shift+1]) trend=1;
if (Close[shift]<smin[shift+1]) trend=-1;

if(trend>0 && smin[shift]<smin[shift+1]) smin[shift]=smin[shift+1];
if(trend<0 && smax[shift]>smax[shift+1]) smax[shift]=smax[shift+1];

bsmax[shift]=smax[shift]+0.5*(MoneyRisk-1)*(smax[shift]-smin[shift]);
bsmin[shift]=smin[shift]-0.5*(MoneyRisk-1)*(smax[shift]-smin[shift]);

if(trend>0 && bsmin[shift]<bsmin[shift+1]) bsmin[shift]=bsmin[shift+1];
if(trend<0 && bsmax[shift]>bsmax[shift+1]) bsmax[shift]=bsmax[shift+1];

if (trend>0)
{
if (Signal>0 && UpTrendBuffer[shift+1]==-1.0)
{
UpTrendSignal[shift]=bsmin[shift];
UpTrendBuffer[shift]=bsmin[shift];
if(Line>0) UpTrendLine[shift]=bsmin[shift];
if (SendMail==true && shift==0 && !TurnedUp)
{
SendMail("BBands going Up on ",Symbol(),"-",Period());
TurnedUp = true;
TurnedDown = false;
}
}
else
{
UpTrendBuffer[shift]=bsmin[shift];
if(Line>0) UpTrendLine[shift]=bsmin[shift];
UpTrendSignal[shift]=-1;
}
if (Signal==2) UpTrendBuffer[shift]=0;
DownTrendSignal[shift]=-1;
DownTrendBuffer[shift]=-1.0;
DownTrendLine[shift]=EMPTY_VALUE;
}
if (trend<0)
{
if (Signal>0 && DownTrendBuffer[shift+1]==-1.0)
{
DownTrendSignal[shift]=bsmax[shift];
DownTrendBuffer[shift]=bsmax[shift];
if(Line>0) DownTrendLine[shift]=bsmax[shift];
if (SendMail==true && shift==0 && !TurnedDown)
{
SendMail("BBands going Down on ",Symbol(),"-",Period());
TurnedDown = true;
TurnedUp = false;
}
}
else
{
DownTrendBuffer[shift]=bsmax[shift];
if(Line>0)DownTrendLine[shift]=bsmax[shift];
DownTrendSignal[shift]=-1;
}
if (Signal==2) DownTrendBuffer[shift]=0;
UpTrendSignal[shift]=-1;
UpTrendBuffer[shift]=-1.0;
UpTrendLine[shift]=EMPTY_VALUE;
}

}
return(0);
}
  • Post #2
  • Quote
  • Mar 20, 2010 2:54pm Mar 20, 2010 2:54pm
  •  hayseed
  • Joined Nov 2006 | Status: Member | 3,540 Posts
hey pip..... the problem is the SendMail.... in the SendMail message the first part is the subject followed by a single comma.... after the comma comes the message but use + to tie the various parts....

and SendMail needs to be reduced to little letters in the extern inputs and the 2 locations where you have if (SendMail==true ...... h

Inserted Code
 
if (sendmail==true && shift==0 && !TurnedUp)
{
SendMail("BBands going Up on ",Symbol()+"-"+Period());
to trade and code, keep both simple... no call to impress....h
 
 
  • Post #3
  • Quote
  • Mar 20, 2010 3:42pm Mar 20, 2010 3:42pm
  •  piphunter65
  • | Joined Nov 2009 | Status: Member | 31 Posts
Thanks hayseed for your help. Will try that and see if it works, thanks again.
 
 
  • Post #4
  • Quote
  • Edited at 3:52pm Mar 20, 2010 3:52pm | Edited at 3:52pm
  •  piphunter65
  • | Joined Nov 2009 | Status: Member | 31 Posts
Hayseed I am still getting one error message. Sendmail variable expected. Any ideas why? Thanks
 
 
  • Post #5
  • Quote
  • Mar 20, 2010 6:55pm Mar 20, 2010 6:55pm
  •  hanover
  • Joined Sep 2006 | Status: ... | 8,081 Posts
Quoting piphunter65
Disliked
Hayseed I am still getting one error message. Sendmail variable expected. Any ideas why?
Ignored
SendMail is a MT4 command. You can't use it as a variable name.

Change
extern bool SendMail=true;
to something like
extern bool sendmail=true;

Then you'll need to change every subsequent reference of the variable SendMail to sendmail.

After that it should compile OK.
 
 
  • Post #6
  • Quote
  • Mar 20, 2010 7:10pm Mar 20, 2010 7:10pm
  •  piphunter65
  • | Joined Nov 2009 | Status: Member | 31 Posts
Thanks for the help Hanover. I made the changes and tried to compile but I got the following errors.

sendmail- function not defined

else- unexpected token

Any ideas? Thanks again for your help.
 
 
  • Post #7
  • Quote
  • Mar 20, 2010 7:34pm Mar 20, 2010 7:34pm
  •  hayseed
  • Joined Nov 2006 | Status: Member | 3,540 Posts
hey pip..... the errors mentioned in my post should have cleared things up.... there are a couple space issues but kinda thought those where just copy and paste negative effects....

sometimes errors can cascade down to a point where the reported error is not truely the error at all.....

here are my suggested changes above.....h
Attached File
File Type: mq4 pips.mq4   5 KB | 223 downloads
to trade and code, keep both simple... no call to impress....h
 
 
  • Post #8
  • Quote
  • Mar 20, 2010 11:57pm Mar 20, 2010 11:57pm
  •  piphunter65
  • | Joined Nov 2009 | Status: Member | 31 Posts
Hayseed,

Thanks for all your efforts, i loaded your fixed indicator and it compiled with no errors. You are the man! Thanks again for your help with this.

piphunter
 
 
  • Post #9
  • Quote
  • Last Post: Mar 21, 2010 3:24am Mar 21, 2010 3:24am
  •  hanover
  • Joined Sep 2006 | Status: ... | 8,081 Posts
Just got back to this thread now, sounds like you've solved your problem. Cool.
 
 
  • Platform Tech
  • /
  • Programming help!
  • Reply to Thread
0 traders viewing now
Top of Page
Forex Factory Blog Updated: Alerting All Members
  • Facebook
  • Twitter
About FF
  • Mission
  • Products
  • User Guide
  • Media Kit
  • Blog
  • Contact
FF Products
  • Forums
  • Trades
  • Calendar
  • News
  • Market
  • Brokers
  • Trade Explorer
FF Website
  • Homepage
  • Search
  • Members
  • Report a Bug
Follow FF
  • Facebook
  • Twitter

FF Sister Sites:

  • Metals Mine
  • Energy EXCH
  • Crypto Craft

Forex Factory® is a brand of Fair Economy, Inc.

Terms of Service / ©2022