refactor: Robust handling of MTF history loading

This commit is contained in:
Toh4iem9
2025-10-16 18:10:32 +02:00
parent a769110f21
commit 420584d3b3
+119 -175
View File
@@ -4,7 +4,7 @@
//| | //| |
//+------------------------------------------------------------------+ //+------------------------------------------------------------------+
#property copyright "Copyright 2025, xxxxxxxx" #property copyright "Copyright 2025, xxxxxxxx"
#property version "2.40" #property version "2.50" // REFACTORED: Robust handling of MTF history loading
#property description "A clean, self-contained, object-oriented Murrey Math Lines indicator with MTF support." #property description "A clean, self-contained, object-oriented Murrey Math Lines indicator with MTF support."
#property indicator_chart_window #property indicator_chart_window
@@ -48,12 +48,21 @@ bool CMurreyMathCalculator::CalculateLevels(double &levels[])
double htf_high[], htf_low[]; double htf_high[], htf_low[];
// REFACTORED: Check available bars before copying to avoid unnecessary errors
int bars_available = (int)SeriesInfoInteger(m_symbol, m_timeframe, SERIES_BARS_COUNT);
if(bars_available < bars_to_copy)
{
// Silently fail, OnCalculate will try again on the next tick
return false;
}
int copied_high = CopyHigh(m_symbol, m_timeframe, 0, bars_to_copy, htf_high); int copied_high = CopyHigh(m_symbol, m_timeframe, 0, bars_to_copy, htf_high);
int copied_low = CopyLow(m_symbol, m_timeframe, 0, bars_to_copy, htf_low); int copied_low = CopyLow(m_symbol, m_timeframe, 0, bars_to_copy, htf_low);
// REFACTORED: Instead of printing an error, just return false.
// This indicates a temporary state, not a fatal error.
if(copied_high < bars_to_copy || copied_low < bars_to_copy) if(copied_high < bars_to_copy || copied_low < bars_to_copy)
{ {
Print("Error: Not enough history on ", EnumToString(m_timeframe), " to calculate Murrey Math.");
return false; return false;
} }
@@ -102,7 +111,6 @@ bool CMurreyMathCalculator::CalculateLevels(double &levels[])
if(fractal == 0) if(fractal == 0)
return false; return false;
double range = v2 - v1; double range = v2 - v1;
if(range <= 0) if(range <= 0)
return false; return false;
@@ -158,8 +166,7 @@ bool CMurreyMathCalculator::CalculateLevels(double &levels[])
} }
//+------------------------------------------------------------------+ //+------------------------------------------------------------------+
//| CLASS: CMurreyMathDrawer | //| CLASS: CMurreyMathDrawer (Unchanged) |
//| Handles the creation and management of chart objects. |
//+------------------------------------------------------------------+ //+------------------------------------------------------------------+
class CMurreyMathDrawer class CMurreyMathDrawer
{ {
@@ -169,30 +176,23 @@ private:
string m_font_face; string m_font_face;
int m_font_size; int m_font_size;
bool m_label_side_right; bool m_label_side_right;
color m_colors[13]; color m_colors[13];
int m_widths[13]; int m_widths[13];
string m_line_text[13]; string m_line_text[13];
void CreateOrMoveHLine(int index, double price); void CreateOrMoveHLine(int index, double price);
void CreateOrMoveText(int index, datetime time, double price); void CreateOrMoveText(int index, datetime time, double price);
public: public:
CMurreyMathDrawer(string prefix, string font, int size, bool right_side); CMurreyMathDrawer(string prefix, string font, int size, bool right_side);
~CMurreyMathDrawer(void); ~CMurreyMathDrawer(void);
void SetLineStyles(const color &colors[], const int &widths[]); void SetLineStyles(const color &colors[], const int &widths[]);
void DrawLevels(const datetime &time[], const double &levels[]); void DrawLevels(const datetime &time[], const double &levels[]);
}; };
//+------------------------------------------------------------------+ //+------------------------------------------------------------------+
//| CMurreyMathDrawer: Constructor | //| |
//+------------------------------------------------------------------+ //+------------------------------------------------------------------+
CMurreyMathDrawer::CMurreyMathDrawer(string prefix, string font, int size, bool right_side) : CMurreyMathDrawer::CMurreyMathDrawer(string prefix, string font, int size, bool right_side) : m_prefix(prefix), m_font_face(font), m_font_size(size), m_label_side_right(right_side)
m_prefix(prefix), m_font_face(font), m_font_size(size), m_label_side_right(right_side)
{ {
m_chart_id = ChartID(); m_chart_id = ChartID();
m_line_text[0] = "[-2/8]P Extreme Overshoot"; m_line_text[0] = "[-2/8]P Extreme Overshoot";
m_line_text[1] = "[-1/8]P Overshoot"; m_line_text[1] = "[-1/8]P Overshoot";
m_line_text[2] = "[0/8]P Ultimate Support"; m_line_text[2] = "[0/8]P Ultimate Support";
@@ -207,54 +207,38 @@ CMurreyMathDrawer::CMurreyMathDrawer(string prefix, string font, int size, bool
m_line_text[11] = "[+1/8]P Overshoot"; m_line_text[11] = "[+1/8]P Overshoot";
m_line_text[12] = "[+2/8]P Extreme Overshoot"; m_line_text[12] = "[+2/8]P Extreme Overshoot";
} }
//+------------------------------------------------------------------+ //+------------------------------------------------------------------+
//| CMurreyMathDrawer: Destructor (cleans up objects) | //| |
//+------------------------------------------------------------------+ //+------------------------------------------------------------------+
CMurreyMathDrawer::~CMurreyMathDrawer(void) CMurreyMathDrawer::~CMurreyMathDrawer(void) { ObjectsDeleteAll(m_chart_id, m_prefix); }
{
ObjectsDeleteAll(m_chart_id, m_prefix);
}
//+------------------------------------------------------------------+ //+------------------------------------------------------------------+
//| CMurreyMathDrawer: Set line styles | //| |
//+------------------------------------------------------------------+ //+------------------------------------------------------------------+
void CMurreyMathDrawer::SetLineStyles(const color &colors[], const int &widths[]) void CMurreyMathDrawer::SetLineStyles(const color &colors[], const int &widths[]) { ArrayCopy(m_colors, colors); ArrayCopy(m_widths, widths); }
{
ArrayCopy(m_colors, colors);
ArrayCopy(m_widths, widths);
}
//+------------------------------------------------------------------+ //+------------------------------------------------------------------+
//| CMurreyMathDrawer: Main drawing method | //| |
//+------------------------------------------------------------------+ //+------------------------------------------------------------------+
void CMurreyMathDrawer::DrawLevels(const datetime &time[], const double &levels[]) void CMurreyMathDrawer::DrawLevels(const datetime &time[], const double &levels[])
{ {
int rates_total = ArraySize(time); int rates_total = ArraySize(time);
if(rates_total < 2) if(rates_total < 2)
return; return;
int first_bar_idx = (int)ChartGetInteger(m_chart_id, CHART_FIRST_VISIBLE_BAR, 0); int first_bar_idx = (int)ChartGetInteger(m_chart_id, CHART_FIRST_VISIBLE_BAR, 0);
if(m_label_side_right) if(m_label_side_right)
{ {
first_bar_idx = 1; first_bar_idx = 1;
} }
if(first_bar_idx < 1 || first_bar_idx >= rates_total) if(first_bar_idx < 1 || first_bar_idx >= rates_total)
return; return;
datetime label_time = time[first_bar_idx - 1]; datetime label_time = time[first_bar_idx - 1];
for(int i = 0; i < 13; i++) for(int i = 0; i < 13; i++)
{ {
CreateOrMoveHLine(i, levels[i]); CreateOrMoveHLine(i, levels[i]);
CreateOrMoveText(i, label_time, levels[i]); CreateOrMoveText(i, label_time, levels[i]);
} }
} }
//+------------------------------------------------------------------+ //+------------------------------------------------------------------+
//| CMurreyMathDrawer: Helper to draw horizontal lines | //| |
//+------------------------------------------------------------------+ //+------------------------------------------------------------------+
void CMurreyMathDrawer::CreateOrMoveHLine(int index, double price) void CMurreyMathDrawer::CreateOrMoveHLine(int index, double price)
{ {
@@ -270,19 +254,14 @@ void CMurreyMathDrawer::CreateOrMoveHLine(int index, double price)
else else
{ {
ObjectMove(m_chart_id, name, 0, 0, price); ObjectMove(m_chart_id, name, 0, 0, price);
ObjectSetInteger(m_chart_id, name, OBJPROP_COLOR, m_colors[index]);
ObjectSetInteger(m_chart_id, name, OBJPROP_WIDTH, m_widths[index]);
} }
} }
//+------------------------------------------------------------------+ //+------------------------------------------------------------------+
//| CMurreyMathDrawer: Helper to draw text labels | //| |
//+------------------------------------------------------------------+ //+------------------------------------------------------------------+
void CMurreyMathDrawer::CreateOrMoveText(int index, datetime time, double price) void CMurreyMathDrawer::CreateOrMoveText(int index, datetime time, double price)
{ {
string name = m_prefix + "text_" + (string)index; string name = m_prefix + "text_" + (string)index;
ENUM_ANCHOR_POINT anchor = ANCHOR_LEFT_UPPER;
if(ObjectFind(m_chart_id, name) < 0) if(ObjectFind(m_chart_id, name) < 0)
{ {
ObjectCreate(m_chart_id, name, OBJ_TEXT, 0, time, price); ObjectCreate(m_chart_id, name, OBJ_TEXT, 0, time, price);
@@ -290,120 +269,87 @@ void CMurreyMathDrawer::CreateOrMoveText(int index, datetime time, double price)
ObjectSetInteger(m_chart_id, name, OBJPROP_FONTSIZE, m_font_size); ObjectSetInteger(m_chart_id, name, OBJPROP_FONTSIZE, m_font_size);
ObjectSetString(m_chart_id, name, OBJPROP_FONT, m_font_face); ObjectSetString(m_chart_id, name, OBJPROP_FONT, m_font_face);
ObjectSetInteger(m_chart_id, name, OBJPROP_COLOR, m_colors[index]); ObjectSetInteger(m_chart_id, name, OBJPROP_COLOR, m_colors[index]);
ObjectSetInteger(m_chart_id, name, OBJPROP_ANCHOR, anchor); ObjectSetInteger(m_chart_id, name, OBJPROP_ANCHOR, ANCHOR_LEFT_UPPER);
} }
else else
{ {
ObjectMove(m_chart_id, name, 0, time, price); ObjectMove(m_chart_id, name, 0, time, price);
ObjectSetInteger(m_chart_id, name, OBJPROP_COLOR, m_colors[index]);
} }
} }
//+------------------------------------------------------------------+ //+------------------------------------------------------------------+
//| CLASS: CMurreyMathController | //| CLASS: CMurreyMathController |
//| The main controller class that manages all components. |
//+------------------------------------------------------------------+ //+------------------------------------------------------------------+
class CMurreyMathController class CMurreyMathController
{ {
private: private:
CMurreyMathCalculator *m_calculator; CMurreyMathCalculator *m_calculator;
CMurreyMathDrawer *m_drawer; CMurreyMathDrawer *m_drawer;
double m_mml_levels[13]; double m_mml_levels[13];
public: public:
CMurreyMathController(void); CMurreyMathController(void);
~CMurreyMathController(void); ~CMurreyMathController(void);
bool Initialize(ENUM_TIMEFRAMES timeframe, int period, int stepBack, bool labelSideRight, string fontFace, int fontSize, string prefix);
bool Initialize(ENUM_TIMEFRAMES timeframe, int period, int stepBack, bool labelSideRight,
string fontFace, int fontSize, string prefix);
void SetLineStyles(const color &colors[], const int &widths[]); void SetLineStyles(const color &colors[], const int &widths[]);
bool Update(const datetime &time[]); // REFACTORED: Returns bool for success
void Update(const datetime &time[]);
}; };
//+------------------------------------------------------------------+ //+------------------------------------------------------------------+
//| CMurreyMathController: Constructor | //| |
//+------------------------------------------------------------------+ //+------------------------------------------------------------------+
CMurreyMathController::CMurreyMathController(void) : m_calculator(NULL), m_drawer(NULL) CMurreyMathController::CMurreyMathController(void) : m_calculator(NULL), m_drawer(NULL) { ArrayInitialize(m_mml_levels, 0.0); }
{
ArrayInitialize(m_mml_levels, 0.0);
}
//+------------------------------------------------------------------+ //+------------------------------------------------------------------+
//| CMurreyMathController: Destructor | //| |
//+------------------------------------------------------------------+ //+------------------------------------------------------------------+
CMurreyMathController::~CMurreyMathController(void) CMurreyMathController::~CMurreyMathController(void) { if(CheckPointer(m_calculator) != POINTER_INVALID) delete m_calculator; if(CheckPointer(m_drawer) != POINTER_INVALID) delete m_drawer; }
{
if(CheckPointer(m_calculator) != POINTER_INVALID)
delete m_calculator;
if(CheckPointer(m_drawer) != POINTER_INVALID)
delete m_drawer;
}
//+------------------------------------------------------------------+ //+------------------------------------------------------------------+
//| CMurreyMathController: Initialize all components | //| |
//+------------------------------------------------------------------+ //+------------------------------------------------------------------+
bool CMurreyMathController::Initialize(ENUM_TIMEFRAMES timeframe, int period, int stepBack, bool labelSideRight, bool CMurreyMathController::Initialize(ENUM_TIMEFRAMES timeframe, int period, int stepBack, bool labelSideRight, string fontFace, int fontSize, string prefix)
string fontFace, int fontSize, string prefix)
{ {
m_calculator = new CMurreyMathCalculator(_Symbol, timeframe, period, stepBack); m_calculator = new CMurreyMathCalculator(_Symbol, timeframe, period, stepBack);
m_drawer = new CMurreyMathDrawer(prefix, fontFace, fontSize, labelSideRight); m_drawer = new CMurreyMathDrawer(prefix, fontFace, fontSize, labelSideRight);
if(CheckPointer(m_calculator) == POINTER_INVALID || CheckPointer(m_drawer) == POINTER_INVALID) if(CheckPointer(m_calculator) == POINTER_INVALID || CheckPointer(m_drawer) == POINTER_INVALID)
{ {
Print("Failed to initialize Murrey Math components."); Print("Failed to initialize Murrey Math components.");
return false; return false;
} }
return true; return true;
} }
//+------------------------------------------------------------------+ //+------------------------------------------------------------------+
//| CMurreyMathController: Set line styles for the drawer | //| |
//+------------------------------------------------------------------+ //+------------------------------------------------------------------+
void CMurreyMathController::SetLineStyles(const color &colors[], const int &widths[]) void CMurreyMathController::SetLineStyles(const color &colors[], const int &widths[]) { if(CheckPointer(m_drawer) != POINTER_INVALID) m_drawer.SetLineStyles(colors, widths); }
// REFACTORED: Update now returns true on success, false on failure.
bool CMurreyMathController::Update(const datetime &time[])
{ {
if(CheckPointer(m_drawer) != POINTER_INVALID)
m_drawer.SetLineStyles(colors, widths);
}
//+------------------------------------------------------------------+
//| CMurreyMathController: Main update method |
//+------------------------------------------------------------------+
void CMurreyMathController::Update(const datetime &time[])
{
//--- Calculation and drawing are now a single, atomic operation
if(m_calculator.CalculateLevels(m_mml_levels)) if(m_calculator.CalculateLevels(m_mml_levels))
{ {
m_drawer.DrawLevels(time, m_mml_levels); m_drawer.DrawLevels(time, m_mml_levels);
return true; // Success
} }
return false; // Failure (e.g., not enough history yet)
} }
//--- Indicator Input Parameters --- //--- Indicator Input Parameters (Unchanged) ---
input int InpPeriod = 64; // Period for High/Low lookup on the selected timeframe input int InpPeriod = 64;
input ENUM_TIMEFRAMES InpUpperTimeframe = PERIOD_H4; // Timeframe for calculation (0 = Current) input ENUM_TIMEFRAMES InpUpperTimeframe = PERIOD_H4;
input int InpStepBack = 0; // Bar to start calculation from input int InpStepBack = 0;
enum enum_side { Left, Right }; enum enum_side { Left, Right };
input enum_side InpLabelSide = Left; input enum_side InpLabelSide = Left;
input group "Line Colors" input group "Line Colors"
input color InpClr_m2_8 = clrDimGray; // Extreme Overshoot input color InpClr_m2_8 = clrDimGray;
input color InpClr_m1_8 = clrDimGray; // Overshoot input color InpClr_m1_8 = clrDimGray;
input color InpClr_0_8 = clrDarkOrange; // Ultimate Support input color InpClr_0_8 = clrDarkOrange;
input color InpClr_1_8 = clrGoldenrod; // Weak Reverse input color InpClr_1_8 = clrGoldenrod;
input color InpClr_2_8 = clrFireBrick; // Strong Pivot Reverse input color InpClr_2_8 = clrFireBrick;
input color InpClr_3_8 = clrSeaGreen; // Bottom of Range input color InpClr_3_8 = clrSeaGreen;
input color InpClr_4_8 = clrRoyalBlue; // Major Pivot input color InpClr_4_8 = clrRoyalBlue;
input color InpClr_5_8 = clrSeaGreen; // Top of Range input color InpClr_5_8 = clrSeaGreen;
input color InpClr_6_8 = clrFireBrick; // Strong Pivot Reverse input color InpClr_6_8 = clrFireBrick;
input color InpClr_7_8 = clrGoldenrod; // Weak Reverse input color InpClr_7_8 = clrGoldenrod;
input color InpClr_8_8 = clrDarkOrange; // Ultimate Resistance input color InpClr_8_8 = clrDarkOrange;
input color InpClr_p1_8 = clrDimGray; // Overshoot input color InpClr_p1_8 = clrDimGray;
input color InpClr_p2_8 = clrDimGray; // Extreme Overshoot input color InpClr_p2_8 = clrDimGray;
input group "Line Widths" input group "Line Widths"
input int InpWdth_m2_8 = 1; input int InpWdth_m2_8 = 1;
input int InpWdth_m1_8 = 1; input int InpWdth_m1_8 = 1;
@@ -418,7 +364,6 @@ input int InpWdth_7_8 = 1;
input int InpWdth_8_8 = 1; input int InpWdth_8_8 = 1;
input int InpWdth_p1_8 = 1; input int InpWdth_p1_8 = 1;
input int InpWdth_p2_8 = 1; input int InpWdth_p2_8 = 1;
input group "Labels" input group "Labels"
input string InpFontFace = "Verdana"; input string InpFontFace = "Verdana";
input int InpFontSize = 10; input int InpFontSize = 10;
@@ -428,7 +373,7 @@ input string InpObjectPrefix = "MML-";
CMurreyMathController *g_murreyMath; CMurreyMathController *g_murreyMath;
//+------------------------------------------------------------------+ //+------------------------------------------------------------------+
//| Custom indicator initialization function | //| Custom indicator initialization function (Unchanged) |
//+------------------------------------------------------------------+ //+------------------------------------------------------------------+
int OnInit() int OnInit()
{ {
@@ -438,59 +383,45 @@ int OnInit()
Print("Error creating CMurreyMathController object."); Print("Error creating CMurreyMathController object.");
return(INIT_FAILED); return(INIT_FAILED);
} }
ENUM_TIMEFRAMES calc_timeframe = (InpUpperTimeframe == PERIOD_CURRENT) ? (ENUM_TIMEFRAMES)Period() : InpUpperTimeframe; ENUM_TIMEFRAMES calc_timeframe = (InpUpperTimeframe == PERIOD_CURRENT) ? (ENUM_TIMEFRAMES)Period() : InpUpperTimeframe;
if(!g_murreyMath.Initialize(calc_timeframe, InpPeriod, InpStepBack, (InpLabelSide == Right), InpFontFace, InpFontSize, InpObjectPrefix))
if(!g_murreyMath.Initialize(
calc_timeframe,
InpPeriod,
InpStepBack,
(InpLabelSide == Right),
InpFontFace,
InpFontSize,
InpObjectPrefix
))
{ {
return(INIT_FAILED); return(INIT_FAILED);
} }
color colors[13]; color colors[13];
int widths[13]; int widths[13];
colors[0]=InpClr_m2_8;
colors[0] = InpClr_m2_8; widths[0]=InpWdth_m2_8;
widths[0] = InpWdth_m2_8; colors[1]=InpClr_m1_8;
colors[1] = InpClr_m1_8; widths[1]=InpWdth_m1_8;
widths[1] = InpWdth_m1_8; colors[2]=InpClr_0_8;
colors[2] = InpClr_0_8; widths[2]=InpWdth_0_8;
widths[2] = InpWdth_0_8; colors[3]=InpClr_1_8;
colors[3] = InpClr_1_8; widths[3]=InpWdth_1_8;
widths[3] = InpWdth_1_8; colors[4]=InpClr_2_8;
colors[4] = InpClr_2_8; widths[4]=InpWdth_2_8;
widths[4] = InpWdth_2_8; colors[5]=InpClr_3_8;
colors[5] = InpClr_3_8; widths[5]=InpWdth_3_8;
widths[5] = InpWdth_3_8; colors[6]=InpClr_4_8;
colors[6] = InpClr_4_8; widths[6]=InpWdth_4_8;
widths[6] = InpWdth_4_8; colors[7]=InpClr_5_8;
colors[7] = InpClr_5_8; widths[7]=InpWdth_5_8;
widths[7] = InpWdth_5_8; colors[8]=InpClr_6_8;
colors[8] = InpClr_6_8; widths[8]=InpWdth_6_8;
widths[8] = InpWdth_6_8; colors[9]=InpClr_7_8;
colors[9] = InpClr_7_8; widths[9]=InpWdth_7_8;
widths[9] = InpWdth_7_8; colors[10]=InpClr_8_8;
colors[10] = InpClr_8_8; widths[10]=InpWdth_8_8;
widths[10] = InpWdth_8_8; colors[11]=InpClr_p1_8;
colors[11] = InpClr_p1_8; widths[11]=InpWdth_p1_8;
widths[11] = InpWdth_p1_8; colors[12]=InpClr_p2_8;
colors[12] = InpClr_p2_8; widths[12]=InpWdth_p2_8;
widths[12] = InpWdth_p2_8;
g_murreyMath.SetLineStyles(colors, widths); g_murreyMath.SetLineStyles(colors, widths);
return(INIT_SUCCEEDED); return(INIT_SUCCEEDED);
} }
//+------------------------------------------------------------------+ //+------------------------------------------------------------------+
//| Custom indicator deinitialization function | //| Custom indicator deinitialization function (Unchanged) |
//+------------------------------------------------------------------+ //+------------------------------------------------------------------+
void OnDeinit(const int reason) void OnDeinit(const int reason)
{ {
@@ -499,7 +430,7 @@ void OnDeinit(const int reason)
} }
//+------------------------------------------------------------------+ //+------------------------------------------------------------------+
//| Custom indicator iteration function | //| REFACTORED: Custom indicator iteration function |
//+------------------------------------------------------------------+ //+------------------------------------------------------------------+
int OnCalculate(const int rates_total, int OnCalculate(const int rates_total,
const int prev_calculated, const int prev_calculated,
@@ -512,15 +443,41 @@ int OnCalculate(const int rates_total,
const long &volume[], const long &volume[],
const int &spread[]) const int &spread[])
{ {
//--- For drawing logic, we MUST use a timeseries array to replicate the original code's behavior if(CheckPointer(g_murreyMath) == POINTER_INVALID)
return 0;
//--- This state variable tracks if the first successful calculation has happened
static bool is_initialized = false;
//--- Phase 1: Initialization Loop ---
// Keep trying on every tick until the first calculation is successful
if(!is_initialized)
{
if(g_murreyMath.Update(time))
{
is_initialized = true; // Success! Move to maintenance phase.
ChartRedraw();
}
else
{
// Data not ready yet, try again on the next OnCalculate call.
// We can draw a "Loading..." text to inform the user.
Comment("Murrey Math: Loading ", EnumToString(InpUpperTimeframe), " data...");
return(rates_total);
}
}
//--- Phase 2: Maintenance Mode ---
// Once initialized, only update on new HTF bars or chart scrolls.
Comment(""); // Clear the "Loading..." message
ArraySetAsSeries(time, true); ArraySetAsSeries(time, true);
ENUM_TIMEFRAMES calc_timeframe = (InpUpperTimeframe == PERIOD_CURRENT) ? (ENUM_TIMEFRAMES)Period() : InpUpperTimeframe; ENUM_TIMEFRAMES calc_timeframe = (InpUpperTimeframe == PERIOD_CURRENT) ? (ENUM_TIMEFRAMES)Period() : InpUpperTimeframe;
static datetime last_htf_bar_time = 0; static datetime last_htf_bar_time = 0;
datetime htf_time[]; datetime htf_time[];
bool new_htf_bar = false; bool new_htf_bar = false;
if(CopyTime(_Symbol, calc_timeframe, 0, 1, htf_time) > 0) if(CopyTime(_Symbol, calc_timeframe, 0, 1, htf_time) > 0)
{ {
if(htf_time[0] > last_htf_bar_time) if(htf_time[0] > last_htf_bar_time)
@@ -530,28 +487,15 @@ int OnCalculate(const int rates_total,
} }
} }
//--- Recalculate on a new higher timeframe bar OR on the very first run static int last_first_visible_bar = -1;
if(new_htf_bar || prev_calculated == 0) int current_first_visible_bar = (int)ChartGetInteger(0, CHART_FIRST_VISIBLE_BAR, 0);
bool chart_scrolled = (current_first_visible_bar != last_first_visible_bar);
last_first_visible_bar = current_first_visible_bar;
if(new_htf_bar || chart_scrolled)
{ {
if(CheckPointer(g_murreyMath) != POINTER_INVALID) g_murreyMath.Update(time);
{ ChartRedraw();
g_murreyMath.Update(time);
}
}
//--- On chart scroll, we need to reposition the labels
else
{
static int last_first_visible_bar = -1;
int current_first_visible_bar = (int)ChartGetInteger(0, CHART_FIRST_VISIBLE_BAR, 0);
if(current_first_visible_bar != last_first_visible_bar)
{
if(CheckPointer(g_murreyMath) != POINTER_INVALID)
{
//--- We don't need to recalculate, just redraw the objects
g_murreyMath.Update(time);
}
last_first_visible_bar = current_first_visible_bar;
}
} }
return(rates_total); return(rates_total);