Forex
Google
New signals service!

Go Back   Forex Trading > Downloads > Indicators - Metatrader 4


Register in Forex TSD!
Trading Systems Leaders in this forum (automated trading systems) are winning more than 3000 pips in a month (30000$ investing one lot every time).
Click here to register and get more information

Reply
 
LinkBack (85) Thread Tools Display Modes
  #41 (permalink)  
Old 01-24-2006, 08:41 AM
DeSt's Avatar
Junior Member
 
Join Date: Jan 2006
Posts: 16
DeSt is on a distinguished road
Wink ASCTrend expert advisor

Quote:
Originally Posted by newdigital
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.

It might be difficult but it will be worth the work. After an expert advisor is completed, you can test the performance of ASCTrend with the system tester in trading platform.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #42 (permalink)  
Old 01-24-2006, 08:53 AM
Administrator
 
Join Date: Sep 2005
Posts: 16,320
Blog Entries: 106
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
It might be difficult but it will be worth the work. After an expert advisor is completed, you can test the performance of ASCTrend with the system tester in trading platform.
Agree.

All the job is the following:
- we are estimating the rules for this EA.
- we are trading manually making sure that this rules are working and everything is fine.
- programmers code the EA.
- testing.

That is why I am talking about the rules: programmer are not doing it usually.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #43 (permalink)  
Old 01-24-2006, 01:14 PM
Junior Member
 
Join Date: Nov 2005
Posts: 27
TheOne is on a distinguished road
Quote:
Originally Posted by TheOne
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
Please can someone help with this one. Anybody.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #44 (permalink)  
Old 01-24-2006, 01:55 PM
Administrator
 
Join Date: Sep 2005
Posts: 16,320
Blog Entries: 106
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 TheOne
Please can someone help with this one. Anybody.
Codersguru is always doing any alert. You may ask him.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #45 (permalink)  
Old 01-24-2006, 03:44 PM
Junior Member
 
Join Date: Nov 2005
Posts: 27
TheOne is on a distinguished road
Thanks newdigital I will try that.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #46 (permalink)  
Old 01-31-2006, 10:35 AM
Junior Member
 
Join Date: Jan 2006
Posts: 11
bigD is on a distinguished road
hi, try this before seeing a programer. In the inputs section of the indicator, i.e. when you first attach it, on the line that says "alert on" if it is reading "false" then double click on it and change it to "true".
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #47 (permalink)  
Old 02-01-2006, 03:47 PM
leightonbeaty's Avatar
Member
 
Join Date: Oct 2005
Posts: 84
leightonbeaty is on a distinguished road
Audo alert

Hi,

Is there or is it possible for a alert signal when a EMA crosses the price line?



tks
leighton
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #48 (permalink)  
Old 02-01-2006, 04:43 PM
Administrator
 
Join Date: Sep 2005
Posts: 16,320
Blog Entries: 106
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 image3022
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
Mark,

I am not good coder. But seems I did this alert.
I modified the Codersguru code for JMA.

Just insert this JMA_alert indicator to the chart and make sure that you have original JMA indicator in the folder (but not in the chart). So, the JMA_alert only should be attached to the chart.

