Fplagiat2

MQL4 Indicateurs Autre

Spécifications

Guys,
Would U mind to set alert email and push into the indi when red line change green colour and contrary. It works well but it is requesting to spent a lot of time in front of the screen. Thanks a lot.
Please
U can contact me on ljubo.bn@gmail.com  also


//+----------------------------------------------------------------------------+ 

//                                                                                                              |
//                           fplagiat2.mq4                                                              |

//                                                                                                              |
//+----------------------------------------------------------------------------+

#property indicator_chart_window
#property indicator_buffers 2
#property indicator_color1 Lime
#property indicator_color2 Red
//---- input parameters 
extern int period=5;//15; 
int method=2;//3; // MODE_SMA 
int price=5;//0; // PRICE_CLOSE 
int y=0;
//---- buffers 
double Uptrend[];
double Dntrend[];
double ExtMapBuffer[];
//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+
int init()
{
IndicatorBuffers(3);
SetIndexBuffer(0, Uptrend);
//ArraySetAsSeries(Uptrend, true); 
SetIndexBuffer(1, Dntrend);
//ArraySetAsSeries(Dntrend, true); 
SetIndexBuffer(2, ExtMapBuffer);
ArraySetAsSeries(ExtMapBuffer, true);
SetIndexStyle(0,DRAW_LINE,STYLE_SOLID,2);
SetIndexStyle(1,DRAW_LINE,STYLE_SOLID,2);
IndicatorShortName("Signal Line("+period+")");
return(0);
}
//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+
int deinit()
{
return(0);
}
//+------------------------------------------------------------------+ 
//| | 
//+------------------------------------------------------------------+ 
double WMA(int x, int p)
{
return(iMA(NULL, PERIOD_D1, p, 0, method, price, x));
}
//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+
int start()
{
if (Period()>1440) return(0);
int counted_bars=IndicatorCounted();
if(counted_bars < 0)
return(-1);
int x=0;
int p=MathSqrt(period);
int e=iBars(Symbol(),PERIOD_D1) - counted_bars + period + 1;
//---- 
double vect[], trend[];
//----
if(e > iBars(Symbol(),PERIOD_D1))
e=iBars(Symbol(),PERIOD_D1);
//---- 
ArrayResize(vect, e);
ArraySetAsSeries(vect, true);
ArrayResize(trend, e);
ArraySetAsSeries(trend, true);
//---- 
if (Period()==1) for(x=0; x < e; x++) for(y=x*1440;y<=x*1440+1439;y++) vect[y]=2*WMA(x, period/2) - WMA(x, period);
if (Period()==5) for(x=0; x < e; x++) for(y=x*288;y<=x*288+287;y++) vect[y]=2*WMA(x, period/2) - WMA(x, period);
if (Period()==15) for(x=0; x < e; x++) for(y=x*96;y<=x*96+95;y++) vect[y]=2*WMA(x, period/2) - WMA(x, period);
if (Period()==30) for(x=0; x < e; x++) for(y=x*48;y<=x*48+47;y++) vect[y]=2*WMA(x, period/2) - WMA(x, period);
if (Period()==60) for(x=0; x < e; x++) for(y=x*24;y<=x*24+23;y++) vect[y]=2*WMA(x, period/2) - WMA(x, period);
if (Period()==240) for(x=0; x < e; x++) for(y=x*6;y<=x*6+5;y++) vect[y]=2*WMA(x, period/2) - WMA(x, period);
if (Period()==1440) for(x=0; x < e; x++) for(y=x;y<=x;y++) vect[y]=2*WMA(x, period/2) - WMA(x, period);
//---- 
for(x=0; x < e-period; x++)
ExtMapBuffer[x]=iMAOnArray(vect, 0, p, 0, method, x);
for(x=e-period; x>=0; x--)
{
trend[x]=trend[x+1];
if (ExtMapBuffer[x]> ExtMapBuffer[x+1]) trend[x] =1;
if (ExtMapBuffer[x]< ExtMapBuffer[x+1]) trend[x] =-1;
if (trend[x]>0)
{ Uptrend[x]=ExtMapBuffer[x];
if (trend[x+1]<0) Uptrend[x+1]=ExtMapBuffer[x+1];
Dntrend[x]=EMPTY_VALUE;
}
else
if (trend[x]<0)
{
Dntrend[x]=ExtMapBuffer[x];
if (trend[x+1]>0) Dntrend[x+1]=ExtMapBuffer[x+1];
Uptrend[x]=EMPTY_VALUE;
}
//Print( " trend=",trend[x]);
}
return(0);
}
//+------------------------------------------------------------------+

Dossiers :

Répondu

1
Développeur 1
Évaluation
(590)
Projets
789
71%
Arbitrage
9
33% / 33%
En retard
22
3%
Gratuit
2
Développeur 2
Évaluation
(97)
Projets
121
25%
Arbitrage
5
20% / 60%
En retard
17
14%
Gratuit
3
Développeur 3
Évaluation
(555)
Projets
922
48%
Arbitrage
300
59% / 25%
En retard
123
13%
Chargé
Commandes similaires
I have a Trading View Strategy which is working well. Now, i want to Convert my trading platform to Meta trader. I need an Experienced Expert for Conversion. If this sounds as something that interest you, you can respond to my message
My trading platform is showing some list of error and i want want to add some features to correct the Error. I need an Expert in this field with Experience to fix the issues for me Below is the Source File
Looking for a tradingview expert to quickly code a 8 lined description for me (alert based) Apply if you are a proven expert in tradingview and have time to deliver this project under 2_3 days. I'll provide the file to the expert
Hello, I'm looking for someone to build an EA that will copy trades from MT4 & 5 over to DX trade and Match Trader. If you already have one built even better, I'll buy it. Talk soon
Hello . Im in need of a script/ea/program whatver it might be, that creates a screenshot of my rectangle box that ive placed on the chart in mt5. For example if i draw a rectangle on the h4 timeframe from 2024 till 2021 it should screenshot the entire rectangle with the info. It should output it as png image
I need someone who can help me with the development of indicator on SMC concept. If you can do this job kindly send me a message and let's further our discussion
Hi There - I require a forex martingale calculator which will advise the correct trade setup as per my risk\reward money management rules. The calculator should have fields allowing me to input 1) Account Equity 2) Initial trade size 3) Pip step for next trade ie trade size multiplier 4) Maximum number of trades It should then calculate for me... what the result would be after x number of pips ie what the what the
Helllo!!! I have a tradingview indicator that I would like to do some modifications..Kindly bid this if you are available and all the necessary informations needed will be sent directly via the chat box..looking forward
Hello there and how have you been !!I I need a developer who is ready to take up a project ..I would like to convert Ninjatrader indicator to Tradingview all the details about the project will be sent directly to you via the inbox…
Hey Greetings. Am in need of a developer with experience in Tradingview that have successfully developed a profitable strategy for tradingview . I willing to buy already made profitable strategy for tradingview. If you have one or had develop some . Kindly apply for the job and let discuss about the price and timeline. Thanks

Informations sur le projet

Budget
10 - 20 USD
Pour le développeur
9 - 18 USD