- Search Metals Mine
- nwesterhuijs replied May 22, 2018
Check if it compiles. Currently it uses the following rules: if Time[0] all > 80: Change Color to Red, Symbol change to angled Arrow Down if Time[1] all > 80 and Time[0] one of the Stochs drops below 80: Change Color to Red, Symbol Change to Arrow ...
I will code your EAs and Indicators for no charge
- nwesterhuijs replied May 21, 2018
Try if this works for you: ----------------------------------------------------------------- int dx = 2; int dy = 5; for(int i = 0; i <= 10; i ++) { string test="Account Info " + i; if(MathMod(i,3)==1) { dy = dy + 15; } //if(MathMod(i,3)==1) ...
I will code your EAs and Indicators for no charge
- nwesterhuijs replied May 15, 2018
Grids/Martingale can be dangerous, but if you put "Multiplier" to 1 it will keep the same size throughout a grid run. Will likely impact its performance and its ability to get out of a tough spot. Generally if you want to run these type of strats ...
I will code your EAs and Indicators for no charge
- nwesterhuijs replied May 14, 2018
Not my EA and rather than tinkering with this one you might want to check "Multi purpose trade manager.mq4" at url made by Steve Hopwood. ONE CLICK could be used on one chart to open orders and this one can be run on a secondary chart to manage ...
I will code your EAs and Indicators for no charge
- nwesterhuijs replied May 13, 2018
Mladen made something that might fit the bill: url
I will code your EAs and Indicators for no charge
- nwesterhuijs replied May 8, 2018
Does this fit the bill: url
I will code your EAs and Indicators for no charge
- nwesterhuijs replied May 6, 2018
Inserted this: #property indicator_level1 30.0 #property indicator_level2 70.0 #property indicator_levelcolor clrRed #property indicator_levelstyle STYLE_SOLID Below: #property indicator_buffers 2 Sorry for some reason can't attach a file. You will ...
I will code your EAs and Indicators for no charge
- nwesterhuijs replied Apr 26, 2018
Average_Slope_Histogram_02 does what the ProReal code is doing and it uses AllAverages_v3.1 for averages. Have a play around with it. A zoom-factor has been defined, since with large averages the differences are relatively small and need enhancing. ...
I will code your EAs and Indicators for no charge
- nwesterhuijs replied Apr 24, 2018
Follow the link below and check out the "Multi-purpose trade manager" url
I will code your EAs and Indicators for no charge
- nwesterhuijs replied Apr 23, 2018
Try this one from Steve Hopwood: file
I will code your EAs and Indicators for no charge
- nwesterhuijs replied Apr 22, 2018
Check where in the code it actually calls the iMA function. The part that you are replacing is a call to a function defined elsewhere in the code called SimpleMA. Most likely in SimpleMA it calls iMA and this is where you need to put your icustom ...
I will code your EAs and Indicators for no charge
- nwesterhuijs replied Apr 18, 2018
You are aware it draws the arrows and dots with a 3 bar delay?
I will code your EAs and Indicators for no charge
- nwesterhuijs replied Apr 17, 2018
file Now on 2 lines and they each have their own definition of where to put them on your screen (assuming it compiles).
I will code your EAs and Indicators for no charge
- nwesterhuijs replied Apr 16, 2018
file Check if it compiles and works in line with expectation
I will code your EAs and Indicators for no charge
- nwesterhuijs replied Apr 9, 2018
replace: if(bar_index!=1) return; by // if(bar_index!=1) return; and see if it improves. This line is in 2 times
I will code your EAs and Indicators for no charge