Trendometer
33 USD
Download demo:
1 344
Publicado:
28 maio 2014
Versão atual:
1.64
Não encontrou o robô certo? Encomende um para você
no serviço Freelance.
Ir para o Freelance
no serviço Freelance.
Como comprar um robô de negociação ou indicador?
Execute seu EA na
hospedagem virtual
hospedagem virtual
Teste indicadores/robôs de negociação antes de comprá-los
Quer ganhar dinheiro no Mercado?
Como apresentar um produto para o consumidor final?
Você está perdendo oportunidades de negociação:
- Aplicativos de negociação gratuitos
- 8 000+ sinais para cópia
- Notícias econômicas para análise dos mercados financeiros
Registro
Login
Você concorda com a política do site e com os termos de uso
Se você não tem uma conta, por favor registre-se

do you any forward testing results ?
Arun
do you any forward testing results ?
hi, rasoul
I want to buy the index, but I did not know how to do it???hi, rasoul
I want to buy the index, but I did not know how to do it???Hi Medrebouh,
Thanks for your interest in Trendometer. Following you can find the official guide to buy products from Market:
https://www.mql5.com/en/articles/498
If you still have any question in this regards, please don't hesitate to contact me.
Hi rasoul
Did u had Notification ? I think i ll gonna buy it cause i need at least one indicator :-) but i really need notification.
Are u just trading this indicator or are u using other tools like market profil , Fibo, pivot point, .... ?
Bye
Hi rasoul
Did u had Notification ? I think i ll gonna buy it cause i need at least one indicator :-) but i really need notification.
Are u just trading this indicator or are u using other tools like market profil , Fibo, pivot point, .... ?
Bye
Hello,
Thanks for your interest in Trendometer. My personal target is to make at least 10 pips everyday using Trendometer by scalping when the market shows a significant trend. In order to trade a profitable signal with a higher probability, I watch the price action at the time of receiving two consecutive same color bars from Trendometer; if the price action shows a breakout over the period of consolidation, I enter the market. And I personally prefer to trade the Trendometer signals that appear right after a consolidation in the market. I hope this helps you out with your trades.
P.S. I also scalp during Asian session where the market is usually ranging instead of trending. But for such market condition, I use Adaptive Stochastic, Adaptive CCI and Adaptive RSI indicators.
Hi,
I find your indicator very interesting - you seem to provide good support and answer questions in a very thorough manner. You mention that you use this indicator for scalping- I want to ask how does it behave on bigger timeframes like 1h , 4h , daily ? Maybe you can post a screenshot of it on higher timeframe for those like me that are interested?
Hi,
I find your indicator very interesting - you seem to provide good support and answer questions in a very thorough manner. You mention that you use this indicator for scalping- I want to ask how does it behave on bigger timeframes like 1h , 4h , daily ? Maybe you can post a screenshot of it on higher timeframe for those like me that are interested?
Hello,
Thanks for your interest and positive comment :-)
Here are some screenshots of the performance of Trendometer on higher time frames (M30, H1, H4 and Daily). I hope this helps you to have a view how this indicator would work on higher time frames.
Hi there, would you mind helping me understand why the above screenshot had a notification to go long? I just want to understand the logic behind it to make more informed decisions. As you can see from the above screenshot, it went short.
J
Hi there, would you mind helping me understand why the above screenshot had a notification to go long? I just want to understand the logic behind it to make more informed decisions. As you can see from the above screenshot, it went short.
Hello,
Thanks for purchasing Trendometer.
Please note that the Trendometer signals are generated based on the patterns defined as an input setting. For more information, please read the section "User Defined BUY/SELL Signal Patterns" in the description of the product. Another point is that, it is common to see fake breakouts in the market. The one you showed in the screenshot is one of the fake breakouts.
Please feel free to contact me if you have any question regarding my products.
Best,
Rasoul
Hi Rasoul
do you have set up for H1 and H4 what do you recommend ?
Bye
Hi Rasoul
do you have set up for H1 and H4 what do you recommend ?
Bye
hi, I phachase this indicator and It seems to be very good for trading.
I'd like to Open an order automatically. Is this indicator possible for automated trading of MT4 program?
hi, I phachase this indicator and It seems to be very good for trading.
I'd like to Open an order automatically. Is this indicator possible for automated trading of MT4 program?
Hello,
Thanks for purchasing Trendometer. The signals of Trendometer can be read from an EA to open a position automatically. You can order an EA based on this indicator in the Freelance (https://www.mql5.com/en/job) section of this website.
Best,
Rasoul
Dear Rasoul.
Thank you for your sincere answer.
I have been developing program for 15 years. so I may be can develope EA program.
Mostly, EA program call user indicator fuction like this.
lowValue = iCustom(NULL, tf, "DT-ZigZag-Lauer", dtDepth, tf, 0, m);
if(lowValue >0 ) OrderSend();
I'd like to know that this indicator can call iCustom function.
How does the result value is? I need simple example source.
Best regars.
Dear Rasoul.
Thank you for your sincere answer.
I have been developing program for 15 years. so I may be can develope EA program.
Mostly, EA program call user indicator fuction like this.
lowValue = iCustom(NULL, tf, "DT-ZigZag-Lauer", dtDepth, tf, 0, m);
if(lowValue >0 ) OrderSend();
I'd like to know that this indicator can call iCustom function.
How does the result value is? I need simple example source.
Hello,
Here is a code snippet that demonstrates how to call Trendometer indicator from an EA and open BUY/SELL positions according to some patterns:
{
//---
#define TRENDO_BULLISH_BUF 0
#define TRENDO_BEARISH_BUF 1
#define PATTERN_BUF_SIZE 4
double TrendoBullBuf[PATTERN_BUF_SIZE]={0};
double TrendoBearBuf[PATTERN_BUF_SIZE]={0};
if(Volume[0] == 1)
{
// fill in the buffers
for(int i=0; i<PATTERN_BUF_SIZE; i++)
{
TrendoBullBuf[i] = iCustom(NULL,0,"trendometer",TRENDO_BULLISH_BUF,i+1);
TrendoBearBuf[i] = iCustom(NULL,0,"trendometer",TRENDO_BEARISH_BUF,i+1);
}
// if the pattern RRGG detected, open a buy position.
if(TrendoBullBuf[0] == 1.0 && TrendoBullBuf[1] == 1.0 && TrendoBearBuf[2] == 1.0 && TrendoBearBuf[3] == 1.0)
OpenBuyPosition();
// if the pattern GGRR detected, open a sell position
if(TrendoBearBuf[0] == 1.0 && TrendoBearBuf[1] == 1.0 && TrendoBullBuf[2] == 1.0 && TrendoBullBuf[3] == 1.0)
OpenSellPosition();
}
}
The patterns in above code are for demonstration only. You should choose your desired patterns to trade.
Hope this code helps you to write your own EA based on Trendometer.
Best,
Rasoul
Hi Rasoul.
Thank you for your beautiful code.
Your code seems to me this will be a big Help.
I'm glad to know you and your indicator.
Have a nice day.
Best,
oshflysky
Hi rasoul
Is that possible too implent an update
When we got a signal for exemple : Trendometer buy signal on Gbp/Usd
Sorry for bad english
Bye