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
  #31 (permalink)  
Old 01-13-2006, 02:52 AM
forextrend's Avatar
Senior Member
 
Join Date: Nov 2005
Posts: 120
forextrend is an unknown quantity at this point
Thumbs up ASCTrend with sound Alert

opps no more need for it

Last edited by forextrend; 01-13-2006 at 08:01 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
  #32 (permalink)  
Old 01-13-2006, 07:01 AM
Member
 
Join Date: Dec 2005
Posts: 59
adria is on a distinguished road
Fractal indicator alert

Is there anywhere the fractal indicator alert?
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
  #33 (permalink)  
Old 01-13-2006, 10:12 AM
Administrator
 
Join Date: Sep 2005
Posts: 20,058
Blog Entries: 241
newdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud of
Quote:
Originally Posted by forextrend
opps no more need for it
It should be here and here.
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
  #34 (permalink)  
Old 01-15-2006, 12:39 AM
image3022's Avatar
Member
 
Join Date: Dec 2005
Posts: 56
image3022 is on a distinguished road
JMA Cross

Hi All

Does any know of a JMA cross alert, or can anyone modify a EMA cross alert to a JMA cross alert for me. The alert below works well but not knowing anything about programing I can't change the EMA to JMA (simply replacing the ema with jma does not work). The one below alerts once on cross, I would like it to alert five times before it stops.

//+------------------------------------------------------------------+
//| CrossedAlerts.mq4 |
//| Coders Guru |
//| http://www.forex-tsd.com |
//+------------------------------------------------------------------+
#property copyright "Coders Guru"
#property link "http://www.forex-tsd.com"

#property indicator_chart_window
#property indicator_buffers 2
#property indicator_color1 Lime
#property indicator_color2 Aqua
//---- buffers
double ExtMapBuffer1[];
double ExtMapBuffer2[];
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{
//---- indicators
SetIndexStyle(0,DRAW_LINE);
SetIndexBuffer(0,ExtMapBuffer1);
SetIndexStyle(1,DRAW_LINE);
SetIndexBuffer(1,ExtMapBuffer2);
//----
return(0);
}
//+------------------------------------------------------------------+
//| Custor indicator deinitialization function |
//+------------------------------------------------------------------+
int deinit()
{
//----

//----
return(0);
}

bool Crossed (double line1 , double line2 )
{

static string last_direction = "";
string current_dirction = "";

if(line1>line2)current_dirction = "up";
if(line1<=line2)current_dirction = "down";



if(current_dirction != last_direction)
{
Alert("EMA Cross for "+Symbol()+" on the "+Period()+" minute chart.");
last_direction = current_dirction;
return (true);
}
else
{
return (false);

}

}
int start()
{
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--;

int pos=Bars-counted_bars;



while(pos>=0)
{
ExtMapBuffer1[pos]= iMA(NULL,0,5,0,MODE_EMA,PRICE_CLOSE,pos);

ExtMapBuffer2[pos]= iMA(NULL,0,7,0,MODE_EMA,PRICE_CLOSE,pos);


pos--;
}



Print(Crossed (ExtMapBuffer1[0],ExtMapBuffer2[0]));


//----
return(0);
}
//+------------------------------------------------------------------+




Have a great Day Mark
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
  #35 (permalink)  
Old 01-16-2006, 01:21 PM
Member
 
Join Date: Oct 2005
Posts: 67
matrixtrader is on a distinguished road
Alert for BB

Have someone an idea how to create an alert for the bollinger bands indicator? I need an alert when the price hits the channel an when it hits the ma.

thank you 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
  #36 (permalink)  
Old 01-17-2006, 05:51 AM
desoft's Avatar
Member
 
Join Date: Dec 2005
Posts: 58
desoft is on a distinguished road
Need Help With Alert for DT-ZigZag Indicator

I am trying to correct the alert function for this indicator. It does not perform well in its current state and I would like for it to signal only once when it is formed. Possibly an audio alert as well as visual. Any help would be appreciated. Here is the code. Thanks.

//+------------------------------------------------------------------+
//| DT-ZigZag.mq4 |
//+------------------------------------------------------------------+
#property copyright "klot"
#property link "klot@mail.ru"

