龙听期货论坛's Archiver

C
+
+


 微信: QQ:

龙听 发表于 2023-10-18 06:43

Atr - exit trailing stop模块(公开课中atr移动止盈出场程式码)

程式码:[code]Input:atrlen(30),trailatrmult(3);
var:lexit(0),sexit(0),atr1(0),top(0),bot(0);

atr1 = atr(atrlen);

if barssinceentry = 0 then begin //inital high and low
top = high;
bot = Low;
end;

if high > top then top = high; //find the highest point since entry
if Low < bot then bot = low;  // find then lowest point sine entry

if marketposition = 1 then begin // manage long position
lexit = top - trailatrmult*atr1;
if barssinceentry=0 and Close < lexit then sell("Atr-nextdayout") all shares next bar at Open;
if barssinceentry>0 then begin
sell("atr-tail-stop") all shares next bar at lexit stop;
value1 = tl_new(date[1],time,lexit[1],date,time,lexit);
end;
end;

if marketposition = -1 then begin //manage short position
sexit = bot + trailatrmult*atr1;
if barssinceentry=0 and Close > sexit then sell("atr-nextdayout") all shares next bar at Open;
if barssinceentry>0 then begin
buytocover("atr-trail-stop") all shares next bar at sexit stop;
value1 = tl_new(date[1],time,sexit[1],date,time,sexit);
end;
end;
[/code]其中公式atr程式码:

**** Hidden Message *****

其中tr程式码:

**** Hidden Message *****

这个是我使用的原教旨atr的写法,在MC中原也是有atr的公式的,关键字是averagetruerange.

斗战胜 发表于 2023-10-18 14:55

哇,谢谢龙版{:84:}

加菲猫 发表于 2023-10-21 15:22

看看

龙听小虎 发表于 2023-11-5 21:10

{:79:}

小龍 发表于 2024-2-26 21:18

感恩

汐眸 发表于 2024-6-23 14:57

学习

你好世界 发表于 2024-7-9 08:53

还好

千日醇 发表于 2024-10-3 10:35

感恩

鬼大 发表于 2024-10-24 13:09

感恩

页: [1]