Community ideas
The Trader's Toolkit: Building a Dynamic Trading JournalJoin us in this comprehensive tutorial as we walk through the essential process of building a personalized trading journal. Whether you're new to trading or aiming to elevate your strategies, this educational video empowers you with the knowledge of why building a trading journal is a critical step in your trading journey. Learn with us, and discover why a trading journal is a crucial addition to your trading toolkit.
Predict the clarity of the price, not it's direction☝️The main purpose of my resources is free, actionable education for anyone who wants to learn trading and improve mental and technical trading skills. Learn from hundreds of videos and the real story of a particular trader, with all the mistakes and pain on the way to consistency. I'm always glad to discuss and answer questions. 🙌
☝️ALL videos here are for sharing my experience purposes only, not financial advice, NOT A SIGNAL. YOUR TRADES ARE YOUR COMPLETE RESPONSIBILITY. Everything here should be treated as a simulated, educational environment.
Navigating Markets with Gann Fans: A Step-by-Step GuideWelcome to our comprehensive tutorial on placing and utilizing Gann Fans. In this step-by-step guide, we'll dive into the practical aspects of Gann Fans, a powerful tool for assessing non-horizontal support in resistance for technical analysis. We will thoroughly explain how Gann Fans are placed and what pitfalls to avoid when placing them. Whether you're new to Gann Fans or looking to enhance your trading strategy, this video provides actionable insights and a real-world example to help you harness the potential of Gann Fans with confidence. Join us as we demystify Gann Fans and empower you to navigate market swings with precision and skill.
HOW-TO: Use the Universal Forecaster IndicatorHello everyone,
I apologize for the delay in posting this tutorial.
This is the tutorial for the Universal Forecaster. In it, I cover:
1. What it is,
2. How to use it,
3. Its associated strategy,
4. Its functionality
As always, let me know any suggestions, comments or questions for the indicator here or on the indicator page.
To view the indicator, you can check it out below:
Thanks for watching and safe trades!
Wyckoff Optimism-Pessimism Index Discussion on BitcoinWe show why our proprietary indicator is much better than a normal On Balance Volume indicator, by showing three recent chart points where our indicator warned you of an possible trade, where as the On Balance Volume did not.
We are launching a suite of Wyckoff indicators here on TradingView in the coming days that will be Invite-Only but very affordable.
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!