choipingkwan 發表於 15-10-28 19:37

關於開倉後的問題(如何寫, 謝謝)

我想問就是
假設我開倉是某一支k線 / 陰陽燭的next open價買入
而我想用同一支的high 價(則next open 上一支) 做止蝕
我應該怎樣寫, 謝謝

f70537111 發表於 15-10-28 21:20

設定一個變數
當出現某一支k線 / 陰陽燭時候 把當跟K棒最高值存入變數

easytrader788 發表於 15-10-29 08:47

Var : MP(0) ,Xprice(0);
MP = MarketPosition;

if condition1 then buy next bar at market ;
if MP <> MP and MP = 1 then Xprice = High ; {開倉記錄前一根K棒高點}
sell next bar at Xprice stop ;

lwhuang 發表於 15-10-29 10:50

本帖最後由 lwhuang 於 15-10-29 10:51 編輯

你們是不是討論錯版面了?{:4_144:}

choipingkwan 發表於 15-10-29 11:06

to f70537111
謝謝你 可以說明具體是怎樣寫? 因為我是新手 不太明白怎樣寫, 謝謝

to easytrader788
謝謝你
但這種寫法比較像MC 的寫法
我想知道的是amibroker 的寫法
謝謝

lwhuang 發表於 15-10-29 11:24

意思大致如下
Stoploss = valueWhen(Buy, H);
Sell = cross(Stoploss, L);

lwhuang 發表於 15-10-29 11:28

新手先看完這本免費書

http://www.introductiontoamibroker.com/book.html

choipingkwan 發表於 15-10-29 23:33

thank you very much 明白了

ncygrvgp 發表於 15-11-17 18:13

lwhuang 發表於 15-10-29 11:24 static/image/common/back.gif
意思大致如下

想請教一下這個語法

SYNTAXValueWhen(EXPRESSION, ARRAY, n = 1)
RETURNSARRAY
FUNCTIONReturns the value of the ARRAY when the EXPRESSION was true on the n -th most recent occurrence. Note: this function allows also 0 and negative values for n - this enables referencing future
EXAMPLEvaluewhen( cross( close, ma(close,5) ) ,macd(), 1)

大致的意思? 剛看了英文意思,
還是有點不太明白
謝謝啦~{:8_536:}
頁: [1]
查看完整版本: 關於開倉後的問題(如何寫, 謝謝)