Discussion - page 140

 

All the statements/performance, excel files and leaders' threads were updated. Please read this post https://www.mql5.com/en/forum/173403/page39 and this thread https://www.mql5.com/en/forum/174416

(note: next week it will be the different location of the statements/performance - just to keep old performance inside this section).

 

All the statements/performance, excel files and leaders' threads were updated. Please read this post https://www.mql5.com/en/forum/173403/page39 and this thread https://www.mql5.com/en/forum/174416

(note: next week it will be the different location of the statements/performance - just to keep old performance inside this section).

 

newdigital

Where can we find the setting, for oll EA , post 1394 ?

Thanks

 

bebeshel

Where can we find ...

How many of you are asking?

All EAs with the settings can be found on this thread https://www.mql5.com/en/forum/176044 by the links to download, or the link to some thread where you can download. So, you can find it by yourself.

Please - reply to my question:

why do you need the settings for ALL EA?

As I know - you never posted any trading results, systems or ideas which may be interesting for many elite members ... you requested many indicators to code but never posted any trading results or ideas or any ...

Elite sections are existing as the forum and everything should be interesting for the majority.

 

newdigital

I do not usually wear in public, I am more conservative ...:)

Here are some of my system that I use for trading manual, for my experience (15 years in the market), EA have not given me good rezultados ...

I really want setting for:

EurUsd-H1-Alpha1.21DLL

AUDJPY-H1-Alpha1.21DLL

EURJPY-H1-Alpha1.21DLL

EURAUD-H1-Alpha1.21DLL

EurUsd-H1-TrendStrengthexpert_v2

AUDJPY-H1-TrendStrengthexpert_v2

EURJPY-H1-TrendStrengthexpert_v2

EURAUD-H1-TrendStrengthexpert_v2

In any case, here are some screens I use if I could create .. SOME SYSTEMS, serious and I'd appreciate it.

Thanks

Files:
system_1.jpg  343 kb
system_2.jpg  405 kb
 

You have too many indicators on the chart.

Just remember - all modern/cool indicators are just some variations of standard Metatrader's indicators

-----------

As to Alpha dll and TrendStrengthExpert_v2 EA.

The settings of Alpha dll is same for all pairs.

TrendStrengthExpert_v2 EA with the settings for EURUSD is on this post as the links to download:

https://www.mql5.com/en/forum/174793/page48

I am trading EURUSD only for TrendStrengthExpert_v2 EA and it is very profitable. I did not find profitable settings for the other pairs for this EA.

How to select everything quickly?

Use this thread https://www.mql5.com/en/forum/176044 to download EAs, visit EA's thread (almost every EA is having separated thread) and to download the settings.

As to trading results - read this thread https://www.mql5.com/en/forum/174416 ,

or -

if you do not have time to read many pages and want to select everything quickly - visit this thread https://www.mql5.com/en/forum/173403 for last post (to download excel files). Just select EAs and the pairs according to excel file's performance (it is in 4 digit pips). After that - go to this thread https://www.mql5.com/en/forum/176044 to find EA, settings, trading results and discussion thread for EA.

I am here to help.

 

newdigital

If you have Reason, but more than one or the other, have few or many indicators, my personal opinion is that everyone has to feel his pleasure when you trade, comfortable when working with a screen.

What for some is a lot to me can be comfortable, it's all question of feeling comfortable (i depends on the custom), so my best to open 10 screens for ex. EURUSD, I'd rather have it on a screen almost everything I consider important.

 

ND

Can you help me with this EA custom trend line? I'm trying to use a dual MA indicator but I'm not sure how to layout the custom line with the dual inputs.

double trend =iCustom(NULL, 0,"RK-Heatmap-MAwAlerts-trend_arrows",5,0,1,0,12,0,1,0,2,Shift+0);

I've attached the indicator & EA

Thank You

Ray

 

Hi traderduke,

Are you trying to create EA?

Too much job ...

Well.

First of all - delete this:

extern string Indicator_Inputs = " - PriceChannel parameters--";

extern int TimeFrame=0;

extern int MAPeriod=5;

extern int ma_shift=0;

extern int ma_method=1; // 1 Expo, 2 Smoothed moving average,

