easytrader788 發表於 14-11-18 20:11
畫指標
input:Len(9);
Keyword "Plot**" can't been used in this type of study |
畫指標
input:Len(9);可修改變數
如果K交叉D 條件一定義高點
if SlowK(Len) Cross over SlowD(Len) then Value1 = High ;
如果現在高>條件一高 那條件一高移動到現在的高點
if High > Value1 then Value1 = High ;
Plot1(Value1,"High") ; 這句是在圖表上顯示
if SlowK(Len) Cross under SlowD(Len) then Value2 = Low ;
if Low < Value2 then Value2 = Low ;
Plot2(Value2,"Low") ;
是這樣的解釋嗎? 還是我的邏輯有錯誤 如果有空再麻煩提示我一下@@
我如果直接丟進去編譯會出錯
[td]Keyword "Plot**" can't been used in this type of study | line 0, column 0
[/td]
|
|