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.
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.
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.
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.
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".
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()
{
//----
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.
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.
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