股票量化軟件:赫茲量化利用對象輕松制作復(fù)雜指標(biāo)
第一個例子
在我們開始制作指標(biāo)之前,我們先看看包含緩沖區(qū)數(shù)組的對象,其最基本形式是什么樣子的:
class CIndicatorPlot { public: ? double ? ? ? ? ? ?array[]; };
它只有一個公開數(shù)組。 至于目前,重要的是它是公開的,如此我們就可以在將其設(shè)置為緩沖區(qū),或設(shè)置/訪問它擁有的數(shù)據(jù)(與任何其它指標(biāo)一樣)。
現(xiàn)在我們來處置指標(biāo):為了應(yīng)用一些概念,我們將創(chuàng)建一個指標(biāo),該指標(biāo)顯示 10 個具有不同周期和平均值的 RSI。 我們將從屬性、輸入、和 OnInit 函數(shù)開始。
#property indicator_buffers 11 #property indicator_plots 11 input int firstPeriod = 6; input int increment = 2; CIndicatorPlot indicators[]; int handles[]; //+------------------------------------------------------------------+ //| Custom indicator initialization function ? ? ? ? ? ? ? ? ? ? ? ? | //+------------------------------------------------------------------+ int OnInit() { ? ArrayResize(indicators, 11); //--- indicator buffers mapping ? for (int i=0; i<11; i++) ? { ? ? ?SetIndexBuffer(i, indicators[i].array, INDICATOR_DATA); ? ? ?PlotIndexSetInteger(i, PLOT_DRAW_TYPE, DRAW_LINE); ? } ? for (int i=0; i<10; i++) ? ? ?PlotIndexSetInteger(i, PLOT_LINE_COLOR, clrRed); ? PlotIndexSetInteger(10, PLOT_LINE_COLOR, clrCyan); ? PlotIndexSetInteger(10, PLOT_LINE_STYLE, STYLE_DASH); ? PlotIndexSetInteger(10, PLOT_LINE_WIDTH, 2); ? ArrayResize(handles, 10); ? for (int i=0; i<10; i++) ? ? ?handles[i] = iRSI(NULL, PERIOD_CURRENT, firstPeriod+i*increment, PRICE_CLOSE); //---