- Search Forex Factory
- 670 Results (3 Threads , 667 Replies )
- lghr replied Jun 10, 2022
We'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, 2022
Hi,friend. This method is very interesting and simple, please continue. url
Strategy Development
- lghr replied May 19, 2022
It might be better if you changed EventSetMillisecondTimer() to EventSetTimer().
ZigZag 3 Windows
- lghr replied May 8, 2022
This 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, 2021
So 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, 2020
It's nothing. It's just a 2MA crossing reminder.
I will code your EAs and Indicators for no charge
- lghr replied Jul 1, 2020
You 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
- lghr replied Jul 1, 2020
if(RSIvalue > 80 && OrdersTotal() == 0 && Bid <= LowOfCandleBeforeRSITrigger) { OrderSend(_Symbol,OP_SELL,1,Bid,5,StopLossForSell,TakeProfitForSell,NULL,0,0,Red); } else if(RSIvalue < 20 && OrdersTotal() == 0 && Bid >= HighOfCandleBeforeRSITrigger) ...
I will code your EAs and Indicators for no charge
- lghr replied Jul 1, 2020
I think it's because your narrative is not clear enough, or coder don't think it's profitable.
I will code your EAs and Indicators for no charge
- lghr replied Jun 15, 2020
I think, it should be so: barHigh = iHigh(Symbol(),0,iHighest(Symbol(),0,MODE_HIGH,iBarsBack,1)); barLow = iLow(Symbol(),0,iLowest(Symbol(),0,MODE_LOW,iBarsBack,1));
I will code your EAs and Indicators for no charge
- lghr replied Jun 8, 2020
Your description is not clear. According to my understanding, it can be solved with global variable function.
I will code your EAs and Indicators for no charge
- lghr replied Jun 2, 2020
It maybe better using D1 H4 H1 M15, i think.
I will code your EAs and Indicators for no charge
- lghr replied Jun 2, 2020
I have coded the EA, but opened position is too less,。It doesn't make much sense。
I will code your EAs and Indicators for no charge