Universal MA Cross EA - page 96

 

HI Firedave - does this apply to all the numbers? Because I am trying to trade gold/oil where a value of 2 equals 20 pips i would like to use numbers after the decimal point even if they do not show.

Jeff

 

Mladen/Mrtools, look at this chart, donno why 2 short trades were open before the current short despite not meeting the minimum distance parameter..Also says non-trading hour on top left while it is actually trading??

Files:
screenshot_5.png  136 kb
 
sachin_syd:
Mladen/Mrtools, look at this chart, donno why 2 short trades were open before the current short despite not meeting the minimum distance parameter..Also says non-trading hour on top left while it is actually trading??

Sachin_syd, can't do anything unless we know, your settings, version of EA etc.

 
mrtools:
Sachin_syd, can't do anything unless we know, your settings, version of EA etc.

The version was 1.05, settings were 4 pip slippage, min cross distance 5, tp 80, sl 35, tsl type 1 was 35, time filter 1 to 21, 5 min chart on gbp jpy.

I hope in new version u will add: max cross distance with max bar lookup, time filter with minute function, no new open trade but existing trade still trail during non trading period..Many Thanks

 

Hello, this is the first visual backtest a strategy that uses the indicator ichi360 monitor V2, the best suited for this strategy at the moment. With ichi360 v5 or v8 strategy does not work like that. I continue to make visual backtest with FHL simulator and plans call for the creation of an expert advisor based on this strategy in order to more easily find the correct weak points. Strategy TF H1 EUR/USD.

The first results : (NO TP, NO SL, NO TS)

sell @ 1.3579 le (day-month-year) 03/01/2005 @ 00H00

cloture (close) @ 1.3527 le 03/01/2005 @ 08h00

plus bas (lower) 1.3385

plus haut(highter) 1.3581

+ 52 PIPS

sell @ 1.3507 le 03/01/2005 @ 12H00

cloture @ 1.3477 le 03/01/2005 @ 18H00

plus bas 1.3438

plus haut 1.3536

+ 30 PIPS

sell @ 1.3466 le 03/01/2005 @ 22H00

cloture @ 1.3484 le 04/01/2005 @ 03H00

plus bas 1.3452

plus haut 1.3486

- 18 PIPS

sell @ 1.3420 le 04/01/2005 @ 09H00

cloture @ 1.3295 le 05/01/2005 @ 17H00

plus bas 1.3213

plus haut 1.3431

+ 125 PIPS

sell @ 1.3215 le 06/01/2005 @ 08H00

cloture @ 1.3201 le 07/01/2005 @ 9H00

plus bas 1.3154

plus haut 1.3223

+ 14 PIPS

sell @ 1.3053 le 07/01/2005 @ 20H00

cloture @ 1.3088 le 10/01/2005 @ 18H00

plus bas 1.3036

plus haut 1.3126

-35 PIPS

WIN : +221 PIPS

LOSE : - 53 PIPS

TOTAL du 03/01/2005 au 10/01/2005 : + 168 PIPS

It makes me say also that this indicator might be relevant in determining a trading one way What I wanted to do by asking Mr tools to add better volume, but eventually it adds a filter more on this robot that avoids some error but returns suddenly not enough positions and is not convincing in the long term. By the ichi360 against might give us a way to trade. to see ..

ichi360 monitorv2 ichi360_monitor_v2.ex4 recommended settings for different TF :

D1 settings:

9,26,52

7,22,44

5,10,20

=========

H1 settings:

120,240,480

6,12,24

12,24,120

==========

M30 settings:

8,26,130

==========

M5 settings:

72,144,288

===========

Here are some recent real trade using the same method.

Files:
 

I think the trade time setup should be for only new trades.. That way it won't abandon the open trade and its trailing stops..Regards

 

hi mrtools - not quite sure where I should post this Q - I bought the Eagle MA cross from elite section, but ti comes without any explanation of the parameters. May I suggest that EAs come with this & does someone have a parameter description for eagle please?

 

Hi,

I am using universalMACrossEA + ecn 1.02+BE_1.

1nd problem:

Here is the problem I've found: it looks like that profit distance (breakeven) is triggered on wrong pair, here is the copy paste from Experts tab:

2013.07.26 15:12:46 universalMACrossEA + ecn 1.02+BE_1 AUDNZD,H1: Alert: Breakeven set on AUDJPY ticket no 4573...

So AUDNZD setting triggered AUDJPY breakeven ?

I've changed magic number on those pairs to be different but still the same problem.

Here is another one :

2013.07.26 13:04:41 universalMACrossEA + ecn 1.02+BE_1 EURAUD,M30: modify #45631... sell 0.01 AUDJPY at 91.397 sl: 91.397 tp: 0.000 ok

What is the problem?

2nd problem:

