if (StochRSI(78)[1] <= .0462 && StochRSI(78)[0] > .0462)
{
passUpThruBrown = true;
Print("UP THRU BROWN ... StochRSI(78)[1]: " + StochRSI(78)[1] + " StochRSI(78)[0]: " + StochRSI(78)[0]);
DrawTriangleUp("My arrow" + CurrentBar, true, 0, Low[0] - (5 * TickSize), Color.Peru);
}
As you see in the code above, I print out the previous and current values of StochRSI as the condition is met. However, these values don't match the StochRSI indicator that I have placed on the chart that I am running this strategy. Both are set to a period of 78.
Let me know if you need more information ... thank you!

Comment