MisterH
MisterH
MisterH
Added topic different methods to change the look-back window of indicators to adapt to the cycle in the market in real time
FX is not stationary, it is non-periodic. So it does not make sense to use a constant look-back window on any indicator: they all need to be adaptive to the market. I would suggest to make an overview of all possible ways that the length of the
MisterH
Left feedback to developer for job Code fragment: # of bars since the turning point of a buffer
MisterH
Left feedback to developer for job Number of bars since largest absolute change on a window
MisterH
Left feedback to developer for job Number of bars since last new high or last new low
MisterH
Left feedback to developer for job Number of bars to the left
MisterH
Left feedback to developer for job Zig zag close nrp: fix & count # of bars since last change
MisterH
Left feedback to developer for job Congestion count: custom indicator
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