Disliked{quote} Leading question - how do you tell 1 object apart from any other object?Ignored
- #44,144
- Edited 11:02am Feb 20, 2021 8:54am | Edited 11:02am
- Joined Dec 2010 | Status: Trader | 2,136 Posts
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} hi my friend please tell me : {image} 1- follow yellow color : are you set costume ATR averaging period? i can set M15 , H1 , H4 , D1 , W1 , MN1 separate value for set with your command . 2- follow red arrow : i think you need show history or lock back bar with your command . so if you set 8 , you have ATR 8 (8 bar shift back ) . 3- follow blue color : you want see atr value or i just show your setting , for exam , you set period 5 , i show return value for ATR 5 or just show "5" 4- follow white color : i can fill color between Red or green...Ignored
Disliked{quote} Good Day T4Trade I have been looking high and low for a "Thick Line Moving Average" , like that thick white / light grey line on your posted chart. May I ask you to share it with me please ? Kind Regards and Green Pips !Ignored
Disliked{quote} my dear im using this picture just for reference but luckily i know that it is a PAC *price action channel.yo can find this in TMS thread with the name HA 5ema i think,very good indicator.plz check them. {image}Ignored
Dislikedhai sir mladen ema levels indicator mt4 i want to mq file above..plz.. {image}Ignored
Disliked{quote} No no, not tell orders apart, but objects apart, if you right click on a chart with 1000s of objects to see the object list, how do you find any single particular object? edit - 1 reply deep, I'll cut to the chase, all the objects you're creating have the same name, so you're only creating an object once.Ignored
if(PositionSelect(_Symbol)==true)
{
for(int i = PositionsTotal() -1; i >= 0; i--)
{
ulong ticket = PositionGetTicket(i);
string symbol=PositionGetString(POSITION_SYMBOL);
double oprice=PositionGetDouble(POSITION_PRICE_OPEN);
datetime time=PositionGetInteger(POSITION_TIME);
long type = PositionGetInteger(POSITION_TYPE);
if(_Symbol==symbol)
ObjectCreate(0,ObjName(),OBJ_ARROW_UP,0,time,oprice);
ObjectSetInteger(0,ObjName(),OBJPROP_COLOR,clrWhite);
ObjectSetInteger(0,ObjName(),OBJPROP_WIDTH,10);
}
}
return(rates_total);
}
//+------------------------------------------------------------------+
string ObjName(void)
{
static int counter=0; counter++;
return("testText"+IntegerToString(counter));
} Disliked{quote} Alright - show/hide effect surives sym/tf change {file}{file} {quote} What's stopping you from just using the slope color one? {quote} What makes you say that?Ignored
Disliked{quote} I understand that object name has to change in every round. I tried this way. On chart it looks right, but actually there are hundred of objects and not right color or size anymore....Ignored
Disliked{quote} Every time you call the string function ObjName(), you're running that function, obivous, but every time that function is run, the name output changes because it increments the counter every time it's run. So when you try to modify the object settings, you're creating a new name and using that. When dealing with objects you need to be addressing the correct obj by name. Forget the objname function, just plug in some unique order number into the name parameter and use the same when modifying them. ie objcrete(0,"generic bit "+Integertostring(unique...Ignored
Disliked{quote} Hi, The indi looks good. Some feedback: 1. Can the date/time be set as strings instead having to be selected from calendar? So I can just enter 2021.3.1 19:00 instead of clicking on each field and select them. 2. Can't insert more than 1 indicator in 1 chart. I inserted 2 indicators with different dates into 1 chart but object list only shows 1 set of objects. I think a unique ID is needed for MQL4 to draw the 2 settings correctly. 3. Can the font size be changed? 4. Can the label and level be displayed on 1 side instead of both sides? Thanks!...Ignored
Disliked{quote} i checked it now,first of all thank you so much for trying,its going good.i dont want to see the price label,i wnat to see only historical,present ATR in numbers and if possible in %.check below 1 more example.I need a dashboard,it could be for single pair also,thanks.plz add prefix for pairs as well. {image}Ignored
DislikedGood Day Coders, I have an interesting request here pleaseGanztrade help me build this indicator, but I see he is no longer around to help. After using this indicator for a while now, some " fine tuning" to make it more optimal PLEASE : 1...The indicator already has a main box and sub box. Please add another "sub sub box", one top, one bottom. - Please rename these boxes SD1 , SD2, SD3 , with Sd1 the closest to the anchor obvious, followed by SD2 then SD3 on the outside. 2...Please remove "colormain1" from all the boxes as is,...
Ignored