Indicators with alerts/signal - page 997
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Mrtools, thank you so much, just i wonder, does it repaint or rechange?
Tomitom06, yes it repaints(recalculates).
Mrtools, Mladen
have you any nrp fractal? If not, should we use step ma as fractal?
Regards
Tomitom06, yes it repaints(recalculates).
Mrtools, Mladen
have you any nrp fractal? If not, should we use step ma as fractal?
Regardstomitom06
Fractals can not be made non-repainting (that is their nature)
On the other hand, step ma is completely different from fractals and the versions you are using are not repainting (ther are some step indicators that do repaint - the old ones - but none of the new step indicators s repainting, not even the step stochastic)
Can be done in this EA returns are? That is, that instead of buying and selling it instead of selling it to buy?
extern int GAP = 200 ;
extern int cooficient = 1 ;
extern double Lots = 0.1 ;
extern int Slip = 50 ;
extern int MagicNumber = 227 ;
extern int Loss =500 ;
extern string ДЛЯ_БЛАГОДАРНОСТЕЙ= "R165601147668" ;
extern string ЗАКАЗАТЬ = "АСЬКА ДЛЯ СВЯЗИ 155553959";
//=============================================
double slb,slbb,tpb,sls,slss,tps,OtkrSS,OtkrBS;
double OtkrSS1,OtkrBS1,ho,lo,u,d ;
int tiket,t1,t2 ;
//=============================================
int start ()
{
//=============================================
double gap=GAP*Point;
double des=Close[1]-Open[0];
slb=NormalizeDouble(Bid - (Loss* Point),Digits); // расчёт стопа для бай позиций//
sls=NormalizeDouble(Ask + (Loss* Point),Digits); // расчёт стопа для селл позиций//
//=============================================
if(des<0)
{
des=des*(-1);
}
int total=OrdersTotal(); //Присвоение общего колличества ордеров
int b=0, s=0,bb=0, ss=0; //Обнуление переменных
for (int i=total-1; i>=0; i--) //Перебор ордеров
{
if(OrderSelect(i, SELECT_BY_POS)) //Разбор ордера
{
if(OrderSymbol()!=Symbol())continue; //Если ордер не графика то перебор снова
{
if (OrderType()==OP_BUY) //Если ордер наш и БАЙ
{
string VALB=OrderSymbol (); //Присвоение символа
double tpbb=OrderTakeProfit (); //Присвоение тейк профита
double slbs=OrderStopLoss (); //Присвоение Стоп лосса
double lotb=OrderLots (); //Присвоение лота
double otkb=OrderOpenPrice (); //Присвоение цены открытия
double magb=OrderMagicNumber(); //Присвоение магического номера
b++ ; //Счетчик ордеров
}
if (OrderType()==OP_SELL) //Если ордер наш и СЕЛЛ
{
string VALS=OrderSymbol (); //Присвоение символа
double tpbs=OrderTakeProfit (); //Присвоение тейк профита
double slss=OrderStopLoss (); //Присвоение Стоп лосса
double lots=OrderLots (); //Присвоение лота
double otks=OrderOpenPrice (); //Присвоение цены открытия
double mags=OrderMagicNumber(); //Присвоение магического номера
s++ ; //Счетчик ордеров
}
}}}
if (des>gap&&b==0&&s==0)
{
if(Open[0]>Close[1])
{
OrderSend(Symbol(),OP_SELL,Lots,NormalizeDouble(Bid,Digits),Slip,sls,Ask-des/cooficient,NULL,MagicNumber,0,CLR_NONE);
PlaySound("Alert.wav");
}
if(Close[1]>Open[0])
{
OrderSend(Symbol(),OP_BUY,Lots,NormalizeDouble(Ask,Digits),Slip,slb,Bid+des/cooficient,NULL,MagicNumber,0,CLR_NONE);
PlaySound("Alert.wav");
}
}}
Dear programmers,
Is is possible to add an alert to this great indicator made bij Mladen.
In mode 2 a Buy alert when green candle over a choosable level for MA (1,2 or three) and red candle for Sell alert.
I really appreciated your help. Thanks
elderss_market_thermometer.mq4
dearl mladen or mrtools can u plz help me with cci indi. with alerts ?
dearl mladen or mrtools can u plz help me with cci indi. with alerts ?
topi
Did you check this one : Forex TSD - forex forum - Download CCI_alerts.mq4
mladen no i did not check ... thanks a ton
dear mladen or mrtools... can u plz add arrows to this rsi indi... up arrow for rsi above 50 and down arrow for rsi reading below 50 along with alerts. Thanks in advance.rsi_-_mtf_amp_alerts_nmc_2.mq4
dear mladen or mrtools... can u plz add arrows to this rsi indi... up arrow for rsi above 50 and down arrow for rsi reading below 50 along with alerts. Thanks in advance.rsi_-_mtf_amp_alerts_nmc_2.mq4
Here is a version with arrows : rsi_-_mtf_amp_alertsarrows_nmc.mq4