2012年3月24日 星期六

[期貨程式交易SOP]內容勘誤


書名:「期貨程式交易SOP」

頁數:p.31
原內容:再來,要表達我們常常說的比如:昨天的收盤價的方式是 Close[1],電腦會知道在日線圖的 11/03 這天的 Close[1]=7445。

更正為:再來,要表達我們常常說的比如:昨天的收盤價的方式是 Close[1],電腦會知道在日線圖的 11/04 這天的 Close[1]=7445。
************************************************************

頁數:p.31
原內容:而往前數第5根的K棒的最高價是 High[1],在 11/03 這天的 High[5]=7682

更正為:而往前數第5根的K棒的最高價是 High[5],在 11/04 這天的 High[5]=7777
************************************************************

頁數:p.32
圖片更換為:
p.32


************************************************************

頁數:p.59
原內容(程式碼):
Value1iff(D>D[1], 1, Va;ue1+1)

_IndayBarNumber=Value1

更正為:
Value1=iff(D>D[1], 1, Value1+1)
_IndayBarNumber=Value1
************************************************************

頁數:p.60
原內容(程式碼):
For i=0 to Length-1
  Value1=iff(C[i]>O[i], Value1+1, Valu1)
End for

更正為:
For i=0 to Length-1
Value1=iff(C[i]>O[i], Value1+1, Value1)
End for
************************************************************

頁數:p.61
原內容(程式碼):
For i=0 to Length-1
  Value1=iff(C[i]<O[i], Value1+1, Valu1)
End for

更正為:
For i=0 to Length-1
  Value1=iff(C[i]<O[i], Value1+1, Value1)
End for
************************************************************

頁數:p.178
原內容(程式碼):
if BarNumber=1 the Buy this bar Close
ExitLong next bar Market
end if

更正為:
if BarNumber=1 then
Buy this bar Close
ExitLong next bar Market
end if
*******************************************

頁數:p.196
原內容(程式碼):
Value99=i_MarketPosition;
if Value99<>Value99[1] then begin
  Value98=TEXT_New(Date , Time, iff(Value99>Value99[1], H+1, L-1),"");
  TEXT_SetString(Value98, NumToStr(iff(Value99=0,ExitPrice(1),EntryPrice(0)),0));
  TEXT_SetStyle(Value98, 2, iff(Value99>Value99[1], 1, 0));
  TEXT_SetColor(Value98, White);
  TEXT_SetBGcolor(Value98, Blue);


更正為:
Value99=i_MarketPosition;
if Value99<>Value99[1] then begin
  Value98=TEXT_New(Date , Time, iff(Value99>Value99[1], H+1, L-1),"");
  TEXT_SetString(Value98, NumToStr(iff(Value99=0,ExitPrice(1),EntryPrice(0)),0));
  TEXT_SetStyle(Value98, 2, iff(Value99>Value99[1], 1, 0));
  TEXT_SetColor(Value98, White);
  TEXT_SetBGcolor(Value98, Blue);
end;
*******************************************




頁數:p.192、193、194
原內容(程式碼):
if C <= lowest(C, 9) and value1 > lowest(value1, 9)
and value3 <=2 then

更正為:
if C <= lowest(C, 9) and value1 > lowest(value1, 9)
and value3 >=2 then

熱門文章