diff --git a/Scripts/MyScripts/Market_Scanner_Pro.mq5 b/Scripts/MyScripts/Market_Scanner_Pro.mq5 index fe9ae23..dccca56 100644 --- a/Scripts/MyScripts/Market_Scanner_Pro.mq5 +++ b/Scripts/MyScripts/Market_Scanner_Pro.mq5 @@ -1,12 +1,12 @@ //+------------------------------------------------------------------+ //| Market_Scanner_Pro.mq5 | -//| QuantScan 7.1 - Refined Logic | +//| QuantScan 7.2 - Signed Velocity | //| Copyright 2026, xxxxxxxx | //+------------------------------------------------------------------+ #property copyright "Copyright 2026, xxxxxxxx" -#property version "7.10" // Moved Session Distances to Flow Layer (M15) +#property version "7.20" // Velocity is now Directional (Signed) #property description "Exports 'QuantScan 7.0' dataset for LLM Analysis." -#property description "Includes Breadth Score and Cost Metrics." +#property description "Includes Breadth, Cost, and Velocity Vector." #property script_show_inputs //--- Includes @@ -604,12 +604,16 @@ double Calc_Velocity(const double &close[], double atr, int period) if(atr == 0) return 0; int total = ArraySize(close); - if(total <= period+2) + if(total <= period + 2) return 0; - double sum_move = 0; - for(int i=0; i