Shanmugi / Publications
Forum
How to use Predefined Indicator for MultiPair EA?
fRSI(SelectedSymbol, PERIOD_CURRENT , 14 , PRICE_CLOSE , 0 ); double fRSI( string sy, ENUM_TIMEFRAMES SelectedTimeFrame, int period, ENUM_APPLIED_PRICE applied_price, int shift) { double buf[ 1 ]; int handle= iRSI (sy,SelectedTimeFrame,period,applied_price); if (handle< 0 ) {
Reversal Strategy - How to define StopLoss
Hello, I am using simple RSI + BollingerBands to find reversal and take a trade. i am not using any Take Profit or StopLoss defined directly in Order or defined in Point/Pips instead i am using Indicator to calculate When to close trade in profit (Take Profit similar) but the problem is i am
MT5 Strategy Tester using only one core and Testing is very slow
Hello, MT5 Testing takes 2-3 hours for testing 1 year timeframe even when my EA code is fully optimized and have good config computer. I noticed it only using single core. How to make it use multiple core and make the test faster
Manual ATR function vs inBuilt iATR
I purchased a EA. it is based on ATR but when i reviewed the code, there is no iATR function. it have double fATR( string sy, ENUM_TIMEFRAMES tf, int ATRper, int shift) { double atrBuf[]; ArrayResize (atrBuf,ATRper+shift+ 1 ); int i=ATRper+shift; while (i>= 0 ) { double high=
Help me understand MT5 BackTest Report
Hello, I am new to MT5. can you help me understand these from backtest. 1. 6 different type of draw-down listed. what it mean and difference? 2. Every Tick vs Every Tick based on real tick
No Shift Option => Changing MQL4 to MQL5.
MQL4 : double iATR ( string symbol, // symbol int timeframe, // timeframe int period, // averaging period int shift // shift ); MQL5 : int iATR ( string symbol, // symbol name ENUM_TIMEFRAMES period, //
Is FreezeLevel is always lesser than StopLevel?
Is FreezeLevel is always lesser than StopLevel? Docs : https://www.mql5.com/en/docs/standardlibrary/tradeclasses/csymbolinfo/csymbolinfofreezelevel https://www.mql5.com/en/docs/standardlibrary/tradeclasses/csymbolinfo/csymbolinfostopslevel
How to contact MQL5.com Support team
Hello, How to contact MQL5.com support team. I tried this https://www.mql5.com/en/contact and it only predefined options and replies. Any Email ID or Way to contact support team