Fplagiat2

MQL4 指标 其它

指定

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);
}
//+------------------------------------------------------------------+

附加的文件:

反馈

1
开发者 1
等级
(590)
项目
789
71%
仲裁
9
33% / 33%
逾期
22
3%
空闲
2
开发者 2
等级
(97)
项目
121
25%
仲裁
5
20% / 60%
逾期
17
14%
空闲
3
开发者 3
等级
(555)
项目
922
48%
仲裁
300
59% / 25%
逾期
123
13%
空闲
相似订单
Hello. I want to convert mql4 to Cbot. I have got MQL4 code. I have many this type of project. So I am looking for a developer work with me long-time. Thank you
Hello, I'm interested in working with a developer on the modification of my EA. I have the EA developed already, I just need basic changes to be made. I await your responses. Thank you
"Hello, I'm looking for a developer who can facilitate the integration of Pepperstone broker with my TradingView platform. If you have experience with API integration and are familiar with both Pepperstone and TradingView, please reach out. This project involves connecting the two platforms to enable seamless trading execution directly from TradingView charts. Looking forward to collaborating with someone who can
Hi, I'm looking for a streamlined method to replicate my trades from my MT4/MT5 platform to Match Trader seamlessly. I'm not seeking intricate configurations; the solution should simply mirror all actions from MT4/MT5 accurately—trades, stop losses, order closures—while also providing real-time updates on the status of the Match Trader account, including balance and equity information, directly within the MT4/MT5
I'm in search of a developer with expertise in C++ to create a specialized program that caters to my specific needs. The application must possess the following features: - Detection of all MetaTrader (MT4 and MT5) installations on the computer/VPS both at the time of installation and during runtime. - The ability to manually input the path of a platform or drag and drop the shortcut, in case the user has chosen a
I need a mirroring/copy trading system/software that copies all operations from a given MT5 to "Nelogica’s Black Arrow". The purpose is to copy the operations I already do in MT5 to the company’s platform "Neologica". - Preciso de um sistema/software de espelhamento/copy trading que copie todas as operações de um determinado MT5 para o "Black Arrow da Nelogica". O intuito é copiar as operações que já faço no MT5 para
dear Devs community. I'm looking for a dev that gets me a simple project done, the expert I'm looking to build has no trading logic, or strategy, it's just something to organize the TP, SL and trailing stop. it could be done within few hours. please, whoever thinks he could do it have him apply to this post, there is a document detailing the project will be shared with you
We require a client portal to be built from essentially the ground up for our new forex prop firm. Please see the images attached of examples of similar dashboards (more examples can be provided on request). Below are most of the requirements we require for our client portal. One of the main areas of focus will be ensuring the performance/account history from both MT4 & MT5 accounts is synced correctly to our account
I want to create a trading bot for Binance that buys the top 100 cryptocurrencies based on volume or market cap.....and uses Moving Average (MA) crossover as a strategy to time entry for indivisual coins and then uses different MA settings to exit the buy orders back to USDT example so for example if I have $1000 in balance, and I told the bot to trade top 100 coins based on volume or market cap, then I told it to
3B Strategy Overview While the spec breaks this down into step by step details, the model itself is low complexity, as its all done within 3 candles and simple exit criteria (no scaling, etc), intentionally done so for short time to market and management. Assumptions: The strategy should run for one-to-many accounts, ideally avoiding a trade copier and keeping all control in our code. Multiple trades can be live at

项目信息

预算
10 - 20 USD
开发人员
9 - 18 USD