Fisher Transform Sound/Email/SMS notifications and Trend

MQL4 Indikatoren

Auftrag beendet

Ausführungszeit 1 Tag

Spezifikation

I have a job i need done .Its very simple. I need Sound/Email and SMS alert options. I also need 2 things done to the indicator. I want a GREEN DOT when the solid grey line moves up across the dashed yellow lines. Vice versa i want a RED DOT on top of the cross on the way down. So when the grey line crosses the yellow dashed lines. The dot cannot touch the lines i want it just on top of the cross. I just want to be able to see the cross. The second thing i need is i just need you to make a little distance between the two lines. Right now they are coded too close to each other. Could you ad an option so i can change the distance between the two lines? Its just hard to see it nicely.


I need the indicator also as a histogram. Green bars for "long" and Red bars for "short". I also need Sound/Email and SMS notifications. So thats 2 indicators.


Heres the code for the indicator it is the Fisher Transform. ABSOLUTELY NOTHING ELSE SHOULD BE DONE TO THE INDICATOR BESIDES THE FOR-MENTIONED. 


Fisher Transform:


//+----------------------------------------------------------+
//|                              Ehlers fisher transform.mq4 |
//|                                                   mladen |
//+----------------------------------------------------------+
#property  copyright "mladen"
#property  link      "mladenfx@gmail.com"

#property  indicator_separate_window
#property  indicator_buffers 2
#property  indicator_color1  DimGray
#property  indicator_color2  YellowGreen
#property  indicator_width1  2
#property  indicator_style2  STYLE_DOT

//
//
//
//
//
 
extern int  period         = 10;
extern int  PriceType      = PRICE_MEDIAN;
extern bool showSignalLine = true;

//
//
//
//
//

double buffer1[];
double buffer2[];
double Prices[];
double Values[];

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

int init()
{
   IndicatorBuffers(4);
      SetIndexBuffer(0,buffer1);
      SetIndexBuffer(1,buffer2);
      SetIndexBuffer(2,Prices);
      SetIndexBuffer(3,Values);
   IndicatorShortName("Ehlers\' Fisher transform ("+period+")");
   return(0);
}


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

int start()
{
   int  counted_bars=IndicatorCounted();
   int  i,limit;

   if(counted_bars < 0) return(-1);
   if(counted_bars > 0) counted_bars--;
           limit = Bars-counted_bars;

   //
   //
   //
   //
   //
        
   for(i=limit; i>=0; i--)
   { 
      Prices[i] = iMA(NULL,0,1,0,MODE_SMA,PriceType,i);
     
      //
      //
      //
      //
      //
                 
         double MaxH = Prices[ArrayMaximum(Prices,period,i)];
         double MinL = Prices[ArrayMinimum(Prices,period,i)];
         if (MaxH!=MinL)
               Values[i] = 0.33*2*((Prices[i]-MinL)/(MaxH-MinL)-0.5)+0.67*Values[i+1];
         else  Values[i] = 0.00;
               Values[i] = MathMin(MathMax(Values[i],-0.999),0.999);

      //
      //
      //
      //
      //

      buffer1[i] = 0.5*MathLog((1+Values[i])/(1-Values[i]))+0.5*buffer1[i+1];
      if (showSignalLine)
            buffer2[i] = buffer1[i+1];
   }
   return(0);
}

Dateien:

Bewerbungen

