- Search Metals Mine
- 678 Results (3 Threads, 675 Replies)
-
lghr replied Dec 16, 2025Yes, at present, I am observing everyone's practical situation. If this system can be profitable and consistent, we can write it as an EA.
40-60 rule, Trader using trendline secret method
-
lghr replied Dec 12, 2025ok,the two is indicator, copy them to ...\\MQL4\Indicators, refresh, then drag the ZZtrendline v1.ex4 to chart.
40-60 rule, Trader using trendline secret method
-
lghr replied Dec 12, 2025Today, I saw that this method was very novel, so I wrote a small tool to facilitate observation - ZZtrendline v1.
40-60 rule, Trader using trendline secret method
-
lghr replied Jul 11, 2024Your username is Reverso, which means you are trading in reverse. Yes, if you handle strong trends well, everything is fine, just like trend trading, you need to handle fluctuations well. In short, the two methods should be unified. In fact, the ...
Perfecting my system (inputs greatly appreciated)
-
lghr replied May 29, 2024The position has now been opened. However, there are still issues with the addition logic and code. OrderType() must be previously selected by the OrderSelect() function。
I will code your EAs and Indicators for no charge
-
lghr replied Sep 5, 2023The method is feasible, daring to take risks, and daring to win.

The result of the adventure of building Trend EA
-
lghr replied Jun 10, 2022We're all here learning from you, and there's nothing to say. I think the correlation of three currencies is a good way to trade. If you have a more specific way of measuring it, we can write a EA.
Strategy Development
-
lghr replied May 21, 2022Hi,friend. This method is very interesting and simple, please continue. url
Strategy Development
-
lghr replied May 19, 2022It might be better if you changed EventSetMillisecondTimer() to EventSetTimer().
ZigZag 3 Windows
-
lghr replied May 8, 2022This method actually uses ZigZag and just takes the z1-z2 phase orientation. ZigZag ZRP only draws z1-z2 when ZigZag appears z0-z1. This can be found in strategy tester, Or read ZigZag ZRP indicator source code directly Therefore, we just use ...
ZigZag 3 Windows
-
lghr replied Jul 24, 2021So far, I've been missing the point with Pivot, and I thought it might be better to add something else.
Intraday Trading using Pivot Point, Support & Resistance
-
lghr replied Jul 4, 2020It's nothing. It's just a 2MA crossing reminder.
I will code your EAs and Indicators for no charge
-
lghr replied Jul 1, 2020You can create custom functions。 bool rsicheck(int cmd) { for(int i=1; i<=4; i++) { double RSI = iRSI (Symbol(),TF,10,PRICE_CLOSE,i); if(cmd==OP_BUY) { if(RSI<20) return true; } if(cmd==OP_SELL) { if(RSI>80) return true; } } return false; }
I will code your EAs and Indicators for no charge