- Search Metals Mine
-
TeChaoLiang replied Dec 25, 20211) Attached are the 4TF HMA triggering indicator. file file 2) cog_sql is value 3 and cog_sqh is value 2. 3) As attached codes. image 4) ATR will be applied to each virtual SL or TP when calculated. That is, it is very sensitive and dynamic.
Free Grid EA Ikarus - From zero to hero
-
TeChaoLiang replied Dec 22, 2021No, Icarus is NOT my EA. I even never run it on my demo account. I have my against the trend grid trading EA and performs better than Icarus (See attached image). image I know how Icarus works and only share my knowledge of Icarus. If you like to ...
Free Grid EA Ikarus - From zero to hero
-
TeChaoLiang replied Dec 21, 2021These functions are not difficult to be added. However, they are meaningless to Icarus. Firstly, Icarus doesn't care whatever the timeframe is on your chart that is running Icarus, that's why the dropdown-menu for the time frame is meaningless. ...
Free Grid EA Ikarus - From zero to hero
-
TeChaoLiang replied Dec 17, 2021Suppose the current value of BB upper line is BBU and of BB lower line is BBL. ASK BID means when current Ask < BBL will trigger a buy signal and when Bid > BBU will trigger a sell signal. High Low means when current LOW < BBL will trigger a buy ...
Free Grid EA Ikarus - From zero to hero
-
TeChaoLiang replied Dec 14, 2021It seems that your broker give you a wrong point value. Normally, the point value should not be zero. Try to use marketinfo to check whether or not the point=0. When using MarketInfo() to obtain the point value from the server of your broker: ...
Free Grid EA Ikarus - From zero to hero
-
TeChaoLiang replied Dec 13, 2021Well, I think perhaps do a partial closing of the profitable cycle is a better approach. That is, when a profitable cycle reach a new max_profit, instead of doing profit lock, we can do a sequence of order close of orders in that cycle. How to ...
Free Grid EA Ikarus - From zero to hero
-
TeChaoLiang replied Dec 13, 2021Well done. You did a correct work on this part. The place you are putting will cause the TP and grid size change every tick changed. That is too frequently. If you want to recalculate ATR when a new cycle is initiated, you should put the code here: ...
Free Grid EA Ikarus - From zero to hero
-
TeChaoLiang replied Dec 13, 2021Show the error message. I think the problem is from your broker. There are expression in Icarus will be divided by tick value for calculating the MaxLoss or ticksbyprice. When Icarus obtain the Tick Value from your broker, it get a zero in return, ...
Free Grid EA Ikarus - From zero to hero
-
TeChaoLiang replied Dec 12, 2021double ATR_Grid_Size() { int digits, scale=10000; digits = (int)MarketInfo(Symbol(),MODE_DIGITS); if (digits == 3 || digits == 2) scale = 100; if (Use_ATR) return ((int)round(ATR_Multiplier*scale*iATR(Symbol(),ATR_tf,ATR_Period,ATR_shift))); else ...
Free Grid EA Ikarus - From zero to hero
-
TeChaoLiang replied Dec 1, 2021When you run Icarus on different charts with a same symbol, you have to change the magic number of Icarus for different charts. This way, Icarus won't close all orders on all charts. When an EA of some chart first found Account_Risk is reached, the ...
Free Grid EA Ikarus - From zero to hero
-
TeChaoLiang replied Nov 28, 2021This is a new EA. I'll consider to implement it. However, I don't like to code the part of drawing something on the chart. But, I think every thing you mentioned can be calculated by the EA. Also, because you have mentioned hedge, therefore the EA ...
Free Grid EA Ikarus - From zero to hero
-
TeChaoLiang replied Nov 26, 2021Error 138 errer means Requote. The slippage too small such that the close price is not met. Icarus does not put the slippage on the settings so that trader can set the slippage. It seems use a fix slippage.
Free Grid EA Ikarus - From zero to hero
-
TeChaoLiang replied Nov 25, 2021In Icarus, grid size is only use for defining the virtual SL, when reached, it will add new orders. The new orders are not referring to any indicators. Indicators are only applied to trigger entering a first order of a new buy/sell cycle.
Free Grid EA Ikarus - From zero to hero
-
TeChaoLiang replied Nov 25, 2021They are applied to every new cycle to be initiated.
Free Grid EA Ikarus - From zero to hero
-
TeChaoLiang replied Nov 24, 2021Your Profit_lock is set to 0.3, that is, the maximum profit of the sell order is 29.75 so the profit lock = 29.75*0.3 = 8.93, when its current profit is less than 8.93 it will close the order. When the profit goal is reached, Icarus will begin to ...
Free Grid EA Ikarus - From zero to hero
-
TeChaoLiang replied Nov 20, 2021If the market is only making reversal but not a change of trend, it is no problem for Icarus to handle the situation. We don't need to do anything in such situation. The problem is when a big trend occurs Icarus will crash.
Free Grid EA Ikarus - From zero to hero
-
TeChaoLiang replied Nov 18, 2021The original Icarus does not has a specific strategy for entering the market. The later version of Icarus I added several indicators for choosing to trigger a trade, that is, initiate a buy/sell cycle. You can use these indicators to arrange Icarus ...
Free Grid EA Ikarus - From zero to hero
-
TeChaoLiang replied Nov 18, 2021Well, ATR only dynamically determine the grid size, and the grid size is related to the virtual SL of Icarus. However, starting volume, I think, should depend on your account balance. Starting volume seems independent of the grid size.
Free Grid EA Ikarus - From zero to hero
-
TeChaoLiang replied Nov 16, 2021Yes, it is a correct approach. One can develop an EA for protecting Icarus purpose. The protect EA can monitor Icarus and put opposite orders when Icarus is adding new orders. When the price is bouncing back, the protect EA can close orders grid by ...
Free Grid EA Ikarus - From zero to hero