20 lines
1.0 KiB
Plaintext
20 lines
1.0 KiB
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);
|
|
|
|
#ifdef USE_CUSTOM_SYMBOL
|
|
CUSTOM_SYMBOL_SETTINGS GetCustomSymbolSettings();
|
|
#else
|
|
ALERT_INFO_SETTINGS GetAlertInfoSettings(void);
|
|
CHART_INDICATOR_SETTINGS GetChartIndicatorSettings(void);
|
|
#endif
|
|
};
|