Technical Indicators - page 90

I need the original source code for the default MACD indicator for MQL4 as it is not able to be seen in metaquotes  - If someone knows where or how I can get please let me know...
Hey, Declared buffer at the start of program, comes up with error message unexpected token idk how to fix please help attached indicator indicator finds the gradient at close of 3 bars
Hello, i'm here looking for someone who can help me to build this indicator for mt4 based on Hurst Cycle:   Attach the excel file with the data to build this indicator. excel file: https://www.dropbox.com/s/6amwtc275767kp3/hurst.xlsx?dl=0 Can someone help me ? thank you.
Hello everybody, I was wondering if it's possible to change the angle of a bitmap image. I used the center as the anchor point of the image: ObjectSet("Image",OBJPROP_ANCHOR,ANCHOR_CENTER); That seems to work, but when I try to change the angle, nothing happens. I move the image along a MA...
Hi all, perhaps this is the right place..... I'm looking for an EA that every 30/50 minutes looks my open trades and close only those in profit of 20 pips. Do you know a similar EA? thanks
  SMA Combo  (3)
Hi I have built a ea to act on a double SMA crossover however i am looking for some other indicators to try and remove bogus trades to improve my accuracy. I attached a image to show what I mean by bogus trades. Hopefully someone can assist
Hi I thought I had read that the maximum umber of indicator buffers had changed in MQL5, but I can't find what I thought I read. Would someone please clarify what the maximum number of indicator buffers is? Thanks Jellybean
Is there an indicator or script in MT4 that will show me a graph of drawdown in my account. Or a script or indicator that will show me the maximum drawdown. Bob
Hello I made an indicator order on the market on October 22nd. The order provided a lead time of 7 days, and I gave the order to a seller who offered me to realize it in 2-3 days. It is November 11 and the order is still not completed. Whenever I ask him questions, he tells me that the work is...
Hi, Can we draw multiple historgrams in one subwindow of an indicator and then send one of them to back of the other one? how can i send one histogram to back of the other?
Does any one know how to get the current value "Price" of a MA and display it into an " OBJ_EDIT " let say the "MA" is a buffer of an indicator and I want it current price value. have a look at the attached image. I want it price to be displayed into that text box. Thanks, in advance.    double...
I didn´t found a way to change or set de color of a technical indicator (as iMA) not using Custom indicators functions. I can not belive there´s no function to do that directly. Is the use os custom indicators functions the only way to do that? thank you in advance
Does anyone have any range bar indicator/EA's WITH gaps for MT4 build 1090? Thanks in advanced.
how to fill an area between two IndexBuffers like the ichimoku cloud ? a small example can be very helpful (not the entire code)
Hi. I'm not a newbie programmer. But, I'm a serious newbie to mql5 and never did anything with mql4. I am writing an indicator that simply detect engulfing Bull and Bear patterns and then I want to send along the price to an EA. But, I'm having a crazy issue where this thing just keeps spitting out...
Hii friends, Is this indicator making repaint? For reply Thanks in advance
Hi Does anyone have a copy of this script shown in the video? Basically it allows you can maximize / minimize chart windows with a single hotkey.  https://www.youtube.com/watch?v=DVBKxnubqI0&feature=youtu.be It's called Chart_Max_Restore Cheers.
  Future plots  (5)
I need to plot vertically using the EVENT object. Does anyone know how to adapt this to plot price projections in the future space. thanks
Hello all Is it possible to do one Bars count and get mtf prices with a custom indicator? Like making a separate window MTF of a custom indicator; showing arrows. Versus looping Bars 7 times for 7 timeframes. I am not talking about just checking icustom with the period required I am talking about...
Can this be done, if so can someone tell me how?
IF there is a backtrace way to calculate the crossovering price of MACD
Hello, coming from MT4 I'm trying to implement some code in mql5. A) an additional buffer is to be added to an already existing indicator with 3 buffers, to transmit a (buy, sell) condition to an EA. Now in MT4 it works, when changing   #property indicator_buffers from 3 to 4, then adding to...
Hi, I would like to have an indicator that detects, when a Candle has not touched a MA for the first time. Does anyone know a solution?!
in OnCalculate() function close[] refer to current chart for example EURUSD, I need to get close[] value for other Symbol in my indicator. How get other Symbol in OnCalculate() function?
if(iClose(_Symbol,_Period,1)<MA50 && iOpen(_Symbol,_Period,1)<MA50 && iHigh(_Symbol,_Period,1)<MA50 && iLow(_Symbol,_Period,1)<MA50         && iClose(_Symbol,_Period,1)<BBDn && MA5L>BBDn)            {mess_data[k][j]="TM";mess_color[k][j]=clrRed;}      else if(iClose(_Symbol,_Period,1)<MA50 &&...
Is there an indicator that will give me a total of sell orders compared against the total number of buy orders on a level 2 screen? For example, in the attached screen shot I would want to see a total of the entire volume of orders in pink (sell orders) compared against the total volume of orders in...
  Kase indicators  (74   1 2 3 4 5 ... 7 8)
These are indicators from Kase StatWare They have very little in common with the ones posted on the public part of the forum (will post comparison of those too) Wallander will remember the wondering about the 1.92 and 2.08 constants used. Well, these have nothing of a sort
  Hull MA  (136   1 2 3 4 5 ... 13 14)
Hull MA posted by Alp here
I have the trix indicator and I want it to trigger buy and sell signals for my EA. //+------------------------------------------------------------------+//|                                                         TRIX.mq4 |//|                                                          by Raff |...
Hi all, I am new to MQL4, I am creating a simple indicator as most newbies would do - 2 MA cross signal Logic: BUY - > When MA 20 cross MA 50 from below =  arrow up SELL - > When MA 20 cross MA 50 from top =  arrow down Indicator is almost done and is working, but i am getting quite a few...