Another thing for breakeven, when you have for example MaxOpenTrade= bigger than 1, it looks like that breakeven is set only on the secureProfitDistance of the first opened trade, even secureProfitDistance distance is not reached yet for other open trades for that pair ?

 
jeffpark:
hi mrtools - not quite sure where I should post this Q - I bought the Eagle MA cross from elite section, but ti comes without any explanation of the parameters. May I suggest that EAs come with this & does someone have a parameter description for eagle please?

Hi Jeff,

Maybe this will help some,also want to add, if using extra digit brokers will need to multipy by 10 on your TakeProfit,Stoploss, Breakeven, and Trailing stop. Also if any questions before or after purchasing, do not hesitate to ask us.

extern string Main_data = " Trade Volume & Trade Method";

extern double Lots = 0.1;

extern int MaxOrders = 1; // Max Number of Orders

extern double TakeProfit = 0; // Take Profit Value in pips

extern int StopLoss = 0; // Stop Loss value in pips

extern int TrailingStop = 0; // Trailing Stop value in pips

extern double BreakEven = 0; // Break-Even Value in pips

extern int ExitMode = 0; // Exit Mode: 1-by CCI,2-by opposite Signal

extern string StartTime = "00:00"; // Start Hour of Trade Session

extern string EndTime = "23:00"; // End Hour of Trade Session

extern string CloseTime = "23:50"; // Trade Close Time

extern int CloseTimeMode = 0; // CloseTime mode: 0-off,1-on

extern bool SignalMail = false; // E-mail switch

extern string MA_Inputs = " MAs parameters ";

extern int MainTimeFrame = 0; // Main TimeFrame in min

extern int MA_TimeFrame = 0; // MA's TimeFrame in min

extern int FastLength = 9; // Length of fast MA

extern int SlowLength = 100; // Length of slow MA

extern int MA_Mode = 0; // MA Mode

extern int MA_Price = 0; // Applied price

extern string CCI_Inputs = " CCI parameters ";

extern int CCI_TimeFrame = 0; // CCI's TimeFrame in min

extern int CCI_Length = 14; // CCI Length (Period)

extern double CCI_BuyLevel = 0; // Buy Level (positive value)

extern double CCI_SellLevel = 0; // Sell Level (negative value)

extern int CCI_Price = 5; // Applied Price

extern string RVI_Inputs = " RVI parameters ";

extern int RVI_TimeFrame = 0; // RVI's TimeFrame in min

extern int RVI_Length = 14; // RVI Length (Period)

extern double RVI_BuyLevel = 0; // Buy Level (positive value)

extern double RVI_SellLevel = 0; // Sell Level (negative value)

extern int RVI_Mode = 0; // RVI Mode: 0-main,1-signal

extern string MM_inputs = " MoneyManagement by L.Williams ";

extern bool MM = false; // ÌÌ Switch

extern double MMRisk = 0.15; // Risk Factor

extern double MaxLoss = 1000; // Maximum Loss by 1 Lot

 
jeffpark:
Hi mladen,

I have been trying again to get the Universal MA Cross to work and just wonder if I have made some silly mistake in the settings as I cannot get it to enter trades - or at least only rarely. The settings I have for M5 gold and oil are:

Re: Universal MA Cross EA

Settings are:

Settings are:

Ecn broker - true

StopLoss (default 100) - 2

TakeProfit (default 200) - 3

TrailingStop (default 40) 2

Moving Average Setting :

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

FastMAPeriod (default 10 - ) 10

FastMAType (default EMA / 1) - 1

FastMAPrice (default Close / 0) - 0

SlowMAPeriod (default 80) - 15

SlowMAType (default EMA / 1) - 1

SlowMAPrice (default Close / 0) - 0

Slow MA Shift - 0

ver.2 MinCrossDistance (default 0) – 0, tried 1 also

ver.7 MaxLookUp (default 1) - 1

Exit Setting :

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

StopAndReverse (default true) – true

PureSAR (default false) - false

ver.7.2 ExitOnCross (default false) - false

ver.5 UseThirdMA (default false) – false

ver.7 OnlyCounterTrend (default false)

Use third MA - false

ver.5 CT – all false

ver.8.0 Use.Pivot.Filter (default false) – false

ReverseCondition (default false) - false

Set TRUE to reverse the entry condition.

ver.3 ConfirmedOnEntry (default true) - true

ver.4 OneEntryPerBar (default true) - true).

NumberOfTries (default 5) - 5

Slippage (default 5) - 1

MagicNumber (default 1234)

ver.5 MaxOpenTrade (default 2) - 2

ver.6 MinPriceDistance (default 5) - 1

UseHourTrade (default false) - false

Lots (default 1) – 10 for gold (1 pip = £0.065

MM (default false) - false

AccountIsMicro (default false) - false.

Risk (default 10) - false

EnableAlert (default true) – true

ver.5 SoundFilename (default "alert.wav")

Thanks

Jeff

Jeff am working on modifying the EA so it can be used on FXCM, I have an FXCM demo but don't have Oil, is there a symbol specifically for oil on your account?

Reason: