|
IF(G_BuyPosition==0 && G_SellPosition==0 && BK1)
{
BUY(SS,Q_Close+3);
Sound(1);
}
Else IF(G_BuyPosition==0 && G_SellPosition==0 && BK2)
{
BUY(SS,OPEN+3);
sound(1);
}
IF(G_BuyAvgPrice>0 && SP)
{
Sell(0,Q_Close-3);
Sound(2);
}
直接调用SOUND函数加载你需要的WAV声音。{:soso_e113:} |
|