Good day any chance of converting this Indicator into a scan that I can run at about 3:00 EST to see if the candle is closing at its top 25%?
That way I can Buy prior to market close?
Just looking to see if this is possible. Thanks for your time
https://usethinkscript.com/threads/above-the-stomach-candle-indicator-for-thinkorswim.25/
Cheers
Hush !
That way I can Buy prior to market close?
Just looking to see if this is possible. Thanks for your time
https://usethinkscript.com/threads/above-the-stomach-candle-indicator-for-thinkorswim.25/
Ruby:
input BubbleOn = yes;
def downTrend = isDescending(high[1], 3) and isDescending(low[1], 3);
def AboveStomach = open > close[1] and close > high[1] and close > open;
plot isTrue = if downtrend and
AboveStomach
then low
else double.nan;
isTrue.SetPaintingStrategy(PaintingStrategy.Arrow_UP);
isTrue.SetLineWeight(3);
isTrue.SetDefaultColor(Color.CYAN);
AddChartBubble(BubbleOn and isTrue, isTrue, "Above Stomach", color.cyan, yes);
# End Code Above Stomach Candle
Cheers
Hush !
Last edited by a moderator: