Something interesting, old thread - page 43

 

Renko line break

Renko line break indicator for metatrader 5

 

We don*t have any indicator width Dynamic zone for MT5 ?

 

All these Indicator are dynamic zone versions for metatrader 5 and tradestation

corinali:
We don*t have any indicator width Dynamic zone for MT5 ?
 

Trend continuation

Trend continuation indicator for metatrader 5

smoothalgorithms.mqh
 
mladen:
Renko line break indicator for metatrader 5

Mladen, Is that screenshot with default settings ? Thanks.

 

airquest

Yes, 1 hour EURUSD with default settings (nothing changed in the parameters)

airquest:
Mladen, Is that screenshot with default settings ? Thanks.
 

Thanks, I was asking because it don't get me that spike on 25th of february 3pm. must be broker difference.

 

rsioma

rsioma (rsi of moving average) version by kalenzo

Files:
rsioma.mq5  5 kb
rsioma.png  89 kb
 

Super trend

A version of super trend that uses CCI and ATR for trend determination (there is a version that does not use CCI in calculation too, but this one uses CCI as sort of a main trend determination) In combination of the 2, the current trend is calculated.

Also, in this version there is one deviation that is usually not used in super trend calculation : the ATR multiplier. With atr multiplier you can additionally control the "speed" of the indicator. Here is the same example as above but with ATR multiplier set to 0.3

 

Hashing function for metatrader 5

This is not an indicator, nor a an Ea nor a script. This is a 128-bit hashing function as described here : Hash function - Wikipedia, the free encyclopedia . With a little bit of imagination it can be used to protect ones own work from changes (hacking). Authot : sergeev.

Example by the author :

#include

CMD5Hash md5;

string str="Now it is easy to control MQL5 data integrity!";

uchar bytes[]; StringToCharArray(str, bytes, 0, StringLen(str)); // transferred string to the byte array // without the last one\0

Print(md5.Hash(bytes, ArraySize(bytes))); // print MD5-hash

Files:
md5hash.mqh  9 kb
Reason: