mirror of
https://github.com/softwaredevelop/mql5.git
synced 2026-08-25 10:18:04 +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;
|
return;
|
||||||
|
|
||||||
double L0[], L1[], L2[], L3[];
|
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++)
|
for(int i = 1; i < rates_total; i++)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user