Polished DataProvider & Converter, RTTI field access

This commit is contained in:
Michael Schimmel
2025-07-15 01:56:44 +02:00
parent 4247fde7cd
commit 1a2b6cf8a0
15 changed files with 687 additions and 1044 deletions
+2 -2
View File
@@ -5,8 +5,6 @@ interface
type
TTimeframe = (S, S5, S15, S30, M, M2, M3, M5, M10, M15, M30, H, H2, H3, H4, H8, H12, D, D2, D3, W, MN, MN3, MN6, Y);
TIndicatorFunc<S, T> = reference to function(const Value: S): T;
// A data record for an Ask/Bid price pair.
TAskBidItem = packed record
Ask: Double;
@@ -23,6 +21,8 @@ type
constructor Create(AOpen, AHigh, ALow, AClose, AVolume: Double);
end;
TConstFunc<S, T> = reference to function(const Value: S): T;
implementation
{ TAskBidItem }