1

是否可以为每个股票“个性化”一个公式?在 AFL,我想测试不同股票代码的“不同”购买条件。例如:

股票代码 AAPL,规则 A

股票代码 MSFT,规则 B

然后,每 5 分钟运行一次 AFL 测试。

具体例子:

股票代码='AAPL';

买入=交叉(MACD(),信号());

Alertif(..."MAIL", "买苹果因为 Macd Cross");

ticker='MSFT' Buy = Close>EMA(Close,100);

Alertif(..."MAIL", "买苹果因为 Macd Cross");

等等。

可能吗 ?

4

1 回答 1

1
if ( Name()=="AAPL" )
{
Buy = Cross( MACD(), Signal() );
Alertif(..."MAIL", "Buy Apple beacuase Macd Cross");
}

if ( Name()=="MSFT" )
{
Buy = Close>EMA(Close,100);
Alertif(..."MAIL", "Buy Apple beacuase Macd Cross");
}
于 2013-11-20T20:24:35.090 回答