請問eleader指標公式轉成mctlichart訊號
本帖最後由 f29825604 於 14-5-6 18:00 編輯1.
2.
買單進場
cond1 = nvr(9,5,5)>0
cond2=disparity(15)>100
cond1 & cond2
買單出場
cond1 = nvr(9,5,5)<0
cond2=disparity(15)<100
cond1 & cond2
以上是eleader的指標語法
請問大家可否幫忙
弄出mutlichart的訊號
感激不盡
謝謝
買單進場
cond1 = nvr(9,5,5)>0
cond2=disparity(15)>100
cond1 & cond2
Condition1= average(slowK(5) - slowD(5), 9) >0 ;
Condition2= Iff(average(close,15)<>0, close / average(close, 15), 0) >100;
Condition1 and Condition2
買單出場
cond1 = nvr(9,5,5)<0
cond2=disparity(15)<100
cond1 & cond2
Condition1= average(slowK(5) - slowD(5), 9) <0 ;
Condition2= Iff(average(close,15)<>0, close / average(close, 15), 0) <100;
Condition1 and Condition2
不太確定NVR的意義
看看這樣是不是你需要的
永豐的系統越來越棒了 {:4_153:} 手續費也不賴 papiliolin 發表於 14-5-6 21:22 static/image/common/back.gif
買單進場
cond1 = nvr(9,5,5)>0
cond2=disparity(15)>100
papiliolin大
謝謝您
在下會到MC內編譯試試看
mc的ple內
可以編譯成功
Condition1= average(slowK(5) - slowD(5), 9) >0 ;
Condition2= Iff(average(close,15)<>0, close / average(close, 15), 0) >100;
ifCondition1 and Condition2 then
Buy ( "909nvr_le" ) next bar market ;
Condition1= average(slowK(5) - slowD(5), 9) <0 ;
Condition2= Iff(average(close,15)<>0, close / average(close, 15), 0) <100;
ifCondition1 and Condition2 then
sell ( "909nvr_lx" ) next bar market ;
可是mc技術圖上沒有箭頭出現 f29825604 發表於 14-5-7 08:43 static/image/common/back.gif
mc的ple內
可以編譯成功
Condition1= average(slowK(5) - slowD(5), 9) >0 ;
可是mc技術圖上沒有箭頭出現??
冒昧一問: 那可有解決方法出現箭頭..............謝謝
{:4_186:}{:4_186:}
孔雀王 發表於 14-5-7 10:54 static/image/common/back.gif
可是mc技術圖上沒有箭頭出現??
冒昧一問: 那可有解決方法出現箭頭..............謝謝
箭頭還沒搞出來
不過修改的mc指標已經可以
非常接近eleader的內建指標
////====================///eleader-nvr_for-mc
inputs:
PriceH( High ), PriceL( Low ), PriceC( Close ),
StochLength( 9 ),
SmoothingLength1( 5 ),
SmoothingLength2( 5 ),
SmoothingType( 2 ) ;
variables:
var0( 0 ), var1( 0 ), var2( 0 ), var3( 0 ) ;
Value1 = Stochastic( PriceH, PriceL, PriceC, StochLength, SmoothingLength1,
SmoothingLength2, SmoothingType, var0, var1, var2, var3 ) ;
Plot1( var2-var3,"eleader-nvr");
////=====================///eleader-disparity_for-mc
inputs:Price( Close ), Length( 20 ), Displace( 0 ) ;
variables:var0( 0 ) ;
var0 = Price / AverageFC( Price, Length )*100 ;
Plot1( var0, "eleader-disparity" ) ;
本帖最後由 f29825604 於 14-5-7 13:23 編輯
mc訊號有箭頭了
//////////////////////
90901LE
買單進場
//////////////////////
inputs: Length1( 9 ),Length2( 20 );
variables: var0( 0 ), var1( 0 ), var2( 0 ), var3( 0 ),var4( 0 ) ;
Value1 = Stochastic( H, L, C, Length1, 5, 5, 2, var0, var1, var2, var3 ) ;
var4 = Close / AverageFC( close, Length2 )*100 ;
//(var2- var3) is eleader-nvr;
//var4 is eleader-disparity;
Condition1 = (var2- var3)>0 and var4>100 ;
if condition1 then
buy ( "90901LE" ) next bar at market
////////////////////////////
90901LX
買單出場
///////////////////////////
inputs: Length1( 9 ),Length2( 20 );
variables: var0( 0 ), var1( 0 ), var2( 0 ), var3( 0 ),var4( 0 ) ;
Value1 = Stochastic( H, L, C, Length1, 5, 5, 2, var0, var1, var2, var3 ) ;
var4 = Close / AverageFC( close, Length2 )*100 ;
//(var2- var3)is eleader-nvr;
//var4 is eleader-disparity;
Condition1 = (var2- var3)<0 and var4<100 ;
if condition1 then
sell ( "90901LX" ) next bar at market
/////////////////////
僅供參考!!!
ps
90901LE(mc買單進場訊號)
90901LX(mc買單出場訊號)
編譯成mc訊號
兩個一組同時使用
謝謝
頁:
[1]