- Search Metals Mine
- 1,205 Results (1,204 Replies, 1 Comments)
-
BlueRain replied Jul 4, 2022More likely, that is written in CHS ( Chinese Simplified ) and your system locale is not matching. You will need to change your system locale into Chinese Simplifed to see that. How to change system locale in Windows 10 - The Language for - ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Jul 4, 2022changed how it alert. it will do once per candle now. also changed to pipsize. Original alert code was from one of your indicator provided.
I will code your EAs and Indicators for no charge
-
BlueRain replied Jul 3, 2022It is using daily ATR value. Default ATR Period is 5 period. so, it would have used 5 period average. Regarding pip round up, it is already not display as full numbers. I have modified again so you can set any ATR time frame. Default ATR timeframe ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Jul 2, 2022Little mistake in ATR value to Pip size conversion. Try this one. 2nd number is ATR value displayed as CandleSize/ATR in Pips. if you turn on "Show_ATR_Value" option, it will show ATR value. Default is just candle size as before.
I will code your EAs and Indicators for no charge
-
BlueRain replied Jul 2, 2022check this out. I have added ATRmultiplier so that you can set what percentage of ATR you want to use. It is rare to see a candle bigger than ATR so it might be better to use like 0.5 Default is 1.
I will code your EAs and Indicators for no charge
-
BlueRain replied Jun 28, 2022Just finished converting MT4 to MT5 as I am slowing moving into MT5. I thought this indicator was very helpful for my trading and I couldn't find for MT5. Look and Feel, functionality should be about identical, just under the hood is differenct.
Indicator for MT4 converting to MT5?
-
BlueRain replied Jun 24, 2022You can't modify and Set SL,TP as Ask or Bid. There is limit on how close you can place SL,TP close to current price. OrderModify(ticket,OrderOpenPrice(),Ask-0,Ask+0,0,clrGreen); } OrderModify(ticket,OrderOpenPrice(),Bid-0,Bid+0,0,clrRed);
I will code your EAs and Indicators for no charge
-
BlueRain replied Jun 24, 2022You are mixed up with MagicNumber and TicketNumber. Your attached EA doesn't handle any of MagicNumber. It seems you have to input specific ticket number and it will do TrailingStop. Anyway, I added a loop so that it does handle all orders. Ticket ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Jun 22, 2022I thought you have attached EA to this thread. I have removed that line for you. Also, I did set MagicNumber=0 as default.
I will code your EAs and Indicators for no charge
-
BlueRain replied Jun 22, 2022[quote=walesamuel;14040732] No idea. I didn't change anything on whole structure. I just tried to attach to my demo account and it worked well. Try to compile again and see if that fixes.
I will code your EAs and Indicators for no charge
-
BlueRain replied Jun 22, 2022You can't divide string. See attached. I have only fixed your cal portion. You will need to fix others as needed.
I will code your EAs and Indicators for no charge
-
BlueRain replied Jun 21, 2022You can just remove checks on OrderMagicNumber(). if you don't provide any, default is 0. So, either you just use MagicNumber = 0 or remove this from code. && OrderMagicNumber()==MagicNumber
I will code your EAs and Indicators for no charge
-
BlueRain replied Jun 18, 2022Maybe, you were expecting this indicator to draw MA lines. I have attached revised one that will draw MA line. Revised one should draw 2 MA lines and it will show arrows when it happens on the candle index you set in option. Default is ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Jun 17, 2022Change your option inputs. There are input option where you can enter. You can enter whatever number you would like for this MA Cross. After, load up your own MA indicators per your settings.
I will code your EAs and Indicators for no charge
-
BlueRain replied Jun 17, 2022Fix attached. Issues: Your conversion from string time is incorrect. It should be converted into int. You are passing string into iRSI(). Note: This fix is not complete. Just fixed your RSI value issue. You would fix AVG issue and add some time ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Jun 16, 2022that is about right. Just it would be tricky to sort two dim array if you don't know how.
I will code your EAs and Indicators for no charge
-
BlueRain replied Jun 16, 2022Why do you even want this? MA Cross signal is not reliable and it redraw as price changes.
I will code your EAs and Indicators for no charge
-
BlueRain replied Jun 16, 2022Have an array of double[] atrvalue -> store atr values, then, sort array and write top 10 of array to comment
I will code your EAs and Indicators for no charge
-
BlueRain replied Jun 15, 2022When you place an order, broker place some limit how tight/close to Ask/Bid price you can place order. that is called "StopLevel". If your SL/TP is too close, it will cause error send error - mostly Order Send Error 130. if your stoploss/targetprice ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Jun 14, 2022Nothing wrong except your OrderType was wrong. Change {res=OrderSend(Symbol(),OP_BUY,Lots,Bid,3,Bid+sl,Bid-tp,"EMA_21_HLC_Scalp_Sell",MAGICMA,0,Red);} to {res=OrderSend(Symbol(),OP_SELL,Lots,Bid,3,Bid + sl, Bid - ...
I will code your EAs and Indicators for no charge