舒潔 發表於 15-8-19 09:52

同時出現買和賣的觸價線可行嗎?

你好~請問如以下程式~
if MP=0 then Buy("B2") next bar at AH stop;
if MP=0 then sellshort("S2") next bar at AL stop;
寫在同一個信號檔案時~圖表上一直都只出現 AH 的觸價線~而不會同時出現 AL的觸價線
有何語法可以讓AH 的觸價線和AL的觸價線同時出現在圖表上嗎?謝謝!!

eychang 發表於 15-8-20 08:16

if MP=0 and C<AH then Buy("B2") next bar at AH stop;
if MP=0 and C>AL then sellshort("S2") next bar at AL stop;

try try see
頁: [1]
查看完整版本: 同時出現買和賣的觸價線可行嗎?