- Search Metals Mine
- 1,205 Results (1,204 Replies, 1 Comments)
-
BlueRain replied Apr 22, 2020In US, no hedging allowed.. means you can only trade one direction until you have no open position.
I will code your EAs and Indicators for no charge
-
BlueRain replied Apr 22, 2020I went over the code and understood a bit more - now, it is fixed.
I will code your EAs and Indicators for no charge
-
BlueRain replied Apr 22, 2020Changed Range calculation per your request as below: if (waveDirection[i] != waveDirection[i+1]) { Rng = MathAbs( Close[waveChangeBar] - Close[i])/Poin; } But, if you are checking volume, shouldn't check Highest to Lowest of wave as those price ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Apr 21, 2020Ok. Maybe, I misunderstood. Please find new one with range of highest to lowest between wave.
I will code your EAs and Indicators for no charge
-
BlueRain replied Apr 21, 2020can you show me screen shot? mean time, try attached. I added extra check if sum == 0, set to 1 to avoid this devided by 0 error.
I will code your EAs and Indicators for no charge
-
BlueRain replied Apr 21, 2020See attached - fixed. For Pip, I used High to Low as those should include all volume.
I will code your EAs and Indicators for no charge
-
BlueRain replied Apr 21, 2020I confirm it is fixed now.
I will code your EAs and Indicators for no charge
-
BlueRain replied Apr 21, 2020Please follow mntiwana's instruction if that fixes. As of now, there is no horizontal line object ( OBJ_HLINE ) on the chart that this FindTP is looking for at the chart.
I will code your EAs and Indicators for no charge
-
BlueRain replied Apr 21, 2020that is not error, just warning that variable is not used. just delete that tp and warning should go away.
I will code your EAs and Indicators for no charge
-
BlueRain replied Apr 20, 2020What is wrong with this indicator? and what do you expect this function's output? To fix any, you have to provide detailed information. Based on the function, I think it is looking for HLINE and trying to extract price from object. For that you ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Apr 20, 2020this script has this condition: Hour()==Hour_For_Long_Entry && Minute()>=Minute_For_Long_Entry so, if Hour is match and Minute is larger than Minute_For_Long_Entry, it will execute buy order. and set Place_buy to false so it won't buy any more. if ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Apr 20, 2020Basically, EA works this way.. When there is price change, it is called tick and it will run Start() function every time. Since there is no flag to block trade, it will open new trade every time. Not sure how you want to open/close your order but ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Apr 20, 2020in the code, there is variable that sets variable to false so it won't trade any more. if you want more, remove this lines Place_Buy=false; Place_Sell=false; As is now, this will block any future trading. However, if you remove, this will activate ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Apr 20, 2020As far as iCustom, it seems syntax is correct. However, you have to make sure buffer value filled by indicator correctly before you are checking as signal. And, there might be other conditions which EA doesn't handle correctly which prevent entering ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Apr 20, 2020this might work.. #7: TrailingWithPartialClose.mq4 Expert Advisor url You can set percentage to close at TP and enable BE. How This Trailing Stop Forex Expert Advisor Works if you want a trailing stop forex expert advisor that closes partial ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Apr 19, 2020Please place Fisher1.ex4 in the same folder that mntiwana provided.
I will code your EAs and Indicators for no charge
-
BlueRain replied Apr 19, 2020mntiwana, Thanks for pointing this.. I just loaded indicator with Fisher1.ex4 and it seems working fine.
I will code your EAs and Indicators for no charge
-
BlueRain replied Apr 19, 2020there is another thread url they are doing similar one.. partial close thing. This is starting point and you might have to ask to modify. typically, in this FF, it is easier if you bring something and ask to modify providing exactly what you want. ...
Partial Close EA based on SL pips percent
-
BlueRain replied Apr 19, 2020it seems alert is turned off by default. Just enable and it should work. extern bool alertsOn = false; extern bool alertsOnObOs = false; extern bool alertsOnExtremeObOs = true; extern bool alertsOnCurrent = false; extern bool alertsMessage = true; ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Apr 19, 2020this might be a good start. #7: TrailingWithPartialClose.mq4 Expert Advisor url and it has few different types for Trailing. Type 3 - is something you might be interested which has few move / partialpercentage close built in. Type 3 uses up to 3 ...
Partial Close EA based on SL pips percent