Files
Range-Bars-Charting/Include/AZ-INVEST/SDK/ICustomChartSettings.mqh
T

20 lines
1.0 KiB
Plaintext
Raw Normal View History

2020-02-23 16:21:15 +01:00
#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);
2020-03-11 17:04:08 +01:00
#ifdef USE_CUSTOM_SYMBOL
CUSTOM_SYMBOL_SETTINGS GetCustomSymbolSettings();
#else
ALERT_INFO_SETTINGS GetAlertInfoSettings(void);
CHART_INDICATOR_SETTINGS GetChartIndicatorSettings(void);
#endif
2020-02-23 16:21:15 +01:00
};