- Search Metals Mine
-
TeChaoLiang replied Apr 19, 2021MaPi and All, I hops this can fit MaPi's requirements. Also, to others in this thread, I provide more settings of indicators for everyone can test or use but me. Because this thread is MaPi's house, I prepare a check option, MaPi_trigger, for him. ...
Free Grid EA Ikarus - From zero to hero
-
TeChaoLiang replied Apr 17, 2021The unbalance_control when it is checked, the EA will set the initial lots of a new cycle according to the number of orders of the opposite unfinished cycle. As number of orders in the opposite cycle is larger than 3, it will take the lots of last ...
Free Grid EA Ikarus - From zero to hero
-
TeChaoLiang replied Apr 16, 2021Hi, MaPi, To my understanding, I confirm what your requirements are in other words. The indicator condition is only opening the first order, the following orders of the cycle will be handled by pure grid logic. You are going to use indicator ...
Free Grid EA Ikarus - From zero to hero
-
TeChaoLiang replied Apr 16, 2021Then, what about RSI? The reason why I prepare Conjunct_Idx is one can use those indicators together and also can use them separately, that is, when one of them give signal will trigger the operation. However, It seems to me that you are going to ...
Free Grid EA Ikarus - From zero to hero
-
TeChaoLiang replied Apr 16, 2021Let me try to figure out the possible coding mistakes of your beta version EA. Because I don't have the mq4 file, The only way I can do is through my best hunch to guess it. I use a buy cycle initiation as an example. The original code is: ...
Free Grid EA Ikarus - From zero to hero
-
TeChaoLiang replied Apr 16, 2021Hi, MaPi, Before I really do modification of Icarus, I have to make a double check with you. There are some points I don't understand need your explains. Firstly, I don't understand what "Invert_Indicators: false / true (so e.g. with "false" it will ...
Free Grid EA Ikarus - From zero to hero
-
TeChaoLiang replied Apr 14, 2021Could you please upload your mq4 file?
Free Grid EA Ikarus - From zero to hero
-
TeChaoLiang replied Apr 14, 2021Just let me know where and how to put your control in Icarus. Please refer to my another post #Post 351. Icarus does account risk control by the difference of Account balance and equity. It calculate total profits of Buy and Sell cycles. When the ...
Free Grid EA Ikarus - From zero to hero
-
TeChaoLiang replied Apr 14, 2021Icarus does not have real TP or SL for each position. They cannot be changed, because they are not exist.
Free Grid EA Ikarus - From zero to hero
-
TeChaoLiang replied Apr 14, 2021OK. I try to briefly describe the program logic of Icarus as follows. We can only put codes at the RED NOTE part without changing the Grid trading logic of ICarus. A. Initial stage (Preparation), global variables settings and collect current Market ...
Free Grid EA Ikarus - From zero to hero
-
TeChaoLiang replied Apr 13, 2021Be careful, owing to the fact that as Icarus is in sleeping, it won't perform any profit lock and stop loss control. Perhaps you should set SL to those un-closed orders by hand to secure your account.
Free Grid EA Ikarus - From zero to hero
-
TeChaoLiang replied Apr 13, 2021No, we don't need. Because Icarus or Ikarus doing trailing stop on the terminal end but server end. It won't send any modification to server to modify SL or TP of orders. When profit goal is reached, it begin the trailing stop process on the ...
Free Grid EA Ikarus - From zero to hero
-
TeChaoLiang replied Apr 12, 2021I put some codes in Icarus_2.2 such that the working time of Icarus can be restricted. Icarus works only at the the working time you set. If not in the working time, it won't open or close any orders, also no trailing stop. It just sleep. When it ...
Free Grid EA Ikarus - From zero to hero
-
TeChaoLiang replied Apr 12, 2021I didn't change the Grip trading logic of ICarus, CoG indicator is only used to determine when to initiate a Grip trading cycle or cycles. I had uploaded two versions, Icarus_2.2_COG and Icarus_2.2_COG_once. The former will wait for CoG signal to ...
Free Grid EA Ikarus - From zero to hero
-
TeChaoLiang replied Apr 11, 2021I run Back Test of Ikarus or Icatus EAs week by week on the currency pair AUDUSD, most of weeks, they work fine. However, there is a devil week, 2021.3.22 - 2021.3.26, Grip trading destroyed my account quickly. Because in this week, there was a ...
Free Grid EA Ikarus - From zero to hero
-
TeChaoLiang replied Apr 10, 2021@falanca, If you use CoG together with Icarus, it is difficult to see both cycle exists. It is if a buy cycle (for instance) is initiated, there is definite no sell cycle until the CoG sell condition is reached. However, when the sell condition is ...
Free Grid EA Ikarus - From zero to hero
-
TeChaoLiang replied Apr 10, 2021The EA uses CoG just via two boolean functions as fallows. bool CoG_Buy(int tf) { double cog_sql = iCustom(Symbol(), tf, "Center of Gravity.ex4", 2, 0); if (Ask < cog_sql) return( true ); else return ( false ); return (false); } bool CoG_Sell(int ...
Free Grid EA Ikarus - From zero to hero
-
TeChaoLiang replied Apr 10, 2021It can make two-way trade, but at beginning it always only one way cycle can be initialed because CoG won't give two-way signal at the same time. I just put a decision whether or not using CoG to open the first order of each cycle. If CoG is not ...
Free Grid EA Ikarus - From zero to hero
-
TeChaoLiang replied Apr 10, 2021My Center of Gravity look like as attached. image
Free Grid EA Ikarus - From zero to hero
-
TeChaoLiang replied Apr 10, 2021I use iCustom() function to get the value from Center of Gravity.ex4, which should be ready in MQL4\indicators\ in advance. I made the modification of Icarus_2.2 on the void Robot() parts: // BUYS==0 as well as // SELLS==0. Two simple bool function ...
Free Grid EA Ikarus - From zero to hero