thanks a lot anyway! do you teach how to trade by the chance?
Last edited by a moderator:
I don't "trade by the chance" - I let my indicators and the market take the lead!thanks a lot anyway! do you teach how to trade by the chance?
lol I think he was trying to ask if there was any chance that you teach people how to trade!I don't "trade by the chance" - I let my indicators and the market take the lead!![]()
I taught at the options club here in The Villages, FL for fours+ until my wife said "enough already" and so now I only post on this website. Thankslol I think he was trying to ask if there was any chance that you teach people how to trade!
Great fan of your work by the way! And I really appreciate your generosity in sharing your setups with us! On a side note, have you ever looked into translating this into a TOS strategy script?
I usually do a little write-up on my charts but the strategy always remains the same: trade when multiple indicators agree that change in direction is taking place, and don't be greedy hoping for more. A half profit is better than a double loss!lol I think he was trying to ask if there was any chance that you teach people how to trade!
Great fan of your work by the way! And I really appreciate your generosity in sharing your setups with us! On a side note, have you ever looked into translating this into a TOS strategy script?
have you ever looked into translating this into a TOS strategy script?
True!Translating repainters into a backtesting strategy does not provide any useful analysis.
Obviously, with all the poor signals painted over and only recording the perfect triggers; results will always be skewed.
Don’t fall for the “backtesting fallacy”-real trading isn’t about strict rules for buy/sell from just one indicator. Profitable traders watch for multiple indicators lining up in lots of ways.
@csricksdds charts are successful because his setups are simple to read and help identify those multiple indicator confluences clearly.
It’s not just about indicators. Good risk management-results in better trades. Don’t trade out of FOMO, fear or greed!
Hey Jordan, I really like your setup! Would you mind sharing your heatmap?@csricksdds Great stuff!! For some reason I am unable to get the colors to be red and green for the bars. Any insight on what I am missing? I looked at the code and may shift to blue an white but I only get these pink and baby blue. Thanks in advance
Started from scratch with link and set up my chart with a few other items and GTG.
View attachment 24525
Try this code for the off color histogram and see if it works?For Jordan if you look back up through this thread and copy the code I sent for the same issue before or I will send again when back to my computer in the morning. I have had the same issue before.
You may need to change to declare lower, highlight it and move it up. I know the smarter team says it doesn’t always work but for this one it usually does?Try this code for the off color histogram and see if it works?
# AsGoodAsItGets upper Indicator
#CSR Buy/Sell Arrows with Short/Long Bubbles
#Developed 4-23-23 First Edition 8-23-22 Revised
#Updated 3/16/24 by C. Ricks
declare upper;
input atrreversal =2.0;
def priceh = MovingAverage(AverageType.EXPONENTIAL, high, 5);
def pricel = MovingAverage(AverageType.EXPONENTIAL, low, 5);
def EIL = ZigZagHighLow("price h" = priceh, "price l" = pricel, "percentage reversal" = .01, "absolute reversal" = .05, "atr length" = 5, "atr reversal" = atrreversal).lastL;
def EIH = ZigZagHighLow("price h" = priceh, "price l" = pricel, "percentage reversal" = .01, "absolute reversal" = .05, "atr length" = 5, "atr reversal" = atrreversal).lastH;
plot signaldown = !isNAN(EIH);
signaldown.SetPaintingStrategy(PaintingStrategy.SQUARED_HISTOGRAM);
signaldown.DefineColor("signaldown", Color.Red);
plot signalrevBot = !isNaN(EIL);
Signalrevbot.SetPaintingStrategy(PaintingStrategy.SQUARED_HISTOGRAM);
signalrevBot.DefineColor("signalrevBot", Color.Green);
input usealerts = yes;
alert(usealerts and signaldown[1] == 1, "SHORT", alert.bar, sound.ring);
alert(usealerts and signalrevbot[1] == 1, "LONG", alert.bar, sound.ring);
Join useThinkScript to post your question to a community of 21,000+ developers and traders.
Start a new thread and receive assistance from our community.
useThinkScript is the #1 community of stock market investors using indicators and other tools to power their trading strategies. Traders of all skill levels use our forums to learn about scripting and indicators, help each other, and discover new ways to gain an edge in the markets.
We get it. Our forum can be intimidating, if not overwhelming. With thousands of topics, tens of thousands of posts, our community has created an incredibly deep knowledge base for stock traders. No one can ever exhaust every resource provided on our site.
If you are new, or just looking for guidance, here are some helpful links to get you started.