是否可以根据每个股票代码'个性化'公式? 在AFL,我想测试不同的股票代码的“不同”买入条件。 例如:
Ticker AAPL,规则A
Ticker MSFT,B规则
然后,每5分钟进行一次AFL测试。
具体例子:
股票= 'AAPL';
买=交叉(MACD(),信号());
Alertif(...“MAIL”,“购买Apple beacuase Macd Cross”);
ticker ='MSFT'Bu买=关闭> EMA(关闭,100);
Alertif(...“MAIL”,“购买Apple beacuase Macd Cross”);
等
有可能吗?
答案 0 :(得分: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");
}