- Search Energy EXCH
-
jeanlouie replied Jan 22, 2023It would look something like the below, to check if any candle meets that condition- ps not tested bool check_special_bullish_engulfing(int lookback, int e) { //check candle at index e is bullish if(Open[e]<Close[e]){ //check candle at index e ...
I will code your EAs and Indicators for no charge
-
jeanlouie replied Jan 21, 2023An umbrella that only works on the second Tuesday of the month, at 2:30-2:35pm, if the previous day was sunny, is not very useful. Robustness means the ability to remain functional under varying adverse conditions without needing adjustment. eg ma ...
I will code your EAs and Indicators for no charge
-
jeanlouie replied Jan 21, 2023- your code is all over the place, no one is going to go through it all, so how *about you debug it by keeping everything in 1 spot inside ontick, for a buy condition only, and slow down the tester to see whats happening, this should not be much ...
I will code your EAs and Indicators for no charge
-
jeanlouie replied Jan 21, 2023Because you're putting so much focus into a single day, and find it hard to believe how other days have poorer results, then yes.
I will code your EAs and Indicators for no charge
-
jeanlouie replied Jan 21, 2023You need to show an example, it could be doing exactly what you're telling it to, but not what you expect.
I will code your EAs and Indicators for no charge
-
jeanlouie replied Jan 21, 2023Curve fitting to a single day is pointless. You can pick any day you want, and optimize a strategy in hindsight to trade it superbly, but it will be useless for any other day in the past or future. Because it has zero robustness. The setup you ...
I will code your EAs and Indicators for no charge
-
jeanlouie replied Jan 21, 2023Buy orders are opened at the ask and closed on the bid. Sell orders are opened at the bid and closed on the ask. Reset any order condition if its not met.
I will code your EAs and Indicators for no charge
-
jeanlouie replied Jan 20, 2023Added ma filter option, and default arrow codes to arrow heads.
I will code your EAs and Indicators for no charge
-
jeanlouie replied Jan 20, 2023A regular macd does this, the histogram shown is the distance between 2 emas, and the slow ema can be set to 1, which would then just be price. For alerts on distances, it would be the same as alerts on macd levels if the slow ema is 1, so you can ...
I will code your EAs and Indicators for no charge
-
jeanlouie replied Jan 20, 2023When you open a trade you can send a stop loss price with the trade order, this stays until it's removed or modified. Every tick you will check if you're in a trade, if so then check for a condition to close the trade Every tick you will check the ...
I will code your EAs and Indicators for no charge
-
jeanlouie replied Jan 19, 2023Price_line_offset - plots price as a line - vertical offset in points - mtf - styling
I will code your EAs and Indicators for no charge
-
jeanlouie replied Jan 19, 2023Alerts added with live option, alternating arrows only.
I will code your EAs and Indicators for no charge
-
jeanlouie replied Jan 19, 2023Oh I misinterpreted what you said. No to the question above. What you can do instead is load the normal macd, and add an inbuilt ma to it, and select the first indicator's data to apply to. Pic shows regular macd, and another ma applied to first ...
I will code your EAs and Indicators for no charge
-
jeanlouie replied Jan 19, 2023On mql5 market, in mql4 indicators, there is a free product called "macd max", that displays the traditional 2 line macd, and you can pick different ma types for each slow-long-signal lines.
I will code your EAs and Indicators for no charge
-
jeanlouie replied Jan 19, 2023Pay attention to the code blocks cja posted from the documentation, there are simple functions being used. ChartGet/Set//Double/Integer/String() will give you access to what the chart properties are. To easily see what you can get, type in that ...
I will code your EAs and Indicators for no charge
-
jeanlouie replied Jan 16, 2023In short, yes, another indicator will be made that will use the ex4. Post the ex4 and the alert condition.
I will code your EAs and Indicators for no charge
-
jeanlouie replied Jan 16, 2023Popup, push and email alert options.
I will code your EAs and Indicators for no charge
-
jeanlouie replied Jan 16, 2023Engulfing candle? url
I will code your EAs and Indicators for no charge