我的理解:交易系统测试中 Asset 对 Buy ,sell 应该有输出,现在是没有反应,数值一直是200
交易中Tasset 对 TBuy ,Tsell 应该有输出,没错,可是Asset也有反应,不理解了。
很简单,双ma .
input:man1(2),man2(5);
ASSET,LINETHICK0;
ma1:ma(close,man1),colorred;
ma2:ma(close,man2),colorgreen;
crossuper:=cross(ma1,ma2);
crossdown:=cross(ma2,ma1);
if man1<=man2 then
begin
{平多}
sell(holding>0 and crossdown,0);
{平空}
sellshort(holding<0 and crossuper,0);
{开多}
buy(vol>5000 and holding=0 and crossuper,intpart(asset*0.4/close));
{开空}
buyshort(vol>5000 and holding=0 and crossdown,intpart(asset*0.4/close));
end;
上面asset没有反应。
如果buy,sell 等改成Tbuy,Tsell 等Asset就有显示,同样asset改成Tasset也会有反应。
唉,经管理员帮助,知道原因了,在金字塔中输出的指标线必须要有名称,否则没输出。
上面将
ASSET,LINETHICK0;
改为 资产:asset就ok了,记忆中和飞狐,分析家还是不同的,谢谢;