218 lines
8.3 KiB
MQL5
218 lines
8.3 KiB
MQL5
#include "..\Expert\ExpertSignalCustom.mqh"
|
|
// wizard description start
|
|
//+------------------------------------------------------------------+
|
|
//| Description of the class |
|
|
//| Title=Signals of indicator 'Accelerator Oscillator' |
|
|
//| Type=SignalAdvanced |
|
|
//| Name=Accelerator Oscillator |
|
|
//| ShortName=AC |
|
|
//| Class=CSignalAC |
|
|
//| Page=signal_ac |
|
|
//+------------------------------------------------------------------+
|
|
// wizard description end
|
|
//+------------------------------------------------------------------+
|
|
//| Class CSignalAC. |
|
|
//| Purpose: Class of generator of trade signals based on |
|
|
//| the 'Accelerator Oscillator' indicator. |
|
|
//| Is derived from the CExpertSignalCustom class. |
|
|
//+------------------------------------------------------------------+
|
|
class CSignalAC : public CExpertSignalCustom
|
|
{
|
|
protected:
|
|
CiAC m_ac; // object-indicator
|
|
//--- "weights" of market models (0-100)
|
|
int m_pattern_0; // model 0 "first analyzed bar has required color"
|
|
int m_pattern_1; // model 1 "there is a condition for entering the market"
|
|
int m_pattern_2; // model 2 "condition for entering the market has just appeared"
|
|
|
|
public:
|
|
CSignalAC(void);
|
|
~CSignalAC(void);
|
|
//--- methods of adjusting "weights" of market models
|
|
void Pattern_0(int value) { m_pattern_0 = value; }
|
|
void Pattern_1(int value) { m_pattern_1 = value; }
|
|
void Pattern_2(int value) { m_pattern_2 = value; }
|
|
void ApplyPatternWeight(int patternNumber, int weight);
|
|
//--- method of creating the indicator and timeseries
|
|
virtual bool InitIndicators(CIndicators *indicators);
|
|
//--- methods of checking if the market models are formed
|
|
virtual int LongCondition(void);
|
|
virtual int ShortCondition(void);
|
|
protected:
|
|
//--- method of initialization of the indicator
|
|
bool InitAC(CIndicators *indicators);
|
|
//--- methods of getting data
|
|
double AC(int ind) { return(m_ac.Main(ind)); }
|
|
double DiffAC(int ind) { return(AC(ind) - AC(ind + 1)); }
|
|
};
|
|
//+------------------------------------------------------------------+
|
|
//| Constructor |
|
|
//+------------------------------------------------------------------+
|
|
CSignalAC::CSignalAC(void) : m_pattern_0(10),
|
|
m_pattern_1(50),
|
|
m_pattern_2(30)
|
|
{
|
|
m_id = "AC";
|
|
m_pattern_count = 3;
|
|
}
|
|
//+------------------------------------------------------------------+
|
|
//| Destructor |
|
|
//+------------------------------------------------------------------+
|
|
CSignalAC::~CSignalAC(void)
|
|
{
|
|
}
|
|
//+------------------------------------------------------------------+
|
|
//| Create indicators. |
|
|
//+------------------------------------------------------------------+
|
|
bool CSignalAC::InitIndicators(CIndicators *indicators)
|
|
{
|
|
//--- check pointer
|
|
if(indicators == NULL)
|
|
return(false);
|
|
//--- initialization of indicators and timeseries of additional filters
|
|
if(!CExpertSignalCustom::InitIndicators(indicators))
|
|
return(false);
|
|
//--- create and initialize AC indicator
|
|
if(!InitAC(indicators))
|
|
return(false);
|
|
//--- ok
|
|
return(true);
|
|
}
|
|
//+------------------------------------------------------------------+
|
|
//| Initialize AC indicators. |
|
|
//+------------------------------------------------------------------+
|
|
bool CSignalAC::InitAC(CIndicators *indicators)
|
|
{
|
|
//--- check pointer
|
|
if(indicators == NULL)
|
|
return(false);
|
|
//--- add object to collection
|
|
if(!indicators.Add(GetPointer(m_ac)))
|
|
{
|
|
printf(__FUNCTION__ + ": error adding object");
|
|
return(false);
|
|
}
|
|
//--- initialize object
|
|
if(!m_ac.Create(m_symbol.Name(), m_period))
|
|
{
|
|
printf(__FUNCTION__ + ": error initializing object");
|
|
return(false);
|
|
}
|
|
//--- ok
|
|
return(true);
|
|
}
|
|
//+------------------------------------------------------------------+
|
|
//| "Voting" that price will grow. |
|
|
//+------------------------------------------------------------------+
|
|
int CSignalAC::LongCondition(void)
|
|
{
|
|
int result = 0;
|
|
int idx = StartIndex();
|
|
//--- if the first analyzed bar is "red", don't "vote" for buying
|
|
if(DiffAC(idx++) < 0.0)
|
|
return(result);
|
|
//--- first analyzed bar is "green" (the indicator has no objections to buying)
|
|
else
|
|
if(IS_PATTERN_USAGE(0))
|
|
{
|
|
result = m_pattern_0;
|
|
m_active_pattern = "Pattern_0";
|
|
}
|
|
//--- if the second analyzed bar is "red", there is no condition for buying
|
|
if(DiffAC(idx) < 0.0)
|
|
return(result);
|
|
//--- second analyzed bar is "green" (the condition for buying may be fulfilled)
|
|
//--- if the second analyzed bar is less than zero, we need to analyzed the third bar
|
|
if(AC(idx++) < 0.0)
|
|
{
|
|
//--- if the third analyzed bar is "red", there is no condition for buying
|
|
if(DiffAC(idx++) < 0.0)
|
|
return(result);
|
|
}
|
|
//--- there is a condition for buying
|
|
if(IS_PATTERN_USAGE(1))
|
|
{
|
|
result = m_pattern_1;
|
|
m_active_pattern = "Pattern_1";
|
|
}
|
|
//--- if the previously analyzed bar is "red", the condition for buying has just been fulfilled
|
|
if(IS_PATTERN_USAGE(2) && DiffAC(idx) < 0.0)
|
|
{
|
|
result = m_pattern_2;
|
|
m_active_pattern = "Pattern_2";
|
|
}
|
|
if(result != 0)
|
|
{
|
|
m_active_direction = "Buy";
|
|
}
|
|
//--- return the result
|
|
return(result);
|
|
}
|
|
//+------------------------------------------------------------------+
|
|
//| "Voting" that price will fall. |
|
|
//+------------------------------------------------------------------+
|
|
int CSignalAC::ShortCondition(void)
|
|
{
|
|
int result = 0;
|
|
int idx = StartIndex();
|
|
// If the first analyzed bar is "green," don't "vote" for selling
|
|
if(DiffAC(idx++) > 0.0)
|
|
return result;
|
|
// First analyzed bar is "red" (the indicator has no objections to selling)
|
|
else
|
|
if(IS_PATTERN_USAGE(0))
|
|
{
|
|
result = m_pattern_0;
|
|
m_active_pattern = "Pattern_0";
|
|
}
|
|
// If the second analyzed bar is "green," there is no condition for selling
|
|
if(DiffAC(idx) > 0.0)
|
|
return result;
|
|
// Second analyzed bar is "red" (the condition for selling may be fulfilled)
|
|
// If the second analyzed bar is greater than zero, we need to analyze the third bar
|
|
if(AC(idx++) > 0.0)
|
|
{
|
|
// If the third analyzed bar is "green," there is no condition for selling
|
|
if(DiffAC(idx++) > 0.0)
|
|
return result;
|
|
}
|
|
// There is a condition for selling
|
|
if(IS_PATTERN_USAGE(1))
|
|
{
|
|
result = m_pattern_1;
|
|
m_active_pattern = "Pattern_1";
|
|
}
|
|
// If the previously analyzed bar is "green," the condition for selling has just been fulfilled
|
|
if(IS_PATTERN_USAGE(2) && DiffAC(idx) > 0.0)
|
|
{
|
|
result = m_pattern_2;
|
|
m_active_pattern = "Pattern_2";
|
|
}
|
|
if(result != 0)
|
|
{
|
|
m_active_direction = "Sell";
|
|
}
|
|
// Return the result
|
|
return result;
|
|
}
|
|
//+------------------------------------------------------------------+
|
|
//| Set the specified pattern's weight to the specified value |
|
|
//+------------------------------------------------------------------+
|
|
void CSignalAC::ApplyPatternWeight(int patternNumber, int weight)
|
|
{
|
|
switch(patternNumber)
|
|
{
|
|
default:
|
|
break;
|
|
case 0:
|
|
Pattern_0(weight);
|
|
break;
|
|
case 1:
|
|
Pattern_1(weight);
|
|
break;
|
|
case 2:
|
|
Pattern_2(weight);
|
|
break;
|
|
}
|
|
}
|
|
//+------------------------------------------------------------------+
|