MQL4 and MetaTrader 4 - page 724

Is there a simple method of capturing all the names and associated values of chart objects other  than having to iterate through the  ObjectName  and then using ObjectType  & ObjectGet? My aim is to  save the object to datestamped  file(s) before switching templates, after which I can then...
I recently changed to a different broker and found the available currency airs (or symbols) were different. Is there any easy way to :- 1. Access all Symbols from an EA 2. Check the availability of a Symbol from an EA
  Trade manager EA  (1)
Hi, I'm wondering if anyone knows of a trade manager EA (free or paid versions) which provides flexibility around trailing stop loss methods and at what point they are implemented. e.g. I might want my stop loss to be initially moving after I've reached +50 pips at which point it would trail in line...
  Offline behavior  (5)
I have a terminal that has never been connected to an account. The installer was downloaded directly from MetaQuotes, and I skip the account creation screens everytime.  I use the terminal solely for backtesting with pre-downloaded tickdata. The other day I started getting UAC messages about...
Hi, can anyone share with me a working source code to build CONSTANT RANGE BAR charts ? Pseudocode is also accepted, i have no clue how to do it, and I cant find any tutorial on the internet which would explain how CRB charts are constructed. I dont want RENKO CHART, there is a difference, I want...
So there is a problem. I open an order, and while order close parameters do not trigger, EA does not open another order. If i put orderclose lines in the same text as orderopen, i get  all orders closed at the same date when back test ends. If i put more than 0 in calculate current orders function,...
I don't know if you can tell or not, I'm not a computer person.  I'm explaining my problem the best way I know how.  When I open up my mt4 platform the chart goes behind the market and navigator charts. I've tried everything I know but I can't find anything on how to make the chart fit into the...
Hello I have code it for two positions (other is for hedging). But I need trailing stop two position(one magic number) all. Is there any code about trailing?  
[Deleted]
as it is seen demo signals are not showcase anymore in mql4/mql5 sites.i feel this is very bad because now metaquotes seems to want to only attract experience traders to visit thier site and not amateurs traders!whats so wrong with demo trading and demo signals before one get some good experience to...
[Deleted]
some difficulty here!standard indicators values in different timeframe can be easily displayed as a row or column but seems impossible with custom indicator called using icustom function.what are the conditions?can anyone clarify please?
[Deleted]
  Export to MQL4  (3)
I have (OHLC) data from a stock and want to export the excel file to meta trader to see its behaviour. How can I do it please?  Thanks  
Hi all, in order to receive alerts (notification alert) from system, I want to automatically declare alerts and automatically update the list of allerts. update list of alerts means that the list of alerts will follow the open orders and for each order there will be an alerts that will be opened...
Hello guy, how can I catch the time between two prices ? That's how I am trying:   if(check == true && OrdersTotal()==0){    static double firstPrice;   static bool firstTest = false;   static bool secondTest = false;      if(firstTest == false)   {   firstPrice = Ask;   //here I want to catch the...
[Deleted]
  Error 129/130 help  (12   1 2)
void LOAD_PENDING_TRADES(){     // Get signal  string signal = HTTP_GET(StringConcatenate("http://example.com/api/getTrades?act=", fx_account_no));    if(signal != "NONE" && signal != "INVALID_ACCOUNT")  {       ushort separator = StringGetCharacter(":", 0);     string result[];          // Retrieve...
the question in simple words is? how can i get the scale of the 1:2 gann fan through geometry, through mql4,, through gann principle through any thing please help me,, thanks in advance
Is there anyone who will help me with making an indicator to show me the account stats in the chart window? I need an indicator that can show the following things: Margin level percent: Drawdown: 100 / ((free margin / balance) x 100) Free Margin: Equity: Account Balance: Total sell lots: Total buy...
[Deleted]
//+------------------------------------------------------------------+ //| Proba.mq4 | //| Copyright 2014, MetaQuotes Software Corp. | //| https://www.mql5.com | //+------------------------------------------------------------------+
  Hey scalpers!!!  (3)
How do you decide memory allocation on mql scalping EA? How do you use other indicator on M1 chart for EA?
Hi, I would like to ask if you have an idea on how to detect on an EA whether a trade is activated on StopLoss or TakeProfit.   Thanks.    
https://www.mediafire.com/?3msr6cwsnd114v5 I want to know at Bar i the indicator is Red, Lime or Gray Anybody help me!
  Build 738 error  (4)
Access violation read to 0x00000000 Different EA's and indicators that were working perfectly in Build 737 are not starting now anyone is experiencing the same issue?
Hello guys, Just created an a EA and got a confusion on myself what period of backtesting should i chose for H1 and M15 time-frame trades(as parameters are different for 1M and 3M backtesting results) ? And how occasionally you are reviewing the results and adjusting yours EA? Cheers, V 
Bye bye MetaTrader 4! MONEX Group formally announces phase-out Please read the link below and explain if this is true or not. If it is true then what does it mean to the traders who are using MeatTrader 4? http://leaprate.com/2014/10/bye-bye-metatrader-4-monex-group-formally-announces-phase-out/ TIA
[Deleted]
Hi, I'm creating an EA that uses the: -Stochastics (Main line); -SMA21 on Stochastics ("First Indicators Data"), to generate signals. The problem is that the  "SMA21 on Stochastics" always return 0 , why ?   Here's an extract of the code: int start() {    if(!IsBarClosed(0, true)) return(0);...
//| Script program start function                                    |//+------------------------------------------------------------------+ //+------------------------------------------------------------------+void OnStart()  {//---  long currChart,prevChart=ChartFirst();   int i=0,limit=100;...
All, I have traded manually for just over a year now and have come up with a few strategies that have started to work and then succumbed to my lack of discipline. In order to counter that I have gone through the MQL4 book and am trying to learn to code an EA with parameters I can adjust and test....
Has anyone implemented Hashlists or Sets in the new MQL4? Traditional data structures - would love tomsee the code!
  OBJ_HLINE . . .  (8)
I've modified the code found here - https://docs.mql4.com/constants/objectconstants/enum_object/obj_hline And, I've successfully increased the width of the horizontal line to 20 I can move it where I wish on the chart. I'm trying to create horizontal lines at the places where Market Profile shows...
Hi, there I am creating new EA and adding just simple lines:   double sm1a=iStochastic(NULL,Period(),5,3,3,MODE_SMA,0,MODE_SIGNAL,2);   printf("STOCH   ",sm1a);  When i put that one into my chart and go to experts tab each time the bar closes i see word STOCH, but there is no value next to it....