Technical Indicators - page 3

Hey guys hope everyone is doing well. I got a piece of code here trying to create rectangles to cover FVG zones drawiing from the zone itself to the last closed price. As price is moving printing new candles the box is left behind where it loaded. Can anyone assist draw the box to follow price on
Hey Guyz Thanks in advance for the help and advice on where or what I might be able to do to make the RSI+MA overlay!!! I seen an earlier post that sayd to copy one CODE and PASTE the code on to the other CODE. However I tried this and complied the instrument, came back ok however when...
  Oscillators  (47   1 2 3 4 5)
Does anyone have a large collection of oscillators (works best in a trading range) that he/she put together? Maybe we could start a thread where all oscillators are gathered. And let's go a little beyound RSI and Stochastic
Hi, I read that using ArrayCopy on the same array could cause data corruption when the initial source index is lower than the target index, due to the left-to-right copy. I tried, but no data corruption was detected. Can I be sure this won't happen under any circumstances? Here a simple script
  Forecasting indicators  (346   1 2 3 4 5 ... 34 35)
Please find some indicators which are forecasting something. First is i-DRProjections_v.0.1. This indicator shows the support and resistance of current day forecasting on the base of previous day. All the calculation is based on Thomas R. DeMark book "New Science of Technical Analysis".
Does anybody know if this indicator exists for mql5? My guess is that it does not. All I found with that name was some old one from 2012. I know maybe 30 % of mql5. How hard will it be to convert from pinescript to mql5? 186 lines of code is a bit worrying. Edit. My link from tradingview
I want to build a volume profile per candle indicator like the attached picture. This indicator work in mt4 using ticks. Can anyone know the exact step to build this type of indicator
Dear all. I am trying to build Custom indicator base on iBand. After alot of searching I decide to Post here may be someone can help me. Here is the full indicator. //This is MQL5\Indicators\Anhnt\iBand_Display.mq5 #property indicator_chart_window #property indicator_buffers 3 #property
Modern trading platforms store total traded value and total quantity for each time interval. I propose the Capital-Weighted Price (FO) : FO = Total Transaction Value / Total Quantity Request: Display FO alongside OHLC values in candlestick panels. Allow FO as default input for all technical
[Deleted]
Hello, Is it possible for me as an MT5 trader to set up  7 Minute, 8 Minute and 9 Minute charts on my MT5 platform?  If yes, how do I go about doing that? Thank you, PennySeven
I want to move an old indicator to MQL 5 and therefor need iRSIOnArray equivalent. Searched, but couldn't find anything so far. Would someone be so kind to point me to an implementation
Hello All, Whilst browsing for a useful indicator with sorce, I came across the RSISignal - indicator for MetaTrader 4 . As I have my own wrapper for adding logic, I thought I'd port this combined indicator to MQL5. I have been making use of the plethora of open source indicators made available by
Hello Friends! I tried to convert an indicator from MQL4 to MQL5. the indicator named: Swing Cloud and I don't know what is wrong with MQL5 code. In uptrend the cloud should be below the price and in downtrend the cloud should be above the price. Here is on MT4 it print the cloud in the correct
I have programmed my own indicator, whose values are calculated from the price[] buffer. The indicator code contains the line: #property indicator_applied_price PRICE_MEDIAN When I insert the indicator into the chart, I can select the desired applied price on the Parameters tab, based on which the
  Nrtr  (29   1 2 3)
NRTR (Nick Rypock Trailing Reverse). There are a lot of modifications of this indicator for mt3 and mt4 as well. But original idea came from here - see image attached. It was the good trading system in 2001.
Is it absolutely set in stone correctly validated that Elliot Wave 3 is NEVER shorter than wave 1 and 5? Is that what is stated in the official rules for Elliot Waves
  I need help  (6)
This is my first post here. Please forgive me for my weak language. This indicator gives you a signal for the next candle and appears at the end of the candle. I want help with it appearing and disappearing on the same candle it appears on and not after it is closed. Is it possible to help me with
Most custom supertrend indicators available on the market or in the code base for free show the wrong color of the supertrend line under certain conditions. During an uptrend, a red line is shown (should be green); during a downtrend, a green line is shown (should be red). Only after the very last
Moving Averages (MA), Relative Strength Index (RSI), MACD, ATR (Average True Range), Other (specify)
  Fibo & Gann variations  (361   1 2 3 4 5 ... 36 37)
Fibo Levels indicator. Fully forecasting.
  Volatility Quality Index  (721   1 2 3 4 5 ... 72 73)
I am proud of myself with how far I have come with my coding knowledge without any experience and relying only on YouTube and Google for help. I have been trying to convert an indicator from Trading View Pine Script into a MT5 indicator and have learned so much along the way. I have learned how to
Dear Coders and Friends, i made a mt5 indicator ,its not showing buy sell arrows on the chart. Whereas with similar configuration it shows arrows on mt4 chart. i have been using this mt4 indicator since the last 4 years on mt4. What am i doing wrong. Kindly help and rectify. Thanks in advance //---
  Stochastic Oscillator, the beginning  (1294   1 2 3 4 5 ... 129 130)
I tryed to collect everything about one indicator: Stochastic Oscillator. "Technical Analysis from A to Z": OverviewSto.chas.tic (sto kas'tik) adj. 2. Math. designating a process having an infinite progression of jointly distributed random variables. --- Webster's New World Dictionary The Stochastic...
I’m working on an MQL5 custom indicator and I’ve extracted this part of the code to test why the arrows aren’t showing up on the chart. The main logic of the indicator is working as expected, but the plotting is not. Note that this is just a part I extracted from my indicator and I’ve given random
Hi, i have a doubt about reliability of data obtained via CopyBuffer in EA. Considering this example. Let's assume we have a custom indicator where each tick in onCalculate sets 3 buffer: double A[]; double B[]; double C[]; ..... //set buffers in OnInit ..... int onCalculate(....){ //initialize
Please help if anyone has this indicator for mt4
  Currency Strength  (35   1 2 3 4)
hi, it is nice to be introuced to such nice forum which discusses different ideas of trading and systems .. I noticed when surfing the forum that no one is talking about different currencies strength relative to each other.. where I think is Important , When We trade - we some times say we are
Good morning, everyone! I hope you are all well. I am adapting an indicator ( CurrencySlopeStrength ) which, for those who are not familiar with it, behaves similarly to other oscillators, such as RSI, Stochastic , etc. However, I have noticed that the indicator becomes heavy when attached to
How can I get a MACD that's exactly the same as that in TradingView for e.g macd((fast)12, (slow)26, (signal line)9) on close price. The current default in mt5 shows signal line as line and macd as histogram but I want it to appear exactly as in TradingView. Can I download one that's already built