NinjaTrader_Ray
06-08-2007, 01:05 PM
Question:
Can someone please help me, in strategy:
How I can write if I want a certain MA to cross at a Certain "ANGLE"
say 30 degrees, not less
Thanks
Zee
Answer:
You have to use the Slope() method in addition checking for the cross.
Something like:
if (CrossAbove(SMA(10), SMA(20), 1) && Slope(SMA(10), CurrentBar - 1, CurrentBar) > angleValue)
// Do something
PS - There is a bug in the current Slope() method calculation, will be resolved for the next update.
Can someone please help me, in strategy:
How I can write if I want a certain MA to cross at a Certain "ANGLE"
say 30 degrees, not less
Thanks
Zee
Answer:
You have to use the Slope() method in addition checking for the cross.
Something like:
if (CrossAbove(SMA(10), SMA(20), 1) && Slope(SMA(10), CurrentBar - 1, CurrentBar) > angleValue)
// Do something
PS - There is a bug in the current Slope() method calculation, will be resolved for the next update.