Amibroker S&C SwamiStochastics
請參考5分鐘K圖下方,黃色區域表示有轉折的機會,紅色區域應該看多,綠色區域則看空。
我把原本程式碼 (出處 http://www.amibroker.com/members/traders/03-2012.html)
紅和綠作修改(因為台灣是紅漲 綠跌),再加上Section 宣告而已。
程式碼如下:
_SECTION_BEGIN("SwamiStochastics");
Title = "SwamiStochastics";
for( N = 6; N <= 48; N++ )
{
indicator = StochK( N, 4 ) / 100; // Replace this line with the indicator of your choice, for example RSI( N )
green = IIf( indicator >= 0.5, 255 * ( 2 - 2 * indicator ), 255 );
red = IIf( indicator < 0.5, 255 *2 * indicator, 255 );
blue = 0;
Color = ColorRGB( red, green, blue );
PlotOHLC( N, N+1, N, N, "", Color, styleCloud | styleNoLabel );
}
_SECTION_END();
感謝Calvin大大熱心分享
{:4_160:} 大家一起互相學習,努力精進。
其實我之前也 做一個記分板的程式
概念是用顏色深淺,不是用重直方式的。
參考下圖的下半部
程式碼比較大一點
所以用附件方式
記分板也是 紅看多綠看空
顏色淺的是交接轉折區域
顏色越變越深則是趨勢形成
各位大大可以自己改一改自己常用的指標用記分板方式來做
{:4_162:} 記分板這想法不錯,但是看下面的記分板時下面那塊顏色不會眼花嗎? A 其實我是看不同指標同時變色 來決定進出
如果有更好的方法,再來試一試
{:4_661:}
頁:
[1]