jaffer wilson / Profile
США
Friends
51
Requests
Outgoing
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
Share on social networks · 1
3
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
jaffer wilson
Added topic Strategy Tester issue with iCustom() function.
The Custom indicator repeats multiple times while using strategy tester. See the image of the custom ADX: I don't know why the indicator is getting repeated in the MQL5. I have called this indicator using the iCustom() function. Kindly
jaffer wilson
Added topic iADX throw garbage values on first tick MQL5
I am trying to print the values of the ADX indicator in MQL5. Here is teh code and the output of me test: void OnTick () { int testing = iADX ( _Symbol , PERIOD_M1 , 5 ); double
: