giorgenio

Active Trader
Mar 8, 2010
9
0
37
Dynamic Momentum Index

Hi,
I am struggling to find this indicator based on Chande's theory, for MT4 there is nothing, for other platforms instead it is possible to have.
Is there any limitation on the code such as MT4 cannot handle it?
It is also strange that in the MT4 community nobody tried to implement it.

Do you have an answer? Can you suggest me the code at least?

Thank you
G.enio
Switzerland
 

Enivid

Administrator
Staff member
Nov 30, 2008
19,036
1,464
144
Odesa
www.earnforex.com
Hi,
I am struggling to find this indicator based on Chande's theory, for MT4 there is nothing, for other platforms instead it is possible to have.
Is there any limitation on the code such as MT4 cannot handle it?
It is also strange that in the MT4 community nobody tried to implement it.

Do you have an answer? Can you suggest me the code at least?

Thank you
G.enio
Switzerland
Handle what? And what does it have to do with RSIOMA indicator?
 

Impactnik

Trader
Oct 21, 2022
1
0
6
37
I would like to have a dashboard and an EA based on this indicator
Post automatically merged:

I would like to have a dashboard and an EA based on this indicator
 

timothysim

Newbie
May 1, 2024
2
0
2
33
I get an "array out of range" when I use the RSIOMA indicator in the strategy tester. Is there a bug in the code?
 

timothysim

Newbie
May 1, 2024
2
0
2
33
I'm testing in MT4. Anyway, I solved the problem by checking for bars before drawing the line as shown below.
Thanks for a great indicator!
void drawLine(const double lvl, const string name, const color Col)
{
if (Bars > 0) { //Prevent array out of range
ObjectDelete(name);
ObjectCreate(name, OBJ_HLINE, WindowFind(short_name), Time[0], lvl, Time[0], lvl);
ObjectSet(name, OBJPROP_STYLE, STYLE_DOT);
ObjectSet(name, OBJPROP_COLOR, Col);
ObjectSet(name, OBJPROP_WIDTH, 1);
ObjectSet(name, OBJPROP_SELECTABLE, false);
}
}