Seems like great community by just lookat at the forum. I am new to Ninjascript and need some help. I like to achieve the following and just want to verify that my code is right.
1. Price clearly above Bollinger bands
2. MACD histogram above zero line
3. RSI above 50
My code is
if (CrossAbove(Close, Bollinger(2, 14).Lower, 1)
&& MACD(12, 26, 9).Avg[0] > 0
&& RSI(14, 9).Avg[0] > RSIup)
Thanks in advance.
Bill
I am actually trying to automate or auto trade the following but it only shows I order for the whole year.
I am not sure what I am doing wrong. Can someone create the stregedy and post it please.

Comment