16 lines
800 B
Plaintext
16 lines
800 B
Plaintext
#include <AZ-INVEST/SDK/CommonSettings.mqh>
|
|
#include <az-invest/sdk/CustomChartInputs.mqh>
|
|
|
|
interface ICustomChartSettings
|
|
{
|
|
int GetHandle();
|
|
void Set();
|
|
void Save();
|
|
bool Load();
|
|
void Delete();
|
|
bool Changed(double currentRuntimeId);
|
|
|
|
ALERT_INFO_SETTINGS GetAlertInfoSettings(void);
|
|
CHART_INDICATOR_SETTINGS GetChartIndicatorSettings(void);
|
|
};
|