Forum

Understanding MT4 Volume and ATR indicator

Hello, MT4 Volume shows number of Tick per Candle? For example, if volume value is 20 that means 20 times it Tick on the current candle? ATR Indicator shows Price Change difference per Candle? For example, here ATR Period is 14 (Means last 14 Candle) and ATR Value 1.15 (XAUUSD) means 115 Point on

Market Speedometer

Hello, I Built Market Speedometer to check if market speed is high, low or in normal using MT4 Volume (Tick) data and ATR data. Hope this will useful for peoples. if you have any suggestion or fix please let me know. //+------------------------------------------------------------------+ //| Market

Volume Calculator Indicator

Hello, I learned In MT4 and Forex Market volume does not mean total number of Active and Pending Orders but instead it means how many Tick per X time or How much price change per Tick. Is there any indicator which i can use to check Market Volatility and Speed of the market or Which Indicator shows

Using SymbolInfoSessionTrade to avoid trading 6 hours before Market Close and 6 hours After Market Open

Hello, I am trying to avoid 6 hours before market close and 6 hours after market close in my EA. i am using SymbolInfoSessionTrade to get opening and closed time of assets. What mistake i am making? extern int MinuteToAvoid = 360 ; void MarketHoursMonitor() { datetime serverTime = TimeCurrent ();

Close All Trade X hours before MarketClose & Start taking after X hours when market open

Hello, I am trying to achieve two operation, On friday before market close , close all the open trade before X hour and On monday after market open, Start taking new trade after X hour. I am trying like this int MinuteToAvoid = 60 ; void MarketHoursMonitor() { datetime serverTime = TimeCurrent ();

What to use along with OrderSelect? Break, Continue or return?

Hello, what should i use along with OrderSelect? if (! OrderSelect (i, SELECT_BY_POS, MODE_TRADES)) // Ensure order selection is successful return ; if (! OrderSelect (i, SELECT_BY_POS, MODE_TRADES)) // Ensure order selection is successful break ; if (! OrderSelect (i, SELECT_BY_POS

Close All the Old trade except Most X recent Trade

Hello, I want to close all opened or which open trade automatically except 2 most recently opened trade. My code extern int BlindClose = 2 ; void CloseOldOrder( int MagicNumber) { int OldOrderClose_totalOrders = OrdersTotal (); int OldOrderClose_count = 0 ; int

[CODE Help] RSI + BB + MA Indicator

I am trying to make a Indicator based on the RSI + BollingerBands + MA My Indicator doing great job by creating Arrows and Vertical line for Signal when matching the conditions but the problem is it not showing RSI, Bollinger Bands and MA in Chart. Currently it showing like this : I want like this

Sharing My Secret Trend Reversal Strategy with an 80% Win Rate

Hello, I am sharing my strategy, which I am using for manual trading, and I am planning to build an EA based on this strategy soon. This strategy works for all currency pairs and timeframes, but the recommended timeframes are M1, M5, M15, and M30. This strategy is currently giving me an 80% win

How to find trend using Moving Average?

Hello, How can I identify market movements (Uptrend, Downtrend, and Range market) using Moving Averages or any other indicators? Currently, I am using the 200 EMA: If the current price is above the 200 EMA → Uptrend If the current price is below the 200 EMA → Downtrend However, this method gives