if((htfbullretouchline - bullpbclose) / (bullpbclose - bullstop) <= 3)
{
EnterLong(Convert.ToInt32(DefaultQuantity), "");
}
2 questions. Is this syntax correct for dividing the result of the first variable minus the second by the 3rd variable minus the 4th? All 4 of those variables are doubles containing closing prices. Also, how do I see this number from the ninjascript editor. I'm assuming there has to be a way to do this. Please assist.

Comment