|
想請教一下 我之前寫了一條trendline
TL_UB = TL_New( FirstDate, FirstTime, UpperBand_1, date, time, UpperBand );
但是當我想寫一個信號是等收市價升穿這條trendline 的時候
我寫了
condition1 = Close > tl_getvalue(TL_UB,FirstDate,FirstTime);
if condition1 then begin
buy next at next day open ;
end;
但是我在Signal 上面沒接受到任何訊息 亦未有什麼買入訊號,請問是那裡出問題了嗎?
|
|