MQL4 and MetaTrader 4 - page 356

Hi If I use iCustom like bellow to save 4 buffers, it run the indicator 4 time for each buffer and waste CPU and resources. I'm right?!   Buffer[i]=iCustom(NULL,0,"CustomIndi",1,i);   Buffer[i]=iCustom(NULL,0,"CustomIndi",2,i);   Buffer[i]=iCustom(NULL,0,"CustomIndi",3,i);...
I am a website developer, the client gave me 30 investors mt4 accounts login detail, then I need to display those mt4 account balance, profit, loss onto website. So each member login to the website can see the balance, profit, loss. Do I have to install 30 mt4 folder onto windows VPS, then write a...
  Help with 1 trade per candle  (16   1 2)
I need help in adding code to my EA only to execute once per Candle and not per tick. Acn someone please assist with the code and where to add it please? // ------------------------------------------------------------------------------------------------// EXTERN VARS//...
Hello, I have been searching for an answer for my question all over the web, but I didn't have any luck. I have a simple indicator that takes an indicator called by iCustom and displays if it is in uptrend or downtrend in a 0/1 histogram. The code works well when placed on the chart and when I...
How to close/open  trade using time..... Please give any hint or references.... int bars = iBars(_Symbol, PERIOD_CURRENT); for (int i=0; i<bars && i<20; i++) { }
Hello everyone, I have a function that checks my percentage of daily profit. The target profit is 1%, when I took a test by the strategy tester in mt4  with 10 thousand, in the first operation I had a profit of 100.14: 1 2019.01.07 03:50 sell 1 16.69 1.14214 1.14315 1.14208 0.00 10000.00 2 2019.01...
Hi Guys,  I came across the attached indicator and was hopping if anyone could help add the higher high lower high and lower low, lower high rule text to the chart.  Many Thanks
instead of Bid I want to put Dailyopen ObjectCreate(LineName, OBJ_HLINE, 0, 0, Bid - pipDistance*Point); in below "daily open" indicator code i have put horizontal lines code but instead of Bid price i want horizontal lines on daily open. try to edit but compile error. Any Help Highly appreciated...
Please also add the weekday (Mon, Tue, ...) information in the status bar when moving the mouse above prices
Dear MQL4 coders, please fix 2 error warnings in the below code #property indicator_chart_window #property indicator_buffers 5 #property indicator_color1 OrangeRed #property indicator_color2 MediumPurple #property indicator_color3 Red #property indicator_color4 Black #property indicator_color5 Black...
I have attached a indicator WeisWave3,  it showing coding Warning "Possible loss of data due to type conversion" please fix it up.
Hello, Im 3 month old programming student, i need help to debug this code. The indicator is supposed to place arrows on buy and sell signals but it just scatters arrows all over the chart on candles that dont meet the signal conditions and i have failed to understand what is wrong here. The buy and...
Are these written codes correct? that after several minutes before closing the shop get a position sell and with opening the shop close? extern int magic=1; extern int hour=12; extern int minutes=58; extern int second=10; extern int dayofweek=6; extern double lot=1;...
The below code is showing  Warning Message "implicit conversion from 'number' to 'string'" please fix it.... #property strict #property indicator_chart_window #property indicator_chart_window #property indicator_buffers 2 #property indicator_color1 Blue #property indicator_color2 Red //---- input...
Dear respected community coder.... I m newbie on this forum..... I have one issue..... .. Condition is "if bar/candle  open from low... To... High, i want code that closed the trade when bar closed at high.  Help should be appreciated........ God bless you. 
[Deleted]
Hi, I have a small problem. I'm trying to work with global variables. I have a GV set by an expert. This GV = 50 (the right value appears in the Global Variables when I go to the tools - global variables menu). When I call this GV with an another expert, the expert is importing the following value
i discovered that after programming a scalper EA in mt4,it does wonderful in back test but on forward test it doesn't work well pls can someone suggest what i can do,thanks
Hi all, The value of my Comment doesn't change once it is initialized. I"m sure it has something to do with the docs below, but I'm not 100% sure because the Comment does initialize and show the value exactly 1 time then it's static from there on. From the docs. Please describe "Arrays cannot be...
Hi all, how can I determine the first H4 bar of the day ? I'm trading on H4 timeframe and need to analyze some indicators at the first H4 bar of the day. Help is appreciated. JoDax.
If I am posting in the wrong area Please let me know where the correct area would be. I have searched everywhere for an indicator that will place a horizontal line at the previous candles open close MID Point and no luck. And no the moving average set to 1 and H/L/2 is not what I want does anyone...
Hi please help. Below is a test code for placing arrows and sending e-mails based on two conditions. When attached to a chart, it backfills when conditions are met. This is intentional. I am unable to limit the e-mails to one per bar when the conditions are met. I am currently trying to use...
  Currency indices  (2)
Is there a reference for Currency indices?
  Leverage  (4)
How to change laberage in my signal  acoutI was change lavarage in my acount fbs but in my signal acount not be change
Hello guys! I have an issue regarding an EA I recently coded. I detected that sometimes it freezes the mt4 platform and I have to restart it or wait until it responses. I manage to identify that the function that was causing the issue is this one: void checkForMods()  {   uint...
When I trade in MT4, I scale out. When I reach my TP1 and close half, it does not show as profit gained in my account; instead, it is showing as a deposit. I am trading with IG. Any suggestions on how to fix?
Hi I use 3 tiled windows. This didn't happen before. Each time I placed an order, the chart window that I used to place the order auto zooms out and I have to again press tile windows button to get my 3 windows setup. I've deleted custom EAs and indicators too. What might be the problem and how can...
Need help in writing icustom function for this indicator to produce sell and buy signal
Hey all, I execute my orders in my EA as such. stopLoss = low*0.9975; OrderSend(Symbol(),OP_BUY,0.1,Ask,Slippage,stopLoss,NULL); All the trailing stop examples I find online deal in fixed pips where as I am dealing in a dynamic price. Is there anyway to enable trailing stop-like behavior
guys someone help me please, I need a function to stop sending pending orders at specified time for example I need to stop @ 20.00
Hello,  This is an old // coded by hirdes, Chemnitz, Germany, 07.2019              extern double LongEntry=0.00;extern double ShortEntry=0.00;extern int hour=8;extern int minute=00;extern int Account=0;extern double Lots=1.0;extern int Slippage=2;extern int StopLoss=200;extern int...