- Search Crypto Craft
-
Taiyakixz replied Jul 8, 2010sorry... I modified trailing stop and pending pips. v4.1 - no trailing stop when TrailingStop = 0 - take order immediately when PendingPips = 0 - some error messages changed when order failed no other change
EAs under construction II
-
Taiyakixz replied Jul 8, 2010MetaEditor help -> MQL4community -> Documentation -> Technical indicators -> iRSI set shift
how can I assign previous bar rsi value (learning mt4 language)
-
Taiyakixz replied Jul 8, 2010I agree... I remember old days in this thread. Even geoff mistook GMTOffset and the EA was set wrong start time. When I asked about it, some members thought it as newbie's question and tried to filter it. Eventually wwwild picked up my question then ...
Simple H1 GBPUSD EA
-
Taiyakixz replied Jul 7, 2010Jiva tests with many tf and currency pairs, but I don't know what is currently the best. I wait his reply....
EAs under construction II
-
Taiyakixz replied Jul 6, 2010jiva, can you upload any example .set files which you get good results? Though I made the EA, the strategy is yours. I want to know how your test is going.
EAs under construction II
-
Taiyakixz replied Jul 6, 2010Thank you for testing. What parameter do you use? I think backtest will be faster with ShowComment=false but not so much... Another reason, if you use timeframe not 0 with Use_MA1-5, backtest would be slow...
EAs under construction II
-
Taiyakixz replied Jul 5, 2010welcome to complex ea world.... v4.0 has many parameters, we are looking for good strategy. Please tell us when you find anything. We have to do test with many cases to make ea better...
EAs under construction II
-
Taiyakixz replied Jul 5, 2010same values SMA(10,1) = 1.51237 SMA(10,2) = 1.51245 SMA(10,1) < SMA(10,2) SMA(197,1) = 1.50487 SMA(197,2) = 1.50475 SMA(197,1) > SMA(197,2) Those are obviously sma, not ema.
Simple H1 GBPUSD EA
-
Taiyakixz replied Jul 5, 2010You mean sma value on my screen? This indicator is what I made and didn't upload. But I think those value are the same as yours, though I don't know why your indi shows ema...those are sma values.
Simple H1 GBPUSD EA
-
Taiyakixz replied Jul 3, 2010Thank you. I wanted some hints to start test. This weekend spread is very large, so I will test after market open.
Eas under construction III
-
Taiyakixz replied Jul 2, 2010ExpreCandles=2.... iMagicNumber=532753; GMTOffset=2; TradeStartHour=1; TradeEndHour=24; Lots=1; TakeProfit1=15; TrailingStop1=140; TakeProfit2=1000; TrailingStop2=140; StopLoss=140; PendingPips=25; ExpireCandles=2; DelayOrder2=0; CheckSlope=false; ...
EAs under construction II
-
Taiyakixz replied Jul 2, 2010sorry, iMagicNumber=532753; GMTOffset=2; TradeStartHour=1; TradeEndHour=24; Lots=1; TakeProfit1=15; TrailingStop1=140; TakeProfit2=1000; TrailingStop2=140; StopLoss=140; PendingPips=25; ExpireCandles=1; DelayOrder2=0; CheckSlope=false; ...
EAs under construction II
-
Taiyakixz replied Jul 1, 2010I tried below function, it worked. string ReturnString(int i) { string ln_txt[3] = {"aaa", "bbb", "ccc"}; string ln=ln_txt[i]; return(ln); }
return string value... getting incompatible error