Change an Indicator to multi time frame Version

MQL4 指标

工作已完成

执行时间38 天
员工反馈
5+

指定

Hi.

I want to change this indicator to a multi time frame version(1). Add some different arrow Types(2).Option to change the distance between the arraw and Bars(3).


No other change in the calculation .

send me please the required fee for it.....

thanks



//+------------------------------------------------------------------+
//|                                                                  |
//|                                                                  |
//|                                                                  |
//+------------------------------------------------------------------+
#property copyright ""

#property indicator_chart_window
#property indicator_buffers 2
#property indicator_color1 LimeGreen
#property indicator_color2 Red
//---- input parameters

extern int D1RSIPer=13;
extern int D2StochPer=8;
extern int D3tunnelPer=8;
extern double hot=0.4;
extern int sigsmooth=0;


//---- buffers
double sig1n[];
double sig2n[];
double upX[],dnX[];
//+------------------------------------------------------------------+
//| Custom indicator initialization function                         |
//+------------------------------------------------------------------+
int init()
  {
   string short_name;
//---- indicator line
   IndicatorBuffers(4);
   SetIndexBuffer(2,sig1n);
   SetIndexBuffer(3,sig2n);

   SetIndexStyle(0,DRAW_ARROW);
   SetIndexArrow(0,159);
   SetIndexBuffer(0,upX);
   SetIndexStyle(1,DRAW_ARROW);
   SetIndexArrow(1,159);
   SetIndexBuffer(1,dnX);
//----
   SetIndexDrawBegin(0,D1RSIPer+D2StochPer+D3tunnelPer+hot+sigsmooth);
   SetIndexDrawBegin(1,D1RSIPer+D2StochPer+D3tunnelPer+hot+sigsmooth);
  
//----
   return(0);
  }
//+------------------------------------------------------------------+
//| CCI_Woodies                                                         |
//+------------------------------------------------------------------+
int start()
  {
   int i,i2,counted_bars=IndicatorCounted();
   double rsi,maxrsi,minrsi,storsi,E3D,
   sig1,sig2,sk,ss,sk2;
   double cs;
   bool init=true;
  
   //----
   cs= D1RSIPer+D2StochPer+D3tunnelPer+hot+sigsmooth;
   if(Bars<=cs) return(0);

   //if (init)
   //{
   ss=sigsmooth;
   if (ss<2) ss=2;
   sk = 2 / (ss + 1);
   sk2=2/(ss*0.8+1);
   init=false;
   //};

   //---- initial zero
   if(counted_bars<1)
      {
      for(i=1;i<=cs;i++) sig1n[Bars-i]=0.0;
      for(i=1;i<=cs;i++) sig2n[Bars-i]=0.0;
      for(i=1;i<=cs;i++) upX[Bars-i]=0.0;
      for(i=1;i<=cs;i++) dnX[Bars-i]=0.0;
      }
     
   i=Bars-cs-1;
  
   if (counted_bars>=cs) i=300; //i=Bars-counted_bars-1;
   while (i>=0)
      {
     
      rsi=iRSI(NULL,0,D1RSIPer,PRICE_CLOSE,i);
      maxrsi=rsi;
      minrsi=rsi;

      for (i2=i+D2StochPer;i2>=i; i2--)
         {
         rsi=iRSI(NULL,0,D1RSIPer,PRICE_CLOSE,i2);
         if (rsi>maxrsi) maxrsi=rsi;
         if (rsi<minrsi) minrsi=rsi;
         //maxrsi=Maximum(rsi,maxrsi);
         //minrsi=min(rsi,minrsi);
         }
        
      storsi=((rsi-minrsi)/(maxrsi-minrsi)*200-100);
      E3D=hot*iCCI(NULL,0,D3tunnelPer,PRICE_TYPICAL,i)+(1-hot)*storsi;
      sig1n[i]=sk*E3D+(1-sk)*sig1;
      sig2n[i]=sk2*sig1+(1-sk2)*sig2;
      sig1=sig1n[i];
      sig2=sig2n[i];
     
      if (sig1n[i]>sig2n[i] && sig1n[i+1]<sig2n[i+1]) upX[i]=Low[i]-iATR(NULL,0,15,i)/2.0;
      if (sig1n[i]<sig2n[i] && sig1n[i+1]>sig2n[i+1]) dnX[i]=High[i]+iATR(NULL,0,15,i)/2.0;

      i--;
      }
     
   return(0);
   }
//+------------------------------------------------------------------+

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


反馈

