Panamamike wrote: How many pairs are you running this on?
All available pairs
Panamamike wrote: How many pairs are you running this on?
What SL/TP are you using? Or are you doing it all manually?fxozgirl wrote:Panamamike wrote: How many pairs are you running this on?
All available pairs
For SL UseRed is Truegustav213 wrote:What SL/TP are you using? Or are you doing it all manually?fxozgirl wrote:Panamamike wrote: How many pairs are you running this on?
All available pairs
fxozgirl wrote: For SL UseRed is True
TP is Breakeven True
BreakevenPips 20
Breakeven Profit 5
Jumping Stop True
Jumping Stop Pips 20
Code: Select all
//if (UseRed) stop = SlowNbTrendMaVal;
if (UseRed)
{
stop = SlowNbTrendMaVal;
if (SlowNbTrendMaVal > NormalizeDouble(price - (MarketInfo(Symbol(), MODE_STOPLEVEL) * Point), Digits)) stop = 0;
}
Code: Select all
//if (UseRed) stop = SlowNbTrendMaVal;
if (UseRed)
{
stop = SlowNbTrendMaVal;
if (SlowNbTrendMaVal < NormalizeDouble(price + (MarketInfo(Symbol(), MODE_STOPLEVEL) * Point), Digits)) stop = 0;
}
grimweasel wrote:I continue to be impressed with this EA. Running on demo it works very well and I can leave it unmonitored for days and days. I adjust my stops based on the weekly levels and just let it run. So far the Dow trade is up £330 - not bad at 0.01 per pip!
It also made light work of the recent Yen weakness and picked up those trades perfectly. Another month or two of testing for stability and I will move to a mico-lot live account with FXCM]
Thanks Steve for a great EA code based on NaningBobs excellent work; this combined with James16 (once complete) is all a trader could want in my view!
Hi,zkucera wrote:Hi Steve,
I know you don't care about INVALID_STOPS error, but I will risk your wrath writing about it. It is regarding TIB EA...
When UseRed=true, stop loss is set to SlowNbTrendMaVal which changes once a day.
------------
Cheers,
Zeljko