mirror of
https://github.com/softwaredevelop/mql5.git
synced 2026-08-16 05:48:05 +00:00
refactor: Ehlers time warp
This commit is contained in:
@@ -36,7 +36,8 @@ void CLaguerreRSICalculator::Calculate(int rates_total, ENUM_APPLIED_PRICE price
|
||||
return;
|
||||
|
||||
double L0[], L1[], L2[], L3[];
|
||||
m_engine.CalculateFilter(rates_total, price_type, open, high, low, close, L0, L1, L2, L3);
|
||||
double dummy_filt[]; // Dummy buffer to satisfy the engine's new signature
|
||||
m_engine.CalculateFilter(rates_total, price_type, open, high, low, close, L0, L1, L2, L3, dummy_filt);
|
||||
|
||||
for(int i = 1; i < rates_total; i++)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user