jaffer wilson
jaffer wilson
США
jaffer wilson
Added topic How we can use iVolumes() indcator in Expert?
What is the usage of  iVolumes() in expert adviser? How we can utilize it? 
jaffer wilson
Added topic Not getting any output on the screen for the indicator.
Here is the code of the indicator that I trying. Kindly help me to make it visible with proper result:   #property copyright "Copyright 2016, MetaQuotes Software Corp." #property link       
jaffer wilson
Added topic How to download Metatrader 4?
Whenever I am trying to download the MT4 from the website, it is giving me the MT5 download exe. How I can I get the MT 4 exe that I can work on it. Please suggest
jaffer wilson
Added topic not able to return the value through indicator.
Here is the indicator which is returning the time remaining for the new bar: //+------------------------------------------------------------------+
jaffer wilson
Added topic How I can copy previous Bid or Ask prices?
I have thought that there might be some function that can get me previous Bid or Ask price similar to the one that give OHLC value . But I could not see any such function.    Please let me know how I can get the previous values of the Bid
jaffer wilson
Added topic Close order on close price in MQL5
I am trying to find out a way to close order on the closing price of the current candles. Kindly, guide me how I can do that. I have read about the Ctrade PositionClose() function , but do not know the usage. Can anyone help
jaffer wilson
Added topic Screen shot not taken while testing.
Hello everyone, I am trying to take the snapshot of the chart while I am testing. But the script is not at all working. I could not see anything in the \Files folder. Please help me. Here is the script: #property description "The Expert Advisor
jaffer wilson
Added topic How to improve speed of Strategy Optimization in MT5?
Hello everyone, Please suggest me how I can make optimization process faster on the MT 5 platform. It shows 10000 iterations and my processor working hard to make it faster but could not. It is going something like 2 iteration or 4 iterations
jaffer wilson
Added topic Can I access MetaTester with GPU Farm?
I have seen that my Local Farm Detects the CPU cores and run process on it.    I am working on Deep Learning Indicator. For Deep Learning I am in need of GPU for processing.   I want to know how I can include my GPU core as Local
jaffer wilson
Added topic GPU based optimzation for strategy tester and expert?
Hi guys, I am in a dilemma. Please help me and suggest me.   I am trying to run my strategy and optimize is using the strategy tester . But the process is taking hell lot of time and I want it to get completed as fast as
jaffer wilson
Added topic OpenCL and MQL5 indicator returning garbage values in the output
Here is the code that I have tried for Simple Moving Average . const string cl_src = "__kernel void
jaffer wilson
Added topic How to check if the middle line of bollinger is stable?
How to check if the middle line in Bollinger indicator is some what straight or stable? See the following red circle in the image:   Kindly, let me know
jaffer wilson
Added topic Color getting overlapped in the indicator
I am trying to paint the portions of the graph with Bollinger Bands. But while coloring the graph bands some portions are appearing to be colored with 2 colors or overlapped with colors, See the following image:   See the portion marked with
jaffer wilson
Added topic DLL import not working in MQL5
I am trying to make the MQL4 project to MQL5.   Here is the original version: BPNN Project Here is my DLL code: Code for DLL The error that I am facing is:   2018.04 . 13 15 : 26 : 39.385 2018.03 . 01 00 : 00 : 00   
jaffer wilson
Added topic Is this indicator possible or available?
I had a look at the video of : ..... Is this type of indicator possible? Is there any code available here. Please help me
jaffer wilson
Added topic How to modify the code with Opencl?
Here is the code that I am trying to modify:   #include <MovingAverages.mqh> #property indicator_separate_window #property indicator_buffers 6 #property indicator_plots    3 #property indicator_type1    DRAW_LINE
jaffer wilson
Added topic isNewBar() not producing the right time Stochastic value onTick MQL5
Check this program I am trying to get the values of the  Stochastic #include <Lib CisNewBar.mqh> CisNewBar current_chart; // instance of the CisNewBar class: detect new tick candlestick void OnTick () { if (current_chart.isNewBar() > 0
jaffer wilson
Added topic Getting garbage values from iStochastic function
Here is the code and the output of the Strategy Tester:    void OnInit () { double K[],D[]; int s  = iStochastic ( _Symbol , PERIOD_M1 , 5 , 3 , 3 , MODE_SMA , STO_LOWHIGH ); ArraySetAsSeries (K, true ); CopyBuffer (s, 0 , 0 , 15
jaffer wilson
Added topic How to add GPU in the Agent list?
I am having Titan Xp Graphics card and would like to add it and use it for my strategy testing. Kindly, suggest me what is the best possible way to work it out
jaffer wilson
Added topic Calculate the Stochastic value for previous 3 minutes or more
How I can calculate the previous 3 minutes candles stochastic values? Kindly, let me know