RSIOMA

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
 
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?
 
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
 
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);
}
}
 
I am requesting for an expert advisor based on RSIOMA INDICATOR WHEREBY IT TRADES ALL THE CROSSING in a sequence of buy sell buy sell