Community ideas
HOW-TO: Use the Autoreg Trend Cloud IndicatorHello!
This is a tutorial video on using the Autoregression Trend Cloud indicator, a premium indicator released some days ago.
I go over
a) How it works;
b) Tailoring the settings;
c) Using it to trade;
d) Basic trading strategy using the indicator.
For more details, check the indicator's description and explanation on the indicator's page.
You can access it at the link below.
Feel free to leave your comments and questions here or on the indicator page itself.
Thanks for watching and as always, safe trades!
Thinking in Pine - Study References Too Many Bars In the HistoryWelcome to "Thinking in Pine" short video series on the topics of Pine Script.
Today's topic is handling the error - "The study references too many candles in the history" and other bar_index related issues.
If you are not familiar with Pine Script time series concepts, please go through our previous videos.
Thinking in Pine - Time Series
Thinking in Pine - Special Cases of Time Series
🎲 Points Discussed
When do we get the error "Study references too many candles in the history" and how to overcome this issue.
bar_index limitations with drawing objects on the chart.
🎯 Example Program - Historical Reference Alternative Implementation
// When we are trying to refer to history more than or equal to 10000 bars older
// float value = close
// plot(value)
// Alternative implementation
var values = array.new()
values.unshift(close)
// Throws error on first bar since the number of items is less than 10000
// float valueFromArray = values.get(10000)
// plot(valueFromArray)
//Option 1 - Get the last available value when the number of bars available is less than 10000
float valueFromArray1 = values.get(math.min(bar_index, 10000))
plot(valueFromArray1)
// Option 2 - If number of available bars less than 10000, then set value to na else get the value of 10000 bars back
float valueFromArray2 = values.size() <= 10000? na : values.get(10000)
plot(valueFromArray2)
🎯 Example Program - Drawing Object Limitations with Bar Index
// Trying to create a line too far in history or in future
// if(barstate.islast)
// Throws error as can only draw upto 9999 bars before
// ln1 = line.new(bar_index, high, bar_index-10000, high)
// Throws error as we can only draw upto 500 bars in the future.
// ln2 = line.new(bar_index, high, bar_index+501, high)
startingPoint = ta.valuewhen(bar_index == last_bar_index-10000, time, 0)
float price = 0.0
if(barstate.islast)
// However, we can draw more than 10000 bars back or more than 500 bars in the future using time instead of bar _index
ln = line.new(time, high, startingPoint, high, xloc=xloc.bar_time)
// Cannot use line.get_price when the line is drawn using xloc = xloc.bar_time
// price := ln.get_price(last_bar_index-5000)
APEX FUNDING 1 DAY PASSED! Time and Space documentation 1/18educating on entries and the importance of waiting on amplitude in the market. the higher displacement and volume give us better cyclical delivery systems. Teaching my self high frequency trading and aligning with higher time frame order flow.
Trend Trading Strategy - Trend Continuation Master the Market Rhythm: Trend Continuation Strategy with Fibonacci Precision
Ready to ride the market waves with confidence? This video unlocks the secrets of a powerful trend continuation strategy, designed to capture momentum and maximize gains.
Here's what you'll discover:
* Identifying the Trend: Learn to spot bullish (higher highs, higher lows) and bearish (lower highs, lower lows) trends like a seasoned pro.
* Support & Resistance: Leverage key price levels where the market reverses, creating exploitable entry points.
* Timeframe Harmony: Start from the bigger picture and zoom in, pinpointing the ideal entry zone on lower timeframes.
* Fibonacci: Harness the power of the 61.8% retracement to identify high-probability trade zones within the trend's ebb and flow.
Mastering Support & Resistance This video dives into the fundamentals of support and resistance, the cornerstones of technical analysis.
We'll cover:
** Identifying trends:** Learn how to spot bullish and bearish trends using higher highs/higher lows (HH/HL) and lower highs/lower lows (LH/LL).
️** Support & Resistance Levels: Discover how to pinpoint key price levels where the market may bounce or reverse, creating potential trading opportunities.
** Fibonacci: Unlock the power of the Fibonacci retracement to identify high-probability trade entry points at the 61.8% level.
S&P 500 & Russell 2000 Support And Resistance Entry LessonI Recorded this video originally for myself for a recap for my Journal but thought it had some good information on support and resistance and using different lenses to view the market. I go over my two losses I took on both the S&P 500 and Russell 2000 but I think they did help prove to me that your entry is extremely important and working on getting better entry signals using alternative charting or doing other various things can really influence the odds of either getting stopped out or not getting stopped out hope this can help. :)
CME_MINI:ES1! CME_MINI:RTY1! CME_MINI:MES1! CME_MINI:M2K1!
Avoid Forex Mayhem with Good Risk ManagemenTrading forex? Stop gambling with your capital! This video exposes the massive mistake new traders make - using inconsistent lot sizes. It's a recipe for disaster, blowing accounts and crushing dreams.
But there's good news. Discover the secret weapon of successful traders: consistent lot sizing.
In this actionable video, you'll learn:
Why fluctuating lot sizes blindfold you to risk and leave you exposed
The simple formula to calculate safe and sustainable lot sizes
How consistent sizing fuels confidence and boosts profits
Bonus tips to maximize your forex trading performance
Say goodbye to trading nightmares and hello to controlled growth! Watch this video now and take control of your forex future.
P.S. Don't be the trader left behind. Watch before it's too late!
📖Ultimate guide to feeling a little bit better after a loser.1The video is long, feel free to use speed settings :)
Thanks for your interest in the last post about the Major mistakes traders do.
Now let's talk about coping emotionally with losers. This is Part 1.
📖We all know this feeling, it feels awful, hopeless like something very valuable has been taken from us, like it destroys our work and plans and it feels BAD.
Who am I to speak on this topic. 4 year of trading experience, lost maybe 25 funding challenges over the course of 3 years, got 2 times funded the previous year and lost these funded accounts. Had multiple losers, out of which many just stamped me emotionally.
Over time I developed coping skills to better prepare for these -1’s and though I’m far from being really good at it, I’m definitely a bit better than I was some time before.
And this is my ultimate guide to feeling a little bit better after a -1.
📖First of all, congrats - if you’re still here, it means you’re interested in the topic and by watching videos like these from me or other traders, and thinking, and trying to become better, you’ll do it eventually. Yes, with time you better find one source of education that really sticks to you, and for me, it’s the method.. but even other videos can build some foundation for your work in this direction.
📖As pointed out in the Mental Game of Trading, Our brain functions in 3 layers, so to say - automated habits, emotional brain, and rational. The thing is, emotions can really block rational thinking. It’s physical and happens in your brain. It literally changes our chemistry. Accept the fact we can't accept losers fully. It will always feel shite, but with time and a good strategy of preparation, it will get better. So this is a Stoic principle applied to trading, be prepared for the worst-case scenario, how? Expect it to happen, and know it’s inevitable and you’ll feel bad. Paradoxically, it allows you to feel a little bit better when it actually happens.
📖Notes and full diary, you want to know all about how you behave in the markets so that you recognize the build-up of emotions and can prepare better for the next inevitable loser, and in case you understand you need to stop because you’ll become too emotional - than you’ll be able to stop.
How diaries work is that you know all your triggers, and patterns, in a way that nothing is new to you about how you feel about the market and how you react to certain situations.
📖Appreciate yourself and your work! gratitude - videos, practice, mooji. appreciate the work you did, especially if the loss comes out from a high-quality setup. Many people turn too much attentions to their flaws while forgetting recognizing their powerful sides. What’s your super power - holding to TP, sticking to max trades per day, not overrisking, really going through the checklist.
📖Awareness doesn’t equal control. You can control things only to some extent, but when emotions really kick in, it’s too late. That’s why people very often say: I understand everything, but I can’t stop. Yes, my friend this is how emotional brain works - it leaves with no control over the actions. Awareness doesn’t equal control. If you feel bad, you need to STOP, because in that state losers will feel especially bad.
📖Trade less, a lot less. Good traders and my experience.
📖Record a trade as a -1 in a journal once you started it - Ment’s video.
APEX THREE DAY CHALLENGE: TIME AND SPACE ALGORITMIC TRADINGTook on the Apex challenge to see if i can pass in one day using Time algorithmic trading. I have the confluence on the right of DXY. looking for inefficiency to to be traded into at specific time. if the delivery is delayed there not enough amplitude in the market. Amplitude cause market displacement its volumetric delivery to the commitment of traders at there prices. This theory and concept but my documentation is real.
💡MAJOR mistake that all beginners do. Try to do the opposite.💡The main purpose of my resources is free, actionable education for anyone who wants to learn trading. Consider following the attached links for improvement of your mental and technical trading skills - learn from hundreds of videos featuring the real story and growth of a particular trader, with all the mistakes and pain on the way to consistency. I'm always glad to discuss and answer questions.
The Top 3 Confirmation Signals for the Double Top Pattern
1 - Bearish Divergence
An indicator such as the RSI showing bearish divergence can confirm the weakening of the bullish trend.
2 - Volume Analysis
An increase in selling volume following the second peak reinforces the potential bearish reversal.
3 - Support Breakdown
A decisive breakdown below the support level confirms the validity of the double top pattern.
Watch this video to learn more
--
**Disclaimer:**
The information provided above is for educational and informational purposes only.
--
It does not constitute financial advice, and trading always involves
--
a risk of substantial losses, regardless of the margin levels
--
used. Before engaging in any trading activities, it is crucial to
--
conduct thorough research, consider your financial situation,
--
and, if necessary, consult with a qualified financial advisor. Past
--
performance is not indicative of future results, and market
--
conditions can change rapidly. Trading decisions should be made
--
based on careful analysis and consideration of individual
--
circumstances. The user is solely responsible for any decisions made
--
and should be aware of the inherent risks associated with trading in
--
financial markets.