gitextract_kb5h78b7/ ├── LICENSE ├── MarketProfile/ │ ├── MarketProfile/ │ │ ├── Calculator/ │ │ │ ├── MarketProfileCalculator.cs │ │ │ └── MatrixPoint.cs │ │ ├── Enums/ │ │ │ ├── AlertCheckBar.cs │ │ │ ├── AlertTypes.cs │ │ │ ├── Direction.cs │ │ │ ├── PilingMode.cs │ │ │ ├── SatSunSolution.cs │ │ │ ├── SessionPeriod.cs │ │ │ ├── SessionsToDrawRays.cs │ │ │ ├── SinglePrintType.cs │ │ │ ├── Transitions.cs │ │ │ └── WaysToStopRays.cs │ │ ├── EventArgs/ │ │ │ └── CalculateEventArgs.cs │ │ ├── Helpers.cs │ │ ├── Interfaces/ │ │ │ └── IIndicatorResources.cs │ │ ├── ManagersAndFeatures/ │ │ │ ├── AlertManager.cs │ │ │ ├── HideRaysFromInvisibleSessionsFeature.cs │ │ │ ├── HotkeyStateManager.cs │ │ │ ├── NewHighLowManager.cs │ │ │ ├── OutputDevelopingValuesManager.cs │ │ │ ├── SeamlessScrollingManager.cs │ │ │ └── SessionChangeManager.cs │ │ ├── MarketProfile.cs │ │ ├── MarketProfile.csproj │ │ ├── MarketProfileRenderer.cs │ │ ├── Models/ │ │ │ ├── MarketProfileModel.cs │ │ │ ├── MarketProfileSession.cs │ │ │ └── SessionState.cs │ │ ├── RangeCalculators/ │ │ │ ├── AnnualSessionProfileStrategy.cs │ │ │ ├── DailySessionProfileStrategy.cs │ │ │ ├── IRenderingModesResources.cs │ │ │ ├── ISessionProfileStrategy.cs │ │ │ ├── IntradaySessionProfileStrategy.cs │ │ │ ├── MonthlySessionProfileStrategy.cs │ │ │ ├── QuarterlySessionProfileStrategy.cs │ │ │ ├── RectangleSessionProfileStrategy.cs │ │ │ ├── SemiannualSessionProfileStrategy.cs │ │ │ ├── SessionProfileStrategyFactory.cs │ │ │ ├── SessionRange.cs │ │ │ └── WeeklySessionProfileStrategy.cs │ │ └── RectangleModeProcessor.cs │ └── MarketProfile.sln ├── MarketProfile.mq4 ├── MarketProfile.mq5 └── README.md