No Loss EA V2 – No Indicator, No Price Action strategy for MetaTrader 4 – EA MetaTrader 4

No Loss EA V2 - No Indicator, No Price Action strategy for MetaTrader 4 - expert for MetaTrader 4
This is the Updated version of NoLoss EA, made even better thanks to the overwhelming support and feedback from our amazing community in the codebase. As most of the indicators available in the market are lagging indicators that provide information after some time. This strategy eliminates the need to rely on indicators, candlestick patterns, chart … Read more

PrevDayLines.mq4 – Draw Previous Day’s High, Low, and Average Price Lines – script MetaTrader 4

PrevDayLines.mq4 - Draw Previous Day's High, Low, and Average Price Lines - script for MetaTrader 4
The PrevDayLines.mq4 script is a tool for MetaTrader 4 that automatically draws three critical price levels from the previous trading day on your chart. These levels include the highest price (Max), the lowest price (Min), and the average price (Avg), providing traders with a clear visual reference for key support and resistance points. The script … 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

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

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

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

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