mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-07-27 17:27:43 +00:00
86fe32a682
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com> Co-authored-by: aider (openrouter/anthropic/claude-sonnet-4) <aider@aider.chat> Co-authored-by: Warp <agent@warp.dev>
15 lines
410 B
C#
15 lines
410 B
C#
// Mock types for TradingPlatform.BusinessLayer.Chart to enable testing
|
|
// These are minimal implementations for unit testing purposes only
|
|
|
|
namespace TradingPlatform.BusinessLayer.Chart;
|
|
|
|
/// <summary>
|
|
/// Coordinates converter interface
|
|
/// </summary>
|
|
public interface IChartWindowCoordinatesConverter
|
|
{
|
|
DateTime GetTime(int x);
|
|
double GetChartX(DateTime time);
|
|
double GetChartY(double value);
|
|
}
|