Lesson 9 Buy sell stop Order – EA MetaTrader 5

Lesson 9 Buy sell stop Order - expert for MetaTrader 5
I. Main function 1. Using condition buy or sell base on price action. 2. Auto caculate lot size 3. Auto trailling stop by ATR. 4. Backtest result II. Main tick function //+——————————————————————+ //| Expert tick function                                             | //+——————————————————————+ void OnTick() {    if(OpenBar(Symbol()))    {    OrderManaging(); // Candle declaration double High[],Low[],open[],close[]; ArraySetAsSeries(High,true);ArraySetAsSeries(Low,true);ArraySetAsSeries(close,true);ArraySetAsSeries(open,true); CopyHigh(Symbol(),timeframe,0,1000,High); CopyLow(Symbol(),timeframe,0,1000,Low); … Read more

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); // … Read more

Lesson 2_ Trading RSI Pattern Confirmation two Bottom – EA MetaTrader 5

Lesson 2_ Trading RSI Pattern Confirmation two Bottom - 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 … Read more

Lesson 3_Price Action – EA MetaTrader 5

Lesson 3_Price Action - 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 … Read more

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 … Read more