Hey Ikel,
Is your feature request related to a problem? Please describe.
Yes: I have this problem that my indicators should have the option to display status text 😜
Describe the solution you'd like
I would like that bot indicator have an optional field, maybe call it Caption, that could display status text.
- There should be a
Caption property
- There should be a
ShowCaption property
- Option 1: we change the
Caption before we step
- Option 2: we provide the caption on the last param of the step procedure
Example Usage
// Option 1
MyIndicator.Caption:= 'ETA: 1:00';
MyIndicator.Step(0);
// Option 2
TIndicator.Step(AStep: Integer; const ACaption: String = EmptyStr);
MyIndicator.Step(0, 'ETA: 1:00');
Cheers,
Gus