最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會(huì)員登陸 & 注冊(cè)

量化軟件下載:赫茲量化中開(kāi)發(fā)多交易品種波動(dòng)指標(biāo)

2023-08-01 10:53 作者:大牛啊呢  | 我要投稿

現(xiàn)在,我們來(lái)看當(dāng) prev_calculated 變量等于零時(shí)還會(huì)使用哪些函數(shù)。這些函數(shù)會(huì):

  • 加載并生成必要的數(shù)據(jù)量(柱形);

  • 檢查所有句柄的可用性;

  • 檢查是否已具備需要的數(shù)據(jù)量;

  • 與服務(wù)器同步數(shù)據(jù);

  • 確定從哪個(gè)柱開(kāi)始繪制標(biāo)圖序列。

另外,我們還將確認(rèn)每個(gè)交易品種的首個(gè)“真實(shí)”柱。我們創(chuàng)造這個(gè)簡(jiǎn)潔的術(shù)語(yǔ)是為了方便今后使用。它的意思是,MetaTrader 5 中的所有時(shí)間表都是用分鐘數(shù)據(jù)建立的。但是,若服務(wù)器能提供自1993 年以來(lái)的每日數(shù)據(jù),卻只能提供 2000 年以來(lái)的分鐘數(shù)據(jù),然后若我們選擇小時(shí)圖時(shí)間表,則會(huì)自有分鐘數(shù)據(jù)的當(dāng)日建立柱,也就是從 2000 年起建立柱。2000 年之前的所有東西都會(huì)以每日數(shù)據(jù)或最接近當(dāng)前時(shí)間表數(shù)據(jù)的形式呈現(xiàn)。因此,為避免混淆,不得顯示與當(dāng)前時(shí)間表無(wú)關(guān)的指標(biāo)數(shù)據(jù)。這就是我們?yōu)槭裁匆页霎?dāng)前時(shí)間表的第一個(gè)“真實(shí)”柱,并用與交易品種指標(biāo)緩沖區(qū)顏色相同的垂直線標(biāo)記這個(gè)“真實(shí)”柱。

在開(kāi)發(fā)“EA 交易”時(shí),找出“真實(shí)”柱同樣非常重要,因?yàn)槿绻谀硞€(gè)時(shí)間表內(nèi)對(duì)參數(shù)進(jìn)行了優(yōu)化,則來(lái)自其它時(shí)間表的數(shù)據(jù)也將不再適用。

執(zhí)行上述檢查前,我們會(huì)在指標(biāo)子窗口中添加畫布。因此,我們首先要編寫管理畫布需要的所有函數(shù)。將畫布添加到子窗口前,我們需要確定畫布的大小以及文本消息將顯示于畫布的坐標(biāo)。為此,我們來(lái)編寫 GetSubwindowGeometry() 函數(shù):

//+------------------------------------------------------------------+ //| Getting geometry of the indicator subwindow ? ? ? ? ? ? ? ? ? ? ?| //+------------------------------------------------------------------+ void GetSubwindowGeometry() ?{ //--- Get the indicator subwindow number ? subwindow_number=ChartWindowFind(0,subwindow_shortname); //--- Get the subwindow width and height ? chart_width=(int)ChartGetInteger(0,CHART_WIDTH_IN_PIXELS); ? subwindow_height=(int)ChartGetInteger(0,CHART_HEIGHT_IN_PIXELS,subwindow_number); //--- Calculate the center of the subwindow ? subwindow_center_x=chart_width/2; ? subwindow_center_y=subwindow_height/2; ?}

獲得子窗口屬性后,你可以添加畫布。畫布背景為 100% 透明(不透明度為 0),僅當(dāng)加載并生成數(shù)據(jù)從而讓用戶了解當(dāng)前進(jìn)度時(shí)才會(huì)顯露畫布。可見(jiàn)時(shí),背景的不透明度為 190。你可以在 0 到 255 之間任意設(shè)置不透明度值。更多信息,請(qǐng)參考位于 Help(幫助)選項(xiàng)下的 ColorToARGB() 函數(shù)說(shuō)明。

下面我們編寫一個(gè) SetCanvas() 函數(shù)來(lái)設(shè)置畫布:

