Disliked{quote} the [ Trade: LONG ] text held my hands and gave me 47 pips in a few seconds. this is what i meant {image}Ignored
Thank you.
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} the [ Trade: LONG ] text held my hands and gave me 47 pips in a few seconds. this is what i meant {image}Ignored
DislikedHi BestTraderEV, you have improved this indicator in this post: https://www.forexfactory.com/thread/...dicator?page=2 Could you make an ATR Trailing EA base on this indicator? I really appreciate that. {file}Ignored
DislikedHello to All, I am looking indicator when loaded on any (Forex, Metals, Indices or Crypto) which can plot horizontal line on chart above the certain points (not in pips) of the current price line with colour Lime, style 4…after loaded if chart is changed for any (Forex, Metals, Indices or Crypto) line must stay above certain points… 1-once line is plotted it show only points above the current price line like it is showing 10000 point above price line with chart BTCUSD. 2-line must be free fall can be moved by mouse more above the price line and...Ignored
Disliked{quote} I hope that you are aware of the crosshair tool? You won't have the colors, but you do have the points and more.Ignored
Disliked{quote} BestTraderEv, thank you for your reply crosshair do the job what you are saying but it is inconvenient need to measure each time please is there way my request can be fulfilled will be great help. Regards, MotiIgnored
Disliked{quote} And you are also aware the there are two prices? Ask & Bid? We Buy at Ask, we Sell at Bid. So, the distance should be from Ask above, and from Bid below??? Otherwise I see no sense. And why not have two lines all the time?Ignored
DislikedHello, Mr. BestTraderEV. Please fix the attached indicator so that the arrows are drawn correctly. Also, it would be appreciated if you could fix it so that the backtesting feature is displayed. Thank you in advance!{file}
Ignored
Disliked...plot horizontal line on chart above...price...show only points above the current price line like it is showing 10000 point above price...can be moved by mouse...keep showing actual points....Ignored
Disliked{quote} This may be of use. Price_Levels - draws 2 horizontal lines above and below price, as close, ask or bid, separately for upper/lower lines - shows distance from price in points - lines are draggable - line distance can also be changed via enter points (below needs "-") in hline description gif {image} {file}Ignored
Disliked{quote} Hello jeanlouie, thank you for indicator really I want specific may be it could possible to do this way for example 1st step when indicator it draw 1st horizontal line over the current price. This line stays at the point it is placed 2nd step draw 2nd horizontal line above it with the certain points. This line must be coloured lime and with style 4 and can be moved above or below the 1st horizontal line when it moved below the 1st horizontal line it must be change the colour red and stay with same style. And do inform the point far from...Ignored
Disliked{quote} Now I can give you a hint. You had a lot of buffers in your code. (not all of them were neccesary) It is better to organise the buffers (arrays) in order, such that the plots (INDICATOR_DATA) are first, and the calculations (INDICATOR_CALCULATIONS or DRAW_NONE) are last. Anyways, it's not neccessary to define arrays for in-loop calculations, not usually. BTW, are you sure it is working? I'm not getting the file in the navigator window... I tried on two separate MT4's.Ignored
Disliked{quote} Thank you for the advice Mister. Please try this souce code{file}
Ignored
//+------------------------------------------------------------------+
void OnDeinit(const int reason)
{
DeleteLabels();
}
//+------------------------------------------------------------------+
void DeleteLabels()
{
string name = MODEL_ID;
int objTotal = ObjectsTotal();
for(int i=objTotal-1; i>=0; i--)
{
string objName = ObjectName(i);
if(StringFind(objName,name,0) == 0)
ObjectDelete(0,objName);
}
}
//+------------------------------------------------------------------+