This commit is contained in:
Toh4iem9
2026-01-04 16:34:02 +01:00
parent bebed92f5a
commit c4f82a4bee
@@ -1,132 +1,188 @@
//+------------------------------------------------------------------+ //+------------------------------------------------------------------+
//| Inverse_Fisher_RSI_Calculator.mqh | //| Inverse_Fisher_RSI_Calculator.mqh |
//| Calculation engine for the Inverse Fisher Transform of RSI. | //| Calculation engine for the Inverse Fisher Transform of RSI. |
//| VERSION 2.00: Optimized for incremental calculation. |
//| Copyright 2025, xxxxxxxx | //| Copyright 2025, xxxxxxxx |
//+------------------------------------------------------------------+ //+------------------------------------------------------------------+
#property copyright "Copyright 2025, xxxxxxxx" #property copyright "Copyright 2025, xxxxxxxx"
#include <MyIncludes\HeikinAshi_Tools.mqh> #include <MyIncludes\RSI_Pro_Calculator.mqh>
#include <MyIncludes\MovingAverage_Engine.mqh>
//+==================================================================+ //+==================================================================+
//| |
//| CLASS 1: CInverseFisherRSICalculator (Base) | //| CLASS 1: CInverseFisherRSICalculator (Base) |
//| |
//+==================================================================+ //+==================================================================+
class CInverseFisherRSICalculator class CInverseFisherRSICalculator
{ {
protected: protected:
int m_rsi_period; int m_rsi_period;
int m_wma_period; int m_wma_period;
double m_price[];
virtual bool PreparePriceSeries(int rates_total, ENUM_APPLIED_PRICE price_type, const double &open[], const double &high[], const double &low[], const double &close[]); //--- Engines
CRSIProCalculator *m_rsi_calculator;
CMovingAverageCalculator m_wma_engine;
//--- Persistent Buffers for Incremental Calculation
double m_price[];
double m_rsi_buffer[];
double m_value1[]; // Scaled RSI
double m_value2[]; // Smoothed Scaled RSI
//--- Updated: Accepts start_index
virtual bool PreparePriceSeries(int rates_total, int start_index, ENUM_APPLIED_PRICE price_type, const double &open[], const double &high[], const double &low[], const double &close[]);
//--- Factory Method for RSI Engine
virtual void CreateRSIEngine(void);
public: public:
CInverseFisherRSICalculator(void) {}; CInverseFisherRSICalculator(void);
virtual ~CInverseFisherRSICalculator(void) {}; virtual ~CInverseFisherRSICalculator(void);
bool Init(int rsi_period, int wma_period); bool Init(int rsi_period, int wma_period);
void Calculate(int rates_total, ENUM_APPLIED_PRICE price_type, const double &open[], const double &high[], const double &low[], const double &close[],
//--- Updated: Accepts prev_calculated
void Calculate(int rates_total, int prev_calculated, ENUM_APPLIED_PRICE price_type, const double &open[], const double &high[], const double &low[], const double &close[],
double &ifish_buffer[]); double &ifish_buffer[]);
}; };
//+------------------------------------------------------------------+
//| Constructor |
//+------------------------------------------------------------------+
CInverseFisherRSICalculator::CInverseFisherRSICalculator(void)
{
m_rsi_calculator = NULL;
}
//+------------------------------------------------------------------+
//| Destructor |
//+------------------------------------------------------------------+
CInverseFisherRSICalculator::~CInverseFisherRSICalculator(void)
{
if(CheckPointer(m_rsi_calculator) != POINTER_INVALID)
delete m_rsi_calculator;
}
//+------------------------------------------------------------------+
//| Factory Method |
//+------------------------------------------------------------------+
void CInverseFisherRSICalculator::CreateRSIEngine(void)
{
m_rsi_calculator = new CRSIProCalculator();
}
//+------------------------------------------------------------------+
//| Init |
//+------------------------------------------------------------------+ //+------------------------------------------------------------------+
bool CInverseFisherRSICalculator::Init(int rsi_period, int wma_period) bool CInverseFisherRSICalculator::Init(int rsi_period, int wma_period)
{ {
m_rsi_period = (rsi_period < 2) ? 2 : rsi_period; m_rsi_period = (rsi_period < 2) ? 2 : rsi_period;
m_wma_period = (wma_period < 1) ? 1 : wma_period; m_wma_period = (wma_period < 1) ? 1 : wma_period;
CreateRSIEngine();
// Init RSI with dummy MA params (1, SMA, 2.0) as we only need the RSI line
if(CheckPointer(m_rsi_calculator) == POINTER_INVALID || !m_rsi_calculator.Init(m_rsi_period, 1, SMA, 2.0))
return false;
// Init WMA Engine (LWMA)
if(!m_wma_engine.Init(m_wma_period, LWMA))
return false;
return true; return true;
} }
//+------------------------------------------------------------------+ //+------------------------------------------------------------------+
void CInverseFisherRSICalculator::Calculate(int rates_total, ENUM_APPLIED_PRICE price_type, const double &open[], const double &high[], const double &low[], const double &close[], //| Main Calculation (Optimized) |
//+------------------------------------------------------------------+
void CInverseFisherRSICalculator::Calculate(int rates_total, int prev_calculated, ENUM_APPLIED_PRICE price_type, const double &open[], const double &high[], const double &low[], const double &close[],
double &ifish_buffer[]) double &ifish_buffer[])
{ {
if(rates_total < m_rsi_period + m_wma_period) int start_pos = m_rsi_period + m_wma_period;
return; if(rates_total <= start_pos)
if(!PreparePriceSeries(rates_total, price_type, open, high, low, close))
return; return;
double rsi_buffer[], value1[], value2[]; int start_index;
ArrayResize(rsi_buffer, rates_total); if(prev_calculated == 0)
ArrayResize(value1, rates_total); start_index = 0;
ArrayResize(value2, rates_total); else
start_index = prev_calculated - 1;
// Step 1: Calculate RSI (Wilder's method) // Resize Buffers
double sum_pos = 0, sum_neg = 0; if(ArraySize(m_price) != rates_total)
for(int i = 1; i < rates_total; i++)
{ {
double diff = m_price[i] - m_price[i-1]; ArrayResize(m_price, rates_total);
sum_pos = (sum_pos * (m_rsi_period - 1) + (diff > 0 ? diff : 0)) / m_rsi_period; ArrayResize(m_rsi_buffer, rates_total);
sum_neg = (sum_neg * (m_rsi_period - 1) + (diff < 0 ? -diff : 0)) / m_rsi_period; ArrayResize(m_value1, rates_total);
if(i >= m_rsi_period) ArrayResize(m_value2, rates_total);
{
if(sum_neg > 0)
rsi_buffer[i] = 100.0 - (100.0 / (1.0 + (sum_pos / sum_neg)));
else
rsi_buffer[i] = 100.0;
}
} }
// Step 2 & 3: Scale and Smooth with WMA if(!PreparePriceSeries(rates_total, start_index, price_type, open, high, low, close))
for(int i = m_rsi_period - 1; i < rates_total; i++) return;
//--- 1. Calculate RSI (Delegated to Engine)
double dummy1[], dummy2[], dummy3[];
// Note: RSI engine handles its own price preparation internally!
// We pass the raw OHLC arrays and price_type.
m_rsi_calculator.Calculate(rates_total, prev_calculated, price_type, open, high, low, close,
m_rsi_buffer, dummy1, dummy2, dummy3);
//--- 2. Scale RSI (Incremental)
// RSI valid from: m_rsi_period
int loop_start_scale = MathMax(m_rsi_period, start_index);
for(int i = loop_start_scale; i < rates_total; i++)
{ {
// Scale RSI from 0..100 to -5..+5 // Scale RSI from 0..100 to -5..+5
value1[i] = 0.1 * (rsi_buffer[i] - 50.0); m_value1[i] = 0.1 * (m_rsi_buffer[i] - 50.0);
// Smooth with WMA
if(i >= m_rsi_period - 1 + m_wma_period - 1)
{
double wma_sum = 0;
double weight_sum = 0;
for(int j = 0; j < m_wma_period; j++)
{
int weight = m_wma_period - j;
wma_sum += value1[i-j] * weight;
weight_sum += weight;
}
if(weight_sum > 0)
value2[i] = wma_sum / weight_sum;
}
} }
// Step 4: Apply Inverse Fisher Transform //--- 3. Smooth with WMA (Using Engine)
for(int i = m_rsi_period - 1 + m_wma_period - 1; i < rates_total; i++) // Offset: m_rsi_period
m_wma_engine.CalculateOnArray(rates_total, prev_calculated, m_value1, m_value2, m_rsi_period);
//--- 4. Apply Inverse Fisher Transform (Incremental)
// Valid from: m_rsi_period + m_wma_period - 1
int ifish_start = m_rsi_period + m_wma_period - 1;
int loop_start_ifish = MathMax(ifish_start, start_index);
for(int i = loop_start_ifish; i < rates_total; i++)
{ {
ifish_buffer[i] = (exp(2.0 * value2[i]) - 1.0) / (exp(2.0 * value2[i]) + 1.0); double x = m_value2[i];
// Avoid overflow with exp(2x)
if(x > 10)
x = 10;
if(x < -10)
x = -10;
double exp2x = exp(2.0 * x);
ifish_buffer[i] = (exp2x - 1.0) / (exp2x + 1.0);
} }
} }
//+------------------------------------------------------------------+ //+------------------------------------------------------------------+
bool CInverseFisherRSICalculator::PreparePriceSeries(int rates_total, ENUM_APPLIED_PRICE price_type, const double &open[], const double &high[], const double &low[], const double &close[]) //| Prepare Price (Standard - Optimized) |
//+------------------------------------------------------------------+
bool CInverseFisherRSICalculator::PreparePriceSeries(int rates_total, int start_index, ENUM_APPLIED_PRICE price_type, const double &open[], const double &high[], const double &low[], const double &close[])
{ {
ArrayResize(m_price, rates_total); // This method is just a placeholder for the base class.
ArrayCopy(m_price, close, 0, 0, rates_total); // Ehlers' example uses Close for RSI // The RSI calculator handles its own data preparation internally.
return true; return true;
} }
//+==================================================================+
//| CLASS 2: CInverseFisherRSICalculator_HA |
//+==================================================================+ //+==================================================================+
class CInverseFisherRSICalculator_HA : public CInverseFisherRSICalculator class CInverseFisherRSICalculator_HA : public CInverseFisherRSICalculator
{ {
private:
CHeikinAshi_Calculator m_ha_calculator;
protected: protected:
virtual bool PreparePriceSeries(int rates_total, ENUM_APPLIED_PRICE price_type, const double &open[], const double &high[], const double &low[], const double &close[]) override; virtual void CreateRSIEngine(void) override;
}; };
//+------------------------------------------------------------------+ //+------------------------------------------------------------------+
bool CInverseFisherRSICalculator_HA::PreparePriceSeries(int rates_total, ENUM_APPLIED_PRICE price_type, const double &open[], const double &high[], const double &low[], const double &close[]) //| Factory Method for HA RSI Engine |
//+------------------------------------------------------------------+
void CInverseFisherRSICalculator_HA::CreateRSIEngine(void)
{ {
double ha_open[], ha_high[], ha_low[], ha_close[]; m_rsi_calculator = new CRSIProCalculator_HA();
ArrayResize(ha_open, rates_total);
ArrayResize(ha_high, rates_total);
ArrayResize(ha_low, rates_total);
ArrayResize(ha_close, rates_total);
m_ha_calculator.Calculate(rates_total, open, high, low, close, ha_open, ha_high, ha_low, ha_close);
ArrayResize(m_price, rates_total);
ArrayCopy(m_price, ha_close, 0, 0, rates_total);
return true;
} }
//+------------------------------------------------------------------+ //+------------------------------------------------------------------+
//+------------------------------------------------------------------+ //+------------------------------------------------------------------+