Lesson 7 Price action Ket hop Volume VSA – EA MetaTrader 5

Lesson 7 Price action Ket hop Volume VSA - expert for MetaTrader 5
I. Main function 1. Auto caculate lot size 2. Auto trailling ATR 3. Using volume indicator and moving average indicator 4. Condition buy or sell 2. Backtest. II. Main function code 1. Volume indicator declaration //+——————————————————————+ //| Expert initialization function                                   | //+——————————————————————+ int OnInit()   { if(!m_symbol.Name(_Symbol)) return  INIT_FAILED; // Set Trade parameter trade.SetTypeFillingBySymbol(m_symbol.Name()); trade.SetExpertMagicNumber(m_magicnumber); trade.SetDeviationInPoints(Slippage); //

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

Lesson 4 Price Action and MA Filter – EA MetaTrader 5

Lesson 4 Price Action and MA Filter - expert for MetaTrader 5
I. Input parameter: II. Main function: 1.  How to confirm condition entry. 2. Only buy sell at new candle 3. Count position and trailling stop auto. 4. Lotsize is fix at input parameter setup /////////////////////////////////////////////////////////////////////////////////////////////////////////////// Refer information: Link Exness IB Web: Các bạn đăng ký mở tài khoản Exness link IB dưới ủng hộ mình

Code Block for “Trailing Stop” based on current market price. (Ask / Bid) – EA MetaTrader 5

Code Block for "Trailing Stop" based on current market price. (Ask / Bid) - expert for MetaTrader 5
This code block works if you use either a Stop Loss or Not.  Requirements  You need to include “Trade.mqh ” to get access to the CTrade class which allows you to work with positions and orders. #include <Trade\Trade.mqh> // <<—————————————— Include this “Trade.mqh” to access the CTrade Class You need to set an input parameter

Peak Lines by Price Histogram – indicator MetaTrader 5

Peak Lines by Price Histogram
This indicator shows the support/resistance lines using price histogram. The indicator is not so heavy, the calculation was simplified. Display: Gold Line — peaks of a 1-day histogram. Red Line — peaks of a short term histogram. Magenta Line — peaks of a medium term histogram. Blue Line — peaks of a long term histogram.

Next price predictor using Neural Network – indicator MetaTrader 4

Next price predictor using Neural Network - indicator for MetaTrader 4
Autor: gpwr Version History: 06/26/2009 – added a new indicator BPNN Predictor with Smoothing.mq4, in which prices are smoothed using EMA before predictions. 08/20/2009 – corrected the code calculating the neuron activation function to prevent arithmetic exception; updated BPNN.cpp and BPNN.dll 08/21/2009 – added clearing of memory at the end of the DLL execution; updated