Hi all,
this is the final version 1.18.
For a list of changes, see post #325
Cheers...
this is the final version 1.18.
Attached File(s)
For a list of changes, see post #325
Cheers...
3
LRSF Monitor - Assistant for TMS trading 28 replies
LRSF - TMS Expert Advisor - MT5 85 replies
TMS basket: Dashboard for a basket of MA-Filtered RSI Signals 135 replies
PA patterns with TMS system 45 replies
Polapip The Meandering System (TMS) 29 replies
DislikedHi all, this is the final version 1.18. {file} For a list of changes, see post #325 Cheers...Ignored
DislikedLoaded up v18. Is it normal for the Experts tab to show the indicator initializing every .043 seconds? 2018.06.17 21:38:03.002 TradersDynamicIndex EURUSD,H1: initialized Also, I put the EA on every chart I want to trade?Ignored
Disliked{quote} So your EA is not going to be entirely free for our live account?Ignored
Disliked{quote} Hi Ictrader, MT4 decides how often it wants to initialise an indicator. The LRSF EA just uses it to analyse and find entry and exit points. It is not programmed by me how indicators are handled internaly by MT4. Yes, you have to attach the EA to every chart. On chart => One currency pair. Cheers...Ignored
Disliked{quote} Thanks for the clarification. There seemed to be a constant ramping of my CPU fan, which caused me to look at the MT4 Experts tab (which I don't normaly do). After seeing the constant line items, I was concerned with CPU overhead processing and thought I had caused a runaway condition. I'll carry on and report back any progress (good or not-so-good).Ignored
Disliked{quote} Hi timidave, good question. I do not mind to publish a version without time limit AFTER it has been proven to work without major incidents. This is what I did (for the first time) with version 15s. I do not intend to make this product commercial. But I am very careful not to have lots of old versions around that will still be used in years to come. Maintaining a few versions (published and WIP) is already a lot of work. So I have to protect myself (and you) against old versions that nobody should be using anymore. I hope that answers your...Ignored
Disliked{quote} If you just want to use the EA without being involved in testing and being at the front of the newest developments you could start with version 1.15s and use the settings below: {image} Cheers...Ignored
DislikedPlease how is the INITIAL stop loss of your EA determined because sometimes it looks like mine is occasionally bigger than needed.Ignored
double ord_sl = ls_order.get_sl();
if (ord_sl == 0.0) {
if (ord_type == OP_BUY) {
double lv_slprice = ord_oprice - pips2val(gADR100);
double lv_tpprice = ord_oprice + pips2val(gADR100*2);
ls_order.set_sl(lv_slprice);
ls_order.set_tp(lv_tpprice);
} else if (ord_type == OP_SELL) {
double lv_slprice = ord_oprice + pips2val(gADR100) + pips2val(lv_sym_spread);
double lv_tpprice = ord_oprice - pips2val(gADR100*2);
ls_order.set_sl(lv_slprice);
ls_order.set_tp(lv_tpprice);
}
if (!ls_order.modify()) {
errmsg = StringConcatenate( "OrderModify: ", ERR_AND_LOC );
XPrint(LOG_LEVEL_ERR, errmsg);
return;
}
} // p_sl == 0 Disliked2. Then also, can you PLEASE make the number of trades the EA can take per trade optional? I, personally would love to trade some selected pairs at the same time; pairs that dont correlatet.Ignored
DislikedHey Jansb000, if this is your "other" computer, I have installed hundreds (yes, I said hundreds) of these Proliants in my data center...decent machine!Ignored
Disliked{quote} Dear Sir Jansb000,you suggested me version 1.15s and I attached this EA for more than a week,it has not taken any trade yet,is that normal? do you suggest me to use new version? thanksIgnored
Disliked{quote} Hi timidave, This is how its coded: double ord_sl = ls_order.get_sl(); if (ord_sl == 0.0) { if (ord_type == OP_BUY) { double lv_slprice = ord_oprice - pips2val(gADR100); double lv_tpprice = ord_oprice + pips2val(gADR100*2); ls_order.set_sl(lv_slprice); ls_order.set_tp(lv_tpprice); } else if (ord_type == OP_SELL) { double lv_slprice = ord_oprice + pips2val(gADR100) + pips2val(lv_sym_spread); double lv_tpprice = ord_oprice - pips2val(gADR100*2); ls_order.set_sl(lv_slprice); ls_order.set_tp(lv_tpprice); } if (!ls_order.modify()) { errmsg =...Ignored
Disliked{quote} Actually I had version 1.15s on the last week myself on two accounts. And it took a couple of trades. Please post a screenshot so I can see the text at the left upper corner. It might give us a clue. You can make your account number invisible before you post your screenshot. Personally I use version 1.17 on a small live account and I accept the risk of any bug that I made, next weekend I will upgrade to version 1.18 on my live account. Other versions I only use on demo accounts. Version 1.18 is just released and version 1.19 is near complete...Ignored