1
Entwickler 1
Bewertung
(180)
Projekte
301
30%
Schlichtung
54
24% / 56%
Frist nicht eingehalten
98
33%
Frei
2
Entwickler 2
Bewertung
(1859)
Projekte
3463
88%
Schlichtung
73
40% / 15%
Frist nicht eingehalten
265
8%
Frei
3
Entwickler 3
Bewertung
Projekte
0
0%
Schlichtung
2
0% / 100%
Frist nicht eingehalten
0
Frei
4
Entwickler 4
Bewertung
(2441)
Projekte
3076
66%
Schlichtung
77
48% / 14%
Frist nicht eingehalten
340
11%
Frei
5
Entwickler 5
Bewertung
(90)
Projekte
159
61%
Schlichtung
40
18% / 63%
Frist nicht eingehalten
70
44%
Frei
6
Entwickler 6
Bewertung
(219)
Projekte
405
60%
Schlichtung
13
38% / 23%
Frist nicht eingehalten
160
40%
Arbeitet
7
Entwickler 7
Bewertung
(70)
Projekte
86
31%
Schlichtung
1
100% / 0%
Frist nicht eingehalten
1
1%
Frei
8
Entwickler 8
Bewertung
(2102)
Projekte
2674
62%
Schlichtung
114
46% / 25%
Frist nicht eingehalten
421
16%
Beschäftigt
9
Entwickler 9
Bewertung
(54)
Projekte
164
43%
Schlichtung
43
47% / 16%
Frist nicht eingehalten
58
35%
Frei
10
Entwickler 10
Bewertung
(219)
Projekte
370
42%
Schlichtung
145
17% / 41%
Frist nicht eingehalten
124
34%
Frei
Ähnliche Aufträge
BUY AND SELL 30+ USD
Create an Expert Advisor that collaborates between these indicators ETR, MEv2 and STLv3 with these features 1. SL and TP 2. TIME FILTER 3. ETR, MEv2 and STLv3 PARAMETERS BUY ENTRY STEP 1. FIRST candle OPEN above Symphonie Trend Line STEP 2. Check Symphonie Extreme must indicate color BLUE STEP 3. Check Symphonie Emotion must indicate color BLUE STEP 4. Open trade with money management STEP 5. Trade open MUST BE 1
Hello, I have a protected Ninja trader Order Flow indicator and I was wondering if you can reverse engineer it to replicate the functionality. H ere are the specifications and indicator: https://docs.google.com/document/d/1KyYwQ7iTL2KWGhnZzxS1gObccu9LPMrGuMc9Mdk_3KY/edit?usp=sharing
I have an EA that need some changes including integrating the indicator code directly into the Expert Advisor. I will give the detailed doc once we settle on the candidate for the job . Please bid if you can work with the stated amount. Thanks
Hello, Need to convert Tradingview Indicator to MQL4 indicator. or if you have this one converted already, let me buy a copy please. If we're good, then will definitely buy it and ask to convert into EA on new order. Supertrend by KivancOzbilgic
Fix bug or modify an existing Trading view indicator to display correct. The indicator is working but not displaying/plotting all the information i want. So i want it adjusted to plot all the info
Here's a brief requirement you can use: **Description:** I am seeking an experienced MQL5 developer to create a (EA). The EA should include features for placing pending orders (Buy Stop and Sell Stop) based on market spread, managing trades effectively at the opening of new candlesticks, and implementing take profit and stop loss strategies. Additionally, I would like the option to adjust parameters based on market
I have an EA which i need to do below modifications. Variable Inputs to be added Order Type : Market , Pending Trade Type : Buy, Sell , Buy & Sell Pending Pips Step : ( Pips Value can be negative or positive to decide on what type of Pending Order ) // If trade type Buy is selected Close Type : Close All ( Bulk Close Option in MT5 ) , Close Individually Close Option : %of Equity , %of Balance , Amount $ , %of No
Add multiplier to grid recovery system. For example: Grid Trade 2-3 Spacing; 1.0 Multiplier Grid Trade 4-6 Spacing; 2.0 Multiplier Grid Trade 7+ Spacing; 1.6 Multiplier Need quick turn around. Need it done ASAP
Objects reader PIN 70 - 100 USD
Hi I have an indicator that create objects in the chart and using those following some rules the new indicator will create external global variables with value = 0 ( NONE ), = 1 ( BUY ) or = 2 ( SELL ). The global variable will use PIN external integer number . PINS are by now global variables (GV) whose name indicates the pair name and the PIN belonging and their value indicates it direction/action. PINS GV names
I want an indicator and its source code that returns the value of: - two moving averages in different selectable timeframes, with method Exponential and price calculation price_open; - Opening, closing, maximum and minimum of the candle in different timeframes And that returns the values ​​regardless in a chart of one minute. The input parameters: * select timeframe media1 = {1,2,3,4,5,...} * select timeframe media2

Projektdetails

Budget
10 USD
Für die Entwickler
9 - 9 USD
Ausführungsfristen
von 1 bis 2 Tag(e)