You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
It is on the first post of this thread to download: https://www.mql5.com/en/forum
Please send me your settings.
Hi Chartwalker,
I admire your great efforts and appreciate that you share your findings to us generously. Please send me your settings.
Thanks.
Blessing 2 v5.2 withStochasticMOD3 is on this post: Fifthelement's EA with Stochastic Indicator and information on Screen for Equity, DD, MaxDD and MaxDD percent.
Thanks to jepm.
Blessing 2 v5.2 withStochasticMOD3.2 is on this post: 2nd confirmation stochastic with time frame parameter as included. Few more display values to the chart (i.e. last open order, lots size).
Blessing 2 v5.2 BBStoch V0.2 is on this post: the version with Locking BE and TrailingStop. Fixed version is on this post.
hi @ all,
i'm trying The CHart Walker Version with hedging modification (don't remember who posted this version) but i get an error after 1 moth.
please see the attechment. maybe soemone can help me....
the ea opens and closes thousends of orders within a second....
the first day, it run fine, but alwasy at the end of januar, it goes
like you can see in the attechment.
i already deleted and re-downloaded the history data ... no change
Blessing on Go-Market
Hi all,
I am wondering why Blessing2 5.2 with Stoch MOD3.2 do not take any trade at all on Go Market. Anyone experienced the same? It runs OK on FXDD and Alpari, why not Go Market?
-RJ1-
Well.
Art of Chart thread is here:
https://www.mql5.com/en/forum
And EA is on he first post of this thread:
https://www.mql5.com/en/forum
hi all,
Here is the key,Blessing is blessing you can't change it.It has large dd,but if you have plenty of money $2500.00 per pair at .01,and have alot of time,dont look at it or touch it,it will make money.
That is a fact cause I have used it for months{12}
Now this may seem to be a little forward but im going to tell you anyway.
I have developed a system that is similiar to blessing in trading styles.
Has has very good success.If you are interested look at the signal
Link: OCD Investments | Rent a Signal
Good luck to you all in the New Year,
Allerius
hi @ all,
i'm trying The CHart Walker Version with hedging modification (don't remember who posted this version) but i get an error after 1 moth.
please see the attechment. maybe soemone can help me....
the ea opens and closes thousends of orders within a second....
the first day, it run fine, but alwasy at the end of januar, it goes
like you can see in the attechment.
i already deleted and re-downloaded the history data ... no changeHi Remaster !
I have made the hedging modification.I 've found an error in the code , it does not delete the limit order properly when it closes a trade in a direction.I don't update the repaired code because the chartrunner was moved to the commercial section and this forum is for the original blessing.
Please find the following in the code :
// Trade Selection Logic
if((countbuy==0) && (countsell==0)){
for(i=0;i<OrdersTotal();i++){
OrderSelect(i,SELECT_BY_POS,MODE_TRADES);
if((OrderMagicNumber()==magic) && (OrderSymbol()==Symbol()) && (OrderLots()>lots))OrderDelete(OrderTicket());
}
replace with this :
if((countbuy==0)){
for(i=0;i<OrdersTotal();i++){
OrderSelect(i,SELECT_BY_POS,MODE_TRADES);
if((OrderMagicNumber()==magic) && (OrderSymbol()==Symbol()) && (OrderType()==OP_BUYSTOP) && (OrderLots()>lots))OrderDelete(OrderTicket());
if((OrderMagicNumber()==magic) && (OrderSymbol()==Symbol()) && (OrderType()==OP_BUYLIMIT) && (OrderLots()>lots))OrderDelete(OrderTicket());
}
and for the sell operation find it :
if((countsell==0)){
for(i=0;i<OrdersTotal();i++){
OrderSelect(i,SELECT_BY_POS,MODE_TRADES);
if((OrderMagicNumber()==magic) && (OrderSymbol()==Symbol()) && (OrderLots()>lots))OrderDelete(OrderTicket());
}
replace with this:
if((countsell==0)){
for(i=0;i<OrdersTotal();i++){
OrderSelect(i,SELECT_BY_POS,MODE_TRADES);
if((OrderMagicNumber()==magic) && (OrderSymbol()==Symbol()) && (OrderType()==OP_SELLSTOP) && (OrderLots()>lots))OrderDelete(OrderTicket());
if((OrderMagicNumber()==magic) && (OrderSymbol()==Symbol()) && (OrderType()==OP_SELLLIMIT) && (OrderLots()>lots))OrderDelete(OrderTicket());
}
Joe
Thank you so much...but
Can you attach the mql file?
Thanks again.yes, the mql file would be great, because i don't know, if i made everything right.
thank you!
yes, the mql file would be great, because i don't know, if i made everything right. thank you!
Did the mod, it seems ok but I'm not professional so be careful!