Disliked{quote} Its a repainting indicator .... But it will be helpfull if its made to refresh properly .... I don't mind it repainting 2-3 bars back after initial signal ... Thanks {file}Ignored
Attached File(s)
5
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} Its a repainting indicator .... But it will be helpfull if its made to refresh properly .... I don't mind it repainting 2-3 bars back after initial signal ... Thanks {file}Ignored
Disliked{quote} Request was to use MA cross as signal, not trend. It only draw arrow when there is MA cross happens in that candle. Update: Ok. I changed filter to use trend, not cross. Use this one and let me know if this works. - this should match what you have uploaded. {file} {image}Ignored
Disliked{quote} Request was to use MA cross as signal, not trend. It only draw arrow when there is MA cross happens in that candle. Update: Ok. I changed filter to use trend, not cross. Use this one and let me know if this works. - this should match what you have uploaded. {file} {image}Ignored
Disliked{quote} million thanks![]()
what is the meaning of this option million million thanks again
![]()
{image}
Ignored
Disliked{quote} can you please enable me to control how far (by pips) is the arrow from the candle and mill mercii my bro wish you the very best at allIgnored
DislikedDoes anyone have a spread alert indicator? Explanation: Let's say GBPUSD spread for a broker is normally fixed at 1.0pips, can there be an indicator that alerts with a sound once the spread exceeds 1.0pips? NB: The set value of the spread must be variable since brokers and fx pairs have different pip spreads. Thanks in advance.Ignored
Disliked{quote} I made a slight change. I think there were a bug when it counts orders. Can you try this? I tested out and it seems EA works fine. it is not stopping trade any more. Making money is another story.. you might want to adjust its settings a bit if that improve. {file}Ignored
Disliked{quote} The market is off so haven't tested live, but should work. Spread_Label_&_Alert - xy placement - fractional pricing support - limit spread for alert {image} {file}Ignored
DislikedHey Guys, i want to learn and improve my MQL4 skills. I think the best way to do this is to practice. Unfortunately sometimes I don`t have any nice idea which i can implement in a Expert Advisor / Indicator. So if any of you is interested, please post in this forum your ideas and i will try to implement it into mql4. AndiIgnored
double shortSma, longSma, ShortSL, ShortTP, LongSL, LongTP,Band_UP,Band_LO;
double Value1,Value2 ;
Value1 = iCustom(Symbol(),0,"TrendTarget.ex4",60,1,1);
Value2 = iCustom(Symbol(),0,"TrendTarget.ex4",60,2,1);
Band_UP = Value1;
Band_LO = Value2;
Comment(" !!!!!!! ICUSTOM returned Value1= "+Value1+ " and value2= ",Value2+"\n");
//////////////////
if(OrdersTotal() == 0)
{
if(tik <= 5 && Ask>Band_UP) ///////////////ONLY can open SELL////////////////
{
////////////////////// TP1 SL1 ///////////////////////////////////
openOrder(Symbol(), OP_SELLSTOP,LotSize,sellPrice,sellPrice+SL1*point(), sellPrice-TP1*point(),"_Sell_1",MagicNumber,exp,Crimson);
}
if(tik <= 5 && Bid<Band_LO) ///////////////ONLY can open BUY////////////////
{
////////////////////// TP1 SL1 ///////////////////////////////
openOrder(Symbol(), OP_BUYSTOP,LotSize,buyPrice,buyPrice-SL1*point(), buyPrice+TP1*point(),"_Buy_1",MagicNumber,exp,Navy);
}
} DislikedCould some one please help me check this code in scrp test (it is an EA) it uses icustom of trentarget, because I have no source code for trendtarget . trendtarget has only one parameter, I think TF = 60 double shortSma, longSma, ShortSL, ShortTP, LongSL, LongTP,Band_UP,Band_LO; double Value1,Value2 ; Value1 = iCustom(Symbol(),0,"TrendTarget.ex4",60,1,1); Value2 = iCustom(Symbol(),0,"TrendTarget.ex4",60,2,1); Band_UP = Value1; Band_LO = Value2; Comment(" !!!!!!! ICUSTOM returned Value1= "+Value1+ " and value2= ",Value2+"\n"); //////////////////...Ignored
DislikedCan i get a normal Indicator for EMA which Ema cross i get push AlertIgnored
Disliked{quote} Something I made a while back, will do a popup+push alert on an ema cross. {image} {file}Ignored
Disliked{quote} ...Accelerator Oscillator - (MT4 built-in) Smoothed Moving Average (SMA) - (It is also available in MT4) All I need to do is to combine both in one Indicator window. That's all.Ignored