You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Now I know that our EA was programmed to have permanent stop loss.
So I am continuing testing manually using this rules
https://www.mql5.com/en/forum/172979/page3
I added an other indicator to this system tested manually (insread of Prace_Channel indicator), estimated the profit etc.
I tried to change it and I think it should be successful.
I opened two orders on H1 (eurusd sell and usdchf buy) and one order on M15 (gbpusd sell).
I think this system may work.
I mean the system with iTrend indicator as a filter and some an other indicator.
See some discussion about it at https://www.mql5.com/en/forum/172979/page4
I have a sugestion:
To replace PriceChannel_Stop_v1 indicator with BrainTrend2Sig (or BrainTrend1Sig) . It's more stable and send a single signal on time frame = open price.
I have a sugestion:
To replace PriceChannel_Stop_v1 indicator with BrainTrend2Sig (or BrainTrend1Sig) . It's more stable and send a single signal on time frame = open price.
But we have BrainTrending EA already.
Look at https://www.mql5.com/en/forum/173029
This EA is using BrainTrend1 indicators to get the signals on more higher timeframe, BrainTrend2 indicators for S/L on more low timeframe (the same with TSD - estimating trend on D1 and trading on H4) and ADX.
Brainwashing is the different.
yes...but it's very strange... to many imput parameters...
I want to modify Brainwashing EA replacing PriceChannel_Stop_v1 indicator with BrainTrend2Sig (to hold logic from Brainwashing)
If working...
I'm traying to read signal from BrainTrend2Sig
double BT2SigSell = iCustom(NULL, 0,"BrainTrend2Sig", ChannelPeriod, Nbars, 0); // Sell Value of BT2Sig
double BT2SigBuy = iCustom(NULL, 0,"BrainTrend2Sig", ChannelPeriod, Nbars, 1); // Buy Value of BT2Sig
Alert( Symbol() , " at " ,Close[0] ," Buy " ,BT2SigBuy ," Sell " , BT2SigSell);
i receive everytime BT2SigSell =0 & BT2SigBuy =0
What is wrong ?
correct call is:
double BT2SigSell = iCustom(NULL, 0,"BrainTrend2Sig", Nbars, 1,0); // Sell Value of BT2Sig
double BT2SigBuy = iCustom(NULL, 0,"BrainTrend2Sig",Nbars, 0, 0); // Buy Value of BT2Sig
Brainwashing EA with the filter iTrend was created
I want to say that Brainwashing EA with the filter iTrend was created:
Brainwashing #1c.mq4
This EA and necessary set of indicators (this EA will not work without indicators) you may find at https://www.mql5.com/en/forum/172975
Description of the settings, timeframes etc you may find in the 'Setup Questions' area at https://www.mql5.com/en/forum/173031
I think that a good filter for Brainwashing could be not open more than a trade in 3 majors at the same time.
chf, eur, gbp are strongly related ... if we open 2 trades at the same time ... we get greater risk.
Best regards.
I think Brainwashing is ok. No losses during the 6 days. Profit only.
It is very reliable EA and the reliability depends on filter (more higher value of ITrendLevel is more reliability).