//+------------------------------------------------------------------+ //| Setting canvas ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? | //+------------------------------------------------------------------+ void SetCanvas() ?{ //--- If there is no canvas, set it ? if(ObjectFind(0,canvas_name)<0) ? ? { ? ? ?//--- Create the canvas ? ? ?canvas.CreateBitmapLabel(0,subwindow_number,canvas_name,0,0,chart_width,subwindow_height,clr_format); ? ? ?//--- Make the canvas completely transparent ? ? ?canvas.Erase(ColorToARGB(canvas_background,0)); ? ? ?//--- Redraw the canvas ? ? ?canvas.Update(); ? ? } ?}

我們還需要一個(gè)函數(shù),用來(lái)檢查是否重新調(diào)整了指標(biāo)子窗口的大小。如果調(diào)整了指標(biāo)子窗口大小,則會(huì)自動(dòng)調(diào)整畫布大小以適應(yīng)新的子窗口大小。下面我們來(lái)調(diào)用 OnSubwindowChange()函數(shù):

//+------------------------------------------------------------------+ //| Checking the subwindow size ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?| //+------------------------------------------------------------------+ void OnSubwindowChange() ?{ //--- Get subwindow properties ? GetSubwindowGeometry(); //--- If the subwindow size has not changed, exit ? if(!SubwindowSizeChanged()) ? ? ?return; //--- If the subwindow height is less than one pixel or if the center has been calculated incorrectly, exit ? if(subwindow_height<1 || subwindow_center_y<1) ? ? ?return; //--- Set the new canvas size ? ResizeCanvas(); //--- Show the last message ? ShowCanvasMessage(msg_last); ?}

我們會(huì)在下面探討上述代碼中強(qiáng)調(diào)的幾個(gè)函數(shù)。請(qǐng)注意在重新調(diào)整子窗口大小前運(yùn)行的檢查類型。如果任何屬性發(fā)生錯(cuò)誤,則該函數(shù)會(huì)停止運(yùn)算。

SubwindowSizeChanged() 函數(shù)代碼如下:

//+------------------------------------------------------------------+ //| Checking if the subwindow has been resized ? ? ? ? ? ? ? ? ? ? ? | //+------------------------------------------------------------------+ bool SubwindowSizeChanged() ?{ //--- If the subwindow size has not changed, exit ? if(last_chart_width==chart_width && last_subwindow_height==subwindow_height) ? ? ?return(false); //--- If the size has changed, save it ? else ? ? { ? ? ?last_chart_width=chart_width; ? ? ?last_subwindow_height=subwindow_height; ? ? } //--- ? return(true); ?}

ResizeCanvas() 函數(shù)代碼如下:

//+------------------------------------------------------------------+ //| Resizing canvas ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?| //+------------------------------------------------------------------+ void ResizeCanvas() ?{ //--- If the canvas has already been added to the indicator subwindow, set the new size ? if(ObjectFind(0,canvas_name)==subwindow_number) ? ? ?canvas.Resize(chart_width,subwindow_height); ?}

?}

嘗試加載需要的數(shù)據(jù)量后,我們?cè)僖淮螜z查指標(biāo)句柄。為此,我們使用上述 GetIndicatorHandles() 函數(shù)。

句柄檢查完畢后,程序會(huì)用 CheckAvailableData() 函數(shù)檢查特定交易品種數(shù)據(jù)的可用性以及每個(gè)交易品種的指標(biāo)數(shù)值。下面請(qǐng)仔細(xì)觀察整個(gè)檢查過(guò)程:

//+------------------------------------------------------------------+ //| Checking the amount of available data for all symbols ? ? ? ? ? ?| //+------------------------------------------------------------------


量化軟件下載:赫茲量化中開(kāi)發(fā)多交易品種波動(dòng)指標(biāo)的評(píng)論 (共 條)

分享到微博請(qǐng)遵守國(guó)家法律
光山县| 孙吴县| 石阡县| 盖州市| 司法| 宜丰县| 广宁县| 都匀市| 吴江市| 昔阳县| 崇信县| 滁州市| 定安县| 郓城县| 农安县| 淮南市| 保靖县| 阳泉市| 且末县| 沁源县| 广州市| 贵南县| 平山县| 新乐市| 兴和县| 扎囊县| 丰原市| 诸暨市| 广宁县| 花莲市| 仁布县| 凯里市| 堆龙德庆县| 保定市| 湘乡市| 镇雄县| 岳阳市| 资中县| 城市| 高要市| 岱山县|