You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
I have a simple way estimating system...if I take a look @ it and feel even slightly nervous...I forgetaboutit...your picture makes me nervous
Let us make it more comfortable for your ease.
now you can better understand how these filtering out each other,when all two showing any same direction,dont change your mode when any single produce some false/short signal.
I am not sure that it can be done without over-complicating the whole thing
More or less that would be an EA already, not an indicator, but will see what can be done
Dearest MLADEN
A bit explaining my request/idea.
system 1 = true/false ....... // at one time only one system should be true.
system 2 = true/false
system 1 = check only ma 1
system 2 = check ma 1 + ma 2
when ma one (1) "averages - mtf - alerts 8.4" in orange color (sell/down trend)
condition=check for ma two (2)
if ma two (2) "StepMA of rsi adaptive ema 2.8" in orange color (sell/down trend)
open a sell order/trade.
same in opposite (for buy trade)
hope i explain well my request as an initial start.
regards
Hi mladen,
I tried to do an simple EA using simple trend (extended), and I tried to work from the simple EA using StepMA of rsi adaptive ema 2.8.
The EA gets no errors when I compile, but it don't open any trades. I don't know what I did wrong?
Hi mladen,
I also tried to make an simple EA from averages - mtf - alerts 8.4.ex4. And I think I understand a bit more now, all parameters from the indicator seem to work in the EA (or the opposite if you like). And now the EA opens order, but something is wrong with how it opens orders. It only opens sell orders, and not when it should.
Hi again :) (sorry for many questions)
What does the number 10 mean in :"double hull_trend_current = iCustom(NULL,0,"averages - mtf - alerts 8.4",PERIOD_CURRENT,CustomTF,AveragePeriod,PriceToUse,AverageMethod,DoubleSmoothedAverage,AdaptiveAverage,Filter,Filterapplied,10,BarToUse);"
before "BarToUse"? If I change it to 9 in simple EA from averages - mtf - alerts 8.4.ex4 it seems to work?
Hi again :) (sorry for many questions)
What does the number 10 mean in :"double hull_trend_current = iCustom(NULL,0,"averages - mtf - alerts 8.4",PERIOD_CURRENT,CustomTF,AveragePeriod,PriceToUse,AverageMethod,DoubleSmoothedAverage,AdaptiveAverage,Filter,Filterapplied,10,BarToUse);"
before "BarToUse"? If I change it to 9 in simple EA from averages - mtf - alerts 8.4.ex4 it seems to work?
That is the buffer number
Thanks! Is it correct to use number 9 in this example? How do I find the right buffer number?
Try using the buffers explorer (the attached) - that way you can see how many buffers are there, what are the values in the buffers and what are their numbers of any indicator using default parameters (just enter the name of the indicator you wish to explore and then chose the buffer numbers)
Try using the buffers explorer (the attached) - that way you can see how many buffers are there, what are the values in the buffers and what are their numbers of any indicator using default parameters (just enter the name of the indicator you wish to explore and then chose the buffer numbers)
Try using the buffers explorer (the attached) - that way you can see how many buffers are there, what are the values in the buffers and what are their numbers of any indicator using default parameters (just enter the name of the indicator you wish to explore and then chose the buffer numbers)
Hi mladen,
1. I try to use different timeframes in simple EA and have changed PERIOD_CURRENT to TimeFrame and wrote for TimeFrame;
extern int TimeFrame = 0 //TimeFrame
And it works, if I write 60 in EA it becomes 1H in indicator. But can I do it in some other way, perhaps with enums?
I have looked here:
https://docs.mql4.com/constants/chartconstants/enum_timeframes
and tried a few combinations, but can't get it right.
2. If I would like to combine two settings or two indicators. For example if both are in downtrend then buy, and if one changes then sell. Is it hard? Can I use two hull_trend in some way?
Is it enough to change something here in the code: