- Search Energy EXCH
- 51 Results
- unaizams replied Dec 14, 2010
Hi asasa and hayseed, Sometimes the strategies are so different that if included in a single EA they will require different magic numbers, stop losses, take profits, trailing etc. which makes the EA slow. I can have separate EAs and code them so ...
MT4 and PC Arrangement for EAs
- unaizams replied Dec 5, 2010
No point of optimization while there is no exit strategy for the EA. When any EA lacks an exit strategy it will show you a straight steadily rising equity curve with no losses until it crashes. I have attached v.2g which allows separate maximum ...
Price Bounce Off MA EA
- unaizams replied Dec 5, 2010
It makes a rising curve and then crashes because it has no stoploss stategy and it is supposed to buy and sell.
Price Bounce Off MA EA
- unaizams replied Nov 28, 2010
I have tested the EA on USDCAD, M15, every tick, FXDD MT4, micro account , 5 digit prices and it is working with no lot calculation problems. Make sure that the strategy tester's model is set to every tick.
Price Bounce Off MA EA
- unaizams replied Nov 22, 2010
As I told you I am travelling right now and will be back in a few days. However, I have tested the EA on FXDD MT4 and it is working with no problems. FXDD account is micro and they quote 5 digit prices.
Price Bounce Off MA EA
- unaizams replied Nov 7, 2010
Thanks lmyyyks. Sorry for replying late.
Different Colors for Multiple Indicator Levels
- unaizams replied Nov 7, 2010
Price_Bounce_Off_MA_v.2e — Somebody asked for the following changes: When I try to run the EA off an InterbankFX Metatrader platform, it says that "Spread is too wide. EA disabled". How can I fix this? I tried this on the GBP/USD and EUR/USD. ...
Price Bounce Off MA EA
- unaizams replied Oct 5, 2010
It is programmed to work automatically on both 5 and 4 digit brokers. The variations are endlesss. The main thing is have you studued a strategy visually and maually and found out that it is promising?
Price Bounce Off MA EA
- unaizams replied May 3, 2010
//For long entry add the following condition if( Ask > iSAR((NULL,0,0.02,0.2,1) // select the right candle // ordersend buy //For short entry add the following condition if( Bid < iSAR((NULL,0,0.02,0.2,1) // select the right candle // ordersend sell
Running Two EA's Simultaneously
- unaizams replied May 3, 2010
I hope this can provide some help. //---- buffers double AUX[]; double EMASMAANGLE[]; //------------------------ for(int j=0; j<21; j++) { AUX[j] = iCustom(NULL, 0, "SMAAngle",/*enter custom indicator parameters here if necessary*/, 0, j); } int ...
Cant take this any more!! (iMaOnArray)
- unaizams replied Feb 28, 2010
Try using the if statement — Try using the if statement. It may solve your problem. if(b != 0) c = a/b;
Zero Divide Error
- unaizams replied Feb 27, 2010
Thanks sangmane for your input. I will attach curve pictures when my MT4 is free to show what I am talking about.
Trend change After 2007
- unaizams replied Jan 24, 2010
Thanks hayseed and RR. That is what I wanted to make sure of.
MA_Shift in Expert Advisors
- unaizams replied Jan 24, 2010
Thanks RR for your reply. I know that the ma_shift is used to move the indicator's line to the right or left in charts. However, my question is: if I use the above codes interchangeably in EA's, will they give me the same result? Thanks again,
MA_Shift in Expert Advisors
- unaizams replied Jan 19, 2010
[quote=tdeu;3380170]Thanks for that. EA works - GREAT. But seems to close full position at "FirstTakeProfit". Why "seems"? Please perform thorough testing before commenting and attach proofs for any bug. Your chart shows partial TP graphically and ...
Price Bounce Off MA EA
- unaizams replied Jan 17, 2010
Here you go — The EA requires a stoploss or another exit signal in case the market reverses or you will get a margin call.
Price Bounce Off MA EA
- unaizams replied Jan 15, 2010
Of course, if you test it without an exit it will open one trade and keep it open until the end of the test period or a margin call. For some reason my MT does not allow me to save test reports, therefore, I attached a test result to you in an Excel ...
Price Bounce Off MA EA
- unaizams replied Jan 15, 2010
It is working as desiged at four and five digit price brokers and in micro and mini accounts. It is either you do not know how to use EA's or you did not give it a chance to work as signals are not plenty. If you change conditions then you have a ...
Price Bounce Off MA EA