And you may change the settings. By default it is Length_slow = 7 and Length_fast = 5. But it may be any.
Attached Files
File Type: mq4 JMA.mq4 (10.7 KB, 670 views)
File Type: mq4 JMA_alert.mq4 (2.2 KB, 786 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #49 (permalink)  
Old 02-02-2006, 01:02 PM
desoft's Avatar
Member
 
Join Date: Dec 2005
Posts: 58
desoft is on a distinguished road
Need Help with Doji Indicator with Alert

I've been developing a trading strategy incorporating the doji and harami patterns but am unable to program an alert for the doji. The indicator I'm talking about is called "pattern recognition.mq4" and has a visual and audio alert for the harami and engulfing but I need one for the doji. I'm unable to upload it here for some reason but it can be found here in the forum. If anyone can help with this indicator, I would be willing to share my strategy with them. Thanks.

DeSoft
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #50 (permalink)  
Old 02-02-2006, 06:55 PM
Kalenzo's Avatar
Senior Member
 
Join Date: Dec 2005
Location: Bydgoszcz - Poland
Posts: 696
Kalenzo is on a distinguished road
Some new alerts with I created for my friend.
They R a litle diffrent from average alerts becouse of range param.

It's like that:
when eg. ema is 1.2000 and u set range param to 1 then the indicator will alert when the price will be in range +- 1 pip from price. So it will alert on this values:
1.9999
1.2000
1.2001

It may be useful in some cases

Enjoy!
Attached Files
File Type: mq4 Alert_BB.mq4 (2.2 KB, 942 views)
File Type: mq4 Alert_DMI.mq4 (1.8 KB, 772 views)
File Type: mq4 Alert_MA.mq4 (1.7 KB, 912 views)
File Type: mq4 Alert_MACD.mq4 (2.0 KB, 1043 views)
File Type: mq4 Alert_SAR.mq4 (1.6 KB, 813 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Bookmarks

Tags
alert, forex, histogram, Signal, snake, snake indicator, wlxfractals, EMA-Crossover_Signal.mq4, ArrZZx2, ZigZag alert, bobokusfibo, alert signal

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

LinkBacks (?)
LinkBack to this Thread: http://www.forex-tsd.com/indicators-metatrader-4/87-indicators-alert-signal.html
Posted By For Type Date
Stochastic w/ Signals This thread Refback 09-08-2008 08:32 PM
??????MetaTrader????????????? - MetaTrader???Wiki This thread Refback 08-18-2008 10:19 AM
Stochastic w/ Signals This thread Refback 08-15-2008 07:32 AM
Stochastic w/ Signals This thread Refback 08-15-2008 06:31 AM
MetaTrader初心者専用スレ This thread Refback 08-03-2008 11:39 AM
【隔離スレ】MetaTrader初心者専用3【ゆとり専用】 This thread Refback 07-26-2008 05:13 PM
Bright Ideas :: View topic - Today's Trend (CLOSED) Post #1216 Refback 07-15-2008 11:08 AM
【隔離スレ】MetaTrader初心者専用3【ゆとり専用】 This thread Refback 07-05-2008 06:43 PM
【隔離スレ】MetaTrader初心者専用3【ゆとり専用】 This thread Refback 07-05-2008 02:05 PM
MetaTrader初心者専用スレ This thread Refback 06-29-2008 01:54 AM
ヤ 粢蔘頷 裨蒟 碣褞 ヤ裲 (Forex) ヤ褞瑾, 竟褞褪 裨蒻 瑙琿頸韭. ネ粢頽韋 蒡粢頸褄 珞褊韃. - マ 裼瑣裨鞣 瑣裙 +50$ 鈞 蒟 This thread Refback 06-23-2008 04:49 PM
タマホミメ: 竟蒻瑣 midpoint MetaTrader 4 This thread Refback 06-14-2008 08:56 AM
、筅テ、チ、ホMeta Trader」エ、ヌス酘・、・ヌ・、・ネ・ TOP・レ。シ・クニ簣ニ This thread Refback 06-03-2008 11:07 AM
Bollinger Indicator Request Post #721 Refback 05-28-2008 03:52 AM
Bollinger Indicator Request Post #721 Refback 05-20-2008 04:29 AM
Help with RSI<> Bollinger bands Alert Post #1439 Refback 05-01-2008 12:36 PM
・ニ・ッ・ヒ・ォ・ | 1ヒア゚、ォ、鯲ワサリ、ケクカサイノ This thread Refback 04-29-2008 09:53 PM
Help with RSI<> Bollinger bands Alert Post #1439 Refback 04-17-2008 03:24 AM
MA Cross 3MACross Alert WarnSig - MQL4 莉」 ∝渕蝨ー Post #1273 Refback 04-14-2008 09:42 AM
Help with RSI<> Bollinger bands Alert Post #1439 Refback 04-13-2008 08:31 PM
Help with RSI<> Bollinger bands Alert Post #1439 Refback 04-13-2008 08:12 PM
Help with RSI<> Bollinger bands Alert Post #1439 Refback 04-13-2008 07:56 PM
MA Cross 3MACross Alert WarnSig - MQL4 Code Base Post #1273 Refback 04-13-2008 01:17 PM
MA Cross 3MACross Alert WarnSig - MQL4 Code Base Post #1273 Refback 04-13-2008 05:40 AM
゚ン ヌヨレ フムモ 贄モヌ睨 ハ菠 - 聿ハマヌハ ヌ矼ハマヌ趁 ヌ瞽ムネ This thread Pingback 04-04-2008 01:49 PM
Advanced Get Oscillator - MQL4 莉」 ∝渕蝨ー Post #1238 Refback 04-01-2008 02:46 PM
MBA - MQL4 莉」 ∝渕蝨ー Post #1130 Refback 03-31-2008 08:23 AM
Polite Request This thread Refback 03-27-2008 11:08 AM
Polite Request This thread Refback 03-27-2008 10:58 AM
ツ 鈞琅 鉋籵褄 angell 胛 This thread Refback 03-26-2008 07:42 PM
Advanced Get Oscillator - MQL4 Code Base Post #1238 Refback 03-26-2008 05:58 PM
MBA - MQL4 Code Base