I just discover the power of Automated Trading with NT but I have a problem with the following code at Condition set 3 where the condition does not go through the compiler... To be clear I with to use a SMA of the absolute value of an oscillator... What is the correct syntax?
Thanks in advance
...
Condition set 3
if (SMA(Math.Abs(PriceOscillator(2, 10, 1)),222)[0] >= 0)
{
PlaySound("");
}
Comment