Watch how to download trading robots for free
Find us on Facebook!
Join our fan page
Interesting script?
So post a link to it -
let others appraise it
You liked the script? Try it in the MetaTrader 5 terminal
Libraries

SHA512 + HMAC - library for MetaTrader 5

Views:
4596
Rating:
(37)
Published:
2017.05.29 15:49
SHA512.mq5 (16.03 KB) view
Need a robot or indicator based on this code? Order it on Freelance Go to Freelance

The SHA512 class was ported from http://www.zedwood.com/article/cpp-sha512-function

HMAC functions were ported from https://en.wikipedia.org/wiki/Hash-based_message_authentication_code

Use example (tested on http://www.freeformatter.com/hmac-generator.html)

void OnStart()
{
        string in="Thanks for using!";
        string out=SHA512::sha512(in);
        Print("sha512('", in, "'): ", out);
        
        string key="hash_key";
        out=SHA512::hmac(in, key);
        Print("hmac-sha512: ", out);
}

OUTPUT
sha512('Thanks for using!'): efa2046d83de5504f28fc95e470e726f7f26f4a53475c516759a109a1553850e0836d1fb7a6ff54d27fa816e4ef8f93b6c63c8a133b3a39a8218313a506b870e
hmac-sha512: 61d45921efeb4fe22dc7f4afb393ddfc5603a5b1775cb377d0428d40fb49a8be89c606d89b3489a848105f67feeb329a7cda029d3b9b5f412436f87c016d83ed




--------------

Please leave a feedback and tell how you are using this class!

Translated from Russian by MetaQuotes Ltd.
Original code: https://www.mql5.com/ru/code/18158

Total_Power_Indicator_Signal Total_Power_Indicator_Signal

Total Power Indicator in the semaphore-arrow form, generating alerts and sending emails and push notifications.

TotalPowerIndicatorX TotalPowerIndicatorX

Total Power Indicator, in which values are fixed in the range from zero to one hundred.

Exp_Kolier_SuperTrend_X2 Exp_Kolier_SuperTrend_X2

This is a trend trading system based on the signals of two Kolier_SuperTrend indicators.

Statistics Statistics

Analyzes bars whose opening time (hour and minute) is equal to the current bar opening time.