DislikedHi, Can anyone assist to convert this indicator & EA to MT5? Thank You {file} {file}Ignored
@Sincere007 Can you please kindly assist me to add take profit and stop loss by pips to the BBands_MAs_EA V3.mq4 EA?
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
DislikedHi, Can anyone assist to convert this indicator & EA to MT5? Thank You {file} {file}Ignored
Disliked{quote} 1. First one is using HLine or it could be OBJ_TREND OBJ_HLINE - Object Types - Objects Constants - Constants, Enumerations and Structures - MQL4 Reference You have to calculate each line and draw individually. 2. 2nd one is using OBJ_FIBO OBJ_FIBO - Object Types - Objects Constants - Constants, Enumerations and Structures - MQL4 ReferenceIgnored
Disliked{quote} my question is can we draw line labels on right border as shown, how do we code to achieve that i cannot use OBJ_FIBO for pivot levels or any other custome levels, i wish t`o learn label placement techniquesIgnored
Disliked{quote} Here is candle_formation. However, other thing, I need source code of v.1.6 to take a look. {file}Ignored
Disliked{quote} There are two way to write - TEXT and LABEL. Text is attached to Candle and LABEL is not. For TEXT, you have to give Candle location while For LABEL, you have to give x,y posion. Attached indicator should give you good example. it has technic to convert Candle position to x,y also. Look at the DrawPrice(LabelID + "yhighprice",Time[0],rates[1].high,clrYellow,10,space + "YH"+ " (" + DoubleToStr(rates[1].high,Digits) + ")"); - it needs Time[0] which is basically X positon and Rates[1].high which is basically Y position. then, it uses ChartTimePriceToXY(0,...Ignored
Disliked{quote} what i am trying to do is keep the label away from the price so i can read them, when the candle covers them, i cannot read the label {image}Ignored
Disliked{quote} There are two way to write - TEXT and LABEL. Text is attached to Candle and LABEL is not. For TEXT, you have to give Candle location while For LABEL, you have to give x,y posion. Attached indicator should give you good example. it has technic to convert Candle position to x,y also. Look at the DrawPrice(LabelID + "yhighprice",Time[0],rates[1].high,clrYellow,10,space + "YH"+ " (" + DoubleToStr(rates[1].high,Digits) + ")"); - it needs Time[0] which is basically X positon and Rates[1].high which is basically Y position. then, it uses ChartTimePriceToXY(0,...Ignored
void LN ( string nm , double val , color cl )
{
ObjectDelete(nm);
ObjectCreate ( 0 , nm , OBJ_HLINE , 0 , Time[0] , val ) ;
string nmL = nm + "_Label";
string nmT = ".............................................."+nm;// + " = " + DoubleToStr ( val , Digits ) ;
ObjectDelete(nmL);
ObjectCreate ( 0 , nmL , OBJ_TEXT , 0 , Time[0] , val );
ObjectSetText ( nmL , nmT , 8 , "Tahoma", cl);
} Disliked{quote} i missed out the ShowPipDiff , thanks that is exactly what i need could you please rewrite this code for me with this functionality void LN ( string nm , double val , color cl ) { ObjectDelete(nm); ObjectCreate ( 0 , nm , OBJ_HLINE , 0 , Time[0] , val ) ; string nmL = nm + "_Label"; string nmT = ".............................................."+nm;// + " = " + DoubleToStr ( val , Digits ) ; ObjectDelete(nmL); ObjectCreate ( 0 , nmL , OBJ_TEXT , 0 , Time[0] , val ); ObjectSetText ( nmL , nmT , 8 , "Tahoma", cl); }Ignored
Disliked{quote} if you want just some space after Time[0], just use this trick. ObjectCreate (0, objectname , OBJ_TEXT, 0, Time[0] + Period() * 3000, Value); Basically, you are adding some value to Time[0] which is X position. You can adjust Period()*3000 so that you get to have right positon.Ignored
Disliked{quote} Right you are, and I already started writing before eess gave the link, so here's mine anyway, it handles more objects that aren't covered by the link. Snap_to_OHLC_rect_hl_arr_txt_lbl - input magnet in pixels - will snap to closest ohlc within magnet - handles rectangles(all points), all arrow types, horizontal lines, texts, labels {file}Ignored
Disliked{quote} dear jeanlouie this magnetic tool is a great improvement! If it's not too much trouble you could also encode it for MT5. It would help me a lot when analyzing the charts. Greetings and blessingsIgnored
Disliked{quote} {quote} While I was testing out the repaint-check indicator, I did realize a nuance that would be an issue, I've already known but I didn't think of it earlier. The issue is that while drawn lines may have the same value and not repaint, if there is color changing going on then different drawing buffers will be used/cleared, and that gives an impression of repainting values when using icustom to get specific buffer values. A drawing line is a straight line of a single color/style/width between 2 points. When there is color switching, like...Ignored
QuoteDislikedif there is color changing going on then different drawing buffers will be used/cleared, and that gives an impression of repainting values when using icustom to get specific buffer values
Dislikedgood morning everyone. I replied the request hoping that someone will answer me My english is not perfect but i will try to explain myself to the best. Is it possible to create an indicator for mt4 that shows on the same graph even the 2 tf lower than the one you are looking at? Example: I'm looking at eurusd D1. on the same graph you can also report eurusd h4 and eur usd h1 (or m15)? The indicator must allow you to choose which lower tf to plot. Thanks to those who will help me. you are a fantastic groupIgnored
DislikedHi Everybody Many Many thanks for this website producer (ForexFactory). I want to know How can close multi Magic Number positions ? For Example I need to close all orders only with magic numbers ( 1, 2 , 3 , 4 , 5 ) if all totally reach profit to 10 USD . All of ready EA can control only one magic number . I will become to happy if somebody help me. Best Regards SiamakIgnored