Page 149 of 2170

Re: MT4 Indicator requests and ideas

Posted: Sun Jun 18, 2017 6:38 pm
by talaate
talaate wrote: Sun Jun 18, 2017 5:59 pm Dear mrtools
These are the most recent modified versions:
some of them are no need to be published since it is already modified
Regards
Hi mrtools
I have to say, I made some modification on version 10, some of the code I stop them
sorry for that

Re: MT4 Indicator requests and ideas

Posted: Sun Jun 18, 2017 9:03 pm
by Intrest 1
Did Buyseye on the slope. I should be grateful to those who will add arrows on color change like the picture and make this indicator the possibility of switching nrp.

It is very convenient to scalp with the trend

Re: MT4 Indicator requests and ideas

Posted: Mon Jun 19, 2017 12:39 am
by andreatrade1
Dear mladen, mrtools

should be possible to have a mt4, mt5 indi for calculating COINTEGRATION of two or more assetts.

There is a library here -------------------------------------- that may be useful for this purpose.

Thanks in advance , Andrea

Re: MT4 Indicator requests and ideas

Posted: Mon Jun 19, 2017 1:20 pm
by Ganesh
Ganesh wrote: Sun Jun 18, 2017 2:19 am can you do that sir.please
mladen sir, please consider my request

Re: MT4 Indicator requests and ideas

Posted: Tue Jun 20, 2017 1:16 am
by Steam1
Dear mladen, mrtools, Would it be possible to add the set of new Averages and price filters to One more average rsi bands mtf alerts 2_3
Thanks for your help

Re: MT4 Indicator requests and ideas

Posted: Tue Jun 20, 2017 3:31 am
by AmirDehghani
Dear Pro s

Imagine a Grid EA to trade on Correlated Pairs like EU,EJ,UJ simultaneously .
Q: Is It better to have an option of "ReverseTrading" to neutralize each-other currency movement ?
for example:
make this combination:
EU , JE (reverse trade actived by that option on EJ ) and UJ
(each currency once in first and once in last letter)

Is it Helpful instead of EU,EJ,UJ ( take order on EU," JE ",UJ ) ??

Thank You Very Much

Re: MT4 Indicator requests and ideas

Posted: Tue Jun 20, 2017 4:44 am
by TEAMTRADER
Could this signal be made so it goes exactly on top of the high price or the bottom of the low price please?
When it is at the top/bottom of the chart it cannot be seen.
Thanks.
TEAMTRADER

Re: MT4 Indicator requests and ideas

Posted: Tue Jun 20, 2017 5:00 am
by mladen
TEAMTRADER wrote: Tue Jun 20, 2017 4:44 am Could this signal be made so it goes exactly on top of the high price or the bottom of the low price please?
When it is at the top/bottom of the chart it cannot be seen.
Thanks.
TEAMTRADER
Change lines 138 and 139 from this :

Code: Select all

if (High[i+1]>upBuffer[i+1] && Close[i+1]>Open[i+1] && Close[i]<Open[i]) upArrow[i] = High[i]+iATR(NULL,0,20,i);
if ( Low[i+1]<dnBuffer[i+1] && Close[i+1]<Open[i+1] && Close[i]>Open[i]) dnArrow[i] = High[i]-iATR(NULL,0,20,i);
to this

Code: Select all

if (High[i+1]>upBuffer[i+1] && Close[i+1]>Open[i+1] && Close[i]<Open[i]) upArrow[i] = High[i];
if ( Low[i+1]<dnBuffer[i+1] && Close[i+1]<Open[i+1] && Close[i]>Open[i]) dnArrow[i] = Low[i]);

Re: MT4 Indicator requests and ideas

Posted: Tue Jun 20, 2017 5:11 am
by mntiwana
AmirDehghani wrote: Tue Jun 20, 2017 3:31 am Dear Pro s

Imagine a Grid EA to trade on Correlated Pairs like EU,EJ,UJ simultaneously .
Q: Is It better to have an option of "ReverseTrading" to neutralize each-other currency movement ?
for example:
make this combination:
EU , JE (reverse trade actived by that option on EJ ) and UJ
(each currency once in first and once in last letter)

Is it Helpful instead of EU,EJ,UJ ( take order on EU," JE ",UJ ) ??

Thank You Very Much
I think Basket and Grid style trading is more complicated than simple/straight trading,a trader must have sufficient knowledge and experience about.
then Reverse trading is considered in two different ways
first,go in reverse opening trades (close the current trades and open in opposite) when trend/signals changes to opposite
the second reverse trading style is an imaginary assumptions that some traders think if and when trades going in loss,inversing trading logic will give them winning results
so i like ask you what do you means for "reverse trading"
better to explain with pictures
here is one EA style code that will give you basket/grid trading opportunity - but i have not used it so can not tell you how reliable it telling the trend,it only telling H1 trend for pairs
code you can have on "Various Expert Advisors" thread
here
https://www.forex-station.com/viewtopic ... 1295358058

Re: MT4 Indicator requests and ideas

Posted: Tue Jun 20, 2017 5:46 am
by TEAMTRADER
mladen wrote: Tue Jun 20, 2017 5:00 am Change lines 138 and 139 from this :

Code: Select all

if (High[i+1]>upBuffer[i+1] && Close[i+1]>Open[i+1] && Close[i]<Open[i]) upArrow[i] = High[i]+iATR(NULL,0,20,i);
if ( Low[i+1]<dnBuffer[i+1] && Close[i+1]<Open[i+1] && Close[i]>Open[i]) dnArrow[i] = High[i]-iATR(NULL,0,20,i);
to this

Code: Select all

if (High[i+1]>upBuffer[i+1] && Close[i+1]>Open[i+1] && Close[i]<Open[i]) upArrow[i] = High[i];
if ( Low[i+1]<dnBuffer[i+1] && Close[i+1]<Open[i+1] && Close[i]>Open[i]) dnArrow[i] = Low[i]);
Got it - thanks.
TEAMTRADER