Forex



Go Back   Forex Trading > Downloads > Indicators - Metatrader 4
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
  #111 (permalink)  
Old 04-09-2006, 04:57 AM
Member
 
Join Date: Mar 2006
Posts: 58
Nebula is on a distinguished road
BBStop and Fractal Ind. alerts

Would it be possible to get an alert for the BB stop indicator and Fractals? Also I saw someone ask for an alert for Hull Color Change, that would be great too.

Thanks in advance for the help if possible.


~Nebula
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
  #112 (permalink)  
Old 04-09-2006, 11:40 AM
elihayun's Avatar
Senior Member
 
Join Date: Jan 2006
Posts: 396
elihayun is on a distinguished road
How to add alarm to any indicator

Hi
I see a lot of people here asking to add alarm when an indicator is light up. Especially when a arrow/bullet is turn on.

Actually, it is very simple task. All you have to do is follow the following instructions.

1) Every indicator has an indicator array that keep the values of the indicator. Values can be 0 or not 0. To find out the indicator name look for the command: SetIndexBuffer
In the indicator editor it should look like this

SetIndexBuffer(0,ExtMapBuffer);
SetIndexBuffer(1,ExtMapBuffer2);

This lines tell us that we have 2 indicator buffers

2) Look when the indicator buffer change its value.
In the example above we will look to line that contains the following patter:
ExtMapBuffer[number] = where number can be a figure or a name. For example: if(res!=0.0) ExtMapBuffer[shift]=res;
if after the equal sign there is 0 do nothing.

3) Change it to make an alarm.
After finding the value setting line we will add an alarm to it.
a) add { before the setting. In the example above :
if(res!=0.0) {ExtMapBuffer[shift]=res;
b) add the Alert command after the ;. In the example above:
if(res!=0.0) { ExtMapBuffer[shift]=res;
Alert("Indicator set");
}

Do not forget to close the }


4) repeat for every buffer value setting


Compile and you have an indicator with alert

Hope it will help you
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
  #113 (permalink)  
Old 04-09-2006, 12:36 PM
Senior Member
 
Join Date: Mar 2006
Posts: 297
toddanderson is on a distinguished road
Icwr Alert request

Can someone add an alert to the ICWR indicator so when a new
zigzag is created has an alert
Attached Files
File Type: mq4 ICWR v0[1].1 beta5.mq4 (18.9 KB, 368 views)
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
  #114 (permalink)  
Old 04-09-2006, 05:24 PM
Member
 
Join Date: Mar 2006
Posts: 58
Nebula is on a distinguished road
Thank you Elihayun

I will attempt to do this with an indicator. Learning this bit of programming would be good for me rather than to rely on others, I appreciate the instruction.

~Nebula
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
  #115 (permalink)  
Old 04-09-2006, 06:45 PM
elihayun's Avatar
Senior Member
 
Join Date: Jan 2006
Posts: 396
elihayun is on a distinguished road
u are welcome

Quote:
Originally Posted by Nebula
I will attempt to do this with an indicator. Learning this bit of programming would be good for me rather than to rely on others, I appreciate the instruction.

~Nebula
u are welcome
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
  #116 (permalink)  
Old 04-10-2006, 09:36 AM
trader79's Avatar
Junior Member
 
Join Date: Nov 2005
Posts: 20
trader79 is on a distinguished road
Fisher with Sound Alert

Could somebody please code sound alert for Fisher indicator which I am attaching. I need sound alert or an external sound file like an MP3. I would appreciate any help.
Attached Files
File Type: mq4 Fisher_v1.mq4 (2.7 KB, 426 views)
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
  #117 (permalink)  
Old 04-10-2006, 09:44 AM
Member
 
Join Date: Mar 2006
Posts: 85
yass is on a distinguished road
Braintrend2sig

Please can any one send the Braintrend2sig indicator with sound alarm!!
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
  #118 (permalink)  
Old 04-10-2006, 03:46 PM
elihayun's Avatar
Senior Member
 
Join Date: Jan 2006
Posts: 396
elihayun is on a distinguished road
Quote:
Originally Posted by trader79
Could somebody please code sound alert for Fisher indicator which I am attaching. I need sound alert or an external sound file like an MP3. I would appreciate any help.
I change it for you. If you know how to program, use my changes as a guidlines
Attached Files
File Type: mq4 Fisher_v1.mq4 (3.1 KB, 555 views)
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
  #119 (permalink)  
Old 04-10-2006, 04:13 PM
trader79's Avatar
Junior Member
 
Join Date: Nov 2005
Posts: 20
trader79 is on a distinguished road
Thumbs up

Quote:
Originally Posted by elihayun
I change it for you. If you know how to program, use my changes as a guidlines
Thanks a lot Eli.
Please check your 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
  #120 (permalink)  
Old 04-10-2006, 08:02 PM
trishycamp's Avatar
Junior Member
 
Join Date: Apr 2006
Posts: 7
trishycamp is on a distinguished road
alert for adx cross

