@fxDreema By loading the EA on each chart I can't as yet limit the number of trades initiated on different charts. All I want to do is use three out of the five charts when my trading strategy sees an opportunity to trade. As my margin would not stand 5 charts with trades on them.
Posts made by Implosion
-
Allow the EA to trade dynamically on any 3 out of 5 charts loaded. How would I do this?posted in Questions & Answers
-
RE: Martin gale system - Just started coding so all this is new to meposted in Questions & Answers
There is much easier ways to do that if you are still working on that.
-
RE: Check trades count not working properly, allows too many trades with multiple charts openposted in Questions & Answers
How can you have Market = CurrentSymbol();
When the logic block specifies Any Market?
I suppose the most important point is: Does Any Market in this logic block mean "Any forex pair you have the EA running with the same magic number? If not can you provide an example? -
Check trades count not working properly, allows too many trades with multiple charts openposted in Questions & Answers
Compare = ">";
CompareCount = 3;
GroupMode = "group";
Group = "";
MarketMode = "market";
Market = CurrentSymbol();
BuysOrSells = "both";
LimitsOrStops = "both";
Seems 'market' should equal 'all markets' if "any market" is specified in the logic block. -
RE: Martingale single trade based?posted in Questions & Answers
I dont use the martingale but use the "add to volume"
For each trade -> pips away from open price -> add to volume -
optimisation does not appear in MT5posted in Bug Reports
In
Condition
Candle
Adjust
parameter for optimisation does not appear in MT5 strategy -
Basket Of Trades Grid Questionposted in Questions & Answers
How do I have a basket of trades in a grid where they are "at market" transactions triggered at a certain pip distance(not pending orders) where I have the same take profit pips based on the last market order transaction? So the take profit moves based on the last transaction in the basket. I also want to increase the lot size on each trade in the basket. Then I want to hedge the whole basket if I run out of grid trades.
-
How do I use a table style indicator with no colour variables to grab?posted in Questions & Answers
The file is attached I would like to use.
0_1502783524136_TraderTykhev1.00.ex4 -
Indicator condition on multiple historic candles. Lookbackposted in Questions & Answers
Re: [Custom Indicator](Looking Candles Back)
Hi Admin I have an indicator where I want to check the indicators value of each candle in a range of candles. Then if any candle is below the value of 0 then the condition is not met.
At the moment I make multiple conditions, one for each candle look back. So I have the same condition "must be > 0" and I change the candle ID.
Thanks
Peter