mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-07-30 02:27:43 +00:00
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);
|
||
|
|
}
|