Elite indicators - metatrader 5 version :) - page 73

 
john1981:

hi mladen

how do i work with your indicator ( StepMA of rsi adaptive ema 2.7.mql4).

If an indicator is needed to be added, please write here.

best regards

Nothing else needed - that is mt4 version
 

hi mladen please convert your indicator to mt5


The most important is to show the same data as for mt4 without slowing down the terminal too much. Nobody was able to help, hope for your help.


 

Forum on trading, automated trading systems and testing trading strategies



Welcome,

  • Usually people who can't code don't receive free help on this forum, though it could happen if you are lucky, be patient.
  • If you show your attempts and describe well your problem, you will most probably receive an answer from the community.
  • If you don't want to learn to code, nothing bad, you can either look at the Codebase if something free already exists, or in the Market for paid products (sometimes free also).
  • Finally, you also have the option to hire a programmer in the Freelance section.

Good luck.


 
HI, MLADEN PLEASE CONVERT THE INDICATOR BELOW INTO MQL5 PLEASE...
Files:
 
ekmanso:
HI, MLADEN PLEASE CONVERT THE INDICATOR BELOW INTO MQL5 PLEASE...

Forum on trading, automated trading systems and testing trading strategies



Welcome,

  • Usually people who can't code don't receive free help on this forum, though it could happen if you are lucky, be patient.
  • If you show your attempts and describe well your problem, you will most probably receive an answer from the community.
  • If you don't want to learn to code, nothing bad, you can either look at the Codebase if something free already exists, or in the Market for paid products (sometimes free also).
  • Finally, you also have the option to hire a programmer in the Freelance section.

Good luck.


 

hi Mr Mladen

do you have non repaint ( Vertex_mod) indicator?

best regards.

 
john1981:

hi Mr Mladen

do you have non repaint ( Vertex_mod) indicator?

best regards.

No. Did not bother with cleaning that indicator

But isn't this mt5 thread?

 
Mladen Rakic:

No. Did not bother with cleaning that indicator

But isn't this mt5 thread?


dear mladen,

   could u please convert this mt4 indicator for mt5..

 
Mladen Rakic:

No. Did not bother with cleaning that indicator

But isn't this mt5 thread?

      dear mladen,

                            this piece of code does not work in MT5..may be the problem is with ArraySize or ArrayResize . could u please correct it and clarify it.

     

                                 int g,TOTAL,COUNT[],rak;

                LOWEST = iLow(NULL,0,iLowest(NULL,0,MODE_LOW,lookback,0)-(100*(SymbolInfoDouble(NULL,SYMBOL_POINT))));
HIGHEST = iHigh(NULL,0,iHighest(NULL,0,MODE_HIGH,lookback,0)+(100*(SymbolInfoDouble(NULL,SYMBOL_POINT))));
//Comment(HIGHEST);
rak = (HIGHEST - LOWEST)/(SymbolInfoDouble(NULL,SYMBOL_POINT));
ArrayResize(COUNT, rak);
          
      TOTAL = ArraySize(COUNT);
          Comment(TOTAL); 
 
rashme:

      dear mladen,

                            this piece of code does not work in MT5..may be the problem is with ArraySize or ArrayResize . could u please correct it and clarify it.

     

                                 int g,TOTAL,COUNT[],rak;

                LOWEST = iLow(NULL,0,iLowest(NULL,0,MODE_LOW,lookback,0)-(100*(SymbolInfoDouble(NULL,SYMBOL_POINT))));
HIGHEST = iHigh(NULL,0,iHighest(NULL,0,MODE_HIGH,lookback,0)+(100*(SymbolInfoDouble(NULL,SYMBOL_POINT))));
//Comment(HIGHEST);
rak = (HIGHEST - LOWEST)/(SymbolInfoDouble(NULL,SYMBOL_POINT));
ArrayResize(COUNT, rak);
          
      TOTAL = ArraySize(COUNT);
          Comment(TOTAL); 

Not a problem of ArraySize() and ArrayResize()

They are the same in mt4 and mt5

The rest of the code is the problem

Reason: