Hi all,
I'm sure there is probably a simple answer to this but I haven't figured it out.
I am trying to paint a boolean arrow on each bar that meets the conditions of "(Variable A = Blah-blah-blah ) and (reference RSI() < 30);"
However, what is happening is the arrow only paints when the current RSI at the current time is < 30. (E.g., if it's 12pm EST and the RSI at 12PM is 56, then the arrow won't paint above that candle even though the RSI of that particular past candle was 24).
Is there a simple way to make the RSI value of each candle be used, instead of the RSI value at the current time?
PS: "GetValue" is what I needed! This is how I used it:
I'm sure there is probably a simple answer to this but I haven't figured it out.
I am trying to paint a boolean arrow on each bar that meets the conditions of "(Variable A = Blah-blah-blah ) and (reference RSI() < 30);"
However, what is happening is the arrow only paints when the current RSI at the current time is < 30. (E.g., if it's 12pm EST and the RSI at 12PM is 56, then the arrow won't paint above that candle even though the RSI of that particular past candle was 24).
Is there a simple way to make the RSI value of each candle be used, instead of the RSI value at the current time?
PS: "GetValue" is what I needed! This is how I used it:
Code:
def currentRSI = getvalue(reference RSI()[0]);
def Condition1 = currentRSI <= 18 and (Variable[0] <= -10);
def Condition2 = currentRSI >= 70 and (Variable[0] <= -8);
Last edited by a moderator: