2021-05-10 18:11:10 +02:00
|
|
|
#ifdef P_RENKO_BR_PRO
|
2020-09-29 11:26:32 +02:00
|
|
|
#include <az-invest/sdk/CustomChartInputsBR.mqh>
|
|
|
|
|
#else
|
|
|
|
|
#include <az-invest/sdk/CustomChartInputs.mqh>
|
|
|
|
|
#endif
|
2020-02-23 16:21:15 +01:00
|
|
|
|
|
|
|
|
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
|
|
|
};
|
|
|
|
|
�
|