HI-
Here is what I have done so far to get the adx crosses to alert when it crosses, there are no erros when I compile but it seems like it isn't alerting properly??
Here is the code:
//+------------------------------------------------------------------+
//| FirstIndicator.mq4 |
//| Copyright © 2004, MetaQuotes Software Corp. |
//| http://www.metaquotes.net |
//+------------------------------------------------------------------+
#property copyright "Copyright © 2004, MetaQuotes Software Corp."
#property link "http://www.metaquotes.net"

#property indicator_chart_window
#property indicator_buffers 2
#property indicator_color1 LimeGreen
#property indicator_color2 Red
//---- input parameters
extern int a=14;
//---- buffers
double ExtMapBuffer1[];
double ExtMapBuffer2[];

double b4plusdi,b4minusdi,nowplusdi,nowminusdi;

//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{
//---- indicators
SetIndexStyle(0,DRAW_ARROW,EMPTY);
SetIndexArrow(0,233);
SetIndexBuffer(0, ExtMapBuffer1);

SetIndexStyle(1,DRAW_ARROW,EMPTY);
SetIndexArrow(1,234);
SetIndexBuffer(1, ExtMapBuffer2);
//----
return(0);
}
//+------------------------------------------------------------------+
//| Custor indicator deinitialization function |
//+------------------------------------------------------------------+
int deinit()
{
//---- TODO: add your code here
ObjectDelete("up cross");
ObjectDelete("down cross");


//----
return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator iteration function |
//+------------------------------------------------------------------+
int start()
{
int limit;
int counted_bars=IndicatorCounted();
//---- check for possible errors
if(counted_bars<0) return(-1);

//---- last counted bar will be recounted
if(counted_bars>0) counted_bars--;
limit=1000-counted_bars;
//---- macd counted in the 1-st buffer

for(int i=limit; i>=0; i--)
{
b4plusdi=iADX(NULL,0,a,PRICE_CLOSE,MODE_PLUSDI,i-1);
nowplusdi=iADX(NULL,0,a,PRICE_CLOSE,MODE_PLUSDI,i) ;

b4minusdi=iADX(NULL,0,a,PRICE_CLOSE,MODE_MINUSDI,i-1);
nowminusdi=iADX(NULL,0,a,PRICE_CLOSE,MODE_MINUSDI, i);

if(b4plusdi>b4minusdi &&
nowplusdi<nowminusdi)
// {
ExtMapBuffer1[i]=Low[i]-5*Point; Alert ("Indicator set");
}
// }
if(b4plusdi<b4minusdi &&
nowplusdi>nowminusdi)
// {
{ExtMapBuffer2[i]=High[i]+5*Point; Alert("Indicator set");
}
// }
}
//----
return(0);


I would appreciate any help with this as I am not a programmer. Trisha
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
adx cross alert, alert, alert signal, ArrZZx2, ArrZZx2 alert, Audible Trade Signal Alert, bobokusfibo, bollinger, bollinger alert, bollinger bands alert, bollitoucher, candle_signal, cci, cci alert, CCI cross alert, center of gravity, DinapoliTarget_Malay, EMA-Crossover_Signal.mq4, fisher_yur4ik, fncd indicator, forex, Forex MetaTrader 4 Visual Alert indicator, forex trsi, forex tsd, FXI_Point&Figure, FXI_Point&Figure-Adv, FXI_Point&Figure-Adv.mq4, histogram, ichi cloud, indicators, indicators with alert, Jurik Volty, ki signal, LabTrend1_v2.1, laguerre alert, ma alert, MA cross alert, ma cross alert combo, ma cross signal, macd alert, macd cross alert, MA_Crossover_Signal, metatrader 4 indicators, metatrader alert, metatrader indicator alert, metatrader signal, metatrader signals, mt4 alert indicator, MULTISSRCPLUSSM, search, Signal, signal alert, signal forex, snake, snake force, snake force indicator, snake indicator, stopreversal, super_signals_v2, T3 RSI, t3 rsi alert, trsi forex, trsi indicator, tsd forex, wlxfractals, ZigZag alert


Currently Active Users Viewing This Thread: 6 (5 members and 1 guests)
deady09, cercape, nagarajn_india, driveedge, tamhoowing
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
I need Stochastic Oscillator with alert/signal 200 Indicators - Metatrader 4 2 04-12-2009 09:19 AM
2 signal AmiBroker how insert indicators king forex Indicators - Metatrader 4 5 11-11-2008 09:30 AM
Signal Alert vidda Suggestions for Trading Systems 5 08-12-2007 07:05 AM
changes for ki signal rizdwan74kl Indicators - Metatrader 4 2 04-02-2007 11:50 PM
Help W/Audible Alert Indicators for MA,EMA,SMA D.A. Indicators - Metatrader 4 1 02-26-2007 06:41 PM


All times are GMT. The time now is 09:31 AM.



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