Ethan Strong
New member
Any recommendations for a Daily Chart?I just finish the test for 2/3/4 Min at HMA 60. So the 55 is better than 60. but not to much .
![]()
Any recommendations for a Daily Chart?I just finish the test for 2/3/4 Min at HMA 60. So the 55 is better than 60. but not to much .
![]()
Join useThinkScript to post your question to a community of 21,000+ developers and traders.
I would keep settings as is.This is amazing work! Thank you for sharing this! Do you have any long term daily settings recommendations?
Nope, that's all I need.@chewie76 do you use any additional indicators for confirmation or is this your whole system? Looking forward to another good day tomorrow![]()
If you read through the very first post with all the screenshots, he answers most of your questions.Hey I had a couple more questions. Firstly, in my backtesting it seems like the magenta line acts as resistance a lot, so I was testing just entering at a close above the magenta line and it seemed to work out better most of the time. Sometimes you miss better entries like just entering at the entry line but you seem to get stopped out less. Just curious about your thoughts on that.
And my second question is about how you take profit. Do you have a certain method in your head for yourself like "if it hits x target, cut half" or something like that? Or do you generally tend to ride it out until your stop loss gets hit? Just curious because I'm new to scalping and one of the most important parts I'm understanding is risk management. Any thoughts you have would be really helpful.
You can go into the code and put a # in front of the addcloud line.Hi @chewie76, is there a way to remove the EMA Cloud (I think thats what it is)? I have my own i use and having both makes my eyes squint lol.
I've noticed sometimes it takes two attempts to get past the entry line. So, you could wait for it to cross, retrace and enter at the second push through the entry line. As for when to exit, if price crosses the Hull avg or ST, it's typically good to exit the trade.Hey I had a couple more questions. Firstly, in my backtesting it seems like the magenta line acts as resistance a lot, so I was testing just entering at a close above the magenta line and it seemed to work out better most of the time. Sometimes you miss better entries like just entering at the entry line but you seem to get stopped out less. Just curious about your thoughts on that.
And my second question is about how you take profit. Do you have a certain method in your head for yourself like "if it hits x target, cut half" or something like that? Or do you generally tend to ride it out until your stop loss gets hit? Just curious because I'm new to scalping and one of the most important parts I'm understanding is risk management. Any thoughts you have would be really helpful.
Time is also a variable. I think it is the same across all, but feel free to make adjustments. I use extended trading hours on. But test it for yourself.Thanks for developing this trading system @chewie76 . Couple of questions for anyone who's used this successfully :-
1. Wondering if the default settings (i.e. Hull Length, Atr Mult etc) would be the same across all tickers? (ES, NQ, individual stocks etc)
2. Do you turn on extended trading hours for stocks when using these indicators?
Thanks
Thanks for developing this trading system @chewie76 . Couple of questions for anyone who's used this successfully :-
1. Wondering if the default settings (i.e. Hull Length, Atr Mult etc) would be the same across all tickers? (ES, NQ, individual stocks etc)
2. Do you turn on extended trading hours for stocks when using these indicators?
Thanks
I look for actionable signals on the SPY 4 minute chart, and buy calls/puts, whichever way it's going..If using this with options, would you be looking for actionable signals on the underlying or options chart? or both?
I like this study quite a great deal - it seems very simple and clean on the chart. Anyone with better coding skills that I have game to convert to a study? Thanks in advance if so.If anyone wants it. Here is the code for the SuperTrend which was converted to match the video exactly
Code:#JT_SuperTrend v1.0 (Replica From TradingView) Declare Upper; ################################################################## # Hull Suite # ################################################################## def length = 60; def HMA = wma(2 * wma(close, (length*3) / 2) - wma(close, (length*3)), round(sqrt((length*3)))); def HULL = HMA; def MHULL = HULL[0]; def SHULL = HULL[2]; plot HMA1 = MHULL; HMA1.AssignValueColor(if HULL > HULL[2] then COLOR.GREEN else COLOR.RED); HMA1.SetLineWeight(1); plot HMA2 = SHULL; HMA2.AssignValueColor(if HULL > HULL[2] then COLOR.GREEN else COLOR.RED); HMA2.SetLineWeight(1); AddCloud (HMA1, HMA2); ################################################################## # SuperTrend # ################################################################## def AtrMult = 5; def nATR = 50; input AvgType = AverageType.HULL; def ATR = ATR("length" = nATR, "average type" = AvgType); def UP_Band_Basic = HL2 + (AtrMult * ATR); def LW_Band_Basic = HL2 + (-AtrMult * ATR); def UP_Band = if ((UP_Band_Basic < UP_Band[1]) or (close[1] > UP_Band[1])) then UP_Band_Basic else UP_Band[1]; def LW_Band = if ((LW_Band_Basic > LW_Band[1]) or (close[1] < LW_Band[1])) then LW_Band_Basic else LW_Band[1]; def ST = if ((ST[1] == UP_Band[1]) and (close < UP_Band)) then UP_Band else if ((ST[1] == UP_Band[1]) and (close > Up_Band)) then LW_Band else if ((ST[1] == LW_Band[1]) and (close > LW_Band)) then LW_Band else if ((ST[1] == LW_Band) and (close < LW_Band)) then UP_Band else LW_Band; plot Long = if close > ST then ST else Double.NaN; Long.AssignValueColor(Color.GREEN); Long.SetLineWeight(2); plot Short = if close < ST then ST else Double.NaN; Short.AssignValueColor(Color.RED); Short.SetLineWeight(3); def LongTrigger = isNaN(Long[1]) and !isNaN(Long); def ShortTrigger = isNaN(Short[1]) and !isNaN(Short); plot LongDot = if LongTrigger then ST else Double.NaN; LongDot.SetPaintingStrategy(PaintingStrategy.POINTS); LongDot.AssignValueColor(Color.GREEN); LongDot.SetLineWeight(4); plot ShortDot = if ShortTrigger then ST else Double.NaN; ShortDot.SetPaintingStrategy(PaintingStrategy.POINTS); ShortDot.AssignValueColor(Color.RED); ShortDot.SetLineWeight(4); ################################################################## # Cloud # ################################################################## AddCloud(if close > long then long else double.nan, close, color.light_green, color.light_green); AddCloud(if close< short then short else double.nan, close, color.pink, color.pink);
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.