赫茲股票交易軟件:監(jiān)視多幣種的交易信號2---應(yīng)用程序可視部分的實現(xiàn)
設(shè)置步驟 1:品種
根據(jù)應(yīng)用程序結(jié)構(gòu),在首次啟動期間應(yīng)用程序設(shè)置的第一步即創(chuàng)建一個選擇品種的界面,之后會搜索依此創(chuàng)建的交易信號。 在上一篇文章的末尾,我們創(chuàng)建了一個應(yīng)用程序框架,現(xiàn)繼續(xù)在此基礎(chǔ)上操作。 我們繼續(xù)開發(fā)應(yīng)用程序。 首先,我們將定義實現(xiàn)此應(yīng)用程序部分所需的主要元素組:
赫茲股票交易軟件
應(yīng)用程序窗口。
快速選擇品種。
輸入字段分組。
品種分組的“保存”和“加載”按鈕。
所有可用品種的完整列表呈現(xiàn)為復(fù)選框,文本標(biāo)簽表示品種名稱。
“Next” 按鈕將切換到設(shè)置的第二步:時間幀選擇。
早前創(chuàng)建的文件結(jié)構(gòu)如下所示:

編輯
圖例 1 應(yīng)用程序文件結(jié)構(gòu)。
首先,打開 SignalMonitor.mq5 應(yīng)用程序文件,并在其中添加輸入?yún)?shù)。 在 MetaTrader 5 終端中直接運行該應(yīng)用程序時,您能夠設(shè)置參數(shù)。 另外,聲明先前所創(chuàng)建 CProgram 類的實例,并初始化一些變量。 如下編輯文件:赫茲股票交易軟件
//+------------------------------------------------------------------+ //| ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?SignalMonitor.mq5 | //| ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?Copyright 2019, Alexander Fedosov | //| ? ? ? ? ? ? ? ? ? ? ? ? ? https://www.mql5.com/en/users/alex2356 | //+------------------------------------------------------------------+ #property copyright "Copyright 2019, Alexander Fedosov" #property link ? ? ?"https://www.mql5.com/en/users/alex2356" #property version ? "1.00" //--- Include application class #include "Program.mqh" //+------------------------------------------------------------------+ //| Expert Advisor input parameters ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?| //+------------------------------------------------------------------+ input int ? ? ? ? ? ? ? ? ?Inp_BaseFont ? ? ?= ?10; ? ? ? ? ? ? ? ? ?// Basic font input color ? ? ? ? ? ? ? ?Caption ? ? ? ? ? = ?C'0,130,225'; ? ? ? ?// Caption color input color ? ? ? ? ? ? ? ?Background ? ? ? ?= ?clrWhiteSmoke; ? ? ? // Background color //--- CProgram program; ulong tick_counter; //+------------------------------------------------------------------+ //| Expert initialization function ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? | //+------------------------------------------------------------------+ int OnInit(void) { //--- ? tick_counter=GetTickCount(); //--- Initialize class variables ? program.OnInitEvent(); ? program.m_base_font_size=Inp_BaseFont; ? program.m_background=Background; ? program.m_caption=Caption; //--- Set up the trading panel ? if(!program.CreateGUI()) ? { ? ? ?Print(__FUNCTION__," > Failed to create graphical interface!"); ? ? ?return(INIT_FAILED); ? } //--- Initialization completed successfully ? return(INIT_SUCCEEDED); } //+------------------------------------------------------------------+ //| Expert deinitialization function ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? | //+------------------------------------------------------------------+ void OnDeinit(const int reason) { ? program.OnDeinitEvent(reason); } //+------------------------------------------------------------------+ //| Timer function ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? | //+------------------------------------------------------------------+ void OnTimer(void) { ? program.OnTimerEvent(); } //+------------------------------------------------------------------+ //| ChartEvent function ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?| //+------------------------------------------------------------------+ void OnChartEvent(const int ? ?id, ? ? ? ? ? ? ? ? ?const long ? &lparam, ? ? ? ? ? ? ? ? ?const double &dparam, ? ? ? ? ? ? ? ? ?const string &sparam) { ? program.ChartEvent(id,lparam,dparam,sparam); ? //--- ? if(id==CHARTEVENT_CUSTOM+ON_END_CREATE_GUI) ? { ? ? ?Print("End in ",GetTickCount()-tick_counter," ms"); ? } } //+------------------------------------------------------------------+
從代碼中可以看出,加入了三個輸入?yún)?shù):
字號。
應(yīng)用程序窗口的標(biāo)頭顏色。
應(yīng)用程序窗口和元素的背景色。
接著,聲明 CProgram 的類實例,并命名為 program,和變量 tick_counter(僅用于顯示有關(guān)應(yīng)用程序啟動時間的信息)。 進而,在 OnInit() 方法中,我們初始化類變量,把應(yīng)用程序輸入?yún)?shù)賦值給它們。 此外還要調(diào)用 CreateGUI() 基礎(chǔ)方法,它將啟動應(yīng)用程序。
赫茲股票交易軟件
不過,若您嘗試立即編譯打開的文件,會收到編譯錯誤,示意在 CProgram 類中找不到變量 赫茲股票交易軟件m_base_font_size、m_background、m_caption 和 CreateGUI() 方法。 故此,打開 Program.mqh 文件,在 CProgram 類里實現(xiàn)它們。 首先,加入上述變量和方法,以及應(yīng)用程序正確初始操作所需的其他方法。 所需元素加入后,CProgram 將會如下所示:赫茲股票交易軟件
//+------------------------------------------------------------------+ //| Class for creating an application ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?| //+------------------------------------------------------------------+ class CProgram : public CWndEvents { public: //--- ? int ? ? ? ? ? ? ? m_base_font_size; //--- ? string ? ? ? ? ? ?m_base_font; //--- ? color ? ? ? ? ? ? m_background; ? color ? ? ? ? ? ? m_caption; public: ? CProgram(void); ? ~CProgram(void); ? //--- Initialization/deinitialization ? void ? ? ? ? ? ? ?OnInitEvent(void); ? void ? ? ? ? ? ? ?OnDeinitEvent(const int reason); ? //--- Timer ? void ? ? ? ? ? ? ?OnTimerEvent(void); ? //--- Chart event handler ? virtual void ? ? ?OnEvent(const int id,const long &lparam,const double &dparam,const string &sparam); ? //--- Create the graphical interface of the program ? bool ? ? ? ? ? ? ?CreateGUI(void); };
創(chuàng)建界面的方法實現(xiàn)仍然為空:
//+------------------------------------------------------------------+ //| Creates the graphical interface of the program ? ? ? ? ? ? ? ? ? | //+------------------------------------------------------------------+ bool CProgram::CreateGUI(void) { //--- //--- Finish the creation of GUI ? CWndEvents::CompletedGUI(); ? return(true); } //+------------------------------------------------------------------+
請注意,我們還添加了 m_base_font 字符串型變量,該變量負責(zé)應(yīng)用程序中的字體名稱。 它是在我們的類構(gòu)造函數(shù)中初始化:
//+------------------------------------------------------------------+ //| Constructor ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?| //+------------------------------------------------------------------+ CProgram::CProgram(void) { ? m_base_font="Trebuchet MS"; }
現(xiàn)在,我們繼續(xù)創(chuàng)建應(yīng)用程序的第一個窗口。 為此目的,在類中聲明新的 m_step_window 變量,該變量是 CWindow 類的實例。 還要聲明創(chuàng)建第一個窗口的方法,并命名為 CreateStepWindow()。 這是它在類代碼中的樣子:赫茲股票交易軟件
class CProgram : public CWndEvents { public: //--- Application windows ? CWindow ? ? ? ? ? m_step_window; ... protected: ? //--- forms ? bool ? ? ? ? ? ? ?CreateStepWindow(const string caption_text);
早前我們已經(jīng)決定,赫茲股票交易軟件初始啟動時負責(zé)逐一配置的界面部分,其實現(xiàn)應(yīng)位于 StepWindow.mqh 包含文件之中。 因此,打開它,并著手實現(xiàn) CreateStepWindow() 方法:
#include "Program.mqh" //+------------------------------------------------------------------+ //| Creates a form for the selection of symbols ? ? ? ? ? ? ? ? ? ? ?| //+------------------------------------------------------------------+ bool CProgram::CreateStepWindow(const string text) { //--- Add the pointer to the window array ? CWndContainer::AddWindow(m_step_window); //--- Properties ? m_step_window.XSize(600); ? m_step_window.YSize(200); //--- Coordinates ? int x=int(ChartGetInteger(m_chart_id,CHART_WIDTH_IN_PIXELS)-m_step_window.XSize())/2; ? int y=10; ? m_step_window.CaptionHeight(22); ? m_step_window.IsMovable(true); ? m_step_window.CaptionColor(m_caption); ? m_step_window.CaptionColorLocked(m_caption); ? m_step_window.CaptionColorHover(m_caption); ? m_step_window.BackColor(m_background); ? m_step_window.FontSize(m_base_font_size); ? m_step_window.Font(m_base_font); //--- Creating a form ? if(!m_step_window.CreateWindow(m_chart_id,m_subwin,text,x,y)) ? ? ?return(false); ? //--- ? return(true); } //+------------------------------------------------------------------+
不要忘了在 CreateGUI() 方法中添加以下內(nèi)容:
//+------------------------------------------------------------------+ //| Creates the graphical interface of the program ? ? ? ? ? ? ? ? ? | //+------------------------------------------------------------------+ bool CProgram::CreateGUI(void) { //--- Step 1-3 ? if(!CreateStepWindow("Signal Monitor Step 1: Choose Symbols")) ? ? ?return(false); //--- Finish the creation of GUI ? CWndEvents::CompletedGUI(); ? return(true); } //+------------------------------------------------------------------+