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
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
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
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
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
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
1. Input seting 2. You must store this file in folder Indicator C:\Users\HP\AppData\Roaming\MetaQuotes\Terminal\F762D69EEEA9B4430D7F17C82167C844\MQL5\Indicators\My Files\Donchian_Channel 2. Add code to your EA Donchain chanel price action – indicator MetaTrader 5
The script controls the display of time and price scales for all open charts or only for one chart. It is useful for saving the screen space when displaying several tiled charts. If you display several charts in tiled mode, the time and price scales will take too much space: Here are the same charts … Read more
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
🍪 By using RobotFX website, you agree with the use of cookies and following our terms of service.