Envelope 2.11 - page 47

 

AllTrendEnvelopes

Hello!

Is there any EA that uses the AllTrendEnvelopes_v1 indicator?

 

Please excuse my ignorance but is it possible to see through indicators how the Envelope trading works out a buy and sell signal?

I am interested in the theory behind it and I would look to try and manual trade it.

Thanks in advance!!

 
bottomdollar:
Please excuse my ignorance but is it possible to see through indicators how the Envelope trading works out a buy and sell signal?

I am interested in the theory behind it and I would look to try and manual trade it.

Thanks in advance!!

Yes you can, put the EA in Strategy Tester and check visual mode then open up navigator and put envelope indicator on while test is going with same parameter as EA.

 

settings differences

I opened both of these. and I am sure I missed it but I did not see any differences between gbp/usd and eur/usd settings.

newdigital:
Use this EAs with default settings (any broker).
 

missing magic number

I did not see a place for magic number on ver 2.13

Is it no longer needed?

igorad:
Envelope EA with BreakEven option.
 

About magic number ...

It is inside the code:

int init()

{

if(Symbol() == "EURUSDm" || Symbol() == "EURUSD") Magic = 11000;

if(Symbol() == "GBPUSDm" || Symbol() == "GBPUSD") Magic = 12000;

if(Symbol() == "GBPJPYm" || Symbol() == "GBPJPY") Magic = 13000;

if(Symbol() == "EURJPYm" || Symbol() == "EURJPY") Magic = 14000;

if(Symbol() == "EURGBPm" || Symbol() == "EURGBP") Magic = 15000;

if (Magic == 0) Magic = 77000;

If you are trading some other pairs so just edite the code with more pairs and numbers.

-----------

Settings.

It is my settings for 2.13.1 version for EURUSD and GBPUSD, M15 timeframe.

----------

I am checking the market condition every week at least once in a week on Monday morning using Ichimoku indicator on D1/H4 timeframe.

If market condition is not good for my understanding - I am not trading some pair for this week. But I know it on Monday morning.

For example, I did not check the market condition last week and got some losses.

 

New to Elite Section

New to Elite Section and I wish to try EA below with IBFX Demo account.

Envelope 2.13_5D_mini EA - 2.13 version modified for 5 digit broker,

I have 2 questions, Do I need to attach Indicator to chart to run EA?

and the indicator I_XO_A_H, is this the only indicator I need to run this EA?

I understand that default settings should be used on 15mtf, correct?

Thanks for any help! Great Site!

BDP's

 

adding pairs

I looked at the code and see there is a lot of additional code per pair besides this one line. Please let me know if I am wrong

newdigital:
About magic number ...

It is inside the code:

int init()

{

if(Symbol() == "EURUSDm" || Symbol() == "EURUSD") Magic = 11000;

if(Symbol() == "GBPUSDm" || Symbol() == "GBPUSD") Magic = 12000;

if(Symbol() == "GBPJPYm" || Symbol() == "GBPJPY") Magic = 13000;

if(Symbol() == "EURJPYm" || Symbol() == "EURJPY") Magic = 14000;

if(Symbol() == "EURGBPm" || Symbol() == "EURGBP") Magic = 15000;

if (Magic == 0) Magic = 77000;
losses.
 

what is additional code?

I am using it for EURUSD and some version with GBPUSD.

EURUSD is more good.

By the way - it is not good week ...

This version did 0 pips for EURUSD and +103 pips for GBPUSD for this week.

The other version lost about 300 pips but it is because I am using it for EURUSD with M15 and M5 timeframes simultaniously (M5 timeframe is very risky for this EA as I

have to manage the trades manually sometimes for M5 timeframe; but sometimes it is very very profitable for M5 ...but very risky and I made exit manually often for M5; M15 is traded in normal way as "attach and forget").

 

...

Just a slight change in the code of Envelope EA 2.13.1

The change enables it to work on any broker since some of them are using symbol names like "EURUSD.","EURUSD..","EURUSDfx" and so no, and so on. This one should work on any suffix / prefix used by brokers. Also a minor correction in the code that prevented it to properly enter preferred settings code for particular symbol

Reason: