Page 6 of 17

Re: Various Expert Advisors

Posted: Thu Jan 25, 2018 5:52 am
by mntiwana
Jurik_TrendStrengthExpert_v2.5a
I think this should be final correction :)
almost using same indicators for to work

Re: Various Expert Advisors

Posted: Fri Jan 26, 2018 2:16 am
by mntiwana
Jurik T-S scalp net sar ECN noHedge nmc
It using two indicators only-attached

Re: Various Expert Advisors

Posted: Fri Jan 26, 2018 2:47 am
by mntiwana
Jurik Trend envelope dss news filter
This version using two different indicators - attached

Re: Various Expert Advisors

Posted: Fri Jan 26, 2018 3:13 am
by mntiwana
JTS-1a
(Jurik Trend Strength-1a)
Used indicators attached here
only "AbsoluteStrength" indicator is newest one by Mrtools upgraded with extended options,used with care accordingly as required

Re: Various Expert Advisors

Posted: Fri Jan 26, 2018 3:29 am
by mntiwana
All these above posted EAs are well coded with fantastic and immediate options by pretty expert coders
expert and experienced traders are advised to learn the code from and such code snippets can be used and apply in any EA (copy/past)
So these EAs can be used as EA frame too - with various other applications (indicators)

Re: Various Expert Advisors

Posted: Sun Feb 11, 2018 8:01 am
by mrtools
This is an updated Mandarine Fib pivots ea using an updated T3 basic.

Some quotes from old TSD forum:

1. First of all - T3 calculation was improved for this EA to perform faster.

2. Some paratemers were added.

Range.stopLoss, Range.takeProfit, Range.trailingStop, Range.lockProfit.

It is stop loss/take profit/trailing stop/lock profit multipliers.

Means: multipliers of the range of the price taken for Range.timeFrame timeframe for Range.length bars back.

3. Fibo and conditions for buy and sell.

As we see from the code:

t3=iT3(T3_Period); //period 5

emaf11 = with period 5 for bar #1

emaf12 = with period 5 for bar #2

emas21 = with period 20 for bar #1

emas22 = with period 20 for bar #2

Condition for buy:

if(emaf11 > emas21 && emaf12 t3 && t3 = s3) return(__trendUp);
Interpretation.

This one:

emaf11 > emas21 && emaf12 <= emas22

is 2 MA indicators crossing.

With the confirmation:

- MA with period 5 should be > T3

- If UseFibpivots = true so T3 should be between support 1 and support 3 (some oversolded condition, let's say).

Condition for sell.

2 MA indicators crossing with the confirmation:

- MA with period 5 should be < T3

- If UseFibpivots = true so T3 should be between resistance 1 and resistance 3 (some overbought condition, let's say).

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

So, this EA is having 2 modes inside coded:

- with UseFibpivots = false

and

- with UseFibpivots = true.

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

How to instal.

1. First of all - you should select: this mod of this EA you want to use: more risky but trading more often (UseFibpivots = false), or less risky but it will not trade often (UseFibpivots = true).

I am using both (I installed 2 instances of Metatrader).

2. Download EA, place it in experts forder of your Metatrader's directory, compile in MetaEditor.

3. Timeframe and pairs.

H1 timeframe.

Pairs?

I started to use it with EURUSD, GBPUSD, USDJPY, USDCHF, AUDUSD, USDCAD, NZDUSD, GBPJPY and GBPCHF.

4. Settings.

I am using default setting with the exception:

- UseAutomatic MM.

If true - lot size will be camculated automatically based on your deposit size. If false - we will have fixed lot size.

0.1 for example, or whatever value we place in BaseLot parameter.

- UseFibpivots as true or false.

I said about it above.

- MagicNumber.

MagicNumber should be different for different pairs.

- EcnBroker. If your account is SPT type so use this EcnBroker to true.

The new t3 is using a filter for price, or t3 values or both if desired.

Re: Various Expert Advisors

Posted: Sun Feb 11, 2018 8:32 am
by mrtools
mrtools wrote: Sun Feb 11, 2018 8:01 am This is an updated Mandarine Fib pivots ea using an updated T3 basic.

Some quotes from old TSD forum:

1. First of all - T3 calculation was improved for this EA to perform faster.

2. Some paratemers were added.

Range.stopLoss, Range.takeProfit, Range.trailingStop, Range.lockProfit.

It is stop loss/take profit/trailing stop/lock profit multipliers.

Means: multipliers of the range of the price taken for Range.timeFrame timeframe for Range.length bars back.

3. Fibo and conditions for buy and sell.

As we see from the code:

t3=iT3(T3_Period); //period 5

emaf11 = with period 5 for bar #1

emaf12 = with period 5 for bar #2

emas21 = with period 20 for bar #1

emas22 = with period 20 for bar #2

Condition for buy:

if(emaf11 > emas21 && emaf12 t3 && t3 = s3) return(__trendUp);
Interpretation.

This one:

emaf11 > emas21 && emaf12 <= emas22

is 2 MA indicators crossing.

With the confirmation:

- MA with period 5 should be > T3

- If UseFibpivots = true so T3 should be between support 1 and support 3 (some oversolded condition, let's say).

Condition for sell.

2 MA indicators crossing with the confirmation:

- MA with period 5 should be < T3

- If UseFibpivots = true so T3 should be between resistance 1 and resistance 3 (some overbought condition, let's say).

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

So, this EA is having 2 modes inside coded:

- with UseFibpivots = false

and

- with UseFibpivots = true.

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

How to instal.

1. First of all - you should select: this mod of this EA you want to use: more risky but trading more often (UseFibpivots = false), or less risky but it will not trade often (UseFibpivots = true).

I am using both (I installed 2 instances of Metatrader).

2. Download EA, place it in experts forder of your Metatrader's directory, compile in MetaEditor.

3. Timeframe and pairs.

H1 timeframe.

Pairs?

I started to use it with EURUSD, GBPUSD, USDJPY, USDCHF, AUDUSD, USDCAD, NZDUSD, GBPJPY and GBPCHF.

4. Settings.

I am using default setting with the exception:

- UseAutomatic MM.

If true - lot size will be camculated automatically based on your deposit size. If false - we will have fixed lot size.

0.1 for example, or whatever value we place in BaseLot parameter.

- UseFibpivots as true or false.

I said about it above.

- MagicNumber.

MagicNumber should be different for different pairs.

- EcnBroker. If your account is SPT type so use this EcnBroker to true.

The new t3 is using a filter for price, or t3 values or both if desired.
Some old forward testing results with fibo = true ::::::

Re: Various Expert Advisors

Posted: Sun Feb 11, 2018 8:49 am
by mrtools
And recent forward tests on m30 gbpjpy:::

Re: Various Expert Advisors

Posted: Sat Feb 17, 2018 4:07 am
by oguz
Hi MrTools.
Thank you for this ea.
I tested "Mandarine Fibpivots EA"
It generates the following errors and can not continue bactest after only one successful operation.
What could be the problem?

Best.

Re: Various Expert Advisors

Posted: Sat Feb 17, 2018 7:55 am
by oguz
mntiwana wrote: Tue Jul 18, 2017 6:30 am Few more versions of it
HMAExpert_v2_eurusd
HMAExpert_v2_gbpusd
HMAExpert_v2_usdjpy
All 3 EAs using "HMA_v2" and "efficiency_v1.1" indicators - (already posted above)
Hi mntiwana
Why does not all of the EA published here produce results in the optimization process?