Disliked{quote} Hello pls can you help with post 57844, thanks and season greetings.Ignored
the one you have in the link is beyond my knowledge so there should be better coders who can you help you here.
I will code your pivot EAs for no charge 28 replies
I will code your scalping EAs for no charge 163 replies
Oanda MT4 - Indicators and EAs not showing 2 replies
EAs and indicators relating to moutaki... 22 replies
InterbankFX has loaded its MT4 platform with custom EAs, indicators and scripts 1 reply
Disliked{quote} i am NOT a good coder yet i am learning with some kind of template codes the one you have in the link is beyond my knowledge so there should be better coders who can you help you here.Ignored
Disliked{quote} i am NOT a good coder yet i am learning with some kind of template codes the one you have in the link is beyond my knowledge so there should be better coders who can you help you here.Ignored
Disliked{quote} I worked already on my variant (didn't see your post above) so I post my file here too (which only uses a small symbol in bottom left corner to show/hide the rectangles, see animation in the gif-picture) * added two color options for the curr/prev rectangles * fixed (hopefully) also the array out of range bug {file} {image}Ignored
DislikedI use this EA with good result... PS1 it seems in MQL5 there is no option to draw line and set its description, for the e-trendlines EA to pickup, could it be possible to modify the EA to pick line with certain name the automatic trend lines drawing tool has given to it and not the trend line's description???Ignored
string objName = ...;
string desc = ...;
ObjectSetString(0,objName,OBJPROP_TEXT,desc);
// Unlike MT4, in MT5 (b3555, 23 Dec 2022), the default tooltip does not show the Description.
// One can display the objName, and the Description, but AFAIK no way to also include
// the *price* of the mouse cursor when the tooltip displays.
//string desc = ObjectGetString(0,objName,OBJPROP_TEXT); // Use if desc is not already set
string s_tooltip;
StringConcatenate(s_tooltip,objName,"\n",desc); // This guess to also include the *price* did not work: ,"\n%$");
ObjectSetString(0,objName,OBJPROP_TOOLTIP,s_tooltip); DislikedI would like an indicator that shows a simple cross (up/down) of two moving averages. One is the DEMA(55) and the other is QEMA(100). If you could make it display an "x" slightly above for down and slightly below for up, that would be nice. Should work in any time frame. {image}Ignored