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

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 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

Market Flow Analysis Method (MFAM) Indicator for Price Action – indicator MetaTrader 4

Market Flow Analysis Method (MFAM) Indicator for Price Action - indicator for MetaTrader 4
Description: The concept comes from Market Flow Analysis Method (MFAM) mentioned on by Todd Mitchell (I have no relationship with this website nor Todd Mitchell) The program keeps track of Highest Highs (& Lowest Lows) and also whether there a trend change seems to be taking place. The bold Red & Green indicate the Highest … Read more

Price Action EA – EA MetaTrader 4

PriceAction
An amazing EA that does not use any indicator. Instead, it follows the price action. Tested from 18 August 1995 to 29th January 2014. It has managed to turn $10,000 to 11,958,183.37. Parameters: You can use the default parameters if your balance is $10,000. Change the lot size based on your current balance. Recommended lot … Read more

RAVI (Range Action Verification Index) – indicator MetaTrader 5

Fig.1. The RAVI indicator
Real author: Unknown The indicator represents the relative convergence/divergence of the moving averages of the financial asset, increased a hundred times. It is based on a different principle than the ADX. Chande suggests a 13-week SMA as the basis for the indicator. It represents the quarterly (3 months = 65 working days) sentiments of the … Read more

Alpha Trend Spotter Price Action – indicator MetaTrader 5

Fig1. The Alpha Trend Spotter Price_Action indicator
Real author: Andy Ismail Semaphore signal indicator based on the price action strategy looking for the strongest intraday trend, which can notify about trend change by generating an alert, sending an email or a push notification to a mobile device. //+———————————————-+ //| Indicator input parameters                   | //+———————————————-+ input int iPeriod=3; input uint NumberofBar=1;    //Bar number … Read more