Basic Library to Create Volume Profiles – library MetaTrader 5

Basic Library to Create Volume Profiles - library for MetaTrader 5
This library provides a few simple public methods to create and plot Volume Profiles: class VolumeProfile   { … public:    void              VolumeProfile(datetime _from, datetime _to);                     ~VolumeProfile() {};    double            GetHVPrice();    void              Plot(); …   }; GetHVPrice returns the price that is related to highest volume in the range. Here is a sample script to instantiate and plot a … Read more

Click on the market chart to create a price alert – indicator MetaTrader 5

Click on the market chart to create a price alert - indicator for MetaTrader 5
This an indicator which understands mouse click and keyboard press, and the purpose is to create alerts at the price that the market has not yet reached. It can be very helpful to be alerted when the price crosses a particular value. It can be used to validate theories in a trading system, or alert … Read more

Create your own neural network predictor easily (example: MA and RSI Predictors) – indicator MetaTrader 4

Create your own neural network predictor easily (example: MA and RSI Predictors) - indicator for MetaTrader 4
Author: gpwr, posted on I simply renamed a few vars in order to make the code easier to read, and created a new proxy function. All the credits must go to gpwr for his much excellent source. The BNN predictor posted by gpwr is a great indicator, but many traders were wondering how to use … Read more

The class to create the ring buffer – library MetaTrader 5

The class to create the ring buffer - library for MetaTrader 5
Description The ring buffer is one of the form of organization to store data. Usually it represents itself finite-length array to the entry where the oldest elements are replaced by the newest data. Thus, there is always access to a certain number of the last data. Mostly used for the asynchronous reading/writing of stream data. … Read more

Attempt to create an Expert Advisor based on the Center of Gravity indicator – EA MetaTrader 4

Attempt to create an Expert Advisor based on the Center of Gravity indicator - expert for MetaTrader 4
Please help me with my idea. The idea has existed for a long time – based on the “Conservative intraday scalping” strategy, but I could not find a suitable indicator in MT4. I found the indicator (Center of Gravity.mq4). Now I am trying to attach it to an EA, but the EA stubbornly refuses to … Read more

Automatic Risk Reward box create – indicator MetaTrader 4

Automatic Risk Reward box create - indicator for MetaTrader 4
This Indicator creates automatically a Risk/Reward Box on you all opened chart base on High, Low price with the old candles. You can use it easily to drag and change size and price to your desire wanted. v1.1: 1. Objects draw every tick. 2. You can attach ind to several charts and Risk/Reward box on … Read more