#property indicator_chart_window
#property indicator_buffers 1
#property indicator_color1 Black
//---- input parameters
extern int GrossPeriod=60;
extern int ExtDepth=12;
extern int ExtDeviation=5;
extern int ExtBackstep=3;
//---- buffers
double ExtMapBuffer1[];
datetime daytimes[];
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{
//---- indicators
SetIndexStyle(0,DRAW_ARROW);
SetIndexArrow(0,159);
SetIndexBuffer(0,ExtMapBuffer1);
SetIndexEmptyValue(0,0.0);
//----
if (Period()>GrossPeriod) { Alert("DT-ZigZag: Òåêóùèé òàéìôðåéì äîëæåí áûòü ìåíüøå ÷åì ", GrossPeriod); return(0); }
// Âñå Time[] ñåðèè âðåìåíè îòñîðòèðîâàíî â íàïðàâëåíèè óáûâàíèÿ
ArrayCopySeries(daytimes,MODE_TIME,Symbol(),GrossP eriod);
return(0);
}
//+------------------------------------------------------------------+
//| Custor indicator deinitialization function |
//+------------------------------------------------------------------+
int deinit()
{
//----

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

if (counted_bars>0) counted_bars--;

limit=Bars-counted_bars;

for (int i=0; i<limit; i++)
{
if(Time[i]>=daytimes[0]) bigshift=0;
else
{
bigshift = ArrayBsearch(daytimes,Time[i-1],WHOLE_ARRAY,0,MODE_DESCEND);
if(Period()<=GrossPeriod) bigshift++;
}
ExtMapBuffer1[i]=iCustom(NULL,GrossPeriod,"ZigZag",ExtDepth,ExtDev iation,ExtBackstep,0,bigshift);
}
//----
return(0);
}
//+------------------------------------------------------------------+
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
  #37 (permalink)  
Old 01-17-2006, 02:25 PM
shausmann's Avatar
Member
 
Join Date: Dec 2005
Location: Ft. Lauderdale, FL
Posts: 41
shausmann is on a distinguished road
Need programmer help for Alert!!!!

Hi,

I need help from one of you great programmers out there.

I'm working with Nina's system CatFx50 and like to have an audio alert when the indicator draws the famous arrow (up or down).

My programming skills are not good at all, so I'm asking you guys to please help me.

There is an indicator called shi_channel_talking which gives you an audio alert when set parameter (channel) is changing, that's kind of what I like for the CatFx50.

I attached both indicators and a screenshot of the arrows.

I appreciate the help.
Attached Images
File Type: gif eurusd_alert.gif (32.9 KB, 7569 views)
Attached Files
File Type: mq4 CatFx50K.mq4 (8.7 KB, 1403 views)
File Type: mq4 shi_channel_talking.mq4 (7.3 KB, 1259 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
  #38 (permalink)  
Old 01-23-2006, 09:19 PM
Junior Member
 
Join Date: Nov 2005
Posts: 27
TheOne is on a distinguished road
Smile Sound Alert Help

Does anybody know how to modify the alerts of the indicators below so that the alert will keep sounding until a dialog box is click. This would be very useful especially with 2CCI Zero Cross Alert. Thanks.

2CCI_ZeroCross_Alert.mq4
EMA-Crossover_Signal.mq4
LWMA-Crossover_Signal.mq4
SMA-Crossover_Signal.mq4
SMMA-Crossover_Signal.mq4
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
  #39 (permalink)  
Old 01-23-2006, 09:47 PM
DeSt's Avatar
Junior Member
 
Join Date: Jan 2006
Posts: 16
DeSt is on a distinguished road
Wink ASCTrend expert advisor development

Quote:
Originally Posted by newdigital
The other indicators with alert/signal.
Can a charitable programmer alter the ASCTrend alerts so that it places a trade at the alert? Please post the completed program in expert advisor version 4 section of this forum.
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
  #40 (permalink)  
Old 01-24-2006, 09:12 AM
Administrator
 
Join Date: Sep 2005
Posts: 20,058
Blog Entries: 241
newdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud of
Quote:
Originally Posted by DeSt
Can a charitable programmer alter the ASCTrend alerts so that it places a trade at the alert? Please post the completed program in expert advisor version 4 section of this forum.
I did not check but I think we have alert for ASCTrend already somewhere here.

As to ASCTrend EA so I know many attempts to do it. But first we need to evaluate this ASCTrend system (on the same way as we evaluated Braintrading system). We must be sure that this ASCTrend works and estimate the rules for the EA.

What are the difficulties?

As you know ASCTrend (and Braintrend etc) is signal system. It means that "the indicators are significant and price is nothing". Is it good or bad? Good because even the my son may trade using strict signal systems' rules following the dots or arrows. Just show him how to move the mouse and that's all.
Why is it bad? because we are not looking on the price and all the rules should be estimated very carefully because of that.

If we have non-signal system (some EMA crossing for example) we will have the price as the main subject and all the indicators with dots and arrows are auxiliary ones just for the confirmation and validation only. We will get all the information from the price movement. And small child can not trade non-signal system: he should be educated and experienced.

ASCTrend is the signal system.
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: 7 (4 members and 3 guests)
Jimmy_cdn, Jeeves, exorcist, poporing
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 03:08 PM.



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