Trading a Choppy MarketPer request, someone asked to share my strategy and how / why I enter/exit trades.
I decided to be specific and applicable to the current market sentiment and discuss how I trade “choppy markets”.
My personal rules for trading choppy markets are:
1) No options, shares only
2) GTFI and GTFO ASAP
3) Only trade when there is a support or resistance respected
4) Trail once you are in decent profit!
Other points:
Some things I did not elaborate in the video but I think are important to touch on and one of the reasons I avoid options are, there is a huge decay that comes with ranging markets on options. I have went really ITM on options lately and I noticed the profits are equivalent to that of shares by the time the stock finally decides to move. Thus, I am risking quite a lot by the inherent decay in options vs just taking the raw share trade.
And I forgot to disclose in the video, but I half my position at the next resistance level. Unfortunately today we just traded between 2 support and resistance levels, so there was no really halving to be had, but that is the general rule of thumb. Halve the position at the next resistance and trail.
Leveraged Shares vs Options
Another point that I missed in the idea is, Leveraged ETFs, to which is the instrument I traded today and describe in this idea, do have a degree of decay associated with them. However, for daytraders this decay is not noticeable. It will only become noticeable and costly if you chose to hold these shares for greater than a 1 month period, as the decay tends to transition with the month turnover and on any massive move that goes against the share (for example, if you are long via UPRO or TQQQ and we see a 5% sell in 2 days, it will take UPRO and TQQQ longer to catch up to QQQ and SPY because that massive sell just cost the management firm a lot of money on that position (it’s a very simplistic way of looking at it and its much more complex than this, but for ease of explanation, I will use this haha).
To put it in perspective, here is TQQQ next to QQQ on the day:
You can see, there is no observable decay from the chop. If you bought in off open and held till mid day or EOD, you would be able to get out for flat or even a profit if you exited right at the new high.
Now if we look at an ITM 1 DTE option, here is the chart for today:
You can see that the option never retraced the daily high, despite QQQ doing so two times, in fact even breaking it at end of day. It is because the decay impacts options, especially shorter dated ones.
Now you can mitigate against this by going further out in expiries, but the cost of entry into those options increase and the risk of losses also increase, to the point of making your stop outs more costly than had you done a leveraged share position. As well, going further out in expiry doesn't stop the decay from chop, it simply 'mitigates it'. Chop will not destroy a leveraged share, the only two things that will destroy a leveraged share are
a) Time > 3 to 6 months, share depending and
b) Moves against the share > 3 % to 4% on the underlying in a short period of time (i.e. 1 to 2 days).
That said, the gains on options can be better than the gains on shares, its just it comes with a risk. So it is important to weigh your prerogatives, account size and risk tolerance when deciding on these things.
That also said, there are many other things to trade other than leveraged shares. For example, NYSE:AI is an affordable ticker for new share traders, NASDAQ:RIVN , as well as NASDAQ:LCID and if you are Canadian, BA Canadian leveraged shares, though I admit I haven't tried to short sell these yet so not sure if they are easy to borrow.
Concluding remarks
That concludes the idea and request. If you have any questions, as always, leave them below.
Safe trades everyone and take care!
Beyond Technical Analysis
Thinking in Pine - Time SeriesHello everyone,
Welcome back to "Thinking in Pine" short video series. In this video, we discuss the concept of time series variables in Pinescript.
If you are not familiar with var and varip type of variables - please step back and watch this video before continuing - "Thinking in Pine - var, varip and regular variables"
🎲 Summary of our discussion is as follows
What are time series variables, and how are they used in Pinescript?
How do we access historical values of time series?
Limitations of accessing historical values
🎯 Example Program Used
currentBar = bar_index
var currentBarUsingVar = 0
currentBarUsingVar := bar_index
varip showLog = true
valueAt200thBar = ta.valuewhen(bar_index == 500, currentBar, 0)
if(barstate.islast and showLog)
log.info("Current Bar Values using regular and var variables : {0}, {1}", currentBar, currentBarUsingVar)
log.info("Last Bar Values using regular and var variables : {0}, {1}", currentBar , currentBarUsingVar )
log.info("Values 500 bars ago using regular and var variables : {0}, {1}", currentBar , currentBarUsingVar )
offset = bar_index-25000
log.info("Values at 25000th bar using regular and var variables : {0}, {1}", currentBar , currentBarUsingVar )
showLog := false
plot(bar_index, "Bar Index", color = color.blue, display = display.data_window)
There are pitfalls of using historical operators within loop or under if condition. We will discuss that in our next video.
🎲 References:
Pine Script® User Manual - Execution Model
Pine Script® User Manual - Time Series
Pine Script® User Manual - History Referencing Operator
]Pine Script® Reference Manual - History Referencing Operator
'Slow December' is a Myth.In this video I break down just two positions that shaped up last week on EURCAD and GBPNZD, both sells with a minimum return of 10% on both positions. Why is there always an industry gimmick of 'don't trade in December' when people have not even tested the data. Go back to December 2022, 2021, 2020, you will find positions in the market. Keep your focus on the task at hand and not on 'myths'.
Thinking in Pine - var, varip and regular variablesThis is our first video session on "Thinking in Pine" series. Before we start, we want to explain a bit about our new initiative.
🎲 What is "Thinking in Pine"?
In our journey to empower the trading community, we're excited to introduce "Thinking in Pine," a series of concise, 5-10 minute videos dedicated to unraveling the complexities of Pine Script®. We have our own list of topics to be covered, and we will start releasing the videos one by one. However, if you're grappling with any aspect of Pine Script® or stuck on an implementation, we encourage you to reach out to us or drop a comment here. We aim to address your queries by breaking down challenging concepts or implementations into easily digestible content.
What kind of videos are covered in "Thinking in Pine"?
Pine Script® Focus: We try to keep our focus on Pine Script® concepts and implementations.
General Utility: We prioritize topics that offer broader learning value. Though it's challenging to quantify this, we'll use our judgment to select topics that benefit the wider audience.
Time-Efficient Demonstrations: Ideally, we want to keep our demonstrations to 5–10 mins of time.
We're here to demystify Pine Script®, one topic at a time, making it accessible for everyone from beginners to advanced users. Stay tuned for insightful sessions with "Thinking in Pine"!
🎲 Demonstrating var, varip and regular variables in Pine Script®
In this video, we have demonstrated the difference between var, varip and regular variables by using an example implementation of OBV indicator.
🎯 Logic of OBV Calculation
Start with the value 0
On each bar, add volume to the indicator if close price is higher than previous bar close price.
On each bar, remove volume from the indicator is close price is lesser than previous bar close price
🎯 Highlights
Regular variables are initialized separately on each bar and does not propagate value to next bar unless coded to do it.
var variables are initialized once and then can be reassigned any number of times using := operator . The variables declared as var will propagate the current values to the next bar.
varip variables are initialized once and then can be reassigned any number of times using := operator . varip will behave similar to var on historical bars. However, on real time bars, they are recalculated on every tick, and they remember the state of each tick.
🎯 Example Program Used
Here is the example program used in the demonstration.
//Plot built-in OBV value for reference
plot(ta.obv, "OBV Built In", color=color.yellow)
//Volume multiplied by +-1 based on change in close price compared to previous bar.
volumeBySign = math.sign(nz(ta.change(close), 0))*volume
//Obv calculation by using regular variable. Code need to access and add last bar value using obvByRegular
obvByRegular = 0.0
obvByRegular += nz(obvByRegular , 0) + volumeBySign
plot(obvByRegular, "OBV By Regular Variable", color=color.blue)
//Obv calculation using var variable. Since var variables propagate values to next bar,
// we do not need to use historical operator to get the last bar value
var obvByVar = 0.0
obvByVar += volumeBySign
plot(obvByVar, "OBV by var Variable", color = color.maroon)
//Obv implementation using varip. The OBV is calculated based on every tick. Histoical values will match the same as that of other implementation.
//However, in real time, the calculations are done based on the tick values
varip obvByVarip = 0.0
varip lastPrice = close
varip lastVolume = volume
if(barstate.isnew)
lastVolume := 0
obvByVarip += math.sign(close-lastPrice)*(volume-lastVolume)
lastPrice := close
lastVolume := volume
plot(obvByVarip, "OBV by varip Variable", color = color.purple)
🎲 References:
Pine Script® User Manual - Variable declarations
Pine Script® Reference Manual - var
Pine Script® Reference Manual - varip
Pine Script® User Manual - Operators
How to Backtest RMI Trend Sniper Hello Guys , since i have been asked alot what are the best settings for RMI Trend sniper along with the best Risk to reward ratio to use , i thought of making this video for you
it simply explains to you how to backetest it and find the best settings with its best RR ratio to be able to create a strategy out of it
i hope this video helps you and always use STOP LOSS .
Thank you and stay well
🐋 Deep Dive Part II: Whale Behavior & Market Mastery!🌊📚 (Vid)Hey Crypto Enthusiasts! 🚀
In a recent analysis, I not only nailed Bitcoin's (BTC) movement but also illuminated the subsequent altcoin surge, driven by insightful whale behavior observations. Let's merge these insights with a focus on ADA (Cardano), OP (Optimism), SOL (Solana), and BTC. 📊
Cardano's (ADA) Meteoric Rise 🌟
ADA's journey began with a break above a pivotal support-resistance level. My entry point at 0.256 turned into a remarkable rally, hitting 52 cents. This movement was a classic case of altcoin buoyancy following Bitcoin's pause.
Optimism (OP) and the Altcoin Breakouts 🌈
In the shadow of Bitcoin's stagnation, altcoins like OP exhibited significant breakouts, showcasing the shifting focus of market whales from Bitcoin to promising altcoins.
Bitcoin (BTC) and Whale Dynamics 📉
Bitcoin's behavior provided a crystal ball into the whale activities. As BTC approached a major resistance level, it signaled a strategic move by whales to divert funds towards altcoins, catalyzing their surge.
Solana (SOL) and Market Trends ☀️
Solana's chart also mirrored this trend, highlighting the broader market dynamics influenced by these significant players.
🔍 Insight on Whale Behavior:
My analysis delved deep into the whale behavior, highlighting how Bitcoin's rally and subsequent pause was a precursor to altcoin dominance. This strategic pause in Bitcoin's ascent was a clear signal for the whales to redistribute their focus and capital, sparking a remarkable rise in altcoins like ADA, OP, and SOL. 🔄
The Bigger Picture - Understanding Market Shifts: What this trend teaches us is the importance of reading between the lines. Whale movements often precede major market shifts, and by understanding these patterns, we position ourselves to make informed decisions. 🧠
Future Outlook: As we continue to monitor these market dynamics, it's crucial to stay vigilant. The crypto market is known for its volatility, and while the current trend favors altcoins, it's essential to be prepared for any shifts that may arise. Always keep an eye on key resistance and support levels, market sentiment, and global economic factors that could influence the next big move. 🌐
Together, let's stay ahead of the curve in this fascinating and ever-evolving world of cryptocurrency. Your insights and engagement are what make this journey exciting and rewarding!
One Love,
The FXPROFESSOR 💙
part 1:
Back-adjusting drawings for futures roll in continuous contractsHow to adjust existing drawings to account for the price adjustment (false gap) between futures contracts during the roll when one contract is expiring and trade volume is shifting into the new front-month contract. Drawings do not adjust by using the "back-adjust" feature, which can create an issue since all of your drawings will be displaced and incorrectly located. This shows how to adjust them to account for that displacement. This is especially an issue when the price difference is large between the expiring contract and the new front-month contract such as in this video example (e.g. +51 points between ESZ2023 (Dec 2023) and ESH2024 (March 2024))
Can Bitcoin Hedge Against a Falling Dollar?Global inflation often signifies a weakening of global currencies. The question of whether Bitcoin can serve as a hedge against a depreciating dollar has gained significant interest among investors.
Or should it still be the Gold?
In this study, we will analyse the top 8 cryptocurrencies to determine which one is a more reliable currency hedge.
Bitcoin & Its Minimum Fluctuation
$5.00 per bitcoin = $25.00
BTIC: $1.00 per bitcoin = $5.00
Code: BTC
Micro Bitcoin & Its Minimum Fluctuation
$5.00 per bitcoin = $0.50
BTIC: $1.00 per bitcoin = $0.10
Code: MBT
Disclaimer:
• What presented here is not a recommendation, please consult your licensed broker.
• Our mission is to create lateral thinking skills for every investor and trader, knowing when to take a calculated risk with market uncertainty and a bolder risk when opportunity arises.
CME Real-time Market Data help identify trading set-ups in real-time and express my market views. If you have futures in your trading portfolio, you can check out on CME Group data plans available that suit your trading needs www.tradingview.com
Overview of good ideas I had :)☝️Dear traders, no one here has superpowers, and I'm as well just a human. Please take everything with a degree of doubt and critique. I'm just sharing my view and one of the possible scenarios of price action. When I enter I try to predict as little as possible and actually follow what the market is doing, joining the market and not arguing with it or forcing my will. Have good trading, keep a constant flow of self-awareness, and do your best. 🙌
Managing Positions with Parallel ChannelVideo tutorial:
• How to identify downtrend and uptrend line
• How to draw parallel channel correctly
• Confirming a change in trend (using trendline itself)
• Managing positions with parallel lines
- Profits
- Risks
- Knowing its volatility
Micro Natural Gas Futures & Its Minimum Fluctuation
0.001 per MMBtu = $1.00
Code: MNG
Disclaimer:
• What presented here is not a recommendation, please consult your licensed broker.
• Our mission is to create lateral thinking skills for every investor and trader, knowing when to take a calculated risk with market uncertainty and a bolder risk when opportunity arises.
CME Real-time Market Data help identify trading set-ups in real-time and express my market views. If you have futures in your trading portfolio, you can check out on CME Group data plans available that suit your trading needs www.tradingview.com
Create No Code Auto Trading Bot with Tradingview and OKXHello Everyone,
In this tutorial, we learn about how to create simple auto trading bot using tradingview alerts and OKX exchange built in integration mechanism.
Few exchanges have come up with this kind of direct integration from tradingview alerts to exchanges and as part of this tutorial, we are exploring the interface provided by OKX.
In this session, we have discussed
🎲 Preparation Steps
Preparing tradingview account
Webhooks are only available for essential plans and plus.
Enable 2FA in your tradingview account.
Preparing your OKX account
Create OKX account, and we prefer you do the initial tests under demo account before moving to active trading account.
Bots created in demo account will not appear in the active trading account. Hence, when switching to active account, you need to create all the setup again.
🎲 OKX Tradingview Interface Features
What is supported
Auto trading based on strategy signal
Custom signals - Enter Long, Exit Long, Enter Short, Exit Short
What is not supported:
Stop/Limit orders
Bracket orders/ Complex execution templates
🎲 Weighing Pros and Cons of Using Direct Interface rather than Third party integration tools
Pros
Latency is minimal as per our observation
Easy Integration with Tradingview and Pinescript Strategy Framework and no coding required
You save cost on third parties and also avoid one hop.
More secure as your data is shared between less number of parties.
Cons
No native support for Stop/Limit orders
Quantitative Tightening Effects on the Markets This video tutorial discussion:
• What is QE and QT?
• Each impact to the stock market
• The latest QT, how will the stock market into 2024?
Dow Jones Futures & Its Minimum Fluctuation
E-mini Dow Jones Futures
1.0 index point = $5.00
Code: YM
Micro E-mini Dow Jones Futures
1.0 index point = $0.50
Code: MYM
Disclaimer:
• What presented here is not a recommendation, please consult your licensed broker.
• Our mission is to create lateral thinking skills for every investor and trader, knowing when to take a calculated risk with market uncertainty and a bolder risk when opportunity arises.
CME Real-time Market Data help identify trading set-ups in real-time and express my market views. If you have futures in your trading portfolio, you can check out on CME Group data plans available that suit your trading needs www.tradingview.com
How To Build A Trading Journal That Helps You Make MoneyHey everyone!
In this video, we discuss why trading journals are important, talk about how to avoid common pitfalls in using them, and go over the keys to implementing one successfully in your own trading.
Over time, a well-crafted trading journal can actually help you make money, while building out the most important skill you can acquire as a trader: pattern recognition.
We also cover three main principles that you can use if you already have a journal set up that isn't working as you'd like. Be sure to:
1.) Keep it simple.
2.) Track the right things.
3.) Follow up regularly.
Do these, and it's impossible you won't get significantly better over the next 6 months - year.
Cheers!
Looking for more high-quality trade ideas? Follow us below. ⬇️⬇️
Revisiting Automatic Access Management API for VendorsThis video explains how to automate access management for vendors who build and sell invite only scripts based on subscription or one time fee. I have made videos about this earlier as well. But, due to high demand, I have been asked to make this video again.
🎲 Tools Required
Replit - Used for hosting the service that automates access management
Postman - To test the services hosted
🎲 Prerequisites
User should have premium tradingview account and be able to publish invite only scripts by following the house rules.
User should disable 2FA on their account in order to allow programs to login remotely and manage access.
🎲 Steps
All the steps are also mentioned in the githup repository: github.com
🎯 Run the access management service
Fork the replit repository: replit.com
Update Environment Variables tvusername and tvpassword
Run the repl
🎯 Use postman to test the service methods
Detailed explanation of the API calls are present in the github link provided above. The service is capable of doing following things.
Check if the given tradingview username is valid or not
Get the access details of given user to list of scripts identified by pub id.
Delete the access to given user to list of scripts identified by pub id.
Provide/Extend access to given user to list of scripts identified by pub id for specific duration.
🎲 Notes
Please follow house rules while publishing and selling subscriptions to invite only scripts.
Do not commercialize these API calls or do not turn it into product. The mechanism is built on backend calls that are not officially supported by tradingview. While tradingview is tolerant on individual use, any malicious activity may force them to shut this down for everyone.
📈 The Ultimate Altcoin Survival Guide 🎯🛡️Hey there, crypto enthusiasts and market savvies! Professor here, bringing you a critical update that you can't afford to miss! 💎🔥
00:00 Hey folks, let's dive right into the world of altcoins. You've been hearing me sing praises for Bitcoin lately, but what about the underdogs, the altcoins? 🎤🤔
00:16 Well, guess what? I haven't forgotten them; I've just been analyzing. Let's get to the heart of the matter and talk about what the charts are screaming at us. 📈💡
00:23 We're looking at an 8-hour chart that excludes Bitcoin and Ethereum. Notice this massive channel? It's crucial for the altcoin market, and right now, it's shouting "Resistance!" 🛑🔔
00:49 Yup, we're walking on thin ice. This is the time to hold your horses on altcoins and keep your eyes peeled on those levels - 335 and 319 billion, to be exact. 🎯🛡️
01:32 Bitcoin remains our "safe haven," especially with Bitcoin dominance skyrocketing. Stick with me, and you'll know why my 80% trading focus is on Bitcoin right now! 🏆🛡️
02:42 Spotlight on ADA and Ethereum: My positions? Increasing in ADA at 0.268 and shorting Ethereum. It's not about being bullish or bearish; it's about being smart! 🎯👓
04:53 What about LINK? It's all about that channel, baby! We took a long position and scored a phenomenal trade. This channel strategy works like magic! 🌟🚀
06:18 Speaking of magic, let's talk Matic. Major resistance here; don't jump the gun. When the channel says go, we GO! 🚀💥
07:27 Targets? I've got 'em! 1.7, 1.9, and 3.2. Manage your risks and reap the rewards, simple as that. 🎯👑
08:00 XRP? It's in time-out under resistance. But hey, let's keep an eye for that rebound. It could be our golden ticket. 🎫💫
09:11 Bottom Line: The Total Three Chart for Crypto says altcoins are in danger. For now, Bitcoin is my ride or die! 🛡️🏆
09:51 Stick around, engage, and let's keep this conversation going. If you're still with me, you've just leveled up in your trading game! 🎮🌟
One Love,
The FXPROFESSOR 💙
full video transcript:
00:00 Hey everyone, time to take a look at altcoins. Professor been extra extra bullish on Bitcoin. Okay, you see not so much on altcoins.
00:10 I posted a lot of Bitcoin, not many else. People ask me, hey, you forgot about phantom. You forget about sandbox.
00:16 You forget about STF CFX, but I didn't forget about anything. It's just I follow the charts. So let's follow the chart.
00:23 That's the total three. It excludes its cryptocurrencies excluding Bitcoin and Ethereum. So what do we have here? That's the eight hour chart.
00:32 And we see a massive channel, okay, which is support on the lower end support resistance in the middle and its resistance on the top.
00:42 So what do we have right here? Let's go to the 15 minute chart. Unfortunately, ladies and gentlemen, my dear friends, we have resistance.
00:49 So we need to be careful because these breakouts, it didn't go higher. So we are running a danger of going a little bit or a little bit more lower.
01:02 So 335 and 319 billion. It's where I want to buy again and of course I will have alerts. Like to all 3 on major support.
01:23 So we need to be careful with altcoins at this very moment. Think about it this way, Bitcoin. For me it's a safe haven.
01:32 That's why I keep saying safe haven. I keep repeating myself a little bit of times but you know maybe this is not the perfect time for riskier assets and cryptocurrencies altcoins and so on.
01:44 This could be time for Bitcoin. So personally I do prefer Bitcoin at this time of stage but who am I?
01:50 Let the chart do the talking. Let's go to Bitcoin dominance. You see how it has exploded and you can see here why from this level over here for this breakout on October 2nd we have been 80% posting about Bitcoin, Bitcoin, Bitcoin because the dominance was expected to rise.
02:09 And it did break out higher. So my expectation is to see the 58%. We are now at 54% and if the price drops lower then it has huge, huge support at 52%.
02:22 So Bitcoin dominance says, Hey buddy, maybe this is not a perfect time for altcoins. This is the time for Bitcoin.
02:32 And we go to 58% or we go even higher at 66%. Okay? Now let's take a look at the major altcoins that would make more sense to, everyone.
02:42 Ada, looking good. Looking good. And I'm looking to increase my position at 0.268. We've been long through here. It's going well.
02:50 Ethereum, 1771. Today we went short my community right under this level over here. So we have a short position hedging our long positions and it's beautiful.
03:00 1.827 is resistance support at 1629 and let's go to SDX no big news here okay major support would be this level over here that's why we have the alert and it will go automatically to our friends and family who follow us up very very similar very close to support but still you see not going higher for
03:29 the time being so one inch let's discuss about one inch that's a 15-minute chart you see it got rejected at the middle of the channel if we go to four hours it will make sense so one hour actually is gonna a lot of you know it's gonna make even more sense so what do we have here we have a channel how
03:51 simple is it to make a channel I mean you know resistance or resistance resistance and the middle of the channel so we are remaining long we have a long position but we want to buy over that level and that's exactly why we have the alert there and when it hits there if it breaks higher we go long for
04:10 the time being we're being aware and we would be looking to follow the price within the channel does this work does it make sense well let's take another example let's look at link for example and let's go to the eight hour chart and look at these guys i mean how more simple this is straight up most
04:32 simple charging the world as the most beautiful channel support support support support three times at the lower end of the channel three times very clear three times very clear resistance up there and then what we have the fake out over here and the minute it goes back into the channel that's the time
04:53 to go long that's the time we did go long and that's how we followed the price and we increased the position over here at this level and we have a phenomenal trade which we have shared the result with you here it's the same chart it's the same deal so the channel works we wait for the price to go on
05:12 the channel and that would be support and we can increase the position that we already took profit from massively or if it dips back under the channel then we're going to go short and we're going to keep the stop loss over the channel so as simple as that I want to show you Matic before I go because
05:29 it's also at a major major major resistance Matic is one of my favorite assets and I've post it a lot of times from 0.20 all the way up to 2.4 and 2.8 so if you have been following me you can check the previous ideas we did very very well with entering now nicely and with exiting nicely so we're looking
05:56 to get back on Matic but we want to see the price get back into the chart. I want to see the price get back into the chart so for the time being we are at the scary situation where, ah, scary, okay, ah, but we are under the channel so we are under what is right now major, major, major resistance.
06:18 So, ah, one can go short, okay, or one can wait. That's what I'm doing in this case. I don't want to go short on magic because it's one of my favorite ones, but what I want to do is I want to have a big ass alert over here that will allow me to go long and buy this break.
06:41 If the price goes back into the channel, magic major entry, we're getting up and buying. That's what I say this breakout in the channel with stop loss 0.64.
06:51 So that would be an entry at 0.66 a stop loss at 0.60. 4. Let's put some number into that. So from there to 0.64 it's around 3%.
07:03 Okay, 3% exactly. But where is the take profit? Well, if you take a look at the take profit, we're looking about a take profit of and always think risk to reward is going to help you a lot to manage risk.
07:17 So we're looking at take profit here at 153% higher or there at 188 or all the way up there to 364.
07:27 So this would be my 3 target. 0.64, the stop loss 1.7, 1.9 and 3.2 and of course there is another level to 1.03.
07:39 So I'm going to add that 1.03 as well as a 4.0. 4th target and that would be a beautiful trade.
07:48 For the time being, don't get too excited. Let's look at XRP as well because a lot of you asked about XRP also under resistance at the time so I cannot buy that.
08:00 I cannot go long. Wait and see if there is a rebound here where the support level because if that happens, then I want to go long there and I want to have my stop loss under there and you know, the beauty of this is that small risk, high reward, but at the same time if the price rebounds a little bit
08:17 like Bitcoin, we get a new entry today and the price did rebound from here, okay, all the way up there.
08:26 So already we move the stop loss out entry and worst case scenario is we're going to hit the stop loss and make no money, lose no money, okay.
08:32 So these levels will give you very high return for lower risk and at the same time it's a highly probable to rebound level so it can give us a very, very flexible.
08:48 Way of trading for the time being this is chart I want you to focus on and that's the total three for crypto so altcoins right now in danger for all the charts that I have just mentioned we're looking to buy much bigger on altcoins and there we'll have a proper bull run if only we can break this level
09:11 and get outside of the channel and have the breakout so for the time being we looked at bitcoin dominance I'll stick with bitcoin as a 80% of my trading and of course I will remain long on bitcoin.
09:27 That's it from me. Hope it makes sense and this time give me some comments discuss with me because this is a kick ass video with a lot of you know, precision charts and a lot of educational hints.
09:41 So those are you that stayed with me until the end of this 10 minute video. You must have learned something and I hope that it does help.
09:51 Take care. Keep in touch.
How to backtest Signals with different Risk to reward ratioHello traders , this is my very first video on this platform, so please bear with me as I plan to make better content in the future.
In this video, I aim to show you how to test your trading signals using various risk-to-reward ratios. The goal is to identify the most suitable ratio for your signals and create a profitable strategy.
What's crucial in strategy development is effective risk management and selecting the right risk-to-reward ratio. You might have a signal that performs poorly at a 1:1 ratio but becomes profitable at a 3:1 ratio. I'll explain how to use this indicator and why it can be highly beneficial for your trading.
In this section of the video, I'm demonstrating how to apply this method to internal signals like RSI, moving averages, and Supertrend.
Additionally, I'm planning to create another video to teach you how to backtest your own external signals.
Please let me know if this is something you'd like to learn more about.
How To Save Layouts & Find Previously Used LayoutsFollowing up on our video looking at how to customize a chart & how to have multiple charts on a single screen at once.
I wanted to take a look at how to customize a chart & save it as a layout, that way you can have completely different tabs for different pairs, strategies or other uses.
If you have any questions or comments please leave them below.
Akil
Dissecting SPY Price trends With Fibonacci Price TheoryHave you ever wanted to learn the one technique you can use on any chart, any interval, or any technical or price set up to help you become a better trader?
Let me show you the basics of Fibonacci Price Theory and how to use it.
Price is always seeking new highs or new lows - ALWAYS.
You'll hear others talking about price filling voids or moving through accumulation/distribution phases - which is all true. Price moves through these support/resistance levels or quickly through price voids to reach new highs or lows. This is all part of Fibonacci Price Theory.
When you learn to understand various intervals using this technique (Weekly, Daily, 30 Min, or others), you'll quickly be able to identify short-term, long-term, and intra-day trends like a pro.
It is not about catching every trend reversal/setup. This technique is about teaching you to stay on the right side of trend and to target the Sweet Spot in the middle of breakaway/breakdown trends.
Follow my research. Learn how I can help you become a better trader.