|
小弟剛剛加入程式交易遇到一些問題有些難懂,想在這請各位前輩們指教
1.同條件不同的週期K,
假設這是在5分K的週期下進場的條件
if average(close,5) > average(close,10) then buy next bar at market end if
自動交易時我需要定義什麼是5分K嗎?
如果5分K和15分K同時成立才進場該怎麼寫?
2.連結下單大師的語法
if date = lastcalcdate and time = LastCalcTime then FileDelete(“R:\Current.txt”) FileAppend(“R:\Current.txt”,cdate(date) +” “+ ctime(time)+”,”+ NumToStr(CurrentContracts,0)+“,”+NumToStr(Close,0))end if
只要把這串貼在程式碼最下方就可以連結了嗎?
|
|