Technical Indicators - page 83

About me: I have no expirence in market trading and I don't know how price are being calculated, for example: USD/JPY. I heard that these numbers (ex: USD/JPY) are calculated based on The US Dollar index, and Japenes yen index. I want: An indicator that can predict at least the next 60sec movement...
I have some fairly basic test code integrate with the indicator from the market. I am having huge problems getting any data back and would really appreciate any assistance anyone could provide... The code just takes the first buffer and the second bar. I get no errors from the handle or result but...
  platform  (2)
hello,i just opened a demo account and im compleatly lost anyoane knows where i could learn the basics about trading?thank you
I would be very grateful if someone could point out where i'm going wrong with my adding alert attempt. It works, but i'm getting repeating alerts for the same action, i just want the one alert. grrrr thank you kate {{ string Text; // Up Arrow Alert if ((chL_BuferUp[TriggerCandle] > 0) &&
#define PI  3.14159265359#define RadToDeg(x)  (x)*180/PI//--- indicator buffersdouble         lwmadiffsmaBuffer[];double         lwmadiffsmapcBuffer[];double         bbwidthslopeBuffer[];int            BBandPeriod   =20; double GetAngle(datetime time1, double price1, datetime time2, double...
How to change the moving average color parameter in MT4? In MT5 we have DRAW_COLOR_LINE that allows the simple creation of a colorable average, but in MT4 only has DRAW_LINE
  In need of this indicator  (14   1 2)
Hi everyone,  Does someone have this indicator please? It's a trend indicator giving good entry/exit .  Thanks for helping
Hi mates, In this moment I have one function that save all the objects created in a specific time frame in a csv file. This function is called when a user creates / modify / delete an object. And i have another function that can read from the csv and put all the data in the chart. This function is...
#property indicator_buffers 3//---Indicator Colours#property indicator_color1 clrGreen//up arrow#property indicator_color2 clrRed//down arrow#property indicator_color3 clrRed//HMA//---Indicator Width#property indicator_width1 2#property indicator_width2 2#include <WinUser32.mqh>extern bool...
So I want to code the Moving Average of TDI's MA difference and I'm at my wit's end right now. This is my code //----- Global Variablesdouble   gdaRSI[]       ;double   gdaRSI_Green[] ;double   gdaRSI_Red[]   ;double   TDI_MA[]       ;double   RSI_MA_Diff[]  ;double   MA_of_MA_Diff[];double...
  nth_element  (1)
Hi all! Is there a nth_element function (C++) in MQL5?
Hello, I have been looking in the codebase and over the internet but dont seem to find the mq4 version of this indicator that detects support and resistance. I am attaching the ex4 that I found and a pic of indi on a chart. I would like to build an EA around this indi but I have no idea how to get...
hello all friends has anyone logarithmic moving average indicator , please ? a lot of thanks for your advice
Hi people! Is it possible to build an moving average indicator that "zeroes" it's calculations on period change ? For instance, let's say we are looking live today, but the moving average does not take into account previous day data? Is there already any indicator that does that? How is it possible
Hi mates, I've got a problem with the FileOpen(), I'm triying to read a csv text file, i've got the text error "Error code 5004" I know that this code tell me that metatraer cannot open my file. I've seen another posts and they said that the problem is with the path. But I follow all the...
Just finishing another indicator to share with you on Codebase, but I lost the whole day experimenting, digging, searching, trying to figure out why this behavior is happening. The indicator is a simple one, based on the famous Didi Needles, but I added a threshold to look for the correct "padding"...
Hi Guys! I've one indicator, running both on the DAX30 cfd and on the Dax futures. I'd like to have a version that compares the indicator values between them and give me some information like value discrepancies. Is it possible?  Thanks! Ruben
So I had done four buffers in a sep win histogram and found something your eyes may deceive you to see that the first buffer displays correctly with sharp corners but every histo buffer thereafter, while presented with an empty value on the others, shows to have rounded corners. Look at it with...
Can someone kindly, add an alert to this indicator, Thank you in advance
Hi people! I really do not like MathMedian(), and I rather use the following code to calculate percentile values from a percent rank input. However, I have been unable to code an efficient indicator from it. Can anyone make a indicator that works from it?...
hi  i really appreciate it if anyone can help me to have this indicators that work properly on mt4 build 1090 or any other indicator that i can choose different period for DMI and ADX for example 13 period for DMI and 8 period for ADX. i really need this buddies
Hello guys. I´m looking for an Stochastic indicator with PUSH Alerts but the concept here is if the alerts were when the both lines are crossing at any moment and any level, not only at the 80 , 50 or 20 levels, I want the alert at any moment when the both lines are crossing. Cheers
I need the formula for the Highs/Lows (14). They told me it is the High-Low Indicator and I could find the following information: The High-Low Index is a breadth indicator based on Recor High Percent, which is based on new 52-week highs and new 52-week lows. The Record High Index equals new highs
Hello there, I have created an object type OBJ_ARROW that is shown on the chart using: ObjectCreate(Chart,"Top",OBJ_ARROW,0,Time,Price); So, anyone knows how to set the digits of the number shown when I put the cursor on it? (like figure below) I didn't find anything related to it. Thanks!
Hi all As above, Can I draw on both chart window and separate window at the same time?  for example, if I want to draw my customer indicator on separate window, and also draw arrow on chart window to show buy/sell point, how to do it please? 
so i modified this indicator https://www.mql5.com/en/code/102 but got this error //+------------------------------------------------------------------+//|                                          PivotPointUniversal.mq5 |//|                                               Copyright VDV Soft...
Good Day I'm asking for a help for creating murrey math lines that shows the previous levels before it repaints. The purpose of this is to backtest a strategy using the MML saving yourself from doing live trades for testing that may take a lot of time instead of reviewing the previous levels and...
Hello Folks, this question may be already answered 100ths of times. So pls dont rip my head off. I simply couldnt find an answer. What i want: I want to program an indicator based on any timeframe and then i want this indicator displayed as an overlay on any lower timeframe price chart. Lets say a...
Hi, I was thinking about creating an indicator that identifies abnormal volumes, considering a previous inputs of mean volume by time (ie, each hour would have its mean volume to be compared). Does anybody have something developed in that way? Tks
There's any way to make my Indicator do the Calculation only when the candle closes? My indicator makes calculations for every close value. When I put it to the graphic it's so heavy that seems like the internet is ultra slow. Making calculations for every last price, as for code matter, the last...