1
开发者 1
等级
(102)
项目
118
31%
仲裁
4
0% / 50%
逾期
2
2%
空闲
2
开发者 2
等级
(195)
项目
317
35%
仲裁
64
13% / 56%
逾期
82
26%
空闲
3
开发者 3
等级
(114)
项目
154
47%
仲裁
2
0% / 50%
逾期
4
3%
空闲
4
开发者 4
等级
(710)
项目
1029
39%
仲裁
47
49% / 23%
逾期
84
8%
空闲
5
开发者 5
等级
项目
0
0%
仲裁
0
逾期
0
空闲
6
开发者 6
等级
(555)
项目
922
48%
仲裁
300
59% / 25%
逾期
123
13%
已载入
相似订单
I need an alert of new zone created/show to be added to this supply demand indicator. Sound and pop-up alert option, no need for email alert. Max 3 days to deliver please. Thanks
Hi, i need a Expert Advisor, that can pass prop firm Challenges like FTMO / E8 / 1OF1FUNDING Profit 10% Max Drawdown (DD) 10% Max Daily Loss 4% All trades with SL NO trades during and after high impact news NO trades during Weekend Profitable backtest from 2010 to 2024 Trades Forex (If you already have a finished EA, send me the backtest) PLease contact me asap
Pls guys I need help. About the file i need I have ea ex4 file but it use to set buystop or sellstop oders etc now what I want is to fit the propfirm am using because the propfirm am using have a lot size consistency rules so what I need is even if the ea set multiple buystop the file will only allow the ea to pick 2 positions and automatically delete the nearest limit Oder it can only allow the ea buystop or new
Expert Advisor 100 - 200 USD
Hello, I would like to create an EA based on several indicators with various signals that can be activated or not for optimization purposes. It includes basic money management such as SL/TP, BE, trailstop. Please check the attached specifications carefully to confirm that you are able of achieving it 100% before offering your services. THANKS
MT4 Indicator 30 - 65 USD
hello i would create a mt4 indicator with my requirements from stratch, more info on message please apply only if you can consider my budget i need also some day to test it
Below are the conditions of the indicator: Buy Conditions: The first candle must open and close bearish. The second candle must open and close bullish. Both candles must have a body (not a doji). The close of the first candle must be the same as the open of the second candle (with an exception for a difference of not more than 2 pips). The third candle must open and close bearish, and its close must be below the
Firstly Indicator (1) or the first part \\ Draw a red line at the top of the zero candle _ M1 \\ Draw a blue line at the bottom of the zero _ M1 candle \\ Draw a red line at the top of the zero _ M2 candle \\ Draw a blue line at the bottom of the zero _ M2 candle \\ Draw a red line at the top of the zero candle _ M3 \\ Draw a blue line at the bottom of the zero _ M3 candle \\ Draw a red line at the top of the zero
本人现有一个网格EA,内有马丁加仓平仓,需要升级,加入对冲功能和其他功能.(其他细节后谈) 1 . 網格繫統:可選:YES/NO. 如果:YES,設置:網格間隔,網格層數, 2 . 開倉:條件開倉,可選:YES/NO.(目前默認爲NO) 分爲市價開倉/STOP ORDER/ LIMIT ORDER, 3 . 加倉:分爲:固定手數,如:0 . 03,或末單累加:0 . 01,或:末單倍數如:1 . 5倍.多單和空單的加倉方法可以不同設置. 4 . 移動止盈.(單獨移動,多/空方整體點數移動/或金額移動) 5 . 平倉包括: A.多方/空方止盈線,和多方/空方止損線(可以設置三條價格:每條選擇:平倉 1/3,1/2,或全部) B.單獨止盈/止損 (多方和空方可以設置不同的,)盈利點數或金額 整體止盈/止損.(多方和空方可以設置不同的,)
This indictor is a simple entry candle kind of indicator using moving average. I had given the rules and condition for this as easy as possible for a sell example. You can Chek the below link for a whole document and let me know if any queries. Looking forward to work with you. https://docs.google.com/document/d/1K_H2ynkmJVRAvck3MYkE88KI6Tb092x1/edit?usp=drivesdk&amp ;ouid=116017681189749572696&rtpof=true&sd=true
I need to convert a short 30 Line pinescript to Tradestation Easy Language, I want this project to be completed in 2-3 days if possible? Kindly apply if this is what you can do, i will include the script in the attachment below

项目信息

预算
30+ USD
VAT (19%): 5.7 USD
总计: 35.7 USD
开发人员
27 USD
截止日期
 1  2 天