Blessing 2 - page 5

 

hi fifthelement,

i've trying ur 1st blessing before and i found it's was great.. i've also discuss with my friend about ur ea.. and my friend ask me can this ea read candlestick patern as a entry.. example, when candlestick form a hammer then the EA start open buy.. same goes to sell, when candlestick form a inverted hammer or flag pole, the EA start to sell.. is it possible to be done?? if can, that will be a great EA.. juz my opinion..

 

Great job, FiFtHeLeMeNt...

I will test this new EA....Thank you.

 

I downloaded Blessing 2.9 and ran a backtest (every tick) on GBPUSD 30M and 5M charts from 2008.01.01 to today. Both times, the simulation finished quickly and no trades were entered. I made no changes to the settings.

First, could you post the settings you are using? Have I missed something? What TF should be used?

By the way, the following appears in the Journal:

15:48:15 Blessing_2_MQLCoder_2.9 inputs: lot=0.2; MC=2; RSIUP=60; RSIDOWN=35; Multiplier=1.5; LotInc=0; TimeGrid=2400; GridSet1=25; TP_Set1=50; GridSet2=100; TP_Set2=200; d=5; Set1Count=4; MaxLevel=99; BELevel=99; magic=228776;

15:49:02 TestGenerator: unmatched data error (high value 1.9955 at 2008.03.30 23:00 is not reached from the least timeframe, high price 1.9954 mismatches)

15:49:02 TestGenerator: unmatched data error (low value 1.9914 at 2008.03.30 23:00 is not reached from the least timeframe, low price 1.9929 mismatches)

15:49:02 TestGenerator: unmatched data error (low value 1.9653 at 2008.04.30 11:30 is not reached from the least timeframe, low price 1.9653 mismatches)

15:49:02 TestGenerator: unmatched data error (volume limit 999 at 2008.05.05 14:00 exceeded)

15:49:02 TestGenerator: unmatched data error (high value 1.9705 at 2008.05.21 20:00 is not reached from the least timeframe, high price 1.9692 mismatches)

15:49:02 TestGenerator: unmatched data error (low value 1.9792 at 2008.05.22 22:00 is not reached from the least timeframe, low price 1.9793 mismatches)

 
jimven:
I downloaded Blessing 2.9 and ran a backtest (every tick) on GBPUSD 30M and 5M charts from 2008.01.01 to today. Both times, the simulation finished quickly and no trades were entered. I made no changes to the settings.

First, could you post the settings you are using? Have I missed something? What TF should be used?

By the way, the following appears in the Journal:

15:48:15 Blessing_2_MQLCoder_2.9 inputs: lot=0.2; MC=2; RSIUP=60; RSIDOWN=35; Multiplier=1.5; LotInc=0; TimeGrid=2400; GridSet1=25; TP_Set1=50; GridSet2=100; TP_Set2=200; d=5; Set1Count=4; MaxLevel=99; BELevel=99; magic=228776;

15:49:02 TestGenerator: unmatched data error (high value 1.9955 at 2008.03.30 23:00 is not reached from the least timeframe, high price 1.9954 mismatches)

15:49:02 TestGenerator: unmatched data error (low value 1.9914 at 2008.03.30 23:00 is not reached from the least timeframe, low price 1.9929 mismatches)

15:49:02 TestGenerator: unmatched data error (low value 1.9653 at 2008.04.30 11:30 is not reached from the least timeframe, low price 1.9653 mismatches)

15:49:02 TestGenerator: unmatched data error (volume limit 999 at 2008.05.05 14:00 exceeded)

15:49:02 TestGenerator: unmatched data error (high value 1.9705 at 2008.05.21 20:00 is not reached from the least timeframe, high price 1.9692 mismatches)

15:49:02 TestGenerator: unmatched data error (low value 1.9792 at 2008.05.22 22:00 is not reached from the least timeframe, low price 1.9793 mismatches)

seems a data error in your platform

 

Well, most likely it's because my broker quotes all prices to five decimal places. I tried the simulation on another installation of the platform with similar results. I use build 217. All other programs are functioning normally.

I opened a new demo with FXDD and it worked (prices are quoted to four decimal places). It should be possible to modify the EA to work with my broker's quotes.

 
jimven:
Well, most likely it's because my broker quotes all prices to five decimal places. I tried the simulation on another installation of the platform with similar results. I use build 217. All other programs are functioning normally. I opened a new demo with FXDD and it worked (prices are quoted to four decimal places). It should be possible to modify the EA to work with my broker's quotes.

EA has no problems with 5 decimals , but you have to add 1 zero to all of your settings , for example GridSet1=250 instead on 25 and ...

 

Hi Fifthelements, where i can dowload your blessing v 2.9

Thank you

 
nazarius666:
Hi Fifthelements, where i can dowload your blessing v 2.9 Thank you

on the first post of thread

 

hi FiFtHeLeMeNt

FiFtHeLeMeNt:
on the first post of thread

hi FiFtHeLeMeNt, according to the 2.9 version you attached at the first post, should I change the default setting or the default setting is already suitable to trade??

if I should change the settings, where can I get it?

 
FiFtHeLeMeNt:
EA has no problems with 5 decimals , but you have to add 1 zero to all of your settings , for example GridSet1=250 instead on 25 and ...

Hi FiFtHeLeMeNt,

Why don't you code the Point directly to the right value? Like this, doesn't matter the broker's digits.

I do like this now for all my codings:

sub=StringSubstr(Symbol(), 3, 3);

if(sub == "JPY") point = 0.01;

else point = 0.0001;

Then you replace all "Point" by "point" in your calculation.

Hope that helps.

FerruFx

Reason: