
MACD इंडिकेटर के लिए यह विशेष कैंडल बार आपको यह दर्शाता है कि MACD शून्य स्तर (0) के ऊपर या नीचे है। यह जानकारी ट्रेडरों के लिए अत्यंत महत्वपूर्ण है, क्योंकि यह बाजार की दिशा को समझने में मदद करता है।
कन्फ़िगर करने योग्य पैरामीटर्स:
- MACD स्तर
- ईमेल अलर्ट
- ध्वनि अलर्ट
- पुश नोटिफिकेशन
यह इंडिकेटर आपको MACD के स्तर को देखने की सुविधा देता है, जो आपके ट्रेडिंग निर्णयों में मदद करेगा।
इंडिकेटर की सेटिंग्स को समायोजित करने के लिए आप निम्नलिखित कोड का उपयोग कर सकते हैं:
#property copyright "MACD Above Below Zero Color Bars"
#property copyright "ckart1.simplesite.com"
#property copyright "Copyright 2015, MetaQuotes Software Corp."
#property link "https://www.mql5.com"
#property version "1.00"
#property strict
#include <stdlib.mqh>
#include <stderror.mqh>
//--- इंडिकेटर सेटिंग्स
#property indicator_chart_window
#property indicator_buffers 8
#property indicator_type1 DRAW_HISTOGRAM
#property indicator_style1 STYLE_SOLID
#property indicator_width1 3
#property indicator_color1 0xFF2600
#property indicator_label1 "MACD Above Zero"
#property indicator_type2 DRAW_HISTOGRAM
#property indicator_style2 STYLE_SOLID
#property indicator_width2 3
#property indicator_color2 0xFF0303
#property indicator_label2 "MACD Above Zero"
#property indicator_type3 DRAW_HISTOGRAM
#property indicator_style3 STYLE_SOLID
#property indicator_width3 1
#property indicator_color3 0xFF0033
#property indicator_label3 "MACD Above Zero"
#property indicator_type4 DRAW_HISTOGRAM
#property indicator_style4 STYLE_SOLID
#property indicator_width4 1
#property indicator_color4 0xFF0059
#property indicator_label4 "MACD Above Zero"
#property indicator_type5 DRAW_HISTOGRAM
#property indicator_style5 STYLE_SOLID
#property indicator_width5 3
#property indicator_color5 0x0000FF
#property indicator_label5 "MACD Below Zero"
#property indicator_type6 DRAW_HISTOGRAM
#property indicator_style6 STYLE_SOLID
#property indicator_width6 3
#property indicator_color6 0x0000FF
#property indicator_label6 "MACD Below Zero"
#property indicator_type7 DRAW_HISTOGRAM
#property indicator_style7 STYLE_SOLID
#property indicator_width7 1
#property indicator_color7 0x0000FF
#property indicator_label7 "MACD Below Zero"
#property indicator_type8 DRAW_HISTOGRAM
#property indicator_style8 STYLE_SOLID
#property indicator_width8 1
#property indicator_color8 0x0000FF
#property indicator_label8 "MACD Below Zero"
//--- इंडिकेटर बफर
double Buffer1[];
double Buffer2[];
double Buffer3[];
double Buffer4[];
double Buffer5[];
double Buffer6[];
double Buffer7[];
double Buffer8[];
extern int Fast_EMA = 12;
extern int Slow_EMA2 = 26;
extern int MACD_SMA3 = 9;
datetime time_alert; // अलर्ट भेजने के लिए प्रयोग किया जाता है
extern bool Send_Email = false;
extern bool Audible_Alerts = true;
extern bool Push_Notifications = false;
double myPoint; // OnInit में प्रारंभ किया जाता है
void myAlert(string type, string message)
{
if(type == "print")
Print(message);
else if(type == "error")
{
Print(type+" | MACD Above Below Zero @ "+Symbol()+","+Period()+" | "+message);
}
else if(type == "order")
{
}
else if(type == "modify")
{
}
else if(type == "indicator")
{
Print(type+" | MACD Above Below Zero @ "+Symbol()+","+Period()+" | "+message);
if(Audible_Alerts) Alert(type+" | MACD Above Below Zero @ "+Symbol()+","+Period()+" | "+message);
if(Send_Email) SendMail("MACD Above Below Bars", type+" | Gann Arrow @ "+Symbol()+","+Period()+" | "+message);
if(Push_Notifications) SendNotification(type+" | MACD Above Below Zero @ "+Symbol()+","+Period()+" | "+message);
}
}
//+------------------------------------------------------------------+
//| कस्टम इंडिकेटर प्रारंभिककरण फ़ंक्शन |
//+------------------------------------------------------------------+
int OnInit()
{
IndicatorBuffers(8);
SetIndexBuffer(0, Buffer1);
SetIndexEmptyValue(0, 0);
SetIndexBuffer(1, Buffer2);
SetIndexEmptyValue(1, 0);
SetIndexBuffer(2, Buffer3);
SetIndexEmptyValue(2, 0);
SetIndexBuffer(3, Buffer4);
SetIndexEmptyValue(3, 0);
SetIndexBuffer(4, Buffer5);
SetIndexEmptyValue(4, 0);
SetIndexBuffer(5, Buffer6);
SetIndexEmptyValue(5, 0);
SetIndexBuffer(6, Buffer7);
SetIndexEmptyValue(6, 0);
SetIndexBuffer(7, Buffer8);
SetIndexEmptyValue(7, 0);
//myPoint को प्रारंभ करें
myPoint = Point();
if(Digits() == 5 || Digits() == 3)
{
myPoint *= 10;
}
return(INIT_SUCCEEDED);
}
//+------------------------------------------------------------------+
//| कस्टम इंडिकेटर पुनरावृत्ति फ़ंक्शन |
//+------------------------------------------------------------------+
int OnCalculate(const int rates_total,
const int prev_calculated,
const datetime& time[],
const double& open[],
const double& high[],
const double& low[],
const double& close[],
const long& tick_volume[],
const long& volume[],
const int& spread[])
{
int limit = rates_total - prev_calculated;
//--- 0 से rates_total तक गिनती
ArraySetAsSeries(Buffer1, true);
ArraySetAsSeries(Buffer2, true);
ArraySetAsSeries(Buffer3, true);
ArraySetAsSeries(Buffer4, true);
ArraySetAsSeries(Buffer5, true);
ArraySetAsSeries(Buffer6, true);
ArraySetAsSeries(Buffer7, true);
ArraySetAsSeries(Buffer8, true);
//--- प्रारंभिक शून्य
if(prev_calculated < 1)
{
ArrayInitialize(Buffer1, 0);
ArrayInitialize(Buffer2, 0);
ArrayInitialize(Buffer3, 0);
ArrayInitialize(Buffer4, 0);
ArrayInitialize(Buffer5, 0);
ArrayInitialize(Buffer6, 0);
ArrayInitialize(Buffer7, 0);
ArrayInitialize(Buffer8, 0);
}
else
limit++;
//--- मुख्य लूप
for(int i = limit-1; i >= 0; i--)
{
if (i >= MathMin(1000-1, rates_total-1-50)) continue; // "Array out of range" या धीमी गणना से बचने के लिए कुछ पुराने दरों को छोड़ दें
//इंडिकेटर बफर 1
if(iMACD(NULL, PERIOD_CURRENT, Fast_EMA, Slow_EMA2, MACD_SMA3, PRICE_CLOSE, MODE_MAIN, i) > 0 //MACD > निश्चित मान
)
{
Buffer1[i] = Open[i]; // कैंडलस्टिक ओपन पर इंडिकेटर मान सेट करें
if(i == 0 && Time[0] != time_alert) { myAlert("indicator", "MACD Above Above Zero"); time_alert = Time[0]; } // तात्कालिक अलर्ट, केवल बार प्रति एक बार
}
else
{
Buffer1[i] = 0;
}
//इंडिकेटर बफर 2
if(iMACD(NULL, PERIOD_CURRENT, Fast_EMA, Slow_EMA2, MACD_SMA3, PRICE_CLOSE, MODE_MAIN, i) > 0 //MACD > निश्चित मान
)
{
Buffer2[i] = Close[i]; // कैंडलस्टिक क्लोज पर इंडिकेटर मान सेट करें
if(i == 0 && Time[0] != time_alert) { myAlert("indicator", "MACD Above Above Zero"); time_alert = Time[0]; } // तात्कालिक अलर्ट, केवल बार प्रति एक बार
}
else
{
Buffer2[i] = 0;
}
//इंडिकेटर बफर 3
if(iMACD(NULL, PERIOD_CURRENT, Fast_EMA, Slow_EMA2, MACD_SMA3, PRICE_CLOSE, MODE_MAIN, i) > 0 //MACD > निश्चित मान
)
{
Buffer3[i] = High[i]; // कैंडलस्टिक हाई पर इंडिकेटर मान सेट करें
if(i == 0 && Time[0] != time_alert) { myAlert("indicator", "MACD Above Above Zero"); time_alert = Time[0]; } // तात्कालिक अलर्ट, केवल बार प्रति एक बार
}
else
{
Buffer3[i] = 0;
}
//इंडिकेटर बफर 4
if(iMACD(NULL, PERIOD_CURRENT, Fast_EMA, Slow_EMA2, MACD_SMA3, PRICE_CLOSE, MODE_MAIN, i) > 0 //MACD > निश्चित मान
)
{
Buffer4[i] = Low[i]; // कैंडलस्टिक लो पर इंडिकेटर मान सेट करें
if(i == 0 && Time[0] != time_alert) { myAlert("indicator", "MACD Above Above Zero"); time_alert = Time[0]; } // तात्कालिक अलर्ट, केवल बार प्रति एक बार
}
else
{
Buffer4[i] = 0;
}
//इंडिकेटर बफर 5
if(iMACD(NULL, PERIOD_CURRENT, Fast_EMA, Slow_EMA2, MACD_SMA3, PRICE_CLOSE, MODE_MAIN, i) < 0 //MACD < निश्चित मान
)
{
Buffer5[i] = Open[i]; // कैंडलस्टिक ओपन पर इंडिकेटर मान सेट करें
if(i == 0 && Time[0] != time_alert) { myAlert("indicator", "MACD Above Below Zero"); time_alert = Time[0]; } // तात्कालिक अलर्ट, केवल बार प्रति एक बार
}
else
{
Buffer5[i] = 0;
}
//इंडिकेटर बफर 6
if(iMACD(NULL, PERIOD_CURRENT, Fast_EMA, Slow_EMA2, MACD_SMA3, PRICE_CLOSE, MODE_MAIN, i) < 0 //MACD < निश्चित मान
)
{
Buffer6[i] = Close[i]; // कैंडलस्टिक क्लोज पर इंडिकेटर मान सेट करें
if(i == 0 && Time[0] != time_alert) { myAlert("indicator", "MACD Above Below Zero"); time_alert = Time[0]; } // तात्कालिक अलर्ट, केवल बार प्रति एक बार
}
else
{
Buffer6[i] = 0;
}
//इंडिकेटर बफर 7
if(iMACD(NULL, PERIOD_CURRENT, Fast_EMA, Slow_EMA2, MACD_SMA3, PRICE_CLOSE, MODE_MAIN, i) < 0 //MACD < निश्चित मान
)
{
Buffer7[i] = High[i]; // कैंडलस्टिक हाई पर इंडिकेटर मान सेट करें
if(i == 0 && Time[0] != time_alert) { myAlert("indicator", "MACD Above Below Zero"); time_alert = Time[0]; } // तात्कालिक अलर्ट, केवल बार प्रति एक बार
}
else
{
Buffer7[i] = 0;
}
//इंडिकेटर बफर 8
if(iMACD(NULL, PERIOD_CURRENT, Fast_EMA, Slow_EMA2, MACD_SMA3, PRICE_CLOSE, MODE_MAIN, i) < 0 //MACD < निश्चित मान
)
{
Buffer8[i] = Low[i]; // कैंडलस्टिक लो पर इंडिकेटर मान सेट करें
if(i == 0 && Time[0] != time_alert) { myAlert("indicator", "MACD Above Below Zero"); time_alert = Time[0]; } // तात्कालिक अलर्ट, केवल बार प्रति एक बार
}
else
{
Buffer8[i] = 0;
}
}
return(rates_total);
}
//+------------------------------------------------------------------+