extern int applied_price=0;

extern int MAPeriod1=12;

extern int ma_shift1=0;

extern int ma_method1=1; //1 Expo, 2 Smoothed moving average,

extern int applied_price1=0;[/CODE]

and insert this

[CODE]extern string RKHeatmap_Inputs = " - RK-Heatmap-MAwAlerts-trend_arrows--";

extern int MAPeriod=5;

extern int ma_shift=0;

extern int ma_method=1; // 1 Expo, 2 Smoothed moving average,

extern int applied_price=0;

extern int MAPeriod1=12;

extern int ma_shift1=0;

extern int ma_method1=1; //1 Expo, 2 Smoothed moving average,

extern int applied_price1=0;

extern double diff_alertsLevel = 0.0011; //0=off

But ... I do not understand the logic of this EA sorry ...

I just only see that buy line of insicator (if used as icustom) is the folowing (green line):

double trend =iCustom(NULL, 0,"RK-Heatmap-MAwAlerts-trend_arrows",MAPeriod,ma_shift,ma_method,applied_price,MAPeriod1,ma_shift1,ma_method1,applied_price1,diff_alertsLevel,0,Shift+0);

Sell (red line):

double trend1 =iCustom(NULL, 0,"RK-Heatmap-MAwAlerts-trend_arrows",MAPeriod,ma_shift,ma_method,applied_price,MAPeriod1,ma_shift1,ma_method1,applied_price1,diff_alertsLevel,1, Shift+1);

What I mean is 0 (buy line) and 1 (red line) after

applied_price1,diff_alertsLevel,

And about Shift ...

In your settings (in EA's input):

extern int Shift = 0;

But in icustom - it is the number of the bar and bar = 0 is open bar.

because in icustom - you are using Shift + 0 (open bar which can be changed any time before closed), and previous (or closed, or bar #1) is Shift +1.

I think - in icustom - it should be Shift +1 and Shift +2.

It means, if bar #0 is open bar so bar #1 is previous (closed bar), and so on up to the numeration.

--------------------

Buy bar #1:

double trend_buy1 =iCustom(NULL, 0,"RK-Heatmap-MAwAlerts-trend_arrows",MAPeriod,ma_shift,ma_method,applied_price1,MAPeriod1,ma_shift1,ma_method1,applied_price1,diff_alertsLevel,0,Shift+1);

Buy bar #2:

double trend_buy2 =iCustom(NULL, 0,"RK-Heatmap-MAwAlerts-trend_arrows",MAPeriod,ma_shift,ma_method,applied_price1,MAPeriod1,ma_shift1,ma_method1,applied_price1,diff_alertsLevel,0,Shift+2);

Sell bar #1:

double trend_sell1 =iCustom(NULL, 0,"RK-Heatmap-MAwAlerts-trend_arrows",MAPeriod,ma_shift,ma_method,applied_price1,MAPeriod1,ma_shift1,ma_method1,applied_price1,diff_alertsLevel,1, Shift+1);

Sell bar #2:

double trend_sell2 =iCustom(NULL, 0,"RK-Heatmap-MAwAlerts-trend_arrows",MAPeriod,ma_shift,ma_method,applied_price,MAPeriod1,ma_shift1,ma_method1,applied_price1,diff_alertsLevel,1, Shift+2);

-----------

But I do not understand the logic sorry ...

Buy/sell on crossing 2 lines of the indicator?

Well.

Buy if trend_buy2 trend_sell1

Sell if trend_buy2 > trend_sell2 && trend_buy1 < trend_sell1

I mean -

instead of this code for buy (after bool BuySignal() ... icustom ...)

if (trend > 0 && trend1 > 0

use

if (trend_buy2 trend_sell1

and instead of same code for sell use (afterbool SellSignal() ... icustom ...) use

if (trend_buy2 > trend_sell2 && trend_buy1 < trend_sell1

 

Your original EA should be cleaned ... so ... that is why I posted the codes here instead of changing inside your EA.

I am not a coder so - check it with MrTools or Mladen.

I can change/code it too but as I am not a coder - it will take long time for me.

Check with Mladen or MrTools anyway as I can do mistake sorry.

Reason: