MisterH
MisterH
MisterH
Left feedback to developer for job Mql4 zig zag non-repainting on close
MisterH
Registered at MQL5.community
MisterH
Added topic nrp zig zag on close
Hi, I'm looking for a non-repainting version of the zig zag indicator (it doesn't draw the last leg: that's why it does not "repaint") calculated only on the close, not the high and low (like the standard version)
MisterH
Added topic zig zag on close, not high/low
Hi, does anybody have the classic zig zag indicator, but instead of using the high and low, using just the close
MisterH
Added topic 2 buffers with different scale, don't draw 1st, but 2nd is calculated on 1st.
Say you have an indicator with 2 buffers, the 2nd one is calculated on the 1st. The scale of the first is much larger and you're not interested in displaying its values. So you could use #property indicator_maximum but that's not good because the
MisterH
Added topic most simple multi-color indicator
Hi, Is it possible to give me a very, very simple example of an indicator that gives a green color when it's rising and red when it's going down: let's say on this buffer: ma[i]=iMA(0,0,10,0,2,0,i); I realize it will need at least 3 buffers: 1 for
MisterH
Added topic number of bars since the last zig-zag swing
I'm looking for other ways to define cycle length to dynamically adjust indicator values, and because DFT, Goertzel, Corona, MESA, .. don't really do it for me I thought of a more simple idea: if you take the zigzag indicator (that shows you the
MisterH
Added topic Hodrick-Prescott calculated on close
Hi, I have a custom indicator called the Hodrick-Prescott filter, but it's not a "normal" one: normally this filter recalculates the past, but this one, if you do a visual-mode backtest with an empty EA, and you put it on the chart, it
MisterH
Added topic How to use output of 1 indicator as input for another indicator
Hi, how do I use the value of 1 indicator as 1 of the inputs for another indicator? I have MathRound (iCustom(Symbol(),0,"second one",0,i)) and would like to place this value in my code. Should I use global variables
MisterH
Added topic Buffer on buffer ?
Can somebody please show me an example of how he/she used a buffer on a different buffer? so not the -standard- buffer on price case
MisterH
Added topic custom indicator on custom indicator ??
so if you have made a custom indicator, and at the end of your code file you have . . . Buffer[i] = something; } return(0); } But instead of applying this Buffer[i] on price bars, you want to calculate it on the values of a different iCustom
MisterH
Added topic iCustom on iCustom? like iMAOnArray? no iCustomOnArray...
Hi, could someone pls show me a full, simple code example where he used a custom indicator on a custom indicator? Is it simply instead of PRICE_CLOSE, the name of the buffer e.g. firstiCustom_buffer[]? Or do I have to work with Arrays like this
MisterH
Added topic window / number of trades to evaluate performance of a system?
I'm looking for ideas on how to decide what the appropriate size would be of the window to evaluate the dynamic performance of a system on. - One idea would simply be to take the last 20 trades and run your statistics on that to decide whether the
MisterH
Added topic UDX: USD index
Which broker has USD index as a ccy pair? The custom indicators that were posted (to construct your own based on the individual pairs with their respective weights in the index) on this forum do not work. Is there a way to simply display candles from
MisterH
Added topic indicator background color
How do you change the background color of a custom indicator (in a separate window), so not on the chart? Many have asked similar questions on here, but this one's never answerred
MisterH
Added topic who can trace the zero-divide error?
This is the code of the most wide-spread inverse Fisher transform of RSI: There is a zero-divide error in it that pops up every now and then. I don't see it, maybe you do? //+------------------------------------------------------------------+ //|
MisterH
Added topic range over the last 1000 bars?
so if you want to use the average range of the last 1000 bars of the current chart: sum(high-low)/n, how would you code this to use as a variable in your code? This would need to be adapted somehow.. for(int i=0; i<limit; i++) { CurrentHigh =
MisterH
Added topic 3 equal conditions, which type of loop?
so if you have an indicator that is made of other ( iCustom ) indi's signals, A,B & C, which are boolean (only 1/0 values). And I want this for result, which type of loop should I use If none of the 3 (A,B,C) is =1 and all 3 are = 0 then result